/* ================================================================
   POLITYX CONSULTING — WORLD-CLASS POLITICAL WEBSITE
   Design: Dark Navy + Saffron + Gold | Premium Indian Political
   ================================================================ */

/* Accessibility: screen-reader-only text */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}


/* ---- FONTS & ROOT VARIABLES ---- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --navy: #000229;
    --navy-mid: #010433;
    --navy-light: #05094a;
    --saffron: #FF6B35;
    --saffron-dark: #e55a22;
    --gold: #D4AF37;
    --gold-light: #f0cc5a;
    --white: #ffffff;
    --off-white: #f5f5f0;
    --gray-light: #c8c8c8;
    --gray-mid: #888;
    --dark-bg: #0a0b1e;
    --card-bg: rgba(255,255,255,0.04);
    --card-border: rgba(255,255,255,0.08);
    --font-primary: 'Outfit', sans-serif;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --glow-saffron: 0 0 30px rgba(255, 107, 53, 0.3);
    --glow-gold: 0 0 30px rgba(212, 175, 55, 0.3);
    --side-nav-width: 90px;
    --side-nav-expanded: 240px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ================================================================
   PRELOADER
   ================================================================ */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.preloader-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.preloader-name {
    font-family: var(--font-primary);
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: 0.5rem;
    background: linear-gradient(135deg, var(--white), var(--saffron), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.preloader-bar {
    width: 220px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--saffron), var(--gold));
    border-radius: 2px;
    animation: preloaderLoad 2s ease forwards;
}

@keyframes preloaderLoad {
    0% { width: 0%; }
    70% { width: 80%; }
    100% { width: 100%; }
}

.preloader-text {
    font-size: 0.85rem;
    color: var(--gray-light);
    letter-spacing: 0.15rem;
    font-family: var(--font-primary);
}

/* ================================================================
   SIDE NAVIGATION
   ================================================================ */
.side-nav {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: var(--side-nav-width);
    background: rgba(0, 2, 41, 0.95);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255,255,255,0.06);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    transition: width var(--transition);
    overflow: hidden;
}

.side-nav:hover {
    width: var(--side-nav-expanded);
    box-shadow: 5px 0 40px rgba(0,0,0,0.5);
}

.side-nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    margin-bottom: 20px;
    white-space: nowrap;
    width: 100%;
}

.side-nav-logo img {
    width: auto;
    height: 70px;
    max-width: 100%;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.side-nav-logo span {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.2rem;
    background: linear-gradient(135deg, var(--white), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.side-nav:hover .side-nav-logo span { opacity: 1; }

.side-nav-links {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.side-nav-links li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px;
    color: rgba(255,255,255,0.55);
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    border-left: 3px solid transparent;
}

.side-nav-links li a:hover,
.side-nav-links li a.active {
    color: var(--white);
    background: rgba(255, 107, 53, 0.08);
    border-left-color: var(--saffron);
}

.nav-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.nav-label {
    opacity: 0;
    transition: opacity 0.3s ease;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05rem;
}

.side-nav:hover .nav-label { opacity: 1; }

.side-nav-social {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
}

.side-nav-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}

.side-nav-social a:hover {
    background: var(--saffron);
    border-color: var(--saffron);
    color: white;
    transform: scale(1.1);
}

/* ================================================================
   MOBILE HEADER
   ================================================================ */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 2, 41, 0.96);
    backdrop-filter: blur(20px);
    padding: 14px 20px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-logo img { width: auto; height: 60px; max-width: 100%; object-fit: contain; }

.mobile-logo span {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.2rem;
    background: linear-gradient(135deg, var(--white), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 2, 41, 0.98);
    z-index: 999;
    align-items: center;
    justify-content: center;
}

.mobile-nav-overlay.open { display: flex; }

.mobile-nav-overlay ul {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-overlay a {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.mobile-nav-overlay a:hover { color: var(--saffron); }

/* ================================================================
   MAIN CONTENT & SECTIONS
   ================================================================ */
#main-content {
    margin-left: var(--side-nav-width);
    transition: margin-left var(--transition);
}

.section {
    min-height: 100vh;
    padding: 100px 0;
    position: relative;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Section Headers */
.section-eyebrow {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.35rem;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 12px;
}

.section-eyebrow.light { color: rgba(255, 107, 53, 0.8); }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 20px;
}

.section-title.light { color: var(--white); }

.section-desc {
    font-size: 1rem;
    color: var(--gray-mid);
    line-height: 1.8;
    max-width: 600px;
}

.section-desc.light { color: rgba(255,255,255,0.65); }

.section-header.center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.center .section-desc { margin: 0 auto; }

.highlight-text {
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-saffron {
    color: var(--saffron);
}

/* Buttons */
.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    color: white;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.08rem;
    border-radius: 4px;
    transition: all var(--transition);
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(255, 107, 53, 0.4); }
.btn-primary-cta:hover::before { opacity: 1; }
.btn-primary-cta span, .btn-primary-cta i { position: relative; z-index: 1; }

.btn-secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 36px;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.08rem;
    border-radius: 4px;
    transition: all var(--transition);
    backdrop-filter: blur(10px);
}

.btn-secondary-cta:hover {
    border-color: var(--saffron);
    background: rgba(255, 107, 53, 0.1);
    color: var(--saffron);
}

.btn-orange {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--saffron);
    color: white;
    font-family: var(--font-primary);
    font-weight: 600;
    border-radius: 4px;
    transition: all var(--transition);
    font-size: 0.9rem;
}

