* {
  box-sizing: border-box;
}
body {
  margin: 0;
  overflow-x: hidden;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0 ;
}
   
*{
  box-sizing: border-box;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: #c7c3c3; 
  border-radius: 6px;
}

body::-webkit-scrollbar-thumb {
  background-color: #E60023; 
  border-radius: 6px;
  border: 1px solid #fa6464; 
}

body::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}
* {
  box-sizing: border-box;
    margin: 0;
  padding: 0 ;
}


.top-nav {
  background-color: #E60023;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 4rem;
  font-size: clamp(9px, 2vw, 18px);
  width: 100%;
}

.top-nav .left {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 10px);
}

.top-nav .right {
  font-weight: bold;
  font-size: clamp(13px, 2.5vw, 1.2rem);
}

.top-nav .phone-email {
  display: flex;
  gap: clamp(8px, 1vw, 10px);
}

.top-nav a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.top-nav a:hover {
  text-decoration: underline;
}

.top-nav i {
  font-size: clamp(14px, 1.5vw, 16px);
}

.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(0.5rem, 2vw, 1rem) clamp(1rem, 4vw, 4rem);
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 10111111111100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: clamp(10px, 2vw, 20px);
}

.header-logo {
  display: flex;
  align-items: center;
  color: #000;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  font-weight: bold;
  flex-shrink: 0;
}

.header-logo img {
  height: clamp(30px, 4vw, 40px);
  width: auto;
  margin-right: 0.5rem;
}

.nav-items {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin: 0;
  padding: 0;
}

.nav-items li {
  list-style: none;
}
a{
    text-decoration: none;
}
.red{
  color: #E60023;
}
.nav-items a,
.nav-item-link {
  color: #000;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-book {
  background-color: #E60023;
  color: white;
  padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.8rem, 2vw, 1rem);
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.btn-book:hover {
  background-color: #e66464;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  margin-left: 2rem;
  border: none;
  padding: 0;
  cursor: pointer;
}

.menu-toggle .menu-bar {
  width: 25px;
  height: 3px;
  background-color: #000;
  margin: 4px 0;
  transition: 0.3s;
}

@media (max-width: 1024px) {
  .top-nav {
    padding: 0.7rem 2rem;
  }
  
  .header-nav {
    padding: 0.7rem 2rem;
  }
}

@media (max-width: 768px) {
  .top-nav {
    flex-direction: column;
    padding: 0.7rem 1rem;
    gap: 10px;
  }

  .top-nav .phone-email {
    flex-direction: column;
    align-items: center;
  }

  .header-container {
    position: relative;

  }

  .menu-toggle {
    display: flex;
    z-index: 101101;
  }

  .nav-items {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: #FFF5F7;
    padding: 1rem;
    gap: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
  }

  .nav-items.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-item-link {
    color: white;
    display: block;
    text-align: center;
    padding: 0.5rem;
  }

  .btn-book {
    margin-left: auto;
  }
}

@media (max-width: 480px) {
  .header-logo span {
    font-size: clamp(0.7rem, 3vw, 0.9rem);
  }

  .btn-book {
    font-size: clamp(0.7rem, 2.5vw, 0.8rem);
    padding: 0.3rem 0.6rem;
  }

  .menu-toggle .menu-bar {
    width: 20px;
    height: 2px;
  }
}
@media(max-width: 399px){
  .header-container{
    top: 47;
    z-index: 10111111111100;
  }
}
.menu-toggle.active .menu-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .menu-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .menu-bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.hero-section { 
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  background-color: rgb(255, 255, 255);
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex
;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 1rem 4rem 3.4rem;
    z-index: 1;
}
.hero-content h2 {
  color: #E60023;
  margin-top: 1rem;
}

.hero-content h1 {
  font-size: 2.5rem;
}

.hero-content ul {
  list-style: none;
  padding: 0;
  margin: 0.1rem 0;
  margin-bottom: 1.1rem;
}

.hero-content li {
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin:1.5rem 0;
}

.button-group {
  display: flex;
  gap: clamp(0.5rem, 2vw, 1rem);
  flex-wrap: wrap;
  justify-content: center;
}

.button,
.button2 {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.2s;
  min-width: 160px;
  text-align: center;
  color: #fff;
}

.button {
  background-color: #E60023;
}

.button:hover {
  background-color: red;
  transform: translateY(-2px);
}

.button2 {
  background-color: green;
}

.button2:hover {
  background-color: #0d9201;
  transform: translateY(-2px);
}

/*.hero-image {*/
/*  flex: 1 1 300px;*/
/*  max-width: 500px;*/
/*  display: flex;*/
/*  justify-content: center;*/
/*}*/

/*.hero-image img {*/
/*  width: 100%;*/
/*  height: auto;*/
/*  border-radius: 10px;*/
/*  object-fit: cover;*/
/*}*/

/* Responsive */
@media (max-width: 768px) {
  /*.hero-section {*/
  /*  flex-direction: column;*/
  /*  padding: 1rem;*/
  /*  text-align: center;*/
  /*}*/

  .hero-content,
  .hero-image {
    max-width: 100%;
  }

  .button-group {
    justify-content: center;
    width: 100%;
  }

  .button,
  .button2 {
    width: 100%;
    max-width: 100%;
  }
}

