/* ================================================================
   NCRBC 2026 — National Conference on Responsible Business Conduct
   styles.css — Main Stylesheet
   Colour Palette: Light, bright, modern — India-inspired
   ================================================================ */

/* ── DESIGN TOKENS ── */
:root {
  /* Primary: Saffron-Orange inspired */
  --primary:        #E8500A;   /* vibrant saffron-orange */
  --primary-dark:   #C43D00;
  --primary-light:  #FF7540;
  --primary-pale:   #FFF0EB;

  /* Secondary: India-green */
  --secondary:      #138808;   /* India flag green */
  --secondary-dark: #0D6406;
  --secondary-light:#1FAD0E;
  --secondary-pale: #EDFBE9;

  /* Accent: Navy-Blue */
  --accent:         #1A3A6B;
  --accent-mid:     #2A5298;
  --accent-light:   #3D6DB5;
  --accent-pale:    #EBF1FB;

  /* Menu bar — deep navy → sky blue */
  --navy-deep:      #0B1E42;
  --sky-blue:       #3BB4F2;
  --header-gradient: linear-gradient(100deg, var(--navy-deep) 0%, var(--accent) 40%, var(--accent-light) 72%, var(--sky-blue) 100%);

  /* Neutrals */
  --white:          #FFFFFF;
  --cream:          #FEFCFA;
  --off-white:      #F8F6F2;
  --light-gray:     #F2F4F7;
  --border:         #E2E8F0;
  --border-strong:  #C8D4E3;

  /* Text */
  --text-dark:      #1A2535;
  --text-body:      #374151;
   /* --text-dim:      #1A2535;*/
  --text-light:     #1A2535; 
  --text-dim:    #6B7280;
  /* --text-light:     #9CA3AF; */

  /* Status colors */
  --gold:           #D97706;
  --gold-pale:      #FFFBEB;
  --gold-border:    #E8500A;

  /* Shadows */
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:      0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:      0 12px 40px rgba(0,0,0,0.12);

  /* Layout */
  --max-width:       1120px;
  --max-width-wide:  1280px;
  --nav-height:      76px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Segoe UI', Inter, system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── SITE HEADER ── */
.site-header { position: relative; }

/* Primary navigation */
/* ===========================
   NCRBC HEADER STYLE
=========================== */

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 85px;
    z-index: 999;
    background: #ecf7fd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,.12);
    overflow: hidden;
}

nav::after{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:52%;
    height:100%;
    background:#dad7d7;
    clip-path:polygon(8% 0,100% 0,100% 100%,0 100%);
    z-index:0;
}

/* Keep content above angle */
nav > *{
    position:relative;
    z-index:2;
}

/* LEFT LOGOS */
.nav-brand{
    display:flex;
    align-items:center;
    gap:14px;
}

.nav-brand img{
    height:68px;
    width:auto;
}

.nav-logo-img{
    height:70px;
    width:auto;
}

/* MENU */
.nav-links{
    display:flex;
    align-items:center;
    gap:28px;
    list-style:none;
    margin:0;
    padding:0;
}

    .nav-links a {
        color: #0d8dc8;
        text-decoration: none;
        font-size: 15px !important;
        font-weight: 300 !important;
        text-transform: uppercase;
    }

.nav-links a:hover{
    color:#005f87;
}

/* RIGHT LOGOS */
.header-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.header-right img{
    height:55px;
    width:auto;
}
nav::after{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:52%;
    height:100%;
    background:#ffffff;
    clip-path:polygon(8% 0,100% 0,100% 100%,0 100%);
    z-index:0;
}


nav > *{
    position:relative;
    z-index:2;
}

/* LEFT LOGOS */
.nav-brand{
    display:flex;
    align-items:center;
    gap:14px;
}

.nav-brand img{
    height:68px;
    width:auto;
}

.nav-logo-img{
    height:70px;
    width:auto;
}

/* MENU */
.nav-links{
    display:flex;
    align-items:center;
    gap:28px;
    list-style:none;
    margin:0;
    padding:0;
}

.nav-links a{
    color:#0d8dc8;
    text-decoration:none;
    font-size:16px;
    font-weight:500;
    text-transform:uppercase;
}

.nav-links a:hover{
    color:#005f87;
}

/* RIGHT LOGOS */
.header-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.header-right img{
    height:55px;
    width:auto;
}


.hero{
    margin-top:85px;
}
/* Nav inner — 3-column: logos-left | links | logos-right */
.nav-inner {
  height: 100%; width: 100%; max-width: var(--max-width-wide);
  margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 12px;
}

/* Logo groups */
/* .nav-logos-left,
.nav-logos-right {
  display: flex; align-items: center; gap: 10px;
} */


.nav-logos-left,
.nav-logos-right {
    display: flex;
    align-items: center;      /* Vertical center */
    justify-content: center;
    gap: 30px;
    height: 100%;
}

.viksit-logo {
    transform: scale(1.9); /* was 1.3 */
    transform-origin: center;
    
}

.viksit-logo1 {
    padding-left:20px;
    transform: scale(1.4); /* was 1.3 */
    transform-origin: center;
}


/* Individual logo images */
.nav-logos-left img,
.nav-logos-right img {
    display: block;
    max-height: 58px;        /* Adjust as needed */
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}


/* National Emblem */
.nav-logos-left img:first-child {
    max-height: 68px;
}

/* IICA Logo */
.nav-logos-left img:last-child {
    max-height: 60px;
}

/* G20, Azadi etc */
.nav-logos-right img {
    max-height: 50px;
}






.nav-logos-right { justify-content: flex-end; }

/* Individual logo sizing */
.nav-logo { display: block; object-fit: contain; flex-shrink: 0; }

