/* ==========================================================
   BGE SHARED DESIGN SYSTEM
   Bhumi Green Energy — Clean, Professional, Nature-Inspired
   Font: Poppins | Tone: Light + Green overlay + White text
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ── TOKENS ────────────────────────────────────────────── */
:root {
  --green:        #2d7a1f;
  --green-mid:    #4a9e38;
  --green-light:  #78c160;
  --green-pale:   #eaf4e6;
  --green-glass:  rgba(45, 122, 31, 0.18);
  --blue:         #1a5c9e;
  --blue-glass:   rgba(26, 92, 158, 0.15);
  --white:        #ffffff;
  --off-white:    #f7faf5;
  --text-dark:    #1a2e14;
  --text-mid:     #3d5c35;
  --text-muted:   rgba(255,255,255,0.65);
  --glass-bg:     rgba(255,255,255,0.10);
  --glass-border: rgba(255,255,255,0.22);
  --glass-blur:   blur(18px) saturate(160%);
  --card-bg:      rgba(255,255,255,0.92);
  --card-shadow:  0 4px 32px rgba(30,80,15,0.10);
  --r-sm:  10px;
  --r-md:  18px;
  --r-lg:  26px;
  --r-xl:  40px;
  --transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

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; /* Removed padding */
    border-radius: 0; /* Removed radius */
    
    /* REMOVED: background */
    background: transparent !important; 
    
    /* REMOVED: blur and borders */
    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;
    
    /* Keeps the transparency trick for your renamed JPG */
    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);
}

/* Add this to your existing CSS so dropdowns work with the pills */
.nav-item {
    position: relative;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* 1. THE DROPDOWN BOX: Forces vertical stacking */
.dropdown {
    position: absolute;
    top: 150%;
    left: 40%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(10, 35, 5, 0.95); /* Your dark green */
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 1rem;
    min-width: 220px; /* Slightly wider for better text fit */
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);

    /* 👈 ADD THESE TO FIX OVERLAP */
    display: flex;
    flex-direction: column; 
    gap: 8px; 
}

/* 2. THE DROPDOWN LINKS: Removes the "Pill" style */
.dropdown a {
    background: transparent !important; /* Removes the white pill color */
    border: none !important;            /* Removes the pill border */
    backdrop-filter: none !important;   /* Removes the extra blur */
    padding: 0.6rem 1rem !important;    /* Tighter padding */
    border-radius: 8px !important;      /* Subtle corners */
    display: block !important;
    width: 100%;
    text-align: left;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* 3. HOVER EFFECT: For individual links inside */
.dropdown a:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #a8e08a !important; /* Green highlight on hover */
}

.hero-cta {
    position: absolute;
    bottom: 4rem;
    right: clamp(3rem, 8vw, 8rem);
    display: flex;
    align-items: center;
    gap: 1.2rem;          /* 👈 THIS is the spacing you want */
    z-index: 5;
}


.glass-tile {
    position: relative;   /* ❌ no absolute anymore */
    padding: 2rem 3rem;
    max-width: 520px;

    color: #fff;
    font-size: 1.3rem;
    font-weight: 400;

    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 28px;

    transition: opacity .4s ease, transform .4s ease;
}

.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: 2px solid rgba(255,255,255,0.8);
    border-radius: 50%;

    cursor: pointer;
    transition: transform .25s ease, background .25s ease;
}

.scroll-icon img {
    width: 18px;
    height: auto;
    pointer-events: none;
}

.scroll-icon:hover {
    transform: translateY(4px);
    background: rgba(255,255,255,0.2);
}

/* ── HERO (VIDEO + PARALLAX) ───────────────────────────── */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  /* CHANGE THIS from flex-end to center */
  align-items: center; 
  overflow: hidden;
  /* You can also reduce this padding if the top feels too heavy */
  padding-top: 120px; 
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}

.hero-video-wrap iframe,
.hero-video-wrap video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%; 
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  pointer-events: none;
  
  /* ADD THIS to ensure it is the bottom layer */
  z-index: -1; 
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-hero);
  
  /* Ensure this is 1 */
  z-index: 0; 
}

.hero-content {
  position: relative;
  
  /* Ensure this is 2 */
  z-index: 2; 
}

