
/* Custom CSS for Slick carousel */

/* header */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');


/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: none; border: none;
    text-decoration: none;
   
    transition: all .2s linear;
    font-size: 1.5rem;
}


html{
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
}

section{
  padding: 2rem 7%;
  /* width: 100%; */
  }

html::-webkit-scrollbar{
    width: 1rem;
}

html::-webkit-scrollbar-track{
    background: transparent;
}

html::-webkit-scrollbar-thumb{
    background: #e3375f;
    border-radius: 5rem;
}
body {
  font-family: 'Nunito', sans-serif;
  background-color:  #fff;;

}

.dropdown__link {
 
  text-decoration: none;
  display: block;
  padding: 5px 0;
}

.dropdown__link:hover {
  color: #2286de;
}

.nav__link {
text-decoration: none;

padding: 10px 15px;
transition: all 0.3s ease;
}




ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
/* .container {
  max-width: 1120px;
  margin-inline: 1.5rem;
} */
.heading{
  text-align: center;
  font-size: 3rem;
  margin: 2rem 0;
  color:#e3375f;

}
/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  /* box-shadow: 0 2px 8px hsla(220, 68%, 12%, 0.1); */
  /* background-color: rgb(238, 190, 190); */
  z-index:1000 ;
  /* backdrop-filter: blur(40px); */
  align-content: center;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);


}

/*=============== NAV ===============*/


.nav-container{
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  flex-direction: row;
  /* background-color: #e6e9ed; */
  padding: 2rem 9%;
  /* backdrop-filter: blur(40px); */

}


.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
 
}


.nav__logo { 
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  
  transition: color 0.3s;
 
  
} 
.nav__logo, .nav-photo {
  height: 70px;
  width: auto;
 
}

.logo {
  width: 90px;

}


.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;

}
.nav__toggle-menu, .nav__toggle-close {
  font-size: 2.25rem;
  
  position: absolute;
  display: grid;
  place-items: center;
  inset: 0;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.4s;
}
.nav__toggle-close {
  opacity: 0;
}

.dropdown__link {
    color: #252323;
    text-decoration: none;
    display: block;
    padding: 5px 0;
  }
  
  .dropdown__link:hover {
    color: white;
  }
  .nav__link {
  text-decoration: none;
  color: #333;
  padding: 10px 15px;
  transition: all 0.3s ease;
  }
  .dropdown__title{
    color: #252323;
  }
  .nav__link:hover {
  color: #816bff;
  }
  
  
  .nav__link {
    /* color: rgb(48, 15, 147); */
    font-weight: bold;
    font-size: 1.6rem;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
    
  }


  
/*=============== DROPDOWN ===============*/
.dropdown__button {
  cursor: pointer;
}
.dropdown__arrow {
  font-size: 1.6rem;
  font-weight: initial;
  transition: transform 0.4s;
}
.dropdown__content, .dropdown__group, .dropdown__list {
  display: grid;
  /* background-color: #e3375f; */
}


.dropdown__group {
  padding-left: 2.5rem;
  row-gap: 0.5rem;
  background-color: #e3375f;
  border: 3px solid rgb(231, 189, 198);
  border-radius: 5px;
  padding: 2rem;
 

}
.dropdown__group:first-child {
  margin-top: 1.25rem;
}
.dropdown__group:last-child {
  margin-bottom: 1.25rem;
}
/* .dropdown__icon i {
  font-size: 1.25rem;
  
} */
.dropdown__title {
  /* font-size: 20px; */
  
  color:white;
  font-weight: bold;
  border-bottom: 2px solid black;
  padding-bottom: 10px;
  width: 250px;
  display: inline;
    
  
  
}
.dropdown__list {
  row-gap: 0.25rem;
}

.dropdown__link:hover {
  background-color: rgb(228, 82, 107);
  border: solid black 0.5px;
  padding: 1rem;
  border-radius: 10px;
  
}

/* Rotate dropdown icon */
.show-dropdown .dropdown__arrow {
  transform: rotate(180deg);
}


/* button */
.btn{
  display: inline-block;
  /* margin-top: 1rem; */
  background-color: #e3375f;
  color: #fff;
  padding: .8rem 3rem;
  border: .2rem solid rgb(215, 36, 90);
  cursor: pointer;
  font-size: 1.7rem;
  border-radius: .5rem;
  text-transform: capitalize;
}

.btn:hover{
  /* color: #252323; */
  background: rgb(188, 68, 104);
  /* border-color: rgb(154, 130, 136); */
}

/* header ends  */
/*=============== BREAKPOINTS ===============*/