.btn-orange:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--glow-gold);
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero-section {
    padding: 0;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

#particles-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 2, 41, 0.92) 0%,
        rgba(0, 2, 41, 0.75) 50%,
        rgba(0, 4, 56, 0.85) 100%
    );
}

.tricolor-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    height: 4px;
    z-index: 10;
}

.bar-saffron { flex: 1; background: #FF9933; }
.bar-white { flex: 1; background: #FFFFFF; }
.bar-green { flex: 1; background: #138808; }

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
    padding: 0 80px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 53, 0.12);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    margin-bottom: 28px;
}

.tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--saffron);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.6); }
    50% { box-shadow: 0 0 0 8px rgba(255, 107, 53, 0); }
}

.hero-title {
    display: flex;
    flex-direction: column;
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
}

.title-line-1 {
    color: var(--white);
    text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.title-line-2 {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line-2 em { font-style: italic; }

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.05rem;
    margin-bottom: 24px;
}

.hero-subtitle strong {
    color: var(--saffron);
    font-weight: 600;
}

.hero-quote {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 40px;
}

.quote-line {
    width: 3px;
    height: 60px;
    background: linear-gradient(180deg, var(--saffron), transparent);
    flex-shrink: 0;
    margin-top: 4px;
}

.hero-quote p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 0;
    align-items: center;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 24px 32px;
    gap: 0;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 100px;
}

.stat-num {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-plus {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--saffron);
}

.stat-label {
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05rem;
    text-align: center;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    margin: 0 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 5;
}

.scroll-indicator span {
    font-family: var(--font-primary);
    font-size: 0.7rem;
    letter-spacing: 0.2rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, rgba(255,255,255,0.3), transparent);
    animation: scrollAnim 1.8s ease-in-out infinite;
}

@keyframes scrollAnim {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Animate In */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about-section {
    background: var(--off-white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-bg-text {
    position: absolute;
    top: 50%;
    right: -80px;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: 16rem;
    font-weight: 900;
    color: rgba(0,0,0,0.04);
    user-select: none;
    pointer-events: none;
    line-height: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    display: inline-block;
}

.about-photo {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    object-fit: cover;
    filter: contrast(1.05);
    position: relative;
    z-index: 2;
}

.about-img-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--saffron);
    border-radius: 12px;
    z-index: 1;
    opacity: 0.4;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 5;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.4);
}

.about-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
}

