:root {
    /* Pure Premium Deep Matte & Gold Palette */
    --bg-deep: #030303; 
    --bg-card: #0a0a0c;
    
    --gold-light: #F3E5AB;
    --gold-main: #D4AF37;
    --gold-dark: #A67C00;
    
    --text-pure: #ffffff;
    --text-muted: #8a8a93;
    
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-gold: rgba(212, 175, 55, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body, html {
    width: 100%; min-height: 100vh;
    background-color: var(--bg-deep);
    color: var(--text-pure);
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: #222; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }


/* --------------------------------------
   BACKGROUND EFFECTS (Lights & Web)
--------------------------------------- */
.noise-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.05; z-index: 9998; pointer-events: none; mix-blend-mode: screen;
}

.spider-web-bg {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"%3E%3Cg stroke="rgba(212, 175, 55, 0.3)" stroke-width="2" fill="none"%3E%3Cline x1="500" y1="500" x2="500" y2="0"/%3E%3Cline x1="500" y1="500" x2="500" y2="1000"/%3E%3Cline x1="500" y1="500" x2="0" y2="500"/%3E%3Cline x1="500" y1="500" x2="1000" y2="500"/%3E%3Cline x1="500" y1="500" x2="146" y2="146"/%3E%3Cline x1="500" y1="500" x2="854" y2="854"/%3E%3Cline x1="500" y1="500" x2="146" y2="854"/%3E%3Cline x1="500" y1="500" x2="854" y2="146"/%3E%3Cpolygon points="500,400 570,430 600,500 570,570 500,600 430,570 400,500 430,430"/%3E%3Cpolygon points="500,300 640,360 700,500 640,640 500,700 360,640 300,500 360,360"/%3E%3Cpolygon points="500,200 710,290 800,500 710,710 500,800 290,710 200,500 290,290"/%3E%3Cpolygon points="500,100 780,220 900,500 780,780 500,900 220,780 100,500 220,220"/%3E%3Cpolygon points="500,0 850,150 1000,500 850,850 500,1000 150,850 0,500 150,150"/%3E%3C/g%3E%3C/svg%3E');
    background-repeat: no-repeat; background-position: right -150px top 0px; background-size: 1000px;
    z-index: 1; pointer-events: none; filter: blur(2.5px); opacity: 0.8; will-change: opacity, transform;
}

.ambient-light-1, .ambient-light-2 {
    position: fixed; filter: blur(100px); z-index: 1; pointer-events: none;
}
.ambient-light-1 {
    top: -10vh; left: 0vw; width: 60vw; height: 60vh;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
    animation: breathe 8s ease-in-out infinite alternate;
}
.ambient-light-2 {
    bottom: -10vh; right: 0vw; width: 50vw; height: 50vh;
    background: radial-gradient(circle, rgba(166, 124, 0, 0.25) 0%, transparent 70%);
    animation: breathe 10s ease-in-out infinite alternate-reverse;
}

@keyframes breathe {
    0% { opacity: 0.4; transform: scale(0.9) translate(0, 0); }
    100% { opacity: 1; transform: scale(1.1) translate(2vw, 2vh); }
}

.bottom-ambient {
    position: fixed; bottom: -20vh; left: 50%; transform: translateX(-50%);
    width: 100vw; height: 60vh;
    background: radial-gradient(ellipse at bottom, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    filter: blur(80px); z-index: 1; pointer-events: none;
    opacity: 0; will-change: opacity;
}

.cursor-glow {
    position: fixed; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%); mix-blend-mode: screen; transition: opacity 0.3s;
}

/* Navbar */
.glass-nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(3, 3, 3, 0.6);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-subtle); padding: 1.2rem 0;
}
.nav-content { display: flex; justify-content: space-between; align-items: center; max-width: 1400px; margin: 0 auto; padding: 0 5%; }
.nav-logo { 
    font-family: 'Playfair Display', serif;
    font-weight: 900; font-size: 1.8rem; text-decoration: none; letter-spacing: 2px; 
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-main) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; 
}
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.3s ease; }
.nav-links a:hover { color: var(--gold-light); }
.social-nav-group { display: flex; gap: 1.2rem; align-items: center; border-left: 1px solid var(--border-subtle); padding-left: 1.2rem; }
.social-nav-group a { color: var(--text-muted); font-size: 1.2rem; transition: color 0.3s, transform 0.3s; }
.social-nav-group a:hover { transform: translateY(-2px); color: var(--gold-main); }