@media screen and (max-width: 1079px) {
   
  
  .header{
    background-color:#FFF;
    height: 70px;
    opacity: 1;
    font-size: 1.5rem;
  }
  
   .nav__logo { 
    display: inline-flex;
    align-items: center;
    column-gap: 0.25rem;
    
    transition: color 0.3s;
   
    
  } 
  .nav__logo, .nav-photo {
    
    width: auto;
    /* background-color: #0762C8; */
  }
  
  .logo {
    height: 45px;
    width: 80px;
  /* background-color: #0762C8; */
  border-radius: 15px;
  }
  
  .nav__menu {
      /* background-color: rgb(13, 168, 34 0.1); */
      position: absolute;
      left: 0;
      top: 6.5rem;
      width: 329px;
      height: calc(90vh - 3.5rem);
      overflow: auto;
      padding-block: 1.5rem 4rem;
      pointer-events: none;
      opacity: 0;
      transition: top 0.4s, opacity 0.3s;
      display: flex;
      flex-direction: column;
      /* backdrop-filter: blur(5px); */
      /* border: solid black; */
      border-radius: 5px;
    }

    .nav__list{
      font-size: 1.5rem;
      width: 320px;
       background-color: rgb(216, 238, 244); 
       margin-top: -20px;
       border-radius: none;
       
       box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
       /* backdrop-filter: blur(5px); */
    }

    .dropdown__group {
      /* padding-left: 2.5rem; */
      row-gap: 0.5rem;
      background-color: #e3375f;
      border: 3px solid rgb(161, 37, 12);
      border-radius: 5px;
      width: 95%;
      /* padding: 2rem; */
     
    
    }

    .dropdown__content {
      
      /* background-color:rgb(241, 130, 150); */
      margin-left: 24px;
      width: 90%;
    
      
      
      
    }
    
    /* .nav__logo, .nav{
      border-radius: 60%;
      background-color: aliceblue;
  
    } */
    .nav__menu::-webkit-scrollbar {
      width: 0.5rem;
      
    }
    .nav__menu::-webkit-scrollbar-thumb {
      background-color: hsl(341, 89%, 38%);
    }
    
  .dropdown__container {
    background-color: rgb(239, 226, 228);
    height: 0;
    overflow: hidden;
    transition: height 0.4s; 
    
  }

  .nav__link {
  text-decoration: none;
  color:#252323;
  margin-left: 25px;
  padding: 10px 15px;
  transition: all 0.3s ease;
  }
  
  .nav__link:hover {
  color: #816bff;
  }

  .show-menu {
    opacity: 1;
    top: 7rem;
    pointer-events: initial;
  }
  
  
  
  /* Show icon */
  .show-icon .nav__toggle-menu {
    opacity: 0;
    transform: rotate(90deg);
  }
  
  .show-icon .nav__toggle-close {
    opacity: 1;
    transform: rotate(90deg);
  }

  .dropdown__group {
    padding-left: 1.5rem;
  }

  .nav__data{
    width: 100%;
    
  }

  .button{
    display: none;
  }
  

}

  /* For large devices */
  @media screen and (min-width: 1080px) {
    /* Nav */
    .nav {
      /* height: calc(var(--header-height) + 2rem); */
      display: flex;
      justify-content: space-between;
    }
    .nav__toggle {
      display: none;
    }

  
    .nav__list {
      display: flex;
      column-gap: 3rem;
      height: 100%;
      
    }
    /* .nav li {
      display: flex;
    } */
    .nav__link {
      padding: 0;
      color:#252323;
    }
    .nav__link:hover {
      background-color: initial;
    }
    /* Dropdown */
    .dropdown__button {
      column-gap: 0.25rem;
      pointer-events: none;
    }
    .dropdown__container {
      height: max-content;
      position: absolute;
      left: 0;
      right: 0;
      top: 6.5rem;
      /* background-color: blanchedalmond; */
      box-shadow: 0 6px 8px hsla(220, 68%, 12%, 0.05);
      pointer-events: none;
      opacity: 0;
      transition: top 0.4s, opacity 0.3s;
    }
    .dropdown__content {
      display: flex;
      justify-content: center;
    
      /* grid-template-columns: repeat(4, max-content); */
      gap: 6rem;
      max-width: 600px;
      margin-inline: auto;
      /* background-color: rgb(245, 240, 241); */
      backdrop-filter: blur (20px);
      border-radius: 10px;
      /* margin-left: 10px; */
      margin-top: 43px;
    }
  
    .dropdown__title{
  
      font-weight: bold;
      border-bottom: 2px solid black;
      padding-bottom: 10px;
      width: 250px;
      display: inline;
      
    
    }
    .dropdown__group {
      /* padding: 4rem 0; */
      margin-left: 10px;
      align-content: baseline;
      row-gap: 1.25rem;
    }
    .dropdown__group:first-child, .dropdown__group:last-child {
      margin: 0;
     
    }
    .dropdown__list {
      row-gap: 0.50rem;
      
    }
  
    .dropdown__item {
      cursor: pointer;
      /* background-color: #2286de; */
      
    }
    
    .dropdown__item:hover .dropdown__arrow {
      transform: rotate(180deg);
    }
    .dropdown__item:hover > .dropdown__container {
      top: 5.5rem;
      opacity: 1;
      pointer-events: initial;
      cursor: initial;
    }                    
  }
  /* @media screen and (min-width: 1152px) {
    .container {
      margin-inline: auto;
    }
  } */

  /* media query end */

  

  
