/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Variables */
    --primary-green: #8bc34a;
    --dark-green: #689f38;
    --white: #ffffff;
    --black: #000000;
    --text-dark: #333333;
    --overlay-dark: rgba(0, 0, 0, 0.5);
    
    /* Font Variables */
    --font-primary: 'Poppins', 'Segoe UI', Arial, sans-serif;
    --font-heading: 'Montserrat', 'Arial Black', Arial, sans-serif;
    
    /* Transition */
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Global Image Safety - Prevent Overflow */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   NAVIGATION BAR
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
}

.navbar.scrolled .nav-logo h1 {
    color: var(--primary-green);
}

.navbar.scrolled .nav-tagline {
    color: var(--primary-green);
}

.navbar.scrolled .nav-link {
    color: var(--primary-green);
    text-shadow: none;
}

.navbar.scrolled .nav-link:hover {
    color: var(--dark-green);
}

.navbar.scrolled .mobile-menu-toggle span {
    background: var(--primary-green);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Section */
.nav-logo {
    margin-right: auto;
    padding-right: 2rem;
    display: flex;
    align-items: center;
}

.nav-logo .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-primary {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
}

.logo-secondary {
    color: #ff9800;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
}

/* When navbar scrolls, change primary text color */
.navbar.scrolled .logo-primary {
    color: #333;
}

.nav-logo h1 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 0;
    font-family: var(--font-heading);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

.nav-tagline {
    color: var(--white);
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-top: -2px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin-left: auto;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-green);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile browsers */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px; /* Account for fixed navbar */
}

/* Hero Image Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    animation: zoomIn 20s ease-in-out infinite;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Zoom Animation for Background Images */
@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    z-index: 3;
    max-width: 1000px;
    width: 100%;
    padding: 2rem 2rem 6rem;
    margin: auto;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    font-family: var(--font-heading);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-transform: capitalize;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 195, 74, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 4;
    padding: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: var(--white);
    width: 40px;
    border-radius: 10px;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet */
@media (max-width: 968px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        height: calc(100vh - 80px);
        padding: 2rem;
        gap: 1.5rem;
        transition: var(--transition);
        align-items: flex-start;
        overflow-y: auto;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 350px;
        padding: 1rem 2rem;
    }
    
    .slider-dots {
        bottom: 30px;
        gap: 12px;
    }
}

/* Mobile - Large (Portrait) */
@media (max-width: 640px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo h1 {
        font-size: 1.1rem;
        letter-spacing: 3px;
    }
    
    .nav-tagline {
        font-size: 0.5rem;
        letter-spacing: 1.5px;
    }
    
    .hero-content {
        padding: 6rem 1.5rem 4rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 0.9rem 1.8rem;
        max-width: 300px;
    }
    
    .slider-dots {
        bottom: 20px;
        gap: 10px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 30px;
    }
}

/* Mobile - Small */
@media (max-width: 480px) {
    .navbar {
        padding: 0.8rem 0;
    }
    
    .nav-logo h1 {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .nav-tagline {
        font-size: 0.45rem;
        letter-spacing: 1px;
    }
    
    .mobile-menu-toggle span {
        width: 22px;
        height: 2.5px;
    }
    
    .hero-content {
        padding: 5rem 1rem 3rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .btn {
        font-size: 0.85rem;
        padding: 0.8rem 1.5rem;
        max-width: 280px;
    }
    
    .slider-dots {
        bottom: 15px;
        gap: 8px;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
    
    .dot.active {
        width: 24px;
    }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
    .nav-logo h1 {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }
    
    .nav-tagline {
        font-size: 0.4rem;
    }
    
    .hero-title {
        font-size: 1.3rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .btn {
        font-size: 0.8rem;
        padding: 0.75rem 1.3rem;
    }
}

/* Landscape Mode Fix */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        height: auto;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 7rem 2rem 5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .slider-dots {
        position: relative;
        bottom: auto;
        margin-top: 2rem;
    }
}

/* ===================================
   ABOUT US SECTION
   =================================== */
.about-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f1f8e9 100%);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 6rem;
    align-items: center;
}

/* Left Side - Overlapping Images */
.about-images-wrapper {
    position: relative;
    height: 650px;
    width: 100%;
}

/* Realistic Floating Leaves */
.floating-leaf {
    position: absolute;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
    animation: leafFloat 20s infinite ease-in-out;
    z-index: 10;
}

.leaf-1 {
    top: 5%;
    left: -5%;
    animation-duration: 18s;
    animation-delay: 0s;
}

.leaf-2 {
    top: 40%;
    right: -8%;
    animation-duration: 22s;
    animation-delay: 3s;
}

.leaf-3 {
    bottom: 15%;
    left: 10%;
    animation-duration: 20s;
    animation-delay: 6s;
}

@keyframes leafFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(15px, -25px) rotate(15deg);
    }
    50% {
        transform: translate(-10px, -40px) rotate(-10deg);
    }
    75% {
        transform: translate(20px, -25px) rotate(20deg);
    }
}

