/* Base Styles */
:root {
  --primary-color: #4caf50;
  --secondary-color: #8bc34a;
  --accent-color: #ff9800;
  --dark-color: #333;
  --light-color: #f4f4f4;
  --text-color: #333;
  --light-text: #fff;
  --border-color: #ddd;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #f9f9f9;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
}

.section-subtitle {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  color: var(--dark-color);
}

.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
}

.btn-primary:hover {
  background-color: #3d8b40;
  transform: translateY(-2px);
}

.btn-translate {
  background-color: var(--accent-color);
  color: var(--light-text);
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-translate:hover {
  background-color: #e68a00;
}

/* Header Styles */
header {
  background-color: #fff;
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 15px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.logo-text h1 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin: 0;
}

.logo-text p {
  font-size: 0.8rem;
  color: var(--dark-color);
}

nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
}

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links a {
  color: var(--dark-color);
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary-color);
}

.mobile-menu {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url("hero-bg.jpg") no-repeat center center / cover;
  position: relative;
  color: var(--light-text);
  display: flex;
  align-items: center;
  margin-top: 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Shirodhara Section */
.shirodhara {
  padding: 5rem 0;
  background-color: #f5f5f5;
}

.shirodhara-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.shirodhara-image {
  flex: 1;
  min-width: 300px;
}

.shirodhara-image img {
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.shirodhara-text {
  flex: 1;
  min-width: 300px;
}

.shirodhara-text h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.shirodhara-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.benefits-container {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.benefits-container h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.benefits-english ul,
.benefits-marathi ul {
  padding-left: 1rem;
}

.benefits-english li,
.benefits-marathi li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
}

.benefits-english i,
.benefits-marathi i {
  color: var(--primary-color);
  margin-right: 0.5rem;
  margin-top: 0.2rem;
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: #fff;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  max-width: 300px;
  border-radius: 10px;
}

.about-text {
  flex: 2;
  min-width: 300px;
}

.about-text p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* Doctors Section */
.doctors {
  padding: 5rem 0;
  background-color: #f5f5f5;
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.doctor-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.doctor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.doctor-image {
  height: 250px;
  overflow: hidden;
}

.doctor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-info {
  padding: 1.5rem;
}

.doctor-info h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.doctor-info p {
  color: var(--dark-color);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

/* Treatments Section */
.treatments {
  padding: 5rem 0;
  background-color: #fff;
}

.treatment-selection {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.treatments-grid {
  flex: 2;
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.treatment-cards {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.treatment-cards:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.treatment-image {
  height: 200px;
  overflow: hidden;
}

.treatment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treatment-info {
  padding: 1.5rem;
}

.treatment-info h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.treatment-info p {
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.treatment-price {
  font-weight: bold;
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.treatment-checkbox {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

.selected-treatments {
  flex: 1;
  min-width: 300px;
  background-color: #f5f5f5;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
  max-height: 80vh;
  overflow-y: auto;
}

.selected-treatments h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}

#selected-treatments-list {
  margin-bottom: 1.5rem;
}

#selected-treatments-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-color);
}

#selected-treatments-list .remove-treatment {
  color: #f44336;
  cursor: pointer;
}

.total-container {
  margin-top: 1.5rem;
  text-align: center;
}

.total-container p {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Facilities Section */
.facilities {
  padding: 5rem 0;
  background-color: #f5f5f5;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.5rem;
}

.facility-item {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.facility-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.facility-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.facility-item p {
  font-weight: 500;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background-color: #fff;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-item {
  display: flex;
  margin-bottom: 2rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
  margin-top: 0.5rem;
}

.contact-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background-color: #f5f5f5;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  max-width: 500px;
  text-align: center;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

#qr-code-container {
  margin: 2rem 0;
}

#qr-code-container img {
  max-width: 250px;
  margin: 0 auto;
}

/* Footer Styles */
footer {
  background-color: var(--dark-color);
  color: var(--light-text);
  padding: 4rem 0 1rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
}

.footer-logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.footer-logo h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.footer-links,
.footer-treatments,
.footer-contact {
  flex: 1;
  min-width: 200px;
}

.footer-links h3,
.footer-treatments h3,
.footer-contact h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-links ul li,
.footer-treatments ul li {
  margin-bottom: 0.5rem;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-contact p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 0.5rem;
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
    margin-left: 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .shirodhara-content,
  .about-content,
  .contact-content {
    flex-direction: column;
  }

  .selected-treatments {
    position: static;
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .logo-text h1 {
    font-size: 1rem;
  }

  .logo img {
    width: 40px;
    height: 40px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .btn-primary,
  .btn-translate {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

 .treatments-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            padding: 20px;
        }
        .treatment-card {
            width: 200px;
            padding: 15px;
            background-color: #f8f8f8;
            border-radius: 8px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
            text-align: center;
            font-family: Arial, sans-serif;
        }
        .treatment-card h3 {
            margin: 0;
            font-size: 16px;
            color: #333;
        }
        .treatment-card i {
    font-size: 40px;
    color: #007BFF;
    margin-bottom: 10px;
}
/* Hide Google Translate Toolbar */
#goog-gt-tt, 
.goog-te-balloon-frame, 
.goog-te-menu-frame { 
    display: none !important; 
}

/* Hide the Google Translate Dropdown */
.goog-te-gadget { 
    display: none !important; 
}

/* Hide the Google Translate logo */
.goog-logo-link, .goog-te-gadget span { 
    display: none !important; 
}

/* Remove unwanted elements from the body */
body { top: 0 !important; }
/* Basic styling */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: white; /* Example color */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

/* Mobile Menu Icon */
.mobile-menu {
    display: none;
    cursor: pointer;
    color: black;
    font-size: 24px;
}

/* Responsive Styling */
@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background-color: white;
        flex-direction: column;
        width: 100%;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }
}
.mobile-menu.open i::before {
    content: "\f00d"; /* Font Awesome 'X' icon */
}