.credential-tag {
    padding: 6px 14px;
    background: var(--navy);
    color: var(--gold);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.1rem;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.about-content { padding: 20px 0; }

.about-name-block {
    margin: 20px 0 24px;
    padding-left: 20px;
    border-left: 4px solid var(--saffron);
}

.about-name-block h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
}

.about-designation {
    color: var(--saffron);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 4px;
}

.about-description {
    color: #444;
    line-height: 1.85;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 28px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #333;
}

.highlight-item i {
    color: var(--saffron);
    flex-shrink: 0;
}

/* ================================================================
   EXPERTISE SECTION
   ================================================================ */
.expertise-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.expertise-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.expertise-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
}

.expertise-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--navy) 0%, rgba(0,2,41,0.85) 50%, var(--navy) 100%);
}

.expertise-section .container { position: relative; z-index: 2; }

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.expertise-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--saffron), var(--gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expertise-card:hover {
    background: rgba(255, 107, 53, 0.05);
    border-color: rgba(255, 107, 53, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.expertise-card:hover::before { opacity: 1; }

.expertise-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--saffron);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon {
    background: var(--saffron);
    color: white;
}

.expertise-num {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.4);
    letter-spacing: 0.1rem;
    margin-bottom: 8px;
}

.expertise-card h3 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.4;
}

.expertise-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 16px;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.expertise-tags span {
    padding: 4px 10px;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 50px;
    font-size: 0.7rem;
    color: rgba(255, 107, 53, 0.8);
    font-family: var(--font-primary);
    font-weight: 500;
}

/* ================================================================
   CAMPAIGNS SECTION (IPAC STYLE)
   ================================================================ */
.ipac-campaigns-section {
    width: 100vw;
    max-width: 100%;
    height: 75vh;
    min-height: 600px;
    background: #000;
    position: relative;
    overflow: hidden;
}

.ipac-slider {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
}

.ipac-slide {
    flex: 1 1 0;
    min-width: 0;
    position: relative;
    height: 100%;
    transition: flex 0.4s ease;
    overflow: hidden;
    cursor: pointer;
    border-right: 1px solid rgba(0,0,0,0.3);
}

.ipac-slide:last-child {
    border-right: none;
}

.ipac-slide:hover {
    flex: 1.5 1 0;
}

.ipac-slide-top {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.ipac-line {
    width: 30px;
    height: 2px;
    background: #ff6b35;
    margin: 0 auto 15px;
}

.ipac-state {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.2rem;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.ipac-year {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.15rem;
    color: #fff;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.ipac-slide-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75%;
    z-index: 5;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.ipac-slide-img img {
    width: 130%;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom center;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 -10px 20px rgba(0,0,0,0.3));
}

.ipac-slide:hover .ipac-slide-img img {
    transform: scale(1.03);
}

.ipac-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    z-index: 8;
    pointer-events: none;
}


/* ================================================================
   IMPACT SECTION
   ================================================================ */
.impact-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.impact-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.impact-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.impact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,2,41,0.93) 0%, rgba(0,2,41,0.85) 100%);
}

.impact-section .container { position: relative; z-index: 2; }

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.impact-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 40px 28px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.impact-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.impact-card:hover::after { opacity: 1; }

.impact-icon {
    font-size: 2rem;
    color: var(--saffron);
    margin-bottom: 20px;
    opacity: 0.8;
}

.impact-num-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 2px;
    margin-bottom: 12px;
}

.impact-num {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--white), var(--saffron));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.impact-plus {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--saffron);
    margin-bottom: 4px;
}

.impact-label {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 6px;
}

.impact-sublabel {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
}

/* ================================================================
   WAR ROOM SECTION
   ================================================================ */
.warroom-section {
    background: var(--dark-bg);
    padding: 120px 0;
}

.warroom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.warroom-content .section-title { color: var(--white); }
.warroom-content .section-desc { color: rgba(255,255,255,0.6); margin-bottom: 36px; }

.warroom-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.warroom-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.wf-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--saffron);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.wf-text h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.wf-text p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

.warroom-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 12px 22px;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.08rem;
    color: var(--gold);
}

.warroom-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

