/* ===== global.css ===== */
/* assets/css/global.css */



/* Import Inter and Sora fonts */

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700;800&family=Sora:wght@300;400;500;600;700&display=swap');



:root {

    /* Color System */

    --primary-blue: #2484c6;

    --primary-blue-light: #3a9bdc;

    --primary-blue-dark: #1a5fa6;

    --deep-bg-start: #1e2f8f;

    --deep-bg-mid: #0f1e4a;

    --deep-bg-end: #020617;

    

    /* Typography */

        --font-body: 'Lexend', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --font-heading: 'Sora', sans-serif;

    

    /* Spacing */

    --header-height: 85px;

    --container-max: 1400px;

    --section-padding: 100px 24px;

    

    /* Glass Effects */

    --glass-bg: rgba(45, 63, 148, 0.25);

    --glass-border: rgba(255, 255, 255, 0.15);

    --blur-amount: 20px;

    

    /* Shadows */

    --shadow-sm: 0 8px 20px -5px rgba(0, 0, 0, 0.2);

    --shadow-md: 0 15px 35px -8px rgba(0, 0, 0, 0.3);

    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.4);

    --glow-blue: 0 0 30px rgba(36, 132, 198, 0.3);

    

    /* Transitions */

    --transition-fast: 0.2s ease;

    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

}



* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



html {

    scroll-behavior: smooth;

}



body {

    font-family: var(--font-body);

    color: white;

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;

    background: radial-gradient(

        circle at 50% 30%,

        #1e2f8f 0%,

        #0f1e4a 30%,

        #070f2a 55%,

        #020617 100%

    );

    background-attachment: fixed;

    min-height: 100vh;

}



body::before {

    content: "";

    position: fixed;

    inset: 0;

    background: radial-gradient(

        circle at 50% 20%,

        rgba(120, 150, 255, 0.12),

        transparent 60%

    );

    pointer-events: none;

    z-index: -1;

}



/* Typography */

h1, h2, h3, h4, h5, h6 {

    font-family: var(--font-heading);

    font-weight: 600;

    line-height: 1.2;

    letter-spacing: -0.02em;

}



h1 {

    font-size: clamp(2.8rem, 9vw, 5.2rem);

    font-weight: 700;

}



h2 {

    font-size: clamp(2.2rem, 5vw, 3.5rem);

    margin-bottom: 1rem;

}



h3 {

    font-size: clamp(1.5rem, 3vw, 2rem);

}



p {

    margin-bottom: 1rem;

    color: rgba(255, 255, 255, 0.85);

}



a {

    text-decoration: none;

    color: inherit;

}



/* Container */

.container {

    max-width: var(--container-max);

    margin: 0 auto;

    padding: 0 24px;

}



/* Section Base */

.section {

    position: relative;

    padding: var(--section-padding);

    overflow: hidden;

}



.section-header {

    text-align: center;

    margin-bottom: 60px;

}



.section-subtitle {

    display: inline-block;

    font-family: var(--font-heading);

    font-size: 0.9rem;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 3px;

    color: var(--primary-blue-light);

    margin-bottom: 16px;

    padding: 6px 16px;

    background: rgba(36, 132, 198, 0.15);

    border-radius: 30px;

    backdrop-filter: blur(8px);

    border: 1px solid rgba(36, 132, 198, 0.3);

}



.section-title {

    margin-bottom: 20px;

    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);

}



.section-description {

    max-width: 700px;

    margin: 0 auto;

    font-size: 1.1rem;

}



/* Buttons */

.btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 32px;

    border-radius: 50px;

    font-weight: 600;

    font-size: 1rem;

    transition: var(--transition-base);

    border: 1px solid transparent;

    cursor: pointer;

    white-space: nowrap;

}



.btn-primary {

    background: var(--primary-blue);

    color: white;

    box-shadow: 0 8px 20px -5px rgba(36, 132, 198, 0.4);

}



.btn-primary:hover {

    background: var(--primary-blue-light);

    transform: translateY(-2px);

    box-shadow: 0 12px 25px -5px rgba(36, 132, 198, 0.5);

}



.btn-outline {

    background: transparent;

    border-color: rgba(255, 255, 255, 0.3);

    color: white;

    backdrop-filter: blur(8px);

}



.btn-outline:hover {

    background: rgba(255, 255, 255, 0.1);

    border-color: rgba(255, 255, 255, 0.5);

}



.btn-large {

    padding: 18px 40px;

    font-size: 1.1rem;

}



/* Glass Card */

.glass-card {

    background: rgba(45, 63, 148, 0.15);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 24px;

    padding: 32px;

    transition: var(--transition-base);

}



.glass-card:hover {

    background: rgba(45, 63, 148, 0.25);

    border-color: rgba(255, 255, 255, 0.2);

    transform: translateY(-5px);

    box-shadow: var(--shadow-md);

}



/* Grid System */

.grid {

    display: grid;

    gap: 30px;

}



.grid-2 {

    grid-template-columns: repeat(2, 1fr);

}



.grid-3 {

    grid-template-columns: repeat(3, 1fr);

}



.grid-4 {

    grid-template-columns: repeat(4, 1fr);

}



/* Animations */

