/* import font */
@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
   /*  background-image: linear-gradient(to left, #9f681a, #d0992b,#f6c862,#9f681a,#fcd471); */
}
/* HTML etiketi 'dir="rtl"' olduğunda devreye girecek kural */
html[dir="rtl"] {
    /* Genel olarak tüm metinleri sağa hizalayabiliriz */
    text-align: right; 
}

/* Özel olarak sadece paragrafları (p) veya div'leri 
   hedeflemek isterseniz:
*/
html[dir="rtl"] p,
html[dir="rtl"] div {
    text-align: right !important;; 
}



:root {
/* colors */
     --whitecolor: #fff;
    --darkcolor : #252525;
    --primary-color: #d9028b;
    --secondary-color: #4eafda ;
    --light-pink-color: #faf4f5;
    --medium-gray-color: #ccc;
    --gold-color: linear-gradient(to bottom left, #9f681a, #d0992b,#f6c862,#9f681a,#fcd471);
    --gradient-color: linear-gradient(to bottom, #d9028b,#d9028b, #4eafda);

    /* font size */
    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.3rem;

    /* font weight */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* border radius */
    --border-radius-s: 8px;
    --border-radius-m: 30px;
    --border-radius-circle: 50%;

    /* Site max width */
    --site-max-width: 1300px


}
html{
    scroll-behavior: smooth;
}
/* stylings for whole site */
ul{ 
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}
img {
    width: 100%;
}
.section-content {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 20px;
}
.section-content2 {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    padding: 60px 0 100px;
    text-transform: uppercase;
    font-size: var(--font-size-xl);
}

.section-title::after {
    content: "";
    width: 80px;
    height: 5px;
    display: block;
    background: var(--secondary-color);
    margin: 10px auto;
    border-radius: var(--border-radius-s);

    
}
.about-section .about-details .section-title {
    padding: 0;
}

.about-section .about-details{
    max-width: 50%;

}
.about-section .about-details .text {
    line-height: 30px;
    margin: 50px 0 30px;
    text-align: center;
    font-size: var(--font-size-m);
}
.about-section2 .about-details .section-title {
    padding: 0;
}

.about-section2 .about-details{
    max-width: 50%;

}
.about-section2 .about-details .text {
    line-height: 30px;
    margin: 50px 0 30px;
    text-align: center;
    font-size: var(--font-size-m);
}

/* Nav bar styling */
header {
background: var(--gradient-color);
position: fixed;
width: 100%;
z-index: 5;
}

header .navbar {
    display: flex;
    padding: 0px;
    align-items: center;
    justify-content: space-between;
}

.navbar .navlogo .logo {
   height: 100px;
   width: auto;
}

.navbar .navmenu {
    display: flex;
    gap: 3px;
}

.navbar .navmenu .navlink {
color: var(--whitecolor);
padding: 10px 18px;

border-radius: var(--border-radius-m);
font-size: 12px;
transition: 0.3s ease;
}
.navbar .navmenu .navlink:hover {
    background: var(--secondary-color);
    color: var(--whitecolor);
    
}

.navbar #menu-close-button {
    display: none;
}
.navbar #menu-open-button {
    display: none;
}
.navbar .navmenu select {
    
    background-color: transparent;
    border: 0px solid ;
    cursor: pointer;
    color: var(--whitecolor);

}

/* Hero Section Styling */
.hero-section {
    background: var(--gold-color);
    min-height: 100vh;
    background: url(../Images/indexbackground.jpg) no-repeat ;
    background-size: cover;
    background-position: 0px 20px;
   
    
}

.hero-section .section-content {
    display: flex;
    align-items: center;
    min-height: 100vh;
    color: var(--secondary-color);
    justify-content: space-between;

    z-index: 99
}
.hero-section .section-content .hero-details .hero-img2 {
    height: 200px;
    width: auto;
margin-top: -300px;
    margin-bottom: -5px;
    margin-left: 0px;
    z-index: 0;
}
.hero-section  .hero-details .title {
     font-size: var(--font-size-xxl);
    color: var(--primary-color);
    font-family: "Miniver" , sans-serif;
    
}

