:root {
            --deep-blue: #0a2e4a;
            --bright-blue: #1b6b9e;
            --accent-green: #27ae60;
            --red: #e63946;
            --white: #ffffff;
            --light: #f8fafc;
            --text: #1e293b;
            --text-light: #475569;
            --transition: 0.25s ease;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; background: var(--white); color: var(--text); line-height: 1.6; }

        /* ===== HEADER (identical to previous) ===== */
        .site-header {
            position: sticky; top: 0; z-index: 1000; width: 100%;
            background: linear-gradient(135deg, #0a2e4a 0%, #113a56 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.12); transition: all var(--transition);
        }
        .site-header.scrolled { box-shadow: 0 6px 28px rgba(0,0,0,0.25); background: #0a2e4a; }
        .site-header::after {
            content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px;
            background: linear-gradient(to right, #e63946 0%, #e63946 33%, #27ae60 33%, #27ae60 66%, var(--bright-blue) 66%, var(--bright-blue) 100%);
            z-index: 1;
        }
        .header-container { display: flex; align-items: center; justify-content: space-between; max-width: 1280px; margin: 0 auto; padding: 0 24px; height: 78px; gap: 20px; position: relative; z-index: 2; }
        .logo-section { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
        .logo-img { width: 44px; height: 44px; object-fit: contain; border-radius: 8px; background: rgba(255,255,255,0.1); padding: 4px; transition: transform var(--transition); }
        .logo-section:hover .logo-img { transform: scale(1.06); }
        .site-name { font-size: 1.3rem; font-weight: 700; color: white; white-space: nowrap; letter-spacing: 0.4px; }
        .site-name .green-heart { color: var(--accent-green); font-weight: 800; }
        .main-nav { display: flex; align-items: center; flex: 1; justify-content: center; }
        .main-nav ul { display: flex; list-style: none; gap: 6px; align-items: center; flex-wrap: wrap; justify-content: center; }
        .main-nav > ul > li { position: relative; padding: 10px 14px; cursor: pointer; color: #d4e2f0; font-weight: 500; font-size: 0.95rem; white-space: nowrap; border-radius: 6px; transition: all var(--transition); user-select: none; }
        .main-nav > ul > li:hover { color: white; background: rgba(255,255,255,0.08); }
        .main-nav > ul > li.dropdown-parent::after { content: '▾'; margin-left: 5px; font-size: 0.7rem; color: var(--accent-green); transition: transform var(--transition); }
        .main-nav > ul > li.dropdown-parent:hover::after { transform: rotate(180deg); }
        .main-nav .dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(4px); background: white; list-style: none; min-width: 200px; border-radius: 10px; box-shadow: 0 12px 30px rgba(0,0,0,0.15); opacity: 0; visibility: hidden; pointer-events: none; transition: all 0.2s ease; padding: 8px 0; z-index: 100; border: 1px solid rgba(0,0,0,0.05); }
        .main-nav > ul > li.dropdown-parent:hover > .dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0px); }
        .main-nav .dropdown-menu li { padding: 10px 20px; color: #1e293b; font-size: 0.9rem; cursor: pointer; white-space: nowrap; border-left: 3px solid transparent; transition: background 0.2s, border-color 0.2s; }
        .main-nav .dropdown-menu li:hover { background: #f0f7fa; border-left-color: var(--accent-green); color: var(--deep-blue); }
        .header-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
        .social-icons { display: flex; align-items: center; gap: 8px; }
        .social-icon-link { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.12); color: white; transition: all var(--transition); text-decoration: none; }
        .social-icon-link i { font-size: 1rem; }
        .social-icon-link:hover { transform: translateY(-2px); background: white; }
        .social-icon-link.facebook:hover { color: #1877f2; background: white; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
        .social-icon-link.twitter:hover { color: #000; background: white; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
        .social-icon-link.whatsapp:hover { color: #25d366; background: white; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
        .donation-btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; background: var(--red); color: white; font-weight: 700; font-size: 0.95rem; border-radius: 6px; text-decoration: none; letter-spacing: 0.3px; transition: all var(--transition); white-space: nowrap; box-shadow: 0 4px 14px rgba(230,57,70,0.4); border: 1px solid rgba(255,255,255,0.15); }
        .donation-btn:hover { background: #c62828; box-shadow: 0 6px 20px rgba(230,57,70,0.6); transform: translateY(-1px); }
        .hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; width: 42px; height: 42px; background: rgba(255,255,255,0.08); border: none; border-radius: 8px; cursor: pointer; z-index: 1001; gap: 5px; transition: background var(--transition); }
        .hamburger span { display: block; width: 20px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s ease; }
        .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
        .mobile-menu { display: none; position: fixed; top: 0; left: 0; width: 280px; height: 100vh; background: #0a2e4a; z-index: 999; overflow-y: auto; padding: 20px 20px 30px; transform: translateX(-100%); transition: transform 0.3s ease; box-shadow: 4px 0 20px rgba(0,0,0,0.3); }
        .mobile-menu.open { transform: translateX(0); }
        .mobile-menu .close-area { display: flex; justify-content: flex-end; margin-bottom: 20px; }
        .mobile-close-btn { background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; padding: 6px; }
        .mobile-menu > ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
        .mobile-menu > ul > li { color: #e0eef7; font-weight: 500; font-size: 1rem; padding: 12px 10px; cursor: pointer; border-radius: 6px; border-bottom: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; align-items: center; }
        .mobile-menu > ul > li.dropdown-parent::after { content: '▾'; color: var(--accent-green); transition: transform 0.3s; }
        .mobile-menu > ul > li.dropdown-parent.expanded::after { transform: rotate(180deg); }
        .mobile-submenu { width: 100%; list-style: none; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding-left: 0; }
        .mobile-menu > ul > li.dropdown-parent.expanded > .mobile-submenu { max-height: 300px; }
        .mobile-submenu li { padding: 10px 10px 10px 24px; color: #c4d6e4; font-size: 0.9rem; cursor: pointer; border-left: 2px solid transparent; transition: all var(--transition); }
        .mobile-submenu li:hover { background: rgba(255,255,255,0.05); border-left-color: var(--accent-green); color: white; }
        .mobile-social-row { display: flex; gap: 14px; margin-top: 24px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.15); }
        .mobile-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); z-index: 998; opacity: 0; transition: opacity 0.3s; }
        .mobile-overlay.show { display: block; opacity: 1; }
        @media (max-width: 1023px) {
            .main-nav { display: none; } .hamburger { display: flex; } .mobile-menu { display: flex; flex-direction: column; }
            .header-actions .social-icons { display: none; } .header-container { height: 68px; padding: 0 16px; gap: 12px; }
            .site-name { font-size: 1.1rem; } .logo-img { width: 38px; height: 38px; } .donation-btn { padding: 9px 16px; font-size: 0.85rem; border-radius: 5px; }
        }
        @media (max-width: 480px) {
            .header-container { height: 60px; padding: 0 12px; gap: 8px; } .site-name { font-size: 0.9rem; } .logo-img { width: 32px; height: 32px; }
            .donation-btn { padding: 8px 14px; font-size: 0.8rem; } .mobile-menu { width: 260px; }
        }

        @media (max-width: 768px) {
    .form-wrapper {
        max-width: 500px;      /* or any width you like */
        margin: 0 auto;        /* centres the box */
    }
}

        /* ===== PAGE HERO ===== */
        .page-hero {
  /* Gradient overlay + background image */
  background: linear-gradient(135deg, rgba(10, 46, 74, 0.85), rgba(27, 107, 158, 0.85)),
              url('7_image_7_watermark_Tue_23122025_091921.avif') center center / cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

/* Subtle pattern overlay */
.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 20%, rgba(255,255,255,0.08) 2%, transparent 2.5%);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 1;
}

/* Content wrapper */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-hero .tagline {
  font-size: 1.35rem;
  max-width: 650px;
  margin: 0 auto;
  opacity: 0.95;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .page-hero {
    padding: 70px 20px;
  }
  .page-hero h1 {
    font-size: 2.4rem;
  }
  .page-hero .tagline {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 1.9rem;
  }
  .page-hero {
    padding: 50px 16px;
  }
}

        /* ===== BLS CONTENT SECTION ===== */
        .bls-content {
            max-width: 1000px;
            margin: 80px auto;
            padding: 0 24px;
        }
        .bls-card {
            background: var(--light);
            border-radius: 20px;
            padding: 40px 30px;
            margin-bottom: 40px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.04);
            border-left: 6px solid var(--accent-green);
        }
        .bls-card h2 {
            font-size: 2rem;
            color: var(--deep-blue);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .bls-card h2 i { color: var(--accent-green); }
        .bls-card p {
            color: var(--text-light);
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 16px;
        }

        /* ===== IMAGE GALLERY ===== */
        .gallery-section {
            padding: 60px 24px;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        }
        .gallery-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .gallery-container h2 {
            text-align: center;
            font-size: 2.2rem;
            color: var(--deep-blue);
            margin-bottom: 40px;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .gallery-item {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }
        .gallery-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 32px rgba(0,0,0,0.12);
        }
        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.08);
        }
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            color: white;
            padding: 20px 16px;
            opacity: 0;
            transition: opacity 0.3s ease;
            font-weight: 500;
            font-size: 0.9rem;
        }
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        /* ===== APPLICATION SECTION ===== */
        .application-section {
            padding: 80px 24px;
            background: var(--light);
        }
        .application-container {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: flex-start;
        }
        .application-info {
            flex: 1 1 280px;
        }
        .application-info h2 {
            font-size: 2rem;
            color: var(--deep-blue);
            margin-bottom: 20px;
        }
        .application-info p {
            color: var(--text-light);
            margin-bottom: 16px;
            line-height: 1.7;
        }
        .form-wrapper {
            flex: 1 1 450px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.08);
            padding: 10px;
            min-height: 500px;
        }
        .form-wrapper iframe {
            width: 100%;
            height: 100%;
            min-height: 500px;
            border: none;
            border-radius: 16px;
        }
        /* Optional hover for the form wrapper */
        .form-wrapper:hover {
            box-shadow: 0 16px 36px rgba(0,0,0,0.12);
        }

        /* ===== FOOTER (identical) ===== */
        .site-footer { background: var(--deep-blue); color: #d4e2f0; padding: 48px 24px 24px; margin-top: 60px; }
        .footer-container { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 36px; justify-content: space-between; }
        .footer-col { flex: 1; min-width: 200px; }
        .footer-col h3 { color: white; font-size: 1.1rem; margin-bottom: 16px; padding-bottom: 12px; position: relative; }
        .footer-col h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background: var(--accent-green); border-radius: 3px; }
        .footer-col ul { list-style: none; } .footer-col ul li { margin-bottom: 10px; }
        .footer-col ul li a { color: #c4d6e4; text-decoration: none; } .footer-col ul li a:hover { color: white; }
        .footer-col p { margin-bottom: 12px; line-height: 1.5; }
        .footer-social-icons { display: flex; gap: 12px; margin-top: 12px; }
        .footer-social-icons .social-icon-link { background: rgba(255,255,255,0.1); width: 38px; height: 38px; }
        .footer-social-icons .social-icon-link:hover { background: white; color: #1877f2; }
        .footer-bottom { max-width: 1200px; margin: 32px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.15); text-align: center; font-size: 0.9rem; color: #a0b9ce; }
        .footer-bottom a { color: var(--accent-green); text-decoration: none; }

        @media (max-width: 768px) {
            .page-hero h1 { font-size: 2.2rem; }
            .bls-card { padding: 30px 20px; }
            .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
            .application-container { flex-direction: column; }
            .footer-container { flex-direction: column; gap: 28px; }
        }

        /* Floating WhatsApp – right side, vertically centred */
.floating-whatsapp {
  position: fixed;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  z-index: 997;
  width: 55px;
  height: 55px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}

@media (max-width: 600px) {
  .floating-whatsapp {
    width: 48px;
    height: 48px;
    font-size: 24px;
    right: 16px;
  }
}