.hero-image {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
  z-index: 0;
}

.hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, rgb(252, 252, 252), rgb(255, 255, 255), rgba(255, 17, 17, 0));
  width: 85%;
  height: 100%;
  z-index: 0;
}

.hero-image img {
  filter: brightness(75%);
  max-width: 90vw;
  height: 100vh;
  object-fit: cover;
}

.banner img {
  margin-top: 2rem;
}

.form-container {
  position: absolute;
  bottom: -0%;
  top: 1%;
  left: 31%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 91%;
  flex-direction: column;
  background-color: rgb(253, 66, 66);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 1.6rem;
}

.form-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
  /* width: 110%; */
}

.form-group label {
  font-weight: bold;
  margin-bottom: 5px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper i {
  position: absolute;
  left: 10px;
  color: #888;
  font-size: 18px;
}

input {
  padding: 12px 15px 12px 35px;
  margin: 5px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  width: 100%;
}

.form-btn {
  background-color: #ff4d4d;
  color: white;
  cursor: pointer;
  border: none;
  width: 100%;
  height: 2.6rem;
  font-size: 15px;
  display: flex;
  justify-content: center;
  margin-top: 1.8rem;
  align-items: center;
  gap: 8px;
}

.form-btn i {
  font-size: 18px;
}

.form-btn:hover {
  background-color: #e60000;
  transition: background-color 0.3s ease;
}

@media (max-width: 1365px),(max-height: 678px) {
  .banner img {
    margin-top: 2rem;
  }
  .form-container{
    position: absolute;
  bottom: -39%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 91%;
  flex-direction: column;
  background-color: rgb(255, 223, 228);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 1.6rem;
  }
}

@media (max-width: 1168px) {
  
  .hero-section {
    flex-direction: column;
    height: auto; 
    margin: 0; 
    padding: 0; 
  }

  .hero-image {
    height: 66vh;
    order: -1; 
    display: flex
    ;
        align-items: center;
        justify-content: center;

  }

  .hero-image::after {
    display: none;
  }

  .hero-image img {
    max-width: 100vw;
    width: 100vw;
    height: 100%;
    object-fit: cover;
    margin: 0;
    padding: 0;
  }
    .hero-content {     
      position: static;     
 
      align-items: center;     
      display: flex
      ;
          flex-direction: column;
          justify-content: center;
          align-items: flex-start;
          padding: 0 2rem 0rem 2rem;
          z-index: 1;
      
    }    
  
    .hero-content h1 {     
      font-size: 1.875rem;
    }    
  
    .hero-content h2 {     
      font-size: 1.5rem;   
    }
  .button-group {
    justify-content: center;
  }

  .form-container {
    position: static;
    width: 100%;
    margin-top: 2rem;
    transform: none;
  }

  .form-row {
    flex-direction: column;
    gap: 1rem;
  }

  .form-group {
    width: 100%;
  }

  .form-btn {
    width: 100%;
  }
}


.Specialised-Doctor {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 50px 2rem;
  gap: 2rem;
}

.Specialised-Doctor-content {
  flex: 1;
  padding: 0 20px;
  max-width: 600px;
   margin-bottom: 2rem;
}

.Specialised-Doctor-content h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: start;
}

.Specialised-Doctor-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  /* margin-bottom: 15px; */
}