/* Subtle vignette bottom */
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(transparent, rgba(8,30,4,0.55));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 3.5rem; /* Simplified padding */
  max-width: 760px;
  /* Add a slight negative margin if you want it even higher than 'center' */
  margin-top: -5px; 
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.20);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b8e8a0;
  margin-bottom: 1.4rem;
}

.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green-light);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green-light);
}

.hero-title {
  font-size: clamp(5rem, 3.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #ffffff;
  /* Adjust this to -10px or -20px to keep it tight but clean */
  margin-top: -5px; 
  margin-bottom: 1.1rem;
}

.hero-title span {
  color: #a8e08a;
}

.hero-purpose-heading {
  font-size: 1.5rem;          /* Adjust size to be slightly smaller than the main 'About Us' */
  font-weight: 700;           /* Bold weight like the image */
  color: #ffffff;             /* Bright white */
  margin-top: 10px;           /* Spacing from the eyebrow text */
  margin-bottom: 20px;        /* Spacing before the paragraph starts */
  line-height: 1.2;
  font-family: 'Inter', sans-serif; /* Or whichever font your site is using */
  text-transform: none;       /* Keeps the sentence case you requested */
}

/* Optional: To make it look even more like the screenshot's 'Bhumi Green Energy' line */
.hero-purpose-heading {
  letter-spacing: -0.02em;    /* Tightens the letters slightly for a premium feel */
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  margin-bottom: 2.2rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.hero-btn:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-2px);
}

.hero-btn.primary {
  background: var(--green);
  border-color: var(--green-mid);
  box-shadow: 0 0 28px rgba(74,158,56,0.45);
}

.hero-btn.primary:hover {
  background: var(--green-mid);
  box-shadow: 0 4px 36px rgba(74,158,56,0.6);
}

/* Styling for the OVERVIEW text */
.hero-overview-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;      /* Gives it that wide, modern look */
  color: rgba(255, 255, 255, 0.55); /* Faded white to create hierarchy */
  margin-bottom: 0.5rem;      /* Keeps it close to the company name */
}

/* Styling for the Bhumi Green Energy text */
.hero-company-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;      /* Creates space before the paragraph */
  letter-spacing: -0.01em;
}

/* Tweaking your existing subtext for better readability */
.hero-sub {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 600px;           /* Prevents text from stretching too far right */
  margin-bottom: 2.2rem;
  color: rgba(255, 255, 255, 0.85);
}

/* 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 arrow */
.scroll-arrow {
  position: absolute;
  bottom: 2.2rem;
  right: 3rem;
  z-index: 2;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.30);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.70);
  font-size: 1.1rem;
  cursor: pointer;
  animation: bob 2.2s ease-in-out infinite;
  text-decoration: none;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* ── SECTION BASE ──────────────────────────────────────── */
.bge-section {
  padding: 6rem 3.5rem;
  position: relative;
}

