/* ==========================================================================
   BIOPOLYMERS & COMPOSTABLE PACKAGING ASSOCIATION OF INDIA DESIGN SYSTEM
   ========================================================================== */

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

:root {
    --primary: #0B2545;           /* Official Navy Trust Blue */
    --primary-dark: #051930;      /* Dark Official Navy */
    --emerald: #0A4D3C;           /* Official Deep Emerald */
    --emerald-dark: #042F2C;
    --secondary: #D97706;         /* Emblem Gold Accent */
    --secondary-hover: #B45309;
    --accent: #F59E0B;            /* Bright Gold Accent */
    --bg-light: #F4F6F9;
    --bg-card: #FFFFFF;
    --text-main: #0F172A;
    --text-muted: #475569;
    --text-light: #94A3B8;
    --dark-surface: #070D17;
    --dark-card: #0F1826;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -4px rgba(11, 37, 69, 0.12);
    --shadow-lg: 0 18px 40px -8px rgba(11, 37, 69, 0.2);
    --radius-sm: 6px;
    --radius-md: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 1.2rem;
}

/* ==========================================================================
   1. TRICOLOR & GOVT TOPBAR
   ========================================================================== */
.gov-tricolor-bar {
    height: 4px;
    background: linear-gradient(90deg, #FF9933 0%, #FFFFFF 50%, #138808 100%);
    width: 100%;
}

.top-bar {
    background: var(--primary-dark);
    color: #F1F5F9;
    font-size: 0.76rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.gov-badge {
    background: rgba(217, 119, 6, 0.2);
    border: 1px solid var(--secondary);
    color: #FCD34D;
    padding: 0.15rem 0.6rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.72rem;
}

.gov-badge-sub {
    color: #E2E8F0;
    font-weight: 600;
}

.gov-phone {
    color: #FFF;
    font-weight: 600;
}

.gov-phone i, .gov-badge i, .gov-badge-sub i {
    color: var(--accent);
    margin-right: 0.3rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tax-badge {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid #10B981;
    color: #A7F3D0;
    padding: 0.15rem 0.6rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.72rem;
}

.top-link {
    color: #FFF;
    font-weight: 600;
    transition: var(--transition);
}

.top-link:hover {
    color: var(--accent);
}

/* ==========================================================================
   2. OFFICIAL BRANDING HEADER BAR
   ========================================================================== */
.gov-main-header {
    background: #FFFFFF;
    padding: 0.8rem 0;
    border-bottom: 1px solid #E2E8F0;
}

.gov-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gov-brand-box {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.gov-logo-img {
    height: 140px;
    max-width: 400px;
    width: auto;
    object-fit: contain;
}

.gov-brand-details {
    display: flex;
    flex-direction: column;
}

.gov-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.gov-subtitle {
    font-size: 0.78rem;
    color: var(--secondary-hover);
    font-weight: 700;
    margin-top: 0.2rem;
}

.gov-header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-cert-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--bg-light);
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-sm);
    border: 1px solid #E2E8F0;
}

/* ==========================================================================
   3. OFFICIAL NAVBAR & NAVIGATION MENU
   ========================================================================== */
.main-header {
    background: #FFFFFF;
    position: relative;
    z-index: 1000;
    box-shadow: 0 6px 20px rgba(0,0,0,0.10);
    border-bottom: 3px solid var(--secondary);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.86rem;
    color: var(--primary-dark);
    padding: 0.85rem 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
    position: relative;
}

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

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

.nav-link:hover, .nav-link.active {
    color: var(--secondary);
}

.nav-link i.fa-chevron-down {
    font-size: 0.6rem;
    transition: transform 0.25s ease;
}

.nav-item:hover .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #FFFFFF;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    border-top: 3px solid var(--secondary);
    z-index: 1100;
}

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

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.1rem;
    font-size: 0.84rem;
    color: var(--text-main);
    font-weight: 600;
    transition: var(--transition);
}

.dropdown-item i {
    font-size: 0.8rem;
    color: var(--primary);
    width: 16px;
    text-align: center;
}