/* National Emblem — white filter so it shows on dark navy */
.nav-logo--emblem {
  height: 54px; width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 1px 4px rgba(0,0,0,.5));
}

/* Viksit Bharat — natural colours, slight shadow */
.nav-logo--viksit {
  height: 52px; width: auto;
  border-radius: 5px;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.4));
}

/* CSR IICA — circular badge, white bg pill */
.nav-logo--csr {
  height: 54px; width: 54px;
  border-radius: 50%;
  background: #ffffff;
  padding: 3px;
  object-fit: contain;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}

/* IICA — square logo, white background tile */
.nav-logo--iica {
  height: 48px; width: auto;
  border-radius: 6px;
  background: #ffffff;
  padding: 4px 8px;
  object-fit: contain;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}

/* Nav links — centred */
.nav-links { display: flex; gap: 22px; justify-content: center; flex-wrap: nowrap; }
.nav-links a {
  position: relative; display: inline-block;
  font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: #002147;
  text-shadow: 0 1px 3px rgba(0,0,0,.3); white-space: nowrap;
  text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255,255,255,.35);
}
.nav-links a::after {
  content: ''; position: absolute; left: 50%; right: 50%; bottom: 0; height: 2px;
  background: #FF9933; transition: left .25s ease, right .25s ease;
}
.nav-links a:hover { color: #0a0a0a; text-decoration-color: transparent; }
.nav-links a:hover::after,
.nav-links a.active::after { left: 0; right: 0; }
.nav-links a.active { color: #ffffff; text-decoration-color: transparent; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: #ffffff; border-radius: 2px; transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }



/* Mobile Drawer */
.mobile-menu {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0; z-index: 150;
  background: var(--white);
  flex-direction: column;
  overflow-y: auto;
  padding: calc(var(--nav-height) + 14px) 30px 14px;
}



.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block; padding: 16px 24px;
  font-size: 16px; font-weight: 700; color: var(--accent);
  border-bottom: 1px solid var(--border);
  -webkit-tap-highlight-color: transparent; transition: background .15s;
  
}


.mobile-menu a:active { background: var(--accent-pale); }
.mobile-menu .m-cta {
  margin: 20px 20px 0; border-radius: 6px; border-bottom: none;
  background: var(--primary); color: var(--white); text-align: center;
  padding: 16px; font-size: 15px;
}

/* ── BUTTONS ── */
.btn { display: inline-block; padding: 13px 30px; border-radius: 5px; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; transition: all .2s; text-align: center; }
.btn-primary   { background: var(--primary); color: var(--white); border: 2px solid var(--primary); }
.btn-primary:hover  { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,80,10,.25); }
.btn-secondary { background: var(--secondary); color: var(--white); border: 2px solid var(--secondary); }
.btn-secondary:hover { background: var(--secondary-dark); border-color: var(--secondary-dark); transform: translateY(-1px); }
.btn-outline   { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-outline:hover  { background: var(--accent); color: var(--white); }
.btn-ghost-orange { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-ghost-orange:hover { background: var(--primary); color: var(--white); }

/* ── COUNTDOWN ── */
.countdown-bar {
  background: var(--accent);
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap;
}
.cd-label { font-size: 10px; letter-spacing: .12em; color: rgba(255,255,255,.5); text-transform: uppercase; font-weight: 700; margin-right: 8px; }
.cd-unit {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px; padding: 7px 14px; min-width: 58px;
}
.cd-num  { font-size: 22px; font-weight: 800; color: var(--gold-border); font-variant-numeric: tabular-nums; line-height: 1; }
.cd-lbl  { font-size: 8px; letter-spacing: .1em; color: rgba(255,255,255,.4); text-transform: uppercase; margin-top: 3px; }
.cd-sep  { font-size: 20px; color: rgba(255,255,255,.2); align-self: center; padding-bottom: 14px; font-weight: 300; }

/* ── MARQUEE ── */
.marquee-wrap { overflow: hidden; background: var(--primary); padding: 10px 0; }
.marquee-track { display: flex; gap: 36px; width: max-content; animation: marqueeScroll 38s linear infinite; }
.marquee-item  { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.95); white-space: nowrap; display: flex; align-items: center; gap: 10px; }
.marquee-sep   { opacity: .5; font-size: 8px; }

/* ── SECTION LAYOUT ── */
section { padding: 80px 48px; }
.si     { max-width: var(--max-width); margin: 0 auto; }
.eyebrow {
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  font-weight: 800; margin-bottom: 8px; color: var(--primary);
}
.section-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700; line-height: 1.18; margin-bottom: 14px;
  color: var(--accent);
}
.section-desc { font-size: 15px; color: var(--text-dim); line-height: 1.8; max-width: 620px; }
.color-line {
  width: 44px; height: 3px; border-radius: 2px; margin-bottom: 22px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
}

/* ── ABOUT ── */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: start; margin-top: 48px; }
.about-text p { color: var(--text-dim); line-height: 1.85; font-size: 15px; margin-bottom: 14px; }
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--accent); font-weight: 700; }
.about-text .theme-callout {
  background: linear-gradient(135deg, var(--primary-pale), var(--secondary-pale));
  border-left: 4px solid var(--primary);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px; margin: 18px 0;
  font-size: 15px; font-style: italic; font-weight: 600; color: var(--accent);
}
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat {
  background: var(--light-gray); border: 1px solid var(--border);
  border-radius: 10px; padding: 22px; transition: all .2s;
}
.stat:hover { border-color: var(--primary); background: var(--primary-pale); transform: translateY(-2px); }
.stat-n { font-family: Georgia, serif; font-size: 36px; font-weight: 700; color: var(--primary); line-height: 1; margin-bottom: 6px; }
.stat-n small { font-size: 20px; color: var(--secondary); }
.stat-l { font-size: 12px; color: var(--text-dim); line-height: 1.5; }