.Specialised-Doctor-image {
  flex: 1;
  max-width: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.Specialised-Doctor-image img {
  width: 100%;
  max-width: 100%;
  height: 39vw;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .Specialised-Doctor {
    flex-direction: column;
    padding: 30px 1rem;
  }

  .Specialised-Doctor-content h2 {
    text-align: center;
  }

  .Specialised-Doctor-content p {
    text-align: justify;
  }

  .Specialised-Doctor-image {
    padding: 0rem 1rem 0 1rem;
    
  }
  .Specialised-Doctor-image img{
   
        width: 100%;
        max-width: 100%;
        height: 56vw;
        border-radius: 10px;
        object-fit: cover;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      
  }
}
.locations-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.main-heading {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.sub-heading {
    font-size: 2em;
    margin-bottom: 30px;
}

.description {
    font-size: 1em;
    /*color: white;*/
    margin-bottom: 40px;
}

.emirate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.emirate-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.emirate-item:hover {
    transform: scale(1.03);
}

.emirate-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.emirate-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6em;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.emirate-item:hover .emirate-overlay {
    opacity: 1;
}


.healthcare-services h2 {
  font-size: 2rem;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.healthcare-services h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.3;
}

.healthcare-services p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.contact-section {
  text-align: left;
  background-color: white;
  padding: 50px 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap; 
}

.form_content {
  padding-top: 4rem;
}

.form_content h2 {  
  font-size: 2rem;
  color: black;
  margin-left: 3rem;
  font-weight: bold;
}

.form_content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  padding: 0 4rem 1rem 3.1rem;
  margin-bottom: 1px;
}

.form_content .social-icons {
  margin: 20px 0;
  padding-left: 1.2rem;
}

.social-icons a {
  margin: 0 10px;
  color: black;
  font-size: 24px;
  text-decoration: none;
}

.contact-form {
  max-width: 500px;
  width: 100%;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  padding: 20px;
  margin-right: 3rem;
  border-radius: 8px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

.contact-form textarea {
  height: 100px;
}

.btnforbook {
  border: none;
  background-color: #E60023;
  color: white;
  padding: 0.7rem 2rem;
  border-radius: 0.2rem;
  cursor: pointer;
}

.btnforbook:hover {
  background-color: #d00000;
}

.contact-form button {
  background-color: #E60023;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #d00000;
}
@media (max-width: 1200px) {
  .contact-section {
    padding: 40px 2rem;
  }

  .form_content {
    padding-top: 3rem;
  }

  .form_content h2 {
    font-size: 2rem;
    margin-left: 2rem;
  }

  .form_content p {
    padding: 0 2rem 1rem 2rem;
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
  }

  .form_content .social-icons {
    padding-left: 2rem;
  }

  .contact-form {
    max-width: 400px; 
    margin-right: 2rem;
  }

  .social-icons a {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column; 
    align-items: center;
    padding: 30px 2rem;
  }

  .form_content {
    text-align: center;
  }

  .form_content p {
    text-align: center;
    padding: 0 1rem 1rem 1rem; 
  }

  .form_content .social-icons {
    padding-left: 0;
    text-align: center;
  }

  .social-icons a {
    font-size: 18px;
    margin: 0 8px;
  }

  .contact-form {
    max-width: 100%; 
    padding: 15px;
    margin-right: 0;
  }

  .contact-form button {
    font-size: 16px; 
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 20px 2rem;
  }

  .form_content {
    padding-top: 2rem; 
  }

  .form_content h2 {
    font-size: 2rem;
    margin-left: 0;
    text-align: center;
  }

  .form_content p {
    font-size: 14px;
  }

  .contact-form {
    padding: 15px;
  }

  .contact-form button {
    font-size: 14px;
  }
}

.service-card.hidden {
  display: none;
}

.services-section1 {
  background-color: #FFF5F7;
  width: 100%;
  overflow: hidden;
}

.services-section1 h2 {
  font-size: 2rem;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  color: black;
  text-align: center;
  font-weight: bold;
  margin: 0 auto;
  max-width: 90%;
  line-height: 1.2;
}

.services-section1 p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  padding: clamp(0.5rem, 2vw, 1rem) clamp(1rem, 5vw, 3.5rem);
  margin-bottom: 1px;
}

.services-container1 {
  text-align: center;
  background-color: #FFF5F7;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(1rem, 2vw, 20px);
  max-width: 110rem;
  margin: 0 auto;
  padding: clamp(0rem, 2vw, 60px) clamp(0rem, 4.2vw, 61px);
}

.service-card {
  background-color: #fff;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transition: background 0.51s ease, transform 1.3s ease;
  background-color: #FFF5F7;
  transform: translateY(-5px);
  cursor: pointer;
}

.service-card:hover h3,
.service-card:hover p {
  color: black;
}

.service-card img {
    width: 100%;
    height: clamp(0px, 31vw, 227px);
    object-fit: cover;
}
.service-card-content {
  padding: clamp(1rem, 3vw, 20px);
}

.service-card-content h3 {
  font-size: clamp(1.25rem, 2.5vw, 24px);
  margin-bottom: clamp(0.5rem, 2vw, 10px);
  color: #e60000;
  line-height: 1.3;
}

.service-card-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.all-services-btn {
  background-color: #E60023;
  color: #fff;
  border: none;
  padding: clamp(5px, 1vw, 15px) clamp(3px, 2vw, 35px);
  margin-bottom: 1.8rem;
  font-size: clamp(0.875rem, 1.5vw, 16px);
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  display: block;
  width: fit-content;
  margin: 2rem auto;
  transition: background-color 0.3s, transform 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.all-services-btn:hover {
  background-color: #cc0000;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .all-services-btn{
    padding: 1rem;
  }
}
@media (max-width: 1024px) {
  .services-container1 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .services-section1 p {
    padding: 1rem clamp(2rem, 4vw, 2rem);
  }
  
  .services-container1 {
    padding: 2rem clamp(2rem, 4vw, 2rem);
  }
}

@media (max-width: 480px) {
  .services-section1 h2 {
    padding: 1rem 1rem 0;
  }

  .services-container1 {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem 2rem;
  }

  .service-card img {
    height: clamp(180px, 25vw, 50px);
  }
}

@media (hover: none) {
  .service-card:active {
    transform: translateY(-2px);
  }
  
  .all-services-btn:active {
    transform: translateY(-1px);
  }
}
.container {
  text-align: center;
  background-color: #FFF5F7;
  padding: 30px 0px;
}
.container h2 {
  font-size: 2rem;
  color: black;
  text-align: center;
  font-weight: bold;
}
.container p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
margin-bottom: 1px;
}
.steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.step {
  border: 2px solid #e63946;
  margin: 10px;
  padding: 40px;
  border-radius: 10px;
  width: 401px;
  background-color: white;
  transition: transform 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.step:hover {
  transform: translateY(-10px);
}
.step-number {
  font-size: 50px;
  font-weight: bold;
  color: #e63946;
}
.step-title {
  font-size: 2rem;
  margin: 15px 0;
  color: #000000;
}
.step-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    align-items: center;
  }
  .step {
    width: 85%;
  }
  .container h2 {
    font-size: 2rem;
    padding: 0 2rem;
  }
  .container p{
    padding: 0 2rem;
  }
  .step-number {
    font-size: 40px;
  }
  .step-title {
    font-size: 20px;
  }
  .step-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 30px 10px;
  }
  .step {
    padding: 20px;
  }
  .step-number {
    font-size: 30px;
  }
  .step-title {
    font-size: 18px;
  }
  .step-description {
    font-size: 12px;
  }
}
.pricing-container {
  background-color: #FFF5F7;
  padding: 2rem 3.1rem 3.1rem 3.1rem;
  border-radius: 8px;
}