.dropdown-item:hover {
    background: rgba(11, 37, 69, 0.08);
    color: var(--primary);
    padding-left: 1.3rem;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-search-trigger {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
}

.btn-search-trigger:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-donate {
    background: linear-gradient(135deg, var(--secondary) 0%, #F59E0B 100%);
    color: #FFF;
    font-family: var(--font-heading);
    font-weight: 800;
    padding: 0.55rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(217, 119, 6, 0.45);
    color: #FFF;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: #FFF;
    background: none;
    border: none;
    cursor: pointer;
}

/* ==========================================================================
   4. HERO BANNER SLIDER (Pure Image Slider)
   ========================================================================== */
.banner {
    position: relative;
    width: 100%;
    height: 520px;
    background: #000;
    overflow: hidden;
}

.banner-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.banner-item.active {
    opacity: 1;
    visibility: visible;
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    z-index: 10;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }

.slider-dots {
    position: absolute;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

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

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

/* ==========================================================================
   5. EXPERIENCE BENGAL PHOTO CAROUSEL
   ========================================================================== */
section.categories {
    padding: 40px 0 50px;
    background: var(--bg-light);
}

.categories .category-header-bar {
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 2px solid #CBD5E1;
    padding-bottom: 10px;
}

.categories .category-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
    color: var(--primary-dark);
}

.category-slider-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.categories .category-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: #FFF;
    border: 1px solid #E2E8F0;
}

.categories .category-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.categories .category-img-box {
    height: 180px;
    width: 100%;
    overflow: hidden;
}

.categories .category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.categories .category-item:hover img {
    transform: scale(1.08);
}

.categories .category-item a {
    display: block;
    background: var(--primary);
    color: #FFFFFF;
    padding: 12px 14px;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: capitalize;
    text-align: center;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.categories .category-item:hover a {
    background: var(--secondary);
}

/* ==========================================================================
   6. BANNER SEARCH / APEX FEATURE CARDS (TAAB 4 Features Grid)
   ========================================================================== */
.banner-search {
    padding: 60px 0;
    background: #FFFFFF;
    text-align: center;
}

.bs-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.bs-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-box {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 32px 20px;
    text-align: center;
    border: 1px solid #E2E8F0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: block;
}

.feature-box:hover {
    transform: translateY(-8px);
    background: #FFFFFF;
    border-color: var(--secondary);
    box-shadow: var(--shadow-lg);
}

.feature-icon-circle {
    width: 72px;
    height: 72px;
    background: rgba(11, 37, 69, 0.08);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 15px;
    transition: var(--transition);
}

.feature-box:hover .feature-icon-circle {
    background: var(--secondary);
    color: #FFFFFF;
    transform: rotateY(180deg);
}

.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 1500;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 28px rgba(217, 119, 6, 0.6);
}

.taabHomeFeature {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-dark);
}

/* ==========================================================================
   7. MEMBERSHIP APPLICATION SECTION (TAAB Join with us Banner)
   ========================================================================== */
.memberShipbg {
    background: linear-gradient(135deg, #051930 0%, #0B2545 60%, #0A4D3C 100%);
    padding: 60px 0;
    color: #FFFFFF;
}

.membership-row {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 30px;
    align-items: center;
}

.mem-col-left {
    text-align: center;
}

.tab_logo {
    max-width: 200px;
    margin: 0 auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.mem-col-right {
    text-align: center;
}

.hmRefSec h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 5px;
    color: #FFFFFF;
}

.hmRefSec h4 {
    font-size: 20px;
    color: #FCD34D;
    font-weight: 600;
    margin-bottom: 25px;
}

.btn-group-mem {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.button-default {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 15px;
    transition: var(--transition);
}

.btn-MemBen {
    background: #FFFFFF;
    color: var(--primary-dark);
}

.btn-MemBen:hover {
    background: var(--secondary);
    color: #FFFFFF;
    transform: translateY(-3px);
}

.btn-downloadNow {
    background: var(--primary-dark);
    border: 1px solid var(--secondary);
    color: #FFFFFF;
}

.btn-downloadNow:hover {
    background: var(--secondary);
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* ==========================================================================
   8. ACHIEVEMENTS COUNTER SECTION (TAAB Parallax Achievements)
   ========================================================================== */
.achievements {
    position: relative;
    background: linear-gradient(rgba(5, 25, 48, 0.94), rgba(11, 37, 69, 0.94)), url('../images/hero1.png') center/cover fixed;
    padding: 60px 0;
    color: #FFFFFF;
    text-align: center;
}

.achievements-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.achievement-item {
    padding: 15px;
}

.achievement-item i {
    font-size: 42px;
    color: var(--accent);
    margin-bottom: 10px;
}

.counter {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 5px;
}

.achievement-item p {
    font-size: 15px;
    font-weight: 700;
    color: #E2E8F0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   9. ABOUT TWO / LEADERSHIP MESSAGES (President & Secretary Cards)
   ========================================================================== */
.about-two {
    padding: 70px 0;
    background: var(--bg-light);
}

.messages-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.president_msg {
    text-align: justify;
    background: linear-gradient(145deg, #051930 0%, #0F1826 100%);
    padding: 28px;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    color: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}

.president_img {
    margin: 0 20px 10px 0;
    float: left;
    width: 150px;
    height: 180px;
    object-fit: cover;
    border: 5px solid #FFFFFF;
    background: #FFFFFF;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border-radius: 6px;
}

.president_msg h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.president_msg p {
    color: #E2E8F0;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 10px;
}

/* ==========================================================================
   10. TESTIMONIALS
   ========================================================================== */
.testimonial {
    padding: 70px 0;
    background: var(--dark-surface);
    color: #FFFFFF;
    text-align: center;
}

.testimonial .section-header h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 30px;
}

.testimonial-box {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 40px 30px;
    max-width: 820px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.t-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 3px solid var(--accent);
    object-fit: cover;
}

.t-quote {
    font-size: 17px;
    font-style: italic;
    color: #E2E8F0;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-box h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--accent);
}

.testimonial-box span {
    font-size: 14px;
    color: #94A3B8;
}

/* ==========================================================================
   11. CATEGORIES THREE / FIND SERVICE PROVIDER (TAAB 6 PMCards Grid)
   ========================================================================== */
.categories-three {
    padding: 60px 0;
    background: var(--bg-light);
}

.categories-three .section-header h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 35px;
}

.pm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.PMcard {
    background: #0B1728;
    padding: 32px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    transition: var(--transition);
    display: block;
    border: 1px solid rgba(255,255,255,0.08);
}

.PMcard:hover {
    transform: scale(1.05);
    background: var(--primary);
}

.PMcard i {
    font-size: 50px;
    color: #FFFFFF;
    margin-bottom: 12px;
    display: block;
    transition: var(--transition);
}

.PMcard:hover i {
    color: var(--accent);
}

.PMcard h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: #FFFFFF;
}

/* ==========================================================================
   12. SUBSCRIBE NEWSLETTER & FOOTER
   ========================================================================== */
.newsletter-section {
    background: linear-gradient(90deg, #D97706 0%, #B45309 100%);
    padding: 35px 0;
    color: #FFFFFF;
}

.newsletter-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
}

.newsletter-form {
    display: flex;
    gap: 6px;
    width: 100%;
    max-width: 500px;
}

.newsletter-input {
    flex-grow: 1;
    padding: 12px 18px;
    border-radius: 50px 0 0 50px;
    border: none;
    outline: none;
    font-size: 14px;
}

.newsletter-btn {
    background: var(--primary-dark);
    color: #FFFFFF;
    border: none;
    padding: 12px 25px;
    border-radius: 0 50px 50px 0;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background: #000000;
}

/* Statutory Footer */
footer {
    background: #050E1A;
    color: #94A3B8;
    padding: 50px 0 20px;
    font-size: 14px;
}

.footer-statutory-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-badge-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-badge-box i {
    font-size: 22px;
    color: var(--secondary);
}

.stat-badge-box strong {
    display: block;
    color: #FFFFFF;
    font-size: 13px;
}

.stat-badge-box span {
    font-size: 11px;
    color: #94A3B8;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 35px;
}

.footer-col h5 {
    font-family: var(--font-heading);
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--secondary);
}

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

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

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.social-icon {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 14px;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
}

/* MODALS */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: #FFF;
    border-radius: var(--radius-md);
    width: 90%;
    max-width: 520px;
    padding: 2rem;
    position: relative;
    transform: scale(0.92);
    transition: var(--transition);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 0.9rem;
    right: 1.1rem;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.4rem;
}