/* Objectives grid */
.obj-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 48px; }
.obj-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 26px; display: flex; gap: 18px; align-items: flex-start;
  transition: all .25s;
}
.obj-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); transform: translateY(-2px); }
.obj-num {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--primary); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; font-family: Georgia, serif;
}
.obj-title { font-size: 14px; font-weight: 700; color: var(--accent); margin-bottom: 6px; }
.obj-desc  { font-size: 13px; color: var(--text-dim); line-height: 1.7; }

/* ── PANELS / THEMES ── */
.themes { background: var(--light-gray); }
.panels-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 48px; }
.panel-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 24px; transition: all .25s; position: relative; overflow: hidden;
}
.panel-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.panel-card:hover::after { transform: scaleX(1); }
.panel-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.panel-num {
  font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 8px;
}
.panel-icon { font-size: 26px; margin-bottom: 10px; }
.panel-title { font-size: 14px; font-weight: 700; color: var(--accent); margin-bottom: 8px; line-height: 1.4; }
.panel-desc  { font-size: 12px; color: var(--text-dim); line-height: 1.75; }

/* ── SPEAKERS ── */
.speakers { background: var(--white); }
.spk-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.spk-card {
  background: var(--light-gray); border: 1px solid var(--border); border-radius: 10px;
  padding: 20px 16px; text-align: center; transition: all .25s;
}
.spk-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.spk-av {
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-mid));
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; color: var(--white);
  font-family: Georgia, serif;
  border: 3px solid var(--white);
  box-shadow: 0 4px 12px rgba(26,58,107,.18);
}
.spk-av.minister { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.spk-av.intl     { background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)); }
.spk-av.finance  { background: linear-gradient(135deg, var(--gold), #B45309); }
.spk-name  { font-size: 12px; font-weight: 800; margin-bottom: 3px; color: var(--accent); line-height: 1.3; }
.spk-title { font-size: 10px; color: var(--text-dim); line-height: 1.5; }
.spk-org   { font-size: 10px; color: var(--primary); margin-top: 4px; font-weight: 700; }
.spk-badge {
  display: inline-block; margin-top: 6px;
  font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 100px;
}
.badge-minister { background: rgba(232,80,10,.1); color: var(--primary); }
.badge-intl     { background: rgba(19,136,8,.1);  color: var(--secondary-dark); }
.badge-govt     { background: rgba(26,58,107,.1); color: var(--accent); }
.badge-industry { background: rgba(217,119,6,.1); color: var(--gold); }

/* ── SCHEDULE ── */
.schedule { background: var(--light-gray); }
.sched-tabs {
  display: flex; gap: 4px; margin: 32px 0;
  background: var(--border); border-radius: 8px; padding: 4px; width: fit-content;
}
.tab-btn {
  padding: 9px 24px; border-radius: 6px;
  font-size: 11px; font-weight: 800; cursor: pointer;
  color: var(--text-dim); background: transparent;
  letter-spacing: .05em; text-transform: uppercase; transition: all .2s;
}
.tab-btn.active { background: var(--accent); color: var(--white); }
.tab-btn:hover:not(.active) { background: rgba(26,58,107,.08); color: var(--accent); }
.sched-day { display: none; }
.sched-day.active { display: block; }
.sched-list { background: var(--white); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.sched-item {
  display: grid; grid-template-columns: 145px 1fr;
  border-bottom: 1px solid var(--border); transition: background .15s;
}
.sched-item:last-child { border-bottom: none; }
.sched-item:hover { background: var(--primary-pale); }
.sched-time {
  padding: 18px 16px 18px 22px;
  font-size: 11px; color: var(--primary); font-weight: 800; letter-spacing: .04em;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 4px;
}
.sched-track { font-size: 9px; color: var(--text-light); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.sched-content { padding: 18px 22px; }
.sched-tag {
  display: inline-block; border-radius: 100px;
  padding: 2px 10px; font-size: 9px; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase; margin-bottom: 6px;
}
.tag-plenary   { background: rgba(26,58,107,.08); border: 1px solid rgba(26,58,107,.15); color: var(--accent); }
.tag-session   { background: var(--secondary-pale); border: 1px solid rgba(19,136,8,.2); color: var(--secondary-dark); }
.tag-workshop  { background: var(--gold-pale); border: 1px solid rgba(217,119,6,.25); color: var(--gold); }
.tag-networking{ background: var(--primary-pale); border: 1px solid rgba(232,80,10,.2); color: var(--primary); }
.sched-title  { font-size: 13px; font-weight: 700; margin-bottom: 4px; color: var(--accent); }
.sched-spk    { font-size: 11px; color: var(--text-dim); }
.sched-spk strong { color: var(--accent); font-weight: 700; }

/* ── PARTNERS ── */
.partners { background: var(--white); }
.p-section-label {
  font-size: 9px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-light); margin: 28px 0 12px; font-weight: 800;
}
.p-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.p-card {
  background: var(--light-gray); border: 1px solid var(--border); border-radius: 6px;
  padding: 10px 18px; font-size: 11px; font-weight: 700; color: var(--text-dim);
  transition: all .2s;
}
.p-card:hover { border-color: var(--primary); color: var(--accent); background: var(--primary-pale); }
.p-card.feat  { border-color: rgba(26,58,107,.25); color: var(--accent); background: var(--accent-pale); font-weight: 800; }

/* ── REGISTRATION ── */
.register { background: var(--light-gray); }
.reg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 48px; }
.reg-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 28px 24px; transition: all .3s;
}
.reg-card.featured { border-color: var(--primary); box-shadow: 0 6px 24px rgba(232,80,10,.12); }
.reg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.reg-badge {
  font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--white); border-radius: 4px; padding: 4px 10px;
  display: inline-block; margin-bottom: 16px;
}
.reg-badge.orange { background: var(--primary); }
.reg-badge.green  { background: var(--secondary); }
.reg-badge.blue   { background: var(--accent); }
.reg-type  { font-size: 12px; color: var(--text-dim); margin-bottom: 5px; }
.reg-price { font-family: Georgia, serif; font-size: 30px; font-weight: 700; color: var(--accent); margin-bottom: 3px; }
.reg-price span { font-size: 13px; font-weight: 400; color: var(--text-dim); }
.reg-note  { font-size: 10px; color: var(--text-light); margin-bottom: 20px; }
.reg-features { margin-bottom: 20px; }
.reg-features li {
  font-size: 12px; color: var(--text-dim); padding: 5px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.reg-features li:last-child { border-bottom: none; }
.reg-features li::before { content: '✓'; color: var(--secondary); font-weight: 900; flex-shrink: 0; font-size: 13px; }
.r-btn {
  display: block; text-align: center; padding: 11px; border-radius: 5px;
  font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  transition: all .2s; width: 100%;
}
.r-btn-primary { background: var(--primary); color: var(--white); }
.r-btn-primary:hover { background: var(--primary-dark); }
.r-btn-secondary { background: var(--secondary); color: var(--white); }
.r-btn-secondary:hover { background: var(--secondary-dark); }
.r-btn-outline { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); }
.r-btn-outline:hover { background: var(--accent); color: var(--white); }