.landing-hero {
  height: 100vh;
  background-image: url('images/adobe2.jpg'); 
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.landing-overlay {
  background-color: rgba(255, 255, 255, 0.797); 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 15px; /* Added padding to prevent content overflow */
  box-sizing: border-box; /* Include padding in the height and width */
}

.online-psych{
  display: flex;
  flex-direction: column;
  font-size: 12px;
  margin-left: 3px;
  font-family: sans-serif;
  color: #514d4d;
}
.online-main{
  display: flex;
  flex-direction: column;
  font-size: 2.5rem;
  margin-top: 10px;
  font-family: sans-serif;
}
.strng{
  font-size: 3rem;
  color: #ca244b;
  font-weight: bolder;
}
.landing-content {
  color: rgb(50, 50, 50);
  padding: 30px;
  max-width: 60%; /* Allow full width */
  z-index: 1;
  /* background-color: rgba(0, 119, 182, 0.8);  */
  border-radius: 10px; /* Optional: Round corners for aesthetics */
  box-sizing: border-box; /* Include padding in the width calculation */
}

.landing-content h1 {
  /* font-size: 3rem; */
  font-weight: bold;
  margin-bottom: 5px;
  /* text-transform: uppercase; */
}



.landing-content p {
  font-size: 1.5rem; /* Reduced size for mobile */
  margin-bottom: 30px;
  
}

.buttoons {
  display: flex;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  /* justify-content: center;  */
  gap: 20px; /* Space between buttons */
}

.bten {
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.3s ease-in-out;
  background-color: #e3375f;
  color: white;
  text-align: center;
  font-size: 16px;
}

.bten-primary {
  background-color: #e3375f;
  color: white;
}

.bten:hover {
  background-color: #b6d9f5;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .landing-hero {
      /* background-image: url('images/n');  */
      background-size: cover;
      background-position: center;
  }
  .landing-overlay{
    padding: 7px;
  }
  .landing-content {
      color: rgb(28, 27, 27);
      padding: 20px;
      max-width: 100%; /* Allow full width */
      z-index: 1;
      /* background-color: rgba(0, 119, 182, 0.8);  */
      border-radius: 10px; /* Optional: Round corners for aesthetics */
      box-sizing: border-box; /* Include padding in the width calculation */
  }

  .landing-content h1 {
      font-size: 2.5rem; 
  }

  .landing-content p {
      font-size: 1.5rem; /* Adjusted for readability */
  }

  .buttoons {
      flex-direction: column; /* Stack buttons vertically */
      gap: 15px;
  }
}

@media (max-width: 480px) {
  .landing-content h1 {
      font-size: 2.5rem; /* Adjusted for smaller devices */
  }
.landing-content p{
  font-size: 1.5rem;
}
  .online-psych{
      display: flex;
      flex-direction: column;
      font-size: 12px;
  }
  .online-main{
      display: flex;
      flex-direction: column;
      font-size: 2.2rem;
  
  }
  .strng{
      font-size: 3rem;
      color: #e3375f;
  }
  .bten {
      padding: 10px 20px;
      font-size: 1.4rem; /* Adjusted for smaller devices */
  }
}


  /* General Section Styling */
/* General Section Styling */
.mental-health-intro { 
  position: relative;
  /* padding: 80px 20px;  */
  text-align: center;
  /* background: url('images/adobe2.jpg') no-repeat center center/cover;  */
  /* background-attachment: fixed; */
  color: #c83535; /* Set text color for main text */
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-overlay{
  max-width: 1400px;
}
/* Intro Text Styling */
.intro-text h2 {
  margin-top: 30px;
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #e22f58; /* Main heading color */
  /* text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);  */
}

.intro-text p {
  font-size: 1.5rem;
  max-width: 750px;
  
  margin: 0 auto 40px;
  line-height: 1.6;
  color: #555; /* Description text color */
}

/* Service Section Styling */
.service-section {
  display: flex;
  justify-content: space-between; /* Changed to space-between for better alignment */
  flex-wrap: wrap;
  margin-top: 30px; /* Added margin for better spacing */
  /* gap: 20px;  */
  /* background-color: #0762C8; */
}

/* Service Item Styling */
.service-item {
  display: flex;
  align-items: center;
  flex: 1; /* Allow flex items to grow and fill space */
  min-width: 220px; /* Minimum width to ensure a good appearance */
  max-width: 400px; /* Maximum width for the service items */
  text-align: left; /* Align text to the left */
  padding: 10px; 
  /* background-color: rgba(255, 255, 255, 0.8);  */
  border-radius: 10px; /* Rounded corners */
  transition: transform 0.3s ease, background-color 0.3s ease; /* Smooth transition effects */
  color: #ededed; /* Text color */
  /* background-color: #087408; */
}

/* Icon Styling */
.icon-container {
  background: linear-gradient(135deg, #dce4ed, #d11e48); /* Gradient for modern look */
  border-radius: 50%;
  padding: 15px;
  font-size: 2.5rem;
  width: 80px;
  height: 50px; /* Adjusted height for better proportion */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Slightly darker shadow for depth */
}

/* Service Info Styling */
.service-info h3 {
  font-size: 1.7rem;
  margin-bottom: 10px;
  color: #c83535; /* Heading color for service items */
}

.service-info p {
  font-size: 1.3rem; /* Reduced font size for description */
  color: #555; /* Description text color */
  line-height: 1.4;
}

/* Hover Effect for Service Items */
.service-item:hover {
  transform: scale(1.05); /* Slightly scale up on hover */
  background-color: rgba(255, 255, 255, 0.9); /* Change background on hover */
}

/* Responsive Design */
@media (min-width: 1024px) {
  .service-item {
    flex: 0 0 22%; /* Four items in a row for large screens */
  }
}

@media (max-width: 1023px) and (min-width: 768px) {
  .service-item {
    flex: 0 0 48%; /* Two items in a row for tablets */
  }
}

@media (max-width: 767px) {
  .service-section {
    flex-direction: column;
    align-items: center; /* Center align on smaller screens */
  }
.intro-text h2 {
  
  font-size: 2.5rem;
 
 
}
.intro-text p{
  text-align: justify;
}

  .service-item {
    max-width: 90%; /* Allow more width on smaller screens */
    margin-bottom: 20px; /* Add bottom margin for spacing between items */
  }
}

 
  /* about starts */

  /* Main Section Layout */
  .new-main-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Slider on the left */
  .new-image-slider {
    width: 45%;
  }
  
  .new-slider img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    border: solid 10px rgb(249, 221, 221);
  }
  
  /* Content on the right */
  .new-content-area {
    width: 50%;
   
  }
  
  .new-content-area h2 {
    font-size: 2.8rem;
    color: #cc1f48;
    margin-bottom: 15px;
  }
  
  .new-content-area p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
    
  }
  
  .new-learn-more-btn {
    background-color: #e3375f;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
  }
  
  .new-learn-more-btn:hover {
    background-color: #294a89;
  }
  
  /* Responsive Design for Tablets */
  @media (max-width: 1024px) {
    .new-main-section {
      flex-direction: column;
      align-items: center;
    }
  
    .new-image-slider, .new-content-area {
      width: 100%;
      text-align: center;
    }
  
    .new-content-area {
      margin-top: 20px;
    }
    .new-content-area p {
        font-size: 1.4rem;
        text-align: justify;
      }
  }
  
  /* Responsive Design for Mobile Phones */
  @media (max-width: 768px) {
    .new-content-area h2 {
      font-size: 2.5rem;
    }
  
    .new-content-area p {
      font-size: 1.4rem;
      text-align: justify;
    }
  
    .new-learn-more-btn {
      padding: 8px 16px;
      font-size: 16px;
    }
  }
