/* ===== CSS VARIABLES ===== */
    :root {
      --primary: #7B2CBF;
      --primary-light: #9D4EDD;
      --secondary: #C77DFF;
      --accent: #FF758F;
      --accent2: #FF9A9E;
      --bg: #FAF7FF;
      --bg2: #F3EEFF;
      --dark: #ffffff;
      --dark2: #3D3F5A;
      --text: #4A4B68;
      --muted: #8E8FA8;
      --white: #FFFFFF;
      --card-bg: rgba(255,255,255,0.75);
      --glass: rgba(255,255,255,0.18);
      --shadow: 0 20px 60px rgba(123,44,191,0.12);
      --shadow-card: 0 8px 32px rgba(123,44,191,0.10);
      --radius: 20px;
      --radius-lg: 32px;
      --transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
      --gradient: linear-gradient(135deg, #7B2CBF 0%, #C77DFF 50%, #FF758F 100%);
      --gradient-soft: linear-gradient(135deg, #f3eeff 0%, #ffe4ec 100%);
      --gradient-dark: linear-gradient(135deg, #2B2D42 0%, #7B2CBF 100%);
      --font-display: 'Playfair Display', serif;
      --font-alt: 'Cormorant Garamond', serif;
      --font-body: 'Nunito', sans-serif;
    }

    [data-theme="dark"] {
      --bg: #0F0B1A;
      --bg2: #18122B;
      --dark: #F0EAF8;
      --dark2: #C5B8DC;
      --text: #A89DC4;
      --muted: #6B5E8A;
      --card-bg: rgba(30,20,50,0.85);
      --glass: rgba(60,30,100,0.22);
      --shadow: 0 20px 60px rgba(0,0,0,0.45);
      --shadow-card: 0 8px 32px rgba(0,0,0,0.35);
      --white: #1A1030;
    }

    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--font-body);
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      cursor: none;
      transition: background 0.4s, color 0.4s;
    }

    /* ===== CUSTOM CURSOR ===== */
    #cursor {
      width: 12px; height: 12px;
      background: var(--primary);
      border-radius: 50%;
      position: fixed; top: 0; left: 0;
      pointer-events: none; z-index: 9999;
      transition: transform 0.15s ease, opacity 0.3s;
      transform: translate(-50%,-50%);
    }
    #cursor-follower {
      width: 36px; height: 36px;
      border: 2px solid var(--secondary);
      border-radius: 50%;
      position: fixed; top: 0; left: 0;
      pointer-events: none; z-index: 9998;
      transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.3s, width 0.3s, height 0.3s;
      transform: translate(-50%,-50%);
      opacity: 0.7;
    }
    body:hover #cursor { opacity: 1; }
    a:hover ~ #cursor, button:hover ~ #cursor { transform: translate(-50%,-50%) scale(2); }

    /* ===== SCROLLBAR ===== */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

    /* ===== LOADING SCREEN ===== */
    #loading-screen {
      position: fixed; inset: 0;
      background: var(--gradient-dark);
      z-index: 99999;
      display: flex; align-items: center; justify-content: center;
      flex-direction: column;
      transition: opacity 0.8s ease, visibility 0.8s ease;
    }
    #loading-screen.hidden { opacity: 0; visibility: hidden; }
    .loader-logo {
      font-family: var(--font-display);
      font-size: 2.5rem;
      color: #fff;
      font-style: italic;
      margin-bottom: 2rem;
      animation: pulse-glow 2s ease infinite;
    }
    .loader-bar {
      width: 200px; height: 3px;
      background: rgba(255,255,255,0.2);
      border-radius: 10px; overflow: hidden;
    }
    .loader-fill {
      height: 100%;
      background: var(--gradient);
      border-radius: 10px;
      animation: load-fill 2s ease forwards;
    }
    @keyframes load-fill { from { width: 0; } to { width: 100%; } }
    @keyframes pulse-glow {
      0%,100% { text-shadow: 0 0 20px rgba(199,125,255,0.5); }
      50% { text-shadow: 0 0 40px rgba(199,125,255,0.9); }
    }

    /* ===== NAVBAR ===== */
    #mainNav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 1.2rem 0;
      transition: var(--transition);
    }
    #mainNav.scrolled {
      background: rgba(250,247,255,0.92) !important;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 4px 30px rgba(123,44,191,0.10);
      padding: 0.7rem 0;
    }
    [data-theme="dark"] #mainNav.scrolled { background: rgba(15,11,26,0.92) !important; }
    .navbar-brand {
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 700;
      font-style: italic;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .nav-link {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--dark) !important;
      padding: 0.5rem 1rem !important;
      position: relative;
      transition: var(--transition);
    }
    .nav-link::after {
      content: '';
      position: absolute; bottom: 0; left: 50%;
      transform: translateX(-50%) scaleX(0);
      width: 70%; height: 2px;
      background: var(--gradient);
      border-radius: 10px;
      transition: var(--transition);
    }
    .nav-link:hover::after, .nav-link.active::after { transform: translateX(-50%) scaleX(1); }
    .nav-link:hover { color: var(--primary) !important; }

    .btn-nav-cta {
      background: var(--gradient);
      color: #fff !important;
      border-radius: 50px;
      padding: 0.5rem 1.4rem !important;
      font-size: 0.85rem;
      box-shadow: 0 4px 20px rgba(123,44,191,0.35);
      transition: var(--transition);
    }
    .btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(123,44,191,0.5); }
    .btn-nav-cta::after { display: none !important; }

    #themeToggle {
      background: none; border: 2px solid var(--secondary);
      border-radius: 50%; width: 38px; height: 38px;
      color: var(--primary); cursor: pointer;
      font-size: 1rem; display: flex; align-items: center; justify-content: center;
      transition: var(--transition);
    }
    #themeToggle:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

    /* ===== HERO SECTION ===== */
    #hero {
      min-height: 100vh;
      position: relative;
      display: flex; align-items: center;
      overflow: hidden;
      background: var(--gradient-dark);
    }
    .hero-bg-art {
      position: absolute; inset: 0;
      overflow: hidden;
    }
    .hero-orb {
      position: absolute; border-radius: 50%;
      filter: blur(80px);
      animation: float-orb 8s ease-in-out infinite alternate;
    }
    .orb1 { width: 600px; height: 600px; background: rgba(123,44,191,0.4); top: -200px; right: -100px; animation-delay: 0s; }
    .orb2 { width: 400px; height: 400px; background: rgba(255,117,143,0.25); bottom: -100px; left: -50px; animation-delay: 2s; }
    .orb3 { width: 300px; height: 300px; background: rgba(199,125,255,0.3); top: 30%; left: 40%; animation-delay: 4s; }
    @keyframes float-orb {
      from { transform: translate(0,0) scale(1); }
      to { transform: translate(30px,30px) scale(1.1); }
    }
    .hero-grid-lines {
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(199,125,255,0.06) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(199,125,255,0.06) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-content { position: relative; z-index: 2; }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 0.6rem;
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(199,125,255,0.3);
      border-radius: 50px;
      padding: 0.4rem 1.2rem;
      color: var(--secondary);
      font-size: 0.85rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      margin-bottom: 1.5rem;
    }
    .hero-eyebrow .dot {
      width: 8px; height: 8px;
      background: var(--accent);
      border-radius: 50%;
      animation: pulse-dot 1.5s ease infinite;
    }
    @keyframes pulse-dot {
      0%,100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.5); opacity: 0.6; }
    }
    .hero-headline {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 6vw, 5.5rem);
      font-weight: 900;
      line-height: 1.1;
      color: #fff;
      margin-bottom: 1.5rem;
    }
    .hero-headline .line-accent {
      font-style: italic;
      background: linear-gradient(135deg, #C77DFF, #FF758F);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-sub {
      font-size: 1.15rem;
      color: rgba(255,255,255,0.75);
      max-width: 520px;
      line-height: 1.8;
      margin-bottom: 2.5rem;
    }
    .btn-hero-primary{
      background: var(--gradient);
      color: #000 !important;
      border: none;
      border-radius: 50px;
      padding: 0.9rem 2.4rem;
      font-family: var(--font-body);
      font-weight: 700; font-size: 0.95rem;
      letter-spacing: 0.05em;
      box-shadow: 0 8px 32px rgba(123,44,191,0.5);
      transition: var(--transition);
      z-index: 10;
      text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
    }
    
    .btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(123,44,191,0.6); color: #000; }
    .btn-hero-outline {
      background: transparent;
      color: #fff; 
      border: 2px solid rgba(255,255,255,0.35);
      border-radius: 50px;
      padding: 0.9rem 2.4rem;
      font-family: var(--font-body);
      font-weight: 600; font-size: 0.95rem;
      transition: var(--transition);
      text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
      backdrop-filter: blur(10px);
    }
    .btn-hero-outline:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.7); color: #fff; transform: translateY(-3px); }

    .hero-stats {
      display: flex; gap: 2.5rem;
      margin-top: 3rem;
    }
    .hero-stat { text-align: center; }
    .hero-stat .num {
      font-family: var(--font-display);
      font-size: 2rem; font-weight: 900;
      color: #fff; line-height: 1;
    }
    .hero-stat .num span {
      background: linear-gradient(135deg, #C77DFF, #FF758F);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-stat .label { font-size: 0.75rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.2rem; }

    .hero-image-wrap {
      position: relative;
    }
    .hero-image-ring {
      position: absolute;
      border-radius: 50%;
      border: 2px dashed rgba(199,125,255,0.4);
      animation: spin-slow 20s linear infinite;
    }
    .ring1 { inset: -30px; }
    .ring2 { inset: -60px; border-color: rgba(255,117,143,0.2); animation-direction: reverse; animation-duration: 30s; }
    @keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
    .hero-img {
      width: 100%; max-width: 480px;
      border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
      object-fit: cover;
      aspect-ratio: 4/5;
      box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 8px rgba(199,125,255,0.15);
      position: relative; z-index: 1;
    }
    .hero-badge {
      position: absolute;
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 16px;
      padding: 1rem 1.4rem;
      color: #fff;
      font-size: 0.85rem;
      z-index: 2;
    }
    .hero-badge.badge-1 { bottom: 10%; left: -5%; }
    .hero-badge.badge-2 { top: 15%; right: -8%; }
    .hero-badge .badge-icon { font-size: 1.5rem; margin-bottom: 0.3rem; }
    .hero-badge .badge-val { font-weight: 800; font-size: 1.2rem; font-family: var(--font-display); }
    .hero-badge .badge-lbl { opacity: 0.7; font-size: 0.75rem; }
    .hero-scroll-hint {
      position: absolute; bottom: 2.5rem; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center;
      color: rgba(255,255,255,0.5); font-size: 0.75rem;
      letter-spacing: 0.1em; text-transform: uppercase; gap: 0.5rem;
      z-index: 2;
    }
    .scroll-arrow {
      width: 24px; height: 40px;
      border: 2px solid rgba(255,255,255,0.3);
      border-radius: 12px;
      display: flex; justify-content: center; padding-top: 6px;
    }
    .scroll-dot {
      width: 4px; height: 8px;
      background: rgba(255,255,255,0.6);
      border-radius: 2px;
      animation: scroll-bounce 1.5s ease infinite;
    }
    @keyframes scroll-bounce {
      0%,100% { transform: translateY(0); opacity: 1; }
      50% { transform: translateY(12px); opacity: 0.3; }
    }

    /* ===== SECTION STYLES ===== */
    section { padding: 6rem 0; }
    .section-eyebrow {
      display: inline-flex; align-items: center; gap: 0.6rem;
      color: var(--primary); font-weight: 700;
      font-size: 0.8rem; letter-spacing: 0.15em;
      text-transform: uppercase; margin-bottom: 1rem;
    }
    .section-eyebrow::before, .section-eyebrow::after {
      content: '';
      display: inline-block;
      width: 24px; height: 2px;
      background: var(--gradient);
      border-radius: 2px;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      color: var(--dark2);
      line-height: 1.2;
      margin-bottom: 1rem;
    }
    .section-title .gradient-text {
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .section-sub {
      font-size: 1.05rem; color: var(--muted); max-width: 560px; line-height: 1.8;
    }
    .divider-ornament {
      display: flex; align-items: center; gap: 0.8rem;
      color: var(--secondary); font-size: 1.2rem;
      margin: 1.5rem 0;
    }
    .divider-ornament::before, .divider-ornament::after {
      content: '';
      flex: 1; height: 1px;
      background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    }

    /* ===== GLASS CARD ===== */
    .glass-card {
      background: var(--card-bg);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(199,125,255,0.2);
      border-radius: var(--radius);
      box-shadow: var(--shadow-card);
      transition: var(--transition);
      overflow: hidden;
    }
    .glass-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(123,44,191,0.18);
      border-color: rgba(199,125,255,0.4);
    }

    /* ===== ABOUT SECTION ===== */
    #about { background: var(--bg2); position: relative; overflow: hidden; }
    #about::before {
      content: '';
      position: absolute; top: 0; right: 0;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(123,44,191,0.08), transparent 70%);
      pointer-events: none;
    }
    .about-img-wrap { position: relative; }
    .about-img {
      width: 100%;
      border-radius: var(--radius-lg);
      object-fit: cover;
      aspect-ratio: 4/5;
      box-shadow: var(--shadow);
    }
    .about-img-accent {
      position: absolute;
      width: 160px; height: 160px;
      background: var(--gradient);
      border-radius: 50%;
      bottom: -30px; right: -30px;
      z-index: -1;
      opacity: 0.4;
      filter: blur(30px);
    }
    .about-quote-card {
      position: absolute;
      bottom: 2rem; left: -2rem;
      width: 280px;
      padding: 1.5rem;
    }
    .about-quote-card blockquote {
      font-family: var(--font-alt);
      font-style: italic; font-size: 1.1rem;
      color: var(--dark2); line-height: 1.6;
    }
    .about-quote-card cite { font-size: 0.8rem; color: var(--muted); font-style: normal; }
    .about-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.5rem 0; }
    .about-tag {
      background: linear-gradient(135deg, rgba(123,44,191,0.1), rgba(199,125,255,0.1));
      border: 1px solid rgba(199,125,255,0.3);
      color: var(--primary);
      border-radius: 50px;
      padding: 0.3rem 1rem;
      font-size: 0.8rem; font-weight: 600;
      letter-spacing: 0.04em;
    }

    /* ===== MISSION/VISION CARDS ===== */
    .mv-card {
      padding: 2.5rem;
      border-radius: var(--radius);
      position: relative; overflow: hidden;
    }
    .mv-card::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 180px; height: 180px;
      border-radius: 50%;
      opacity: 0.15;
    }
    .mv-card.mission { background: linear-gradient(135deg, rgba(123,44,191,0.08), rgba(199,125,255,0.08)); }
    .mv-card.mission::before { background: var(--primary); }
    .mv-card.vision { background: linear-gradient(135deg, rgba(255,117,143,0.08), rgba(255,154,158,0.08)); }
    .mv-card.vision::before { background: var(--accent); }
    .mv-icon {
      width: 64px; height: 64px;
      border-radius: 18px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem; margin-bottom: 1.5rem;
    }
    .mission .mv-icon { background: var(--gradient); color: #fff; }
    .vision .mv-icon { background: linear-gradient(135deg, #FF758F, #FF9A9E); color: #fff; }
    .mv-title {
      font-family: var(--font-display);
      font-size: 1.4rem; font-weight: 700;
      color: var(--dark2); margin-bottom: 0.8rem;
    }

    /* ===== COUNTERS SECTION ===== */
    #counters {
      background: var(--gradient-dark);
      position: relative; overflow: hidden;
    }
    #counters::after {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle at 20% 50%, rgba(255,117,143,0.12) 0%, transparent 50%),
                        radial-gradient(circle at 80% 30%, rgba(123,44,191,0.2) 0%, transparent 50%);
    }
    .counter-item { text-align: center; position: relative; z-index: 1; }
    .counter-val {
      font-family: var(--font-display);
      font-size: clamp(3rem, 5vw, 4.5rem);
      font-weight: 900;
      background: linear-gradient(135deg, #C77DFF, #FF758F);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
    }
    .counter-label {
      color: rgba(255,255,255,0.7);
      font-size: 0.9rem; margin-top: 0.5rem;
      text-transform: uppercase; letter-spacing: 0.1em;
      font-weight: 600;
    }
    .counter-divider {
      width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(199,125,255,0.4), transparent);
      align-self: stretch;
    }

    /* ===== PROJECTS ===== */
    .project-card {
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
    }
    .project-img-wrap {
      position: relative; overflow: hidden;
      aspect-ratio: 4/3;
    }
    .project-img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
    }
    .project-card:hover .project-img { transform: scale(1.08); }
    .project-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(43,45,66,0.9) 0%, transparent 60%);
      opacity: 0;
      transition: var(--transition);
      display: flex; align-items: flex-end; padding: 1.5rem;
    }
    .project-card:hover .project-overlay { opacity: 1; }
    .project-overlay-content { color: #fff; }
    .project-body { padding: 1rem; background: var(--card-bg); }
    .project-category {
      font-size: 0.75rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.1em;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 0.5rem;
    }
    .project-title {
      font-family: var(--font-display);
      font-size: 1.2rem; font-weight: 700;
      color: var(--dark2); margin-bottom: 0.6rem;
    }
    .project-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
    .project-filter-btn {
      background: transparent;
      border: 2px solid rgba(123,44,191,0.2);
      border-radius: 50px;
      padding: 0.5rem 1.4rem;
      color: var(--text); font-weight: 600; font-size: 0.85rem;
      cursor: pointer; transition: var(--transition);
    }
    .project-filter-btn:hover, .project-filter-btn.active {
      background: var(--gradient);
      border-color: transparent;
      color: #fff;
    }

    /* ===== TESTIMONIALS ===== */
    #testimonials { background: var(--bg2); }
    .testimonial-card { padding: 2.5rem; }
    .testimonial-quote-icon {
      font-size: 3rem;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      margin-bottom: 1rem;
    }
    .testimonial-text {
      font-family: var(--font-alt);
      font-style: italic;
      font-size: 1.15rem;
      color: var(--dark2);
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }
    .testimonial-author { display: flex; align-items: center; gap: 1rem; }
    .testimonial-avatar {
      width: 56px; height: 56px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--secondary);
    }
    .testimonial-name { font-weight: 700; font-size: 0.95rem; color: var(--dark); }
    .testimonial-role { font-size: 0.8rem; color: var(--muted); }
    .swiper-pagination-bullet { background: var(--secondary) !important; }
    .swiper-pagination-bullet-active { background: var(--primary) !important; }

    /* ===== GALLERY ===== */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(3, 200px);
      gap: 12px;
    }
    .gallery-item {
      position: relative; overflow: hidden; border-radius: 12px;
    }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
    .gallery-item:nth-child(4) { grid-column: span 2; }
    .gallery-img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .gallery-item:hover .gallery-img { transform: scale(1.08); }
    .gallery-overlay {
      position: absolute; inset: 0;
      background: rgba(123,44,191,0.65);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; transition: var(--transition);
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-overlay i { font-size: 2rem; color: #fff; }

    /* ===== TIMELINE ===== */
    .timeline { position: relative; padding: 2rem 0; }
    .timeline::before {
      content: '';
      position: absolute;
      left: 50%; transform: translateX(-50%);
      top: 0; bottom: 0; width: 2px;
      background: linear-gradient(to bottom, transparent, var(--secondary), transparent);
    }
    .timeline-item { position: relative; width: 50%; padding: 0 3rem 3rem 0; }
    .timeline-item:nth-child(even) { left: 50%; padding: 0 0 3rem 3rem; }
    .timeline-dot {
      position: absolute;
      width: 16px; height: 16px;
      background: var(--gradient);
      border-radius: 50%;
      top: 1rem;
      right: -9px;
      box-shadow: 0 0 0 4px rgba(199,125,255,0.25);
    }
    .timeline-item:nth-child(even) .timeline-dot { right: auto; left: -9px; }
    .timeline-card { padding: 1.5rem 2rem; }
    .timeline-year {
      font-size: 0.75rem; font-weight: 800;
      letter-spacing: 0.15em; text-transform: uppercase;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 0.4rem;
    }
    .timeline-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--dark); }
    .timeline-desc { font-size: 0.88rem; color: var(--muted); margin-top: 0.4rem; line-height: 1.7; }

    /* ===== BLOG ===== */
    .blog-card { overflow: hidden; }
    .blog-img-wrap { overflow: hidden; aspect-ratio: 16/9; }
    .blog-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
    .blog-card:hover .blog-img { transform: scale(1.06); }
    .blog-body { padding: 1.8rem; }
    .blog-category {
      font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.1em; color: var(--primary); margin-bottom: 0.6rem;
    }
    .blog-title {
      font-family: var(--font-display);
      font-size: 1.2rem; font-weight: 700;
      color: var(--dark2); margin-bottom: 0.8rem; line-height: 1.4;
    }
    .blog-excerpt { font-size: 0.88rem; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
    .blog-meta { display: flex; align-items: center; gap: 1rem; font-size: 0.8rem; color: var(--muted); }

    /* ===== VIDEO SECTION ===== */
    .video-card { overflow: hidden; }
    .video-thumb {
      position: relative;
      aspect-ratio: 16/9;
      overflow: hidden;
    }
    .video-thumb img { width: 100%; height: 100%; object-fit: cover; }
    .play-btn {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      width: 60px; height: 60px;
      background: rgba(255,255,255,0.9);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--primary); font-size: 1.4rem;
      box-shadow: 0 8px 30px rgba(0,0,0,0.2);
      transition: var(--transition);
    }
    .video-card:hover .play-btn { transform: translate(-50%,-50%) scale(1.1); background: #fff; }
    .play-btn::before {
      content: '';
      position: absolute; inset: -6px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.5);
      animation: pulse-ring 2s ease infinite;
    }
    @keyframes pulse-ring {
      0% { transform: scale(0.9); opacity: 1; }
      100% { transform: scale(1.5); opacity: 0; }
    }

    /* ===== PROGRESS BARS ===== */
    .skill-item { margin-bottom: 1.5rem; }
    .skill-header { display: flex; justify-content: space-between; margin-bottom: 0.5rem; }
    .skill-name { font-weight: 600; font-size: 0.9rem; color: var(--dark2); }
    .skill-pct { font-weight: 700; color: var(--primary); font-size: 0.85rem; }
    .skill-bar {
      height: 8px;
      background: rgba(123,44,191,0.1);
      border-radius: 10px; overflow: hidden;
    }
    .skill-fill {
      height: 100%;
      background: var(--gradient);
      border-radius: 10px;
      width: 0;
      transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
    }

    /* ===== DONATION / SUPPORT ===== */
    #support {
      background: var(--gradient);
      position: relative; overflow: hidden;
    }
    #support::before {
      content: '"';
      font-family: var(--font-display);
      font-size: 30rem; font-weight: 900;
      color: rgba(255,255,255,0.04);
      position: absolute; top: -8rem; right: -2rem;
      line-height: 1;
      pointer-events: none;
    }
    .support-card {
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: var(--radius);
      padding: 2rem;
      text-align: center;
      transition: var(--transition);
      color: #fff;
    }
    .support-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.22); }
    .support-amount {
      font-family: var(--font-display);
      font-size: 2.5rem; font-weight: 900;
      color: #fff; line-height: 1; margin: 1rem 0;
    }
    .btn-donate {
      background: #fff;
      color: var(--primary);
      border: none; border-radius: 50px;
      padding: 0.7rem 2rem;
      font-weight: 700; font-size: 0.9rem;
      transition: var(--transition);
      cursor: pointer;
    }
    .btn-donate:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

    /* ===== NEWSLETTER ===== */
    #newsletter { background: var(--bg2); }
    .newsletter-wrap {
      background: var(--gradient-dark);
      border-radius: var(--radius-lg);
      padding: 5rem;
      position: relative; overflow: hidden;
    }
    .newsletter-wrap::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(circle at 70% 50%, rgba(199,125,255,0.15), transparent 60%);
    }
    .newsletter-form { position: relative; z-index: 1; }
    .newsletter-input {
      background: rgba(255,255,255,0.08);
      border: 2px solid rgba(255,255,255,0.15);
      border-radius: 50px 0 0 50px;
      padding: 0.85rem 1.5rem;
      color: #fff; font-size: 0.95rem;
      outline: none; flex: 1;
      transition: var(--transition);
    }
    .newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
    .newsletter-input:focus { border-color: rgba(199,125,255,0.6); background: rgba(255,255,255,0.12); }
    .newsletter-btn {
      background: var(--gradient);
      border: none; border-radius: 0 50px 50px 0;
      padding: 0.85rem 2rem;
      color: #fff; font-weight: 700; font-size: 0.9rem;
      cursor: pointer; transition: var(--transition);
    }
    .newsletter-btn:hover { opacity: 0.9; transform: scale(1.02); }

    /* ===== CONTACT ===== */
    .contact-info-card { padding: 2rem; }
    .contact-icon {
      width: 56px; height: 56px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(123,44,191,0.12), rgba(199,125,255,0.12));
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; color: var(--primary);
      margin-bottom: 1rem;
      transition: var(--transition);
    }
    .contact-info-card:hover .contact-icon {
      background: var(--gradient); color: #fff;
    }
    .form-control-styled {
      background: var(--card-bg);
      border: 2px solid rgba(199,125,255,0.2);
      border-radius: 12px;
      padding: 0.85rem 1.2rem;
      color: var(--dark); font-size: 0.95rem;
      transition: var(--transition);
    }
    .form-control-styled:focus {
      outline: none; background: var(--card-bg);
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(123,44,191,0.12);
    }
    .btn-submit {
      background: var(--gradient);
      border: none; border-radius: 50px;
      padding: 0.9rem 2.5rem;
      color: #fff; font-weight: 700;
      cursor: pointer; transition: var(--transition);
      width: 100%;
    }
    .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(123,44,191,0.4); }

    /* ===== FAQ ===== */
    .accordion-item {
      background: var(--card-bg);
      border: 1px solid rgba(199,125,255,0.15) !important;
      border-radius: 12px !important;
      margin-bottom: 0.8rem; overflow: hidden;
    }
    .accordion-button {
      background: var(--card-bg) !important;
      color: var(--dark2) !important;
      font-weight: 600; border-radius: 12px !important;
      box-shadow: none !important;
    }
    .accordion-button:not(.collapsed) {
      background: linear-gradient(135deg, rgba(123,44,191,0.08), rgba(199,125,255,0.08)) !important;
      color: var(--primary) !important;
    }
    .accordion-button::after { filter: hue-rotate(270deg); }

    /* ===== FOOTER ===== */
    footer {
      background: var(--gradient-dark);
      color: rgba(255,255,255,0.75);
      padding: 5rem 0 2rem;
      position: relative; overflow: hidden;
    }
    footer::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(circle at 20% 80%, rgba(199,125,255,0.08), transparent 50%),
                  radial-gradient(circle at 80% 20%, rgba(255,117,143,0.06), transparent 50%);
    }
    .footer-brand {
      font-family: var(--font-display);
      font-size: 1.8rem; font-weight: 700; font-style: italic;
      background: linear-gradient(135deg, #C77DFF, #FF758F);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 0.8rem;
    }
    .footer-about { font-size: 0.9rem; line-height: 1.8; max-width: 280px; }
    .footer-title { font-weight: 700; color: #fff; font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.4rem; }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 0.7rem; }
    .footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; text-decoration: none; transition: var(--transition); }
    .footer-links a:hover { color: var(--secondary); padding-left: 6px; }
    .social-links { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
    .social-link {
      width: 42px; height: 42px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.7); font-size: 1.1rem;
      text-decoration: none; transition: var(--transition);
    }
    .social-link:hover { background: var(--gradient); border-color: transparent; color: #fff; transform: translateY(-3px); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      margin-top: 3rem; padding-top: 2rem;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 1rem;
    }
    .footer-bottom p { font-size: 0.85rem; margin: 0; }
    .footer-heart { color: var(--accent); animation: heartbeat 1.5s ease infinite; }
    @keyframes heartbeat {
      0%,100% { transform: scale(1); }
      50% { transform: scale(1.3); }
    }

    /* ===== FLOATING SOCIAL ===== */
    .floating-social {
      position: fixed; right: 1.5rem; top: 50%;
      transform: translateY(-50%);
      display: flex; flex-direction: column; gap: 0.6rem;
      z-index: 500;
    }
    .float-social-btn {
      width: 44px; height: 44px;
      background: var(--card-bg);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(199,125,255,0.25);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      color: var(--primary); font-size: 1.1rem;
      text-decoration: none;
      box-shadow: var(--shadow-card);
      transition: var(--transition);
    }
    .float-social-btn:hover { background: var(--gradient); color: #fff; border-color: transparent; transform: scale(1.12); }

    /* ===== BACK TO TOP ===== */
    #backTop {
      position: fixed; bottom: 2rem; right: 1.5rem;
      width: 48px; height: 48px;
      background: var(--gradient);
      border: none; border-radius: 14px;
      color: #fff; font-size: 1.2rem;
      cursor: pointer; z-index: 500;
      opacity: 0; transform: translateY(20px);
      transition: var(--transition);
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 8px 24px rgba(123,44,191,0.4);
    }
    #backTop.visible { opacity: 1; transform: translateY(0); }
    #backTop:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(123,44,191,0.55); }

    /* ===== PAGE SECTIONS NAV ===== */
    .page-sections { display: none; }
    .page-section { display: none; }
    .page-section.active { display: block; }

    /* ===== AWARDS ===== */
    .award-card { padding: 2rem; text-align: center; }
    .award-icon { font-size: 3rem; margin-bottom: 1rem; }
    .award-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--dark); }
    .award-year { font-size: 0.8rem; color: var(--muted); margin-top: 0.3rem; }

    /* ===== HERO VIDEO OVERLAY ===== */
    .featured-video-hero {
      position: relative;
      background: var(--gradient-dark);
      border-radius: var(--radius-lg);
      overflow: hidden;
      aspect-ratio: 16/9;
    }
    .featured-video-hero img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
    .featured-video-overlay {
      position: absolute; inset: 0;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      color: #fff;
    }
    .featured-video-overlay h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 700; text-align: center; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 992px) {
      .timeline::before { left: 20px; transform: none; }
      .timeline-item { width: 100%; left: 0 !important; padding: 0 0 2rem 3rem !important; }
      .timeline-dot { left: 12px !important; right: auto !important; }
      .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
      .gallery-item:nth-child(1) { grid-column: span 2; }
      .hero-stats { gap: 1.5rem; }
      .newsletter-wrap { padding: 3rem 2rem; }
    }
    @media (max-width: 768px) {
      .hero-headline { font-size: 2.4rem; }
      .hero-badge { display: none; }
      .about-quote-card { position: static; width: 100%; margin-top: 1rem; }
      .floating-social { display: none; }
      #cursor, #cursor-follower { display: none; }
      body { cursor: auto; }
      .gallery-grid { grid-template-columns: 1fr; }
      .gallery-item:nth-child(1) { grid-column: span 1; }
      .hero-stats { justify-content: center; gap: 1.5rem; }
      .hero-image-wrap { margin-top: 2rem; }
    }

    /* ===== ANIMATED GRADIENT BG TEXT ===== */
    .animated-gradient-text {
      background: linear-gradient(270deg, #7B2CBF, #C77DFF, #FF758F, #C77DFF, #7B2CBF);
      background-size: 300% 300%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gradient-shift 5s ease infinite;
    }
    @keyframes gradient-shift {
      0%,100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    /* ===== FLOATING ANIMATION ===== */
    .float-anim {
      animation: floating 4s ease-in-out infinite;
    }
    @keyframes floating {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    /* ===== PAGE HERO ===== */
    .page-hero {
      padding: 10rem 0 6rem;
      background: var(--gradient-dark);
      position: relative; overflow: hidden; text-align: center;
    }
    .page-hero::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(circle at 50% 70%, rgba(199,125,255,0.2), transparent 60%);
    }
    .page-hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 900;
      color: #fff; position: relative;
    }
    .page-hero p { color: rgba(255,255,255,0.65); font-size: 1.1rem; position: relative; }
    .breadcrumb-item.active { color: rgba(255,255,255,0.5); }
    .breadcrumb-item a { color: var(--secondary); text-decoration: none; }
    .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

    /* ===== CARD hover glow ===== */
    .glow-on-hover:hover {
      box-shadow: 0 0 30px rgba(199,125,255,0.25), var(--shadow-card);
    }

    /* ===== Map placeholder ===== */
    .map-placeholder {
      width: 100%; height: 350px;
      background: linear-gradient(135deg, rgba(123,44,191,0.1), rgba(199,125,255,0.1));
      border-radius: var(--radius);
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 1rem;
      color: var(--muted); font-size: 1rem;
      border: 2px dashed rgba(199,125,255,0.2);
    }

    /* ===== Horizontal scroll tags ===== */
    .tags-scroll { display: flex; gap: 0.6rem; overflow-x: auto; padding-bottom: 0.5rem; scrollbar-width: none; }
    .tags-scroll::-webkit-scrollbar { display: none; }