/* --- index.css GLOBAL STYLES --- */
@import url('https://fonts.googleapis.com/css2?family=Clash+Display:wght@400;500;600;700&family=Playfair+Display:wght@700;800;900&family=DM+Sans:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-main: #FAFAFA;
  --bg-alt: #F0F5FF;
  --bg-warm: #FFF8F0;
  --bg-card: #FFFFFF;
  --primary: #1A237E;     /* Deep Indigo Blue */
  --primary-mid: #283593;
  --secondary: #1565C0;  /* Vibrant Blue */
  --accent: #E65100;     /* Burnt Orange/Gold */
  --accent2: #7B1FA2;    /* Purple highlight */
  --gold: #F59E0B;
  --text-dark: #0D1117;
  --text-mid: #374151;
  --text-light: #6B7280;
  --white: #FFFFFF;
  --shadow-sm: 0 4px 20px rgba(26, 35, 126, 0.08);
  --shadow-md: 0 8px 40px rgba(26, 35, 126, 0.12);
  --shadow-lg: 0 20px 60px rgba(26, 35, 126, 0.18);
  --font-display: 'Playfair Display', serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 20px;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3 {
  line-height: 1.15;
  font-family: var(--font-heading);
  font-weight: 800;
}

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

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Sections */
.section {
  padding: 7rem 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.section.visible { opacity: 1; transform: translateY(0); }
.hero-section { opacity: 1 !important; transform: none !important; }

/* Typography */
.display-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
}
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--accent);
}
.section-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--primary);
  margin-bottom: 1.2rem;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.8;
}

/* Buttons */
.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--primary);
  color: var(--white);
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
}
.btn-solid:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--primary);
  padding: 0.95rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-4px);
}

/* Cards */
.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(26, 35, 126, 0.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

/* Diagonal separator */
.wave-sep {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -2px;
}
.wave-sep svg { display: block; width: 100%; }

/* Gradient text */
.grad-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Floating dot decorations */
.dot-pattern {
  position: absolute;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, rgba(26,35,126,0.15) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  border-radius: 50%;
  pointer-events: none;
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 3px; }
::selection { background: rgba(26, 35, 126, 0.15); }


/* --- App.css --- */
/* Reset default Vite styles */
#root {
  width: 100%;
  min-height: 100vh;
}


/* --- App.jsx Styles --- */

        .site-footer {
          background: var(--primary);
          color: rgba(255,255,255,0.85);
          padding-top: 5rem;
        }
        .footer-inner {
          display: grid;
          grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
          gap: 4rem;
          padding-bottom: 4rem;
          border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .footer-brand { display: flex; flex-direction: column; gap: 1.2rem; }
        .fb-logo { display: flex; align-items: center; gap: 0.9rem; }
        .fbl-icon {
          width: 48px; height: 48px; border-radius: 14px;
          background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.1));
          color: white; font-weight: 900; font-size: 1.5rem;
          display: flex; align-items: center; justify-content: center;
          font-family: var(--font-display);
          border: 1px solid rgba(255,255,255,0.2);
        }
        .fbl-name {
          display: block; font-weight: 800; font-size: 1rem;
          letter-spacing: 2px; color: white;
        }
        .fbl-sub { font-size: 0.7rem; opacity: 0.6; letter-spacing: 1px; }
        .fb-desc {
          font-size: 0.9rem; line-height: 1.8;
          opacity: 0.7; max-width: 300px;
        }
        .fb-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; }
        .fb-badge {
          background: rgba(255,255,255,0.1);
          border: 1px solid rgba(255,255,255,0.15);
          padding: 0.3rem 0.8rem; border-radius: 50px;
          font-size: 0.75rem; font-weight: 600;
        }
        .fl-heading {
          font-size: 0.8rem; text-transform: uppercase;
          letter-spacing: 2px; color: white; margin-bottom: 1.2rem;
          font-weight: 700;
        }
        .fl-list { display: flex; flex-direction: column; gap: 0.7rem; }
        .fl-list a {
          font-size: 0.9rem; opacity: 0.7; transition: var(--transition);
          display: flex; align-items: center; gap: 0.5rem;
        }
        .fl-list a::before {
          content: '→'; font-size: 0.75rem; opacity: 0;
          transition: var(--transition); color: var(--gold);
        }
        .fl-list a:hover::before { opacity: 1; }
        .fl-list a:hover { opacity: 1; padding-left: 4px; }
        .footer-contact-col p {
          font-size: 0.88rem; opacity: 0.75;
          margin-bottom: 0.6rem; display: flex; gap: 0.5rem;
        }
        .footer-socials { display: flex; gap: 0.8rem; margin-top: 1rem; }
        .footer-social-icon {
          width: 38px; height: 38px; border-radius: 10px;
          background: rgba(255,255,255,0.1);
          border: 1px solid rgba(255,255,255,0.15);
          display: flex; align-items: center; justify-content: center;
          font-size: 1.1rem; transition: var(--transition);
        }
        .footer-social-icon:hover {
          background: rgba(255,255,255,0.25);
          transform: translateY(-3px);
        }
        .footer-bar {
          padding: 1.2rem 0;
          background: rgba(0,0,0,0.15);
        }
        .footer-bar-inner {
          display: flex;
          justify-content: space-between;
          align-items: center;
          flex-wrap: wrap;
          gap: 0.5rem;
        }
        .footer-bar p {
          font-size: 0.82rem; opacity: 0.6;
        }
        @media (max-width: 1024px) {
          .footer-inner {
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
          }
        }
        @media (max-width: 600px) {
          .footer-inner { grid-template-columns: 1fr; }
          .footer-bar-inner { flex-direction: column; text-align: center; }
        }
      