.form-group {
    margin-bottom: 1.1rem;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 0.35rem;
}

.form-control {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid #CBD5E1;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 37, 69, 0.15);
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.btn-amount {
    background: var(--bg-light);
    border: 1px solid #CBD5E1;
    padding: 0.55rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-amount.active, .btn-amount:hover {
    background: var(--primary);
    color: #FFF;
    border-color: var(--primary);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================= */
@media (max-width: 1024px) {
    .category-slider-grid, .footer-statutory-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-row, .pm-grid, .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .messages-row {
        grid-template-columns: 1fr;
    }
    .achievements-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .category-slider-grid, .footer-statutory-row {
        grid-template-columns: 1fr;
    }
    .features-row, .pm-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .membership-row {
        grid-template-columns: 1fr;
    }
    .gov-header-container {
        flex-direction: column;
        gap: 1rem;
    }
    .top-bar {
        display: none !important;
    }
    .nav-link {
        color: #FFFFFF !important;
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        height: auto;
        min-height: 80vh;
        background: var(--primary);
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .nav-menu.active {
        left: 0;
    }
    .mobile-toggle {
        display: block;
    }
    .banner {
        height: 380px;
    }
    .president_img {
        float: none;
        margin: 0 auto 15px;
        display: block;
    }
    /* Unified Header Mobile Fixes */
    .gov-logo-img {
        height: 65px;
    }
    .desktop-cta {
        display: none !important;
    }
    .mobile-cta-item {
        display: block !important;
        width: 100%;
    }
}

/* ==========================================================================
   MISSING UTILITY CLASSES & FIXES
   ========================================================================= */
.padding-120 {
    padding: 120px 0;
}

.padding-80 {
    padding: 80px 0;
}

.overview-section {
    padding: 80px 0;
    background: #F8FAFC;
}

.membership-grid {
    display: grid;
    gap: 30px;
}

@media (min-width: 992px) {
    .membership-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.section-subtitle {
    display: inline-block;
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-dark);
}

.btn-primary-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--secondary) 0%, #F59E0B 100%);
    color: #FFF;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 800;
    border: none;
    transition: var(--transition);
}

.btn-primary-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(217, 119, 6, 0.45);
    color: #FFF;
}

/* Footer Gap Fix */
.site-footer {
    margin-top: 40px;
}
