/* assets/css/style.css */

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700;800&display=swap');

:root {
    /* Premium Color Palette */
    --bg-body: #ffffff;
    --bg-surface: #f8f9fc;
    --bg-dark: #0f172a;

    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;

    --primary-accent: #42a3b7;
    --primary-dark: #358697;
    --primary-light: #ecf8f9;

    /* Header */
    --bg-header: rgba(255, 255, 255, 0.85);
    --text-header: #0f172a;

    /* UI Elements */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-premium: 0 20px 40px -5px rgba(0, 0, 0, 0.1);

    --section-padding: 5rem 0;
    --header-margin: 5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Nunito Sans', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h3,
h4,
h5,
h6 {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h2 {
    font-size: 2.5rem;
    line-height: 1.1;
    color: #0f172a;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Global Section Styling */
.section {
    padding: var(--section-padding);
    position: relative;
}

/* Section Backgrounds for Alternating Contrast */
.services-section {
    background-color: #ffffff;
}

.career-opportunities-section {
    background-color: #f6f8fa;
}

.portfolio-section {
    background-color: #f6f8fa;
}

.faq-section {
    background-color: #ffffff;
}

.testimonials-section {
    background-color: #f6f8fa;
}

.clients-section {
    background-color: #ffffff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* =========================================
   Header Layout
   ========================================= */

/* Header Layout */
header {
    background-color: var(--bg-header);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-spacer {
    height: 80px;
}

.container.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 90px;
}

/* Left: Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-header);
    width: 200px;
    flex-shrink: 0;
}

.logo-symbol {
    width: 40px;
    height: 40px;
    background: var(--text-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-symbol svg {
    width: 24px;
    height: 24px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.header-right {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.desktop-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-right {
    width: 200px;
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.nav-list li {
    list-style: none !important;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link i {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Right: Button */
.btn-login {
    background-color: var(--text-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-login:hover {
    background-color: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Dropdown */
.nav-list li {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    border: 1px solid #f1f5f9;
    padding: 0.5rem;
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-lg);
    z-index: 100;
}

.nav-list li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-radius: 4px;
}

.dropdown a:hover {
    background: #f8fafc;
    color: var(--text-primary);
}


/* =========================================
   Layout Sections
   ========================================= */



.section-header {
    margin-bottom: var(--header-margin);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin-bottom: 0.8rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Hero Section & Slider */
.hero-section {
    padding: 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, #f1f5f9, transparent 40%),
        radial-gradient(circle at bottom left, #f8fafc, transparent 40%);
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 90vh;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 90vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease-in-out;
    display: flex;
    /* Flex to center content vertically */
    align-items: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay for text readability */
    z-index: 1;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 3rem;
    left: 10%;
    /* Align with content left */
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 10;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--text-primary);
    transform: scale(1.2);
}

.prev-slide,
.next-slide {
    background: white;
    border: 1px solid #e2e8f0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
    font-size: 1rem;
}

.prev-slide:hover,
.next-slide:hover {
    background: var(--text-primary);
    color: white;
    border-color: var(--text-primary);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 90%;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.8rem;
    background: var(--primary-accent);
    color: white;
    font-weight: 600;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(66, 163, 183, 0.3);
    background: var(--primary-dark);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.8rem;
    background: transparent;
    border: 1px solid #e2e8f0;
    color: var(--text-primary);
    font-weight: 600;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background: #fff;
    color: #000 !important;
    box-shadow: var(--shadow-sm);
}

.hero-visual {
    position: relative;
    /* Abstract shape or image container */
}

.hero-image-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.hero-image-card img {
    width: 100%;
    height: auto;
}

.hero-image-card:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Services Grid (Card Layout) */
.services-section {
    background: var(--bg-surface);
}

.services-carousel-wrapper {
    position: relative;
    padding: 0;
}

.services-track-container {
    overflow: visible;
    padding: 0;
    margin: 0;
}

.services-grid {
    display: grid;
    /* Force 3 columns on desktop */
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-bottom: 2rem;
}

/* Tablet: 2 columns */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 column */
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    width: auto;
    /* Reset fixed width */
    min-width: 0;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}

/* --- New Expertise Layout --- */
.expertise-header {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: var(--header-margin);
    align-items: flex-end;
}

.center-header.expertise-header {
    display: block;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.center-header .expertise-label {
    text-align: center;
}

.expertise-label {
    display: block;
    color: var(--primary-accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.expertise-title-block h2 {
    color: #0f172a;
}

.expertise-desc-block p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
}

/* Service Card New Design */
.service-card-new {
    padding: 2.5rem 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.services-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.service-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.service-content-new {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.service-content-new h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: #0f172a;
}

.service-meta {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1e293b;
}

.service-content-new p {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 1.5rem;
}

/* Premium Glassmorphism Design System */
.glass-light {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
}

.glass-dark {
    background: rgba(15, 23, 42, 0.8) !important;
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3),
        inset 0 0 1px 1px rgba(255, 255, 255, 0.1);
    color: #f8fafc;
}

.glass-apple {
    background: rgba(255, 255, 255, 0.65) !important;
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.glow-edge {
    position: relative;
}

.glow-edge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.15);
}

.glossy-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glossy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.1);
}

/* Tabbed Services Design */
.services-section {
    background: #ffffff;
    padding: var(--section-padding);
    padding-top: 100px;
}

.service-pills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-pill {
    padding: 10px 24px;
    border: 1px solid #d1d5db;
    border-radius: 100px;
    background: #ffffff;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.9rem;
    white-space: nowrap;
}

.service-pill:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.service-pill.active {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.2);
}

.service-tab-container {
    position: relative;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.service-tab-content {
    display: none;
    animation: serviceFadeIn 0.5s ease forwards;
}

.service-tab-content.active {
    display: block;
}

@keyframes serviceFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Tab Card Styling */
.service-tab-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    background: #ffffff;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
}

/* AI Badge */
.ai-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    color: #1e40af;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid #bfdbfe;
}

.ai-badge-premium i {
    color: #3b82f6;
}

/* Feature Tags */
.mentorship-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2rem;
}

.m-tag {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.m-tag i {
    color: #6366f1;
}

/* Stats Grid */
.stats-grid-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 2.5rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 2rem;
}

.stat-item-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 15px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon-wrapper {
    width: 44px;
    height: 44px;
    background: #f0fdf4;
    color: #16a34a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.stat-item-card:last-child .stat-icon-wrapper {
    background: #fff7ed;
    color: #ea580c;
}

.stat-info span {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 2px;
}

.stat-info strong {
    font-size: 1.1rem;
    color: #0f172a;
    font-weight: 700;
}

/* Partner Logo Bar */
.covered-projects {
    margin-bottom: 2.5rem;
}

.covered-projects-label {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.partner-logo-row {
    display: flex;
    align-items: center;
    gap: 25px;
    opacity: 0.7;
    flex-wrap: wrap;
}

.partner-logo-row img {
    height: 24px;
    width: auto;
    filter: grayscale(1);
    transition: 0.3s;
}

.partner-logo-row img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Button Group */
.premium-btn-group {
    display: flex;
    gap: 15px;
}

.btn-mentorship-primary {
    background: #1d4ed8;
    color: white !important;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    flex: 1;
    text-align: center;
    transition: 0.3s;
}

.btn-mentorship-outline {
    background: transparent;
    border: 1px solid #e2e8f0;
    color: #1e293b !important;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    flex: 1;
    text-align: center;
    transition: 0.3s;
}

.btn-mentorship-primary:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.btn-mentorship-outline:hover {
    background: #f8fafc;
}

@media (max-width: 992px) {
    .service-tab-grid {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .stats-grid-premium {
        grid-template-columns: 1fr;
    }
}

.service-tab-visual {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.12);
}

.service-tab-visual img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.service-tab-info h3 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
    /* Match Global H2 Weight */
    line-height: 1.2;
}

.service-tab-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 400;
    /* Standard Weight for Body Text */
}

