/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Enhanced Modern Color Palette */
    --primary-color: #e91e63;
    --primary-light: #ff9800;
    --primary-dark: #ad1457;
    --secondary-color: #00bcd4;
    --accent-color: #4caf50;
    --tertiary-color: #ff5722;
    --quaternary-color: #9c27b0;
    --quinary-color: #ff4081;
    
    /* Enhanced Modern Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    --gradient-secondary: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    --gradient-tertiary: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
    --gradient-quaternary: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    --gradient-accent: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
    --gradient-rainbow: linear-gradient(45deg, #e91e63, #ff9800, #00bcd4, #4caf50, #9c27b0, #ff5722);
    
    /* Text Colors */
    --text-dark: #2d3436;
    --text-medium: #636e72;
    --text-light: #b2bec3;
    --text-white: #ffffff;
    --text-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    
    /* Background Colors */
    --background-light: #F0F8FF;
    --background-glass: rgba(255, 255, 255, 0.1);
    --background-overlay: rgba(255, 255, 255, 0.2);
    --background-card: rgba(255, 255, 255, 0.95);
    
    /* Static Colors */
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    
    /* Enhanced Shadows */
    --shadow-light: 0 2px 10px rgba(233, 30, 99, 0.08);
    --shadow-medium: 0 4px 20px rgba(233, 30, 99, 0.12);
    --shadow-heavy: 0 8px 30px rgba(233, 30, 99, 0.15);
    --shadow-colored: 0 8px 32px rgba(233, 30, 99, 0.25);
    --shadow-floating: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(233, 30, 99, 0.3);
    
    /* Border Radius */
    --border-radius: 12px;
    --border-radius-small: 8px;
    --border-radius-large: 20px;
    --border-radius-circle: 50%;
    
    /* Enhanced Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-elastic: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: linear-gradient(135deg, #fafafa 0%, #f0f8ff 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.team .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}
.team .section-header p {
    font-size: 1.1rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
    padding-top: 35px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-image {
    position: absolute;
    height: auto;
    width: 260px;
    max-width: 400px;
    object-fit: contain;
    z-index: 1001;
    top: -72px;
    border-radius: 0px;
    padding: 12px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1002;
    position: relative;
    padding: 5px;
    border-radius: 4px;
    transition: var(--transition);
}

.hamburger:hover {
    background: rgba(233, 30, 99, 0.1);
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Ensure no bullet points in slider area */
.hero,
.hero-slider,
.hero-slide,
.hero-container,
.hero-content,
.hero-product {
    list-style: none !important;
}

.hero ul,
.hero ol,
.hero-slider ul,
.hero-slider ol,
.hero-slide ul,
.hero-slide ol,
.hero-container ul,
.hero-container ol,
.hero-content ul,
.hero-content ol,
.hero-product ul,
.hero-product ol {
    list-style: none !important;
    padding-left: 0 !important;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(233, 30, 99, 0.7), rgba(255, 152, 0, 0.7), rgba(0, 188, 212, 0.7), rgba(76, 175, 80, 0.7));
    background-size: 400% 400%;
    animation: rainbow 8s ease infinite;
    display: flex;
    align-items: center;
    padding: 180px 0 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 80vh;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight {
    color: var(--accent-color);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--white));
}

.hero-description {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--accent-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-content {
    padding-right: 2rem;
}

.hero-product {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    transition: var(--transition);
}

.product-img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.btn {
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-colored);
  border: none;
  border-radius: var(--border-radius-small);
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-elastic);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-glow);
  background: var(--gradient-secondary);
}

.btn-primary:active {
  transform: translateY(-1px) scale(1.02);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-small);
    padding: 12px 26px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-secondary:hover {
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary:hover::before {
  width: 100%;
}

.btn-outline {
    display: inline-block;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--border-radius-small);
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition-elastic);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.btn-outline:hover {
  color: var(--white);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-outline:hover::before {
  transform: scaleX(1);
}

.btn-white {
    background: var(--white);
    color: var(--text-dark);
    border: none;
    border-radius: var(--border-radius-small);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
    border-radius: var(--border-radius);
}

/* Hero Visual */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hero-visual {
    width: 100%;
    height: auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95)), url('images/meera.png');
    background-size: cover;
    background-position: center;
    border-radius: 3%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-heavy);
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 20%;
    right: -10%;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    bottom: 30%;
    left: -15%;
    animation-delay: 1s;
}

