/* ── RESET ─────────────────────────────────────────────── */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; font-size: 16px; }

        :root {
            --off-white: #f4f4f4;
            --text-dark: #333;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--off-white);
            color: var(--text-dark);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* NAV */
        nav {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            padding: 2rem 4rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 10;
            background: transparent !important;
        }

        .logo {
            display: inline-flex;
            align-items: center;
            padding: 0;
            border-radius: 0;
            background: transparent !important; 
            backdrop-filter: none !important;
            -webkit-backdrop-filter: none !important;
            border: none !important; 
            transition: all 0.3s ease;
        }

        .logo img {
            width: 360px; 
            height: auto;
            display: block;
            mix-blend-mode: multiply; 
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 1rem;
            margin-left: auto; 
        }

        .nav-links a {
            padding: 0.5rem 1.0rem;
            border-radius: 50px;
            text-decoration: none;
            color: #fff;
            font-weight: 500;
            font-size: 0.95rem;
            background: rgba(255,255,255,0.18);
            border: 1px solid rgba(255,255,255,0.25);
            backdrop-filter: blur(10px);
            transition: .4s ease;
        }

        .nav-links a:hover {
            background: rgba(255,255,255,0.35);
        }

        .nav-item {
            position: relative;
        }

        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        /* DROPDOWN */
        .dropdown {
            position: absolute;
            top: 150%;
            left: 40%;
            transform: translateX(-50%) translateY(10px);
            background: rgba(10, 35, 5, 0.95);
            backdrop-filter: blur(15px);
            border-radius: 15px;
            padding: 1rem;
            min-width: 220px;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s ease;
            z-index: 1000;
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-direction: column; 
            gap: 8px; 
        }

        .dropdown a {
            background: transparent !important;
            border: none !important;
            backdrop-filter: none !important;
            padding: 0.6rem 1rem !important;
            border-radius: 8px !important;
            display: block !important;
            width: 100%;
            text-align: left;
            font-size: 0.9rem;
            white-space: nowrap;
        }

        .dropdown a:hover {
            background: rgba(255, 255, 255, 0.1) !important;
            color: #a8e08a !important; 
        }

        /* ── HERO SECTION (NEW) ─────────────────────────────────────────────── */
        .hero {
            position: relative;
            width: 100%;
            min-height: 100vh;
            display: flex;
            align-items: center;
            /* Darker gradient to match the second image and make buttons pop */
            background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 45%, rgba(0, 0, 0, 0.2) 100%), 
                        url('https://images.unsplash.com/photo-1466611653911-95081537e5b7?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
            padding: 0 4rem; 
        }

        .hero-content {
            max-width: 650px; /* Constrained text width like image 2 */
            color: #ffffff;
            margin-top: 8rem; 
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 4.6rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1rem;
            letter-spacing: -1.5px;
        }

        .overline {
            font-size: 0.55rem;
            font-weight: 600;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0.5rem;
        }

        .hero-content h3 {
            font-size: 1.45rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: #ffffff;
            letter-spacing: 0.5px;
        }

        .hero-content p {
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 300;
        }

        .hero-content p strong {
            color: #ffffff;
            font-weight: 600;
        }

        /* Hero Buttons */
        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2.5rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.85rem 2.2rem;
            border-radius: 50px;
            font-weight: 500;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-primary {
            background: #2b9330;
            color: #ffffff;
            border: 1px solid #2b9330;
        }

        .btn-primary:hover {
            background: #237a27;
            border-color: #237a27;
        }

        .btn-outline {
            background: rgba(255, 255, 255, 0.05);
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(5px);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.8);
        }
        /* Default state (VISIBLE) */
.fade-up {
    opacity: 1;
    transform: translateY(0);
}

/* Animated state */
.fade-up.show {
    animation: fadeUpSmooth 1s ease forwards;
}

