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

:root {
  --iugc-navy: #10213F;
  --iugc-navy-900: #0C1931;
  --iugc-orange: #FF8500;
  --iugc-coral: #F0443E;
  --iugc-magenta: #B20A63;
  --iugc-purple: #54268A;
  --iugc-off-white: #F8FAFC;
  --iugc-muted: #5F6D84;
  --iugc-border: #DCE3ED;
  --iugc-gradient: linear-gradient(90deg, #FF9A00 0%, #F44538 45%, #B20A63 100%);
  --iugc-gradient-full: linear-gradient(90deg, #FF9A00, #F44538, #B20A63, #54268A);
  
  --journey-night: #10182F;
  --journey-saffron: #D97706;
  --journey-gold: #D4A72C;
  --journey-sand: #F7F0E3;
  
  --font-main: 'Plus Jakarta Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-main); color: var(--iugc-navy); line-height: 1.6; background: var(--iugc-off-white); overflow-x: hidden; }
h1, h2, h3, h4 { color: var(--iugc-navy); font-weight: 800; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1024px) { .container { padding: 0 64px; } }

/* Utilities */
.text-gradient { background: var(--iugc-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-navy { color: var(--iugc-navy); }
.text-uppercase { text-transform: uppercase; letter-spacing: 0.1em; }
.text-center { text-align: center; }
.eyebrow { font-size: 14px; font-weight: 700; color: var(--iugc-orange); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; display: block; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; border-radius: 12px; font-weight: 600; font-size: 16px; cursor: pointer; transition: all 0.2s ease; border: none; }
.btn-primary { background: var(--iugc-navy); color: #fff; }
.btn-primary:hover { background: var(--iugc-navy-900); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(16, 33, 63, 0.2); }
.btn-secondary { background: transparent; color: var(--iugc-navy); border: 2px solid var(--iugc-navy); }
.btn-secondary:hover { background: rgba(16, 33, 63, 0.05); }

/* Header */
header { background-color: #fff; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.header-inner { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo img { height: 48px; width: auto; }
nav ul { display: flex; list-style: none; gap: 32px; align-items: center; }
nav a { font-weight: 600; font-size: 15px; color: var(--iugc-navy); transition: color 0.2s; }
nav a:hover { color: var(--iugc-orange); }
.nav-cta { background: var(--iugc-navy); color: #fff; padding: 10px 24px; border-radius: 12px; }
.nav-cta:hover { background: var(--iugc-navy-900); color: #fff; }

/* Sections */
section { padding: 80px 0; }
@media (min-width: 1024px) { section { padding: 120px 0; } }

.bg-white { background: #fff; }
.bg-dots { background-image: radial-gradient(circle, #DCE3ED 1px, transparent 1px); background-size: 24px 24px; background-color: #fff; }

/* Hero */
.hero { display: flex; align-items: center; min-height: calc(100vh - 80px); background: #fff; position: relative; overflow: hidden; padding: 60px 0; }
.hero-content { max-width: 600px; position: relative; z-index: 2; }
.hero h1 { font-size: 48px; margin-bottom: 24px; letter-spacing: -0.02em; }
@media (min-width: 1024px) { .hero h1 { font-size: 64px; } }
.hero p { font-size: 18px; color: var(--iugc-muted); margin-bottom: 40px; }
.hero-image { position: absolute; right: 0; top: 0; bottom: 0; width: 50%; object-fit: cover; border-radius: 100px 0 0 100px; }
.hero-image-wrap { position: absolute; right: 0; top: 0; bottom: 0; width: 50%; overflow: hidden; border-radius: 100px 0 0 100px; }
.hero-image-wrap::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 8px; background: var(--iugc-gradient); z-index: 1; }
@media (max-width: 767px) {
  .hero { flex-direction: column; text-align: center; justify-content: center; }
  .hero-image-wrap { display: none; }
  .hero-content { margin: 0 auto; }
}

/* 4 Pillars */
.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 64px; border-top: 1px solid var(--iugc-border); padding-top: 48px; }
.pillar { text-align: center; }
.pillar-icon { width: 56px; height: 56px; border-radius: 50%; border: 2px solid var(--iugc-orange); color: var(--iugc-orange); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; background: #fff; }
.pillar h4 { font-size: 14px; text-transform: uppercase; margin-bottom: 8px; }
.pillar p { font-size: 13px; color: var(--iugc-muted); }

/* Vision & Mission */
.vm-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .vm-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.vm-box { display: flex; gap: 24px; margin-bottom: 48px; }
.vm-icon { width: 80px; height: 80px; flex-shrink: 0; border-radius: 50%; background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.06); display: flex; align-items: center; justify-content: center; border-left: 4px solid var(--iugc-orange); }
.vm-text h3 { font-size: 24px; text-transform: uppercase; color: var(--iugc-magenta); margin-bottom: 12px; }
.vm-text p { font-size: 18px; color: var(--iugc-navy); font-weight: 500; }

/* Problem We Solve */
.problem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 40px; }
@media (min-width: 768px) { .problem-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .problem-grid { grid-template-columns: repeat(8, 1fr); } }
.p-icon-box { background: #fff; border: 1px solid var(--iugc-border); border-bottom-width: 4px; border-radius: 12px; padding: 24px 16px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.02); transition: all 0.3s ease; cursor: default; }
.p-icon-box:hover { transform: translateY(-8px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); border-color: transparent; }
.p-icon-box svg { width: 32px; height: 32px; }
.p-icon-box span { display: block; font-size: 11px; font-weight: 800; text-transform: uppercase; line-height: 1.3; }

/* What We Do */
.wwd-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 1024px) { .wwd-grid { grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; } }
.wwd-card { display: flex; align-items: center; gap: 24px; background: #fff; padding: 24px; border-radius: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); transition: all 0.3s ease; border: 1px solid transparent; }
.wwd-card:hover { transform: translateX(8px); box-shadow: 0 12px 30px rgba(0,0,0,0.06); border-color: var(--iugc-border); }

/* Committees */
.committees-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; margin-top: 64px; }
.c-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.04); display: flex; flex-direction: column; transition: transform 0.2s; }
.c-card:hover { transform: translateY(-8px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.c-img { width: 100%; height: 200px; object-fit: cover; }
.c-bottom { padding: 48px 24px 32px; position: relative; text-align: center; flex: 1; display: flex; align-items: center; justify-content: center;}
.c-icon { position: absolute; top: -32px; left: 50%; transform: translateX(-50%); width: 64px; height: 64px; border-radius: 50%; border: 6px solid #fff; display: flex; align-items: center; justify-content: center; color: #fff; }
.c-title { font-size: 16px; font-weight: 800; color: #fff; text-transform: uppercase; }

/* Campaign */
.campaign-feature { background: var(--journey-night); color: #fff; border-radius: 24px; overflow: hidden; display: flex; flex-direction: column; }
@media (min-width: 768px) { .campaign-feature { flex-direction: row; } }
.campaign-text { padding: 48px; flex: 1; }
.campaign-text h2 { color: #fff; margin-bottom: 16px; }
.campaign-text .eyebrow { color: var(--journey-gold); }
.campaign-image { flex: 1; }
.campaign-image img { width: 100%; height: 100%; object-fit: cover; }

/* ================= HOW WE DO IT (THE BRIDGE INFOGRAPHIC) ================= */
.iugc-section { padding: 80px 24px; position: relative; }
.section-header { display: flex; justify-content: center; align-items: center; margin-bottom: 32px; text-align: center; flex-direction: column; }
.center-pill-tag { text-align: center; margin-bottom: 48px; }
.center-pill-tag span { display: inline-block; background: var(--iugc-navy-900); color: #fff; font-size: 14px; font-weight: 600; letter-spacing: 0.05em; padding: 10px 32px; border-radius: 50px; text-transform: uppercase; }

/* Main Content Layout */
.main-grid { display: grid; grid-template-columns: 280px 1fr 280px; gap: 32px; align-items: stretch; }
@media (max-width: 1200px) { .main-grid { grid-template-columns: 1fr; gap: 40px; } .hub-box { max-width: 600px; margin: 0 auto; } .constellation-wrapper, .profession-list { flex-direction: row; flex-wrap: wrap; justify-content: center; } .circle-node, .profession-item { width: auto; } }

/* Hub Boxes (Left & Right) */
.hub-box { text-align: center; background: #fff; border-radius: 24px; padding: 32px; box-shadow: 0 12px 30px rgba(0,0,0,0.03); border: 1px solid var(--iugc-border); }
.hub-box .tag-title { font-size: 32px; font-weight: 900; text-transform: uppercase; margin-bottom: 8px; }
.hub-box .tag-sub { font-size: 14px; font-weight: 600; color: var(--iugc-muted); margin-bottom: 32px; text-transform: uppercase; letter-spacing: 0.1em; }
.constellation-wrapper { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.circle-node { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 700; color: var(--iugc-navy); background: var(--iugc-off-white); padding: 12px 24px; border-radius: 30px; border: 1px solid var(--iugc-border); width: 100%; transition: all 0.2s; }
.circle-node:hover { background: #fff; box-shadow: 0 8px 20px rgba(0,0,0,0.05); transform: translateY(-2px); border-color: var(--iugc-orange); color: var(--iugc-orange); }
.circle-node i { color: var(--iugc-orange); font-size: 16px; }

/* Profession List */
.profession-list { display: flex; flex-direction: column; gap: 16px; }
.profession-item { display: flex; align-items: center; gap: 16px; background: var(--iugc-off-white); padding: 12px 24px; border-radius: 30px; border: 1px solid var(--iugc-border); width: 100%; transition: all 0.2s; }
.profession-item:hover { background: #fff; box-shadow: 0 8px 20px rgba(0,0,0,0.05); transform: translateY(-2px); border-color: var(--iugc-magenta); color: var(--iugc-magenta); }
.profession-item .p-icon { width: 32px; height: 32px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--iugc-navy); box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.profession-item:hover .p-icon { color: var(--iugc-magenta); }
.profession-item span { font-size: 14px; font-weight: 700; text-transform: uppercase; }

/* Center Bridge Container */
.bridge-container { padding: 40px 0; display: flex; flex-direction: column; justify-content: space-between; }
.pillars-grid-infographic { display: grid; grid-template-columns: repeat(7, 1fr); gap: 16px; margin-bottom: 48px; }
@media (max-width: 1200px) { .pillars-grid-infographic { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 768px) { .pillars-grid-infographic { grid-template-columns: repeat(2, 1fr); } }

.pillar-card { color: #fff; border-radius: 32px 32px 12px 12px; padding: 32px 16px 24px; display: flex; flex-direction: column; align-items: center; text-align: center; box-shadow: 0 8px 24px rgba(0,0,0,0.1); transition: transform 0.3s ease; }
.pillar-card:hover { transform: translateY(-8px); }
.pillar-icon { font-size: 32px; margin-bottom: 24px; }
.pillar-title { font-size: 12px; font-weight: 800; text-transform: uppercase; line-height: 1.4; margin-bottom: 16px; min-height: 60px; display: flex; align-items: center; }
.pillar-desc { font-size: 11px; line-height: 1.4; font-weight: 500; opacity: 0.9; border-top: 1px dashed rgba(255,255,255,0.4); padding-top: 16px; width: 100%; }

.pillar-1 { background-color: #19486a; }
.pillar-2 { background-color: #247ba0; }
.pillar-3 { background-color: #588b3b; }
.pillar-4 { background-color: #df9b29; }
.pillar-5 { background-color: #d86927; }
.pillar-6 { background-color: #bb2649; }
.pillar-7 { background-color: #4a2545; }

/* What We Provide strip */
.what-we-provide { text-align: center; border: 1px solid var(--iugc-border); padding: 32px 24px; background: #fff; box-shadow: 0 12px 30px rgba(0,0,0,0.03); border-radius: 24px; width: 70%; margin: 48px auto 0; }
@media (max-width: 768px) { .what-we-provide { width: 90%; } }
.what-we-provide h4 { font-size: 14px; font-weight: 800; text-transform: uppercase; margin-bottom: 24px; letter-spacing: 0.1em; color: var(--iugc-navy); }
.icons-row { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 24px; }
.icon-node { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.icon-circle { width: 56px; height: 56px; border-radius: 50%; border: 2px solid var(--iugc-border); display: flex; align-items: center; justify-content: center; color: var(--iugc-orange); font-size: 20px; background: #fff; transition: all 0.2s; }
.icon-node:hover .icon-circle { border-color: var(--iugc-orange); transform: scale(1.1); box-shadow: 0 4px 12px rgba(255, 133, 0, 0.2); }
.icon-node span { font-size: 12px; font-weight: 700; text-transform: uppercase; color: var(--iugc-navy); }

/* Footer Slogan */
.footer-slogan { text-align: center; margin-top: 64px; font-size: 24px; font-weight: 600; color: var(--iugc-muted); line-height: 1.6; }

/* Footer */
footer { background: var(--iugc-navy-900); color: #fff; padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 48px; margin-bottom: 48px; }
.footer-logo img { height: 40px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-links h4 { color: #fff; margin-bottom: 20px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px; text-align: center; color: rgba(255,255,255,0.5); font-size: 14px; }
/* Mobile Header Updates */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--iugc-navy);
    cursor: pointer;
}
@media (max-width: 991px) {
    header {
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 999;
        background: #fff;
    }
    .mobile-menu-btn {
        display: block;
    }
    nav#mainNav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        padding: 20px;
    }
    nav#mainNav.active {
        display: block;
    }
    nav#mainNav ul {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    .nav-cta {
        display: inline-block;
        width: 100%;
        text-align: center;
    }
}

/* Primary Hero Section */
.primary-hero-section {
    position: relative;
    min-height: calc(100vh - 80px);
    height: auto;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 60px 20px;
}
.exclusive-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 2;
    background: linear-gradient(135deg, #FF8500, #F0443E);
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(240, 68, 62, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.exclusive-badge i {
    margin-right: 6px;
    font-size: 12px;
}
.primary-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.primary-hero-logo {
    max-width: 90%;
    height: auto;
    max-height: 300px;
    margin-bottom: 40px;
    transform: scale(1);
    transition: transform 0.5s ease;
}
.primary-hero-title {
    color: black;
    font-size: 36px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}
.primary-hero-desc {
    color: rgba(0,0,0,0.8);
    font-size: 20px;
    margin-bottom: 48px;
    max-width: 650px;
    line-height: 1.6;
    font-weight: 500;
}
.primary-hero-btn {
    background: linear-gradient(135deg, #D97706, #FF8500);
    color: white;
    padding: 18px 48px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.5);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.primary-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(217, 119, 6, 0.6);
    color: white;
}

/* Mobile Adjustments for Primary Hero */
@media (max-width: 768px) {
    .primary-hero-section {
        padding: 40px 20px 80px; 
    }
    .exclusive-badge {
        top: 20px;
        right: 20px;
        font-size: 12px;
        padding: 6px 16px;
    }
    .primary-hero-logo {
        max-height: 200px;
        margin-bottom: 30px;
        margin-top: 40px; 
    }
    .primary-hero-title {
        display: none;
    }
    .primary-hero-desc {
        display: none;
    }
    .primary-hero-btn {
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* Secondary Hero Section */
.secondary-hero-section {
    padding: 0; 
    min-height: 500px; 
    display: flex; 
    align-items: center; 
    position: relative;
}
.secondary-hero-content {
    max-width: 550px; 
    padding: 60px 0;
}
.secondary-hero-title {
    font-size: 56px; 
    line-height: 1.1; 
    margin-bottom: 8px;
}
.secondary-hero-subtitle {
    font-size: 24px; 
    font-weight: 500; 
    color: var(--iugc-navy); 
    margin-bottom: 24px;
}
.secondary-hero-desc {
    font-weight: 500; 
    margin-bottom: 40px; 
    color: var(--iugc-muted); 
    max-width: 480px;
}
.secondary-hero-buttons {
    display: flex; 
    gap: 16px; 
    margin-bottom: 48px;
}
.secondary-hero-stats {
    display: flex; 
    gap: 32px; 
    border-top: 1px solid var(--iugc-border); 
    padding-top: 24px;
}
.divider {
    width: 1px;
    background: var(--iugc-border);
}
.secondary-hero-image-wrap {
    position: absolute; 
    right: 0; 
    top: 0; 
    bottom: 0; 
    width: 55%; 
    background-position: right center;
    background-size: cover;
    z-index: 1;
}
.secondary-hero-image-fade {
    position: absolute; 
    top: 0; 
    left: 0; 
    bottom: 0; 
    width: 150px; 
    background: linear-gradient(to right, #fff 0%, transparent 100%);
}

/* Mobile Adjustments for Secondary Hero */
@media (max-width: 768px) {
    .secondary-hero-content {
        padding: 40px 20px;
        position: relative;
        z-index: 3;
    }
    .secondary-hero-title {
        font-size: 36px;
    }
    .secondary-hero-subtitle {
        font-size: 20px;
    }
    .secondary-hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    .secondary-hero-buttons .btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
    .secondary-hero-stats {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: space-between;
    }
    .secondary-hero-stats > div {
        flex: 1 1 45%;
    }
    .secondary-hero-stats .divider {
        display: none; 
    }
    .secondary-hero-image-wrap {
        width: 100%;
        opacity: 0.15; /* fade it out heavily so text remains readable */
    }
    .secondary-hero-image-fade {
        width: 100%;
        background: linear-gradient(to right, #fff 0%, rgba(255,255,255,0.7) 100%);
    }
}

/* Background overrides for primary hero section */
.primary-hero-section {
    background-image: url('../images/2nd section bg.png');
}

@media (max-width: 768px) {
    .primary-hero-section {
        background-image: url('../images/download (4).webp');
    }
}
