
  body {
    margin: 0;
    font-family: Arial, sans-serif;
  }

  /* Top Bar */
  .maintop {
    background: rgb(253, 194, 139);
    padding: 8px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    overflow-x: auto;
  }

  .topcontaint {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .toplink {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
    white-space: nowrap;
  }

  .left-links {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-start;
  }

  .right-links {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
  }

  .toplink li {
    display: flex;
    align-items: center;
  }

  .toplink a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    display: flex;
    align-items: center;
  }

  .toplink a i {
    margin-right: 5px;
  }

  /* Ensure single-line layout on all screens */
  @media screen and (max-width: 768px) {
    .maintop {
      overflow-x: auto;
      display: flex;
      justify-content: center;
    }

    .topcontaint {
      display: flex;
      flex-wrap: nowrap;
      width: max-content;
    }
  }

  /* Navbar */
  .topnav {
    background: linear-gradient(45deg, rgb(233, 117, 8), rgb(233, 206, 55));
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
}


  .topnav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
  }

  .topnav a:hover {
    background-color: #f8cd55;
    color: black;
  }

  .menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
  }

  /* Sidebar Menu */
  .sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.4s;
    padding-top: 60px;
    z-index: 2000;
  }

  .sidebar a {
    padding: 12px 20px;
    text-decoration: none;
    font-size: 18px;
    color: white;
    display: block;
    transition: 0.3s;
  }

  .sidebar a:hover {
    background-color: #575757;
  }

  .sidebar .closebtn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
  }

  @media screen and (max-width: 768px) {
    .menu-icon {
      display: block;
    }

    .topnav a {
      display: none;
    }
  }
  .marquee-container {
            width: 100%;
            overflow: hidden;
            white-space: nowrap;
            background: rgb(253, 182, 124);
            padding: 10px 0;
            position: relative;
        }

        .marquee-content {
            display: inline-block;
            white-space: nowrap;
            animation: marquee 20s linear infinite;
        }

        @keyframes marquee {
            from {
                transform: translateX(100%);
            }
            to {
                transform: translateX(-100%);
            }
        }
        .footer {
            background: linear-gradient(45deg, rgb(233, 117, 8), rgb(233, 220, 47));/* Same as Navbar */
            color: white;
            padding: 40px 0;
        }

        .footer a {
            color: white;
            text-decoration: none;
        }

        .footer a:hover {
            color: lightgray;
        }

        .footer .social-icons a {
            font-size: 24px;
            margin: 0 10px;
            display: inline-block;
        }

        .footer .social-icons a:hover {
            color: lightgray;
        }

        .footer-bottom {
            background-color: #ca691a;
            text-align: center;
            padding: 10px 0;
            margin-top: 20px;
        }

        .map-container {
            width: 100%;
            height: 200px;
            border-radius: 10px;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .footer .row {
                text-align: center;
            }

            .footer .col-md-4 {
                margin-bottom: 20px;
            }
        }
        .why-ayurveda {
            background-color: white; /* White Background */
            padding: 60px 0;
        }

        /* Section Title */
        .why-ayurveda h2 {
            color: #dd9804; /* Dark Green */
            font-weight: bold;
            text-align: center;
            padding-bottom: 20px;
        }

        /* Feature Blocks */
        .feature-box {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            height: 250px; /* Equal height */
            border-radius: 10px;
            padding: 20px;
            background-color: #db9601; /* Green */
            color: white;
            font-weight: bold;
            transition: all 0.3s ease-in-out;
        }

        /* Hover Effect */
        .feature-box:hover {
            background-color: white;
            color: #e69706;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            border: 2px solid #a56300;
        }

        /* Responsive Grid */
        .equal-height {
            display: flex;
            flex-wrap: wrap;
        }

        /* Ensuring Equal Height in All Devices */
        @media (min-width: 768px) {
            .feature-box {
                height: 280px;
            }
        }

        .why-ahcri {
            background-color: white;
            padding: 60px 0;
        }

        /* Section Title */
        .why-ahcri h2 {
            color: #e98e05;
            font-weight: bold;
            text-align: center;
            margin-bottom: 30px;
        }

        /* Content Container */
        .content-wrapper {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

        /* Image Styling */
        .image-container img {
            width: 100%;
            border-radius: 10px;
        }

        /* Text Box */
        .text-container {
            padding-left: 30px;
        }

        .text-container h3 {
            color: #f18016;
            font-weight: bold;
        }

        /* Feature Points */
        .feature-point {
          background: linear-gradient(45deg, rgb(247, 120, 1), rgb(248, 194, 93));
            color: white;
            padding: 15px;
            margin: 10px 0;
            border-radius: 5px;
            transition: 0.3s;
            font-weight: bold;
        }

        /* Hover Effect */
        .feature-point:hover {
            background-color: white;
            color: #4d1f00;
            border: 2px solid #4d1f00;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .text-container {
                padding-left: 0;
                margin-top: 20px;
            }
        }
         /* Section Styling */
         .treatment-section {
            background-color: white;
            padding: 60px 0;
        }

        .treatment-section h2 {
            color: #e98007;
            font-weight: bold;
            text-align: center;
            margin-bottom: 20px;
        }

        /* Accordion Styling */
        .accordion-item {
          background: linear-gradient(45deg, rgb(247, 120, 1), rgb(248, 194, 93));
            border: none;
            margin-bottom: 10px;
        }

        .accordion-button {
            background-color:#d38b04;
            color: white;
            font-weight: bold;
            border-radius: 5px;
            transition: 0.3s;
        }

        .accordion-button:not(.collapsed) {
            background-color: #d88304;
            color: white;
        }

        .accordion-button:hover {
            background-color: white;
            color: #be6702;
            border: 2px solid #be7c02;
        }

        .accordion-body {
            background-color: #f8f9fa;
            padding: 15px;
            border-left: 3px solid #c46901;
        }

        /* Image Styling */
        .treatment-image {
            width: 100%;
            border-radius: 10px;
        }
         /* Testimonial Section Styling */
         .testimonial-section {
            background: url('https://source.unsplash.com/1600x900/?medical,healing') no-repeat center center;
            background-size: cover;
            padding: 80px 20px;
            text-align: center;
            position: relative;
        }

        .testimonial-overlay {
            background: linear-gradient(45deg, rgb(230, 112, 1), rgb(250, 205, 7)); /* Green overlay */
            padding: 60px 20px;
            border-radius: 10px;
        }

        .testimonial-section h2 {
            color: white;
            font-weight: bold;
            margin-bottom: 30px;
        }

        .carousel-item {
            color: white;
            font-size: 18px;
            font-style: italic;
            padding: 20px;
            text-align: center;
        }

        .testimonial-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .testimonial-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid white;
        }

        .testimonial-text {
            max-width: 600px;
        }

        .testimonial-author {
            font-size: 20px;
            font-weight: bold;
            margin-top: 10px;
            color: #fff;
        }

        @media (max-width: 768px) {
            .testimonial-content {
                flex-direction: column;
            }

            .testimonial-overlay {
                padding: 40px 10px;
            }
        }
        /* appointment section */
        .appointment-section {
            background-color: #ffffff;
            padding: 80px 20px;
        }

        .appointment-heading {
            color: #d38003;
            font-weight: bold;
            margin-bottom: 30px;
            text-align: center;
        }

        .appointment-form {
            background: linear-gradient(45deg, rgb(236, 115, 1), rgb(248, 238, 93));
            color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .appointment-form label {
            font-weight: bold;
            margin-top: 10px;
        }

        .appointment-form input, 
        .appointment-form select, 
        .appointment-form textarea {
            width: 100%;
            padding: 10px;
            margin-top: 5px;
            border: none;
            border-radius: 5px;
        }

        .appointment-form button {
            background: white;
            color: #ebad04;
            font-weight: bold;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            margin-top: 15px;
            width: 100%;
            cursor: pointer;
            transition: 0.3s;
        }

        .appointment-form button:hover {
            background: #9e4d01;
            color: white;
        }

        .appointment-image img {
            width: 100%;
            border-radius: 10px;
        }

        @media (max-width: 768px) {
            .appointment-form {
                margin-top: 30px;
            }
        }
        .container {
          margin-top: 50px;
      }
      .card {
          border-radius: 10px;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          background-color: white;
      }
      .form-control, .btn {
          border-radius: 5px;
      }
      .btn-green {
          background-color: #ec8600;
          color: white;
          border: none;
      }
      .btn-green:hover {
          background-color: #004d00;
      }
      h3 {
          color: #c07e05;
      }
      /* Branch section styling */
      .branch-section {
          background-color: white;
          text-align: center;
          padding: 30px;
          border-radius: 10px;
      }
      .branch-card {
          background-color: #d38a03;
          color: white;
          border-radius: 10px;
          padding: 20px;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          text-align: center;
          margin-bottom: 15px;
      }
      .our-story {
        background-color: #e6f7e6;
        padding: 50px 20px;
        font-family: 'Arial', sans-serif;
        color: #333;
      }
      
      .our-story .container {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
      }
      
      .our-story h2 {
        font-size: 2.5rem;
        color: #ec8600;  /* Green color for a calming effect */
        margin-bottom: 20px;
      }
      
      .our-story .intro {
        font-size: 1.2rem;
        color: #555;
        margin-bottom: 40px;
        line-height: 1.6;
      }
      
      .our-story .story-content {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
        margin-top: 30px;
      }
      
      .our-story .story-text {
        background-color: #ffffff;
        border-radius: 10px;
        padding: 35px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      }
      
      .our-story .story-text h3 {
        font-size: 1.8rem;
        color: #e68a00;
        margin-bottom: 15px;
      }
      
      .our-story .story-text p {
        font-size: 1.1rem;
        color: #666;
        line-height: 1.8;
      }
      
      @media (max-width: 768px) {
        .our-story .story-content {
          grid-template-columns: 1fr;
        }
      }
      .founder-director {
        background-color: #f2f9f2;
        padding: 50px 20px;
        font-family: 'Arial', sans-serif;
        color: #333;
      }
      
      .founder-director .container {
        max-width: 1200px;
        margin: 0 auto;
        text-align: left;
      }
      
      .founder-director h2 {
        font-size: 2.5rem;
        color: #c56002;  /* Green color for a calming effect */
        margin-bottom: 20px;
      }
      
      .founder-director .intro {
        font-size: 1.2rem;
        color: #555;
        margin-bottom: 40px;
        line-height: 1.6;
      }
      
      .founder-director .director-profile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
        margin-top: 40px;
      }
      
      .founder-director .founder-image {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        object-fit: cover;
        border: 5px solid #df8004;
      }
      .founder-image {
        width: 100%;
        height: auto;
        max-width: 300px; /* Limit the maximum width */
        border-radius: 50%;
        object-fit: cover;
      }
      
      .founder-director .director-info {
        max-width: 800px;
        text-align: left;
      }
      
      .founder-director .director-info h3 {
        font-size: 2rem;
        color: #e06c00;
        margin-bottom: 15px;
      }
      
      .founder-director .director-info .position {
        font-size: 1.2rem;
        color: #555;
        margin-bottom: 20px;
      }
      
      .founder-director .director-info p {
        font-size: 1.1rem;
        color: #666;
        line-height: 1.8;
      }
      
      @media (max-width: 768px) {
        .founder-director .director-profile {
          flex-direction: column;
          text-align: center;
        }
      
        .founder-director .founder-image {
          margin-bottom: 20px;
        }
      }
      .patient-centric-care {
        background-color: #f0f8f0;
        padding: 50px 20px;
        font-family: 'Arial', sans-serif;
        color: #e06c00;
      }
      
      .patient-centric-care .container {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
      }
      
      .patient-centric-care h2 {
        font-size: 2.5rem;
        color: #f09000;  /* Green color for a calming effect */
        margin-bottom: 20px;
      }
      
      .patient-centric-care .intro {
        font-size: 1.2rem;
        color: #555;
        margin-bottom: 40px;
        line-height: 1.6;
      }
      
      .patient-centric-care .care-content {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
        margin-top: 30px;
      }
      
      .patient-centric-care .care-text {
        background:  linear-gradient(45deg, rgb(236, 115, 1), rgb(252, 181, 28));
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      }
      
      .patient-centric-care .care-text h3 {
        font-size: 1.8rem;
        color: #ebeaea;
        margin-bottom: 15px;
      }
      
      .patient-centric-care .care-text p {
        font-size: 1.1rem;
        color: #feffff;
        line-height: 1.8;
      }
      
      @media (max-width: 768px) {
        .patient-centric-care .care-content {
          grid-template-columns: 1fr;
        }
      }
      .our-facilities {
        background-color: #f0f8f0;
        padding: 50px 20px;
        font-family: 'Arial', sans-serif;
        color: #333;
      }
      
      .our-facilities .container {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
      }
      
      .our-facilities h2 {
        font-size: 2.5rem;
        color: #f09c00;  /* Green color for a calming effect */
        margin-bottom: 20px;
      }
      
      .our-facilities .intro {
        font-size: 1.2rem;
        color: #555;
        margin-bottom: 40px;
        line-height: 1.6;
      }
      
      .our-facilities .facility-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-top: 30px;
        animation: fadeIn 1s ease-in-out;
      }
      
      .our-facilities .facility-item {
        background-color: #ffffff;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        opacity: 0;
        transform: translateY(50px);
        animation: slideUp 1s ease-out forwards;
      }
      
      .our-facilities .facility-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 20px;
      }
      
      .our-facilities .facility-item h3 {
        font-size: 1.8rem;
        color: #e28800;
        margin-bottom: 10px;
      }
      
      .our-facilities .facility-item p {
        font-size: 1.1rem;
        color: #666;
        line-height: 1.6;
      }
      
      /* Animation for each facility item */
      @keyframes slideUp {
        0% {
          opacity: 0;
          transform: translateY(50px);
        }
        100% {
          opacity: 1;
          transform: translateY(0);
        }
      }
      
      @media (max-width: 768px) {
        .our-facilities .facility-content {
          grid-template-columns: 1fr;
        }
      }