.hero-section  .hero-details .subtitle {
      font-size: var(--font-size-l);
    margin-top: 350px;
    max-width: 100%;
    font-weight: var(--font-weight-semibold);
    margin-left: 115px;

}

.hero-section  .hero-details .description {
    font-size: var(--font-size-m);
    max-width: 70%;
    margin: 24px 0 40px;
}



.hero-section  .hero-details .button {
    padding: 10px 26px;
    background-color: var(--primary-color);
    color: var(--whitecolor);
    border-radius: var(--border-radius-m);
    font-weight: var(--font-weight-medium);
    border: 2px solid transparent;
    transition: 0.3s ease;

}
.hero-section  .hero-details .buttons {
    display: flex;
    margin-bottom: 40px;
    margin-left: 80px;
    gap: 23px;
}
.hero-section  .hero-details .button:hover, 
.hero-section  .hero-details .contact-us {
    color: var(--whitecolor);
    border-color: var(--whitecolor);
    background: transparent;
}
.hero-section  .hero-details .contact-us:hover {
    color: var(--whitecolor);
    border-color: var(--secondary-color);
    background: var(--secondary-color);
}
.hospital-logo {
    height: 100px;
    width: auto;
} 
.hospital-section {
    display: flex; flex-direction: column-reverse;align-items: center;justify-content: center;
    background-color: var(--light-pink-color);
}
.about-section {
    padding: 120px 0;
    background: var(--light-pink-color);
}
.about-section .about-details .text {
    text-align: left;
}

.about-section .section-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}
.about-section .about-image-wrapper .about-image {
    width: 400px ;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-circle);
    
  box-shadow: 0 0 20px var(--primary-color);
  

}
.about-section .social-link-list {
    display: flex;
    gap:25px;
    justify-content: center;
}
.about-section .social-link-list .social-link {
    color: var(--primary-color);
    font-size: var(--font-size-l);
    transition: 0.2s ease;
}
.about-section .social-link-list .social-link:hover{
    color: var(--secondary-color);
}
.about-section2 {
    padding-top: 30px;
    background: var(--light-pink-color);
}
.about-section2 .about-details .text {
    text-align: left;
}

.about-section2 .section-content2 {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 50px;
}
.about-section2 .about-image-wrapper .about-image {
    width: 400px ;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-circle);
   box-shadow: 0 0 20px var(--secondary-color);
   


}
.about-section2 .about-image-wrapper{
    position: sticky;
    top: 110px;
    align-self: flex-start;
}
.about-section .about-image-wrapper{
    position: sticky;
    top: 110px;
    align-self: flex-start;
}
.about-section2 .social-link-list {
    display: flex;
    
    gap:25px;
    justify-content: center;
}
.about-section2 .social-link-list .social-link {
    color: var(--primary-color);
    font-size: var(--font-size-l);
    transition: 0.2s ease;
}
.about-section2 .social-link-list .social-link:hover{
    color: var(--secondary-color);
}
/* Menu styling */
.menu-section {
    background: var(--darkcolor);
    color: var(--whitecolor);
    padding: 50px 0 100px;  
}

.menu-section .menu-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap:110px;
    justify-content: space-between;
}
.menu-section .menu-list .menu-item{
    display: flex;
    align-items: center;
    flex-direction: column;
    width: calc(100% / 6 );
    justify-content: space-between;
    text-align: center;

}
.menu-section .menu-list .menu-item a{
    color: var(--whitecolor);
    text-decoration: none;
}
.menu-section .menu-list .menu-item .menu-image:hover{
    color: var(--whitecolor);
    box-shadow: 0   0   20px var(--primary-color);
    border-radius: var(--border-radius-s);
    transform: scale(1.2);
    transition: 0.6s ease;
}
.menu-section .menu-list .menu-item .name:hover{
    color: var(--whitecolor);
    box-shadow: 0   0   20px var(--primary-color);
    border-radius: var(--border-radius-s);
    transform: scale(1.2);
    transition: 0.6s ease;
}
.menu-section .menu-list .menu-item a:visited {
    color: var(--whitecolor);
}

