/* Poppins Regular */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Poppins Medium */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* Poppins SemiBold */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* Poppins Bold */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* ======================================================
   GLOBAL & RESET
====================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #F8F9FB;
    color: #2A262D;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, .logo-text {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ======================================================
   VARIABLES (Light Theme - Default)
====================================================== */
:root {
    --primary-color: #FF7A1A;
    --accent-color: #A8C93C;
    --text-dark: #2A262D;
    --text-light: #6F6B73;
    --bg-deep: #F8F9FB;
    --border-color: #E7EAF0;
    --white: #FFFFFF;
    --shadow-soft: 0 10px 35px rgba(0,0,0,0.05);
}

/* ======================================================
   TOP ANNOUNCEMENT BAR
====================================================== */
.top-announcement-bar {
    background-color: #2A262D;
    color: #ffffff;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 9999;
    font-family: 'Poppins', sans-serif;
}

.ann-container {
    display: flex;
    justify-content: space-between;
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.ann-left a, .ann-right a {
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.ann-left a:hover, .ann-right a:hover {
    opacity: 0.8;
}

@media (max-width: 600px) {
    .top-announcement-bar { height: 25px; }
    .ann-container { width: 98%; }
    .ann-left a, .ann-right a { font-size: 8px; letter-spacing: 0; }
}

/* ======================================================
   HEADER & NAVIGATION
====================================================== */
.main-header {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1300px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid #E7EAF0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
}

.main-header.scrolled {
    top: 0px;
    width: 95%;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    padding: 0 28px;
    gap: 16px;
}

/* Logo */
.brand-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo img {
    height: 75px;
    width: auto;
}

/* Nav links — centre section */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.nav-item {
    text-decoration: none;
    color: #6F6B73;
    font-size: 13.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
    transition: all 0.25s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.nav-item:hover {
    color: #FF7A1A;
    background: #FFF4EC;
}

.nav-item.active {
    color: #FF7A1A;
    background: #FFF4EC;
}

/* Right-side action buttons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-login {
    text-decoration: none;
    color: #2A262D;
    font-size: 13.5px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    padding: 8px 18px;
    border: 1.5px solid #E7EAF0;
    border-radius: 8px;
    white-space: nowrap;
    transition: all 0.25s ease;
    background: none;
    cursor: pointer;
}

.btn-login:hover {
    border-color: #FF7A1A;
    color: #FF7A1A;
}

.btn-logout {
    text-decoration: none;
    color: #6F6B73;
    font-size: 13.5px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    padding: 8px 18px;
    border: 1.5px solid #E7EAF0;
    border-radius: 8px;
    white-space: nowrap;
    transition: all 0.25s ease;
    background: none;
    cursor: pointer;
}

.btn-logout:hover {
    border-color: #E7EAF0;
    color: #FF7A1A;
}

.btn-contact {
    text-decoration: none;
    color: #ffffff !important;
    font-size: 13.5px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    padding: 9px 20px;
    background: #FF7A1A;
    border-radius: 8px;
    white-space: nowrap;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-contact:hover {
    background: #eb6907;
    box-shadow: 0 4px 15px rgba(255, 122, 26, 0.3);
    transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    flex-shrink: 0;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #2A262D;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ======================================================
   RESPONSIVE — TABLET (769px – 1024px)
====================================================== */
@media (min-width: 769px) and (max-width: 1024px) {
    .main-header {
        width: 96%;
    }
    .navbar {
        padding: 0 20px;
        gap: 10px;
    }
    .brand-logo img {
        height: 60px;
    }
    .nav-item {
        font-size: 12px;
        padding: 5px 8px;
        letter-spacing: 0.2px;
    }
    .btn-login,
    .btn-logout,
    .btn-contact {
        font-size: 12px;
        padding: 7px 14px;
    }
}

/* ======================================================
   RESPONSIVE — MOBILE (≤ 768px)
====================================================== */
@media (max-width: 768px) {
    .main-header {
        position: fixed !important;
        top: 0px !important;
        left: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        transform: none !important;
        border-radius: 0 !important;
        background: #ffffff !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    }

    .navbar {
        height: 60px !important;
        padding: 0 20px !important;
    }

    .brand-logo img {
        height: 55px !important;
    }

    .nav-menu {
        display: none !important;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-radius: 0 0 16px 16px;
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border: 1px solid #E7EAF0;
        gap: 4px;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-item {
        width: 100%;
        font-size: 13px;
    }

    .nav-actions {
        display: none !important;
    }

    /* Show Login + Contact inside mobile menu */
    .nav-menu .mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
        padding-top: 12px;
        border-top: 1px solid #E7EAF0;
        margin-top: 8px;
    }

    .nav-menu .mobile-actions .btn-login,
    .nav-menu .mobile-actions .btn-logout,
    .nav-menu .mobile-actions .btn-contact {
        width: 100%;
        text-align: center;
        display: block;
    }

    .hamburger {
        display: flex !important;
    }
}

/* ======================================================
   MODERN HERO SECTION
====================================================== */
.hero-modern {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 8% 80px;
}

/* Video Background Container */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark overlay for text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.hero-modern-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,122,26,0.15);
    color: #FF7A1A;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #FF7A1A, #A8C93C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #FF7A1A, #A8C93C);
    color: white;
    box-shadow: 0 4px 15px rgba(255,122,26,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,122,26,0.4);
    gap: 15px;
}

.btn-outline {
    border: 2px solid rgba(255,122,26,0.5);
    color: white;
    background: transparent;
}

.btn-outline:hover {
    border-color: #FF7A1A;
    background: rgba(255,122,26,0.1);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #FF7A1A;
}

.stat-label {
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
    pointer-events: none;
    z-index: 1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: #FF7A1A;
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #A8C93C;
    bottom: -150px;
    right: -100px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: #3b82f6;
    top: 40%;
    left: 70%;
}

@media (max-width: 768px) {
    .hero-modern { 
        padding: 100px 5% 60px;
        flex-direction: column;
    }
    .hero-stats { gap: 20px; }
    .stat-number { font-size: 1.5rem; }
    .hero-buttons { gap: 12px; }
    .btn-primary, .btn-outline { padding: 10px 20px; font-size: 0.9rem; }
}

/* ======================================================
   MODERN INFINITE LOGO SLIDER
====================================================== */
.client-slider-section {
    padding: 80px 8%;
    background: linear-gradient(135deg, #ffffff 0%, #F8F9FB 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid #E7EAF0;
    border-bottom: 1px solid #E7EAF0;
}

.client-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF7A1A, #A8C93C);
}

.slider-header {
    text-align: center;
    margin-bottom: 50px;
}

.slider-badge {
    display: inline-block;
    background: rgba(255, 122, 26, 0.1);
    color: #FF7A1A;
    padding: 5px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.slider-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #2A262D;
    margin-bottom: 12px;
}

.slider-title span {
    background: linear-gradient(135deg, #FF7A1A, #A8C93C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slider-subtitle {
    color: #6F6B73;
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto;
}

.logos {
    overflow: hidden;
    padding: 30px 0;
    white-space: nowrap;
    position: relative;
}

.logos:before,
.logos:after {
    position: absolute;
    top: 0;
    content: '';
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logos:before {
    left: 0;
    background: linear-gradient(to left, rgba(255,255,255,0), #ffffff);
}

.logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255,255,255,0), #ffffff);
}

.logo_items {
    display: inline-block;
    animation: slides 35s infinite linear;
    will-change: transform;
}

.logos:hover .logo_items:has(.logo-item:hover) {
    animation-play-state: paused;
}

.logo-item {
    display: inline-block;
    margin-right: 60px;
    vertical-align: middle;
    cursor: pointer;
}

.logo-item img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    transform: scale(1.05);
}

@keyframes slides {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

@media (max-width: 768px) {
    .client-slider-section { padding: 60px 5%; }
    .logo-item { margin-right: 30px; }
    .logo-item img { height: 60px; }
    .logos:before, .logos:after { width: 60px; }
    .slider-title { font-size: 1.6rem; }
}

/* ======================================================
   MODERN WELCOME SECTION
====================================================== */
.welcome-modern {
    padding: 100px 8%;
    background: #ffffff;
    position: relative;
}

.welcome-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.welcome-content {
    flex: 1.2;
}

.welcome-badge {
    display: inline-block;
    background: rgba(255,122,26,0.1);
    color: #FF7A1A;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.welcome-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: #2A262D;
}

.welcome-text {
    color: #6F6B73;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1rem;
}

.welcome-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF7A1A, #A8C93C);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2A262D;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.85rem;
    color: #6F6B73;
}

.btn-welcome {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FF7A1A;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.btn-welcome:hover {
    gap: 15px;
    color: #A8C93C;
}

.welcome-visual {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
}

.visual-card {
    background: #F8F9FB;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #E7EAF0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.visual-card:hover {
    transform: translateY(-8px);
    border-color: #FF7A1A;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.visual-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF7A1A, #A8C93C);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.visual-icon i {
    font-size: 1.8rem;
    color: white;
}

.visual-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #2A262D;
}

.visual-card p {
    font-size: 0.8rem;
    color: #6F6B73;
}

.visual-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,122,26,0.1), transparent);
    bottom: -20px;
    right: -20px;
    border-radius: 50%;
    pointer-events: none;
}