/* Images Stack - Polaroid Style */
.images-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-box {
    position: absolute;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.image-box:hover {
    transform: scale(1.05) translateY(-10px);
    z-index: 10 !important;
}

/* Polaroid Frame */
.polaroid-frame {
    background: #ffffff;
    padding: 15px 15px 45px 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    border-radius: 3px;
    position: relative;
    transition: all 0.4s ease;
}

.polaroid-frame::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45px;
    background: linear-gradient(to bottom, #ffffff, #f5f5f5);
}

.polaroid-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 2px;
}

.image-box:hover .polaroid-frame {
    box-shadow: 0 20px 60px rgba(139, 195, 74, 0.3);
}

/* Main Center Image */
.image-main {
    width: 420px;
    height: 460px;
    top: 80px;
    left: 50px;
    z-index: 4;
    transform: rotate(-1deg);
}

.image-main .polaroid-frame {
    height: 100%;
}

.image-main .polaroid-frame img {
    height: calc(100% - 60px);
}

/* floatMain keyframes removed to keep images static; leaves still animate */

/* Top Right Rotated Image */
.image-top-right {
    width: 280px;
    height: 320px;
    top: 20px;
    right: 20px;
    z-index: 5;
    transform: rotate(3deg);
}

.image-top-right .polaroid-frame {
    height: 100%;
}

.image-top-right .polaroid-frame img {
    height: calc(100% - 60px);
}

/* floatTopRight keyframes removed - image kept static */

/* Bottom Left Rotated Image */
.image-bottom-left {
    width: 300px;
    height: 340px;
    bottom: 40px;
    left: 120px;
    z-index: 3;
    transform: rotate(2deg);
}

.image-bottom-left .polaroid-frame {
    height: 100%;
}

.image-bottom-left .polaroid-frame img {
    height: calc(100% - 60px);
}

/* floatBottomLeft keyframes removed - image kept static */

/* Top Left Small Image */
.image-top-left {
    width: 240px;
    height: 280px;
    top: 0;
    left: 0;
    z-index: 2;
    transform: rotate(-3deg);
}

.image-top-left .polaroid-frame {
    height: 100%;
}

.image-top-left .polaroid-frame img {
    height: calc(100% - 60px);
}

/* floatTopLeft keyframes removed - image kept static */

/* Decorative Green Circle */
.green-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 20%;
    right: 5%;
    z-index: 1;
    animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

/* Right Side - Content */
.about-content {
    padding-left: 2rem;
}

.section-label {
    display: inline-block;
    color: var(--primary-green);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 45px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--dark-green));
    border-radius: 2px;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.section-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.btn-learn-more {
    padding: 1.1rem 3.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(139, 195, 74, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-learn-more::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-learn-more:hover::before {
    width: 300px;
    height: 300px;
}

.btn-learn-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 195, 74, 0.45);
}

/* ===================================
   STATS SECTION
   =================================== */
.stats-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 195, 74, 0.22) 0%, transparent 50%);
    pointer-events: none;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(46, 125, 50, 0.3), transparent);
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: transparent;
    border: none;
    padding: 0;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
}

.stat-icon {
    width: 85px;
    height: 85px;
    min-width: 85px;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(46, 125, 50, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    color: #2e7d32;
}

.stat-card:hover .stat-icon {
    background: rgba(46, 125, 50, 0.15);
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.2);
}

.stat-icon svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.4rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #1b5e20;
    font-family: var(--font-heading);
    margin: 0;
    display: inline-block;
    letter-spacing: -1px;
    line-height: 1;
}

.stat-plus,
.stat-decimal,
.stat-unit {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2e7d32;
    margin-left: 0.2rem;
}