/* Scroll Animation */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* Keyframe */
@keyframes fadeUpSmooth {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

        /* Scroll CTA Bottom Right */
        .hero-cta {
            position: absolute;
            bottom: 3rem;
            right: 4rem;
            display: flex;
            align-items: center;
            gap: 1.2rem;
            z-index: 5;
        }

        .scroll-icon {
            width: 54px;
            height: 54px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255,255,255,0.5);
            border-radius: 50%;
            cursor: pointer;
            transition: transform .25s ease, background .25s ease;
            color: #fff;
        }

        .scroll-icon svg {
            width: 20px;
            height: 20px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .scroll-icon:hover {
            transform: translateY(4px);
            background: rgba(255,255,255,0.2);
        }

        /* Media Queries for Responsiveness */
        @media (max-width: 1024px) {
            nav { padding: 2rem; }
            .hero { padding: 0 2rem; }
            .hero-cta { right: 2rem; bottom: 2rem; }
            .hero-content h1 { font-size: 4rem; }
            .logo img { width: 220px; }
            .nav-links { display: none; } 
        }

        /* Custom Scrollbar Hiding */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Slider Transition */
#slider {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Adjusted Content Wrapper - Compact Version */
.content-wrapper {
    /* 1. Full-Width Background (No Gaps) */
    background-color: #f0f7ff; 
    width: 100%;               /* Covers the full width */
    margin: 0;                 /* Removes outside spacing */
    
    /* 2. Controlled Height (Reduces the size) */
    padding-top: 60px;         /* Space above the text */
    padding-bottom: 60px;      /* Space below the text */
    
    /* 3. The Side Shift */
    padding-left: 10%;         /* Keeps text away from the left edge */
    padding-right: 10%;        /* Keeps text away from the right edge */

    /* 4. Layout and Animation */
    display: flex;
    flex-direction: column;
    box-sizing: border-box;    /* Vital for preventing horizontal scroll */
    position: relative;
    animation: fadeInUp 2s ease-out forwards;
}

.content-wrapper.animate-now {
    animation: fadeInUp 12s ease-out forwards;
}

/* Subtle Icon Accent */
.icon-container {
    margin-bottom: 24px;
    color: #704214;
}

/* Enhanced Title with Gradient */
.section-title {
    font-size: clamp(28px, 5vw, 32px); /* Slightly larger for impact */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    background: #704214;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description with Visual Anchor */
.description-container {
    position: relative;
    padding-left: 24px;
    border-left: 3px solid #704214; /* Changed to brand blue for better contrast */
}

.section-description {
    color: #374151; /* Darker gray for better readability on light blue */
    font-size: clamp(17px, 2.5vw, 19px);
    line-height: 1.6;
    font-weight: 400;
}

/* Purpose Statement Refinement */
.purpose-highlight {
    display: block;
    margin-top: 16px;
    font-weight: 700;
    color: #111827;
    font-size: clamp(19px, 3vw, 22px);
    letter-spacing: -0.01em;
}

/* Subtle underline effect for the purpose */
.purpose-highlight::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #704214;
    margin-top: 12px;
    border-radius: 2px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .content-wrapper {
        margin-left: 20px; /* Reduces the side shift on mobile */
        padding: 30px;    /* Reduces padding so text has room */
        width: calc(100% - 40px);
    }
    .description-container {
        padding-left: 16px;
    }
}

/* ==========================================================================
   BHUMI GREEN ENERGY - NEW IMPROVED FOOTER CSS
   ========================================================================== */

.footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Increased right padding (140px) to create a safe zone for floating icons */
    padding: 80px 140px 60px 80px; 
    background: linear-gradient(145deg, #0047a5, #003579);
    color: #fff;
    font-family: "Poppins", -apple-system, sans-serif;
    position: relative;
    overflow: hidden;
    gap: 50px;
}

/* --- LEFT COLUMN --- */
.footer-left {
    flex: 1.2;
    min-width: 300px;
}

.footer-left h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #ffffff;
}

.footer-badges {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.footer-badges span {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.dot {
    width: 10px;
    height: 10px;
    background: #00d063;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 12px rgba(0, 208, 99, 0.6);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 30px;
    max-width: 450px;
}

.footer-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    opacity: 1;
    padding-left: 5px;
    color: #00d063;
}

.footer-copy {
    font-size: 13px;
    opacity: 0.5;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* --- RIGHT COLUMN (FIXED) --- */
.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Keeps content away from the center */
    text-align: right;
    min-width: 350px;
}

.footer-desc {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 440px; /* Controlled width to avoid hitting social icons */
}

.footer-btn {
    padding: 14px 32px;
    border-radius: 50px;
    background: #ffffff;
    color: #003579;
    border: none;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-btn:hover {
    transform: scale(1.05) translateX(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.25));
    border-radius: 8px;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: #ffffff;
    font-size: 13px;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.footer-legal a:hover {
    opacity: 1;
}

/* --- FLOATING SOCIAL PANEL (POSITIONED IN SAFE ZONE) --- */
.footer-floating-icons {
    position: absolute;
    right: 40px; /* Positioned inside the 140px padding zone */
    top: 50%;
    transform: translateY(-50%); /* Perfectly centered vertically */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    z-index: 10;
}

.circle-btn {
    width: 48px;
    height: 48px;
    background: #004fbb;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-btn:hover { 
    background: #00d063; 
    transform: translateY(-5px);
}

.side-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 40px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
}

.icon-btn {
    width: 42px;
    height: 42px;
    background: #0051c5;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-btn img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.icon-btn:hover { 
    transform: scale(1.15) rotate(5deg);
    background: #0047a5;
}