@media (max-width: 900px) {
    .welcome-container { flex-direction: column; text-align: center; }
    .welcome-features { align-items: center; }
    .feature-item { flex-direction: column; text-align: center; }
    .welcome-visual { width: 100%; }
}

/* Welcome video styles – replaces the visual cards grid */
.welcome-video {
    flex: 1;
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    aspect-ratio: 16 / 9;
}

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

.welcome-video .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-radius: 32px;
}

/* Responsive */
@media (max-width: 900px) {
    .welcome-video {
        width: 100%;
        margin-top: 30px;
    }
}


/* ======================================================
   WORK FLOW SECTION
====================================================== */
.work-section {
    min-height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 40px 5% 80px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #E7EAF0;
    border-bottom: 1px solid #E7EAF0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #2A262D;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-title span {
    background: linear-gradient(to right, #FF7A1A, #A8C93C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
}

.work-card {
    padding: 50px 35px;
    background: #ffffff;
    backdrop-filter: blur(12px);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid #E7EAF0;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
}

.work-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: #ffffff;
    border-color: #FF7A1A;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1), 0 0 20px rgba(255,122,26,0.08);
}

.step-number {
    font-size: 5rem;
    font-weight: 800;
    color: rgba(42,38,45,0.05);
    position: absolute;
    top: 10px;
    right: 20px;
    transition: 0.3s;
}