.service-read-more {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s;
}

.service-read-more:hover {
    color: var(--primary-accent);
}

.service-read-more .read-icon {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

@keyframes serviceFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .service-tab-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 2rem;
    }

    .service-tab-info h3 {
        font-size: 2.2rem;
    }
}


.btn-enquire:hover {
    background: var(--primary-dark);
}

/* Media Queries for Expertise */
@media (max-width: 1024px) {
    .expertise-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .expertise-title-block h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-carousel-wrapper {
        padding: 0;
    }

    .service-nav {
        display: none;
        /* Hide buttons on mobile, rely on swipe */
    }

    .service-card {
        min-width: 280px;
        padding: 2rem;
    }
}

/* Portfolio (Glimpse) Grid Design */
.portfolio-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.portfolio-item-new {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.portfolio-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.portfolio-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-item-new:hover .portfolio-img-wrapper img {
    transform: scale(1.1);
}

.portfolio-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, transparent 100%);
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-item-new:hover .portfolio-content-overlay {
    transform: translateY(0);
    opacity: 1;
}

.category-tag {
    display: inline-block;
    background: var(--primary-accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 6px;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(66, 163, 183, 0.3);
}

.portfolio-content-overlay h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.portfolio-actions-bottom {
    margin-top: 4rem;
    text-align: center;
}

/* Portfolio Responsive */
@media (max-width: 1024px) {
    .portfolio-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .portfolio-grid-new {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Mentorship Section (WsCube Tech Design)
   ========================================= */
.mentorship-section {
    position: relative;
    padding: var(--section-padding);
    background: #f8fafc;
    overflow: hidden;
}

.mentorship-section .container {
    position: relative;
    z-index: 2;
}

.center-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--header-margin);
}

.center-header h2 {
    color: #0f172a;
    margin-bottom: 1rem;
}

.center-header p {
    font-size: 1.2rem;
    color: #64748b;
}

.mentorship-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.mentor-tab {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mentor-tab:hover:not(.active) {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #1e293b;
}

.mentor-tab.active {
    background: var(--primary-accent);
    color: #ffffff;
    border-color: var(--primary-accent);
    box-shadow: 0 10px 15px -3px rgba(66, 163, 183, 0.3);
}

.mentorship-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    display: none;
}

.mentorship-card.active {
    display: block;
    animation: slideUpFade 0.5s ease-out;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mentor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

@media (max-width: 992px) {
    .mentor-grid {
        grid-template-columns: 1fr;
    }
}

.mentor-visual {
    background: linear-gradient(135deg, #f0f9fa 0%, #e0f2f1 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.mentor-visual img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    border-radius: 20px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.mentor-visual:hover img {
    transform: translateY(-5px);
}

.mentor-tag-floating {
    position: absolute;
    background: white;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #0f172a;
    z-index: 5;
    animation: float 4s ease-in-out infinite;
}

.tag-top-left {
    top: 1rem;
    left: 1rem;
}

.tag-bottom-right {
    bottom: 1rem;
    right: 1rem;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.mentor-details {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ecf8f9;
    color: #358697;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
    align-self: flex-start;
}

.mentor-details h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.2;
}

.mentor-desc {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.mentor-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 2.5rem;
}

.mentor-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    border: 1px solid #f1f5f9;
}

.mentor-features i {
    color: #2563eb;
    font-size: 0.8rem;
}

.mentor-projects {
    margin-bottom: 2.5rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.5rem;
}

.project-label {
    display: block;
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.project-logos {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}

.mentor-stats {
    display: flex;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    gap: 2rem;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.stat-icon-circle {
    width: 44px;
    height: 44px;
    background: #f0f9ff;
    color: #0284c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.stat-divider {
    width: 1px;
    background: #f1f5f9;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
}

.stat-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
}

.mentor-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.mentor-actions .btn-primary {
    background: var(--primary-accent);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.4);
}

.mentor-actions .btn-link {
    color: #0f172a;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.mentor-actions .btn-link:hover {
    color: var(--primary-accent);
}

/* Responsive Mentorship */
@media (max-width: 900px) {
    .mentor-grid {
        grid-template-columns: 1fr;
    }

    .mentor-visual {
        min-height: 250px;
    }

    .mentor-details {
        padding: 2rem;
    }

    .mentor-actions {
        grid-template-columns: 1fr;
    }
}

/* --- Career Opportunities Section --- */
.career-opportunities-section {
    padding: var(--section-padding);
    position: relative;
    background: #f0f9fa;
    /* Light teal tint */
    background-image: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><text x="10" y="50" font-family="Arial" font-size="10" fill="%2342a3b7" fill-opacity="0.05" transform="rotate(-30 50 50)">SEO DIGITAL ADS SMM</text></svg>');
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.career-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0f2f1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.career-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(66, 163, 183, 0.15);
    border-color: var(--primary-accent);
}

.career-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-accent);
}