/* ── VENUE ── */
.venue { background: var(--white); }
.v-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; margin-top: 48px; align-items: start; }
.v-detail { display: flex; flex-direction: column; gap: 18px; }
.v-item { display: flex; gap: 14px; align-items: flex-start; }
.v-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--accent-pale); border: 1px solid var(--border-strong);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.v-lbl   { font-size: 9px; letter-spacing: .1em; color: var(--text-light); text-transform: uppercase; margin-bottom: 2px; font-weight: 800; }
.v-val   { font-size: 13px; color: var(--accent); font-weight: 700; line-height: 1.5; }
.v-sub   { font-size: 11px; color: var(--text-dim); margin-top: 2px; }
.v-map   { background: var(--light-gray); border: 1px solid var(--border); border-radius: 10px; height: 300px; overflow: hidden; }
.v-map iframe { width: 100%; height: 100%; border: none; }

/* ── ABOUT IICA / SBE ── */
.about-org { background: var(--accent-pale); }
.org-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.org-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 32px; transition: all .2s;
}
.org-card:hover { box-shadow: var(--shadow-md); }
.org-card-title {
  font-family: Georgia, serif; font-size: 18px; font-weight: 700;
  color: var(--accent); margin-bottom: 14px;
  padding-bottom: 14px; border-bottom: 2px solid var(--primary);
}
.org-card p { font-size: 14px; color: var(--text-dim); line-height: 1.8; margin-bottom: 12px; }
.org-card p:last-child { margin-bottom: 0; }
.org-card strong { color: var(--accent); font-weight: 700; }

/* ── FAQ ── */
.faq { background: var(--light-gray); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 48px; }
.faq-item {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  padding: 20px; cursor: pointer; transition: all .2s;
}
.faq-item:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.faq-q { font-size: 13px; font-weight: 700; color: var(--accent); display: flex; justify-content: space-between; gap: 10px; }
.faq-icon { color: var(--primary); flex-shrink: 0; font-size: 20px; line-height: 1; font-weight: 300; }
.faq-a { font-size: 12px; color: var(--text-dim); line-height: 1.75; margin-top: 10px; display: none; }