/* MOBILE MENU UTILS */
.mobile-menu-toggle { display: none; color: var(--text-pure); font-size: 1.5rem; cursor: pointer; transition: color 0.3s; }
.mobile-menu-toggle:hover { color: var(--gold-main); }
.mobile-nav-overlay {
    position: fixed; inset: 0; background: rgba(3, 3, 3, 0.95);
    backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
    z-index: 999; display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.mobile-nav-overlay.active { opacity: 1; pointer-events: auto; }
.mobile-nav-links { display: flex; flex-direction: column; align-items: center; gap: 2rem; transform: translateY(20px); transition: transform 0.4s ease; }
.mobile-nav-overlay.active .mobile-nav-links { transform: translateY(0); }
.mobile-link { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 800; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.mobile-link:hover, .mobile-link:active { color: var(--gold-light); }
.mobile-socials { display: flex; gap: 2rem; margin-top: 1rem; }
.mobile-socials a { color: var(--text-pure); font-size: 1.8rem; }


/* --------------------------------------
   GLOBAL COMPONENTS
--------------------------------------- */
.container { max-width: 1400px; margin: 0 auto; padding: 0 5%; position: relative; z-index: 10; }

.bento-card {
    position: relative;
    background: var(--bg-card); border-radius: 24px; padding: 3rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), inset 0 -1px 0 rgba(0, 0, 0, 0.5), 0 20px 40px -10px rgba(0, 0, 0, 0.8);
    border: 1px solid var(--border-subtle); overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1), border-color 0.4s, box-shadow 0.4s;
}
.bento-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212, 175, 55, 0.04), transparent 40%);
    z-index: 0; pointer-events: none; transition: opacity 0.5s; opacity: 0;
}
.bento-card:hover {
    border-color: var(--border-gold); transform: translateY(-5px) scale(1.015);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 30px 60px -12px rgba(212, 175, 55, 0.12);
}
.bento-card:hover::before { opacity: 1; }
.bento-card > * { position: relative; z-index: 1; } 
.gold-icon { color: var(--gold-main); }

.section-title { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 5vw, 5.5rem); font-weight: 900; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.15); margin-bottom: 3rem; margin-top: 8rem; letter-spacing: -0.01em; }
.serif-heading { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--text-pure); margin-bottom: 1rem; letter-spacing: 0.02em; }
p { color: var(--text-muted); line-height: 1.7; font-size: 1.05rem; }


/* HERO BUTTONS */
.hero-actions { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem; }
.cta-button { 
    display: inline-flex; align-items: center; justify-content: center; 
    padding: 1.2rem 2.5rem; text-decoration: none; border-radius: 12px; 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); cursor: pointer; font-size: 1.1rem; 
}
.primary-gold { 
    font-family: 'Inter', monospace; font-weight: 600; letter-spacing: 1px;
    background: transparent; color: var(--gold-light); border: 1px solid var(--gold-dark); 
}
.primary-gold:hover { 
    background: var(--gold-main); color: var(--bg-deep); border-color: var(--gold-main); 
    box-shadow: 0 10px 30px -10px var(--gold-main); transform: translateY(-3px); 
}
.secondary-gold { 
    font-weight: 600; background: rgba(255, 255, 255, 0.02); color: var(--text-pure); border: 1px solid var(--border-subtle); 
}
.secondary-gold:hover { 
    border-color: var(--gold-main); color: var(--gold-light); background: rgba(212, 175, 55, 0.05); transform: translateY(-3px); 
}