.menu-section .menu-list .menu-item .menu-image {
    max-width: 83%;
    aspect-ratio: 1;
    margin-bottom: 15px;
    object-fit: contain;
    border-radius: var(--border-radius-circle);
     transition: 0.6s ease;
}
.menu-section .menu-list .menu-item .name {
    margin: 12px 0;
    font-size: var(--font-size-s);
    font-weight: var(--font-weight-semibold);
     transition: 0.6s ease;
}
.menu-section .menu-list .menu-item .text {
    font-size: var(--font-size-m);
    
}
.btn-whatsapp{
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
   
    justify-content: center;
    align-items: center;
    background: #25d366;
    color: var(--whitecolor);
    font-size: 40px;
    border-radius: var(--border-radius-circle);
    padding: 25px;
    text-decoration: none;
    width: 0;
    height: 0;
    z-index: 5;
}
.btn-instagram{
    position: fixed;
    bottom: 80px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
    color: var(--whitecolor);
    font-size: 40px;
    border-radius: var(--border-radius-circle);
    padding: 25px;
    text-decoration: none;
    width: 0;
    height: 0;
    z-index: 5;
}
.btn-phone{
    position: fixed;
    bottom:140px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--whitecolor);
    font-size: 20px;
    border-radius: var(--border-radius-circle);
    padding: 25px;
    text-decoration: none;
    width: 0;
    height: 0;
    z-index: 5;
}

/* testimonials styling */
.testimonials-section {
    padding: 50px 0 100px;
    background: var(--light-pink-color);

}
.testimonials-section .slider-wrapper {
    overflow: hidden;
    margin: 0 60px 50px;

}
.testimonials-section .testimonial{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 35px;
    text-align: center;
    user-select: none;

}
.testimonials-section .testimonial .user-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 50px;
    border-radius: var(--border-radius-circle);

}
.testimonials-section .testimonial .name {
    margin-bottom: 16px;
    font-size: var(--font-size-m);

}
.testimonials-section .testimonial .feedback {
    line-height: 25px;  
}
.testimonials-section .swiper-pagination-bullet{
    width: 15px;
    height: 15px;
    opacity: 1;
    background: var(--secondary-color);

}
.testimonials-section .swiper-slide-button {
    color: var(--secondary-color);
    margin-top: -50px;
    transition: 0.3s ease;

}
.testimonials-section .swiper-slide-button:hover {
    color: var(--primary-color);
}
/* Gallery style */
.gallery-section {
    padding: 50px 0 100px;

}
.gallery-section .gallery-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}
.gallery-section .gallery-list .gallery-item {
    width: calc(100% / 3 - 32px);
    border-radius: var(--border-radius-s);
    overflow: hidden;
}
.gallery-section .gallery-item .gallery-image {
    width: 100%;
    height: 100%;
    cursor: zoom-in;
    transition: 0.3s ease;

}
.gallery-section .gallery-item:hover .gallery-image {
    transform: scale(1.3);
}
/* Contact us style */

.contact-section {
    background: var(--light-pink-color);
    padding: 50px 0 100px;

}
.contact-section .section-content {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    justify-content: space-between;

}
.contact-section .contact-info-list .contact-info {
display: flex;
gap: 20px;
margin: 20px 0;
align-items: center;
}
.contact-section .contact-info-list .contact-info i {
    font-size: var(--font-size-m);

}
.contact-section .contact-info-list .contact-info a{
    text-decoration: none;
    color: black;
}
.contact-section .contact-info-list .contact-info a:hover {
    color: var(--primary-color);
}
.contact-section .contact-info-list .contact-info a:visited{
    color: black;
}