.bge-section.bg-white  { background: #ffffff; }
.bge-section.bg-off    { background: linear-gradient(175deg, #1e7a0281 0%, #8cb500 100%);
    border-top: 1px solid rgba(0, 81, 197, 0.05); }
.bge-section.bg-green  { background: var(--green-pale); }
.bge-section.bg-dark   {
  background: linear-gradient(135deg, #0d2409, #122e08);
  color: #fff;
}

.section-inner {
  max-width: 1220px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0047aa;
  margin-bottom: 0.6rem;
}

.eyebrow.light { color: #a8e08a; }

.section-title {
  font-size: clamp(0.2rem, 1vw, 1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-medium);
  margin-bottom: 0.9rem;
}

.section-title.light { color: #fff; }

.section-lead {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 960px;
  margin-bottom: 3rem;
}

.section-lead.light { color: rgba(255,255,255,0.60); }

/* ── BENTO GRID ────────────────────────────────────────── */
.bento {
  display: grid;
  gap: 0.85rem;
}

.bento-3 { grid-template-columns: repeat(3, 1fr); }
.bento-4 { grid-template-columns: repeat(4, 1fr); }
.bento-2 {
  grid-template-columns: 1.2fr 1fr; /* left bigger */
  gap: 30px;
  align-items: stretch; /* makes both same height */
}

.bento-cell {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid rgba(45,122,31,0.10);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}

.bento-cell:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(30,80,15,0.14);
}

/* Top accent line on hover */
.bento-cell::before {
  content: '';
  position: absolute;
  top: 0; left: 1.5rem; right: 1.5rem;
  height: 2.5px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--green-mid), var(--blue));
  opacity: 0;
  transition: var(--transition);
}

.bento-cell:hover::before { opacity: 1; }

/* Cell variants */
.bento-cell.green-tint {
  background: linear-gradient(145deg, #f0f8ec, #e8f5e3);
  border-color: rgba(45,122,31,0.15);
}

.bento-cell.dark-tint {
  background: linear-gradient(145deg, #122e08, #0d2409);
  border-color: rgba(120,193,96,0.15);
  color: #fff;
}

.bento-cell.span-2 { grid-column: span 2; }
.bento-cell.span-3 { grid-column: span 3; }
.bento-cell.span-4 { grid-column: span 4; }
.bento-cell.tall   { grid-row: span 2; }



/* ── FORCE SOCIAL CHIPS TO ONE LINE ── */
.social-chips {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important; /* This is the "magic" line that stops stacking */
    gap: 8px !important;           /* Reduced gap slightly to fit 3 in a row */
    margin-top: 20px !important;
    width: 100% !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

.social-chips .chip {
    flex: 0 1 auto !important;    /* Allows them to size based on text */
    padding: 6px 15px !important;  /* Slightly tighter padding to ensure fit */
    font-size: 0.75rem !important; /* Smaller font helps fit all three */
    white-space: nowrap !important;
    display: inline-flex !important;
}

/* ── PREMIUM LIGHT GLASSMORPHISM (Adapted from main-copy.css 3D Engine) ── */
.glass-card-style {
    /* Override base #fff background with high-end optical blur */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.15) 100%) !important;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    
    /* Fine highlights mimicking directional edge lighting */
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.8) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.6) !important;
    
    /* Clean foundational shadow */
    box-shadow: 0 10px 30px -5px rgba(30, 80, 15, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
    
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    transform-style: preserve-3d;
    perspective: 1000px;
    overflow: hidden;
}

/* Overriding the default hover lift of standard .bento-cell for full multi-axis 3D */
.glass-card-style:hover {
    transform: translateY(-8px) scale(1.02) rotateX(2deg) rotateY(-1deg) !important;
    box-shadow: 0 25px 50px -10px rgba(30, 80, 15, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    border-top: 1px solid rgba(255, 255, 255, 1) !important;
}

/* Ensure content stays visually above the glass physics */
.glass-card-style > * {
    position: relative;
    z-index: 3;
}

/* The interactive light shine sweep on hover (Overriding default top-line) */
.glass-card-style::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important; 
    left: -150% !important;
    right: auto !important;
    width: 60% !important; 
    height: 100% !important;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%) !important;
    transform: skewX(-30deg) !important;
    transition: left 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    z-index: 2 !important;
    pointer-events: none !important;
    border-radius: 0 !important;
    opacity: 1 !important;
}

.glass-card-style:hover::before {
    left: 200% !important; /* Sweeps the light across */
}


/* ── TARGETED HOVER OVERLAY ── */
.scientific-overlay {
    position: relative;
    z-index: 1;
    overflow: hidden; /* This keeps the zoomed image inside the card corners */
    background: #ffffff; /* Ensures card starts as solid white */
}

/* The background image layer */
.scientific-overlay::after {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background-image: var(--card-bg);
    background-size: cover;
    background-position: center;
    
    /* CHANGE: Set to 0 so it is invisible at first */
    opacity: 0; 
    
    z-index: -1;
    transition: opacity 0.4s ease, transform 0.5s ease;
}

/* Hover effect: Image becomes visible when you mouse over */
.scientific-overlay:hover::after {
    /* Adjust this value (0.1 to 1.0) for how clear you want the image to be */
    opacity: 0.88; 
    transform: scale(1.1); /* Subtle zoom effect */
}
/* ── HOVER TEXT TRANSITION ── */

/* 1. Target the headings and paragraphs when the card is hovered */
.scientific-overlay:hover h3, 
.scientific-overlay:hover p {
    color: #ffffff !important;
}

/* 2. Optional: If you want the text to change smoothly (not a sudden jump) 
      add this transition to your existing h3 and p tags */
.scientific-overlay h3, 
.scientific-overlay card p {
    transition: color 0.4s ease;
}

/* 3. Adjust the image brightness on hover 
      Since the text is now white, we need the background image 
      to be DARKER so the white text is readable. */
.scientific-overlay:hover::after {
    opacity: 0.9; /* Increased opacity from 0.2 to 0.7 */
    filter: brightness(0.5); /* Makes the image darker for white text contrast */
    transform: scale(1.08);
}
.cap-card {
  color: #2e7d32; /* default green */
  transition: color 0.3s ease;
}

.cap-card:hover {
  color: white;
}

.cap-card:hover .stat-num,
.cap-card:hover .stat-label {
  color: white;
}

.icon-pill {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #f3f7f1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.icon-pill img {
  width: 75%;
  height: 75%;
  object-fit: contain;
}

/* --- WORKLIFE SECTION CUSTOM STYLES --- */

/* The Section Background */
.bg-offwhite-green {
    background: radial-gradient(circle at top, #ffffff 0%, #f0fde7 100%) !important;
    border-top: 1px solid rgba(45, 122, 31, 0.05);
}

/* Targeting cards ONLY within this section ID */
#worklife-bento .wl-card {
    background: #eaf7fd;
    border: 1px solid rgba(0, 71, 170, 0.08);
    border-radius: 40px;
}

#worklife-bento .follow-card {
    background:linear-gradient(145deg, #0047a5, #003579);
    color: #ffffff;
    border-radius: 40px;
}

#worklife-bento .social-chips .chip {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    transition: 0.3s ease;
}