.work-card:hover .step-number {
    color: rgba(255,122,26,0.08);
    transform: scale(1.1);
}

.icon-wrapper {
    font-size: 2.5rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #FF7A1A, #A8C93C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.work-card h3 {
    font-size: 1.6rem;
    color: #2A262D;
    margin-bottom: 15px;
    font-weight: 700;
}

.work-card p {
    color: #6F6B73;
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .work-section { padding: 60px 20px; }
    .section-title { font-size: 2.2rem; }
    .work-card { padding: 40px 25px; }
}

/* ======================================================
   EXPERTISE SECTION (BENTO GRID)
====================================================== */
.expertise-section {
    padding: 100px 8%;
    background: #F8F9FB;
    color: #fff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #E7EAF0;
    border-bottom: 1px solid #E7EAF0;
}

.exp-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.exp-blob--left {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255,122,26,0.07) 0%, transparent 70%);
    top: -80px;
    left: -80px;
}
.exp-blob--right {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(168,201,60,0.06) 0%, transparent 70%);
    bottom: -60px;
    right: -60px;
}

.exp-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 52px;
    position: relative;
    z-index: 1;
}
.exp-header-left { max-width: 560px; }
.exp-label-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FF7A1A;
    border: 1px solid rgba(255,122,26,0.3);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    background: rgba(255,122,26,0.05);
}
.exp-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    color: #2A262D;
    margin-bottom: 10px;
    letter-spacing: -1px;
    text-transform: uppercase;
}
.exp-header h2 span {
    background: none;
    -webkit-text-fill-color: #FF7A1A;
    color: #FF7A1A;
}
.exp-header-sub {
    font-size: 0.95rem;
    color: #6F6B73;
    font-weight: 400;
}
.exp-header-count { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.exp-count-num {
    font-size: 3.5rem;
    font-weight: 900;
    background: none;
    -webkit-text-fill-color: #FF7A1A;
    color: #FF7A1A;
    letter-spacing: -2px;
}
.exp-count-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #6F6B73;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    position: relative;
    z-index: 1;
}
.exp-card--featured { grid-column: span 2; }

