/*  LOCAL FONTS (Inter)  */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/inter-latin-400-normal.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url('fonts/inter-latin-500-normal.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/inter-latin-600-normal.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/inter-latin-700-normal.woff2') format('woff2');
    font-display: swap;
}

:root {
    /* Color Palette: "Deep Tech" */
    --bg-body: #ffffff;
    --bg-surface: #ffffff;
    --bg-subtle: #f8fafc;

    /*  CORE PALETTE  */
    --primary: #d946ef;
    /* Fuchsia 500 */
    --primary-hover: #c026d3;
    /* Fuchsia 600 */
    --primary-light: #f0abfc;
    /* Fuchsia 300 */
    --secondary: #8b5cf6;
    /* Violet 500 */
    --accent: #111827;
    /* Gray 900 */

    /*  GRADIENTS  */
    --gradient-brand: linear-gradient(135deg, #7c3aed 0%, #db2777 70%, #ef4444 100%);
    --gradient-premium: linear-gradient(135deg, #7c3aed 0%, #db2777 70%, #ef4444 100%);
    --gradient-surface: linear-gradient(145deg, #ffffff, #f8fafc);
    --gradient-glow: radial-gradient(circle at center, rgba(217, 70, 239, 0.15), transparent 70%);

    /*  TYPOGRAPHY (Inter)  */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
    /* Single font family as per reference */

    --text-main: #0f172a;
    /* Slate 900 */
    --text-muted: #64748b;
    /* Slate 500 */
    --text-light: #94a3b8;
    /* Slate 400 */
    --text-white: #ffffff;

    /* Shadows & Elevation */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 40px -10px rgba(230, 0, 92, 0.4);

    /* Borders */
    --border-light: #e2e8f0;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/*  PRELOADER  */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

.loader {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(230, 0, 92, 0.2);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/*  RESET & BASE  */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    /* Soft Pink to White Gradient Background */
    background: linear-gradient(180deg, rgba(230, 0, 92, 0.06) 0%, #ffffff 60%, #ffffff 100%);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
    background-attachment: fixed;
}

/* Ambient Subtle Glow */
body::before {
    content: "";
    position: fixed;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(230, 0, 92, 0.08) 0%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius-md);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

ul {
    list-style: none;
}

/*  TYPOGRAPHY  */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.display-text {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    text-align: center;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 540px;
    margin: 0 auto 4rem auto;
}

/*  UTILITIES  */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-spacer {
    padding: 6rem 0;
}

/* UTILS - ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    filter: blur(10px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Staggered Children Support */
.reveal-parent .reveal-child {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(8px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-parent.active .reveal-child {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.reveal-parent.active .reveal-child:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-parent.active .reveal-child:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal-parent.active .reveal-child:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal-parent.active .reveal-child:nth-child(4) {
    transition-delay: 0.4s;
}

.reveal-parent.active .reveal-child:nth-child(5) {
    transition-delay: 0.5s;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/*  HEADER  */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    /* Slightly more opaque for better contrast */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(230, 0, 92, 0.05);
    /* Subtle brand tint border */
    display: flex;
    align-items: center;
    /* Removed justify-content: center to let container handle margin auto */
    transition: all 0.3s ease;
}

header .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 92%;
    max-width: 1240px;
    margin: 0 auto;
}



.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.03em;
}

.logo span {
    transition: all 0.3s ease;
}
/* Shimmer Effect for Header Logo Text *
.logo span {
    background: linear-gradient(
        90deg,
        var(--text-main) 0%,
        #d946ef 25%,
        var(--text-main) 50%,
        #d946ef 75%,
        var(--text-main) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 10s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
    */

/* Shimmer Effect for Header Logo Text */
.logo span {
    background: linear-gradient(
        135deg,
        var(--text-main) 0%,
        var(--text-main) 25%,
        #d946ef 50%,
        var(--text-main) 75%,
        var(--text-main) 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-diagonal 8s ease-in-out infinite;
}

@keyframes shimmer-diagonal {
    0% {
        background-position: 200% 200%;
    }
    100% {
        background-position: -200% -200%;
    }
     /* 100% {
        background-position: 200% 200%;
    }  */
}
.logo:hover span {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.logo-icon {
    height: 32px;
    width: auto;
    border-radius: 6px;
    /* 3D & Shadow Effects */
    filter: drop-shadow(0 4px 6px rgba(217, 70, 239, 0.4)) brightness(1.1) contrast(1.1);
    transform: scale(1.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover .logo-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 20px rgba(217, 70, 239, 0.6)) brightness(1.2) contrast(1.15);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 1001;
    font-size: 28px;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.1);
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link:hover {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/*  BUTTONS  */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
    border: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-primary {
    background: var(--gradient-premium);
    color: #fff;
    box-shadow: 0 4px 15px rgba(219, 39, 119, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:active {
    transform: scale(0.96);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #be185d 70%, #dc2626 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(219, 39, 119, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.5);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--text-muted);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/*  HERO SECTION  */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Hide background shapes from old design */


.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--gradient-brand);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 10px rgba(219, 39, 119, 0.2);
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 8px currentColor;
}

.hero-visual {
    position: relative;
    height: 500px;
    perspective: 1200px;
}

.visual-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-xl);
    padding: 2rem;
    transition: all 0.5s var(--ease-out);
}

.card-main {
    top: 10%;
    right: 10%;
    width: 340px;
    height: 420px;
    transform: rotateY(-12deg) rotateX(6deg);
    z-index: 2;
}

.card-float {
    bottom: 10%;
    left: 5%;
    width: 260px;
    padding: 1.5rem;
    transform: rotateY(12deg) rotateX(10deg) translateZ(40px);
    z-index: 3;
}

.hero-visual:hover .card-main {
    transform: rotateY(0) rotateX(0);
}

.hero-visual:hover .card-float {
    transform: translateZ(60px) translateY(-10px);
}

/*  FLOATING TAGS  */
.floating-tag {
    position: absolute;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid white;
    border-radius: 50px;
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 4;
    animation: float-y 6s ease-in-out infinite;
    cursor: default;
    transition: transform 0.3s ease;
}

.floating-tag:hover {
    transform: scale(1.05);
    background: white;
}

.floating-tag:hover .tag-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tag-1 {
    top: 5%;
    left: 0;
    animation-delay: 0s;
}

.tag-2 {
    top: 45%;
    right: 0;
    animation-delay: 2s;
}

.tag-3 {
    bottom: 15%;
    right: 15%;
    animation-delay: 4s;
    background: var(--bg-surface);
}

@keyframes float-y {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Glassmorphism Utilities */
.glass-panel {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

/* Premium Section Background */
.premium-bg-mesh {
    background-color: #ffffff;
    background-image:
        radial-gradient(at 0% 0%, rgba(230, 0, 92, 0.03) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(110, 0, 255, 0.03) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(16, 185, 129, 0.03) 0px, transparent 50%);
    position: relative;
    overflow: hidden;
}

.premium-bg-mesh::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/*  BENTO GRID  */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bento-card {
    /* Glass Effect */
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    /* Premium Shadow */

    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Smooth Spring */
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

/*  HOVER GLOW EFFECTS  */
.hover-glow-green:hover {
    border-color: #10b981;
    box-shadow: 0 15px 35px -5px rgba(16, 185, 129, 0.25);
}

.hover-glow-blue:hover {
    border-color: #3b82f6;
    box-shadow: 0 15px 35px -5px rgba(59, 130, 246, 0.25);
}

.hover-glow-pink:hover {
    border-color: #ec4899;
    box-shadow: 0 15px 35px -5px rgba(236, 72, 153, 0.25);
}

.hover-glow-orange:hover {
    border-color: #f59e0b;
    box-shadow: 0 15px 35px -5px rgba(245, 158, 11, 0.25);
}

.hover-glow-purple:hover {
    border-color: #8b5cf6;
    box-shadow: 0 15px 35px -5px rgba(139, 92, 246, 0.25);
}

.hover-glow-red:hover {
    border-color: #ef4444;
    box-shadow: 0 15px 35px -5px rgba(239, 68, 68, 0.25);
}

.bento-card:hover .card-title {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    width: fit-content;
}

.bento-card:hover .card-sub {
    color: var(--text-main);
    /* Ensure description stays legible */
}

.bento-span-2 {
    grid-column: span 2;
}

.bento-dark {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    color: white;
}

.bento-dark * {
    color: white;
}

.bento-dark .card-sub {
    color: rgba(255, 255, 255, 0.7);
}

.bento-brand {
    background: linear-gradient(135deg, rgba(230, 0, 92, 0.9), rgba(110, 0, 255, 0.9));
    backdrop-filter: blur(20px);
    color: white;
    border: none;
}

.bento-brand * {
    color: white;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--bg-subtle);
    display: grid;
    place-items: center;
    margin-bottom: 2rem;
    color: var(--primary);
}

.bento-dark .card-icon {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.card-sub {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-muted);
}

/*  SUCCESS STORIES  */
/* MARQUEE */
.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    padding: 20px 0;
    display: flex;
}

.marquee {
    display: flex;
    gap: 30px;
    width: max-content;
    /* No animation on the wrapper itself */
}

.marquee-group {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
    flex-shrink: 0;
    /* Prevent shrinking */
    padding-right: 30px;
    /* Gap between groups */
}

.marquee-wrapper:hover .marquee-group {
    animation-play-state: paused;
}

/*  STORY CARDS  */
.story-card {
    width: 400px;

    /* Glass Effect */
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);

    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Premium Spring */
}

.story-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    border-color: white;
}

.story-text {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 24px;
}

.story-author {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-main);
}

.story-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 2px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* Services Grid Specifics */
#career-services .bento-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
    #career-services .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    #career-services .bento-grid {
        grid-template-columns: 1fr;
    }
}

/*  CONTACT  */
.contact-box {
    background: white;
    border-radius: var(--radius-lg);
    padding: 4rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-xl);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    text-align: left;
}

.form-full {
    grid-column: span 2;
}

.input-field {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    background: var(--bg-subtle);
    font-family: inherit;
    font-size: 0.95rem;
    transition: 0.2s;
}

.input-field:focus {
    background: white;
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(230, 0, 92, 0.1);
    /* Pink glow */
}

textarea.input-field {
    resize: vertical;
    min-height: 120px;
}

/*  FOOTER  */
footer {
    padding: 4rem 0;
    background: white;
    border-top: 1px solid var(--border-light);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);

    /* Glass Effect */
    background: rgba(255, 255, 255, 0.5);
    /* Slightly clearer glass */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    /* Circle shape */

    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.social-icon i {
    font-size: 20px;
    transition: all 0.3s ease;
}

/* Base Hover Animation */
.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    color: white;
    /* Icons turn white on colored background */
}

/* Instagram (Gradient) */
.social-icon[aria-label="Instagram"]:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-color: #d6249f;
    box-shadow: 0 10px 25px rgba(214, 36, 159, 0.4);
}

/* Facebook */
.social-icon[aria-label="Facebook"]:hover {
    background: #1877F2;
    border-color: #1877F2;
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.4);
}