.stat-label {
    font-size: 1.05rem;
    color: #2e7d32;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ===================================
   RESPONSIVE - ABOUT & STATS
   =================================== */
@media (max-width: 968px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-images-wrapper {
        height: 500px;
    }
    
    .image-main {
        width: 340px;
        height: 380px;
        left: 30px;
    }
    
    .image-top-right {
        width: 220px;
        height: 260px;
        right: 10px;
    }
    
    .image-bottom-left {
        width: 240px;
        height: 280px;
        left: 80px;
    }
    
    .image-top-left {
        width: 200px;
        height: 240px;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-container {
        padding: 0 1.5rem;
    }
    
    .about-images-wrapper {
        height: 450px;
    }
    
    .image-main {
        width: 260px;
        height: 300px;
        left: 20px;
        top: 60px;
    }
    
    .image-top-right {
        width: 180px;
        height: 220px;
        right: 5px;
        top: 10px;
    }
    
    .image-bottom-left {
        width: 200px;
        height: 240px;
        left: 50px;
        bottom: 20px;
    }
    
    .image-top-left {
        width: 160px;
        height: 200px;
        left: 5px;
        top: 0;
    }
    
    .polaroid-frame {
        padding: 10px 10px 30px 10px;
    }
    
    .polaroid-frame::after {
        height: 30px;
    }
    
    .floating-leaf {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .stats-section {
        padding: 40px 0;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .stat-card {
        justify-content: center;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
    
    .stat-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-plus,
    .stat-unit,
    .stat-decimal {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 968px) {
    .stats-section {
        padding: 45px 0;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 2.5rem;
    }
}

/* ===================================
   SUSTAINABLE SOLUTIONS SECTION
   =================================== */
.sustainable-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafbfd 0%, #f0f4f8 50%, #e8eef5 100%);
    position: relative;
    overflow: hidden;
}

/* Double crossed waves covering entire section */
.sustainable-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Wave 1 - Top to bottom */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath fill='rgba(139, 195, 74, 0.10)' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E"),
        /* Wave 2 - Crossing diagonally */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath fill='rgba(104, 159, 56, 0.08)' d='M0,192L48,197.3C96,203,192,213,288,202.7C384,192,480,160,576,154.7C672,149,768,171,864,181.3C960,192,1056,192,1152,170.7C1248,149,1344,107,1392,85.3L1440,64L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E"),
        /* Wave 3 - Middle horizontal flow */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath fill='rgba(139, 195, 74, 0.07)' d='M0,64L48,85.3C96,107,192,149,288,154.7C384,160,480,128,576,128C672,128,768,160,864,165.3C960,171,1056,149,1152,128C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E"),
        /* Wave 4 - Counter diagonal */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath fill='rgba(104, 159, 56, 0.06)' d='M0,32L48,53.3C96,75,192,117,288,128C384,139,480,117,576,117.3C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: 
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%;
    background-position: 
        bottom,
        top,
        center,
        top;
    background-repeat: no-repeat;
    opacity: 1;
    animation: gentle-waves 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gentle-waves {
    0%, 100% { 
        transform: translateX(0) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translateX(20px) scale(1.02);
        opacity: 1;
    }
}

/* Soft stars and nature elements */
.sustainable-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        /* Soft stars */
        radial-gradient(circle, rgba(139, 195, 74, 0.18) 1px, transparent 1px),
        radial-gradient(circle, rgba(104, 159, 56, 0.15) 1px, transparent 1px),
        radial-gradient(circle, rgba(139, 195, 74, 0.22) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(104, 159, 56, 0.12) 1px, transparent 1px),
        /* Floating leaves/particles */
        radial-gradient(ellipse 3px 5px, rgba(139, 195, 74, 0.10) 0%, transparent 70%),
        radial-gradient(ellipse 4px 6px, rgba(104, 159, 56, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 2px 4px, rgba(139, 195, 74, 0.12) 0%, transparent 70%);
    background-size: 
        800px 800px,
        600px 600px,
        900px 900px,
        700px 700px,
        400px 400px,
        500px 500px,
        350px 350px;
    background-position: 
        10% 20%,
        80% 30%,
        40% 60%,
        70% 80%,
        15% 40%,
        85% 70%,
        50% 15%;
    animation: float-nature 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float-nature {
    0%, 100% { 
        opacity: 0.5;
        transform: translateY(0);
    }
    50% { 
        opacity: 0.8;
        transform: translateY(-15px);
    }
}

.sustainable-section .network-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 10px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
    transform: translate(-50%, -50%);
    opacity: 0.6;
}

@keyframes twinkle-star {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

@keyframes pulse-star-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
}

/* Constellation Lines */
.sustainable-section .network-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.sustainable-section .svg-line {
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 1;
    fill: none;
    filter: drop-shadow(0 0 6px rgba(139, 195, 74, 0.5));
    animation: constellation-glow 5s ease-in-out infinite;
}

@keyframes constellation-glow {
    0%, 100% { 
        opacity: 0.3; 
        stroke: rgba(255, 255, 255, 0.3);
        filter: drop-shadow(0 0 6px rgba(139, 195, 74, 0.5));
    }
    50% { 
        opacity: 0.8; 
        stroke: rgba(139, 195, 74, 0.6);
        filter: drop-shadow(0 0 12px rgba(139, 195, 74, 0.8));
    }
}

.sustainable-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.sustainable-content {
    color: #333333;
}

.sustainable-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
}

.sustainable-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    color: #2d5f3f;
    margin-bottom: 3rem;
    font-family: var(--font-heading);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.sustainable-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(139, 195, 74, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-green);
    border: 1.5px solid rgba(139, 195, 74, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(139, 195, 74, 0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.feature-item:hover .feature-icon::before {
    left: 100%;
}

.feature-item:hover .feature-icon {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.feature-text {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
}

.sustainable-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.sustainable-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 195, 74, 0.15) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.sustainable-image::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        rgba(139, 195, 74, 0.1) 90deg,
        transparent 180deg,
        rgba(139, 195, 74, 0.1) 270deg,
        transparent 360deg
    );
    animation: rotate 15s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.sustainable-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 968px) {
    .sustainable-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .sustainable-title {
        font-size: 2.2rem;
    }
    
    .sustainable-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .sustainable-section {
        padding: 60px 0;
    }
    
    .sustainable-container {
        padding: 0 1.5rem;
    }
    
    .sustainable-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .feature-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .feature-text {
        font-size: 0.95rem;
    }
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-bubble 20s ease-in-out infinite;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(104, 159, 56, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-bubble 25s ease-in-out infinite reverse;
}

@keyframes float-bubble {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, 30px) scale(1.1);
    }
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
}

/* Services Header */
.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.services-title {
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 6px;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.services-title .title-background {
    position: relative;
    display: inline-block;
    color: #1a1a1a;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.services-title .title-background::before {
    display: none;
}

.services-title .title-background::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.services-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* Services Slider Wrapper */
.services-slider-wrapper {
    position: relative;
    padding: 0 80px;
}

.services-slider {
    overflow: hidden;
    border-radius: 10px;
}

.services-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Service Card */
.service-card {
    min-width: calc((100% - 60px) / 3);
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(139, 195, 74, 0.2);
}

/* Service Image */
.service-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f5f5f5;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

/* Service Overlay */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-heading);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-number {
    transform: scale(1);
}

/* Service Content */
.service-content {
    padding: 30px 25px;
    text-align: center;
}

.service-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    font-family: var(--font-heading);
}

.service-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    font-weight: 400;
}

/* Navigation Buttons */
.services-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: #1a1a1a;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.services-nav-btn:hover {
    background: var(--primary-green);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 25px rgba(139, 195, 74, 0.4);
}