/* Appointment Button Styles */
.appointment-btn {
  position: fixed;
  right: 20px;
  bottom: 20%;
  transform: translateY(50%);
  z-index: 999;
}

.appointment-btn .btn {
  display: inline-block;
  background-color: #da8300;  /* Green color */
  color: #fff;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, transform 0.3s;
}

.appointment-btn .btn:hover {
  background-color: #d47f00;  /* Darker green */
  transform: translateY(-5px);  /* Slight hover effect */
}

.appointment-btn .btn:active {
  background-color: #d67900;  /* Even darker green */
}      
                  
/* Section Style */
.card {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: white;
}
.form-control, .btn {
  border-radius: 5px;
}
.btn-green {
  background-color: #d87a00;
  color: white;
  border: none;
}
.btn-green:hover {
  background-color: #e98c00;
}
h3 {
  color: #28a745;
}
/* Ayurveda Overview Section */
.ayurveda-section {
  background-color: white;
  padding: 50px 20px;
  text-align: center;
}
.ayurveda-section h2 {
  color: #e28000;
  font-weight: bold;
  margin-bottom: 20px;
}
.ayurveda-overview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.ayurveda-text {
  max-width: 600px;
  text-align: left;
}
.ayurveda-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}
/* Therapy Cards */
body {
  background-color: #f5ede9; /* Light Green */
}
.container {
  margin-top: 50px;
}
.section-title {
  color: #e08700;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
.therapy-card {
  border: none;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  text-align: center;
  margin-bottom: 20px;
}
.therapy-card:hover {
  transform: translateY(-5px);
}
.therapy-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.therapy-content {
  padding: 20px;
}
.therapy-content h5 {
  color: #e48100;
  font-weight: bold;
  margin-bottom: 10px;
}
.accordion-button {
  background-color: #df8600;
  color: white;
  font-weight: bold;
}
.accordion-button:hover {
  background-color: #f1eee5;
}
.accordion-button:not(.collapsed) {
  background-color: #e96900;
  color: white;
}
.container {
  margin-top: 50px;
}
.section-title {
  color: #e97203;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
.card {
  border: none;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  margin-bottom: 20px;
}
.card:hover {
  transform: translateY(-5px);
}
.card-img-top {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.card-body {
  padding: 20px;
  text-align: center;
}
.accordion-button {
  background: linear-gradient(45deg, rgb(236, 115, 1), rgb(243, 204, 77));
  color: white;
  font-weight: bold;
}
.accordion-button:hover {
  background-color: #eceae8;
}
.accordion-button:not(.collapsed) {
  background-color: #da6900;
  color: white;
}
.accordion-body {
  text-align: left; /* Ensures left alignment */
}
.accordion-body ul {
  padding-left: 20px; /* Adds indentation */
  list-style-type: disc; /* Ensures bullet points */
}
.area-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.area-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  width: 100%;
}

.area-box:nth-child(even) {
  flex-direction: row-reverse; /* Zigzag effect */
}

.area-details {
  flex: 1;
  padding: 20px;
}

.area-map {
  flex: 1;
}

.area-map iframe {
  width: 100%;
  height: 250px;
  border: 0;
}

@media (max-width: 768px) {
  .area-box {
      flex-direction: column !important;
  }
}
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  padding: 20px;
  justify-content: center;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
  text-align: center;
}

.gallery-item img {
  width: 100%;
  height: 200px; /* Fixed height for uniform display */
  object-fit: cover; /* Ensures images fill the area without distortion */
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  padding: 8px 0;
  font-size: 14px;
}

@media (max-width: 768px) {
  .gallery-container {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .gallery-item img {
      height: 150px; /* Adjusted height for smaller screens */
  }
}