#worklife-bento .social-chips .chip:hover {
    background: #ffffff;
    color: #0d2e14;
}

/* --- ICON CONTAINER BACKGROUND FOR WORKLIFE BENTO --- */

#worklife-bento .icon-pill {
    /* 1. The Background Color of the pill itself */
    background: #eaf7fd !important; /* Pure White makes green icons pop */
    
    /* 2. Optional: A very subtle border to define the shape */
    border: 2px solid rgba(45, 122, 31, 0.1); 
    
    /* 3. Shape and Spacing */
    width: 54px;
    height: 54px;
    border-radius: 14px; /* Modern rounded square look */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* 4. Ensuring the Icon Image remains its original color */
#worklife-bento .icon-pill img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: none !important; /* This ensures NO color changes happen to the icon */
}

/* ── GLASS CARD ────────────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 2.2rem;
  color: #fff;
}

/* ── ICON BOX ──────────────────────────────────────────── */
.icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--green-pale);
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}

.icon-pill.dark {
  background: rgba(120,193,96,0.15);
}

/* ── STAT ──────────────────────────────────────────────── */
.stat-num {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--green);
  line-height: 1;
}

.stat-num.light { color: #a8e08a; }

.stat-label {
  font-size: 0.83rem;
  font-weight: 400;
  color: var(--text-mid);
  margin-top: 0.3rem;
  line-height: 1.4;
}

.stat-label.light { color: rgba(255,255,255,0.55); }

/* ── TAG ───────────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.85rem;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag-green {
  background: rgba(45,122,31,0.10);
  border: 1px solid rgba(45,122,31,0.20);
  color: var(--green);
}

.tag-green-light {
  background: rgba(168,224,138,0.15);
  border: 1px solid rgba(168,224,138,0.30);
  color: #a8e08a;
}

.tag-blue {
  background: rgba(26,92,158,0.10);
  border: 1px solid rgba(26,92,158,0.20);
  color: var(--blue);
}

/* ── ACTIVITY LIST ─────────────────────────────────────── */
.act-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 1rem 0;
}

.act-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-mid);
}

.act-list.light li { color: rgba(255,255,255,0.70); }

.act-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green-mid);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.48rem;
}

.act-list.light li::before { background: var(--green-light); }

/* ── DIVIDER ───────────────────────────────────────────── */
.glow-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45,122,31,0.20), transparent);
}

/* ==========================================================================
   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;
}

/* --- RESPONSIVE DESIGN (RE-WRITTEN FOR CLEANLINESS) --- */