.services-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* ===================================
   OUR PROJECTS SECTION
   =================================== */
.projects-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

/* Simple line wave background */
.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='none' stroke='rgba(33, 150, 243, 0.15)' stroke-width='2' d='M0,160 Q360,120 720,160 T1440,160'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='none' stroke='rgba(139, 195, 74, 0.12)' stroke-width='2' d='M0,200 Q360,240 720,200 T1440,200'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='none' stroke='rgba(33, 150, 243, 0.1)' stroke-width='1.5' d='M0,100 Q360,140 720,100 T1440,100'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='none' stroke='rgba(139, 195, 74, 0.08)' stroke-width='1.5' d='M0,80 Q360,50 720,80 T1440,80'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='none' stroke='rgba(33, 150, 243, 0.12)' stroke-width='2' d='M0,250 Q360,210 720,250 T1440,250'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='none' stroke='rgba(139, 195, 74, 0.1)' stroke-width='1.5' d='M0,180 Q360,220 720,180 T1440,180'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='none' stroke='rgba(33, 150, 243, 0.08)' stroke-width='1' d='M0,130 Q360,160 720,130 T1440,130'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='none' stroke='rgba(139, 195, 74, 0.06)' stroke-width='1' d='M0,270 Q360,240 720,270 T1440,270'/%3E%3C/svg%3E");
    background-size: 
        100% auto,
        100% auto,
        100% auto,
        100% auto,
        100% auto,
        100% auto,
        100% auto,
        100% auto;
    background-position: 
        center 30%,
        center 60%,
        center 80%,
        center 15%,
        center 70%,
        center 40%,
        center 25%,
        center 85%;
    background-repeat: repeat-x;
    opacity: 1;
    animation: gentle-waves-projects 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gentle-waves-projects {
    0%, 100% { 
        transform: translateX(0);
        opacity: 0.7;
    }
    50% { 
        transform: translateX(-30px);
        opacity: 1;
    }
}

.projects-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
}