.career-icon svg {
    width: 54px;
    height: 54px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.career-card:hover .career-icon svg {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-dark);
}

.career-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}

@media (max-width: 1200px) {
    .career-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .career-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .career-grid {
        grid-template-columns: 1fr;
    }
}


/* --- End Career Opportunities --- */


.portfolio-vertical-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-overlay h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1.25rem;
}

.portfolio-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Portfolio */
@media (max-width: 1024px) {
    .portfolio-split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .portfolio-sticky-content {
        position: static;
        margin-bottom: 2rem;
        text-align: center;
        padding-right: 0;
    }

    .portfolio-sticky-content .section-header {
        text-align: center !important;
    }

    .portfolio-scroll-wrapper {
        height: auto;
        /* Remove scroll on mobile/tablet if preferred, or keep fixed height */
        overflow-y: visible;
    }

    .portfolio-vertical-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Keep 2 cols on tablet */
    }
}

@media (max-width: 600px) {
    .portfolio-vertical-grid {
        grid-template-columns: 1fr;
        /* 1 col on mobile */
    }
}

/* Testimonials */
.testimonials-section {
    background: white;
    padding: var(--section-padding);
}

.testimonials-slider {
    width: 100%;
}

.testimonials-slider .swiper-slide {
    height: auto;
    padding-bottom: 2rem;
}