/* ── FOOTER ── */
footer { background: var(--accent); color: var(--white); padding: 48px 48px 28px; }
.f-inner { max-width: var(--max-width); margin: 0 auto; }
.f-gov{
    display:flex;
    align-items:center;
    gap:20px;
    padding-bottom:28px;
    margin-bottom:28px;
    border-bottom:1px solid rgba(255,255,255,.15);
}
.f-gov img {
    height: 55px;
    width: auto;
    object-fit: contain;
    opacity: 1;
    filter: none;
}
.f-gov-text { font-size: 11px; color: rgba(255,255,255,.45); line-height: 1.7; margin-left: 12px; }
.f-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.f-brand { font-family: Georgia, serif; font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.f-brand-theme { font-size: 12px; color: rgba(255,255,255,.5); font-style: italic; margin-bottom: 14px; }
.f-desc { font-size: 11px; color: rgba(255,255,255,.42); line-height: 1.75; margin-bottom: 16px; }
.f-social { display: flex; gap: 8px; }
.f-social a {
  width: 32px; height: 32px; border-radius: 6px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: 11px; font-weight: 800;
  transition: all .2s;
}
.f-social a:hover { border-color: var(--primary-light); color: var(--primary-light); }
.f-col-title { font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-border); margin-bottom: 12px; }
.f-links { display: flex; flex-direction: column; gap: 8px; }
.f-links a { font-size: 11px; color: rgba(255,255,255,.42); transition: color .2s; }
.f-links a:hover { color: var(--white); }
.f-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.f-copy { font-size: 10px; color: rgba(255,255,255,.3); line-height: 1.6; }
.f-legal { display: flex; gap: 14px; }
.f-legal a { font-size: 10px; color: rgba(255,255,255,.3); }
.f-legal a:hover { color: var(--white); }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── ANIMATIONS ── */
@keyframes fadeUp    { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse     { 0%,100%{opacity:1} 50%{opacity:.3} }
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

/* ================================================================
   RESPONSIVE STYLES
   ================================================================ */

/* Tablet (≤ 960px) */
@media (max-width: 960px) {
  :root { --nav-height: 64px; }

  .nav-inner { padding: 0 16px; display: flex; justify-content: space-between; align-items: center; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-logos-left { gap: 6px; }
  .nav-logos-right { gap: 6px; }
  .nav-logo--emblem { height: 40px; }
  .nav-logo--viksit { height: 38px; }
  .nav-logo--csr    { height: 40px; width: 40px; }
  .nav-logo--iica   { height: 36px; }

  section { padding: 56px 20px; }

  .about-grid, .v-grid, .org-grid { grid-template-columns: 1fr; gap: 36px; }
  .panels-grid { grid-template-columns: 1fr; gap: 12px; }
  .spk-grid { grid-template-columns: repeat(2, 1fr); }
  .reg-grid { grid-template-columns: 1fr; }
  .obj-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .f-top { grid-template-columns: 1fr 1fr; }

  .sched-item { grid-template-columns: 1fr; }
  .sched-time { border-right: none; border-bottom: 1px solid var(--border); padding: 14px 18px 8px; flex-direction: row; gap: 12px; align-items: center; }
  .sched-track { margin-left: auto; }
  .sched-content { padding: 10px 18px 18px; }

  .sched-tabs { width: 100%; }
  .tab-btn { flex: 1; font-size: 10px; padding: 8px 10px; }

  .countdown-bar { gap: 5px; }
  .cd-label { display: none; }
  .cd-num { font-size: 19px; }
  .cd-unit { min-width: 50px; padding: 6px 10px; }
}

/* Mobile (≤ 480px) */
@media (max-width: 480px) {
  section { padding: 44px 16px; }

  .spk-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .spk-card { padding: 14px 10px; }
  .spk-av { width: 56px; height: 56px; font-size: 13px; }
  .spk-name { font-size: 11px; }

  .stats { grid-template-columns: 1fr 1fr; }
  .f-top { grid-template-columns: 1fr; }
  .f-gov { flex-direction: column; align-items: flex-start; }
  .f-bottom { flex-direction: column; }

  .cd-sep { display: none; }
  .cd-unit { min-width: 42px; padding: 5px 8px; }
  .cd-num  { font-size: 16px; }
}



.conference-slider{
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 60px;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.conference-slider img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.conference-slider img.active{
    opacity: 1;
}




.conference-design{
    margin-top:40px;
    padding:30px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
}

.design-header{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:25px;
}

.design-icon{
    font-size:32px;
}

.design-label{
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:var(--accent);
}





/* PANEL CARDS */
.panel-card{
    position: relative;
    overflow: hidden;
    min-height: 280px;   /* was 350px */
    padding: 18px;       /* was 24px */
    border-radius: 16px;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.4s ease;
}

.panel-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,.2);
}

.panel-card::before{
    content:'';
    position:absolute;
    inset:0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.80),
        rgba(0,0,0,.45)
    );
    z-index:1;
}

.panel-card > *{
    position:relative;
    z-index:2;
}

/* TEXT COLORS */
.panel-num{
    display:inline-block;
    padding:6px 12px;
    border-radius:20px;
    background:rgba(19, 16, 15, 0.18);
    color:#cf510d;
    font-size:13px;
    font-weight:700;
    margin-bottom:15px;
    border:1px solid rgba(232,80,10,.4);
}

.panel-icon{
    font-size:26px;
    margin-bottom:10px;
}

.panel-title{
    color:#fff;
    font-size:18px;
    font-weight:700;
    margin-bottom:10px;
    line-height:1.4;
}

.panel-desc{
    color:rgba(255,255,255,.92);
    line-height:1.5;
    font-size:13px;
}

/* PANEL IMAGES */
.panel1{
    background-image:url('images/panel1.jpg');
}

.panel2{
    background-image:url('images/panel2.jpg');
}

.panel3{
    background-image:url('images/panel3.jpg');
}

.panel4{
    background-image:url('images/panel4.jpeg');
}

.panel5{
    background-image:url('images/panel5.jpg');
}

.panel6{
    background-image:url('images/panel6.jpg');
}

.panel7{
    background-image:url('images/panel7.jpg');
}

.panel8{
    background-image:url('images/panel8.jpg');
}

/* MOBILE */
@media (max-width:768px){

    .panel-card{
        min-height:auto;
        padding:20px;
    }

    .panel-title{
        font-size:18px;
    }

}



.org-profile{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:20px;
    padding-bottom:15px;
    border-bottom:1px solid #e5e7eb;
}

.org-profile img{
    width:110px;
    height:110px;
    object-fit:cover;
    border-radius:50%;
    border:4px solid #fff;
    box-shadow:0 4px 20px rgba(0,0,0,.15);
}

.org-profile h3{
    margin:0;
    font-size:22px;
    color:var(--accent);
}

.profile-caption{
    margin-top:5px;
    font-size:14px;
    color:#666;
    font-weight:500;
}

.org-profile img{
    width:140px;
    height:140px;
}


.organised-by{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:8px;
}

.org-info{
    display:flex;
    align-items:center;
    gap:10px;
}

.org-logo{
    height:40px;
    width:auto;
    object-fit:contain;
}

.organised-by .meta-value{
    font-size:14px;
    font-weight:700;
    color:var(--accent);
}


.spk-av{
    width:90px;
    height:90px;
    margin:0 auto 15px;
    border-radius:50%;
    overflow:hidden;
    border:4px solid #f38c58;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
    transition:.3s;
}