/* Section Label */
.projects-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #2196f3;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-align: center;
}

/* Section Title */
.projects-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

/* Projects Content */
.projects-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* India Map */
.india-map {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background: transparent;
    border-radius: 15px;
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
    opacity: 1;
    filter: none;
}

/* Map Markers */
.map-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 3px solid #2196f3;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(33, 150, 243, 0.3);
    animation: pulse-marker 2s ease-in-out infinite;
}

.map-marker:hover {
    transform: scale(1.3);
    box-shadow: 0 4px 20px rgba(33, 150, 243, 0.6);
    z-index: 10;
}

@keyframes pulse-marker {
    0%, 100% {
        box-shadow: 0 2px 10px rgba(33, 150, 243, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(33, 150, 243, 0.6), 0 0 0 8px rgba(33, 150, 243, 0.1);
    }
}

/* Projects Stats */
.projects-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 5px;
}

/* State Project */
.state-project {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.state-project:hover {
    background: #ffffff;
    border-color: #d1d5db;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

/* State Color Indicator */
.state-color {
    width: 5px;
    min-width: 5px;
    height: 100%;
    min-height: 70px;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* State Info */
.state-info {
    flex: 1;
}

.state-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.3px;
}

.state-capacity {
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 4px;
    line-height: 1.5;
}

.state-implementation {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

/* View Projects Button */
.view-projects-btn {
    grid-column: 1 / -1;
    padding: 16px 50px;
    background: #8bc34a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-projects-btn:hover {
    background: #7cb342;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 195, 74, 0.3);
}

/* ===================================
   RESPONSIVE - SERVICES
   =================================== */
@media (max-width: 968px) {
    .services-slider-wrapper {
        padding: 0 60px;
    }

    .service-card {
        min-width: calc((100% - 30px) / 2);
    }

    .services-title {
        font-size: 2.5rem;
    }

    .services-nav-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 640px) {
    .services-section {
        padding: 60px 0;
    }

    .services-container {
        padding: 0 1.5rem;
    }

    .services-header {
        margin-bottom: 40px;
    }

    .services-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .services-title .title-background {
        padding: 15px 30px;
        border-radius: 15px;
    }

    .services-subtitle {
        font-size: 0.9rem;
    }

    .services-slider-wrapper {
        padding: 0 50px;
    }

    .service-card {
        min-width: 100%;
    }

    .service-image {
        height: 220px;
    }

    .service-number {
        font-size: 3rem;
    }

    .service-content {
        padding: 25px 20px;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-description {
        font-size: 0.85rem;
    }

    .services-nav-btn {
        width: 40px;
        height: 40px;
    }

    .services-nav-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* ===================================
   RESPONSIVE - PROJECTS
   =================================== */
@media (max-width: 968px) {
    .projects-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .india-map {
        order: 2;
    }
    
    .projects-stats {
        order: 1;
    }
    
    .projects-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .projects-section {
        padding: 60px 0;
    }
    
    .projects-container {
        padding: 0 1.5rem;
    }
    
    .projects-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .projects-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .state-project {
        padding: 15px;
    }
    
    .state-name {
        font-size: 1rem;
    }
    
    .state-capacity {
        font-size: 0.85rem;
    }
    
    .state-implementation {
        font-size: 0.8rem;
    }
    
    .view-projects-btn {
        padding: 14px 40px;
        font-size: 0.9rem;
    }
    
    .map-marker {
        width: 15px;
        height: 15px;
        border-width: 2px;
    }
}

/* ===================================
   LIFE AT COMPANY SECTION
   =================================== */
.life-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 50%, #f5f9f7 100%);
    position: relative;
    overflow: hidden;
}

.life-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 195, 74, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(165, 214, 167, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.life-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.life-header {
    text-align: center;
    margin-bottom: 60px;
}

.life-subtitle {
    color: #66bb6a;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.life-title {
    color: #2d5f3f;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.life-description {
    color: #5a6c5b;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.life-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 50px;
}

.life-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 195, 74, 0.2);
    border-radius: 12px;
    padding: 35px 30px;
    transition: all 0.3s ease;
}

.life-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 195, 74, 0.15);
}

.life-icon {
    width: 70px;
    height: 70px;
    background: rgba(200, 230, 201, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #43a047;
}

.life-card-title {
    color: #2d5f3f;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.life-card-text {
    color: #5a6c5b;
    font-size: 1rem;
    line-height: 1.7;
}

.life-cta {
    text-align: center;
}

.discover-btn {
    padding: 15px 45px;
    background: transparent;
    color: #2d5f3f;
    border: 2px solid #66bb6a;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.discover-btn:hover {
    background: #66bb6a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 187, 106, 0.3);
}

/* Responsive */
@media (max-width: 968px) {
    .life-section {
        padding: 70px 0;
    }

    .life-title {
        font-size: 2.2rem;
    }

    .life-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .life-title {
        font-size: 1.8rem;
    }

    .life-description {
        font-size: 1rem;
    }

    .life-card {
        padding: 25px 20px;
    }
}

/* ===================================
   FOOTER SECTION
   =================================== */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='none' stroke='rgba(139, 195, 74, 0.1)' stroke-width='2' d='M0,160 Q360,120 720,160 T1440,160'/%3E%3C/svg%3E");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: repeat-x;
    opacity: 0.5;
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
}

/* Footer Top */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
}