.exp-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #E7EAF0;
    border-radius: 20px;
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1), border-color 0.38s ease, box-shadow 0.38s ease;
    cursor: default;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
}
.exp-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    border-color: #FF7A1A;
    box-shadow: 0 24px 48px rgba(0,0,0,0.06), 0 0 0 1px rgba(255,122,26,0.15);
}
.exp-num {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(42,38,45,0.03);
    letter-spacing: -3px;
    pointer-events: none;
    transition: color 0.38s ease;
}
.exp-card:hover .exp-num { color: rgba(255,122,26,0.07); }
.exp-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.exp-card:hover .exp-icon-box { transform: scale(1.12) rotate(-4deg); }
.exp-icon-box--blue { background: rgba(255,122,26,0.1); color: #FF7A1A; box-shadow: 0 0 0 1px rgba(255,122,26,0.15); }
.exp-icon-box--cyan { background: rgba(168,201,60,0.12); color: #A8C93C; box-shadow: 0 0 0 1px rgba(168,201,60,0.15); }
.exp-icon-box--purple { background: rgba(255,122,26,0.08); color: #FF7A1A; box-shadow: 0 0 0 1px rgba(255,122,26,0.12); }
.exp-icon-box--gold { background: rgba(168,201,60,0.1); color: #A8C93C; box-shadow: 0 0 0 1px rgba(168,201,60,0.15); }
.exp-icon-box--pink { background: rgba(255,122,26,0.08); color: #FF7A1A; box-shadow: 0 0 0 1px rgba(255,122,26,0.12); }

.exp-card-content { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.exp-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2A262D;
    margin: 0;
    letter-spacing: 0.2px;
}
.exp-card--featured h3 { font-size: 1.55rem; }
.exp-card p {
    font-size: 0.9rem;
    color: #6F6B73;
    line-height: 1.65;
    margin: 0;
}
.exp-card--featured p { font-size: 0.95rem; max-width: 520px; }
.exp-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #FF7A1A;
    text-decoration: none;
    margin-top: 4px;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.32s ease, transform 0.32s ease, gap 0.25s ease;
}
.exp-card:hover .exp-card-link { opacity: 1; transform: translateX(0); }
.exp-card-link:hover { color: #A8C93C; gap: 10px; }
.exp-card-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, #FF7A1A, #A8C93C);
    transition: width 0.48s cubic-bezier(0.4,0,0.2,1);
}
.exp-card:hover .exp-card-line { width: 100%; }

@media (max-width: 960px) {
    .expertise-grid { grid-template-columns: repeat(2, 1fr); }
    .exp-card--featured { grid-column: span 2; }
    .exp-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .exp-header-count { flex-direction: row; gap: 10px; align-items: baseline; }
    .exp-count-num { font-size: 2.4rem; }
}
@media (max-width: 600px) {
    .expertise-section { padding: 70px 5%; }
    .expertise-grid { grid-template-columns: 1fr; gap: 14px; }
    .exp-card--featured { grid-column: span 1; }
    .exp-card { padding: 28px 24px 26px; }
    .exp-card--featured h3 { font-size: 1.25rem; }
    .exp-num { font-size: 3.5rem; }
}

/* ======================================================
   CTA BANNER
====================================================== */
.cta-banner {
    padding: 80px 8%;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,122,26,0.08), transparent);
    animation: pulseGlow 8s infinite;
}
@keyframes pulseGlow {
    0% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
    100% { opacity: 0.3; transform: scale(1); }
}
.cta-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.cta-banner h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}
.cta-banner h2 span {
    background: linear-gradient(135deg, #FF7A1A, #A8C93C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cta-banner p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 30px;
}
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #FF7A1A, #A8C93C);
    color: white;
    padding: 14px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 1rem;
}
.btn-cta:hover {
    transform: translateY(-3px);
    gap: 18px;
    box-shadow: 0 10px 25px rgba(255,122,26,0.4);
}

/* ======================================================
   TECHNOLOGY STACK / TOOLS WE USE
====================================================== */
.tech-stack-section {
    padding: 80px 8%;
    background: #ffffff;
    border-bottom: 1px solid #E7EAF0;
}
.tech-header {
    text-align: center;
    margin-bottom: 50px;
}
.tech-badge {
    display: inline-block;
    background: rgba(255,122,26,0.1);
    color: #FF7A1A;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.tech-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 12px;
}
.tech-header h2 span {
    background: linear-gradient(135deg, #FF7A1A, #A8C93C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.tech-header p {
    color: #6F6B73;
}
.tech-slider {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}
.tech-track {
    display: inline-block;
    animation: scrollTech 30s linear infinite;
}
.tech-item {
    display: inline-block;
    margin: 0 40px;
    vertical-align: middle;
}
.tech-item img {
    height: 60px !important;
    width: auto;
    filter: grayscale(0.2);
    transition: 0.3s;
}
.tech-item:hover img {
    filter: grayscale(0);
    transform: scale(1.05);
}
@keyframes scrollTech {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (max-width: 768px) {
    .tech-item img { height: 45px; }
    .tech-item { margin: 0 20px; }
}

/* ======================================================
   MODERN INDUSTRIES WE SERVE SECTION
====================================================== */
.modern-industries {
    padding: 100px 8%;
    background: linear-gradient(135deg, #F8F9FB 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}
.modern-industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FF7A1A, #A8C93C, transparent);
}
.modern-industries .container { max-width: 1400px; margin: 0 auto; }
.industries-badge { text-align: center; margin-bottom: 20px; }
.industries-badge span {
    background: rgba(255,122,26,0.1);
    color: #FF7A1A;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
}
.industries-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: #2A262D;
}
.industries-title span {
    background: linear-gradient(135deg, #FF7A1A, #A8C93C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.industries-subtitle {
    text-align: center;
    color: #6F6B73;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 60px;
}
.industries-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.industry-showcase-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #E7EAF0;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
}
.industry-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,122,26,0.05), rgba(168,201,60,0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}
.industry-showcase-card:hover {
    transform: translateY(-8px);
    border-color: #FF7A1A;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.industry-showcase-card:hover::before { opacity: 1; }
.industry-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF7A1A, #A8C93C);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}
.industry-showcase-card:hover .industry-icon { transform: scale(1.1) rotate(5deg); }
.industry-icon i { font-size: 32px; color: white; }
.industry-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2A262D;
}
.industry-info p {
    color: #6F6B73;
    font-size: 0.9rem;
    margin: 0;
}
.industry-hover-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FF7A1A, #A8C93C);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.industry-showcase-card:hover .industry-hover-glow { transform: scaleX(1); }
.industries-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #E7EAF0;
}
.industries-cta p {
    color: #6F6B73;
    font-size: 1rem;
    margin-bottom: 20px;
}
.industries-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #FF7A1A, #A8C93C);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.industries-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,122,26,0.3);
    gap: 16px;
    color: white;
}
@media (max-width: 768px) {
    .modern-industries { padding: 60px 5%; }
    .industries-showcase { grid-template-columns: 1fr; }
    .industry-showcase-card { padding: 24px; }
    .industry-icon { width: 55px; height: 55px; }
    .industry-icon i { font-size: 24px; }
}