.floating-card:nth-child(3) {
    top: 50%;
    right: -20%;
    animation-delay: 2s;
}

.floating-card i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rainbow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.hero {
    padding: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* Mission Section */
.mission {
    background: linear-gradient(135deg, #e91e63 0%, #ff9800 50%, #00bcd4 100%);
    background-size: 300% 300%;
    animation: rainbow 10s ease infinite;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 10s ease-in-out infinite;
    pointer-events: none;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.mission-card:nth-child(1) { animation-delay: 0.2s; }
.mission-card:nth-child(2) { animation-delay: 0.4s; }
.mission-card:nth-child(3) { animation-delay: 0.6s; }

.mission-card:hover {
    transform: translateY(-10px) scale(1.03) !important;
    box-shadow: 0 15px 50px rgba(233, 30, 99, 0.4) !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    z-index: 10 !important;
}

.mission-card:hover .mission-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.mission-card:hover h3 {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mission-card:hover p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.mission-icon i {
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
    transition: var(--transition);
}

.mission-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    transition: var(--transition);
}

/* Mission Section Dark Theme Overrides */
.mission .section-header h2 {
    color: var(--white);
}

.mission .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

/* Products Section */
.products {
    background: var(--white);
    padding: 40px 0;
}

.products-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.product-visual {
    display: flex;
    justify-content: center;
}

.product-image {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-heavy);
    overflow: hidden;
    position: relative;
}

.product-image i {
    font-size: 4rem;
    color: var(--primary-color);
}

.package-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.package-img:hover {
    transform: scale(1.05);
}

.product-details h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--text-medium);
}

.support-text {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 500;
}

.product-features {
    list-style: none;
    margin-bottom: 0.75rem;
}