/* LinkedIn */
.social-icon[aria-label="LinkedIn"]:hover {
    background: #0A66C2;
    border-color: #0A66C2;
    box-shadow: 0 10px 25px rgba(10, 102, 194, 0.4);
}

/* YouTube */
.social-icon[aria-label="YouTube"]:hover {
    background: #FF0000;
    border-color: #FF0000;
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
}

/* Twitter/X */
.social-icon[aria-label="Twitter"]:hover {
    background: #000000;
    border-color: #000000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/*  QUICK CONNECT WIDGET  */
.quick-connect {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.quick-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Premium Glass */
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    /* Soft shadow */

    color: var(--text-main);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.quick-btn svg {
    width: 22px;
    height: 22px;
}

/* Default States with Real Colors */
.quick-btn.whatsapp {
    color: #25D366;
    /* WhatsApp Green */
    border-color: rgba(37, 211, 102, 0.3);
}

.quick-btn.mail {
    color: #EA4335;
    /* Gmail Red */
    border-color: rgba(234, 67, 53, 0.3);
}

.quick-btn.call {
    color: #007bff;
    /* Standard Phone Blue */
    border-color: rgba(0, 123, 255, 0.3);
}

/* Hover States: Fill Background */
.quick-btn.whatsapp:hover {
    background: #25D366;
    color: white;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.quick-btn.mail:hover {
    background: #EA4335;
    color: white;
    box-shadow: 0 8px 20px rgba(234, 67, 53, 0.4);
    border-color: #EA4335;
}

.quick-btn.call:hover {
    background: #007bff;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
    border-color: #007bff;
}

.quick-btn:hover {
    transform: scale(1.1) translateY(-2px);
}

/* Tooltips */
.quick-btn::after {
    content: attr(aria-label);
    position: absolute;
    right: 60px;
    background: rgba(15, 23, 42, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: all 0.2s ease;
}

.quick-btn:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/*  RESPONSIVE  */
@media (max-width: 968px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-span-2 {
        grid-column: span 1;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .nav-menu.active {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        padding: 2rem;
        border-bottom: 1px solid var(--border-light);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        gap: 1rem;
    }

    .nav-menu.active .nav-link {
        padding: 10px 0;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-full {
        grid-column: span 1;
    }

    /* Footer Responsive Fix */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .social-links {
        justify-content: center;
    }
}

/*  PREMIUM POPUP  */
.premium-popup {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: 90%;
    max-width: 420px;
    z-index: 9999;

    /* Glass Effect */
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);

    border-radius: 20px;
    box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(230, 0, 92, 0.1);
    /* Subtle pink border ring */

    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.premium-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.popup-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    background: var(--gradient-brand);
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 8px;
    box-shadow: 0 4px 10px rgba(219, 39, 119, 0.2);
}

.popup-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
}

.popup-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.popup-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    padding: 4px;
    transition: color 0.2s;
    display: flex;
}

.popup-close:hover {
    color: var(--text-main);
}

.popup-cta {
    margin-top: 8px;
    width: 100%;
}

.popup-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 8px 0 16px 0;
}

.popup-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 500;
}

.popup-list-item .material-icons {
    font-size: 20px;
    color: #10b981;
    /* Green checkmark */
}

/*  EXPERT MESSAGE SECTION  */
#mentors {
    scroll-margin-top: 100px;
}

.expert-card {
    background: linear-gradient(145deg, #ffffff, #fdf2f8);
    /* White to very subtle pink */
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.expert-title {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.expert-quote {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto;
}

.expert-strong {
    color: var(--text-main);
    font-weight: 600;
}

/*  MAP CONTAINER  */
.map-container {
    margin-top: 3rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    height: 300px;
    width: 100%;
    background: var(--bg-subtle);
}