/* ======================================================
   INSIGHTS & NEWS SECTION
====================================================== */
.i3-insights-section {
    padding: 100px 8%;
    background-color: #ffffff;
    color: white;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #E7EAF0;
    border-bottom: 1px solid #E7EAF0;
}
.i3-insights-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,122,26,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.i3-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}
.i3-header-left { max-width: 600px; }
.i3-label-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FF7A1A;
    border: 1px solid rgba(255,122,26,0.3);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    background: rgba(255,122,26,0.05);
}
.i3-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    color: #2A262D;
    margin-bottom: 10px;
}
.i3-header h2 span {
    background: none;
    -webkit-text-fill-color: #FF7A1A;
    color: #FF7A1A;
}
.i3-header-sub {
    font-size: 0.95rem;
    color: #6F6B73;
    margin-top: 6px;
}
.i3-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FF7A1A;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,122,26,0.4);
    padding-bottom: 3px;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.i3-view-all:hover { color: #A8C93C; border-color: #A8C93C; gap: 12px; }
.i3-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 20px;
    position: relative;
    z-index: 1;
}
.i3-cards-stack { display: flex; flex-direction: column; gap: 20px; }
.i3-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: #2A262D;
    display: block;
}
.i3-card--featured { height: 560px; }
.i3-cards-stack .i3-card { height: 265px; }
.i3-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.4,0,0.2,1), filter 0.55s ease;
    filter: brightness(0.85) saturate(1.1);
}
.i3-card:hover .i3-card-img { transform: scale(1.06); filter: brightness(0.7) saturate(1.2); }
.i3-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 32px;
    background: linear-gradient(to top, rgba(2,12,27,0.95) 0%, rgba(2,12,27,0.4) 45%, transparent 100%);
    z-index: 2;
}
.i3-card-tag {
    align-self: flex-start;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255,122,26,0.85);
    backdrop-filter: blur(6px);
    padding: 4px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: background 0.3s ease;
}
.i3-card:hover .i3-card-tag { background: #A8C93C; }
.i3-card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.i3-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    transform: translateY(8px);
    transition: transform 0.38s ease;
}
.i3-cards-stack .i3-card h3 { font-size: 1.15rem; }
.i3-card:hover h3 { transform: translateY(0); }
.i3-card p {
    font-size: 0.9rem;
    color: rgba(241,245,249,0.75);
    line-height: 1.55;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.42s ease, opacity 0.42s ease;
}
.i3-card:hover p { max-height: 80px; opacity: 1; }
.i3-cards-stack .i3-card p { max-height: none; opacity: 0.7; font-size: 0.82rem; }
.i3-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FF7A1A;
    text-decoration: none;
    margin-top: 6px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.38s ease;
}
.i3-card:hover .i3-card-link { opacity: 1; transform: translateX(0); color: #A8C93C; }
.i3-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #FF7A1A, #A8C93C);
    transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
    z-index: 3;
}
.i3-card:hover::after { width: 100%; }
@media (max-width: 900px) {
    .i3-grid { grid-template-columns: 1fr; }
    .i3-card--featured { height: 380px; }
    .i3-cards-stack { flex-direction: row; }
    .i3-cards-stack .i3-card { height: 260px; }
    .i3-header { flex-direction: column; align-items: flex-start; gap: 18px; }
}
@media (max-width: 600px) {
    .i3-insights-section { padding: 70px 5%; }
    .i3-cards-stack { flex-direction: column; }
    .i3-card--featured { height: 320px; }
    .i3-cards-stack .i3-card { height: 220px; }
    .i3-card-overlay { padding: 18px 20px; }
    .i3-card h3 { font-size: 1.1rem; }
    .i3-cards-stack .i3-card h3 { font-size: 0.98rem; }
    .i3-card p { display: none; }
}