.contact-section .contact-form .form-input {
    width: 100%;
    height: 50px;
    background: var(--whitecolor);
    border: 1px solid var(--medium-gray-color);
    border-radius: var(--border-radius-s);
    padding: 0 12px;
    outline: none;
    margin-bottom: 16px;
    
}
.contact-section .contact-form{
    max-width: 50%;

}
.contact-section .contact-form .form-input:focus{
    border-color: var(--secondary-color)
}

.contact-section .contact-form textarea .form-input{
    height: 100px;
    padding: 12px;
    resize:vertical;

}
.contact-section .contact-form .submit-button{
    background: var(--primary-color);
    margin-top: 10px;
    transition: 0.3s ease;
    padding: 10px 26px;
    color: var(--whitecolor);
    border-radius: var(--border-radius-m);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-m);
    border: 1px solid var(--primary-color);
}
.contact-section .contact-form .submit-button:hover{
    background: transparent;
    color: var(--primary-color);
}
/* footer style */
.footer-section{
    background: var(--darkcolor);
    padding: 20px 0;

}
.footer-section .section-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-section .copyright-text a{
    text-decoration: none;
    color: var(--whitecolor);
}

.footer-section .copyright-text{
    color: var(--whitecolor);
    transition: 0.2s ease;
    text-decoration: none;
}
.footer-section .copyright-text a:hover {
color: var(--primary-color);
}
.footer-section .copyright-text a:visited {
    color: var(--whitecolor);
}
.footer-section .social-link{
    color: var(--whitecolor);
    transition:  0.2s ease;
}
.footer-section .policy-link {
    color: var(--whitecolor);
    transition:  0.2s ease;
}

.footer-section .social-link-list{
    display: flex;
    gap:25px;
}
.footer-section .social-link-list .social-link{
    font-size: var(--font-size-l);

}
.footer-section .social-link-list .social-link:hover, 
.footer-section .policy-text .policy-link:hover  {
    color: var(--secondary-color);

}
.footer-section .policy-text .separator {
color: var(--whitecolor);
margin: 0 5px;
}

/* Mobil uyum menu */
@media screen and (max-width:1024px) {
.menu-section .menu-list .menu-item {
    width: calc(100% / 3 - 60px);
}
.menu-section .menu-list {
    gap: 60px;

}
 .hero-section {
        background-position: -1200px;
    }





}