.product-features li {
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-features i {
    color: var(--primary-color);
    width: 16px;
}

.product-benefits {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--background-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.benefit i {
    color: var(--primary-color);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Impact Section */
.impact {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.impact .section-header h2,
.impact .section-header p {
    color: var(--white);
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    display: block;
}

.stat-card .stat-label {
    font-size: 1rem;
    color: #fff;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* About Section */
.about {
    background: var(--gray-50);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.value p {
    color: var(--text-medium);
    margin-bottom: 0;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    transition: var(--transition);
}

.about-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, rgba(45, 52, 54, 0.85), rgba(0, 0, 0, 0.9)), url('images/women-and-girls-take-part-in-a-menstrual-hygiene-management-training-session-in-lucknow-india.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    position: relative;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--text-dark);
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-outline {
display: inline-block;
padding: 12px 20px;
font-size: 14px;
font-weight: 600;
border-radius: 8px;
background: transparent;
color: var(--primary-color);
border: 2px solid var(--primary-color);
cursor: pointer;
transition: all 0.3s ease-in-out;
text-align: center;
position: relative;
overflow: hidden;
}

.btn-outline::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--gradient-primary);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.3s ease;
z-index: -1;
}

.btn-outline:hover {
background: var(--primary-color);
color: var(--white);
transform: translateY(-2px);
box-shadow: var(--shadow-medium);
}

.btn-outline:hover::before {
transform: scaleX(1);
}


/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
    background: var(--secondary-color);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: var(--primary-color);
    width: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    pointer-events: none;
}

.slider-arrows {
    display: flex;
    gap: 1rem;
    width: 100%;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: auto;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 20;
}

.slider-arrow:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .navbar {
        padding-top: 15px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        z-index: 1000;
        position: relative;
    }

    .nav-container {
        height: 80px;
        padding: 0 15px;
        position: relative;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 120px;
        padding-bottom: 50px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-heavy);
        z-index: 1000;
        overflow-y: auto;
        transform: translateX(0);
    }

    .logo-image {
        height: 120px;
        top: -55px;
        left: 15px;
        padding: 6px;
        max-width: 320px;
        z-index: 1002;
        position: relative;
    }

    .nav-menu.active {
        left: 0;
        transform: translateX(0);
    }
    
    .hamburger.active {
        background: rgba(233, 30, 99, 0.1);
    }

    .nav-link {
        padding: 1rem 0;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-dark);
        transition: var(--transition);
        display: block;
        width: 100%;
        text-align: center;
    }

    .nav-link:hover {
        color: var(--primary-color);
        background: rgba(233, 30, 99, 0.05);
    }

    /* Mobile Dropdown Styles */
    .dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown > .nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .dropdown > .nav-link::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        transition: transform 0.3s ease;
        font-size: 0.8rem;
    }

    .dropdown.active > .nav-link::after {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(255, 255, 255, 0.95);
        margin-top: 1rem;
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        display: block;
        max-height: 300px;
    }

    .dropdown-menu li {
        border-bottom: 1px solid rgba(233, 30, 99, 0.1);
    }

    .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .dropdown-menu a {
        padding: 15px 20px;
        color: var(--text-dark);
        display: block;
        text-align: center;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .dropdown-menu a:hover {
        background: rgba(233, 30, 99, 0.05);
        color: var(--primary-color);
    }

    /* Enhanced Mobile Menu Animation */
    .nav-menu {
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    /* Mobile Menu Overlay */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.1);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-menu.active::before {
        opacity: 1;
    }

    /* Touch-friendly improvements */
    .nav-link, .dropdown-menu a {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 20px;
    }

    .hero-overlay {
        padding: 120px 0 0;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-top: 20px;
        line-height: 1.3;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    }

    .hero-description {
        margin-top: 15px;
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .stat {
        min-width: 80px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-visual {
        width: 280px;
        height: 280px;
    }

    .slider-nav {
        bottom: 30px;
        gap: 1rem;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
        left: 20px;
        right: 20px;
        backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, 0.9);
    }
    
    .products-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-image {
        width: 320px;
        height: 320px;
        margin: 0 auto;
    }
    
    .product-details h3 {
        font-size: 1.8rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-card {
        padding: 2rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 220px;
        justify-content: center;
        font-size: 1rem;
        padding: 12px 24px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        padding-top: 15px;
    }

    .nav-container {
        height: 80px;
    }

    .nav-menu {
        top: 80px;
    }

    .logo-image {
        height: 110px;
        top: -25px;
        padding: 6px;
        max-width: 300px;
    }
}

/* Very small mobile devices */
@media (max-width: 360px) {
    .navbar {
        padding-top: 12px;
    }

    .nav-container {
        height: 75px;
    }

    .nav-menu {
        top: 75px;
    }

    .logo-image {
        height: 100px;
        top: -22px;
        padding: 5px;
        max-width: 250px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-card {
        padding: 2rem;
    }
    
    .product-image {
        width: 320px;
        height: 320px;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Additional mobile logo fixes */
    .nav-logo {
        justify-content: center;
        width: 100%;
        display: flex;
    }

    .logo-image {
        position: absolute;
        display: block;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 140px 0 80px;
    color: var(--white);
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    opacity: 1;
}

/* Story Timeline */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-timeline {
    position: relative;
    padding: 2rem 0;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    position: relative;
    padding: 2rem 0 2rem 4rem;
    margin-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: 1.5rem;
    top: 2rem;
    width: 1rem;
    height: 1rem;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.timeline-year {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Visual Cards */
.story-visual {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.visual-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
}

.visual-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.visual-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.visual-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.visual-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Mission Vision Values */
.mission-vision-values {
    background: var(--primary-color);
    color: var(--white);
}

.mission-vision-values .mvv-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.mission-vision-values .mvv-card h3,
.mission-vision-values .mvv-card p,
.mission-vision-values .mvv-card ul li {
    color: var(--white);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.mvv-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.mvv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mvv-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.mvv-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.mvv-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.mvv-card ul {
    list-style: none;
    padding: 0;
}

.mvv-card ul li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    position: relative;
    padding-left: 1.5rem;
}

.mvv-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* Team Section */
.team {
    background: var(--primary-color);
    color: var(--white);
}

.team .team-member {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.team .team-member h4,
.team .team-member span,
.team .team-member p {
    color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--gray-50);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
}

.team-member:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-glow);
}

.member-photo {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-photo i {
    font-size: 4rem;
    color: var(--primary-color);
}

.member-info {
    padding: 2rem;
}

.member-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.member-info p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.member-social a {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.member-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Numbers Grid */
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.number-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
}

.number-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.number-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.number-icon i {
    font-size: 2rem;
    color: var(--white);
}

.number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.number-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0.5rem 0 1rem;
    display: block;
}

.number-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* Join Us Section */
.join-us {
    background: var(--primary-color);
    color: var(--white);
}

.join-us .join-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.join-us .join-stats span,
.join-us .join-stats label {
    color: var(--white);
}

.join-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.join-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.join-option {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.join-option i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    text-align: center;
}

.join-option h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffd600;
    margin-bottom: 0.25rem;
}
.join-option p {
    color: #ffffff;
    font-size: 15px;
}

.join-visual {
    display: flex;
    justify-content: center;
}

.join-stats {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
}

.join-stat {
    margin-bottom: 1.5rem;
}

.join-stat:last-child {
    margin-bottom: 0;
}

.join-stat span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.join-stat label {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-top: 0.25rem;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
    border-bottom: 1px solid var(--gray-100);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background: var(--background-light);
    color: var(--primary-color);
}

/* Mobile Dropdown Styles */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(255, 255, 255, 0.95);
        margin-top: 1rem;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .dropdown-menu a {
        padding: 15px 20px;
        color: var(--text-dark);
    }

    .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
}

/* Product Page Styles */
.product-hero {
    background: var(--white);
    padding: 4rem 0;
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-image-large {
    display: flex;
    justify-content: center;
    position: relative;
}

.product-box {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-heavy);
    position: relative;
    transition: var(--transition);
}

.product-box:hover {
    transform: scale(1.02);
}

.product-box i {
    font-size: 5rem;
    color: var(--primary-color);
}

.product-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: #ffa500;
}

.rating-text {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.product-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.highlight-item i {
    color: var(--primary-color);
    width: 16px;
}

.order-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    background: var(--gray-100);
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}

.qty-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: none;
    font-weight: 600;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--background-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--primary-color);
}