.spk-card:hover .spk-av{
    transform:scale(1.05);
}

.spk-av img{
    width:100%;
    height:100%;
    object-fit:cover;
}



/* Participant categories */
    .participant-categories {
      display: flex;
      flex-direction: column;
      gap: 28px;
      margin-top: 32px;
    }
    .cat-group h3 {
      font-size: 16px;
      color: var(--accent);
      margin-bottom: 14px;
      border-left: 4px solid var(--primary);
      padding-left: 12px;
    }
    .cat-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .badge-cat {
      padding: 8px 18px;
      border-radius: 40px;
      font-size: 12px;
      font-weight: 700;
    }
    .badge-govt-type { background: #FFF0EB; color: #E8500A; border: 1px solid rgba(232,80,10,.2); }
    .badge-industry-type { background: #EDFBE9; color: #138808; border: 1px solid rgba(19,136,8,.2); }
    .badge-civil-type { background: #EBF1FB; color: #1A3A6B; border: 1px solid rgba(26,58,107,.2); }
    
    /* Leader photos */
    .leader-photo {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 16px;
      border: 3px solid var(--primary);
      box-shadow: var(--shadow-sm);
    }
    .org-card {
      text-align: center;
    }
    @media (max-width: 960px) {
      .slide { height: 200px; }
    }



    .modal-content{
    border-radius:16px;
}
.modal-body{
    max-height:65vh;
    overflow-y:auto;
}

.modal-header{
    background:#f8fafc;
    border-bottom:1px solid #e5e7eb;
}

.modal-title{
    color:#1a3a6b;
}

.form-label{
    font-weight:600;
    color:#374151;
}

.form-control,
.form-select{
    border-radius:10px;
    padding:.7rem .9rem;
}

.form-control:focus,
.form-select:focus{
    box-shadow:none;
    border-color:#e8500a;
}

.modal-footer{
    background:#fafafa;
}

.btn-primary{
    background:#e8500a;
    border-color:#e8500a;
}

.btn-primary:hover{
    background:#cf4608;
    border-color:#cf4608;
}
.btn-register{
    background:#e8500a;
    border:1px solid #e8500a;
    color:#fff;
    padding:10px 24px;
    font-weight:600;
    border-radius:8px;
    transition:.3s;
}

.btn-register:hover{
    background:#cf4608;
    border-color:#cf4608;
    color:#fff;
}

.modal-footer{
    border-top:1px solid #eee;
    padding:15px 25px;
}

.form-label-custom{
    font-size:14px;
    font-weight:700;
    color:#1a3a6b;
    margin-bottom:6px;
    letter-spacing:.2px;
}

.form-label-custom::after{
    content:"";
    display:block;
    width:35px;
    height:2px;
    background:#e8500a;
    margin-top:4px;
}

.form-control-custom,
.form-select{
    border:1px solid #d8dee9;
    border-radius:10px;
    padding:12px 15px;
    font-size:14px;
    transition:.3s;
}

.form-control-custom:focus,
.form-select:focus{
    border-color:#e8500a;
    box-shadow:0 0 0 .15rem rgba(232,80,10,.15);
}


/* ═══════════════════════════════════════════════
   HERO SECTION — Premium Redesign
═══════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 48px) 0 72px;
  background: linear-gradient(165deg, #E3F1FF 0%, #F3F9FF 28%, #FFFFFF 55%, #FFF8F2 100%);
  background-size: 160% 160%;
  animation: heroSkyDrift 22s ease-in-out infinite alternate;
  overflow: hidden;
}
@keyframes heroSkyDrift {
  0%   { background-position: 0% 0%; }
  100% { background-position: 100% 60%; }
}

/* Dot-grid background */
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(26,58,107,.07) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  pointer-events: none;
}

/* Soft glow blobs */
.hero-bg-glow {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(80px);
}
.hero-bg-glow--sky {
  width: 520px; height: 520px;
  top: -140px; left: 30%;
  background: rgba(92,163,255,.16);
  animation: blobDrift 16s ease-in-out infinite;
}
.hero-bg-glow--orange {
  width: 480px; height: 480px;
  top: -80px; left: -100px;
  background: rgba(232,80,10,.08);
  animation: blobDrift 19s ease-in-out infinite reverse;
}
.hero-bg-glow--green {
  width: 380px; height: 380px;
  bottom: -60px; right: -60px;
  background: rgba(19,136,8,.07);
  animation: blobDrift 21s ease-in-out infinite;
}
@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(26px, -20px); }
}

/* India tricolor accent bar — bottom of hero */
.hero-tricolor-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg,
    #FF9933 0%, #FF9933 33.3%,
    #ffffff 33.3%, #ffffff 66.6%,
    #138808 66.6%, #138808 100%);
}

/* Inner layout */
.hero-inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 72px;
}

