﻿:root {
  --primary-health-green: #28a745;
  --dark-health-green: #1e7e34;
  --light-health-green: #d4edda;
  --text-black: #212529;
  --text-gray-dark: #495057;
  --text-gray-light: #6c757d;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --accent-orange: #ff8c00;
  --shadow-sm: rgba(0, 0, 0, 0.05);
  --shadow-md: rgba(0, 0, 0, 0.1);
  --shadow-lg: rgba(0, 0, 0, 0.15);
}

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

html {
  background: var(--off-white);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  color: var(--text-black);
  font-family: "Poppins", "Noto Sans Devanagari", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Header Styles */
.main-header-navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 2px 10px var(--shadow-sm);
  z-index: 1000;
  height: 75px;
}

.header-wrapper-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 25px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-btn span {
  width: 28px;
  height: 3px;
  background: var(--primary-health-green);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.site-branding {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-health-green);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header-cta-btn {
  background: var(--primary-health-green);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.header-cta-btn:hover {
  background: var(--dark-health-green);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.primary-navigation-menu {
  position: fixed;
  left: -300px;
  top: 75px;
  width: 300px;
  height: calc(100vh - 75px);
  background: var(--primary-health-green);
  z-index: 999;
  transition: left 0.4s ease;
  padding: 40px 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.primary-navigation-menu.active {
  left: 0;
}

.nav-link-item {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.nav-link-item:hover {
  padding-left: 15px;
  color: var(--off-white);
}

/* Main Content */
.page-content-container {
  margin-top: 75px;
}

.introduction-hero-section {
  min-height: 85vh;
  background: linear-gradient(
    135deg,
    var(--primary-health-green) 0%,
    var(--dark-health-green) 100%
  );
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.05) 20px
  );
}

.hero-text-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 30px;
  text-align: center;
  color: var(--white);
}

.main-hero-heading {
  font-family: "Poppins", "Noto Sans Devanagari", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
}

.hero-description-subtitle {
  font-family: "Poppins", "Noto Sans Devanagari", sans-serif;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 25px;
  opacity: 0.95;
}

.hero-description-text {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.9;
  max-width: 750px;
  margin: 0 auto;
}

/* Features Section */
.features-showcase-section {
  padding: 90px 25px;
  background: var(--white);
}

.features-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-item-box {
  background: var(--light-health-green);
  padding: 45px 35px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-item-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-md);
  border-color: var(--primary-health-green);
}

.feature-icon-wrapper {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}

.feature-item-title {
  font-family: "Poppins", "Noto Sans Devanagari", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-health-green);
  margin-bottom: 20px;
}

.feature-item-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-gray-dark);
}

/* Content Blocks Section */
.content-blocks-section {
  padding: 90px 25px;
  background: var(--off-white);
}

.content-container-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.content-block-item {
  display: flex;
  max-width: 100%;
  margin-bottom: 80px;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px var(--shadow-sm);
}

.content-block-item.reverse-layout {
  flex-direction: row-reverse;
}

.block-image-container {
  flex: 0 0 50%;
  max-width: 50%;
}

.block-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.block-text-container {
  flex: 0 0 50%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.block-title-text {
  font-family: "Poppins", "Noto Sans Devanagari", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-health-green);
  margin-bottom: 25px;
  line-height: 1.3;
}

.block-description-content p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-gray-dark);
}

/* Contact Form Section */
.contact-form-wrapper {
  padding: 90px 25px;
  background: var(--white);
}

.form-container-box {
  max-width: 750px;
  margin: 0 auto;
  background: var(--light-health-green);
  padding: 60px 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px var(--shadow-sm);
}

.form-main-heading {
  font-family: "Poppins", "Noto Sans Devanagari", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-health-green);
  text-align: center;
  margin-bottom: 45px;
}

.main-contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.input-field-wrapper {
  display: flex;
  flex-direction: column;
}

.input-field-wrapper label {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-health-green);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-field-wrapper input,
.input-field-wrapper textarea {
  padding: 16px 20px;
  border: 2px solid var(--off-white);
  border-radius: 10px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  background: var(--white);
}