/* Footer Column */
.footer-column {
    display: flex;
    flex-direction: column;
}

/* Footer Logo */
.footer-logo h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 2rem;
}

/* Social Media Links */
.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(139, 195, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: var(--primary-green);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 195, 74, 0.3);
}

/* Footer Heading */
.footer-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary-green);
}

.footer-contact a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-green);
}

/* Footer Bottom */
.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    margin-bottom: 30px;
}

.footer-bottom {
    padding-bottom: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #999999;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-links a {
    color: #999999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-green);
}

.footer-bottom-links .separator {
    color: #555555;
}

/* Footer Credit - Nexal Solution */
.footer-credit {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.onsunpay-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.nexal-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 8px;
}

.nexal-link:hover {
    background: rgba(139, 195, 74, 0.1);
    transform: translateY(-2px);
}

.nexal-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.9);
    transition: all 0.3s ease;
}

.nexal-link:hover .nexal-logo {
    filter: brightness(1);
}

.nexal-text {
    font-size: 0.95rem;
    color: #999999;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nexal-link:hover .nexal-text {
    color: var(--primary-green);
}

/* ===================================
   RESPONSIVE - FOOTER
   =================================== */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-container {
        padding: 0 2rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-credit {
        flex-direction: column;
        gap: 15px;
    }
    
    .onsunpay-logo {
        height: 40px;
    }
    
    .nexal-link {
        flex-direction: column;
        gap: 8px;
    }
    
    .nexal-logo {
        height: 35px;
    }
}

@media (max-width: 640px) {
    .footer-logo h2 {
        font-size: 1.5rem;
    }
    
    .footer-heading {
        font-size: 1.1rem;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* ===================================
   PM SURYA GHAR YOJANA SECTION
   =================================== */
.pm-yojana-section {
    padding: 80px 0;
    background: 
        radial-gradient(circle, rgba(139, 195, 74, 0.12) 2px, transparent 2px),
        linear-gradient(135deg, #fafbfd 0%, #f0f4f8 50%, #e8eef5 100%);
    background-size: 40px 40px, 100% 100%;
    background-position: 0 0, 0 0;
    position: relative;
    overflow: hidden;
}

.pm-yojana-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(165, 214, 167, 0.22) 0%, transparent 50%),
        radial-gradient(ellipse at 10% 70%, rgba(139, 195, 74, 0.15) 0%, transparent 45%),
        radial-gradient(ellipse at 30% 50%, rgba(200, 230, 201, 0.12) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.pm-yojana-section::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 3%;
    width: 450px;
    height: 450px;
    background: 
        radial-gradient(circle at 30% 30%, transparent 30%, rgba(129, 199, 132, 0.25) 30%, rgba(129, 199, 132, 0.25) 31%, transparent 31%),
        radial-gradient(circle at 30% 30%, transparent 45%, rgba(165, 214, 167, 0.22) 45%, rgba(165, 214, 167, 0.22) 46%, transparent 46%),
        radial-gradient(circle at 30% 30%, transparent 60%, rgba(200, 230, 201, 0.18) 60%, rgba(200, 230, 201, 0.18) 61%, transparent 61%),
        radial-gradient(circle at 30% 30%, transparent 75%, rgba(232, 245, 233, 0.15) 75%, rgba(232, 245, 233, 0.15) 76%, transparent 76%),
        radial-gradient(circle at 30% 30%, transparent 85%, rgba(139, 195, 74, 0.08) 85%, rgba(139, 195, 74, 0.08) 86%, transparent 86%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: pulse-soft 6s ease-in-out infinite;
}

@keyframes pulse-soft {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05) rotate(5deg);
        opacity: 1;
    }
}

.pm-yojana-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    position: relative;
    z-index: 1;
}