@keyframes fadeUp {

    from {

        opacity: 0;

        transform: translateY(30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}



@keyframes fadeIn {

    from { opacity: 0; }

    to { opacity: 1; }

}



@keyframes scaleIn {

    from {

        opacity: 0;

        transform: scale(0.9);

    }

    to {

        opacity: 1;

        transform: scale(1);

    }

}



.fade-up {

    animation: fadeUp 0.6s ease-out forwards;

}



/* Utility Classes */

.text-center { text-align: center; }

.text-gradient {

    background: linear-gradient(135deg, #fff 0%, #aad0ff 100%);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}



.mb-1 { margin-bottom: 0.5rem; }

.mb-2 { margin-bottom: 1rem; }

.mb-3 { margin-bottom: 1.5rem; }

.mb-4 { margin-bottom: 2rem; }

.mb-5 { margin-bottom: 3rem; }



/* Scrollbar */

::-webkit-scrollbar {

    width: 8px;

}



::-webkit-scrollbar-track {

    background: rgba(0, 0, 0, 0.2);

}



::-webkit-scrollbar-thumb {

    background: var(--primary-blue);

    border-radius: 4px;

}



::-webkit-scrollbar-thumb:hover {

    background: var(--primary-blue-light);

}



/* Responsive */

@media (max-width: 992px) {

    .grid-4 { grid-template-columns: repeat(2, 1fr); }

    .grid-3 { grid-template-columns: repeat(2, 1fr); }

    :root { --section-padding: 80px 20px; }

}



@media (max-width: 768px) {

    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

    :root { --section-padding: 60px 16px; }

    .section-header { margin-bottom: 40px; }

}



/* Fix horizontal overflow */

html, body {

    overflow-x: hidden;

    width: 100%;

    max-width: 100vw;

}



* {

    box-sizing: border-box;

}



/* Ensure no element overflows */

img, video, iframe, .container, section, div {

    max-width: 100%;

}

/* =========================================================
   SITE-WIDE LAYOUT / TYPE CONSISTENCY
   Same content width and readable sizing on every page.
   ========================================================= */
html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* One shared page width matching the Home page/header/footer container. */
.page-container,
.services-hero,
.categories-container,
.why-choose-section,
.cta-section-full,
.portfolio-hero,
.category-selector-container,
.portfolio-grid-container,
.blog-content-section,
.contact-info-section,
.contact-form-section,
.policy-container,
.team-hero-container,
.vision-mission-container,
.service-view-section,
.work-detail-section {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
}

/* Consistent horizontal gutters across all screens. */
@media (min-width: 769px) {
    .page-container,
    .portfolio-hero,
    .contact-info-section,
    .contact-form-section,
    .policy-container,
    .team-hero-container,
    .service-view-section,
    .work-detail-section {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 768px) {
    :root { --page-gutter: 16px; }
    .container,
    .header-container,
    .page-container,
    .services-hero,
    .categories-container,
    .why-choose-section,
    .cta-section-full,
    .portfolio-hero,
    .category-selector-container,
    .blog-content-section,
    .contact-info-section,
    .contact-form-section,
    .policy-container,
    .team-hero-container,
    .service-view-section,
    .work-detail-section {
        padding-left: var(--page-gutter) !important;
        padding-right: var(--page-gutter) !important;
    }

    body, p, a, button, input, textarea, select, label, li {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
}

/* ===== navbar.css ===== */
/* Fixed Header */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    pointer-events: none;

}

.header-frame {
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    background: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
    position: relative;
    transition: var(--transition-base);

}

.header-frame.scrolled {
    background: rgba(15, 30, 74, 0.7);
    backdrop-filter: blur(25px);

}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;

}

.main-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
    background: transparent;
    position: relative;

}

/* Logo */

.nav-left {
    display: flex;
    align-items: center;

}

.logo {
    display: flex;
    align-items: center;

}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-base);

}

/* Navigation Links */

.nav-center {
    display: flex;
    align-items: center;

}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;

}

.nav-item {
    position: relative;

}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-base);
    background: transparent;
    white-space: nowrap;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);

}

.nav-link i {
    font-size: 1rem;
    opacity: 0.9;
    transition: var(--transition-base);

}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);

}

.nav-link:hover i {
    transform: translateY(-1px);

}

/* Active Link */

.nav-link.active {
    background: rgba(36, 132, 198, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);

}

/* Services Mega Menu Trigger */

.nav-item.mega-menu-trigger {
    position: relative;

}

/* Contact Button */

.nav-link.btn-contact {
    background: var(--primary-blue);
    box-shadow: 0 8px 16px -5px #0f2c4e;
    margin-left: 8px;

}

.nav-link.btn-contact:hover {
    background: var(--primary-blue-light);
    transform: translateY(-1px);

}

/* ========== HIRING PILL (Next to Our Team) ========== */

.hiring-nav-item {
    margin-left: 4px;

}

.hiring-pill {
    display: flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 40px;
    transition: var(--transition-base);
    animation: gentlePulse 2s infinite ease-in-out;

}

.hiring-pill:hover {
    transform: scale(1.05);
}

.hiring-pill-img {
    height: 36px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));

}

/* ========== MOBILE HIRING BADGE (Next to Logo) ========== */

.mobile-hiring-badge {
    display: none;
    margin-left: 12px;
    cursor: pointer;
    transition: var(--transition-base);
    animation: gentlePulse 2s infinite ease-in-out;

}

.mobile-hiring-badge:hover {
    transform: scale(1.05);
}

.mobile-hiring-img {
    height: 32px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));

}

/* Show mobile hiring only on mobile */

@media (max-width: 1100px) {
    .mobile-hiring-badge {
        display: flex;
    }

    /* Hide desktop hiring pill on mobile */
    .hiring-nav-item {
        display: none;
    }

}

/* Responsive adjustments */

@media (max-width: 768px) {
    .mobile-hiring-img {
        height: 28px;
    }

}

/* Nav Right */

.nav-right {
    display: flex;
    align-items: center;

}

/* Hiring Button */
.hiring-btn:hover {
    transform: scale(1.05);

}

@keyframes gentlePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

}

/* ========== MEGA MENU ========== */

.mega-menu-container {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-base);
    pointer-events: none;
    z-index: 999;

}

.mega-menu-trigger:hover+.mega-menu-container,

.mega-menu-container:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;

}

.mega-menu {
    background: rgba(15, 30, 74, 0.85);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    margin-top: 10px;
    padding: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);

}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;

}

.mega-menu-category {
    min-width: 180px;

}

.mega-category-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-blue);

}

.mega-category-title i {
    color: var(--primary-blue-light);
    font-size: 1.2rem;

}

.mega-service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;

}

.mega-service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);

}

.mega-service-item i {
    color: var(--primary-blue-light);
    font-size: 0.9rem;
    width: 18px;
    opacity: 0.8;

}

.mega-service-item:hover {
    background: rgba(36, 132, 198, 0.25);
    color: white;
    transform: translateX(5px);

}

.mega-service-item:hover i {
    opacity: 1;

}

.service-count {
    margin-left: auto;
    font-size: 0.75rem;
    background: rgba(36, 132, 198, 0.3);
    padding: 2px 8px;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);

}

/* ========== MOBILE STYLES ========== */

.mobile-actions {
    display: none;
    align-items: center;
    gap: 10px;

}

.menu-btn {
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: var(--transition-base);

}

.menu-btn:hover {
    background: var(--primary-blue);

}

.mobile-hiring {
    display: none;
    cursor: pointer;

}

/* Mobile Menu Panel */

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(85%, 360px);
    height: 100vh;
    background: rgba(15, 30, 74, 0.95);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.3);
    padding: 28px 20px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;

}

.mobile-menu-panel.open {
    transform: translateX(0);

}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px;

}

.close-menu {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: var(--transition-base);

}