/* ======================================================
   FAQ SECTION (ACCORDION)
====================================================== */
.faq-section {
    padding: 80px 8%;
    background: #F8F9FB;
}
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}
.faq-header {
    text-align: center;
    margin-bottom: 50px;
}
.faq-badge {
    display: inline-block;
    background: rgba(255,122,26,0.1);
    color: #FF7A1A;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.faq-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
}
.faq-header h2 span {
    background: linear-gradient(135deg, #FF7A1A, #A8C93C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.faq-header p {
    color: #6F6B73;
}
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-item {
    background: white;
    border-radius: 20px;
    border: 1px solid #E7EAF0;
    overflow: hidden;
    transition: 0.3s;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    color: #2A262D;
    transition: 0.2s;
}
.faq-question:hover {
    background: rgba(255,122,26,0.03);
}
.faq-question i {
    transition: transform 0.3s;
    color: #FF7A1A;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 25px;
    border-top: 1px solid transparent;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px;
    border-top-color: #E7EAF0;
}
.faq-answer p {
    color: #6F6B73;
    line-height: 1.6;
    margin: 0;
}

/* ======================================================
   TESTIMONIAL MODAL (click on client logos)
====================================================== */
.testimonial-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-content {
    background: white;
    border-radius: 32px;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}
@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #6F6B73;
    transition: 0.2s;
}
.modal-close:hover {
    color: #FF7A1A;
}
.modal-body {
    padding: 40px 30px;
    text-align: center;
}
.modal-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #FF7A1A;
}
.modal-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modal-body h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #2A262D;
}
.modal-ceo {
    color: #FF7A1A;
    font-weight: 500;
    margin-bottom: 20px;
}
.modal-review {
    font-size: 1rem;
    line-height: 1.7;
    color: #6F6B73;
    margin-bottom: 25px;
    font-style: italic;
}
.modal-review i {
    color: #A8C93C;
    margin-right: 8px;
}
.modal-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FF7A1A;
    color: white;
    padding: 10px 25px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}