/* HERO */
.hero { position: relative; height: 100vh; min-height: 600px; display: grid; grid-template-columns: 1.2fr 0.8fr; align-items: center; gap: 3rem; padding-top: 80px; }
.hero-content { display: flex; flex-direction: column; justify-content: center; z-index: 2; }
.hero-title { 
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 7vw, 8rem); font-weight: 900; line-height: 0.9; 
    margin-bottom: 1.5rem; letter-spacing: -0.02em; color: var(--text-pure); 
}
.gold-text { 
    background: linear-gradient(to bottom right, #FFFFFF 0%, #F3E5AB 20%, #D4AF37 50%, #A67C00 80%, #F3E5AB 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; 
    filter: drop-shadow(0px 4px 10px rgba(212, 175, 55, 0.15));
}
.subtitle { 
    font-family: 'Inter', monospace; font-size: clamp(1.1rem, 2vw, 1.3rem); color: var(--text-muted); 
    margin-bottom: 1rem; font-weight: 500; letter-spacing: 0.5px;
}
.code-bracket { color: var(--text-pure); opacity: 0.5; font-weight: 700; margin: 0 5px; }

.hero-glass-card { height: 65vh; padding: 0; border-radius: 32px; display: flex; align-items: center; justify-content: center; }
.image-wrapper { width: 100%; height: 100%; border-radius: inherit; position: relative; }
.hero-image { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; filter: grayscale(100%) contrast(1.2); transition: filter 0.8s ease; transform: scale(1.1); }
.hero-glass-card:hover .hero-image { filter: grayscale(0%) contrast(1.1); }
.card-inner-glow { position: absolute; inset: 0; box-shadow: inset 0 0 100px rgba(0,0,0,0.9); border-radius: inherit; pointer-events: none; z-index: 2; }


/* GRIDS & BENTO COMPONENTS */
.bento-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.about-container { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; align-items: stretch; }
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.skills-container { display: flex; flex-direction: column; }
.skills-grid { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: auto; }
.skill-pill { padding: 0.8rem 1.2rem; background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border-subtle); border-radius: 12px; font-weight: 500; font-size: 0.9rem; display: flex; align-items: center; gap: 0.6rem; transition: all 0.3s; }
.skill-pill:hover { border-color: var(--border-gold); background: rgba(212, 175, 55, 0.05); }

.expertise-card { padding: 2.5rem; }
.expertise-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.expertise-header i { font-size: 1.8rem; }
.expertise-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.expertise-tags span { padding: 0.5rem 0.8rem; background: rgba(255,255,255,0.02); border: 1px solid var(--border-subtle); border-radius: 8px; font-size: 0.8rem; color: var(--text-muted); }


/* LEARNING BOX */
.learning-status-bar { margin-top: 2rem; padding: 2rem; display: flex; align-items: center; gap: 1.5rem; background: linear-gradient(90deg, rgba(212, 175, 55, 0.08), var(--bg-card) 60%); animation: learning-box-glow 4s ease-in-out infinite; }
@keyframes learning-box-glow {
    0%, 100% { border-color: var(--border-subtle); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), inset 0 -1px 0 rgba(0, 0, 0, 0.5), 0 20px 40px -10px rgba(0, 0, 0, 0.8), 0 0 10px rgba(212, 175, 55, 0); }
    50% { border-color: rgba(212, 175, 55, 0.4); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), inset 0 -1px 0 rgba(0, 0, 0, 0.5), 0 20px 40px -10px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.15); }
}
.pulse-dot { position: relative; flex-shrink: 0; width: 14px; height: 14px; background-color: var(--gold-main); border-radius: 50%; }
.pulse-dot::after { content: ''; position: absolute; top: -4px; left: -4px; right: -4px; bottom: -4px; border-radius: 50%; border: 2px solid var(--gold-main); animation: ping-ring 2s cubic-bezier(0, 0, 0.2, 1) infinite; }
@keyframes ping-ring { 0% { transform: scale(0.5); opacity: 1; } 75%, 100% { transform: scale(2.5); opacity: 0; } }
.learning-status-text { color: var(--text-muted); font-size: 1.05rem; line-height: 1.6; }
.learning-status-text strong { color: var(--text-pure); }