/* ── Emblem column ── */
.hero-emblem-col {
  flex: 0 0 360px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-emblem-ring {
  width: 340px; height: 340px;
  border-radius: 50%;
  background: white;
  box-shadow:
    0 0 0 10px rgba(26,58,107,.06),
    0 0 0 22px rgba(232,80,10,.05),
    0 24px 64px rgba(26,58,107,.14);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  animation: heroRingPulse 4s ease-in-out infinite;
}
.hero-emblem-ring::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 2px dashed rgba(232,80,10,.4);
  animation: emblemRotate 26s linear infinite;
}
.hero-emblem-ring::after {
  content: '';
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 1.5px dotted rgba(26,58,107,.25);
  animation: emblemRotate 38s linear infinite reverse;
}
@keyframes heroRingPulse {
  0%, 100% { box-shadow: 0 0 0 10px rgba(26,58,107,.06), 0 0 0 22px rgba(232,80,10,.05), 0 24px 64px rgba(26,58,107,.14); }
  50%       { box-shadow: 0 0 0 14px rgba(26,58,107,.09), 0 0 0 30px rgba(232,80,10,.08), 0 24px 64px rgba(26,58,107,.20); }
}
@keyframes emblemRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes emblemFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.hero-emblem-img {
  width: 80%; height: 80%; object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.1));
  animation: emblemFloat 4.5s ease-in-out infinite;
  position: relative; z-index: 1;
}
.hero-edition-badge {
  position: absolute;
  bottom: 8px; right: 8px;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(232,80,10,.35);
  z-index: 2;
}
.edition-num {
  font-size: 22px; font-weight: 900; color: #fff; line-height: 1;
}
.edition-num sup { font-size: 12px; }
.edition-lbl {
  font-size: 9px; font-weight: 700; color: rgba(255,255,255,.8);
  text-transform: uppercase; letter-spacing: .06em;
}

/* ── Content column ── */
.hero-content-col {
  flex: 1;
}
.hero-emblem-col,
.hero-pill,
.hero-theme-wrap,
.hero-format-tags,
.hero-info-cards,
.hero-cta-row {
  animation: fadeUp .75s ease-out both;
}
.hero-emblem-col   { animation-delay: .05s; }
.hero-pill          { animation-delay: .05s; }
.hero-theme-wrap     { animation-delay: .30s; }
.hero-format-tags   { animation-delay: .42s; }
.hero-info-cards    { animation-delay: .54s; }
.hero-cta-row        { animation-delay: .66s; }

/* Pill / eyebrow */
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,58,107,.07);
  border: 1px solid rgba(26,58,107,.16);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.hero-pill-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
}

/* H1 — the full headline continuously shimmers with a moving navy sheen,
   plus a periodic light-sweep glint, while fading/sliding into place on load */
.hero-h1 {
  position: relative;
  overflow: hidden;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 18px;
  background: linear-gradient(100deg,
    var(--accent) 0%, var(--accent-light) 20%, var(--accent) 38%,
    var(--accent-mid) 55%, var(--accent-light) 74%, var(--accent) 100%);
  background-size: 240% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; color: transparent;
  animation: fadeUp .75s ease-out .16s both, headingShimmer 7s linear infinite;
}
.hero-h1::after {
  content: '';
  position: absolute;
  top: -25%; left: -65%;
  width: 35%; height: 150%;
  background: linear-gradient(105deg,
    rgba(255,255,255,0) 0%, rgba(255,255,255,.75) 48%,
    rgba(255,255,255,.95) 52%, rgba(255,255,255,0) 100%);
  transform: skewX(-16deg);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: heroShineSweep 6.5s ease-in-out infinite;
}
@keyframes headingShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@keyframes heroShineSweep {
  0%             { left: -65%; }
  28%, 100%      { left: 130%; }
}
.hero-h1-accent,
.hero-h1-year {
  font-style: normal;
  background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 22%, var(--primary-light) 45%, var(--primary) 68%, var(--gold) 100%);
  background-size: 260% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; color: transparent;
  display: inline-block;
  animation: accentShimmer 5s linear infinite, accentGlow 3.2s ease-in-out infinite;
}
@keyframes accentShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@keyframes accentGlow {
  0%, 100% { filter: drop-shadow(0 0 0px rgba(232,80,10,0)); }
  50%      { filter: drop-shadow(0 0 16px rgba(232,80,10,.45)); }
}

/* Theme line */
.hero-theme-wrap {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
}
.hero-theme-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}
.hero-theme-text {
  font-family: Georgia, serif;
  font-size: clamp(13px, 1.6vw, 17px);
  font-style: italic; font-weight: 600;
  color: var(--secondary-dark);
  white-space: nowrap;
  letter-spacing: .01em;
}

/* Format tags */
.hero-format-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 28px;
}
.htag {
  font-size: 11px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 8px;
  background: var(--accent-pale);
  color: var(--accent-mid);
  border: 1px solid rgba(26,58,107,.15);
  transition: transform .18s, box-shadow .18s;
  animation: tagGlowPulse 3.6s ease-in-out infinite;
}
.htag:nth-child(1) { animation-delay: 0s; }
.htag:nth-child(2) { animation-delay: .35s; }
.htag:nth-child(3) { animation-delay: .7s; }
.htag:nth-child(4) { animation-delay: 1.05s; }
.htag:nth-child(5) { animation-delay: 1.4s; }
@keyframes tagGlowPulse {
  0%, 100% { border-color: rgba(26,58,107,.15); background: var(--accent-pale); }
  50%      { border-color: rgba(232,80,10,.45); background: #FFF1E8; }
}
.htag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(26,58,107,.15);
}

/* Info cards */
.hero-info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.hinfo-card {
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; gap: 12px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.hinfo-card::before {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 32%; height: 100%;
  background: linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.35) 50%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  animation: cardShineSweep 5.5s ease-in-out infinite;
}
.hinfo-card:nth-child(1)::before { animation-delay: 0s; }
.hinfo-card:nth-child(2)::before { animation-delay: 1.3s; }
.hinfo-card:nth-child(3)::before { animation-delay: 2.6s; }
.hinfo-card:nth-child(4)::before { animation-delay: 3.9s; }
@keyframes cardShineSweep {
  0%             { left: -60%; }
  22%, 100%      { left: 130%; }
}
.hinfo-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.hinfo-card svg {
  color: var(--primary); flex-shrink: 0;
  animation: iconBreathe 2.6s ease-in-out infinite;
}
.hinfo-card:nth-child(1) svg { animation-delay: 0s; }
.hinfo-card:nth-child(2) svg { animation-delay: .4s; }
.hinfo-card:nth-child(3) svg { animation-delay: .8s; }
.hinfo-card:nth-child(4) svg { animation-delay: 1.2s; }
@keyframes iconBreathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.22); }
}
.hinfo-card div { display: flex; flex-direction: column; gap: 2px; }
.hinfo-label {
  font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--text-dim);
}
.hinfo-value {
  font-size: 13px; font-weight: 800;
  color: var(--accent);
}
.hinfo-card--org { border-color: rgba(232,80,10,.2); background: var(--primary-pale); }
.hinfo-card--org .hinfo-value { color: var(--primary-dark); }
.hinfo-card--org svg { color: var(--primary); }