.modal-link:hover {
    background: #A8C93C;
    gap: 12px;
    color: white;
}
@media (max-width: 550px) {
    .modal-body { padding: 30px 20px; }
    .modal-body h3 { font-size: 1.3rem; }
    .modal-review { font-size: 0.9rem; }
}















/* ======================================================
   UNIQUE MODERN FOOTER – PROFESSIONAL & RESPONSIVE
====================================================== */
.modern-footer {
    background: linear-gradient(145deg, #0a0f1f 0%, #0F172A 100%);
    position: relative;
    color: #94a3b8;
    text-align: left;
    overflow: hidden;
    border-top: 1px solid rgba(255, 122, 26, 0.15);
}

/* Animated background glow */
.modern-footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,122,26,0.08), transparent 70%);
    pointer-events: none;
    animation: footerGlow 15s infinite alternate;
}
@keyframes footerGlow {
    0% { opacity: 0.3; transform: translateX(-10%); }
    100% { opacity: 0.6; transform: translateX(10%); }
}

.footer-wave {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
    filter: drop-shadow(0 -2px 4px rgba(0,0,0,0.2));
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 8% 40px;
    position: relative;
    z-index: 2;
}

/* Grid – unique spacing */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

/* Logo – larger and with a subtle glow */
.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(255,122,26,0.3));
    transition: filter 0.3s ease;
}
.footer-logo:hover {
    filter: drop-shadow(0 0 12px rgba(255,122,26,0.5));
}

.footer-description {
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: #a0aec0;
}

/* Headings with gradient underline */
.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #FF7A1A, #A8C93C);
    border-radius: 3px;
    transition: width 0.3s ease;
}
.footer-col h4:hover::after {
    width: 100%;
}