/* PROJECTS & PORTALS */
.featured-portal-card { padding: 0; display: flex; }
.portal-flex { display: flex; width: 100%; }
.portal-info { padding: 4rem; flex: 1.2; display: flex; flex-direction: column; justify-content: center; z-index: 2; background: linear-gradient(90deg, var(--bg-card) 70%, transparent 100%); }
.portal-badge { align-self: flex-start; padding: 0.5rem 1rem; background: rgba(212, 175, 55, 0.05); border: 1px solid var(--border-gold); border-radius: 50px; font-size: 0.8rem; font-weight: 600; color: var(--gold-main); margin-bottom: 1.5rem; }
.portal-title { font-family: 'Playfair Display', serif; font-size: clamp(3.5rem, 5vw, 5rem); font-weight: 900; margin-bottom: 1rem; color: var(--text-pure); letter-spacing: -0.02em; }
.portal-credit { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 2.5rem; }
.portal-btn { align-self: flex-start; padding: 1.2rem 2.5rem; background: var(--text-pure); color: var(--bg-deep); text-decoration: none; font-weight: 600; border-radius: 12px; transition: all 0.4s; }
.portal-btn:hover { background: var(--gold-main); box-shadow: 0 10px 30px -10px var(--gold-main); transform: translateY(-3px); }
.portal-visual { flex: 1; min-height: 450px; position: relative; z-index: 1; }
.portal-image-anchor { display: block; position: absolute; inset: 0; width: 100%; height: 100%; }
.portal-img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(80%) brightness(0.6); transition: 0.8s ease; }
.featured-portal-card:hover .portal-img { filter: grayscale(0%) brightness(0.9); transform: scale(1.03); }

.project-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.project-card { padding: 1.2rem; display: flex; flex-direction: column; }
.project-image { height: 240px; border-radius: 12px; margin-bottom: 1.5rem; position: relative; overflow: hidden; }
.project-icon { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: grayscale(80%) contrast(1.1); transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease; }
.project-card:hover .project-icon { filter: grayscale(0%) contrast(1.1); transform: scale(1.05); }
.project-info { padding: 0 0.5rem 0.5rem; display: flex; flex-direction: column; flex-grow: 1; }

.project-links { display: flex; gap: 0.8rem; margin-top: auto; flex-wrap: wrap; padding-top: 1.5rem; }
.project-links a { font-size: 0.85rem; font-weight: 600; color: var(--text-pure); padding: 0.7rem 1.4rem; border: 1px solid var(--border-subtle); border-radius: 50px; text-decoration: none; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); display: inline-flex; align-items: center; gap: 0.6rem; background: linear-gradient(145deg, rgba(255,255,255,0.02), rgba(0,0,0,0.4)); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05); }
.project-links a i { font-size: 1rem; color: var(--text-muted); transition: color 0.4s; }
.project-links a:hover, .project-links a:active { border-color: var(--gold-main); color: var(--bg-deep); background: var(--gold-main); box-shadow: 0 5px 20px -5px var(--gold-main); transform: translateY(-3px); }
.project-links a:hover i, .project-links a:active i { color: var(--bg-deep); }


/* SERVICES ROWS */
.services-list { display: flex; flex-direction: column; gap: 1.2rem; }
.service-row { display: flex; align-items: center; justify-content: space-between; padding: 2rem 3rem; text-decoration: none; cursor: pointer; }
.service-left { display: flex; align-items: center; gap: 2rem; min-width: 300px; }
.service-number { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; color: var(--text-muted); transition: 0.4s; }
.service-row h3 { margin: 0; font-size: 1.4rem; transition: color 0.4s; }
.service-desc { flex-grow: 1; margin: 0 3rem; font-size: 1rem; color: var(--text-muted); transition: color 0.4s; }
.service-arrow { width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: center; color: var(--text-pure); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }

.service-row:hover .service-number, .service-row:active .service-number { color: var(--gold-main); }
.service-row:hover h3, .service-row:active h3 { color: var(--gold-light); }
.service-row:hover .service-desc, .service-row:active .service-desc { color: var(--text-pure); }
.service-row:hover .service-arrow, .service-row:active .service-arrow { background: var(--gold-main); border-color: var(--gold-main); color: var(--bg-deep); transform: translateX(10px) rotate(-45deg); }