.close-menu:hover {
    background: var(--primary-blue);

}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;

}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    border-radius: 48px;
    color: white;
    font-weight: 600;
    font-size: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-base);

}

.mobile-nav-link i {
    width: 24px;
    color: var(--primary-blue-light);

}

.mobile-nav-link:hover {
    background: var(--primary-blue);
    border-color: white;

}

.mobile-panel-footer {
    margin-top: auto;
    padding: 24px 0 8px;
    color: #c2d9ff;
    font-size: 0.8rem;
    text-align: center;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);

}

/* Menu Overlay */

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s;
    pointer-events: none;

}

.menu-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

}

/* Responsive Breakpoints */

@media (max-width: 1100px) {
    .nav-center {
        display: none;
    }

    .nav-right {
        display: none;
    }

    .mobile-actions {
        display: flex;
    }

    .mega-menu-container {
        display: none;
    }

}

@media (max-width: 768px) {
    .header-container {
        padding: 8px 16px;
    }

    .main-navbar {
        height: 60px !important;
    }

    .logo-img {
        height: 40px;
    }

}

@media (min-width: 1101px) {

    .mobile-menu-panel,
    .menu-overlay {
        display: none;
    }

}

/* Reduce navbar height on mobile */

@media (max-width: 768px) {
    .main-navbar {
        height: 56px !important;
    }

}

@media (max-width: 480px) {
    .main-navbar {
        height: 50px !important;
    }

}

/* Active state consistency for the Careers / hiring control */
/* .hiring-pill.active,
.mobile-hiring-badge.active {
    background: rgba(36, 132, 198, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
} */

/* ===== hero.css ===== */
/* assets/css/hero.css */

.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
    margin-top: 0;
}

/* Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    background: #020617; /* Fallback */
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;

    opacity: 1; /* FIX */
}


/* Video Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 20% 30%,
        rgba(45, 63, 148, 0.2) 0%,
        rgba(36, 132, 198, 0.15) 100%
    );
    z-index: 2;
    pointer-events: none;
}


/* CTA Button */
.cta-magnetic {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    color: #1e3b7a;
    padding: 16px 44px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.3rem;
    text-decoration: none;
    box-shadow: 0 15px 30px -5px rgba(0, 20, 50, 0.4);
    transition: box-shadow 0.3s, transform 0.15s;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    letter-spacing: 0.3px;
    position: relative;
    will-change: transform;
}

.cta-magnetic i {
    margin-left: 10px;
    transition: transform 0.2s;
}

.cta-magnetic:hover {
    background: white;
    box-shadow: 0 20px 35px -5px #0f2c4e, 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.cta-magnetic:hover i {
    transform: translateX(5px);
}

/* Video Loading Indicator */
.video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    color: white;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.video-loading.hidden {
    display: none;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Responsive */

/* ===== home.css ===== */
/* assets/css/home.css */

/* What We Do Section */
.what-we-do {
    position: relative;
    background: transparent;
    padding-top: 100px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    text-align: center;
    transition: var(--transition-base);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: var(--glow-blue);
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue-light);
    font-weight: 600;
    transition: var(--transition-base);
}

.service-link:hover {
    gap: 12px;
    color: white;
}

/* Why Choose Us Section */
.why-choose-us {
    position: relative;
    background: transparent;
}

.features-grid {
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
}

.feature-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue-light), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.feature-item h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.75);
}

/* CTA Section */
.cta-section {
    padding-bottom: 120px;
}

.cta-content {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(36, 132, 198, 0.15), rgba(45, 63, 148, 0.1));
    border: 1px solid rgba(36, 132, 198, 0.3);
}

.cta-content h2 {
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        padding: 40px 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        /* width: 100%; */
        justify-content: center;
    }
    .btn-large
    {
        padding: 14px 38px;
    }
}