/* Links list */
.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
}
.footer-links li, .footer-contact li {
    margin-bottom: 14px;
}
.footer-links li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}
.footer-links li a:hover {
    color: #FF7A1A;
    transform: translateX(8px);
}
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
}
.footer-contact li i {
    width: 28px;
    color: #FF7A1A;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}
.footer-contact li:hover i {
    transform: scale(1.1);
}
.footer-contact li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-contact li a:hover {
    color: #FF7A1A;
}

/* Map with hover scale */
.footer-map {
    width: 100%;
    height: 150px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.footer-map:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.footer-map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.3) contrast(1.1);
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 18px;
    margin-top: 20px;
}
.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    text-decoration: none;
    backdrop-filter: blur(4px);
}
.social-link:hover {
    background: linear-gradient(135deg, #FF7A1A, #A8C93C);
    color: white;
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 8px 20px rgba(255,122,26,0.4);
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
}
.footer-copyright {
    margin: 0;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}
.footer-legal {
    display: flex;
    gap: 35px;
}
.footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}
.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF7A1A;
    transition: width 0.3s ease;
}
.footer-legal a:hover {
    color: #FF7A1A;
}
.footer-legal a:hover::after {
    width: 100%;
}

/* Hide mobile social on desktop */
.footer-social-mobile {
    display: none;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF7A1A, #A8C93C);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255,122,26,0.4);
}

.footer-col.mobile{
    display: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .footer-logo {
        height: 75px;
    }
    .footer-social-desktop {
        display: none;
    }
    .footer-social-mobile {
        display: flex;
        margin-top: 10px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-copyright {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 50px 5% 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        margin-bottom: 30px;
    }
    .footer-logo {
        height: 70px;
    }
    .footer-col h4::after {
        left: 0;
        transform: none;
    }
    .footer-contact li {
        justify-content: flex-start;
    }
    .footer-copyright {
        font-size: 0.8rem;
    }
    .footer-legal {
        justify-content: flex-start;
        gap: 25px;
    }
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    .footer-col.mobile{
        display: flex;
    }
}













/* ======================================================
   LIGHT MODE THEME OVERRIDE & UTILITIES
====================================================== */
body {
    background: var(--bg-deep);
    color: var(--text-dark);
}
section {
    background: var(--bg-deep);
}

/* Additional responsive utilities */
@media (max-width: 768px) {
    section { padding-top: 25px !important; padding-bottom: 25px !important; }
}

/* Ensure no canvas background shows (old removed) */
#i3-bg {
    display: none;
}

/* ======================================================
   ABOUT PAGE HERO (VIDEO BACKGROUND)
====================================================== */
.hero-wrapper {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-wrapper .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-wrapper .hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.hero-wrapper .hero-content h1 span {
    color: #A8C93C;
}

.hero-wrapper .hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
}

/* ======================================================
   SERVICES PAGE
====================================================== */
.page-hero {
    text-align: center;
    padding: 120px 8% 60px;
    background: transparent;
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.page-hero h1 span {
    background: linear-gradient(135deg, #FF7A1A, #A8C93C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 8% 100px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,122,26,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #FF7A1A;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, #FF7A1A, #A8C93C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2A262D;
}

.service-card p {
    color: #6F6B73;
    line-height: 1.6;
}

/* ======================================================
   INSIGHTS PAGE
====================================================== */
.insights-hero {
    padding: 200px 8% 80px;
    text-align: center;
    background: linear-gradient(135deg, #0F172A, #1E293B);
    position: relative;
}

.insights-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: white;
    font-weight: 800;
}

.insights-hero h1 span {
    background: linear-gradient(135deg, #FF7A1A, #A8C93C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.insights-hero p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-top: 15px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 80px 8%;
    background: #F8F9FB;
}

.insight-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #E7EAF0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.insight-card:hover {
    transform: translateY(-8px);
    border-color: #FF7A1A;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.insight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF7A1A, #A8C93C);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.insight-icon i {
    font-size: 2rem;
    color: white;
}

.insight-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2A262D;
}

.insight-card p {
    color: #6F6B73;
    line-height: 1.6;
}