/* CONTACT FORM */
.contact-container { margin-bottom: 5vh; } /* Reduced margin as policy directly follows */
.social-btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.8rem 1.2rem; border: 1px solid var(--border-subtle); border-radius: 12px; color: var(--text-pure); text-decoration: none; font-size: 0.9rem; transition: all 0.3s; background: rgba(255,255,255,0.02); }
.social-btn:hover, .social-btn:active { border-color: var(--border-gold); background: transparent; color: var(--gold-light); }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; padding: 3rem; }
.contact-form input, .contact-form textarea { width: 100%; padding: 1.2rem; background: rgba(0,0,0,0.4); border: 1px solid var(--border-subtle); border-radius: 12px; color: white; outline: none; transition: border-color 0.3s; font-size: 1rem; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold-main); }
.submit-button { padding: 1.2rem; background: var(--text-pure); color: var(--bg-deep); font-weight: 600; border: none; border-radius: 12px; cursor: pointer; transition: all 0.3s; font-size: 1rem; margin-top: 1rem; }
.submit-button:hover, .submit-button:active { background: var(--gold-main); box-shadow: 0 10px 20px -10px var(--gold-main); }


/* --------------------------------------
   NEW: SITE FOOTER & COMMISSION POLICY
--------------------------------------- */
.site-footer {
    position: relative; margin-top: 2rem; padding-bottom: 3rem;
    z-index: 10;
}

.footer-policy {
    margin-bottom: 4rem;
}
.footer-policy h3 {
    margin-bottom: 2rem;
    color: var(--text-pure);
}
.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}
.policy-item h4 {
    font-size: 1.1rem; color: var(--text-pure); font-weight: 600; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.8rem;
}
.policy-item p {
    font-size: 0.9rem; color: var(--text-muted); line-height: 1.6;
}

.footer-bottom {
    display: flex; justify-content: space-between; align-items: flex-end;
    padding-top: 2rem; border-top: 1px solid var(--border-subtle);
}
.footer-enquiry p {
    font-size: 0.9rem; margin-bottom: 0.5rem;
}
.footer-email {
    font-family: 'Inter', monospace; font-size: 1.1rem; color: var(--gold-main); text-decoration: none; font-weight: 600; transition: color 0.3s; display: inline-flex; align-items: center; gap: 0.5rem;
}
.footer-email:hover {
    color: var(--gold-light);
}

.footer-meta {
    text-align: right; display: flex; flex-direction: column; gap: 0.5rem;
}
.footer-logo { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.5rem; color: var(--text-muted); }
.copyright { color: var(--text-muted); font-size: 0.85rem; }


/* MOBILE & TABLET RESPONSIVENESS */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; height: auto; padding-top: 150px; text-align: center; }
    .hero-content { align-items: center; }
    .hero-actions { justify-content: center; }
    .hero-glass-card { min-height: 450px; width: 100%; }
    .spider-web-bg { background-position: center top; background-size: 100vw; } 
    .expertise-grid { grid-template-columns: repeat(2, 1fr); }
    .service-row { flex-direction: column; text-align: center; gap: 1.5rem; padding: 2.5rem; }
    .service-left { flex-direction: column; gap: 0.5rem; min-width: auto; }
    .service-desc { margin: 0; }
    .service-row:hover .service-arrow, .service-row:active .service-arrow { transform: translateY(5px) rotate(90deg); } 
    
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 2rem; }
    .footer-meta { text-align: center; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-toggle { display: block; }
    
    .bento-grid-2, .about-container, .expertise-grid, .project-grid { grid-template-columns: 1fr; }
    .portal-flex { flex-direction: column; }
    
    .bento-card { padding: 1.8rem; } 
    .portal-info { padding: 2rem; background: none; }
    .portal-visual { min-height: 280px; }
    .contact-form { padding: 1.8rem; }
    .learning-status-bar { flex-direction: column; text-align: center; }
    
    .hero-glass-card { min-height: 350px; }
    .policy-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}