/*  */


/* our services */

.our-home-services {
  text-align: center;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.our-home-services h2 {
  margin-top: 0;
  font-size: 2.8rem;
  color: #db1c52;
}

.our-home-services p {
  color: #363636;
  font-size: 1.6rem;
  /* margin-bottom: 20px; */
  max-width: 750px;
  padding: 10px;
}

.our-home-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: #363636;
  /* margin-top: 10px; */
  width: 100%;
  /* background-color: #0762C8; */
}

.our-home-service {
  max-width: 350px;
  margin: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.our-home-service img {
  width: 100%;
  height: 200px;
}

.our-home-content {
  padding: 10px;
}

.our-home-content h3 {
  color: #333;
  font-size: 2rem;
  /* margin-top: 0; */
}

.our-home-content p {
  color: #252323;
}

.btn-container {
  display: flex;
  justify-content: center;
  margin-top: 0;
}

.btnnn {
  padding: 10px 20px;
  background-color: #db1c52;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btnnn:hover {
  background-color: #ec4b6e;
}

@media screen and (max-width: 1024px) {
  .our-home-container {
    align-items: center;
  }
.our-home-service h2 {
    font-size:2.5rem;
  }
.our-home-service h3 {
    font-size:2.2rem;
  }
  .our-home-service img {
    width: 100%;
    /* height: 300px; */
  }
}

/* our team */
/* packages */
.team-section{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background:#fff ;
  

}

.team-section h2{
  margin-top: 30px;
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #e22f58; 
}
.team-section p{
margin-bottom: 30px;
font-size: 1.6rem;
}
.team-box-container{
  display: flex;
  background-color: #fff;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
  /* text-transform: capitalize; */
max-width: 1200px;
}

.team-box{
  flex: 1 1 30rem;
  border-radius: .5rem;
  overflow: hidden;
  box-shadow: 0 1rem 2rem rgba(0,0,0,0.1);
  width: 100%;
  display: block;
}

.team-image{
  height: 20rem;
  overflow: hidden;
  /* width: 100%; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-photo{
  height: 170px;
  width: 170px;
  object-fit: cover;
  border-radius: 20rem;
  display: block;
}
.team-box:hover{
  transform: scale(1.1);
  border: solid palevioletred;
}

.team-content{
  text-align: center;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.team-name{
  font-size: 1.7rem;
 
}

.team-position{
  font-size: 1.7rem;
  color: #333;
  /* padding-top: 1rem; */
  width: 100%;
}

 /* span{
  
  font-size: 1.5rem;
  text-decoration: line-through;
} */

.team-para{
  font-size: 1.4rem;
  color: #373636;
  padding: 1rem 0;
  /* text-align: justify; */
}
.para-team{
  width: 100%;
  font-size:  1.4rem;
  /* text-align: justify; */
}
.my-team-para{
  font-size:  1.4rem;
  color:#252323;
}
/* end */
/* our team ends */


.choose-us-section {
  padding: 10px 0;
  background: linear-gradient(to right, #c0def7, #f8f7f7);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
}

.choose-us-heading {
  font-size: 2.8rem;
  color: #e3375f;
  margin-top: 20px;
  margin-bottom: 10px;
}

.choose-us-intro {
  font-size: 1.6rem;
  color: #363636;
  margin-bottom: 20px;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.choose-us-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1400px;
  padding: 10px;
  
}

.choose-us-item {
  flex-basis: calc(30% - 20px);
  margin: 10px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.icons {
  font-size: 2.7rem;
  color: #c83535;
  margin-bottom: 20px;
}

.choose-heading {
  font-size: 1.6rem;
  color: #c83535;
  margin-bottom: 10px;
}

.choose-us-para {
  font-size: 1.3rem;
  color: #252323;
}

/* Responsive styles */
@media only screen and (max-width: 768px) {
  .choose-us-container {
    flex-direction: column;
    align-items: center;
  }

  .choose-us-item {
    flex-basis: calc(100% - 20px);
  }
}

@media only screen and (max-width: 480px) {
  .choose-us-heading {
    font-size: 2.8rem;
  }

  .choose-us-intro {
    margin-bottom: 30px;
    width: 80%;
    text-align: center;
  }

  .choose-us-item {
    flex-basis: 100%;
    margin: 10px 0;
  }

  .choose-heading {
    font-size: 20px;
  }

  .choose-us-para {
    font-size: 12px;
  }
}


/* testimonials start */
.slide-container {
  /* width: 80%; */
  margin: 0 auto;
  background-color: #fff;
  max-width: 1400px;
 
  
}

.testimonials{
  text-align: center;
  
 
}

.testimonials h2{
  margin-top: 30px;
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #e22f58; 
}
.slide:hover {
transform: translateY(-10px);
}
.slide {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  width: 200px;
  height: 400px;
  box-shadow: 0 1rem 2rem rgba(0,0,0,0.1);
  
}
.slide-para{
margin-top: 2rem;
 /* font-size: 1.4rem; */
  height: 200px;
  width: 100%;
  color: #252323;
  text-align: justify;

}
.slide-para p{
  font-size: 1.4rem; 
}
.slide-name{
margin-top: 1rem;
  color: rgb(12, 102, 102);
}
/* .slide-para p{
  font-size: 1.5rem;
} */
.fa-star, .fa-star-half-alt{

  color: rgb(213, 213, 5);
}
.fa-quote-left{
  margin-right:15px;
  color: rgb(156, 194, 243);
}
.fa-quote-right{
  margin-left:15px;
  color: rgb(156, 194, 243);
}
.photo{
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: orange; */
}

.images {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}


/* faqs start here */


.faqs-section{
 
  /* background-color: aqua; */
  max-height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  /* width: 100%; */
  
}

.faqs-section h2{
  margin-top: 30px;
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #e22f58; 
}

.faqs-container{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
max-width: 1400px;
  /* width: 100%; */
  /* width: 500px; */
  /* background-color: #a81f1f; */
  backdrop-filter: blur(5px);

}

.faqs{
  width: 100%;
  /* background-color: #444; */

  
}
.accordion {
  background-color: #eee;
  /* color: #444; */
  cursor: pointer;
  padding: 18px;
  margin: 10px 0;
  width: 100%;
  /* border: none; */
  text-align: left;
  outline: none;
  font-size: 17px;
  color: #252323;
  transition: 0.4s;
  border: solid #e3375f ;
}
.open{
  background-color: #e3375f;
  color: white;
  border: 1px hidden deepskyblue;
}
.active,
.accordion:hover {
  background-color: #e3375f;
  color: white;
  border: 1px hidden deepskyblue;
}

.accordion:after {
  content: '\002B';
  /* color: #777; */
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  /* display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; */
}
.panel-para{
  width:100%;
  margin: 10px;
  /* margin: 10px; */
  

}

@media only screen and (max-width: 405px) {
  .panel-para {
    font-size: 14px;
   
  }
}

/* faqs ends here */


/* blogs */

.our-blogs-section {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.container-blogs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center; /* Center items vertically */
  gap: 20px; /* Add gap between cards */
  max-width: 100%;
}

.aqsablogs {
  width: 100%; /* Set width to make sure it takes full width */
  text-align: center; /* Center align the text */
}

.card {
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  text-align: start;
}

/* .card-header{
  height: 150px;
} */

.card-header img {
  width: 100%;
  height: 150px;
}

.card-body {
  width: 100%;
  padding: 20px;
  background-color: #fff;
}

.tag {
  padding: 5px 10px;
  border-radius: 5px;
  color: #fff;

  
}

.tag-teal {
  background-color: #e3375f;
  margin-bottom: 20px;
  cursor: pointer;
}
.spns{
  margin-bottom: 10px;

}
.spns a{
  text-decoration: none;
  color: #fff;

}

.user {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.user img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.user-info h5 {
  margin: 0;
  font-size: 16px;
  color: #333;
}

.user-info small {
  color: #999;
}

.btn-container {
  margin-top: 30px;
}

.btn-read-all {
  padding: 10px 20px;
  background-color: #3498db;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-read-all:hover {
  background-color: #2980b9;
}


.contact-section{
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: #0762C8; */
}
/* blogs ends */
/* contact form start*/
.my-contact-form{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  /* background-color: #ec3a6c; */
 /* color: rgb(255, 255, 255); */
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
/* background-color: #0762C8; */
  max-width: 1440px;

}

.contact-left,
.contact-right {
  flex-basis: 45%;
  padding: 20px;
  /* border-radius: 10px; */
}

.contact-left {
  /* background: linear-gradient(to bottom, #e3375f, #f5d2da); */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  /* border-left:solid 10px #c72055;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px; */
}

.contact-heading {
  color: #e3375f;
  margin-bottom: 2rem;
 text-align: center;
 font-size: 3rem;
}

.contact-left form input,
.contact-left form textarea,
.contact-left form button {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #110d0d;
  border-radius: 5px;
  background-color: #fff;
  transition: border-color 0.3s ease;
}
form{
  /* background-color: aquamarine; */
  width: 80%;
  
}

.contact-left form input:focus,
.contact-left form textarea:focus {
  outline: none;
  border-color:#e3375f;
}

.contact-left form textarea {
  height: 100px;
}

.contact-left form button {
  background-color: #e3375f;
  border: solid rgb(238, 237, 234);
  color: #fff;
  font-size: 1.7rem;
  /* font-weight: bold; */
  /* border: none; */
  cursor: pointer;
}

.contact-left form button:hover {
  background-color: #c72055;
}

.contact-right {
  /* background: linear-gradient(to bottom, #e3375f, #dba9b4); */
  color: #252323;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  flex-direction: column;
 /* background-color: #0b7787; */
  /* border-right:solid 5px #c72055;
  border-bottom-right-radius: 80px;
  border-top-right-radius: 80px; */
}


.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
}
.contact-center{
  margin-top: 20px;
}

.span-detail {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-weight: bold;
 
}

.span-detail, .frame {
  font-size: 30px;
  margin-right: 10px;
}

.span-detail, .span-details {
  font-size: 16px;
}
.my-map{
  color: #087408;

}
.my-clock{
  color: #0b7787;
}
.my-envelope{
  color: #2286de;
}
.my-whatsapp{
  color: #25D366;
  

}
/* Base styles remain unchanged */

/* Responsive styles */
@media only screen and (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    border-radius: 0;
  }

  .contact-left,
  .contact-right {
    flex-basis: 100%;
  }

  .contact-left,
  .contact-right {
    padding: 20px;
  }

 
}

@media only screen and (max-width: 500px){
  form{
      width: 100% ;
  }
  .contact-details{
      width: 100%;
  }
}
/* contact form ends */
/*  */
/* newsletter */

/* .newsletter{
  position: relative;
  background: rgba(41, 165, 163, .1);
  background-image: url('images/happy.webp');
  background-size: cover;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  
}
                
.overlayy {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
 
}
.newsletter .newsletter-content{
  text-align: center;
  max-width: 60rem;
  margin: 1rem auto;
  z-index: 2;
  position: relative;
  
}

.newsletter-heading{
  font-size: 3rem;
  margin-bottom: 1rem;
 
}

 .newsletter-para{
  font-size: 1.7rem;
  padding: 1rem 0;
  color: white;
  line-height: 2;
}


.newsletter-form{
  display: flex;
  border: solid pink;
  border-radius: .5rem;
  padding: .5rem;
  margin: 1rem 0;
}

.newsletter-form .email{
  width: 100%;
  padding: 1rem 1.4rem;
  font-size: 1.7rem;
  text-transform: none;
}

.newsletter-form .btn{
  margin-top: 0;
} */

/* end */

/* footer */

footer{
  background-color: #faf5f7;
  /* padding: 30px 0; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 20px;
}

.footer-container {
 
  max-width: 90%;
   margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  /* background-color: #0762C8; */
  
}

.footer-logo {
  margin-bottom: 10px;
}

.footer-logo img {
  width: 100px;
  height: auto;
}

.footer-info {
  flex: 1;
  margin-bottom: 20px;
  font-weight: bold;
  color: #252323;
 
}
.my-footer{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-contact,
.footer-links,.footer-info {
  flex: 1;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
 
}
.footer-links{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  /* background-color: #0762C8; */
}
.footer-links p{
  text-align: center;
  width: 100%;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin-top: 28px;
  font-size: 17PX;
}

.footer-links ul li {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 17px;
}

.footer-links ul li a {
  text-decoration: none;
  color:#252323;
  font-size: 17px;
}
/* Social Icons */
.footer-social {
  text-align: center;
  margin-bottom: 30px;
}
.footerr h3{
  font-size: 2.5rem;
  color: #e3375f;
}
.social-icons a {
  display: inline-block;
  margin-right: 10px;
  
  
  transition: transform 0.3s ease;
}
.ab{
  font-size: 3rem;
  /* margin-top: 30px; */
  color: rgb(51, 62, 186);
}

.social-icons a:hover {
  transform: translateY(-5px);
}
 .fa-facebook-f:hover{ 
  color: #1877F2;
}
.fa-twitter:hover{
  color: #1DA1F2;
}
.fa-instagram:hover{
  color: #8a49a1;
}
.fa-linkedin-in:hover{
  color:  #0762C8;
} 
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.footer .footer-social {
  animation: fadeInUp 1s ease;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

@media (max-width: 768px) {

  .heading{
    text-align: center;
    font-size: 3rem;
    margin: 2rem 0;
    color:#e3375f;
  
  }
  .footer-container {
      flex-direction: column;
      align-items: center;
  }

  .footer-info,
  .footer-contact,
  .footer-links,
  .footer-social {
      flex: none;
      width: 100%;
      text-align: center;
  }

  .footer-logo img {
      width: 120px;
  }
}
.footer-social h3{
  margin-bottom: 20px;
}

/* .whatsapp-icon {
  position: fixed;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  z-index: 1000;
  animation: whatsapp-bounce 1s infinite alternate; 
} */

@keyframes whatsapp-bounce {
  0% {
      transform: translateY(-50%) scale(1.5);
  }
  100% {
      transform: translateY(-50%) scale(1.1); 
  }
}

.whatsapp-icon img {
  width: 40px; 
  height: auto;
}

.para-team{
  align-self: center;
  width: 300px;
  /* background-color: #0b7787; */
}


/* Section and Container */
.map-container-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
 
}

.map-content h2 {
  text-align: center;
  margin-top: 30px;
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #e22f58; 
}

.map-container-underline {
  width: 150px;
  height: 3px;
  background-color: #e3375f;
  margin: 0 auto 20px auto;
}

.map-content p {
  text-align: center;
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 20px;
}

/* Content Section */
.map-content-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0;
}

.map-content-text, .map-content-map {
  flex: 1;
  margin: 10px;
}

.map-content-text p {
  margin-bottom: 10px;
  color: #333;
  text-align: start;
}

.map-content-text ul li {
  list-style-type: disc;
  margin-left: 20px;
  color: #e3375f;
}

.map-content-map iframe {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Footer */
.map-content-footer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #eaeaea;
}

.map-content-footer a {
  color: #2b2c2b;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
}

.map-content-footer a:hover {
  text-decoration: underline;
}

/* Responsive styling */
@media (max-width: 968px) {
  .map-content-details {
      flex-direction: column;
     /* justify-content: center; */
  align-items: center;
  justify-content: center;
  }
.map-content h2 {
 
  font-size: 2.5rem;
 
}
  .map-content-text, .map-content-map {
      margin: 0;
      padding: 10px 0;
      height: 300px;
      width: 80%;
  }

  iframe {
      max-width: 100%;
      height: 100%;
  }
}




/*  psychology Section styling */

.psychology-section {
  padding: 20px;
  margin: 20px auto;
  background: white;
  border-radius: 10px;
  max-width: 1200px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.psychology-section h2 {
  color: #333;
  border-bottom: 2px solid #e67190;
  padding-bottom: 10px;
  font-size: 1.8rem;
}
.psychology-section p {
  margin-top: 10px;
}
.psychology-section ul {
  list-style-type: square;
  padding-left: 20px;
  margin-top: 10px ;
}

.psychology-section li{
  color: #333;
}



/* doctor */

.main-content {
  padding: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  
}
.width1400{
  max-width: 1400px;
 

}

/* Intro Section */
.intro-section {
  text-align: center;
  margin-bottom: 20px;
}

.intro-section h2 {
  font-size: 2.8rem;
  color: #e22f58; 
  margin-bottom: 10px;
}

.intro-section p {
  font-size: 1.6rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Content Wrapper */
.content-wrapper {
  display: flex;
  gap: 20px;
}

/* Doctors List Section */
.doctors-list {
  flex: 2;
}

.doctor-card {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
}

.doctor-img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 100px;
}

.doctor-info {
  padding: 15px;
  text-align: left;
  flex: 1;
}

.doctor-info h3 {
  margin-bottom: 10px;
  color: #b4053d;
  font-size: 2rem;
}

.speciality {
  color: #053e34;
  font-weight: bold;
}

.bbuttons {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.bbtn {
  background-color:  #e3375f;
  color: white;
  text-decoration: none;
  padding: 10px;
  border-radius: 4px;
  flex: 1;
  margin: 0 5px;
  text-align: center;
  transition: background-color 0.3s;
}

.bbtn:hover {
  background-color: #d2c4c7;
}

/* Categories (Aside Section) */
.categories {
  flex: 1;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.categories h3 {
  margin-bottom: 15px;
  font-size: 2.5rem;
  color:  #b4053d;
}

.categories p {
  margin-bottom: 15px;
  font-size: 1.6rem;
  line-height: 1.6;
}

.categories ul {
  list-style: none;
  padding-left: 0;
}

.categories ul li {
  margin-bottom: 10px;
}

.categories ul li a {
  text-decoration: none;
  color:  #e3375f;
  font-weight: bold;
}

.categories ul li a:hover {
  text-decoration: underline;
}

.categories a {
  color: #0077b6;
}

/* Responsive Styles */
@media (max-width: 968px) {
  .content-wrapper {
      flex-direction: column;
  }

  .doctor-card {
      flex-direction: column;
      align-items: center;
      text-align: center;
      justify-content: center;
  }
  .intro-section h2 {
      font-size: 2.5rem;
      color: #b4053d;
      margin-bottom: 10px;
  }
  
.doctor-info{
  flex-direction: column;
      align-items: center;
      text-align: center;
      justify-content: center;
      text-align: justify;
      padding: 2px;
      
}
.centree{
  align-items: center;
  text-align: center;
  justify-content: center;
  
}
.speciality{
  margin-bottom: 20px;
}
  .doctor-img {
      margin-bottom: 15px;
  }

  .bbuttons {
      flex-direction: column;
      gap: 5px;
  }

  .bbtn {
      margin-bottom: 10px;
  }
}

/* doctor */


@media (max-width: 968px){
  .intro-section h2 {
      font-size: 2.5rem;
      /* color: #b4053d; */
      margin-bottom: 10px;
  }

}

.new-intro-section h2 {
  font-size: 3rem;
  /* color:#b4053d; */
  margin-bottom: 10px;
}


.icon-popp {
position: fixed;

transform: translateY(-50%);
z-index: 1000;
animation: whatsapp-bounce 1s infinite alternate; 


right: 40px; /* Move it 20px from the right edge of the screen */
bottom: 100px; /* Move it 20px from the bottom edge of the screen */
border-radius: 50%; /* Make it circular (optional) */
display: flex; /* Center content inside */
justify-content: center; /* Horizontally center content */
align-items: center; /* Vertically center content */

font-size: 16px; /* Adjust text size */

cursor: pointer; /* Change cursor to pointer on hover */


}
.whatsapp-icon{
display: flex;
align-items: center;
justify-content: center;
/* flex-direction: column; */
}
@keyframes whatsapp-bounce {
0% {
  transform: translateY(-30%) scale(1.2);
}
100% {
  transform: translateY(-30%) scale(1.4); 
}
}

.whatsapp-icon img {
width: 40px;
/* background-color: #25D366;  */
height: auto;
}


.whatsapp-button {
  background: #ffffff;
  color: #383737;
  border: solid  #25D366;
  padding: 7px 10px;
  border-radius: 30px;
  font-size: 14px;
  /* font-weight: bold; */
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
 
  display: inline-block;
}

@media only screen and (max-width: 555px) {

    .icon-popp {
position: fixed;
top: 90%;


}
.whatsapp-icon{
display: flex;
align-items: center;
justify-content: center;
/* flex-direction: column; */
}
@keyframes whatsapp-bounce {
0% {
  transform: translateY(-30%) scale(1.2);
}
100% {
  transform: translateY(-30%) scale(1.4); 
}
}

.whatsapp-icon img {
width: 40px;
/* background-color: #25D366;  */
height: auto;
}


.whatsapp-button {
  background: #ffffff;
  color: #171616;
  border: solid  #25D366;
  padding: 7px 10px;
  border-radius: 30px;
  font-size: 14px;
 
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
 
  display: inline-block;
}

}



/* Base Styles */
:root {
  --primary-color: #2c3e50;
  --secondary-color: #e74c3c;
  --accent-color: #3498db;
  --text-color: #333;
  --light-text: #7f8c8d;
  --background-light: #f9f9f9;
  --white: #ffffff;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

.sg-hero {
  /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
  color: var(--text-color);
  padding: 2rem 1rem;
  /* background-color: var(--background-light); */
  margin-top: 120px;
  /* max-height: 100vh; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.sg-hero-container {
  width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  /* margin-top: 40px; */
 
}

/* Content Section - Always comes first on mobile */
.sg-content-wrapper {
  order: 1; /* Changed from 2 to 1 */
}

.sg-main-content {
  max-width: 800px;
}

.breadcrumb {
  margin-bottom: 1.5rem;
}

.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--light-text);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--secondary-color);
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--light-text);
}

.sg-main-heading {
  font-size: 2.4rem;
  line-height: 1.3;
  margin: 0 0 1.5rem 0;
  color: #ac2c4a;
  font-weight: 700;
}
.sg-main-headingg {
  font-size: 1.4rem;
  /* line-height: 1.3; */
  margin: 0 0 0.5rem 0;
  color: #525151;
  font-weight: 700;
}


.sg-description {
  /* font-size: 3.6rem; */
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--text-color);
}

.sg-description strong {
  color: var(--secondary-color);
  font-weight: 600;
}

.sg-cta {
  display: inline-block;
  margin-bottom: 2rem;
}

.field-button {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background-color: #d41e45;
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.field-button:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.sg-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--light-text);
}

.sg-stars {
  color: #f39c12;
  font-size: 1.1rem;
}

/* Image Section - Always comes second on mobile */
.sg-image-wrapper {
  order: 2; /* Changed from 1 to 2 */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.sg-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.sg-image-wrapper:hover img {
  transform: scale(1.02);
}

/* Responsive Design */
@media (min-width: 768px) {
  .sg-hero-container {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
  
  .sg-content-wrapper {
    flex: 1;
    order: 1; /* Content first on desktop too */
  }
  
  .sg-image-wrapper {
    flex: 1;
    order: 2; /* Image second on desktop */
  }
  
  .sg-main-heading {
    font-size: 2.5rem;
  }
}

@media (min-width: 992px) {
  .sg-hero {
    padding: 3rem 0;
  }
  
  .sg-main-heading {
    font-size: 3rem;

  }
  
  .sg-description {
    font-size: 1.5rem;
    color: #474646;

  }
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sg-main-content {
  animation: fadeIn 0.8s ease-out;
}

.sg-image-wrapper {
  animation: fadeIn 0.8s ease-out 0.2s both;
}