.warroom-img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.warroom-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,2,41,0.95) 0%, transparent 100%);
    padding: 24px;
}

.warroom-stats-overlay {
    display: flex;
    gap: 24px;
}

.wso-item {
    display: flex;
    flex-direction: column;
}

.wso-num {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--saffron);
}

.wso-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
}

.warroom-pdf-preview {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.warroom-pdf-img {
    width: 100%;
    display: block;
}

.pdf-caption {
    background: rgba(255,255,255,0.04);
    padding: 10px 16px;
    font-family: var(--font-primary);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    text-align: center;
    letter-spacing: 0.05rem;
}

/* ================================================================
   GALLERY SECTION
   ================================================================ */
/* ========== 6.5 TEAM ========== */
.team-section {
    background: var(--white);
    padding: 100px 0;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.team-card {
    background: var(--off-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.team-img-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background-color: #f0f0f0;
}
.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}
.team-card:hover .team-img {
    transform: scale(1.05);
}
.team-info {
    padding: 25px 20px;
    text-align: center;
}
.team-name {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 5px;
    font-weight: 700;
}
.team-role {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 500;
}

.gallery-section {
    background: var(--off-white);
    padding: 120px 0;
}

.gallery-section .section-title { color: var(--navy); }
.gallery-section .section-desc { color: #666; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
    background: #ddd;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,2,41,0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay i {
    font-size: 2rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gallery-overlay span {
    font-family: var(--font-primary);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.8);
    text-align: center;
    line-height: 1.4;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-caption {
    color: rgba(255,255,255,0.7);
    font-family: var(--font-primary);
    font-size: 0.85rem;
    margin-top: 12px;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev, .lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 1.2rem;
    padding: 14px 18px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--saffron); border-color: var(--saffron); }

/* ================================================================
   WHY POLITYX SECTION
   ================================================================ */
.why-section {
    background: var(--navy);
    padding: 120px 0;
}

.why-section .section-title { color: var(--white); }
.why-section .section-desc { color: rgba(255,255,255,0.6); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.why-card {
    position: relative;
    padding: 40px 32px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    transition: all var(--transition);
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.25);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255, 107, 53, 0.1);
}

.why-card:hover::before { opacity: 1; }

.why-num {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.08);
    position: absolute;
    top: 20px;
    right: 24px;
    line-height: 1;
}

.why-card h3 {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    position: relative;
}

.why-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    position: relative;
}

/* ================================================================
   CONTACT SECTION
   ================================================================ */
.contact-section {
    background: var(--navy-mid);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.contact-bg-text {
    position: absolute;
    bottom: -80px;
    left: -60px;
    font-family: var(--font-display);
    font-size: 20rem;
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    user-select: none;
    pointer-events: none;
    line-height: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.contact-desc {
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ci-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--saffron);
    font-size: 1rem;
    flex-shrink: 0;
}

.ci-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ci-label {
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: rgba(255,255,255,0.4);
}

.ci-value {
    color: rgba(255,255,255,0.85);
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.2s;
}

a.ci-value:hover { color: var(--saffron); }

.contact-states {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.state-served {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

.state-served i { color: var(--saffron); font-size: 0.7rem; }

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 44px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
    align-items: start;
}

@media (max-width: 768px) {
    .contact-form {
        grid-template-columns: 1fr;
    }
}

.form-title, 
.form-group.full-width, 
.form-submit-btn,
.form-success {
    grid-column: 1 / -1;
}

.form-title {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.08rem;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    padding: 14px 18px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(255, 107, 53, 0.04);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.08);
}

.form-group select option {
    background: var(--navy);
    color: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.25);
}

.form-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    color: white;
    border: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1rem;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
}