.screen-gallery .gallery-item {
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.screen-gallery .gallery-item:hover {
    transform: scale(1.03);
    z-index: 5;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.screen-gallery .gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.screen-gallery .gallery-item:hover::after {
    opacity: 1;
}


/* Listen Button */
.listen-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(36, 132, 198, 0.12);
    border: 1px solid rgba(36, 132, 198, 0.3);
    border-radius: 40px;
    color: #6db3ff;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(8px);
    white-space: nowrap;
}

.listen-btn:hover {
    background: rgba(36, 132, 198, 0.22);
    border-color: rgba(36, 132, 198, 0.5);
    color: white;
    transform: translateY(-1px);
}

.listen-btn i {
    font-size: 1rem;
}

.listen-btn.playing {
    background: #2484c6;
    border-color: #2484c6;
    color: white;
}

/* Green pulse dot */
.listen-pulse {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: #4cd964;
    border-radius: 50%;
    display: none;
    animation: listenPulse 1s infinite;
}

.listen-btn.playing .listen-pulse {
    display: block;
}

.listen-btn.playing i {
    margin-left: 12px;
}

@keyframes listenPulse {
    0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
    50% { opacity: 0.5; transform: translateY(-50%) scale(1.8); }
}

/* Desktop - Side by side */
@media (min-width: 769px) {
    .about-text-content .content-badge {
        display: inline-flex;
    }
    
    .listen-btn {
        display: inline-flex;
    }
}

/* Mobile - Listen button BELOW Who We Are */
@media (max-width: 768px) {
    .about-text-content {
        text-align: center;
    }
    
    .content-badge {
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 10px;
    }
    
    .listen-btn {
        display: flex;
        width: fit-content;
        margin: 0 auto 20px;
        justify-content: center;
    }
    
    .content-title {
        text-align: center;
    }
    
    .content-description {
        text-align: left;
    }
    
    .highlight-text {
        text-align: left;
    }
}

/* ===== footer.css ===== */
/* FOOTER WITH RADIAL GRADIENT + MATRIX RAIN */
.site-footer {
    position: relative;
    min-height: 500px;
    background: radial-gradient(circle at 50% 30%, #1e2f8f 0%, #0f1e4a 30%, #070f2a 55%, #020617 100%);
    overflow: hidden;
    isolation: isolate;
}

/* Canvas Background - Matrix Rain */
.footer-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    opacity: 0.7;
    pointer-events: none;
}

/* Footer Content Overlay - Transparent to see animation */
.footer-overlay {
    position: relative;
    z-index: 10;
    padding: 60px 0 20px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-top: 1px solid rgba(36, 132, 198, 0.3);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Footer Brand - Semi-transparent for readability */
.footer-brand {
    max-width: 320px;
}

.footer-logo {
    height: 58px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(1.1);
    margin-top: -24px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(36, 132, 198, 0.2);
    border: 1px solid rgba(36, 132, 198, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.social-link:hover {
    background: #2484c6;
    border-color: #2484c6;
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(36, 132, 198, 0.6);
}

/* Footer Links */
.footer-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #2484c6, transparent);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.footer-links a i {
    font-size: 0.8rem;
    color: #6db3ff;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
    text-shadow: 0 0 15px rgba(109, 179, 255, 0.5);
}

.footer-links a:hover i {
    transform: translateX(3px);
    color: #aad0ff;
}

/* Newsletter */
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 30px;
    border: 1px solid rgba(36, 132, 198, 0.4);
    background: rgba(2, 6, 23, 0.3);
    color: white;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.newsletter-form input:focus {
    border-color: #2484c6;
    background: rgba(36, 132, 198, 0.2);
    box-shadow: 0 0 20px rgba(36, 132, 198, 0.3);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    padding: 12px 20px;
    border-radius: 30px;
    border: none;
    background: #2484c6;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #3a9bdc;
    box-shadow: 0 0 25px rgba(36, 132, 198, 0.5);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(36, 132, 198, 0.25);
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.footer-legal a:hover {
    color: #aad0ff;
    text-shadow: 0 0 15px rgba(109, 179, 255, 0.4);
}

/* ============================================   RESPONSIVE   ============================================ */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        min-height: auto;
    }

    .footer-overlay {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-title {
        display: block;
    }

    .footer-title::after {
        left: 5%;
        transform: translateX(-50%);
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
    }
    .footer-description
    {
        max-width: 370px;
    }
}

/* Newsletter Form */
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 30px;
    border: 1px solid rgba(36, 132, 198, 0.3);
    background: rgba(2, 6, 23, 0.5);
    color: white;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.newsletter-form input:focus {
    border-color: #2484c6;
    background: rgba(36, 132, 198, 0.15);
    box-shadow: 0 0 15px rgba(36, 132, 198, 0.2);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 14px 20px;
    border-radius: 30px;
    border: none;
    background: #2484c6;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #3a9bdc;
    box-shadow: 0 0 20px rgba(36, 132, 198, 0.4);
}

/* Success Message */
.form-success-message {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 16px;
    background: rgba(76, 217, 100, 0.15);
    border: 1px solid rgba(76, 217, 100, 0.3);
    border-radius: 30px;
    color: #4cd964;
    font-size: 0.85rem;
}

.form-success-message.show {
    display: flex;
}

.form-success-message i {
    font-size: 1rem;
}

/* Footer Contact Button */
.footer-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #2484c6, #1a5fa6);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(36, 132, 198, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-contact-btn:hover {
    background: linear-gradient(135deg, #3a9bdc, #2484c6);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(36, 132, 198, 0.4);
    color: white;
}

.footer-contact-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.footer-contact-btn:hover i {
    transform: translateX(3px);
}

/* ===== animations.css ===== */


/* ===== responsive.css ===== */


/* ===== hero-slot.css ===== */
/* ============================================
   HERO SVG TEXT ANIMATION
   ============================================ */

/* Hero Section Base */
.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
}

/* Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    background: #020617;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(45, 63, 148, 0.3) 0%, rgba(15, 30, 74, 0.5) 50%, rgba(2, 6, 23, 0.7) 100%);
    z-index: 2;
    pointer-events: none;
}

/* ============================================
   HERO CONTENT BOX - Glass Box with 48px radius
   ============================================ */
.hero-content-box {
    position: relative;
    z-index: 10;
    max-width: 900px;
    width: 90%;
    /* margin: 0 auto; */
    padding: 50px 40px;
    text-align: center;
    color: white;
    margin-top: 111px;

    /* Glass Effect */
    background: rgba(30, 47, 143, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.2);

    /* Box Shadow */
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);

    /* Border Radius */
    border-radius: 48px;

    margin-bottom: 105px;

}

/* Slot Machine Container */
.slot-machine-container {
    margin-bottom: 30px;
    position: relative;
}

/* ============================================
   APPHOUSE BRAND HOVER EFFECT
   ============================================ */
.brand-effect {
    margin: 0 0 20px 0;
    padding: 0;
    position: relative;
    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: transparent;
    text-transform: uppercase;
    cursor: default;
}

.brand-effect span:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
    color: #ffffff;
    transition: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
    overflow: hidden;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.brand-effect:hover span:nth-child(1) {
    transform: translateY(-12px);
    color: #aad0ff;
    text-shadow: 0 0 30px rgba(36, 132, 198, 0.6);
}

.brand-effect span:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    color: #ffffff;
    transition: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
    overflow: hidden;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.brand-effect:hover span:nth-child(2) {
    transform: translateY(12px);
    color: #c5e0ff;
    text-shadow: 0 0 30px rgba(36, 132, 198, 0.6);
}

.brand-effect span:nth-child(3) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scaleY(0);
    width: auto;
    min-width: 160px;
    color: #ffffff;
    background: linear-gradient(135deg, #2484c6, #1a5fa6);
    font-family: 'Inter', sans-serif;
    font-size: 0.22em;
    font-weight: 600;
    letter-spacing: 0.5em;
    text-align: center;
    padding: 8px 20px 8px 40px;
    border-radius: 40px;
    transition: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 20px rgba(36, 132, 198, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
}

.brand-effect:hover span:nth-child(3) {
    transform: translate(-50%, -50%) scaleY(1);
    letter-spacing: 0.3em;
    box-shadow: 0 0 30px rgba(36, 132, 198, 0.6);
}

/* ============================================
   SVG TEXT ANIMATION
   ============================================ */
.svg-text-container {
    width: 100%;
    margin: 20px 0;
}

.animated-text-svg {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: -40px;
    margin-top: -40px;
}

.svg-text-line {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    fill: transparent;
    stroke: #ffffff;
    stroke-width: 1.5;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawText 1.5s ease forwards;
    opacity: 0;
}

.svg-line-1 {
    font-size: 36px;
    animation-delay: 0.3s;
}

.svg-line-2 {
    font-size: 38px;
    font-weight: 800;
    animation-delay: 1.0s;
    stroke: #aad0ff;
}

@keyframes drawText {
    0% {
        opacity: 0;
        stroke-dashoffset: 300;
        fill: transparent;
    }

    40% {
        opacity: 1;
        stroke-dashoffset: 150;
        fill: transparent;
    }

    70% {
        stroke-dashoffset: 0;
        fill: transparent;
    }

    85% {
        fill: rgba(255, 255, 255, 0.3);
        stroke: transparent;
    }

    100% {
        opacity: 1;
        stroke-dashoffset: 0;
        fill: #ffffff;
        stroke: transparent;
    }
}

/* Line 2 gradient fill after animation */
.svg-line-2 {
    animation: drawTextGradient 1.5s ease forwards;
    animation-delay: 1.0s;
}

@keyframes drawTextGradient {
    0% {
        opacity: 0;
        stroke-dashoffset: 300;
        fill: transparent;
    }

    40% {
        opacity: 1;
        stroke-dashoffset: 150;
        fill: transparent;
    }

    70% {
        stroke-dashoffset: 0;
        fill: transparent;
    }

    85% {
        fill: rgba(170, 208, 255, 0.3);
        stroke: transparent;
    }

    100% {
        opacity: 1;
        stroke-dashoffset: 0;
        fill: #aad0ff;
        stroke: transparent;
    }
}

/* Line 3 gradient fill after animation */
.svg-line-3 {
    animation: drawTextGradient2 1.5s ease forwards;
    animation-delay: 1.7s;
}

@keyframes drawTextGradient2 {
    0% {
        opacity: 0;
        stroke-dashoffset: 300;
        fill: transparent;
    }

    40% {
        opacity: 1;
        stroke-dashoffset: 150;
        fill: transparent;
    }

    70% {
        stroke-dashoffset: 0;
        fill: transparent;
    }

    85% {
        fill: rgba(197, 224, 255, 0.3);
        stroke: transparent;
    }

    100% {
        opacity: 1;
        stroke-dashoffset: 0;
        fill: #c5e0ff;
        stroke: transparent;
    }
}

/* Hero Subtitle - Hidden initially */
.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 3vw, 1rem);
    font-weight: 400;
    opacity: 0;
    max-width: 600px;
    margin: 25px auto 30px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    animation: fadeInContent 0.8s ease 2.8s forwards;
}