.pm-yojana-container::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: 
        radial-gradient(circle, rgba(129, 199, 132, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: float-gentle 8s ease-in-out infinite;
}

.pm-yojana-container::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: 
        radial-gradient(circle, rgba(165, 214, 167, 0.18) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: float-gentle 10s ease-in-out infinite reverse;
}

@keyframes float-gentle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-15px, -15px) scale(1.05);
        opacity: 0.8;
    }
}

/* Subsidy Pricing Table */
.subsidy-table-wrapper {
    background: transparent;
    border-radius: 18px;
    padding: 60px;
    position: relative;
}

.subsidy-table-wrapper::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -120px;
    width: 350px;
    height: 350px;
    background: 
        radial-gradient(circle at 50% 50%, transparent 35%, rgba(102, 187, 106, 0.15) 35%, rgba(102, 187, 106, 0.15) 36%, transparent 36%),
        radial-gradient(circle at 50% 50%, transparent 50%, rgba(129, 199, 132, 0.12) 50%, rgba(129, 199, 132, 0.12) 51%, transparent 51%),
        radial-gradient(circle at 50% 50%, transparent 65%, rgba(165, 214, 167, 0.10) 65%, rgba(165, 214, 167, 0.10) 66%, transparent 66%),
        radial-gradient(circle at 50% 50%, transparent 80%, rgba(200, 230, 201, 0.08) 80%, rgba(200, 230, 201, 0.08) 81%, transparent 81%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: pulse-soft 7s ease-in-out infinite;
}

.subsidy-table-wrapper::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -80px;
    width: 280px;
    height: 280px;
    background: 
        radial-gradient(circle, rgba(139, 195, 74, 0.18) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: float-gentle 9s ease-in-out infinite;
}

.table-heading {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2e7d32 0%, #43a047 50%, #66bb6a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 50px;
    text-align: center;
    font-family: 'Montserrat', var(--font-heading), sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(46, 125, 50, 0.15);
    position: relative;
    padding-bottom: 20px;
}

.table-heading::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: 
        radial-gradient(circle, rgba(102, 187, 106, 0.20) 0%, rgba(139, 195, 74, 0.12) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: float-gentle 11s ease-in-out infinite;
}

.table-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #66bb6a, transparent);
    border-radius: 2px;
}