.form-success {
    margin-top: 16px;
    padding: 14px 20px;
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(22, 163, 74, 0.3);
    border-radius: 8px;
    color: #4ade80;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
    background: #000115;
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-logo img { width: auto; height: 140px; max-width: 100%; object-fit: contain; }

.fl-main {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 0.25rem;
    background: linear-gradient(135deg, var(--white), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fl-sub {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3rem;
    color: rgba(255,255,255,0.35);
}

.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 260px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.fsocial {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    transition: all 0.3s ease;
}

.fsocial:hover {
    background: var(--saffron);
    border-color: var(--saffron);
    color: white;
    transform: translateY(-3px);
}

.footer-nav h4,
.footer-services h4,
.footer-contact h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

.footer-nav ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav li a,
.footer-services li {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
}

.footer-nav li a:hover { color: var(--saffron); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.86rem;
    color: rgba(255,255,255,0.55);
}

.footer-contact-item i {
    color: var(--saffron);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-states {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 20px;
}

.footer-states span {
    padding: 4px 10px;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 107, 53, 0.7);
    letter-spacing: 0.08rem;
}

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
    width: 100%;
}

.footer-credentials {
    letter-spacing: 0.1rem;
    color: rgba(212, 175, 55, 0.4) !important;
    font-family: var(--font-primary);
    font-size: 0.72rem !important;
}

.footer-tricolor {
    display: flex;
    height: 3px;
}

.footer-tricolor div:nth-child(1) { flex: 1; background: #FF9933; }
.footer-tricolor div:nth-child(2) { flex: 1; background: #FFFFFF; }
.footer-tricolor div:nth-child(3) { flex: 1; background: #138808; }

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--saffron);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
    transition: all var(--transition);
}

.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--gold); transform: translateY(-3px); }

/* Scroll reveals */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section header margin */
.section-header {
    margin-bottom: 50px;
}

/* ================================================================
   RESPONSIVE — TABLET
   ================================================================ */
@media (max-width: 1100px) {
    .expertise-grid { grid-template-columns: repeat(2, 1fr); }
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { text-align: center; }
    .warroom-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ================================================================
   RESPONSIVE — MOBILE
   ================================================================ */
@media (max-width: 768px) {
    :root { --side-nav-width: 0px; }

    .side-nav { display: none; }
    .mobile-header { display: flex; }

    #main-content {
        margin-left: 0;
        padding-top: 70px;
    }

    .container { padding: 0 24px; }
    .section { padding: 80px 0; }

    .hero-content { padding: 0 24px; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .stat-divider { width: 100%; height: 1px; margin: 0; }

    .expertise-grid { grid-template-columns: 1fr; }
    .impact-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .victory-margins { grid-template-columns: 1fr; }
    .hero-ctas { flex-direction: column; }

    .contact-form-wrapper { padding: 28px 20px; }

    .footer-bottom-inner { flex-direction: column; text-align: center; }

    .about-bg-text { font-size: 8rem; right: -20px; }
    .contact-bg-text { font-size: 8rem; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 2.2rem; }
    .section-title { font-size: 1.8rem; }
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

.footer-nav ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav li a,
.footer-services li {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
}

.footer-nav li a:hover { color: var(--saffron); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.86rem;
    color: rgba(255,255,255,0.55);
}

.footer-contact-item i {
    color: var(--saffron);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-states {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 20px;
}

.footer-states span {
    padding: 4px 10px;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 107, 53, 0.7);
    letter-spacing: 0.08rem;
}

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
    width: 100%;
}

.footer-credentials {
    letter-spacing: 0.1rem;
    color: rgba(212, 175, 55, 0.4) !important;
    font-family: var(--font-primary);
    font-size: 0.72rem !important;
}

.footer-tricolor {
    display: flex;
    height: 3px;
}

.footer-tricolor div:nth-child(1) { flex: 1; background: #FF9933; }
.footer-tricolor div:nth-child(2) { flex: 1; background: #FFFFFF; }
.footer-tricolor div:nth-child(3) { flex: 1; background: #138808; }

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--saffron);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
    transition: all var(--transition);
}

.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--gold); transform: translateY(-3px); }

/* Scroll reveals */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section header margin */
.section-header {
    margin-bottom: 50px;
}

/* ================================================================
   RESPONSIVE — TABLET
   ================================================================ */
@media (max-width: 1100px) {
    .expertise-grid { grid-template-columns: repeat(2, 1fr); }
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { text-align: center; }
    .warroom-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ================================================================
   RESPONSIVE — MOBILE
   ================================================================ */
@media (max-width: 768px) {
    :root { --side-nav-width: 0px; }

    .side-nav { display: none; }
    .mobile-header { display: flex; }

    #main-content {
        margin-left: 0;
        padding-top: 70px;
    }

    .container { padding: 0 24px; }
    .section { padding: 80px 0; }

    .hero-content { padding: 0 24px; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .stat-divider { width: 100%; height: 1px; margin: 0; }

    .expertise-grid { grid-template-columns: 1fr; }
    .impact-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .victory-margins { grid-template-columns: 1fr; }
    .hero-ctas { flex-direction: column; }

    .contact-form-wrapper { padding: 28px 20px; }

    .footer-bottom-inner { flex-direction: column; text-align: center; }

    .about-bg-text { font-size: 8rem; right: -20px; }
    .contact-bg-text { font-size: 8rem; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 2.2rem; }
    .section-title { font-size: 1.8rem; }
}

/* ================================================================
   FOOTPRINT STATS
   ================================================================ */
.footprint-stats {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 35px;
    margin-top: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footprint-stats:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.fp-stat-badge {
    text-align: center;
    border-right: 2px solid rgba(0, 0, 0, 0.05);
    padding-right: 35px;
    margin-right: 35px;
    min-width: 120px;
}

.fp-stat-num {
    font-size: 4rem;
    font-family: var(--font-primary);
    font-weight: 700;
    color: #FF6B35;
    line-height: 1;
}

.fp-stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: #666666;
    font-weight: 600;
    margin-top: 5px;
}

.fp-stat-content h3 {
    font-size: 1.6rem;
    color: #111111 !important;
    margin-bottom: 10px;
    font-weight: 700;
    font-family: var(--font-primary);
}

.fp-stat-content p {
    color: #444444 !important;
    font-size: 1.05rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .footprint-stats {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .fp-stat-badge {
        border-right: none;
        border-bottom: 2px solid rgba(0, 0, 0, 0.05);
        padding-right: 0;
        margin-right: 0;
        padding-bottom: 25px;
        margin-bottom: 25px;
    }
}

/* ========== SECTION 4.5: KEY LEADERS ========== */
.leaders-section {
    padding: 80px 0;
    background-color: var(--bg-alt);
}
.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.leader-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
[data-theme="dark"] .leader-card {
    background: var(--bg-card);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.leader-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 20px;
}
.leader-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: contain;
    border: 2px solid #f1f5f9;
}
.leader-meta {
    text-align: right;
    display: flex;
    flex-direction: column;
}
.lm-state {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e3a8a;
    letter-spacing: 0.05em;
}
[data-theme="dark"] .lm-state {
    color: #93c5fd;
}
.lm-year {
    font-size: 1rem;
    font-weight: 600;
    color: #475569;
}
[data-theme="dark"] .lm-year {
    color: #cbd5e1;
}
.leader-image-wrap {
    width: 100%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #bae6fd 0%, #e0f2fe 100%);
}
[data-theme="dark"] .leader-image-wrap {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}
.leader-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.leader-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.leader-name {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    text-align: center;
}
[data-theme="dark"] .leader-name {
    color: #f8fafc;
}
.leader-toggle-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    border: none;
    color: #0f172a;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
[data-theme="dark"] .leader-toggle-btn {
    background: #334155;
    color: #f8fafc;
}
.leader-toggle-btn:hover {
    background: #cbd5e1;
}
.leader-card.active .leader-toggle-btn {
    transform: rotate(180deg);
}
.leader-details {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.leader-details-inner {
    padding-top: 20px;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}
[data-theme="dark"] .leader-details-inner {
    color: #cbd5e1;
}
.leader-details-inner ul {
    margin-top: 10px;
    padding-left: 20px;
}
@media (max-width: 992px) {
    .leaders-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .leaders-grid {
        grid-template-columns: 1fr;
    }
}

/* Card Slider Animation */
.card-slider {
    position: relative;
}
.card-slider .slide-1,
.card-slider .slide-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: opacity 1s ease-in-out;
}
.card-slider .slide-1 {
    animation: crossfade-1 8s infinite;
}
.card-slider .slide-2 {
    animation: crossfade-2 8s infinite;
}

@keyframes crossfade-1 {
    0%, 45% { opacity: 1; }
    50%, 95% { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes crossfade-2 {
    0%, 45% { opacity: 0; }
    50%, 95% { opacity: 1; }
    100% { opacity: 0; }
}

/* 3-Image Card Slider Animation */
.card-slider-3 {
    position: relative;
}
.card-slider-3 .slide-1,
.card-slider-3 .slide-2,
.card-slider-3 .slide-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: opacity 1s ease-in-out;
    animation-duration: 12s;
    animation-iteration-count: infinite;
}
.card-slider-3 .slide-1 { animation-name: crossfade-3-1; }
.card-slider-3 .slide-2 { animation-name: crossfade-3-2; }
.card-slider-3 .slide-3 { animation-name: crossfade-3-3; }

@keyframes crossfade-3-1 {
    0%, 25% { opacity: 1; }
    33%, 92% { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes crossfade-3-2 {
    0%, 25% { opacity: 0; }
    33%, 58% { opacity: 1; }
    66%, 100% { opacity: 0; }
}
@keyframes crossfade-3-3 {
    0%, 58% { opacity: 0; }
    66%, 92% { opacity: 1; }
    100% { opacity: 0; }
}

/* Leader Name Slider */
.leader-name-slider {
    position: relative;
    width: 100%;
    height: 24px;
    display: flex;
    justify-content: center;
}
.leader-name-slider .leader-name {
    position: absolute;
    width: 100%;
    margin: 0;
    opacity: 0;
    animation-duration: 12s;
    animation-iteration-count: infinite;
}
.leader-name-slider .slide-1 { animation-name: crossfade-3-1; }
.leader-name-slider .slide-2 { animation-name: crossfade-3-2; }
.leader-name-slider .slide-3 { animation-name: crossfade-3-3; }

/* IPAC Style Footer */
.ipac-footer {
    background-color: #000000;
    color: #fff;
    padding: 0;
    font-family: var(--font-primary);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-office-header {
    text-align: center;
    padding: 40px 0 0 0;
    margin-bottom: 40px;
}
.footer-office-header h3 {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
    padding-bottom: 20px;
    border-bottom: 2px solid #f97316;
    min-width: 300px;
    color: #ffffff;
}

.footer-new-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    align-items: center;
}

.footer-map-col iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.footer-contact-col {
    display: flex;
    flex-direction: column;
}

.fc-block {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}
.fc-icon {
    font-size: 1.8rem;
    color: #f97316;
    margin-top: 2px;
}
.fc-text h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
    color: #ffffff;
}
.fc-text p {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 8px 0;
    font-weight: 400;
}

.csr-btn {
    display: inline-block;
    background-color: #f97316;
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
    transition: background 0.3s;
}
.csr-btn:hover {
    background-color: #ea580c;
    color: #fff;
}

.footer-bottom-bar {
    background-color: #000;
    padding: 25px 0;
}
.fbb-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.fbb-left {
    color: #94a3b8;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}
.fbb-right {
    display: flex;
    gap: 15px;
}
.fbb-social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.3s, opacity 0.3s;
}
.fbb-social:hover { transform: translateY(-3px); color: #fff; opacity: 0.9; }
.fbb-social.fb { background-color: #3b5998; }
.fbb-social.tw { background-color: #00aced; }
.fbb-social.ig { background-color: #e1306c; }
.fbb-social.yt { background-color: #ff0000; }
.fbb-social.li { background-color: #007bb6; }

@media (max-width: 900px) {
    .footer-new-grid { grid-template-columns: 1fr; gap: 40px; }
    .fbb-inner { flex-direction: column; gap: 20px; text-align: center; }
    .footer-map-col iframe { height: 300px; }
}