/* CTA Button - Hidden initially */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #1e3b7a;
    padding: 16px 18px;
    border-radius: 60px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 15px 30px -5px rgba(0, 20, 50, 0.4);
    transition: box-shadow 0.3s, transform 0.15s, background 0.3s;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    letter-spacing: 0.3px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInContent 0.8s ease 3.2s forwards;
}

@keyframes fadeInContent {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button:hover {
    background: white;
    box-shadow: 0 20px 35px -5px #0f2c4e, 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.cta-button i {
    transition: transform 0.2s;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Wave Separator */
.hero-wave-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    z-index: 8;
    pointer-events: none;
    overflow: visible;
    filter: drop-shadow(0 -8px 20px rgba(0, 160, 255, 0.25));
}

.wave-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.wave-path {
    animation: waveFlow 8s linear infinite;
}

.wave-ltr {
    animation-duration: 10s;
}

.wave-rtl {
    animation-duration: 8s;
    animation-direction: reverse;
}

.wave-core {
    animation-duration: 6s;
    animation-direction: alternate;
}

@keyframes waveFlow {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 2000;
    }
}

@media (max-width: 768px) {
    .animated-text-svg {
        transform: scale(1.1);
        transform-origin: center;
        max-height: 140px;
        /* Increased from 100px to give more room */
        margin-bottom: -10px;
        margin-top: -8px;
    }

    /* Add space between the two lines */
    .svg-line-1 {
        font-size: 18px;
    }

    .svg-line-2 {
        font-size: 20px;
    }


    .hero-subtitle {
        font-size: 22px;
        margin: 15px auto 20px;
        line-height: 1.5;
    }
    .cta-button
    {
        font-size: 17px;
        padding: 13px 18px;
    }
}

@media (max-width: 480px) {
    .animated-text-svg {
        transform: scale(0.95);
        max-height: 140px;
        margin-bottom: -15px;
        margin-top: -20px;
    }

    .svg-line-1 {
        font-size: 36px;
    }

    .svg-line-2 {
        font-size: 52px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin: 10px auto 15px;
    }
    .hero-content-box
    {
        padding: 30px;
    }
    .cta-button
    {
        font-size: 14px;
        padding: 12px;
    }
    
}

/* ============================================ */
/* 📊 HERO STATS BOXES - 3 SMALL HORIZONTAL      */
/* ============================================ */

.hero-stats-boxes {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
    opacity: 0;
    animation: fadeInStats 0.8s ease 2.5s forwards;
}

@keyframes fadeInStats {
    to {
        opacity: 1;
    }
}

