*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* ******************************************************* Header ************************************************************* */
/* Header width */
.top-header {
  background-color: #f5f7fa;
}

.logo-img {
    max-width: 150px;
  height: auto;
}

.call-text span {
  color: #ff6b6b;
  font-weight: 700;
  font-size: 20px;
  margin-right: 5px;
  font-family: dosis, sans-serif;
}

.call-text a{
    color: rgb(10, 54, 104);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    font-family: roboto;
}

.social-icons a {
  width: 35px;
  height: 35px;
  background-color: #ff6b6b;
  color: white;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-left: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  background-color: #e05555;
}

.navbar-nav .nav-link {
  color: #1c355e;
  font-weight: 700;
  font-size: 15px;
  font-family: dosis, sans-serif;
}

.navbar-nav .nav-link.active {
  color: #ff6b6b;
}
.navbar-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 80%;
}

.navbar-toggler {
  border: none;
    padding: 0.25rem 0.75rem;
}

.navbar-nav a:hover{
    color: rgb(249, 136, 122);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

@media (max-width: 450px) {
  .call-text {
    display: none;
  }

  .navbar-toggler{
    margin-top: -122px !important;
  }

  .social-icons {
    display: none;
  }


  .m-0{
    display: none;
  }
}

/* ******************************************************* Footer ***************************************************** */
.footer{
  background-color: black;
  color: white;
  padding: 40px;
}

.footer-services{
  display: flex;
  justify-content: start;
}

.footer-services i{
  color: #da795f;
}

.footer-services p{
  padding: 0 10px;
}

.footer h3{
  font-family: dosis, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
}

.footer-services a h5{
  font-family: roboto, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
}

.footer-services a{
  text-decoration: none;
  color: white;
}

.footer-services a:hover{
  color: #da795f;
}

.social_icons a i{
    background-color: #ff6b6b;
    border-radius: 20px !important;
    height: 40px;
    width: 40px;
    padding: 12px 13px;
    color: white;
}

.footer_width{
  display: flex;
  justify-content: space-between;
}

.social{
  display: flex;
}

.social_icons{
  padding-left: 5px;
}

.social p{
  padding: 5px 0;
}

@media (max-width: 768px) {
  .footer_width {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .social {
    order: -1;   /* moves above copyright */
    margin-bottom: 10px;
  }

  hr {
    order: 1;    /* keep hr after social visually */
    width: 100%;
  }
}
/* *********************************************************** Index page ************************** background image */
/* background image */
.hero-section{
    background: linear-gradient(rgba(0, 0, 0, 0.6)), url('images/background.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 80vh;
    min-height: 500px;
}

.welcome-text{
    font-family: dosis, sans-serif;
    font-weight: 800;
    font-size: 18px;
    line-height: 22px;
    color: rgba(249, 136, 122);
}

.hero-title {
  font-family: dosis, sans-serif;
  font-weight: 700;
  font-size: 70px;
  line-height: 70px;
  color: white;
}

.hero-subtitle{
    font-family: dosis, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    color: white;
}

.hero-desc{
    font-family: roboto, sans sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    color: white;
}

.hero-btn {
  background-color: #ff7a6b !important;
  color: white !important;
  padding: 12px 25px !important;
  border-radius: 6px;
  font-weight: 500 !important;
  font-size: 13px !important;
  line-height: 13px;
  font-family: roboto, sans sans-serif;
}

.hero-btn:hover {
  background-color: #e96557;
  color: white;
}

@media (max-width: 768px) {
  .hero-section {
    height: auto;
    padding: 60px 0;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-desc {
    font-size: 14px;
  }
}

/* About Elite section */
.about-section {
  background: url('images/index-about.png');
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat !important;
}

.about-title {
  color: rgb(249, 136, 122);
  font-family: dosis, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
}

.main-heading {
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 15px;
  color: rgb(3, 14, 26);
  font-family: dosis, sans-serif;
}

.text-data{
  font-family: roboto, sans-sarif;
  font-weight: 500;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: 0.5px;
  color: rgb(57, 76, 71);
}

.read-btn {
  background-color: #0a3668 !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 6px;
}

.read-btn:hover {
  background-color: #011529 !important;
  color: #fff;
}

.image-box {
  max-width: 500px;
  margin: auto;
  border-radius: 30px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .main-heading {
    font-size: 24px;
  }

  .image-box {
    max-width: 300px;
  }
}

/* Why Choose section */
.why_choose{
  background: linear-gradient(rgba(0, 0, 0, 0.5)), url('images/elite-bg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 100%;
  padding: 40px 0;
}

.why_choose_heading{
  font-family: dosis, sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  padding-bottom: 40px;
}

.why_choose_box{
  align-items: center;
  justify-content: center;
}

.box{
  border: 1px solid white;
  padding: 10px 30px;
  border-radius: 10px;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: white;
  display: flex;
  gap: 15px;
  max-width: 250px;
  margin: 10px;
  width: 100%;
  min-height: 100px;
}

.box img{
  width: 50px;
  height: 50px;
  border: 2px solid white;
  border-radius: 5px;
}

.box_data h2{
  color: rgb(249, 136, 122);
  font-weight: 700;
  font-size: 32px;
  line-height: 42px;
  font-family: dosis, sans-serif;
}

.box_data p{
  font-family: roboto, sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 25px;
}

.why_choose_box{
  display: flex;
}

/* services we provide section */
.service{
  background: linear-gradient(rgba(240,228,228,0.9), rgba(229,218,218,0.86)),
              url('images/service.webp');
  background-size: cover;
  background-position: center;
  width: 100%;
  padding: 30px 0;
}

.service h2{
  font-family: dosis, sans-serif;
  font-size: 30px;
  font-weight: 700;   
}

.service_card{
  position: relative;
  padding-top: 60px;
}

.service_img{
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid #9fc6f6;
}

.service_img_mid{
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid #da795f;
}

.service_img:hover{
  border: 2px solid #2278cf;
}

.service_img_mid:hover{
  border: 2px solid #c0401c;
}

.service_img_mid img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service_box_mid{
  background: #fff;
  border-radius: 12px;
  padding: 60px 20px 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  background-color: #f2e5e2;
  border: 1px solid #da795f;
}

.service_box_mid h5{
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  color: black;
  padding: 60px 0 20px 0;
}

.service_box{
  background: #fff;
  border-radius: 12px;
  padding: 60px 20px 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  background-color: #e7ecf1;
  border: 1px solid #639ed8;
}

.service_box h5{
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  color: black;
  padding: 60px 0 20px 0;
}

.service a{
  text-decoration: none;
}

.modal-title{
  font-family: dosis, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
}

@media (max-width: 768px){
  .service_img{
    width: 100px;
    height: 100px;
  }
}

/* Our Process section */
.our_process{
  background: linear-gradient(rgba(0, 0, 0, 0.6)), url('images/elite-bg.jpg');

  overflow: hidden;

}

.our_process h2{
  font-family: dosis, sans-serif;
  font-size: 30px;
  font-weight: 700; 
  color: white;  
  text-align: center;
  padding: 0 0 30px 0;
}

.process_img{
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 1px solid #9fc6f6;
}

.process_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process_data{
  color: white;
  text-align: center;
}

.process_card{
  border: 1px solid #f2e5e2;
  padding: 20px;
  border-radius: 15px;
}

.process_card:hover{
  border: 2px solid #de4726;
}

.process_data p{
  border: 1px solid #da795f;
  border-radius: 15px;
  padding: 10px;
  max-width: 100px;
  margin: 20px auto;
  align-items: center;
  display: flex;            
  align-items: center;       
  justify-content: center;
}

.process_box{
  /* padding: 0 15px; */
  padding: 0;
}

/* @media (max-width: 768px){

  .process_box .row{
    margin-left: 0;
    margin-right: 0;
  }

  .process_box .col-12{
    padding-left: 0;
    padding-right: 0;
  }

  .process_card{
    width: 100%;
  }

  .process_img{
    width: 120px;
    height: 120px;
  }
} */
 @media (max-width: 768px){

  .our_process .container,
  .our_process .row{
    margin: 0;
    padding: 0;
  }

  .process_box .row{
    row-gap: 20px;
  }

  .process_box .col-12{
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .process_card{
    width: 100%;
  }

  .process_img{
    width: 120px;
    height: 120px;
  }
}

/* .process_box{
  display: flex;       
  flex-wrap: wrap;        
  justify-content: center;
  gap: 20px;  
}

.process_card {
  flex: 1 1 180px;       
  max-width: 290px;      
  text-align: center;   
} */

/* Get an advise from our Medical Expert section */
.advice h2{
  font-family: dosis, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  padding: 40px 0;
}

.form-label{
  font-family: roboto, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}

.advice .btn{
  background-color: #0a3668;
  color: white;
  font-family: roboto, sans-serif
}

.advice{
  background: linear-gradient(rgba(235, 243, 253, 0.5)), url('images/form-bg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 40px 0;
}

/* ******************************************************** About Us Page ****************************************************** */
/* background image */
.about_us{
  background: linear-gradient(rgba(0, 0, 0, 0.6)), url('images/about-us-bg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  min-height: 400px;
}

.welcome-text1{
  font-family: dosis, sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  color: white;
}

.hero-title1{
  font-family: roboto, sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
}

.hero-title1 span{
  color: rgb(249, 136, 122);
}

/* Our Mission - Our Vision */
 .mission{
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
 }
      
 .vision{
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
 }

 .mission_vision img{
  width: 200px;
  height: 200px;
  border-radius: 5px;
 }

 .mission_vision{
  align-items: center !important;
  text-align: center !important; 
  justify-content: center;
 }

 .mission{
  background-color: #0a3668;
  color: #f9887a;
  padding: 10px;
  border-radius: 25px;
 }

 .vision{
  background-color: #f9887a;
  color: #0a3668;
  padding: 10px;
  border-radius: 25px;
 }

 .mission_data p{
  padding: 20px;
 }

 .vision_data p{
  padding: 20px;
 }

 @media(max-width: 450px){
  .vision{
    margin-top: 40px;
  }
  .hero-btn{
    margin-bottom: 20px !important;
  }
 }
     
/* about data section */
.about-elite{
  background: linear-gradient(rgba(218, 224, 236, 0.922)), url('images/service.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Start you’re parenthood journey with the Elite Care Center Mumbai section*/
.parenthood{
  font-family: dosis, sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 39px;
  color: rgb(10, 54, 104);
}

.parenthood_section{
  padding: 50px;
}

.start_social{
  display: flex;
}

.start_social a{
  text-decoration: none;
  color: #e96557;
  padding: 0 5px;
}

.start_social i{
  padding: 5px 0;
  color: rgb(10, 54, 104);
}

.start_social_icons{
  display: flex;
  gap: 10px;
}

.start button{
  background-color: #e96557;
  color: white;
}

@media(max-width: 450px){
  .start button{
  margin: 20px 0;
}
.parenthood{
          font-size: 18px;
        line-height: 28px;
        text-align: center;
}
.start_social_icons {
    flex-direction: column; /* Stack icons vertically */
    align-items: center;
    padding-bottom: 0;
  }
.start .btn{
  margin-top: 0;
}
}

/* ************************************************** Our Services Page ******************************************************* */
.our_services{
  background: linear-gradient(rgba(0, 0, 0, 0.6)), url('images/about-us-bg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  min-height: 400px;
}

/* ************************************************** Our Process Page ******************************************************* */
/* Screening Donors and Recipients */
.screening h3{
  font-family: dosis, sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 30px; 
  padding: 20px 0; 
}

.screening p{
  font-family: roboto, sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 25px;
  color: rgb(57, 76, 71);
}

.screening h5{
  font-family: roboto, sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 25px;
}

.donors{
  display: flex;
}

.donors img{
  width: 20px;
  height: 20px;
}

.donors p{
  padding: 0 10px;
}

.ivf_donor{
  background-color: white;
}

.screening h4{
  font-family: dosis, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
}

.screening .btn{
  background-color: #0a3668;
  color: white;
  font-family: roboto, sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 13px;
  padding: 20px;
}

.center_image {
    text-align: center; /* Center the image horizontally */
}

.center_image img {
    width: 100%; /* Make the image responsive */
    height: auto; /* Maintain aspect ratio */
    max-width: 640px; /* Limit the width to 640px */
    display: block; /* Removes any inline space below the image */
    margin: 0 auto; /* Ensures the image is centered horizontally */
}

.screening{
    background-color: #F0F7FF;
    position: relative;
}
 
.overlay{
    background-image: url('images/process_bg.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 70% auto;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
}
 
/* Optional overlay effect */
.overlay::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.9); /* opacity effect */
    z-index: 1;
}
 
.overlay .container{
    position: relative;
    z-index: 2;
}
/* ****************************************************** Testimonial page **************************************************** */
.testimonial_image img{
  width: 100%;
  height: auto;
  max-width: 500px;
  min-height: 200px;
  padding: 40px 0;
}

.testimonial_heading{
  color: #DEEDFF;
    font-family: "Dosis", Sans-serif;
    font-size: 120px;
    font-weight: 800;
    text-transform: uppercase;
    font-style: normal;
}

.testimonial_heading{
  padding: 100px 0;
}

@media (max-width: 992px) { /* Tablet */
  .testimonial_heading {
    font-size: 60px;
    padding: 15px 0;
  }
}

@media (max-width: 768px) { /* Mobile */
  .testimonial_heading {
    font-size: 40px;
    text-align: center; /* center text under image */
    padding: 10px 0;
  }
  .testimonial_image .row {
    flex-direction: column; /* stack image & text */
    align-items: center;
  }
}

/* ************************************************ Contact Us ********************************************************* */
/* Get in touch */
.get_in_touch{
  background: linear-gradient(rgba(240, 227, 227, 0.6)), url('images/get-in-touch-bg.jpeg');
  padding: 40px 0;
}

/* .visit{
  display: flex;
  justify-content: flex-start;
  border: 1px solid #de4726;
  padding: 20px;
} */

.visit {
  display: flex;
  align-items: center;          /* vertically center image and text */
  gap: 20px;                    /* space between image and address */
  border: 1px solid #de4726;
  padding: 20px;
  margin-bottom: 20px;          /* space between boxes */
  border-radius: 10px;          /* optional: rounded corners */
  flex-wrap: wrap;              /* allows stacking on mobile */
}

/* .get_image img{
  width: 100% !important;
  height: auto !important;
  max-width: 100px !important;
  min-height: 50px !important;
  padding: 20px 0 !important;
} */

.get_image img {
  width: 100px;     /* fixed width for all images */
  height: 100px;    /* fixed height for all images */
  object-fit: cover; /* maintain aspect ratio */
}

.get_in_touch h2{
  font-family: dosis, sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  /* color: rgb(10, 54, 104); */
}

.get_in_touch p{
  font-weight: 500;
  font-size: 14px;
  line-height: 23px;
  color: rgb(57, 76, 71);
}

.address h3{
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
}

.address {
  flex: 1;           /* text takes remaining space */
  padding: 0 10px;
}

@media (max-width: 768px) {
  .visit {
    flex-direction: column;  /* stack image above text */
    align-items: center;     /* center items */
    text-align: center;
  }

  .get_image img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
  }

  .address {
    padding: 0;
  }
}

/*  We are here to help  */
.help h2{
  font-family: dosis, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
}

.help p{
  padding: 0 0 20px 0;
  font-family: roboto, sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 23px;
  color: rgb(57, 76, 71);
}

.form-label{
  font-family: roboto, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}

.help .btn{
  background-color: #0a3668;
  color: white;
  font-family: roboto, sans-serif
}

.help{
  background: linear-gradient(rgba(235, 243, 253, 0.3)), url('images/contact-bg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 40px 0;
}

/* For Client Form */
.client_box{
  border: 1px solid #234c74;
  background-color: #f2f6f9;
  padding: 40px;
  border-radius: 15px;
}

.client_box .btn{
  background-color: #0a3668;
  color: white;
  font-family: roboto, sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 13px;
  padding: 15px 25px;
}

.client_form{
  padding: 50px;
}

.client_box h2{
  font-family: dosis, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 31px;
}

.client_box p{
  font-family: roboto, sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 23px;
  color: rgb(57, 76, 71);
}

@media(max-width: 450px){
  .client_box{
    margin-bottom: 20px;
  }
}