.yojana-description {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #37474f;
    max-width: 800px;
    margin: 0 auto 35px;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.pricing-table-container {
    overflow-x: auto;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-family: 'Poppins', sans-serif;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(46, 125, 50, 0.08),
        0 2px 8px rgba(46, 125, 50, 0.04);
}

/* Table Header with Gradient */
.pricing-table thead tr {
    background: linear-gradient(135deg, #a5d6a7 0%, #81c784 50%, #66bb6a 100%);
    box-shadow: 0 2px 10px rgba(102, 187, 106, 0.15);
}

.pricing-table th {
    padding: 0;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing-table th:first-child {
    background: linear-gradient(135deg, #388e3c 0%, #2e7d32 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 28px 22px;
    text-align: left;
    border-top-left-radius: 16px;
}

.pricing-table th:last-child {
    border-right: none;
}

.pricing-table th.featured {
    position: relative;
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.25);
}

.plan-header {
    padding: 28px 22px;
}

.plan-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.plan-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
}

/* Table Body */
.pricing-table tbody tr {
    border-bottom: 1px solid rgba(200, 230, 201, 0.3);
    transition: all 0.3s ease;
}

.pricing-table tbody tr:hover {
    background: rgba(232, 245, 233, 0.5);
    transform: translateY(-1px);
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table td {
    padding: 24px 22px;
    font-size: 1.08rem;
    color: #37474f;
    text-align: center;
    border-right: 1px solid rgba(200, 230, 201, 0.3);
}

.pricing-table td:last-child {
    border-right: none;
}

.pricing-table td.feature-name {
    text-align: left;
    font-weight: 600;
    color: #2e7d32;
    background: rgba(232, 245, 233, 0.3);
    padding-left: 28px;
    font-size: 1.06rem;
}

.pricing-table td.featured-col {
    background: linear-gradient(135deg, rgba(165, 214, 167, 0.25) 0%, rgba(129, 199, 132, 0.15) 100%);
    font-weight: 600;
    color: #2e7d32;
}

.pricing-table tbody tr:last-child td {
    padding-bottom: 24px;
}

/* Checkmarks and Crosses */
.check {
    color: #48bb78;
    font-size: 1.4rem;
    font-weight: bold;
    display: inline-block;
    margin-right: 5px;
}

.cross {
    color: #f56565;
    font-size: 1.4rem;
    font-weight: bold;
    display: inline-block;
}

/* Table Footer */
.pricing-table tfoot td {
    padding: 18px 15px;
    border-top: 2px solid #e8ecf1;
    background: #f7fafc;
}

.pricing-table tfoot td:first-child {
    background: transparent;
    border: none;
}

.pricing-table tfoot td.featured-col {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(67, 160, 71, 0.10) 100%);
}

.pricing-table tfoot tr td:last-child {
    border-bottom-right-radius: 12px;
}

/* CTA Buttons */
.cta-btn {
    background: #2d3748;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.cta-btn:hover {
    background: #1a202c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 55, 72, 0.3);
}

.cta-btn.featured-btn {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    padding: 11px 24px;
    font-size: 0.85rem;
}

.cta-btn.featured-btn:hover {
    background: linear-gradient(135deg, #357abd 0%, #2868a8 100%);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.subsidy-table td strong {
    color: #1a1a1a;
    font-weight: 800;
    font-size: 1.15rem;
}

.table-footnote {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #718096;
    text-align: center;
    font-style: italic;
}

/* ===================================
   FLOATING ACTION BUTTONS
   =================================== */

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-10px);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #1a1a1a;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #1a1a1a;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8BC34A 0%, #689F38 100%);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(139, 195, 74, 0.4);
}

/* ===================================
   RESPONSIVE - PM YOJANA & FLOATING BUTTONS
   =================================== */
@media (max-width: 1024px) {
    .table-heading {
        font-size: 1.8rem;
    }
    
    .subsidy-table-wrapper {
        padding: 40px;
    }
    
    .pm-yojana-section::before {
        width: 350px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .pm-yojana-section {
        padding: 50px 0;
    }
    
    .pm-yojana-container {
        padding: 0 1rem;
    }
    
    .subsidy-table-wrapper {
        padding: 25px 12px;
        border-radius: 10px;
    }
    
    .table-heading {
        font-size: 1.2rem;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }
    
    /* Responsive Pricing Table */
    .pricing-table-container {
        border-radius: 10px;
    }
    
    .pricing-table {
        font-size: 0.85rem;
    }
    
    .pricing-table th:first-child {
        font-size: 0.7rem;
        padding: 15px 8px;
    }
    
    .plan-header {
        padding: 15px 8px;
    }
    
    .plan-price {
        font-size: 1.1rem;
    }
    
    .pricing-table td {
        padding: 12px 8px;
        font-size: 0.8rem;
    }
    
    .pricing-table td.feature-name {
        font-size: 0.75rem;
        padding-left: 8px;
    }
    
    .cta-btn {
        padding: 8px 12px;
        font-size: 0.7rem;
    }
    
    .cta-btn.featured-btn {
        padding: 9px 14px;
        font-size: 0.75rem;
    }
    
    /* Floating Buttons Mobile */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .scroll-top-btn {
        bottom: 95px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 640px) {
    .pm-yojana-section {
        padding: 40px 0;
    }
    
    .table-heading {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }
    
    .subsidy-table-wrapper {
        padding: 20px 10px;
    }
    
    .pricing-table th:first-child {
        padding: 12px 6px;
        font-size: 0.65rem;
    }
    
    .plan-header {
        padding: 12px 6px;
    }
    
    .plan-price {
        font-size: 1rem;
    }
    
    .pricing-table td {
        padding: 10px 6px;
        font-size: 0.75rem;
    }
    
    .cta-btn {
        padding: 7px 10px;
        font-size: 0.65rem;
    }
}

/* ===================================
   HIGH-DPI & ZOOM COMPATIBILITY
   =================================== */
@media screen and (min-resolution: 1.25dppx) {
    /* Windows 125% scaling and above */
    .hero-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    
    .hero-content {
        padding-top: 1rem;
        padding-bottom: 5rem;
    }
    
    .slider-dots {
        bottom: 3rem;
    }
}

@media screen and (min-resolution: 1.5dppx) {
    /* Windows 150% scaling and above */
    .hero-section {
        padding-top: 120px;
        padding-bottom: 120px;
    }
    
    .hero-content {
        padding-bottom: 6rem;
    }
}

/* Ensure proper spacing on all OS */
@supports (min-height: 100dvh) {
    .hero-section {
        min-height: 100dvh;
    }
}

/* ===================================
   EXTRA SMALL DEVICES (320px)
   =================================== */
@media (max-width: 320px) {
    .nav-container,
    .about-container,
    .stats-container,
    .services-container,
    .footer-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-title {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .btn {
        font-size: 0.8rem;
        padding: 0.7rem 1.2rem;
        max-width: 100%;
    }
    
    .service-card {
        min-width: 100%;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}