/* What's Included Section */
.whats-included {
    background: var(--primary-color);
    color: var(--white);
}

.whats-included .content-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.whats-included .content-item h3,
.whats-included .content-item ul li,
.whats-included .content-item .item-value {
    color: var(--white);
}

.whats-included .summary-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.whats-included .summary-box h3,
.whats-included .summary-box .value-line span,
.whats-included .savings-text {
    color: var(--white);
}

.whats-included .section-header h2,
.whats-included .section-header p {
    color: var(--white);
}

.package-contents {
    max-width: 1000px;
    margin: 0 auto;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.content-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    position: relative;
}

.content-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.content-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.content-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.content-item ul {
    list-style: none;
    margin-bottom: 1rem;
}

.content-item ul li {
    padding: 0.25rem 0;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.item-value {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-summary {
    display: flex;
    justify-content: center;
}

.summary-box {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    max-width: 400px;
    width: 100%;
}

.summary-box h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.value-breakdown {
    border-top: 1px solid var(--gray-200);
    padding-top: 1rem;
}

.value-line {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.value-line.total {
    border-top: 1px solid var(--gray-200);
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.value-line.special {
    background: var(--primary-color);
    color: var(--white);
    margin: 1rem -2rem -2rem;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.savings-text {
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 3rem;
}

/* Features & Benefits */
.features-benefits {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background: var(--white);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    background: var(--primary-color);
    color: var(--white);
}

.how-it-works .step {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.how-it-works .step-content h3,
.how-it-works .step-content p {
    color: var(--white);
}

.how-it-works .section-header h2,
.how-it-works .section-header p {
    color: var(--white);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.step {
    background: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 250px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
}

.step-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Customer Reviews */
.customer-reviews {
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.reviewer-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.reviewer-details span {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.review-rating {
    display: flex;
    gap: 0.25rem;
}

.review-rating i {
    color: #ffa500;
}

.review-text {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* FAQ Section */
.faq {
    background: var(--gray-50);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-item.active .faq-question {
    background: var(--gray-50);
}

/* Support CTA */
.support-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-feature i {
    color: var(--white);
}

.final-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
}

.price-text {
    font-size: 1.2rem;
    opacity: 0.9;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
}

.price-period {
    font-size: 1.2rem;
    opacity: 0.9;
}

.guarantee-text {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.guarantee-text i {
    margin-right: 0.5rem;
}

/* Success Stories */
.success-stories {
    background: var(--primary-color);
    color: var(--white);
}

.success-stories .story-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.success-stories .story-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.success-stories .story-content h3,
.success-stories .story-content p,
.success-stories .story-content blockquote,
.success-stories .story-excerpt,
.success-stories .story-location span,
.success-stories .impact-metric strong {
    color: var(--white);
}

.success-stories .section-header h2,
.success-stories .section-header p {
    color: var(--white);
}

.stories-grid {
    display: grid;
    gap: 2rem;
}

.story-card {
    background: var(--gray-50);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.story-card.featured {
    grid-column: 1 / -1;
    background: #50333300;
    border: 2px solid #ffffff00;
}

.story-card {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}
.story-card blockquote {
    color: #000000!important;
}
.story-card.featured {
    grid-template-columns: 250px 1fr;
}

.story-image {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    max-height: 350px; /* limit tall images */
    flex: 1; /* share space with content */
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* so full person fits without cutting */
    object-position: bottom; /* anchor feet at bottom */
    display: block;
}

/* Content adjustments */
.story-content {
    padding: 1.5rem; /* was 2rem – reduced */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem; /* adds light breathing room */
}
.story-location { 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    color: var(--primary-color); 
    font-size: 0.9rem;
     font-weight: 500; 
    margin-bottom: 1rem; 
}
.story-content h3 {
    font-size: 1.3rem; /* reduced slightly */
    margin-bottom: 0.75rem;
}

.story-excerpt {
    margin-bottom: 1rem; /* less spacing */
    font-size: 0.95rem;
}

/* Quote box tighter */
.story-content blockquote {
    background: var(--background-light);
    padding: 0.75rem 1rem;
    border-left: 4px solid var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Impact metrics cleaner */
.story-impact {
    display: flex;
    gap: 1.5rem; /* reduced */
    flex-wrap: wrap;
}

.impact-metric strong {
    font-size: 1.3rem;
}
.impact-metric strong {
     display: block;
     font-size: 1.5rem; 
     color: var(--primary-color);
     font-weight: 700;
}
/* Program Impact */
.program-impact {
    background: var(--gray-50);
}

.impact-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.impact-category {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    color: var(--white);
    font-size: 1.3rem;
}

.category-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
}

.category-metrics {
    margin-bottom: 1.5rem;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.metric:last-child {
    border-bottom: none;
}

.metric-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.metric-label {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.category-description {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Regional Impact */
.regional-impact {
    background: var(--white);
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.impact-map {
    display: flex;
    justify-content: center;
}

.map-visual {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-heavy);
    position: relative;
    overflow: hidden;
}

.india-impact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: var(--transition);
}

.map-visual:hover .india-impact-img {
    transform: scale(1.1);
}

.map-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.regional-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.region-stat {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.region-stat:hover {
    background: var(--white);
    box-shadow: var(--shadow-light);
}

.region-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.region-subtitle {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.region-numbers {
    text-align: right;
}

.region-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.region-label {
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* Partner Impact */
.partner-impact {
    background: var(--primary-color);
    color: var(--white);
}

.partner-impact .partner-testimonial {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.partner-impact .partner-testimonial blockquote,
.partner-impact .partner-info h4,
.partner-impact .partner-info span {
    color: var(--white);
}

.partner-impact .section-header h2,
.partner-impact .section-header p {
    color: var(--white);
}

.partner-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.partner-testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
}

.partner-testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.partner-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.partner-logo i {
    font-size: 2rem;
    color: var(--white);
}

.partner-testimonial blockquote {
    color: var(--text-medium);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.partner-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.partner-info span {
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* Future Goals */
.future-goals {
    background: var(--white);
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.goal-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.goal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background: var(--white);
}

.goal-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.goal-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.goal-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.goal-content p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.goal-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text {
    color: var(--text-medium);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Get Involved CTA */
.get-involved-cta {
    background: linear-gradient(135deg, var(--text-dark), #000);
    color: var(--white);
    text-align: center;
}

.involvement-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.involvement-option {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.involvement-option:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.option-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.option-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.involvement-option h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.involvement-option p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-hero {
    background: var(--white);
    padding: 4rem 0;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--text-dark);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.info-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

/* Contact Form Section */
.contact-form-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
}

.contact-form-section .contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-form-section .contact-form-container h2,
.contact-form-section .contact-form-container p,
.contact-form-section .contact-form-container label,
.contact-form-section .contact-form-container input,
.contact-form-section .contact-form-container select,
.contact-form-section .contact-form-container textarea {
    color: var(--white);
}

.contact-form-section .contact-support .support-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-form-section .contact-support .support-card h3,
.contact-form-section .contact-support .support-card p {
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-medium);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.contact-support {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.support-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.support-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.support-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.support-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.support-card p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Order Inquiry */
.order-inquiry {
    background: var(--white);
}

.order-support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.support-options{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.support-option {
    background: var(--text-dark);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.option-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.option-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.support-option h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.support-option p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tracking-form {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.tracking-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
}

.tracking-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Health Support */
.health-support {
    background: var(--primary-color);
    color: var(--white);
}

.health-support .service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.health-support .service-card h3,
.health-support .service-card p,
.health-support .service-card ul li {
    color: var(--white);
}

.health-support .section-header h2,
.health-support .section-header p {
    color: var(--white);
}

.health-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.helpline-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--background-light);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Regional Offices */
.regional-offices {
    background: var(--white);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.office-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background: var(--white);
}

.office-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.office-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
}

.office-type {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.office-details p {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.office-details i {
    color: var(--primary-color);
    width: 16px;
    margin-top: 0.25rem;
}

/* Partnership Inquiry */
.partnership-inquiry {
    background: var(--gray-50);
}

.partnership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.partnership-lead {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.partnership-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.partnership-type {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.partnership-type:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.type-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.type-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.partnership-type h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.partnership-type p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.5;
}

.partnership-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.form-container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.partner-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Impact Hero Stats */
.impact-hero-stats {
    background:white;
    padding: 80px 0;
    color: var(--white);
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    
}

.hero-stat {
    text-align: center;
    background:  linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.hero-stat:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-5px);
}

.hero-stat .stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.hero-stat .stat-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.hero-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 0.5rem;
}

.hero-stat .stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Health Education Section */
.health-education {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
}

.health-education .education-content h3,
.health-education .education-content p,
.health-education .education-features li {
    color: var(--white);
}

.health-education .section-header h2,
.health-education .section-header p {
    color: var(--white);
}

.education-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.education-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.education-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.education-features {
    list-style: none;
    margin-bottom: 2rem;
}

.education-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.education-features i {
    color: var(--primary-color);
    width: 20px;
    font-size: 1.1rem;
}

.education-visual {
    display: flex;
    justify-content: center;
}

.education-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 500px;
}

.education-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.education-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.education-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 2rem 1rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

/* Educational Resources Section */
.educational-resources {
    background: var(--white);
    padding: 80px 0;
}

.resources-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.resources-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.resources-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.resources-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.resource-item {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-align: center;
}

.resource-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-medium);
    transform: translateY(-3px);
}

.resource-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.resource-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.resource-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.resource-item p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.5;
}

.resources-visual {
    display: flex;
    justify-content: center;
}

.resources-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    max-width: 400px;
    width: 100%;
}

.resources-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.resources-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(46, 134, 171, 0.9));
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
}

.resources-overlay h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.resources-overlay p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

/* Bima Page Styles */
.bima-overview {
    background: var(--white);
    padding: 80px 0;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.overview-text p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.bima-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.bima-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-heavy);
}

.bima-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.bima-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.bima-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Coverage Table */
.coverage-table-section {
    background: var(--gray-50);
    padding: 80px 0;
}

.table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

.coverage-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.coverage-table thead {
    background: var(--primary-color);
    color: var(--white);
}

.coverage-table th,
.coverage-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.coverage-table th {
    font-weight: 600;
    font-size: 1rem;
}

.coverage-table td {
    font-size: 0.95rem;
}

.coverage-type {
    min-width: 200px;
}

.coverage-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.coverage-header i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.sum-assured {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.premium {
    font-weight: 600;
    color: var(--text-dark);
}

.benefits ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.benefits li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1rem;
}

.benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.coverage-table tbody tr:hover {
    background: var(--background-light);
}

.table-note {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    margin-top: 2rem;
}

.table-note p {
    margin: 0;
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* Benefits Section */
.bima-benefits {
    background: var(--white);
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background: var(--white);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Apply Section */
.apply-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0;
}

.apply-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.apply-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.apply-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.application-steps {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}


.step-number {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    color: #3e4e9c;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-content p {
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

.apply-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-card p {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    width: 16px;
}

/* Director Message Page Styles */
.director-message {
    background: var(--white);
    padding: 80px 0;
}

.director-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.director-photo {
    background: var(--gray-50);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.director-photo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.director-image {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.director-image:hover {
    transform: scale(1.05);
}

.director-image i {
    font-size: 4rem;
    color: var(--white);
}

.director-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.director-role {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1rem;
    display: block;
    margin-bottom: 1rem;
}

.director-contact {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.director-contact a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.director-contact a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.director-text {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.message-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.message-content p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.message-signature {
    background: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    border-left: 4px solid var(--primary-color);
}

.message-signature p {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.message-signature p:last-child {
    margin-bottom: 0;
}

.message-signature strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Vision Section */
.vision-section {
    background: var(--text-dark);
    padding: 80px 0;
}

/* Vision Section Dark Theme */
.vision-section .vision-text h2,
.vision-section .vision-text p,
.vision-section .vision-point h4,
.vision-section .vision-point p,
.vision-section .vision-quote blockquote,
.vision-section .vision-quote cite {
    color: var(--white);
}

.vision-section .vision-point {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vision-section .vision-quote {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.vision-text p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.vision-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vision-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.vision-point:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.vision-point i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    width: 24px;
    text-align: center;
}

.vision-point h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.vision-point p {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.vision-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vision-quote {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    text-align: center;
    position: relative;
    max-width: 400px;
}

.vision-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    color: var(--primary-color);
    font-family: Georgia, serif;
    line-height: 1;
}

.vision-quote blockquote {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.vision-quote cite {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    font-style: normal;
}

/* Responsive Design for Director Message Page */
@media (max-width: 768px) {
    .director-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vision-point {
        padding: 1rem;
    }
    
    .vision-quote {
        padding: 2rem;
        max-width: 100%;
    }
    
    .director-text,
    .director-photo {
        padding: 2rem;
    }
}

/* Responsive Design for Bima Page */
@media (max-width: 768px) {
    .overview-content,
    .apply-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .coverage-table {
        font-size: 0.9rem;
    }

    .coverage-table th,
    .coverage-table td {
        padding: 0.75rem 1rem;
    }

    .application-steps {
        gap: 1.5rem;
    }

    .step {
        gap: 1rem;
    }

    .apply-buttons {
        flex-direction: column;
    }

    .apply-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Gallery Styles */
.gallery {
    background: var(--white);
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .gallery-item img {
        height: 200px;
    }

    .gallery-overlay {
        padding: 1.5rem 1rem 1rem;
    }

    .gallery-overlay h4 {
        font-size: 1.1rem;
    }

    .gallery-filters {
        gap: 0.75rem;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

/* Blog Page Styles */
.blog-hero {
    background: var(--white);
    padding: 80px 0;
    text-align: center;
}

.blog-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.blog-intro p {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Featured Article */
.featured-article {
    background: var(--gray-50);
    padding: 80px 0;
}

.article-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.article-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.blog-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.article-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.article-category {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.article-date {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.article-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.article-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.article-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.article-stats i {
    color: var(--primary-color);
}

/* Blog Categories */
.blog-categories {
    background: var(--white);
    padding: 80px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background: var(--white);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.category-icon i {
    font-size: 2rem;
    color: var(--white);
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.category-card p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-count {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Latest Articles */
.blog-articles {
    background: var(--gray-50);
    padding: 80px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.blog-date {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.read-time {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    flex-wrap: wrap;
    gap: 1rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-avatar i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.author-name {
    color: var(--text-medium);
    font-size: 0.9rem;
    font-weight: 500;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-dark);
}

.read-more i {
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(3px);
}

/* Newsletter Signup */
.newsletter-signup {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
}

.subscribe-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.2);
}

.privacy-note {
    font-size: 0.8rem;
    opacity: 0.8;
    text-align: center;
}

/* Blog Responsive Design */
@media (max-width: 768px) {
    .article-featured {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-intro h2 {
        font-size: 2rem;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .article-stats {
        justify-content: center;
    }
    
    .blog-footer {
        justify-content: center;
        text-align: center;
    }
/* Mahila Swasthya Page Styles */

/* Meaning Section */
.meaning-section {
    background: var(--white);
    padding: 80px 0;
}

.meaning-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.meaning-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.meaning-text .lead {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.word-breakdown {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.word-item {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.word-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    background: var(--white);
}

.word-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.word-item p {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

.meaning-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cultural-icon {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-heavy);
    transition: var(--transition);
}

.cultural-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.cultural-icon i {
    font-size: 5rem;
    color: var(--white);
}

/* Philosophy Section */
.philosophy-section {
    background: var(--gray-50);
    padding: 80px 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.philosophy-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    background: var(--background-light);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.philosophy-card:hover .philosophy-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.philosophy-icon i {
    font-size: 2rem;
    color: var(--white);
}

.philosophy-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.philosophy-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

/* Cultural Section */
.cultural-section {
    background: var(--white);
    padding: 80px 0;
}

.cultural-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cultural-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.cultural-text p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cultural-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cultural-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.cultural-point:hover {
    background: var(--primary-light);
    transform: translateX(5px);
}

.cultural-point i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    width: 24px;
    text-align: center;
}

.cultural-point h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cultural-point p {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

.cultural-visual {
    display: flex;
    justify-content: center;
}

.tradition-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    transition: var(--transition);
}

.tradition-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.cultural-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Impact Vision Section */
.impact-vision {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0;
}

.impact-vision .section-header h2,
.impact-vision .section-header p {
    color: var(--white);
}

.vision-content {
    text-align: center;
}

.vision-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.vision-content > p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.vision-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.vision-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.vision-item i {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.vision-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.vision-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Mahila CTA Section */
.mahila-cta {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 180px;
}

/* Responsive Design for Mahila Swasthya Page */
@media (max-width: 768px) {
    .meaning-content,
    .cultural-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .meaning-text h2,
    .cultural-text h2,
    .vision-content h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .word-breakdown {
        gap: 1.5rem;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cultural-points {
        gap: 1rem;
    }
    
    .cultural-point {
        padding: 1rem;
    }
    
    .vision-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 220px;
    }
    
    .cultural-icon {
        width: 150px;
        height: 150px;
    }
    
    .cultural-icon i {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .meaning-text h2,
    .cultural-text h2,
    .vision-content h2,
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .philosophy-card {
        padding: 2rem;
    }
    
    .vision-item {
        padding: 1.5rem;
    }
    
    .vision-item i {
        font-size: 2.5rem;
    }
    
    .word-item {
        padding: 1.5rem;
    }
    
    .cultural-point {
        padding: 1rem;
    }
}
}