/* --- About.jsx Styles --- */

        .about-section {
          background: var(--bg-alt);
          position: relative; overflow: hidden;
        }
        .about-bg-strip {
          position: absolute; top: 0; left: 0; right: 0; height: 6px;
          background: linear-gradient(90deg, var(--primary), var(--accent2), var(--accent));
        }
        .dp-about { bottom: -50px; left: -50px; opacity: 0.4; }
        .about-grid {
          display: grid; grid-template-columns: 1fr 1.1fr;
          gap: 5rem; align-items: center;
        }
        /* Visual side */
        .about-visual { position: relative; }
        .av-card {
          padding: 2.5rem; background: white;
          border-left: 5px solid var(--primary);
          border-radius: var(--radius);
        }
        .av-quote-mark {
          font-family: var(--font-display); font-size: 6rem;
          line-height: 0.5; color: var(--primary); opacity: 0.15;
          margin-bottom: 1rem;
        }
        .av-quote {
          font-family: var(--font-display); font-size: 1.25rem;
          color: var(--text-dark); font-style: italic; line-height: 1.7;
          margin-bottom: 2rem;
        }
        .av-author { display: flex; align-items: center; gap: 1rem; }
        .av-avatar {
          width: 48px; height: 48px; border-radius: 50%;
          background: linear-gradient(135deg, var(--primary), var(--accent2));
          color: white; font-weight: 800; font-size: 1rem;
          display: flex; align-items: center; justify-content: center;
          flex-shrink: 0;
        }
        .av-author strong { display: block; color: var(--primary); font-size: 1rem; }
        .av-author span { font-size: 0.82rem; color: var(--text-light); }
        .av-side-cards {
          display: grid; grid-template-columns: repeat(3, 1fr);
          gap: 1rem; margin-top: 1.5rem;
        }
        .av-mini-card {
          padding: 1.5rem 1rem; text-align: center;
          display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
          background: white;
        }
        .av-mini-card:hover { border-color: rgba(26,35,126,0.2); }
        .av-mini-icon { font-size: 1.6rem; }
        .av-mini-num {
          font-size: 1.6rem; font-weight: 800;
          color: var(--primary); font-family: var(--font-heading);
        }
        .av-mini-label { font-size: 0.75rem; color: var(--text-light); font-weight: 600; }
        /* Content side */
        .about-para {
          font-size: 1rem; color: var(--text-mid); 
          line-height: 1.9; margin-bottom: 3rem;
          border-left: 3px solid var(--accent);
          padding-left: 1.2rem;
        }
        .values-grid { display: grid; gap: 1rem; }
        .value-card {
          display: grid; grid-template-columns: auto 1fr;
          grid-template-rows: auto auto;
          column-gap: 1rem; row-gap: 0.2rem;
          padding: 1.2rem 1.5rem;
          background: white; align-items: start;
        }
        .value-icon { font-size: 1.6rem; grid-row: 1 / 3; align-self: center; }
        .value-title { font-size: 1rem; color: var(--primary); font-weight: 700; }
        .value-desc { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }
        @media (max-width: 1024px) {
          .about-grid { grid-template-columns: 1fr; }
        }
      