/* CTA row */
.hero-cta-row {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.hcta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 12px;
  font-size: 12px; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase;
  transition: all .2s; text-decoration: none;
}
.hcta--primary {
  background: var(--primary); color: #fff;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 18px rgba(232,80,10,.3);
}
.hcta--primary:hover {
  background: var(--primary-dark); border-color: var(--primary-dark);
  transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,80,10,.38);
  color: #fff;
}
.hcta--outline {
  background: transparent; color: var(--accent);
  border: 2px solid var(--accent);
}
.hcta--outline:hover {
  background: var(--accent); color: #fff;
  transform: translateY(-2px);
}
.hcta--ghost {
  background: transparent; color: var(--secondary-dark);
  border: 2px solid var(--secondary);
}
.hcta--ghost:hover {
  background: var(--secondary); color: #fff;
  transform: translateY(-2px);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner {
    flex-direction: column;
    gap: 40px;
    padding: 0 24px;
    text-align: center;
  }
  .hero-emblem-col { flex: none; width: 260px; }
  .hero-emblem-ring { width: 260px; height: 260px; }
  .hero-theme-wrap { justify-content: center; }
  .hero-format-tags { justify-content: center; }
  .hero-info-cards { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto 28px; }
  .hero-cta-row { justify-content: center; }
  .hero-pill { font-size: 10px; }
}
@media (max-width: 600px) {
  :root { --nav-height: 60px; }

  .nav-inner { padding: 0 12px; }

  .hero-inner { padding: 0 20px; }
  .hero-theme-wrap { flex-wrap: wrap; row-gap: 6px; }
  .hero-theme-text { white-space: normal; }
}



.about-org{
    padding:70px 0;
    background:#f8fafc;
}
.org-section{
    display:grid;
    grid-template-columns:350px 1fr;
    gap:35px;
    align-items:center;
    background:#fff;
    border-radius:24px;
    padding:30px;
    margin-top:35px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.org-section.reverse{
    grid-template-columns:1fr 350px;
}

.org-section.reverse .org-image{
    order:2;
}

.org-section.reverse .org-content{
    order:1;
}

/* Image */
.org-image{
    width:100%;
}

.org-image img{
    width:100%;
    height:auto;
    display:block;
    border-radius:20px;
    object-fit:cover;
}

/* Content */
.org-content h3{
    font-size:30px;
    color:#1A3A6B;
    margin-bottom:15px;
    font-weight:800;
}

.org-tag{
    display:inline-block;
    background:#e8500a;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:18px;
}

.org-highlight{
    background:#f4f8fc;
    border-left:5px solid #e8500a;
    padding:15px 20px;
    border-radius:10px;
    font-weight:600;
    color:#1A3A6B;
    margin-bottom:20px;
}

.org-content p{
    font-size:15px;
    line-height:1.8;
    color:#444;
    margin-bottom:15px;
}

/* ==========================
   TABLET
========================== */

@media (max-width:992px){

    .org-section,
    .org-section.reverse{
        grid-template-columns:1fr;
        gap:25px;
        padding:25px;
    }

    .org-section.reverse .org-image,
    .org-section.reverse .org-content{
        order:unset;
    }

    .org-image{
        text-align:center;
    }

    .org-image img{
        max-width:400px;
        width:50%;
        margin:auto;
    }

    .org-content h3{
        font-size:26px;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width:768px){

    .about-org{
        padding:50px 0;
    }

    .org-section{
        padding:20px;
        border-radius:18px;
        margin-top:25px;
    }

    .org-image img{
        max-width:50%;
        height:auto;
        border-radius:16px;
    }

    .org-tag{
        font-size:11px;
        padding:6px 14px;
        
    }

    .org-content h3{
        font-size:22px;
        line-height:1.3;
    }

    .org-highlight{
        padding:12px 15px;
        font-size:14px;
    }

    .org-content p{
        font-size:14px;
        line-height:1.7;
        text-align:justify;
    }
}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width:480px){

    .org-section{
        padding:15px;
    }

    .org-content h3{
        font-size:20px;
    }

    .org-content p{
        font-size:13.5px;
    }
}
@media (max-width: 992px){

    .org-content{
        display: flex;
        flex-direction: column;
    }

    .org-tag{
        align-self: center;
        margin-bottom: 20px;
    }

}

/* Conference Design Grid */
.design-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.design-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.design-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.design-card h4{
    padding:15px;
    margin:0;
    text-align:center;
    font-size:18px;
    font-weight:700;
    color:#1A3A6B;
}

.design-card:hover{
    transform:translateY(-5px);
}

/* Tablet */
@media (max-width:991px){

    .design-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .design-card img{
        height:180px;
    }
}

/* Mobile */
@media (max-width:768px){

    .design-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .design-card{
        max-width:420px;
        margin:auto;
        width:100%;
    }

    .design-card img{
        height:220px;
        object-fit:cover;
    }

    .design-card h4{
        font-size:16px;
        padding:12px;
    }
}