/* Mobil uyum */
@media screen and (max-width:1000px) {
    :root {
         
    --font-size-m: 1 rem;
    --font-size-l: 1.3rem;
    --font-size-xl: 1.5rem;
    --font-size-xxl: 1.8 rem;
    }
    body.show-mobile-menu header::before {
        content: "";
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        backdrop-filter: blur(5px);
        background: rgba(0, 0, 0, 0.2);

    }
.navbar #menu-open-button {
    display: block;
}
.navbar #menu-close-button { 
    display: block;
}
.navbar #menu-close-button {
    position: absolute;
    right: 30px;
    top: 30px;

}
.navbar #menu-open-button {
    color: var(--secondary-color);
}
    .navbar .navmenu {
        display: block;
        background: var(--gradient-color);
        position: fixed;
        left: -300px;
        top: 0;
        width: 300px;
        height: 100%;
display: flex;
flex-direction: column;
align-items: center;
padding-top: 100px;
transition: left 0.2s ease;
    }
    body.show-mobile-menu .navbar .navmenu {
        left: 0px
    }
   
    .navbar .navmenu .navlink {
        color: var(--whitecolor);
        display: block;
        margin-top: 17px;
        font-size: var(--font-size-m);
    }
    .hero-section .section-content {
        gap: 50px;
        text-align: center;
        padding: 40px 20px 20px;
        flex-direction: column-reverse;
        justify-content: center;
        color: var(--whitecolor);
    }
   
  
    .hero-section  .hero-details :is( .subtitle, .description,), 
    .about-section .about-section2 .about-details, .contact-section .contact-form {
        max-width: 100%;
    }
    .hero-section .section-content .hero-details .hero-img2 {
        margin-top: -350px;
        margin-bottom: 47px;
        margin-left: 50px;
        height: 120px;
        width: auto;
        z-index: 0;
       
    }
    .hero-section  .hero-details .buttons{
justify-content: center;
max-width: 500px;
    }
    .hero-section .hero-details .order-now:hover{
        color: var(--whitecolor);
    }
    .hero-section .hero-details .contact-us{
        color: var(--whitecolor);
    }
    .hero-section {
        background-position: -800px;
    }
    .hero-section  .hero-details .subtitle {
        color: var(--whitecolor);
        font-size: var(--font-size-l);
        z-index: 1;
    }
    .about-section .section-content { 
        flex-direction: column;
        gap: 0px;

    }
      .about-section .section-content .about-details .text {
        padding: 0;
        width: 400px;
        margin-left: -50px;
    }
      .about-section .section-content .about-details h3 {
       width: 450px;;
       margin-left: -50px;
       text-align: start;
       align-items: start;
    }
     .about-section2 .section-content2 .about-details h3 {
       width: 450px;;
       margin-left: -50px;
       text-align: start;
       align-items: start;
    }
    .about-section2 .section-content2 .about-details .text {
        padding: 0;
        width: 400px;
        margin-left: -50px;
    }
    .about-section .about-image-wrapper .about-image {
        width: 100%;
        height: 100%;
        max-width: 250px;
        aspect-ratio: 1;

    }
     .about-section2 .section-content2 { 
        flex-direction: column;
        gap: 70px;

    }
    .about-section2 .about-image-wrapper .about-image {
        width: 100%;
        height: 100%;
        max-width: 250px;
        aspect-ratio: 1;

    }
     .about-section2 .about-image-wrapper{
        position: relative;
        align-self: center;
        top: 0px;
    }
     .about-section .about-image-wrapper{
        position: relative;
        align-self: center;
        top: 0px;
    }
    .menu-section .menu-list .menu-item {
    width: calc(100% / 2 - 30px);
}
.menu-section .menu-list {
    gap: 30px;

}
.menu-section .menu-list .menu-item .menu-image {
    max-width: 200px;


}
.gallery-section .gallery-list{
    gap: 30px;
}
.gallery-section .gallery-list .gallery-item{
   width: calc(100% / 2 - 30px); 

}
.contact-section .section-content{
    flex-direction: column-reverse;
    align-items: center;
}

}
/* Mobil uyum */
@media screen and (max-width:500px) {
    :root {
         
    --font-size-m: 1 rem;
    --font-size-l: 1.3rem;
    --font-size-xl: 1.5rem;
    --font-size-xxl: 1.8 rem;
    }
    body.show-mobile-menu header::before {
        content: "";
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        backdrop-filter: blur(5px);
        background: rgba(0, 0, 0, 0.2);

    }
.navbar #menu-open-button {
    display: block;
}
.navbar #menu-close-button { 
    display: block;
}
.navbar #menu-close-button {
    position: absolute;
    right: 30px;
    top: 30px;

}
.navbar #menu-open-button {
    color: var(--secondary-color);
}
    .navbar .navmenu {
        display: block;
        background: var(--gradient-color);
        position: fixed;
        left: -300px;
        top: 0;
        width: 300px;
        height: 100%;
display: flex;
flex-direction: column;
align-items: center;
padding-top: 100px;
transition: left 0.2s ease;
    }
    body.show-mobile-menu .navbar .navmenu {
        left: 0px
    }
   
    .navbar .navmenu .navlink {
        color: var(--whitecolor);
        display: block;
        margin-top: 17px;
        font-size: var(--font-size-m);
    }
    .hero-section .section-content {
        gap: 50px;
        text-align: center;
        padding: 40px 20px 20px;
        flex-direction: column-reverse;
        justify-content: center;
        color: var(--whitecolor);
    }
   
  
    .hero-section  .hero-details :is( .subtitle, .description,), 
    .about-section .about-section2 .about-details, .contact-section .contact-form {
        max-width: 100%;
    }
    .hero-section .section-content .hero-details .hero-img2 {
        
        margin-bottom: 40px;
        margin-left: 0;
        height: 100px;
        width: auto;
        z-index: 0;
       
    }
    .hero-section  .hero-details .buttons{
justify-content: center;
font-size: var(--font-size-s);
width: 400px;
margin-left: -5px;

    }
    .hero-section .hero-details .order-now:hover{
        color: var(--whitecolor);
    }
   
    .hero-section .hero-details .contact-us{
        color: var(--whitecolor);
        
        
        
    }
    .hero-section {
        background-position: -750px 40px;
    }
    .hero-section  .hero-details .subtitle {
        color: var(--whitecolor);
        font-size: var(--font-size-m);
        z-index: 1;
        margin-top: 400px;
        margin-left: 10px;
    }
    .about-section .section-content { 
        flex-direction: column;
        gap: 70px;
       

    }
    .about-section .about-image-wrapper .about-image {
        width: 100%;
        height: 100%;
        max-width: 250px;
        aspect-ratio: 1;
       

        
        

    }
    .about-section2 {
        padding-top: 30px;
    }
      .about-section .section-content .about-details .text {
       padding: 0;
        width: 360px;
        margin-left: -100px;
    }
      .about-section .section-content .about-details h3 {
       width: 270px;;
       margin-left: -50px;
       text-align: center;
       align-items: center;
    }
    .about-section2 .section-content2 { 
        flex-direction: column;
        gap: 70px;

    }
    .about-section2 .about-image-wrapper .about-image {
        width: 100%;
        height: 100%;
        max-width: 250px;
        aspect-ratio: 1;

    }
    .about-section2 .section-content2 .about-details h3 {
       width: 270px;;
       margin-left: -50px;
       text-align: center;
       align-items: center;
    }
    .about-section2 .section-content2 .about-details .text {
        padding: 0;
        width: 360px;
        margin-left: -100px;
    }
    .menu-section .menu-list .menu-item {
    width: calc(100% / 2 - 30px);
}
.menu-section .menu-list {
    gap: 30px;

}
.menu-section .menu-list .menu-item .menu-image {
    max-width: 200px;


}
.gallery-section .gallery-list{
    gap: 30px;
}
.gallery-section .gallery-list .gallery-item{
   width: calc(100% / 2 - 30px); 

}
.contact-section .section-content{
    flex-direction: column-reverse;
    align-items: center;
}

}
@media screen and (max-width:640px) {
      .menu-section .menu-list .menu-item ,
      .gallery-section .gallery-list .gallery-item {
    width: 100%;
}
.menu-section .menu-list {
    gap: 60px;

}
.testimonials-section .swiper-slide-button {
    display: none;
}
.testimonials-section .slider-wrapper {
    margin: 0 0 30px;
}
.footer-section .section-content {
    flex-direction: column;
    gap:20px;

}
}
@media screen and (max-width:380px) {
.hero-section {
        background-position: -650px 0px;
    }
    .hero-section  .hero-details .buttons{
justify-content: center;
font-size: var(--font-size-s);
width: 350px;
margin-left: -10px;
    }
}
@media screen and (max-width:395px) {
.hero-section {
        background-position: -850px 40px;
    }
    .hero-section  .hero-details .buttons{
justify-content: center;
font-size: var(--font-size-s);
width: 350px;
margin-left: -10px;
    }
}