.testimonial-card {
    background: #f8f9fc;
    padding: 3rem;
    border-radius: var(--radius-md);
    position: relative;
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ddd;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.testimonial-info span {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.testimonial-quote {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    flex-grow: 1;
}

/* FAQ Accordion */
.faq-section {
    background: var(--bg-surface);
}

.faq-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    /* Stretch image to match height of questions */
}

.faq-item {
    background: #ffffff;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.faq-item:hover {
    border-color: #e2e8f0;
}

.faq-question {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: #27272a;
    position: relative;
    user-select: none;
}

.faq-q-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-accent);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.faq-icon {
    position: absolute;
    right: 1.5rem;
    transition: transform 0.3s ease;
    font-size: 0.9rem;
    color: #71717a;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.5rem 2rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.faq-image {
    height: 100%;
}

.faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures image fills height without distortion */
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    .faq-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Clients Section (White) */
.clients-section {
    background: #ffffff !important;
    color: #000000;
    overflow: hidden;
    padding: var(--section-padding);
}

.clients-section .section-header h2 {
    color: #000000 !important;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.clients-ticker-wrapper {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.logo-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.logo-track.reverse {
    animation-direction: reverse;
}

.client-logo-card {
    width: 200px;
    height: 85px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.client-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.8;
    transition: 0.3s;
}

.client-logo-card:hover img {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.quick-connect-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: right bottom;
    background: var(--primary-accent);
    color: white;
    padding: 12px 25px;
    border-radius: 0 0 10px 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1001;
    cursor: pointer;
    font-size: 0.85rem;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.quick-connect-tab:hover {
    background: var(--primary-dark);
    padding-bottom: 30px;
}

.quick-connect-tab i {
    transform: rotate(-90deg);
}

@media (max-width: 768px) {
    .clients-section .section-header h2 {
        font-size: 2rem !important;
    }

    .client-logo-card {
        width: 150px;
        height: 65px;
    }

    .client-logo-card h4 {
        font-size: 0.85rem;
    }
}

/* Footer (Dark) */
footer {
    background: var(--bg-dark);
    color: #94a3b8;
    padding: 3rem 0 0.8rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 1.5rem;
}

.footer-brand h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.footer-brand p {
    max-width: 350px;
    line-height: 1.7;
}

.footer-col h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links {
    list-style: none !important;
    padding: 0;
}

.footer-links li {
    list-style: none !important;
}

.footer-links li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.footer-links li i {
    flex-shrink: 0;
    width: 20px;
    margin-right: 12px;
    margin-top: 4px;
    color: var(--primary-accent);
}

.footer-links a {
    transition: all 0.2s;
}

.footer-links a:hover {
    color: var(--primary-accent);
    padding-left: 5px;
}

.copyright {
    border-top: 1px solid #1e293b;
    padding-top: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.copyright p {
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-accent);
    transform: translateY(-3px);
}

.footer-top {
    padding: 0;
}

.footer-brand img {
    max-width: 160px;
}

/* Mobile Interaction */
.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.burger span {
    width: 28px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
}

@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .header-right {
        display: none;
    }

    .logo,
    .header-right {
        width: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        margin: 0 auto 2rem;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.mobile-menu-overlay {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    z-index: 999;
    padding: 2rem;
    display: none;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 700;
}

.btn-login-mobile {
    margin-top: 1rem;
    background: var(--text-primary);
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    color: white;
    font-weight: 600;
}

/* Glassmorphism Utility */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* --- Lead Generation Section --- */
.lead-gen-section {
    position: relative;
    padding: var(--section-padding);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.lead-gen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.4) 100%);
    z-index: 1;
}