/* --- Achievements.jsx Styles --- */

        .ach-section {
          background: var(--bg-alt); position: relative; padding-top: 0;
        }
        .ach-top-wave {
          width: 100%; overflow: hidden; line-height: 0;
          margin-bottom: 5rem;
        }
        .ach-top-wave svg { width: 100%; height: 60px; display: block; }
        .ach-layout {
          display: grid; grid-template-columns: 1fr 0.85fr;
          gap: 5rem; align-items: start;
        }
        /* Timeline */
        .timeline-wrap { position: relative; padding-left: 3.5rem; }
        .tl-line {
          position: absolute; left: 20px; top: 0; bottom: 0;
          width: 2px; background: linear-gradient(180deg, var(--primary) 0%, rgba(26,35,126,0.1) 100%);
        }
        .tl-entry {
          position: relative; margin-bottom: 2rem;
          transition: var(--transition);
        }
        .tl-dot {
          position: absolute; left: -47px; top: 1.2rem;
          width: 42px; height: 42px; border-radius: 50%;
          display: flex; align-items: center; justify-content: center;
          font-size: 1.1rem; transition: var(--transition); flex-shrink: 0;
          z-index: 2;
        }
        .tl-entry:hover .tl-dot, .tl-active .tl-dot { transform: scale(1.2); }
        .tl-card {
          padding: 1.5rem 1.8rem; background: white;
          border-left: 4px solid transparent; transition: var(--transition);
        }
        .tl-entry:hover .tl-card, .tl-active .tl-card {
          border-left-color: var(--primary);
          transform: translateX(6px);
        }
        .tl-year {
          font-size: 0.78rem; font-weight: 800; letter-spacing: 2px;
          text-transform: uppercase; display: block; margin-bottom: 0.3rem;
        }
        .tl-title { font-size: 1.05rem; color: var(--text-dark); margin-bottom: 0.4rem; }
        .tl-desc { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }
        /* Awards */
        .awards-panel { position: sticky; top: 100px; }
        .ap-header { margin-bottom: 1.8rem; }
        .ap-title { font-size: 1.6rem; color: var(--primary); margin-bottom: 0.5rem; }
        .ap-sub { font-size: 0.9rem; color: var(--text-light); }
        .awards-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
        .award-row {
          display: flex; align-items: center; gap: 1rem; padding: 1rem 1.3rem;
          background: white; cursor: default;
        }
        .award-row:hover { border-left: 4px solid var(--gold); }
        .ar-icon-wrap { font-size: 1.8rem; flex-shrink: 0; }
        .ar-text strong { display: block; font-size: 0.95rem; color: var(--text-dark); }
        .ar-text span { font-size: 0.8rem; color: var(--text-light); }
        .ar-year {
          margin-left: auto; flex-shrink: 0;
          font-size: 0.8rem; font-weight: 700;
          color: var(--primary); background: var(--bg-alt);
          padding: 0.25rem 0.7rem; border-radius: 50px;
        }
        .ap-summary {
          background: linear-gradient(135deg, var(--primary), var(--accent2));
          border-radius: 20px; padding: 1.8rem;
          display: flex; gap: 0; color: white;
        }
        .aps-item {
          flex: 1; text-align: center;
          padding: 0 1rem; border-right: 1px solid rgba(255,255,255,0.2);
        }
        .aps-item:last-child { border-right: none; }
        .aps-num { display: block; font-size: 2rem; font-weight: 800; }
        .aps-label { font-size: 0.75rem; opacity: 0.8; text-transform: uppercase; letter-spacing: 1px; }
        @media (max-width: 1024px) {
          .ach-layout { grid-template-columns: 1fr; }
          .awards-panel { position: static; }
        }
      