.stat-box {
    background: rgba(36, 132, 198, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 12px 20px;
    text-align: center;
    min-width: 130px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(36, 132, 198, 0.2);
    border-color: rgba(36, 132, 198, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(36, 132, 198, 0.15);
}

.stat-box-number {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #ffffff 0%, #aad0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-box-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-stats-boxes {
        gap: 10px;
        flex-wrap: wrap;
    }

    .stat-box {
        min-width: 100px;
        padding: 10px 14px;
        border-radius: 12px;
    }

    .stat-box-number {
        font-size: 1.4rem;
    }

    .stat-box-label {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .hero-stats-boxes {
        gap: 8px;
    }

    .stat-box {
        min-width: 90px;
        padding: 8px 10px;
    }

    .stat-box-number {
        font-size: 1.2rem;
    }

    .stat-box-label {
        font-size: 0.55rem;
    }
}

/* ===== laptop-showcase.css ===== */
/* ============================================
   LAPTOP SHOWCASE SECTION
   ============================================ */

/* ============================================ */
/* 🔧 EASY ADJUSTMENT - CHANGE THESE 4 VALUES  */
/* ============================================ */

:root {
    --screen-top: 6.1%;
    --screen-left: 14%;
    --screen-width: 72%;
    --screen-height: 59.5%;
}

/* ============================================ */
/* 📱 MOBILE ADJUSTMENTS                        */
/* ============================================ */
@media (max-width: 768px) {
    :root {
    --screen-top: 6.1%;
    --screen-left: 14%;
    --screen-width: 72%;
    --screen-height: 59.5%;
    }
}

@media (max-width: 480px) {
    :root {
            --screen-top: 6.1%;
    --screen-left: 14%;
    --screen-width: 72%;
    --screen-height: 59.5%;
    }
}

/* ============================================ */
/* MAIN SECTION STYLES                          */
/* ============================================ */

/* .laptop-showcase-section {
    position: relative;
    padding: 80px 24px 100px;
    background: transparent;
} */

.laptop-showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 50px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(36, 132, 198, 0.15);
    border: 1px solid rgba(36, 132, 198, 0.3);
    border-radius: 30px;
    color: #6db3ff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.text-gradient {
    background: linear-gradient(135deg, #aad0ff 0%, #6db3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* ============================================ */
/* LAPTOP WRAPPER - Image + Screen               */
/* ============================================ */

.laptop-wrapper {
    position: relative;
    width: 100%;
    max-width: 1111px;
    margin: 0 auto;
}

.laptop-frame {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    pointer-events: none;
}

/* ============================================ */
/* SCREEN CONTENT - POSITIONED INSIDE LAPTOP     */
/* ============================================ */

.laptop-screen-content {
    position: absolute;
    top: var(--screen-top);
    left: var(--screen-left);
    width: var(--screen-width);
    height: var(--screen-height);
    overflow-y: auto;
    overflow-x: hidden;
    background: linear-gradient(180deg, #0a1a3a 0%, #06102a 100%);
    scroll-behavior: smooth;
    
    /* Trapezoid shape - narrower top, wider bottom */
    clip-path: polygon(
        1.4% 0%,      /* top-left - slightly inset */
        98.6% 0%,     /* top-right - slightly inset */
        99.5% 100%,  /* bottom-right - full width */
        0.5% 100%     /* bottom-left - full width */
    );
}

/* Custom Scrollbar */
.laptop-screen-content::-webkit-scrollbar {
    width: 3px;
}

.laptop-screen-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
}

.laptop-screen-content::-webkit-scrollbar-thumb {
    background: #2484c6;
    border-radius: 3px;
}

.laptop-screen-content::-webkit-scrollbar-thumb:hover {
    background: #3a9bdc;
}

/* ============================================ */
/* INSIDE SCREEN CONTENT                        */
/* ============================================ */

.screen-inner {
    padding: 16px 14px;
}

/* ----- Header ----- */
.screen-header {
    text-align: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.screen-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 6px;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #2484c6, #1a5fa6);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: white;
}

.logo-text {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #aad0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.screen-tagline {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.3px;
}

/* ----- Stats ----- */
.screen-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 16px;
    padding: 10px 6px;
    background: rgba(36, 132, 198, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(36, 132, 198, 0.15);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #aad0ff;
    line-height: 1.2;
}

.stat-label {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.45);
}

/* ----- About ----- */
.screen-about {
    margin-bottom: 16px;
}

.screen-about h3 {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: white;
    margin-bottom: 6px;
}

.screen-about h3 i {
    color: #6db3ff;
    font-size: 10px;
}

.screen-about p {
    font-size: 9px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ----- Gallery ----- */
.screen-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 16px;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ----- Core Values ----- */
.screen-values {
    margin-bottom: 16px;
}

.screen-values h3 {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.screen-values h3 i {
    color: #6db3ff;
    font-size: 10px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.value-tag {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 6px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.75);
}

.value-tag i {
    color: #6db3ff;
    font-size: 8px;
}

/* ----- Services ----- */
.screen-services {
    margin-bottom: 16px;
}

.screen-services h3 {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.screen-services h3 i {
    color: #6db3ff;
    font-size: 10px;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.service-pill {
    padding: 4px 8px;
    background: rgba(36, 132, 198, 0.12);
    border: 1px solid rgba(36, 132, 198, 0.18);
    border-radius: 20px;
    font-size: 8px;
    color: #aad0ff;
    display: flex;
    align-items: center;
    gap: 3px;
}

.service-pill i {
    font-size: 7px;
}

/* ----- Timeline ----- */
.screen-timeline {
    margin-bottom: 16px;
}

.screen-timeline h3 {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.screen-timeline h3 i {
    color: #6db3ff;
    font-size: 10px;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.timeline-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-bottom: 6px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}

.timeline-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.year {
    font-family: 'Sora', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #6db3ff;
    min-width: 32px;
}

.event {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.75);
}

/* ----- CTA ----- */
.screen-cta {
    text-align: center;
    padding: 14px 10px;
    background: linear-gradient(135deg, rgba(36, 132, 198, 0.12), rgba(45, 63, 148, 0.08));
    border-radius: 10px;
    border: 1px solid rgba(36, 132, 198, 0.18);
    margin-bottom: 14px;
}

.screen-cta h3 {
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: white;
    margin-bottom: 3px;
}

.screen-cta p {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 10px;
}

.screen-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    background: linear-gradient(135deg, #2484c6, #1a5fa6);
    border-radius: 30px;
    color: white;
    font-size: 9px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.screen-btn:hover {
    background: linear-gradient(135deg, #3a9bdc, #2484c6);
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(36, 132, 198, 0.3);
}

.screen-btn i {
    font-size: 8px;
}

/* ----- Footer ----- */
.screen-footer {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.screen-footer p {
    font-size: 7px;
    color: rgba(255, 255, 255, 0.25);
    margin: 0;
}

/* ============================================ */
/* RESPONSIVE FINE-TUNING                       */
/* ============================================ */

@media (max-width: 900px) {
    .screen-inner {
        padding: 14px 12px;
    }
    
    .stat-number {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .laptop-showcase-section {
        padding: 60px 16px 80px;
    }
    
    .laptop-showcase-container {
        margin-top: 7px;
    }

    .screen-inner {
        padding: 12px 10px;
    }
    
    .logo-icon {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
    
    .logo-text {
        font-size: 14px;
    }
    
    .stat-number {
        font-size: 13px;
    }
    
    .screen-about p {
        font-size: 8px;
    }
    
    .screen-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item:last-child {
        display: none;
    }
}

@media (max-width: 480px) {
    .screen-inner {
        padding: 10px 8px;
    }
    
    .logo-icon {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
    
    .logo-text {
        font-size: 12px;
    }
    
    .screen-tagline {
        font-size: 7px;
    }
    
    .stat-number {
        font-size: 11px;
    }
    
    .stat-label {
        font-size: 6px;
    }
    
    .screen-about h3,
    .screen-values h3,
    .screen-services h3,
    .screen-timeline h3 {
        font-size: 10px;
    }
    
    .value-tag {
        font-size: 7px;
    }
    
    .service-pill {
        font-size: 7px;
    }
    
    .year {
        font-size: 8px;
        min-width: 26px;
    }
    
    .event {
        font-size: 7px;
    }
    
    .screen-cta h3 {
        font-size: 11px;
    }
}

/* ============================================ */
/* 🦋 FLYING LOGOS BACKGROUND                    */
/* ============================================ */


/* ============================================ */
/* 🖥️ LAPTOP SCREEN - Video + Images Layout      */
/* ============================================ */

/* Video at Top */
.laptop-video-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 6px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.laptop-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Two Images Side by Side */
.laptop-two-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 6px;
}

.laptop-half-img {
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.2s ease;
}

.laptop-half-img:hover {
    transform: scale(1.02);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.laptop-half-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Wide Image at Bottom */
.laptop-wide-img {
    width: 100%;
    aspect-ratio: 16 / 6;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.2s ease;
}

.laptop-wide-img:hover {
    transform: scale(1.01);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.laptop-wide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hover effects for all clickable images */
.laptop-half-img,
.laptop-wide-img {
    cursor: pointer;
    position: relative;
}

.laptop-half-img::after,
.laptop-wide-img::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.laptop-half-img:hover::after,
.laptop-wide-img:hover::after {
    opacity: 1;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .laptop-two-images {
        gap: 4px;
        margin-bottom: 4px;
    }
    
    .laptop-video-wrap {
        margin-bottom: 4px;
        border-radius: 4px;
    }
    
    .laptop-half-img,
    .laptop-wide-img {
        border-radius: 4px;
    }
}

/* ===== google-reviews.css ===== */
/* ============================================ */
/* 🌟 GOOGLE REVIEWS - CLEAN RESPONSIVE DESIGN   */
/* ============================================ */

.google-reviews-section {
    background: #ffffff;
    padding: 65px 24px 50px;
    position: relative;
}

.reviews-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

/* Header */
.reviews-main-header {
    text-align: center;
    margin-bottom: 30px;
}

.reviews-section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.reviews-google-branding {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.google-brand-icon {
    color: #4285f4;
    font-size: 1.3rem;
}

.google-brand-text {
    font-weight: 500;
    color: #5f6368;
    font-size: 0.95rem;
}

.google-rating-summary {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-big {
    font-family: 'Sora', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a2e;
}

.stars-group {
    display: flex;
    gap: 2px;
}

.stars-group i {
    color: #ffb300;
    font-size: 14px;
}

.review-total {
    color: #5f6368;
    font-size: 0.85rem;
}
/* Desktop - Infinite Auto-Scroll */
.reviews-infinite-slider {
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
}

.reviews-slider-track {
    display: flex;
    gap: 18px;
    animation: infiniteSlide 40s linear infinite;
    width: max-content;
}

.reviews-slider-track:hover {
    animation-play-state: paused;
}

@keyframes infiniteSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Review Card */
.review-item-card {
    flex: 0 0 320px;
    background: #f8f9fa;
    border: 1px solid #e8eaed;
    border-radius: 14px;
    padding: 18px 16px;
    text-decoration: none;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.review-item-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
    border-color: #dadce0;
    transform: translateY(-2px);
}

.review-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 10px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviewer-avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.reviewer-avatar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-details h4 {
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.review-date {
    font-size: 0.7rem;
    color: #5f6368;
    display: none;
}

.review-stars {
    display: flex;
    gap: 1px;
}

.review-stars i {
    color: #ffb300;
    font-size: 12px;
}

.review-body {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #3c4043;
    margin: 0;
    flex: 1;
}

/* Footer CTA */
.reviews-footer-action {
    text-align: center;
}

.view-all-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #1a73e8;
    color: white;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.view-all-reviews-btn:hover {
    background: #1557b0;
    box-shadow: 0 6px 18px rgba(26, 115, 232, 0.3);
    transform: translateY(-2px);
}

/* Hide old horizontal scroll */
.reviews-horizontal-scroll {
    display: none;
}

/* ============================================ */
/* MOBILE SLIDER                                 */
/* ============================================ */
.reviews-mobile-section {
    display: none;
}

/* Mobile */
@media (max-width: 768px) {
    .reviews-infinite-slider {
        display: block;
    }
    
    .reviews-slider-track {
        animation: mobileSlide 25s linear infinite;
        gap: 16px;
    }
    
    @keyframes mobileSlide {
        0% { transform: translateX(0); }
        100% { transform: translateX(-200%); }
    }
    
    .review-item-card {
        flex: 0 0 80vw;
    }
    
    .reviews-mobile-section,
    .slider-dots {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .google-reviews-section {
        padding: 40px 16px 35px;
    }
    

    
    /* Show mobile slider */
    .reviews-mobile-section {
        display: block;
    }
    
    .reviews-main-header {
        margin-bottom: 20px;
    }
    
    .reviews-section-title {
        font-size: 1.4rem;
    }
    
    .reviews-google-branding {
        flex-direction: column;
        gap: 8px;
    }
    
    .mobile-slider-container {
        overflow: hidden;
        border-radius: 14px;
    }
    
    .mobile-slider-track {
        display: flex;
        transition: transform 0.3s ease;
    }
    
    .mobile-review-card {
        flex: 0 0 100%;
        background: #f8f9fa;
        border: 1px solid #e8eaed;
        border-radius: 14px;
        padding: 18px 16px;
        text-decoration: none;
        display: flex;
        flex-direction: column;
    }
    
    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-top: 16px;
    }
    
    .slider-dot {
        width: 7px;
        height: 7px;
        background: #dadce0;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    
    .slider-dot.active {
        width: 20px;
        background: #1a73e8;
        border-radius: 10px;
    }
    
    .view-all-reviews-btn {
        /* width: 100%; */
        justify-content: center;
        font-size: 0.85rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .google-reviews-section {
        padding: 30px 12px 25px;
    }
    
    .review-item-card,
    .mobile-review-card {
        padding: 14px 12px;
    }
    
    .review-body {
        font-size: 0.8rem;
    }
    
    .reviewer-details h4 {
        font-size: 0.85rem;
    }
}

/* ===== testimonials.css ===== */
/* Client Testimonials Slider */
.client-testimonials-section{padding:90px 0;background:#06122f;position:relative;overflow:hidden}
.client-testimonials-container{width:min(1400px,calc(100% - 48px));margin:0 auto}
.client-testimonials-head{text-align:center;margin-bottom:42px}
.client-testimonials-kicker{display:inline-flex;align-items:center;gap:8px;padding:8px 16px;border:1px solid rgba(91,169,255,.35);border-radius:999px;color:#67b5ff;background:rgba(36,132,198,.12);font-size:13px;font-weight:800;letter-spacing:1.5px;text-transform:uppercase}
.client-testimonials-head h2{margin:16px 0 10px;color:#fff;font-size:clamp(32px,4vw,54px);line-height:1.1}
.client-testimonials-head p{max-width:760px;margin:0 auto;color:#b9c6df;font-size:16px;line-height:1.7}
.testimonial-slider{position:relative;padding:0 54px 34px}
.testimonial-viewport{overflow:hidden}
.testimonial-track{display:flex;gap:20px;transition:transform .55s ease;will-change:transform}
.testimonial-card{flex:0 0 calc((100% - 40px)/3);display:flex;flex-direction:column;min-height:310px;padding:24px;border:1px solid rgba(122,160,221,.22);border-radius:20px;background:#0d214c;box-shadow:0 14px 36px rgba(0,0,0,.16)}
.testimonial-brand{display:flex;align-items:center;gap:14px;margin-bottom:18px}
.testimonial-logo{width:64px;height:64px;border-radius:14px;background:#fff;display:flex;align-items:center;justify-content:center;padding:7px;flex:0 0 auto;overflow:hidden}
.testimonial-logo img{width:100%;height:100%;object-fit:contain}
.testimonial-person h3{margin:0;color:#fff;font-size:18px}.testimonial-person span{display:block;color:#79bcff;font-size:13px;margin-top:4px}
.testimonial-stars{color:#ffc84a;font-size:15px;letter-spacing:2px;margin-bottom:14px;white-space:nowrap}.testimonial-stars .filled{color:#ffc84a}.testimonial-stars .empty{color:#53627d}
.testimonial-quote{margin:0;color:#d7e0f1;font-size:15px;line-height:1.75;flex:1}.testimonial-rating-only{font-style:italic;color:#b9c6df}
.testimonial-source{display:flex;align-items:center;gap:7px;color:#9fb0cf;font-size:12px;margin-top:18px;padding-top:16px;border-top:1px solid rgba(255,255,255,.08)}
.testimonial-nav{position:absolute;top:50%;transform:translateY(-50%);width:42px;height:42px;border-radius:50%;border:1px solid rgba(103,181,255,.45);background:#123366;color:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:2;transition:.25s ease}.testimonial-nav:hover{background:#2484c6;transform:translateY(-50%) scale(1.05)}.testimonial-prev{left:0}.testimonial-next{right:0}
.testimonial-dots{display:flex;justify-content:center;gap:8px;margin-top:24px}.testimonial-dot{width:8px;height:8px;border:0;border-radius:999px;background:#425a82;padding:0;cursor:pointer;transition:.25s ease}.testimonial-dot.active{width:26px;background:#2484c6}
@media(max-width:1100px){.testimonial-card{flex-basis:calc((100% - 20px)/2)}}
@media(max-width:700px){.client-testimonials-section{padding:64px 0}.client-testimonials-container{width:min(100% - 28px,1400px)}.client-testimonials-head h2{font-size:34px}.testimonial-slider{padding:0 0 34px}.testimonial-card{flex-basis:100%;min-height:0}.testimonial-nav{top:auto;bottom:0;transform:none}.testimonial-nav:hover{transform:none}.testimonial-prev{left:calc(50% - 54px)}.testimonial-next{right:calc(50% - 54px)}.testimonial-dots{margin-top:24px;padding-bottom:52px}}

/* ===== video-showcase.css ===== */
/* ============================================ */
/* 📖 ABOUT TEXT SECTION - CLEAN CONTENT         */
/* ============================================ */

.about-text-section {
    position: relative;
    padding: 80px 24px 100px;
    background: transparent;
}

.about-text-container {
    max-width: 1300px;
    margin: 0 auto;
}

.about-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Side - Content */
.about-text-content {
    padding: 20px 0;
}

.content-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(36, 132, 198, 0.15);
    border: 1px solid rgba(36, 132, 198, 0.3);
    border-radius: 40px;
    color: #6db3ff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.content-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(135deg, #aad0ff 0%, #6db3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 550px;
}

.content-description strong {
    color: white;
    font-weight: 600;
}

.content-description em {
    color: #aad0ff;
    font-style: italic;
}

.highlight-text {
    padding: 16px 20px;
    background: rgba(36, 132, 198, 0.08);
    border-left: 3px solid #2484c6;
    border-radius: 0 12px 12px 0;
    font-size: 0.95rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* CTA Buttons */
.content-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn-primary-video,
.btn-secondary-video {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary-video {
    background: linear-gradient(135deg, #2484c6, #1a5fa6);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(36, 132, 198, 0.3);
}

.btn-primary-video:hover {
    background: linear-gradient(135deg, #3a9bdc, #2484c6);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(36, 132, 198, 0.4);
}

.btn-secondary-video {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.btn-secondary-video:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

/* Right Side - Decorative Card */
.about-text-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-decorative-card {
    position: relative;
    z-index: 2;
    padding: 40px 32px;
    text-align: center;
    max-width: 420px;
}

.decorative-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(36, 132, 198, 0.2), rgba(109, 179, 255, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(36, 132, 198, 0.3);
}

.decorative-icon i {
    font-size: 2rem;
    color: #6db3ff;
}

.decorative-quote {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.decorative-author {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-name {
    display: block;
    font-weight: 600;
    color: white;
    font-size: 1rem;
    margin-bottom: 4px;
}

.author-role {
    display: block;
    color: #6db3ff;
    font-size: 0.85rem;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #2484c6, #6db3ff);
    opacity: 0.08;
    filter: blur(30px);
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: -5%;
    left: 10%;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-2 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    right: 5%;
    animation: floatShape 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 50%;
    right: -5%;
    animation: floatShape 10s ease-in-out infinite;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(20px, -20px) scale(1.1);
    }

    66% {
        transform: translate(-15px, 15px) scale(0.9);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .about-text-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text-content {
        text-align: center;
    }

    .content-description {
        margin-left: auto;
        margin-right: auto;
    }

    .highlight-text {
        text-align: left;
    }

    .content-actions {
        justify-content: center;
    }

    .about-text-visual {
        order: -1;
    }

    .about-decorative-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .about-text-section {
        padding: 60px 20px;
    }

    .content-title {
        font-size: 1.8rem;
    }

    .content-description {
        font-size: 0.95rem;
    }

    .decorative-quote {
        font-size: 1rem;
    }

    .btn-primary-video,
    .btn-secondary-video {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .content-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary-video,
    .btn-secondary-video {
        justify-content: center;
        width: 100%;
    }

    .about-decorative-card {
        padding: 30px 20px;
    }
}