.pricing-header {
  text-align: center;
  color: #d0021b;
  font-size: 2rem;
  margin-bottom: 20px;
}

.pricing-details {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.pricing-highlights {
  color: #d0021b;
  font-weight: bold;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.pricing-table th, .pricing-table td {
  border: 1px solid #000;
  padding: 10px;
  text-align: center;
}

.pricing-table th {
  background-color: #d0021b;
  color: #fff;
}

.cta {
  text-align: center;
  margin-top: 20px;
}

.cta a {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 2rem;
  background-color: #E60023;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 4px;
}

.cta a:hover {
  background-color: #d0021b;
  color: #fff;
}

@media (max-width: 1200px) {
  .pricing-container {
    padding: 2rem;
  }

  .pricing-header {
    font-size: 1.8rem;
  }

  .pricing-details {
    font-size: 0.95rem;
  }

  .pricing-table th, .pricing-table td {
    font-size: 0.9rem;
    padding: 8px;
  }
}

@media (max-width: 768px) {
  .pricing-container {
    padding: 2rem;
  }

  .pricing-header {
    font-size: 1.5rem;
  }

  .pricing-details {
    font-size: 0.9rem;
  }

  .pricing-table th, .pricing-table td {
    font-size: 0.85rem;
    padding: 6px;
  }

  .cta a {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .pricing-container {
    padding: 2rem;
  }

  .pricing-header {
    font-size: 1.2rem;
  }

  .pricing-details {
    font-size: 0.85rem;
  }

  .pricing-table th, .pricing-table td {
    font-size: 0.8rem;
    padding: 5px;
  }

  .cta a {
    width: 100%;
    padding: 10px 0;
    margin-top: 1rem;
  }
}
.main-container2 {
  background-color: white;
  padding: 4rem;
  text-align: center;
}

.main-container2 p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.main-container2 h2 {
  font-size: 2rem;
  color: black;
  text-align: center;
  font-weight: bold;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.carousel {
  display: flex;
  overflow: hidden;
  gap: 20px;
  scroll-behavior: smooth;
  padding: 20px 0;
}

.feedback-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  min-width: 300px;
  max-width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.feedback-card .title {
  margin: 0 0 10px;
  color: #000;
  display: flex;
  justify-content: center;
  font-size: 18px;
}

.feedback-card .content {
  line-height: 1.6;
  padding: 0 1rem;
  font-size: 14px;
}

.stars {
  margin-top: 10px;
  text-align: center;
}

.stars span {
  color: #f39c12;
  font-size: 18px;
  margin-right: 1rem;

}

.author-details {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.author-details img {
  width: 49px;
  height: 49px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-size: 14px;
  color: wheat;
}

.author-date {
  font-size: 12px;
  color: #000;
}

@media (max-width: 1200px) {
  .main-container2 {
    padding: 3rem;
  }

  .main-container2 h2 {
    font-size: 2rem;
  }

  .main-container2 p {
    font-size: 15px;
    text-align: start;
  }

  .feedback-card {
    min-width: 280px;
    max-width: 280px;
  }

  .feedback-card .title {
    font-size: 16px;
  }

  .feedback-card .content {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .main-container2 {
    padding: 2rem;
  }

  .main-container2 h2 {
    font-size: 1.8rem;
  }

  .main-container2 p {
    font-size: 14px;
  }

  .feedback-card {
    min-width: 330px;
  }

  .feedback-card .title {
    font-size: 15px;
  }

  .feedback-card .content {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .main-container2 {
    padding: 2rem;
  }

  .main-container2 h2 {
    font-size: 1.5rem;
  }

  .main-container2 p {
    font-size: 13px;
  }

  .feedback-card {
    max-width: 51vw;
  }

  .feedback-card .title {
    font-size: 14px;
  }

  .feedback-card .content {
    font-size: 11px;
  }
}
.carousel-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.carousel {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
  cursor: grab;
}

.carousel:active {
  cursor: grabbing;
}

.feedback-card {
  flex: 0 0 auto;
  opacity: 0.8;
  transform: scale(0.95);
  transition: all 0.3s ease;
}

.feedback-card:hover {
  opacity: 1;
  transform: scale(1);
}

.carousel-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  padding: 20px 0;
  touch-action: pan-y pinch-zoom;
}

.carousel {
  display: flex;
  gap: 20px;
  transition: transform 0.3s ease-in-out;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  touch-action: none;
}

.carousel:active {
  cursor: grabbing;
}

.feedback-card {
  flex: 0 0 auto;
  opacity: 0.8;
  transform: scale(0.95);
  transition: all 0.3s ease;
  pointer-events: none;
}

.feedback-card:hover {
  opacity: 1;
  transform: scale(1);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.left-btn {
  left: 10px;
}

.right-btn {
  right: 10px;
}

@media (max-width: 768px) {
  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}
.faq-section {
  background-color: #FFF5F7;
  border-radius: 8px;
  padding: 1rem 3.7rem;
}

.faq-section h1 {
  text-align: center;
  font-size: 2rem;
  color: #000000;
  margin-bottom: 30px;
}

.faq-item {
  margin-bottom: 20px;
  border: 2px solid #E60023;
  border-radius: 8px;
}

.faq-question {
  width: 100%;
  padding: 15px;
  text-align: left;
  font-size: 1rem;
  /* color: #555; */
  line-height: 1.5;
  background-color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  border-top: 2px solid rgb(66, 66, 66);
  display: none;
  padding: 10px 0 1px 10px;
  font-size: 16px;
  color: #555;
  background-color: #ffffff;
}

.faq-answer p {
  margin: 0;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

@media (max-width: 1200px) {
  .faq-section h1 {
    font-size: 32px;
  }

  .faq-question {
    font-size: 16px;
    padding: 12px;
  }

  .faq-answer {
    font-size: 15px;
    padding: 8px 0 1px 0;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 1rem 2rem;
  }

  .faq-section h1 {
    font-size: 28px;
  }

  .faq-question {
    font-size: 15px;
    padding: 10px;
  }

  .faq-answer {
    font-size: 14px;
    padding: 6px 0 1px 0;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 2rem;
  }

  .faq-section h1 {
    font-size: 24px;
  }

  .faq-question {
    font-size: 14px;
    padding: 8px;
  }

  .faq-answer {
    font-size: 13px;
    padding: 5px 0 1px 0;
  }
}
.about-us {
  background-color: white !important;  
  padding: 0 0.5rem !important;
}

.about-us-container {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1rem 0 !important;
}

.about-us-text {
  flex: 1 !important;
  padding: 0px 33px 0 30px !important;
}

.about-us-text h2 {
  font-size: 2rem !important;
  display: flex !important;
  margin-left: 1.1rem !important;
  align-items: center !important;
  color: black !important;
  justify-content: center !important;
  text-align: center !important;
  font-weight: bold !important;
}

.about-us-text p {
  font-size: 1rem !important;
  color: #555 !important;
  line-height: 1.5 !important;
  padding-left: 2rem !important;
}

.about-us-image {
  flex: 1 !important;
  text-align: center !important;
  margin-right: 3rem !important;
}

.about-us-image img {
    width: 100% !important;
    border-radius: 1rem !important;
    max-width: 600px !important;
    height: 25rem !important;
}

@media (max-width: 1200px) {
  .about-us-container {
    flex-direction: column !important;
    padding: 0rem 1rem !important;
  }

  .about-us-text {
    padding: 1px 0 !important;
  }

  .about-us-text h2 {
    font-size: 2rem !important;
    text-align: start !important;
    margin-left: 0rem !important;
  }

  .about-us-text p {
    line-height: 1.6 !important;
    font-size: 16px !important;
    padding-left: 0 !important;
  }

  .about-us-image {
    margin: 2rem 0 !important; 
  }

  .about-us-image img {
    max-width: 110% !important;
  }

  .about-us {
    padding: 2rem !important;
  }
}

@media (max-width: 768px) {
  .about-us-container {
    padding: 2rem 1rem !important;
    text-align: center !important;
  }

  .about-us-text h2 {
    font-size: 22px !important;
    text-align: center !important;
  }

  .about-us-text p {
    font-size: 16px !important;
    padding-left: 0 !important;
    text-align: center !important;
  }

  .about-us-image img {
    max-width: 90% !important;
  }
}

@media (max-width: 480px) {
  .about-us-text h2 {
    font-size: 20px !important;
    text-align: center !important;
  }

  .about-us-text p {
    font-size: 16px !important;
    padding-left: 0 !important;
    text-align: center !important;
  }

  .about-us-image img {
    max-width: 100% !important;
    margin-top: 1.5rem !important;
  }

  .about-us {
    padding: 1.5rem 2rem 3rem 2rem !important;
  }
}
.services2 {
  background-color: #FFF5F7;

}

.services-container2 {
  display: flex;
  padding: 2rem 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center; 
}

.services-text2 {
  flex: 1;
  padding: 0rem 0 1.5rem 85px;
}

.services-text2 h2 {
  color: black;
  font-size: 2rem;
  text-align: start;
}

.services-text2 ul {
  color: #333;
  font-size: 17px;
  padding-left: 3rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-image2 {
  flex: 1;
  text-align: center;
}

.services-image2 img {
  max-width: 100%;
  height: auto;
  border-radius: 2rem;
  padding: 1rem 0.5rem;
  margin-left: 3rem;
}

.services2-container2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}

.services2-container2 h2 {
  color: black;
  font-size: 32px;
  position: absolute;
}

.services2 {
  font-size: 16px;
  color: #555;
  display: flex;
  align-items: flex-start;
}

.services2 .successful img {
  max-width: 500px; 
  height: auto;
  border-radius: 2rem;
  padding: 2rem;
}

.services2 ul {
  flex: 1;
  padding: 0;
  margin: 0;
  list-style: none;
}

@media (max-width: 1200px) {
  .services-container2 {
    flex-direction: column;
    padding: 2rem;
  }

  .services-text2 {
    padding: 0;
    margin: 0;
  }

  .services-text2 h2 {
    font-size: 1.7rem;
  }

  .services-text2 ul {
    font-size: 18px;
  }

  .services-image2 img {
    margin:auto;
  }



  .services2 .successful img {
    max-width: 130%;
  }
}

@media (max-width: 480px) {
  .services-text2 h2 {
    font-size: 20px;
  }

  .services-text2 ul {
    font-size: 16px;
    padding-left: 1rem;
  }

  .services-image2 img {
    max-width: 100%;
    margin-top: 1.5rem;
    
  }

  .services2 {
    padding: 1.5rem 1rem 3rem 1rem;
  }
}

.team {
  background-color: white;
  padding: 20px;
}

.team-container {
  text-align: center;
}

.team-container h2 {
  font-size: 2rem;
  color: black;
  text-align: center;
  font-weight: bold;
}

.team-container p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 2.5rem
  ;
}

.team-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.team-member {
  background-color: #fff;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: 100%;
  max-width: 392.5px;
  text-align: center;
}

.team-member img {
  border-radius: 50%;
  width: 130px;
  height: 130px;
  object-fit: cover;
  margin-bottom: 10px;
}

.team-member p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}



@media (max-width: 1200px) {
  .team-container h2 {
    font-size: 26px;
  }

  .team-container p {
    font-size: 16px;
  }

  .team-member {
    max-width: 350px;
  }

  .team-member img {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .team-container h2 {
    font-size: 24px;
  }

  .team-container p {
    font-size: 14px;
  }
.team{
  padding: 0 2rem;
}

  .team-members {
    gap: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .team-member {
    max-width: 300px;
    width: 100%;
  }

  .team-member img {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 480px) {
  .team-container h2 {
    font-size: 22px;
  }

  .team-container p {
    font-size: 12px;
  }

  .team-members {
    gap: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .team-member {
    max-width: 280px;
  }

  .team-member img {
    width: 100px;
    height: 100px;

  }

  .view {
    width: 100%;
    margin: 1rem 0;
  }
}

   .stats-section {
  background-color: #FFF5F7;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.stat {
  text-align: center;
  /* flex: 1; */
  /* max-width: 250px; */
  padding: 20px;
}

.icon {
  font-size: 48px;
  color: #ff6666; 
  margin-bottom: 10px;
}


.number {
  font-size: 36px;
  font-weight: bold;
  /* color: #E60023; */
  /* margin-bottom: 5px; */
}


@media (max-width: 1200px) {
  .stats-section {
    padding: 120px 20px 80px 0;
  }

  .stat {
    max-width: 250px;
  }

  .icon {
    font-size: 40px;
  }

  .number {
    font-size: 32px;
  }

  p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .stats-section {
    flex-direction: column;
    align-items: center;
    padding: 30px 15px;
  }

  .stat {
    max-width: 90%; 
    margin-bottom: 20px;
  }

  .icon {
    font-size: 36px;
  }

  .number {
    font-size: 28px;
  }

  p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .stats-section {
    padding: 20px 10px;
  }

  .stat {
    max-width: 100%;
  }

  .icon {
    font-size: 32px;
  }

  .number {
    font-size: 24px;
  }

  p {
    font-size: 12px;
  }
}

footer {
  text-align: center;
  background-color: #FFF5F7;
  padding: 20px 0 0 0 ;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px; 
  margin: 0 4rem;
 
}

.footer-section, .footer-section1, .footer-section2, .footer-section3 {
  flex: 1 1 250px;
  margin-bottom: 20px;
  text-align: left; 
}
.footer-section1, .footer-section2, .footer-section3{
  margin-top: 2rem;
}

.footer-section img {
  width: 180px; 
  margin: 20px 0; 
}

.footer-section p {
  color: #000;
  margin: 5px 0; 
}

.footer-section2 h3, .footer-section1 h3, .footer-section3 h3 {
  color: #000;
  text-transform: uppercase;
  font-size: 1.2rem;
  margin-bottom: 10px; 
}

.footer-section2 ul, .footer-section1 ul {
  list-style: none;
  padding: 0;
}

.footer-section2 li, .footer-section1 li {
  margin: 10px 0;
}

.footer-section2 a, .footer-section1 a {
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section2 a:hover, .footer-section1 a:hover {
  color: #e63946;
}

.footer-section3 p {
  color: #000;
  /* margin: px; */
}

.copyright {
  color: white;
  background-color: #E60023;
  padding: 10px;
  text-align: center;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column; 
      align-items: center;
  }

  .footer-section, .footer-section1, .footer-section2, .footer-section3 {
      flex: 1 1 100%; 
      text-align: center;
      margin-bottom: 20px;
  }

  .footer-section img {
      margin: 20px auto;
  }

  .footer-section2 h3, .footer-section1 h3, .footer-section3 h3 {
      margin-top: 0;
  }

  .back-to-top {
      right: 10px;
      bottom: 10px;
  }
}

@media (max-width: 480px) {
  .footer-section p, .footer-section3 p, .footer-section2 a, .footer-section1 a {
      font-size: 0.8rem;
  }

  .footer-section2 h3, .footer-section1 h3, .footer-section3 h3 {
      font-size: 1rem;
  }
}
      .view {
  background-color: #E60023 !important;
  color: white !important;
  padding: 15px 30px !important;
  border: none !important;
  border-radius: 5px !important;
  cursor: pointer !important;
  margin-top: 20px !important;
  display: block !important;
  text-align: center !important;
  text-decoration: none !important; /* Removes underline */
  font-size: 16px !important;
  font-weight: bold !important;
  width: fit-content !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.view:hover {
  background-color: #E60029 !important;
}
@media(max-width:1200px){
  .view{
    margin-left: auto;
  }
} 


* Additional CSS for country code selector */
.country-code {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background-color: #f9fafb;
    border-right: 1px solid #ddd;
    color: #666;
    cursor: pointer;
    position: relative;
}

.dropdown-arrow {
    font-size: 12px;
    color: #666;
}

.country-code:hover {
    background-color: #f0f0f0;
}

/* Date and Time input containers */
.date-input-container,
.time-input-container {
    position: relative;
}

.calendar-icon,
.time-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #dc2626;
}

/* Override default date/time input appearance */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* Custom scrollbar for the country dropdown */
.country-dropdown {
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  max-height: 200px;
  overflow-y: auto;
  width: 200px;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  
  /* For Firefox */
  scrollbar-width: thin;
  scrollbar-color: #dc2626 #ffe4e4;
}

/* For Webkit browsers (Chrome, Safari, Edge) */
.country-dropdown::-webkit-scrollbar {
  width: 8px;
}

.country-dropdown::-webkit-scrollbar-track {
  background: #ffe4e4;
  border-radius: 4px;
}

.country-dropdown::-webkit-scrollbar-thumb {
  background: #dc2626;
  border-radius: 4px;
}

.country-dropdown::-webkit-scrollbar-thumb:hover {
  background: #b91c1c;
}

.country-option {
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.country-option:hover {
    background-color: #f5f5f5;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .country-dropdown {
        width: 100%;
    }
    
    .country-code {
        padding: 8px;
    }
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin-right: 27rem;
  bottom: 0;
  /* background-color: rgba(0, 0, 0, 0.5); */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 10012345678909876540;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.form-container {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

  max-width: 400px;
  max-height: 35rem;

  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  text-align: center;
}

.modal-overlay.active .form-container {
  transform: translateY(0);
  opacity: 1;
}

.form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin-bottom: 20px; */
}

.form-title {
  color: #dc2626;
  font-size: 24px;
  font-weight: bold;
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  padding: 5px 0 5px 1.8rem;
}

.form-subtitle {
  color: #666;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 15px;
  
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}

.form-control:focus {
  border-color: #dc2626;
}

.phone-input-container {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.country-code {
  display: flex;
  align-items: center;
  padding: 12px;
  background-color: #f9fafb;
  border-right: 1px solid #ddd;
  color: #666;
}

.phone-input {
  border: none;
  flex: 1;
  padding: 12px;
  outline: none;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: #dc2626;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #b91c1c;
}

/* Media Queries for Responsiveness */

@media (max-width: 1024px) {
  .modal-overlay {
    margin-right: 0;
    padding: 1rem;
  }

  .form-container {
    max-width: 90%;
    max-height: 80vh;
  }
}

@media (max-width: 768px) {
  .form-container {
    padding: 20px;
    max-width: 90%;
    max-height: 88vh;
  }

  .form-title {
    font-size: 20px;
  }

  .form-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .form-control {
    padding: 10px;
    font-size: 14px;
  }

  .submit-btn {
    padding: 10px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .modal-overlay {
    padding: 0.5rem;
  }

  .form-container {
    padding: 15px;
    max-width: 95%;
    max-height: 66vh;
  }

  .form-title {
    font-size: 18px;
  }

  .form-subtitle {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .form-control {
    padding: 8px;
    font-size: 12px;
  }

  .submit-btn {
    padding: 8px;
    font-size: 12px;
  }
}
/* Change color of calendar and clock icons */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(24%) sepia(94%) saturate(7478%) hue-rotate(0deg) brightness(89%) contrast(106%);
}

/* Placeholder workaround */
input[type="date"]:before,
input[type="time"]:before {
  content: attr(placeholder);
  color: #aaa;
  position: absolute;
  padding: 12px;
}

input[type="date"]:focus:before,
input[type="time"]:focus:before {
  content: "";
}






.whatsapp-left-container {
  position: fixed;
  left: 3rem;
  top: 93.5%;
  transform: translateY(-50%);
  z-index: 999999999999999999999999999999999999999999999999999999999999;
}

.whatsapp-left {
  display: flex;
  align-items: center;
  text-decoration: none;
  background-color: #25D366;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.whatsapp-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 50%;
  padding: 10px;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
  color: #25D366;
}

.whatsapp-text {
  color: white;
  font-weight: 600;
  font-size: 14px;
  /* padding: 0 20px 0 10px; */
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.3s ease, padding 0.3s ease;
  opacity: 0;
}

.whatsapp-left:hover {
  transform: scale(1.05);
  padding: 8px;
  bottom: 20px;
  right: 3rem;
}

.whatsapp-left:hover .whatsapp-text {
  max-width: 200px;
  padding: 0 20px 0 10px;
  
  opacity: 1;
}

/* Pulse Animation */
.whatsapp-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Media Queries */
@media (max-width: 768px) {
  .whatsapp-left-container {
    left: 15px;
  }
  
  .whatsapp-icon {
    width: 52px;
    height: 52px;
  }
  
  .whatsapp-text {
    font-size: 12px;
  }
}

/* Hide on very small screens */
@media (max-width: 480px) {
  .whatsapp-text {
    display: none;
  }
  
  .whatsapp-left:hover .whatsapp-text {
    max-width: 0;
    padding: 0;
  }
}
.learn{
  background-color: #E60023;
  border: none;
  padding: 1rem 2rem;
  color: white;
  border-radius: 0.5em;

}
  /* Floating Buttons Container */
  .floating-buttons-container {
    position: fixed;
    bottom: 15px;

    right: 3rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
  }

  /* Common Button Styles */
  .floating-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    background-color: white;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    padding: 10px;
    overflow: hidden;
    position: relative;
  }

  .icon-container {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: white;
    flex-shrink: 0;
  }

  .btn-text {
    color: black;
    font-weight: 600;
    font-size: 14px;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.3s ease, padding 0.3s ease;
    opacity: 0;
  }

  /* Hover Effects */
  .floating-btn:hover {
    transform: scale(1.05);
    padding: 8px 15px;
  }

  .floating-btn:hover .btn-text {
    max-width: 150px;
    padding-left: 10px;
    opacity: 1;
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .floating-buttons-container {
      right: 15px;
      /* gap: 12px;  */
    }

    .icon-container {
      width: 30px;
      height: 30px;
    }
  }

  @media (max-width: 480px) {
    .btn-text {
      display: none;
    }
  }


      .why-choose-us {
        text-align: center;
        padding: 50px 3rem;
      }
  
      .why-choose-us h2 {
        font-size: 2rem;
        margin-bottom: 20px;
      }
  
      .why-choose-us p {
        color: #555;
        font-size: 16px;
        margin-bottom: 40px;
      }
  
      .features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        /* max-width: 1200px; */
        margin: 0 auto;
      }
  
      .feature {
        /* background: #fff; */
        /* border: 1px solid #e0e0e0; */
        border-radius: 10px;
        padding: 20px;
        text-align: center;
        /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) */
      }
  
      .feature img {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
      }
  
      .feature h3 {
        color: #333;
        margin-bottom: 10px;
        font-size: 18px;
      }
  
      .feature p {
        color: #777;
        font-size: 14px;
        line-height: 1.6;
      }
  
      @media (max-width: 768px) {
        .features {
          grid-template-columns: repeat(2, 1fr);
        }
      }
  
      @media (max-width: 480px) {
        .features {
          grid-template-columns: 1fr;
        }
      }


        /* Floating Buttons Container */
  .floating-buttons-container1 {
    position: fixed;
    bottom: 6rem;

    right: 3rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
  }

  /* Common Button Styles */
  .floating-btn1 {
    display: flex;
    align-items: center;
    text-decoration: none;
    background-color: white;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    padding: 8px;
    overflow: hidden;
    position: relative;
  }

  .icon-container1 {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: white;
    flex-shrink: 0;
  }

  .btn-text1 {
    color: black;
    font-weight: 600;
    font-size: 14px;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.3s ease, padding 0.3s ease;
    opacity: 0;
  }

  /* Hover Effects */
  .floating-btn1:hover {
    transform: scale(1.05);
    padding: 8px 15px;
  }

  .floating-btn1:hover .btn-text {
    max-width: 150px;
    padding-left: 10px;
    opacity: 1;
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .floating-buttons-container1 {
      right: 15px;
      gap: 12px;
    }

    .icon-container1 {
      width: 30px;
      height: 30px;
    }
  }

  @media (max-width: 480px) {
    .btn-text1 {
      display: none;
    }
  }

/* Enable text selection for all elements */