.input-field-wrapper input:focus,
.input-field-wrapper textarea:focus {
  border-color: var(--primary-health-green);
  outline: none;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.input-field-wrapper textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-action-button {
  background: var(--primary-health-green);
  color: var(--white);
  padding: 18px 45px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: center;
  min-width: 220px;
}

.submit-action-button:hover {
  background: var(--dark-health-green);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

/* Footer */
.main-site-footer {
  background: var(--primary-health-green);
  color: var(--white);
  padding: 50px 25px;
}

.footer-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.footer-links-container {
  display: flex;
  gap: 30px;
}

.footer-links-container a {
  color: var(--white);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 5px;
}

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

.copyright-text {
  opacity: 0.85;
  font-size: 14px;
  margin-top: 10px;
}

/* Cookie Notice */
#cookieNotice {
  display: none;
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 650px;
  padding: 30px;
  background: var(--primary-health-green);
  color: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 999999;
  font-size: 14px;
}

#cookieNotice.show {
  display: block;
}

#cookieNotice div {
  margin-bottom: 20px;
}

#cookieNotice a {
  color: var(--accent-orange);
  text-decoration: underline;
}

.cookie-accept-button {
  float: right;
  border-radius: 25px;
  background: var(--white);
  color: var(--primary-health-green);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  padding: 12px 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.cookie-accept-button:hover {
  background: var(--accent-orange);
  color: var(--white);
}

/* Contact Page Styles */
.contact-details-grid-section {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-detail-block {
  padding: 30px 0;
  border-bottom: 1px solid var(--off-white);
}

.contact-section-heading {
  font-family: "Poppins", "Noto Sans Devanagari", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-health-green);
}

.contact-address-full {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-gray-dark);
}

.contact-phone-link,
.contact-email-link {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-health-green);
  border-bottom: 2px solid var(--primary-health-green);
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-phone-link:hover,
.contact-email-link:hover {
  color: var(--dark-health-green);
  border-color: var(--dark-health-green);
}

.map-display-container {
  min-height: 500px;
  border: 3px solid var(--light-health-green);
  border-radius: 15px;
  overflow: hidden;
  background: var(--off-white);
}

/* Text Content Page */
.text-content-page {
  padding: 80px 25px;
  background: var(--white);
}

.text-content-wrapper-box {
  max-width: 1000px;
  margin: 0 auto;
}

.text-area-container {
  background: var(--light-health-green);
  padding: 60px 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px var(--shadow-sm);
}

.content-section-title {
  font-family: "Poppins", "Noto Sans Devanagari", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-health-green);
  margin: 40px 0 25px 0;
}

.text-area-container p {
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-black);
}

.content-list-area {
  margin: 25px 0;
  padding-left: 30px;
}

.content-list-area li {
  margin-bottom: 12px;
  line-height: 1.8;
  color: var(--text-black);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .main-hero-heading {
    font-size: 36px;
  }

  .hero-description-subtitle {
    font-size: 22px;
  }

  .block-text-container {
    padding: 40px;
  }

  .block-title-text {
    font-size: 28px;
  }

  .features-grid-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 968px) {
  .content-block-item,
  .content-block-item.reverse-layout {
    flex-direction: column;
  }

  .block-image-container {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .block-image-container img {
    height: 300px;
  }

  .block-text-container {
    flex: 0 0 100%;
    padding: 35px;
  }

  .main-hero-heading {
    font-size: 32px;
  }

  .hero-description-subtitle {
    font-size: 20px;
  }

  .form-container-box {
    padding: 45px 35px;
  }

  .form-main-heading {
    font-size: 28px;
  }

  .contact-details-grid-section {
    grid-template-columns: 1fr;
  }

  .map-display-container {
    height: 400px;
  }

  .text-area-container {
    padding: 40px 30px;
  }

  .content-section-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .hero-text-content-wrapper {
    padding: 0 20px;
  }

  .main-hero-heading {
    font-size: 26px;
  }

  .hero-description-subtitle {
    font-size: 18px;
  }

  .hero-description-text {
    font-size: 16px;
  }

  .header-cta-btn {
    padding: 10px 20px;
    font-size: 12px;
  }

  .site-branding {
    font-size: 18px;
  }

  .form-container-box {
    padding: 30px 25px;
  }

  .form-main-heading {
    font-size: 24px;
  }

  .contact-form-wrapper {
    padding: 60px 20px;
  }

  .content-blocks-section {
    padding: 60px 20px;
  }

  .content-block-item {
    margin-bottom: 50px;
  }

  .contact-details-grid-section {
    margin: 50px 20px;
    padding: 0;
  }

  .text-area-container {
    padding: 30px 20px;
  }

  .content-section-title {
    font-size: 22px;
  }

  .footer-links-container {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .main-hero-heading {
    font-size: 22px;
  }

  .hero-description-subtitle {
    font-size: 16px;
  }

  .feature-item-title {
    font-size: 20px;
  }

  .block-title-text {
    font-size: 24px;
  }

  .form-main-heading {
    font-size: 20px;
  }
}