.lead-gen-section .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lead-text h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: white;
    margin-bottom: 2rem;
    font-weight: 800;
}

.lead-form-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    color: #0f172a;
}

.lead-form-box p {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #475569;
}

.lead-form .form-group {
    margin-bottom: 1.5rem;
}

.lead-form input,
.lead-form select {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: transparent;
    outline: none;
}

.lead-form input:focus,
.lead-form select:focus {
    border-bottom-color: var(--primary-accent);
}

.lead-form button {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    background: var(--primary-accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.lead-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .lead-gen-section .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .lead-text h2 {
        font-size: 2.5rem;
    }

    .lead-form-box {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* =========================================
   Mega Menu Styling
   ========================================= */

.nav-list li.has-mega-menu {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    padding-top: 15px;
    background-clip: padding-box;
    background: white;
    width: 950px;
    max-width: 95vw;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-list li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Bridge removed as padding-top on .mega-menu handles it now */

/* Mega Sidebar */
.mega-sidebar {
    width: 280px;
    background: white;
    padding: 1.5rem 0;
    border-right: 1px solid #f1f5f9;
}

.mega-sidebar-item {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    color: #475569;
    font-size: 0.95rem;
}

.mega-sidebar-item i {
    font-size: 0.75rem;
    opacity: 0.5;
    transition: transform 0.2s;
}

.mega-sidebar-item:hover {
    background: #f1f5f9;
    color: var(--text-primary);
}

.mega-sidebar-item.active {
    background: #eff6ff;
    color: #2563eb;
}

.mega-sidebar-item.active i {
    opacity: 1;
    transform: translateX(3px);
    color: #2563eb;
}

/* Mega Content Area */
.mega-content {
    flex: 1;
    padding: 2rem;
    background: white;
    min-height: 400px;
}

.mega-pane {
    display: none;
    animation: fadeInMega 0.3s ease;
}

.mega-pane.active {
    display: block;
}

@keyframes fadeInMega {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-pane h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
    font-weight: 700;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.mega-card {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    transition: all 0.2s ease;
    text-decoration: none;
    background: #fff;
}

.mega-card:hover {
    background: #f8fafc;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.mega-icon {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: #2563eb;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.mega-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: #1e293b;
    font-weight: 600;
}

.mega-info p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
}

/* Badges */
.badge-new {
    background: #ef4444;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 800;
    margin-left: 8px;
    text-transform: uppercase;
}

/* Adjustments for Mobile */
@media (max-width: 1024px) {
    .mega-menu {
        display: none !important;
    }
}

/* Blog Modern Design */
.blog-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.blog-card-premium {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-accent);
}

.blog-img-box {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card-premium:hover .blog-img-box img {
    transform: scale(1.1);
}

.blog-category-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-content-premium {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta-new {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #94a3b8;
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
}

.blog-meta-new i {
    color: var(--primary-accent);
}

.blog-content-premium h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    color: #0f172a;
    transition: color 0.3s;
}

.blog-content-premium h3 a {
    color: inherit;
}

.blog-content-premium h3 a:hover {
    color: var(--primary-accent);
}

.blog-content-premium p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.blog-footer-link {
    font-weight: 700;
    color: var(--primary-accent);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.blog-footer-link i {
    transition: transform 0.3s ease;
}

.blog-footer-link:hover i {
    transform: translateX(5px);
}

/* Post Content Styles */
.post-header-premium {
    padding: 100px 0 60px;
    background: #f8fafc;
}

.post-container-premium {
    max-width: 900px;
    margin: -80px auto 100px;
    background: white;
    padding: 5rem;
    border-radius: 32px;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 5;
}

@media (max-width: 768px) {
    .blog-grid-premium {
        grid-template-columns: 1fr;
    }

    .post-container-premium {
        padding: 2.5rem 1.5rem;
        margin-top: -40px;
        border-radius: 20px;
    }
}

@import url('responsive.css');