@media (max-width: 1200px) {
    .footer {
        padding: 60px 100px 60px 50px;
    }
}

@media (max-width: 1024px) {
    .footer {
        flex-direction: column;
        padding: 60px 40px;
        align-items: center;
        text-align: center;
    }

    .footer-left, .footer-right {
        width: 100%;
        align-items: center;
        text-align: center;
        min-width: unset;
        margin-right: 0;
    }

    .footer-badges { justify-content: center; }
    .footer-links { margin: 0 auto 40px; }
    .footer-logo { display: flex; justify-content: center; }
    .footer-legal { justify-content: center; }

    /* Move floating icons to the bottom flow */
    .footer-floating-icons {
        position: static;
        transform: none;
        flex-direction: row;
        margin-top: 40px;
        width: 100%;
        justify-content: center;
    }

    .side-icons {
        flex-direction: row;
    }
}

@media (max-width: 600px) {
    .footer-left h2 { font-size: 24px; }
    .footer-links { grid-template-columns: 1fr; gap: 15px; }
    .footer-logo img { width: 220px; }
}



/* ── REVEAL ANIMATIONS ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
              transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.reveal.active { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }
.d6 { transition-delay: 0.48s; }

/* ── PARALLAX HELPER ───────────────────────────────────── */
.parallax-layer { will-change: transform; }

/* ── MOBILE OPTIMIZATION (BGE SYSTEM SAFE) ───────────────────────────── */
@media (max-width: 768px) {

  /* GLOBAL */
  html { font-size: 14px; }

  .bge-section {
    padding: 3.5rem 1.2rem;
  }

  .section-inner {
    padding: 0;
  }

  /* NAVBAR */
  nav {
    padding: 1rem 1.2rem;
  }

  .logo img {
    width: 200px;
  }

  .nav-links {
    display: none; /* keep clean mobile look (no breaking layout) */
  }

  /* HERO */
  .hero-section {
    padding-top: 100px;
    height: auto;
    min-height: 100vh;
  }

  .hero-content {
    padding: 0 1rem;
    max-width: 100%;
    margin-top: 0;
    text-align: center;
  }

  .hero-purpose-heading {
    font-size: 1.4rem;
  }

  .hero-sub {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 100%;
  }

  .hero-btn {
    font-size: 0.8rem;
    padding: 0.6rem 1.4rem;
  }

  .scroll-arrow {
    right: 50%;
    transform: translateX(50%);
    bottom: 1.5rem;
  }

  /* BENTO GRID → STACK */
  .bento-2,
  .bento-3,
  .bento-4 {
    grid-template-columns: 1fr !important;
  }

  .bento-cell {
    padding: 1.4rem;
  }

  /* REMOVE SPAN ON MOBILE */
  .bento-cell.span-2,
  .bento-cell.span-3,
  .bento-cell.span-4 {
    grid-column: span 1 !important;
  }

  /* TEXT FIXES */
  .section-title {
    font-size: 1.4rem;
  }

  .section-lead {
    font-size: 0.85rem;
  }

  .eyebrow {
    font-size: 0.7rem;
  }

  /* LIST */
  .act-list li {
    font-size: 0.8rem;
  }

  /* GLASS TILE (hero bottom box if used) */
  .glass-tile {
    padding: 1.4rem;
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-cta {
    position: static;
    margin-top: 2rem;
    justify-content: center;
  }

  /* REGION / SMALL CARDS */
  .region-tile {
    padding: 1rem;
    font-size: 0.8rem;
  }

  /* SOCIAL CHIPS */
  .social-chips {
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  /* FOOTER */
  .footer {
    padding: 50px 20px;
  }

  .footer-left h2 {
    font-size: 22px;
  }

  .footer-desc {
    font-size: 14px;
  }

  .footer-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .footer-logo img {
    width: 180px;
  }
}


/* ── EXTRA SMALL DEVICES (PHONES < 480px) ───────────────────────────── */
@media (max-width: 480px) {

  .hero-purpose-heading {
    font-size: 1.2rem;
  }

  .hero-sub {
    font-size: 0.8rem;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .bento-cell {
    padding: 1.2rem;
  }

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

}