/* --- Contact.jsx Styles --- */

        .contact-section {
          background: white; position: relative; padding-top: 0;
        }
        .ct-wave-top {
          width: 100%; overflow: hidden; line-height: 0;
          margin-bottom: 4rem;
        }
        .ct-wave-top svg { width: 100%; height: 70px; display: block; }
        .ct-header { text-align: center; }
        .ct-grid {
          display: grid; grid-template-columns: 0.85fr 1.15fr;
          gap: 4rem; align-items: start; margin-top: 2rem;
        }
        /* Info panel */
        .ct-info {
          background: linear-gradient(160deg, var(--primary) 0%, var(--accent2) 100%);
          border-radius: 28px; padding: 2.5rem; color: white;
          display: flex; flex-direction: column; gap: 2rem;
          box-shadow: var(--shadow-lg);
        }
        .ci-brand-card { display: flex; align-items: center; gap: 1rem; }
        .cib-icon {
          width: 52px; height: 52px; border-radius: 14px;
          background: rgba(255,255,255,0.2); font-size: 1.6rem; font-weight: 900;
          display: flex; align-items: center; justify-content: center;
          font-family: var(--font-display); flex-shrink: 0;
          border: 1px solid rgba(255,255,255,0.3);
        }
        .ci-brand-card strong { display: block; font-size: 1rem; }
        .ci-brand-card span { font-size: 0.8rem; opacity: 0.7; }
        .ci-items { display: flex; flex-direction: column; gap: 1.2rem; }
        .ci-item { display: flex; gap: 1rem; align-items: flex-start; }
        .ci-icon {
          font-size: 1.4rem; flex-shrink: 0;
          width: 44px; height: 44px; border-radius: 12px;
          background: rgba(255,255,255,0.15); display: flex;
          align-items: center; justify-content: center;
        }
        .ci-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.7; display: block; }
        .ci-value { font-size: 0.95rem; font-weight: 600; display: block; }
        .ci-social-title { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; opacity: 0.7; margin-bottom: 0.8rem; }
        .social-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
        .s-pill {
          display: flex; align-items: center; gap: 0.4rem;
          background: rgba(255,255,255,0.15); color: white;
          padding: 0.4rem 0.9rem; border-radius: 50px;
          font-size: 0.8rem; font-weight: 600;
          border: 1px solid rgba(255,255,255,0.25);
          transition: var(--transition);
        }
        .s-pill:hover { background: rgba(255,255,255,0.3); transform: translateY(-2px); }
        .ci-map-placeholder {
          background: rgba(255,255,255,0.1); border-radius: 16px;
          padding: 1.2rem; display: flex; align-items: center; gap: 1rem;
          font-size: 0.95rem; font-weight: 600;
          border: 1px dashed rgba(255,255,255,0.3);
        }
        .cmp-icon { font-size: 1.8rem; }
        /* Form */
        .ct-form-wrap { }
        .form-success {
          background: #F0FDF4; border: 1px solid #86EFAC;
          border-radius: 16px; padding: 1.2rem 1.5rem;
          display: flex; gap: 1rem; align-items: flex-start;
          margin-bottom: 1.5rem; font-size: 1.5rem;
          animation: fadeSlideIn 0.4s ease;
        }
        @keyframes fadeSlideIn {
          from { opacity: 0; transform: translateY(-10px); }
          to { opacity: 1; transform: translateY(0); }
        }
        .form-success div strong { display: block; color: #166534; font-size: 1rem; }
        .form-success div p { color: #15803D; font-size: 0.88rem; margin-top: 0.2rem; }
        .ct-form { display: flex; flex-direction: column; gap: 1.3rem; }
        .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
        .fg { display: flex; flex-direction: column; gap: 0.5rem; }
        .fg label { font-size: 0.85rem; font-weight: 700; color: var(--text-mid); letter-spacing: 0.3px; }
        .fg input, .fg select, .fg textarea {
          background: var(--bg-alt); border: 1.5px solid rgba(26,35,126,0.1);
          border-radius: 14px; padding: 0.9rem 1.1rem;
          color: var(--text-dark); font-size: 0.97rem;
          font-family: var(--font-body); outline: none;
          transition: var(--transition); resize: vertical;
        }
        .fg input::placeholder, .fg textarea::placeholder { color: #9CA3AF; }
        .fg input:focus, .fg select:focus, .fg textarea:focus {
          border-color: var(--primary);
          background: white;
          box-shadow: 0 0 0 4px rgba(26,35,126,0.07);
        }
        .fg select { appearance: none; cursor: pointer; }
        .ct-submit { align-self: flex-start; padding: 1rem 2.5rem; font-size: 1rem; }
        .ct-submit.loading { opacity: 0.8; cursor: not-allowed; }
        .spinner {
          width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.4);
          border-top-color: white; border-radius: 50%;
          display: inline-block;
          animation: spin 0.7s linear infinite;
        }
        @keyframes spin { to { transform: rotate(360deg); } }
        @media (max-width: 1024px) { .ct-grid { grid-template-columns: 1fr; } }
        @media (max-width: 600px) { .form-row-2 { grid-template-columns: 1fr; } }
      

/* --- Gallery.jsx Styles --- */

        .gallery-section {
          background: white; position: relative; overflow: hidden;
        }
        .gallery-filters {
          display: flex; justify-content: center; gap: 1rem;
          margin-bottom: 3rem; flex-wrap: wrap;
        }
        .filter-btn {
          background: var(--bg-alt); color: var(--text-mid);
          border: 1px solid rgba(26,35,126,0.1);
          padding: 0.6rem 1.5rem; border-radius: 50px;
          font-size: 0.9rem; font-weight: 600; cursor: pointer;
          transition: var(--transition);
        }
        .filter-btn:hover {
          border-color: var(--primary); color: var(--primary);
        }
        .filter-btn.active {
          background: var(--primary); color: white;
          border-color: var(--primary);
          box-shadow: 0 4px 15px rgba(26,35,126,0.25);
        }
        
        .gallery-grid {
          display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
          gap: 1.5rem;
        }
        
        .gallery-item {
          position: relative; border-radius: 20px; overflow: hidden;
          aspect-ratio: 4/3; cursor: pointer;
          box-shadow: var(--shadow-sm);
        }
        .gi-image {
          width: 100%; height: 100%; object-fit: cover;
          transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
        .gallery-item:hover .gi-image {
          transform: scale(1.08);
        }
        .gi-overlay {
          position: absolute; inset: 0;
          background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 60%);
          display: flex; flex-direction: column; justify-content: flex-end;
          padding: 1.5rem; opacity: 0; transition: var(--transition);
        }
        .gallery-item:hover .gi-overlay { opacity: 1; }
        
        .gio-cat {
          background: var(--accent); color: white;
          padding: 0.3rem 0.8rem; border-radius: 50px;
          font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
          text-transform: uppercase; width: fit-content;
          margin-bottom: 0.5rem;
          transform: translateY(15px); transition: var(--transition);
        }
        .gio-title {
          color: white; font-size: 1.2rem;
          transform: translateY(15px); transition: var(--transition); transition-delay: 0.05s;
        }
        .gallery-item:hover .gio-cat, .gallery-item:hover .gio-title {
          transform: translateY(0);
        }

        @media (max-width: 600px) {
          .gallery-filters { gap: 0.6rem; }
          .filter-btn { padding: 0.5rem 1rem; font-size: 0.85rem; }
        }
      

/* --- Hero.jsx Styles --- */

        .hero-section {
          min-height: 85vh;
          background: linear-gradient(135deg, #ffffff 0%, #EEF2FF 60%, #FFF8F0 100%);
          display: flex; align-items: center;
          padding-top: 6rem; padding-bottom: 6rem;
          position: relative; overflow: hidden;
        }
        .hero-blob {
          position: absolute; border-radius: 50%; filter: blur(80px);
          pointer-events: none; z-index: 0;
        }
        .blob-1 {
          width: 500px; height: 500px;
          background: radial-gradient(circle, rgba(26,35,126,0.08), transparent);
          top: -100px; left: -100px;
        }
        .blob-2 {
          width: 400px; height: 400px;
          background: radial-gradient(circle, rgba(230,81,0,0.07), transparent);
          bottom: 100px; right: -80px;
        }
        .dp-hero {
          top: 50px; right: 80px; opacity: 0.6; z-index: 0;
        }
        .hero-inner {
          display: grid; grid-template-columns: 1fr 1fr;
          gap: 5rem; align-items: center;
          position: relative; z-index: 1;
        }
        .hero-left { display: flex; flex-direction: column; gap: 2rem; }
        .hero-tag {
          display: inline-flex; align-items: center; gap: 0.6rem;
          background: rgba(26,35,126,0.07); color: var(--primary);
          padding: 0.6rem 1.2rem; border-radius: 50px;
          font-weight: 700; font-size: 0.82rem; letter-spacing: 1.5px;
          text-transform: uppercase; border: 1px solid rgba(26,35,126,0.15);
          width: fit-content;
        }
        .tag-dot {
          width: 8px; height: 8px; border-radius: 50%;
          background: var(--accent); display: block;
          animation: pulse-dot 2s infinite;
        }
        @keyframes pulse-dot {
          0%,100% { transform: scale(1); opacity:1; }
          50% { transform: scale(1.4); opacity:0.7; }
        }
        .hero-name { color: var(--text-dark); margin-bottom: 0; }
        .hero-desc {
          font-size: 1.15rem; color: var(--text-mid); line-height: 1.8;
          max-width: 520px;
        }
        .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
        .hero-stats {
          display: flex; gap: 0; align-items: center; flex-wrap: wrap; justify-content: center;
          background: white; border-radius: 20px; padding: 1.5rem 2rem;
          box-shadow: var(--shadow-md); border: 1px solid rgba(26,35,126,0.07);
          width: fit-content;
        }
        .h-stat { text-align: center; padding: 0 1.5rem; }
        .h-stat:first-child { padding-left: 0; }
        .h-stat-num {
          display: block; font-size: 2rem; font-weight: 800;
          color: var(--primary); font-family: var(--font-heading);
        }
        .h-stat-label { font-size: 0.78rem; color: var(--text-light); font-weight: 600; }
        .h-stat-divider {
          width: 1px; height: 40px;
          background: rgba(26,35,126,0.12);
        }
        /* Portrait */
        .hero-right { display: flex; justify-content: center; align-items: center; }
        .portrait-frame {
          position: relative; width: 380px; height: 480px;
        }
        .portrait-bg-ring {
          position: absolute; inset: -15px;
          border-radius: 40px;
          background: linear-gradient(135deg, var(--primary), var(--accent2));
          z-index: 0; opacity: 0.15;
        }
        .portrait-img {
          width: 100%; height: 100%; object-fit: cover; object-position: top center;
          border-radius: 35px;
          box-shadow: var(--shadow-lg);
          position: relative; z-index: 1;
        }
        .portrait-badge {
          position: absolute; bottom: 30px; left: -40px;
          background: white; border-radius: 18px; padding: 1rem 1.3rem;
          display: flex; align-items: center; gap: 0.8rem;
          box-shadow: var(--shadow-md); z-index: 2;
          border: 1px solid rgba(26,35,126,0.08);
          animation: float-badge 4s ease-in-out infinite;
        }
        @keyframes float-badge {
          0%,100% { transform: translateY(0); }
          50% { transform: translateY(-8px); }
        }
        .portrait-badge .pb-icon { font-size: 1.8rem; }
        .portrait-badge strong { display: block; font-size: 0.9rem; color: var(--primary); }
        .portrait-badge span { font-size: 0.75rem; color: var(--text-light); }
        .portrait-tag-float {
          position: absolute; top: 30px; right: -30px;
          background: linear-gradient(135deg, var(--primary), var(--accent2));
          color: white; padding: 0.7rem 1.2rem; border-radius: 50px;
          font-size: 0.82rem; font-weight: 700;
          box-shadow: var(--shadow-md); z-index: 2;
          display: flex; align-items: center; gap: 0.4rem;
          animation: float-badge 4s ease-in-out infinite 1s;
          white-space: nowrap;
        }
        .hero-wave {
          position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
        }
        .hero-wave svg { width: 100%; height: 80px; }
        @media (max-width: 900px) {
          .hero-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
          .hero-tag { margin: 0 auto; }
          .hero-actions { justify-content: center; }
          .hero-desc { margin: 0 auto; }
          .hero-stats { 
            margin: 0 auto; 
            flex-direction: row; 
            gap: 1rem; 
            padding: 1.5rem 1rem;
            width: 100%;
            max-width: 100%;
          }
          .h-stat { padding: 0.5rem !important; flex: 1 1 auto; }
          .h-stat-divider { display: none; }
          .portrait-frame { width: 320px; height: 400px; }
          .portrait-badge { left: 0; bottom: -10px; }
          .portrait-tag-float { right: 0; top: -10px; }
        }
      

/* --- Institutions.jsx Styles --- */

        .inst-section {
          background: white;
          position: relative; overflow: hidden;
        }
        .dp-inst { top: 0; right: 0; opacity: 0.3; }
        .inst-tabs {
          display: flex; justify-content: center;
          gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap;
        }
        .inst-tab {
          display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
          padding: 0.8rem 1.8rem; border-radius: 16px;
          border: 2px solid rgba(26,35,126,0.12);
          background: white; cursor: pointer; font-size: 1.5rem;
          font-weight: 700; font-family: var(--font-heading);
          transition: var(--transition);
        }
        .it-label { font-size: 0.75rem; color: var(--text-light); }
        .inst-tab:hover { border-color: var(--tab-color); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
        .inst-tab.active {
          background: var(--tab-color); color: white;
          border-color: var(--tab-color);
          box-shadow: 0 8px 25px rgba(26,35,126,0.25);
        }
        .inst-tab.active .it-label { color: rgba(255,255,255,0.8); }
        .inst-detail {
          display: grid; grid-template-columns: 1fr 1.2fr;
          border-radius: 28px; overflow: hidden;
          box-shadow: var(--shadow-lg); margin-bottom: 3rem;
          animation: fadeSlide 0.4s ease;
        }
        @keyframes fadeSlide {
          from { opacity: 0; transform: translateY(15px); }
          to { opacity: 1; transform: translateY(0); }
        }
        .id-left {
          padding: 3.5rem; color: white;
          display: flex; flex-direction: column; gap: 1.5rem;
        }
        .id-badge {
          width: 70px; height: 70px; border-radius: 20px;
          background: rgba(255,255,255,0.2);
          display: flex; align-items: center; justify-content: center;
          font-size: 2.2rem;
        }
        .id-name { font-size: 1.8rem; line-height: 1.2; }
        .id-type {
          font-size: 0.88rem; text-transform: uppercase;
          letter-spacing: 2px; opacity: 0.8;
        }
        .id-stats { display: flex; gap: 2rem; }
        .ids-item { display: flex; flex-direction: column; }
        .ids-item strong { font-size: 1.6rem; font-weight: 800; }
        .ids-item span { font-size: 0.8rem; opacity: 0.75; text-transform: uppercase; letter-spacing: 1px; }
        .id-highlights { display: flex; flex-wrap: wrap; gap: 0.6rem; }
        .id-chip {
          background: rgba(255,255,255,0.18); padding: 0.35rem 0.9rem;
          border-radius: 50px; font-size: 0.8rem; font-weight: 600;
          border: 1px solid rgba(255,255,255,0.3);
        }
        .id-right {
          background: white; padding: 3.5rem;
          display: flex; flex-direction: column;
        }
        .idr-heading { font-size: 1.6rem; color: var(--primary); margin-bottom: 1.2rem; }
        .idr-para { color: var(--text-mid); line-height: 1.9; margin-bottom: 2rem; }
        .idr-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
        .idr-feat { display: flex; align-items: center; gap: 0.8rem; font-size: 0.95rem; color: var(--text-mid); }
        .feat-check { font-size: 1.2rem; font-weight: 800; }
        .inst-quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
        .inst-quick {
          display: flex; align-items: center; gap: 1rem;
          padding: 1.2rem 1.5rem; cursor: pointer; background: white;
          border-left: 4px solid transparent; transition: var(--transition);
        }
        .inst-quick:hover, .inst-quick.iq-active {
          border-left-color: var(--qc);
          background: var(--bg-alt); box-shadow: var(--shadow-md);
        }
        .iq-icon { font-size: 1.8rem; flex-shrink: 0; }
        .iq-name { font-size: 1rem; color: var(--primary); font-weight: 700; }
        .iq-type { font-size: 0.78rem; color: var(--text-light); }
        .iq-est { margin-left: auto; font-size: 0.78rem; color: var(--text-light); white-space: nowrap; }
        @media (max-width: 900px) {
          .inst-detail { grid-template-columns: 1fr; }
          .inst-quick-grid { grid-template-columns: 1fr 1fr; }
          .idr-features { grid-template-columns: 1fr; }
        }
        @media (max-width: 600px) {
          .inst-quick-grid { grid-template-columns: 1fr; }
        }
      

/* --- Navbar.jsx Styles --- */

        .navbar {
          position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
          padding: 1.2rem 0;
          transition: var(--transition);
        }
        .navbar.scrolled {
          background: rgba(255,255,255,0.95);
          backdrop-filter: blur(20px);
          box-shadow: 0 2px 30px rgba(26,35,126,0.1);
          padding: 0.8rem 0;
        }
        .nav-inner {
          display: flex; align-items: center; justify-content: space-between;
        }
        .nav-brand {
          display: flex; align-items: center; gap: 0.8rem;
        }
        .brand-icon {
          width: 44px; height: 44px; border-radius: 12px;
          background: linear-gradient(135deg, var(--primary), var(--accent2));
          color: white; font-weight: 900; font-size: 1.4rem;
          display: flex; align-items: center; justify-content: center;
          font-family: var(--font-display);
          box-shadow: 0 4px 15px rgba(26,35,126,0.3);
        }
        .brand-text { display: flex; flex-direction: column; }
        .brand-name {
          font-weight: 800; font-size: 1rem; letter-spacing: 2px;
          color: var(--primary); line-height: 1;
        }
        .brand-sub {
          font-size: 0.65rem; color: var(--text-light); letter-spacing: 1px;
        }
        .nav-links {
          display: flex; gap: 0.3rem; align-items: center;
        }
        .nav-link {
          padding: 0.5rem 1rem; border-radius: 50px; font-weight: 600;
          font-size: 0.9rem; color: var(--text-mid); transition: var(--transition);
        }
        .nav-link:hover { color: var(--primary); background: var(--bg-alt); }
        .nav-cta {
          background: var(--primary); color: white;
          padding: 0.65rem 1.5rem; border-radius: 50px;
          font-weight: 700; font-size: 0.9rem;
          box-shadow: 0 4px 15px rgba(26,35,126,0.3);
          transition: var(--transition);
        }
        .nav-cta:hover { background: var(--secondary); transform: translateY(-2px); }
        .hamburger {
          display: none; flex-direction: column; gap: 5px;
          background: none; border: none; cursor: pointer; padding: 0.3rem;
        }
        .hamburger span {
          display: block; width: 24px; height: 2px;
          background: var(--primary); border-radius: 2px; transition: var(--transition);
        }
        .mobile-menu {
          background: white; padding: 1rem 2rem 1.5rem;
          display: flex; flex-direction: column; gap: 0.5rem;
          box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .mobile-menu a {
          padding: 0.8rem 0; font-weight: 600; color: var(--text-mid);
          border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        @media (max-width: 900px) {
          .nav-links, .nav-cta { display: none; }
          .hamburger { display: flex; }
        }
      

/* --- Vision.jsx Styles --- */

        .vision-section { background: var(--bg-warm); position: relative; }
        .vision-intro {
          display: grid; grid-template-columns: 1fr 1fr;
          gap: 4rem; align-items: center; margin-bottom: 5rem;
        }
        .vision-stats-row { display: flex; gap: 1.5rem; }
        .vs-box {
          flex: 1; background: white; border-radius: 20px; padding: 1.5rem;
          border: 1px solid rgba(26,35,126,0.08);
          box-shadow: var(--shadow-sm);
          border-left: 5px solid var(--accent);
        }
        .vs-num {
          display: block; font-size: 2rem; font-weight: 800;
          color: var(--primary); font-family: var(--font-heading);
        }
        .vs-label { font-size: 0.82rem; color: var(--text-light); font-weight: 600; }

        /* Quote card */
        .vision-quote-card {
          background: white; border-radius: 28px; padding: 2.5rem;
          box-shadow: var(--shadow-lg); position: relative;
          overflow: hidden; display: flex; flex-direction: column; gap: 1.5rem;
        }
        .vqc-stripe {
          position: absolute; top: 0; left: 0; right: 0; height: 5px;
          background: linear-gradient(90deg, var(--primary), var(--accent2), var(--accent));
        }
        .vqc-text {
          font-family: var(--font-display); font-size: 1.15rem;
          color: var(--text-dark); font-style: italic; line-height: 1.8;
          padding-top: 0.5rem;
        }
        .vqc-sig { display: flex; align-items: center; gap: 1rem; }
        .vqc-avatar {
          width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0;
          background: linear-gradient(135deg, var(--primary), var(--accent2));
          color: white; font-weight: 800; font-size: 1rem;
          display: flex; align-items: center; justify-content: center;
        }
        .vqc-sig strong { display: block; color: var(--primary); }
        .vqc-sig span { font-size: 0.82rem; color: var(--text-light); }
        .vqc-cert-row { display: flex; gap: 0.8rem; flex-wrap: wrap; }
        .cert-badge {
          display: flex; align-items: center; gap: 0.4rem;
          background: var(--bg-alt); padding: 0.4rem 0.9rem;
          border-radius: 50px; font-size: 0.78rem; font-weight: 700;
          color: var(--primary); border: 1px solid rgba(26,35,126,0.12);
        }

        /* Pillars grid */
        .pillars-grid {
          display: grid; grid-template-columns: repeat(3, 1fr);
          gap: 1.8rem;
        }
        .pillar-card {
          padding: 2rem; background: white;
          position: relative; overflow: hidden;
        }
        .pillar-card::before {
          content: ''; position: absolute;
          top: 0; left: 0; right: 0; height: 4px;
          background: linear-gradient(90deg, var(--primary), var(--accent2));
          transform: scaleX(0); transform-origin: left;
          transition: transform 0.35s ease;
        }
        .pillar-card:hover::before { transform: scaleX(1); }
        .pc-icon-wrap {
          width: 56px; height: 56px; border-radius: 16px;
          background: var(--bg-alt); display: flex; align-items: center;
          justify-content: center; margin-bottom: 1.2rem;
          transition: var(--transition);
        }
        .pillar-card:hover .pc-icon-wrap {
          background: linear-gradient(135deg, var(--primary), var(--accent2));
          transform: rotate(-5deg) scale(1.05);
        }
        .pc-icon { font-size: 1.8rem; }
        .pc-title { font-size: 1.1rem; color: var(--primary); margin-bottom: 0.6rem; }
        .pc-desc { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
        .pc-line { display: none; }
        @media (max-width: 1024px) {
          .vision-intro { grid-template-columns: 1fr; }
          .pillars-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 600px) {
          .pillars-grid { grid-template-columns: 1fr; }
          .vision-stats-row { flex-direction: column; }
        }
      

