/* ==========================================
   AI DataLab - Custom CSS
   Modern, Glassmorphism, AI-Inspired Design
   ========================================== */

@font-face {
  font-display: block;
  font-family: "bootstrap-icons";
  src: url("../fonts/bootstrap-icons.woff2") format("woff2"),
       url("../fonts/bootstrap-icons.woff") format("woff");
}


:root {
    /* Color Palette - Light Mode with New Gradients */
    --color-primary: #2765b2;
    --color-primary-light: #818cf8;
    --color-accent: #6133d4;
    --color-accent-light: #a78bfa;
    --color-cyan: #06b6d4;
    --color-cyan-light: #22d3ee;
    --color-background: #ffffff;
    --color-surface: #faf5ff;
    --color-surface-light: #F2F4F6;
    --color-text-primary: #0f172a;
    --color-text-secondary: #475569;
    --color-text-muted: #64748b;
    --gradient-blue: #3b82f6;
    --gradient-cyan: #06b6d4;
    --gradient-purple: #8b5cf6;
    --gradient-pink: #ec4899;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.18);
    --neon-glow: rgba(59, 130, 246, 0.5);
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-light: #ffffff;
    --bg-overlay: rgba(255, 255, 255, 0.5);

    /* New Primary Gradient: Indigo → Purple → Cyan */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
    --gradient-light: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 50%, rgba(6, 182, 212, 0.1) 100%);

    /* Glassmorphism - Light Mode */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.1);
    --glass-hover: rgba(255, 255, 255, 0.9);

    /* Shadows & Glows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --glow-primary: 0 4px 24px rgba(99, 102, 241, 0.3);
    --glow-purple: 0 4px 24px rgba(139, 92, 246, 0.3);
    --glow-cyan: 0 4px 24px rgba(6, 182, 212, 0.3);
    /* Compatibility aliases for pages using old variable names */
    --gradient-blue: #3b82f6;
    --gradient-cyan: #06b6d4;
    --gradient-purple: #8b5cf6;
    --gradient-pink: #ec4899;
    --text-primary: var(--color-text-primary);
    --text-secondary: var(--color-text-secondary);
    --bg-light: var(--color-background);
    --bg-overlay: rgba(255, 255, 255, 0.5);
    --neon-glow: rgba(99, 102, 241, 0.3);

    /* Spacing */
    --section-padding: 120px;
    --section-padding-mobile: 60px;

}

.dark-mode {
    --glass-bg: rgba(30, 30, 30, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-glow: rgba(59, 130, 246, 0.3);
    --text-primary: #f9fafb;
    --text-secondary: #9ca3af;
    --bg-light: #0f172a;
    --bg-overlay: rgba(0, 0, 0, 0.5);
}

/* ==========================================
   Base Styles
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--color-background);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.20rem);
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

p {
    font-size: clamp(1rem, 1.5vw, 1rem);
    color: var(--color-text-secondary);
    line-height: 1.50em;
}
ul, li {
    list-style: none;
}
img {
    width: 100%;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
   Buttons
   ========================================== */

.btn {
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.modal-btn {
    padding: 5px 25px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
}

.btn-gradient:hover {
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.5);
    transform: translateY(-2px);
    color: white;
}

.btn-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--color-text-primary);
}

.btn-glass:hover {
    background: var(--glass-hover);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: var(--glow-cyan);
    color: var(--color-text-primary);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.125rem;
}

.modal-backdrop {
    opacity: 1 !important;
}

.modal-backdrop.show {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px) saturate(180%);
    -webkit-backdrop-filter: blur(8px) saturate(180%);
}

.glass-white .modal-content {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;

    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
}
.cs-btn-close {
    cursor: pointer;
}


/* ==========================================
   Glass Cards
   ========================================== */

 .glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.15);
}
.glass-card:hover::before {
    opacity: 1;
}

.glass-card:hover {
    background: var(--glass-hover);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: var(--glow-cyan);
    transform: translateY(-8px);
}
 /* ========== NEON GRADIENT BORDER ========== */
    .neon-border {
        position: relative;
        padding: 2px;
        background: linear-gradient(135deg, var(--gradient-blue), var(--gradient-cyan), var(--gradient-purple));
        border-radius: 20px;
    }

    .neon-border-inner {
        background: var(--glass-bg);
        backdrop-filter: blur(10px);
        border-radius: 18px;
        padding: 2rem;
    }
    /* ========== ANIMATED GRADIENT BACKGROUND ========== */
    .gradient-bg {
        background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.2),
            rgba(139, 92, 246, 0.2),
            rgba(6, 182, 212, 0.2));
        position: relative;
        overflow: hidden;
    }

    .gradient-bg::before,
    .gradient-bg::after {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        filter: blur(80px);
        animation: float 8s ease-in-out infinite;
        opacity: 0.6;
    }

    .gradient-bg::before {
        background: var(--gradient-blue);
        top: 20%;
        left: 20%;
        animation-delay: 0s;
    }

    .gradient-bg::after {
        background: var(--gradient-purple);
        bottom: 20%;
        right: 20%;
        animation-delay: 2s;
    }

    @keyframes float {
        0%, 100% { transform: translate(0, 0) scale(1); }
        33% { transform: translate(30px, -50px) scale(1.1); }
        66% { transform: translate(-20px, 20px) scale(0.9); }
    }

   /* ==========================================
   Navigation Header
   ========================================== */


    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--color-text-primary);
    }

    .nav-logo-icon {
        width: 36px;
        height: 36px;
        background: var(--gradient-primary);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        display: flex;
        gap: 32px;
        align-items: center;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-links a {
        color: var(--color-text-secondary);
        text-decoration: none;
        font-size: 0.9375rem;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .nav-links a:hover {
        color: var(--color-primary);
    }

    .nav-cta {
        padding: 10px 24px;
        background: var(--gradient-primary);
        color: white;
        border-radius: 8px;
        text-decoration: none;
        font-size: 0.875rem;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .nav-cta:hover {
        box-shadow: var(--glow-primary);
        transform: translateY(-2px);
        color: white;
    }

    .mobile-menu-toggle {
        display: none;
    }
    .get-start-btn {
        padding: 8px 26px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 1rem;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
    }
    .powered-by img {
    width: 50px;
    height: 50px;
}
/* ==========================================
   Section Education
   ========================================== */
   .education {
        position: relative;
    }
   .education:before {
        content: "";
        position: absolute;
        /* background: linear-gradient(135deg, #000b18 0%, #16004d 100%); */
        background: url(../images/edu-bg.jpg);
        background-position: bottom;
        background-size: cover;
        width: 100%;
        height: 340px;
        z-index: -1;
        bottom: 0;
        box-shadow: -1px -3px 8px 0px #7f9af6a1;
    }
    .education:after {
        content: "";
        position: absolute;
        background: #00000052;
        width: 100%;
        height: 340px;
        z-index: -1;
        bottom: 0;
    }
    .student-img img {
        width: 80%;
    }
    .education-title {
        color: #ececec;
    }
    .education-subtitle {
        color: #ececec;
    }
/* ==========================================
   Section Badges
   ========================================== */

.section-badge, .hero-badge, .cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.badge-purple {
    color: var(--color-accent);
}

.cta-badge {
    font-size: 1rem;
    padding: 10px 24px;
}

/* ==========================================
   Hero Section
   ========================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
                linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 10;
    padding: 120px 0 0;
}

.hero-title {
    margin-bottom: 24px;
    background: linear-gradient(135deg, #0f172a 0%, #0891b2 50%, #9333ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 80px;
}
.hero-highlights li {
    font-size: clamp(1.125rem, 2vw, 1.2rem);
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-highlights li:before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

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

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.metric-divider {
    width: 1px;
    height: 60px;
    background: var(--glass-border);
}

.hero-gradient-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--color-background), transparent);
    z-index: 5;
}
.page-hero .slick-prev, .page-hero .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    top: auto;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: #61a4d200;
    width: 40px;
    height: 40px;
    bottom: -2px;
    z-index: 999;
}
.hero-slider .slick-prev {
    transform: translate(-50%, -50%);
    left: 45%;
}
.hero-slider .slick-next {
    transform: translate(-50%, -50%);
    right: 45%;
}
.hero-slider .slick-prev:before, .hero-slider .slick-next:before {
    font-family: 'slick';
    font-size: 40px;
    line-height: 1;
    opacity: .75;
    color: #858484;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.hero-slider.slick-dotted.slick-slider {
    margin-bottom: 0px;
}
.hero-slider .slick-dots {
    bottom: 20px;
}
.hero-slider .slick-dots li button:before {
    font-size: 34px;
}

/* slider arrow css  */

.cmm-slider .slick-prev, .cmm-slider .slick-next {
    width: 30px;
    height: 30px;
    z-index: 99;
}

.cmm-slider .slick-prev:before, .cmm-slider .slick-next:before {
    background: #373737;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    top: auto;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
}
.cmm-slider .slick-prev:before {
    content: '\f284';
    font-family: "bootstrap-icons";
}
.cmm-slider .slick-next:before {
    content: '\f285';
    font-family: "bootstrap-icons";
}
.cmm-slider .slick-prev {
    left: auto;
    position: absolute;
    right: 5%;
    top: auto;
    bottom: -35px;
}
.cmm-slider .slick-next {
    left: auto;
    position: absolute;
    right: 18px;
    top: auto;
    bottom: -35px;
}
/* ========== SERVICE CARDS ========== */
        .service-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--gradient-blue), var(--gradient-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            box-shadow: 0 8px 20px var(--neon-glow);
        }

        .icon-clean {
            background: transparent;
            box-shadow: none;
        }

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

        .service-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }


        .service-features {
            list-style: none;
            padding: 0;
        }

        .service-features li {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .service-features li::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gradient-blue), var(--gradient-purple));
        }
        /* #services .services-tabs {
            position: sticky;
            top: 120px;
        }
        #services .services-content {
            min-height: 100vh;
            padding-bottom: 80px;
        } */


        .services-wrap {
            height: 700vh; /* 👈 depends on number of tabs */
            position: relative;
        }

        .services-scroll {
            position: sticky;
            top: 0;
            height: 100vh;
            overflow: hidden; /* 👈 IMPORTANT */
            display: flex;
            align-items: center;
        }
        .services-content {
            display: none;
        }

        .services-content.active {
            display: block;
        }
        .services-content {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
            position: absolute;
        }

        .services-content.active {
            opacity: 1;
            transform: translateY(0);
            position: relative;
        }

        .slick-slide {
            padding: 30px 10px;
        }
/* ==========================================
   Solutions Section
   ========================================== */

/* slick  */


.solutions-section {
    background-color: var(--color-background);
}

.section-title {
    color: var(--color-text-primary);
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-icon-build {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gradient-blue), var(--gradient-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px var(--neon-glow);
}
.service-icon-build i {
    font-size: 1.8rem;
    color: white;
}

.icon-gradient-1 {
    background: linear-gradient(135deg, var(--color-primary), #3b82f6);
}

.icon-gradient-2 {
    background: linear-gradient(135deg, #3b82f6, var(--color-accent));
}

.icon-gradient-3 {
    background: linear-gradient(135deg, var(--color-accent), #ec4899);
}

.icon-gradient-4 {
    background: linear-gradient(135deg, var(--color-primary), #14b8a6);
}

.icon-gradient-5 {
    background: linear-gradient(135deg, #14b8a6, #10b981);
}

.icon-gradient-6 {
    background: linear-gradient(135deg, #10b981, var(--color-primary));
}

.service-title-build {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0px;
}

.service-description {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 12px;
}
.glass-card.help-build:hover {
    background: #696cf6;
}
.glass-card.help-build:hover .service-icon-build {
    border: 1px solid #fff;
}
.glass-card.help-build:hover .service-title-build {
    color: #fff;
}
.active .glass-card.help-build {
    background: #696cf6;
}
.active .glass-card.help-build .service-icon-build {
    border: 1px solid #fff;
}
.active .glass-card.help-build .service-title-build {
    color: #fff;
}

.build-service img {
    width: 50%;
    margin-bottom: 20px;
}


/* Service Page CSS  */

.color-liner-004ED0 {
    background: linear-gradient(135deg, #004ED0 0%, #1365FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* ==========================================
   RAG Section
   ========================================== */

.rag-section {
    background: linear-gradient(180deg, var(--color-background) 0%, var(--color-surface) 50%, var(--color-background) 100%);
}

.rag-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 80px;
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
}

.rag-step {
    text-align: center;
    max-width: 180px;
}

.rag-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.rag-icon:hover {
    transform: scale(1.1);
}

.rag-icon svg {
    color: var(--color-primary);
}

.rag-icon-pulse {
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(6, 182, 212, 0.6);
    }
}

.vector-grid {
    display: grid;
    grid-template-columns: repeat(3, 8px);
    gap: 4px;
}

.vector-grid span {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 2px;
}

.rag-step h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.rag-step p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
}

.rag-arrow {
    color: var(--color-primary);
}

.benefit-card {
    text-align: center;
    height: 100%;
}

.benefit-value {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 12px;
}

.benefit-text {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin: 0;
}


/* ==========================================
   Use Cases Section
   ========================================== */

.use-cases-section {
    background-color: var(--color-background);
}

.use-case-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.use-case-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(168, 85, 247, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.use-case-card:hover .use-case-icon {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.3), rgba(168, 85, 247, 0.3));
}

.use-case-icon svg {
    color: var(--color-primary);
}

.use-case-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 16px;
}

.use-case-card p {
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    flex-grow: 1;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.industry-tag {
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 20px;
    color: var(--color-text-muted);
}

/* ==========================================
   Process Section
   ========================================== */

/* ========== PROCESS SECTION ========== */
        .process-card {
            position: relative;
            padding: 2rem;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .process-number {
            font-size: 5rem;
            font-weight: 800;
            color: rgba(59, 130, 246, 0.1);
            position: absolute;
            top: 0;
            left: 0;
            line-height: 1;
        }

        .process-icon {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--gradient-blue), var(--gradient-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            box-shadow: 0 8px 20px var(--neon-glow);
            position: relative;
            z-index: 1;
        }

        .process-icon i {
            font-size: 1.5rem;
            color: white;
        }

        .process-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
        }

        .process-description {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .process-duration {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 50px;
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.2);
            color: var(--gradient-blue);
            font-size: 0.75rem;
            font-weight: 600;
            flex-grow: 1;
        }

/* ==========================================
   Trust Section
   ========================================== */

.trust-section {
    background-color: var(--color-surface);
}

.trust-card {
    text-align: center;
    height: 100%;
}

.trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(168, 85, 247, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    color: var(--color-primary);
}

.trust-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 12px;
}

.trust-card p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.stats-bar {
    padding: 48px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ==========================================
   Final CTA Section
   ========================================== */

.final-cta-section {
    background-color: var(--color-background);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(6, 182, 212, 0.2), rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    filter: blur(100px);
    opacity: 0.5;
}

.cta-card {
    text-align: center;
    padding: 64px 48px;
    position: relative;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
}

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

.cta-trust {
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
}

.cta-trust p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* ==========================================
   Footer
   ========================================== */

.footer {
    background-color: var(--color-surface);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.footer-brand img {
    width: 180px;
}
.footer-brand {
    margin-bottom: 24px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.brand-logo svg {
    width: 40px;
    height: 40px;
    padding: 8px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 12px;
}

.brand-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.footer-description {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--glass-hover);
    border-color: rgba(6, 182, 212, 0.5);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-legal a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--color-primary);
}

.footer-legal .divider {
    color: var(--color-text-muted);
}


/* ==========================================
   Scroll Animations
   ========================================== */

[data-aos] {
    pointer-events: auto;
}

/* ==========================================
   Smooth Scroll
   ========================================== */

html {
    scroll-behavior: smooth;
}

/* ==========================================
   Selection
   ========================================== */

::selection {
    background-color: var(--color-primary);
    color: white;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-background);
}

::-webkit-scrollbar-thumb {
    background: var(--color-surface-light);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}


/* ==========================================
   Page Hero (Internal Pages)
   ========================================== */

.page-hero {
    padding: 94px 0 80px;
    /* background: var(--gradient-light); */
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent);
    border-radius: 50%;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 24px;
    position: relative;
    z-index: 10;
}

.page-hero p {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin-bottom: 32px;
    position: relative;
    z-index: 10;
}
.btn-gray {
    background: #E6E8EA;
}

/* ==========================================
   Problem/Solution Cards
   ========================================== */

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 48px 0;
}

.problem-card {
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.problem-card .icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.2));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.problem-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--color-text-primary);
}

.problem-card p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* ==========================================
   Tech Stack Pills
   ========================================== */

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 32px 0;
    justify-content: center;
}

.tech-pill {
    padding: 10px 20px;
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-primary);
    transition: all 0.3s ease;
}

.tech-pill:hover {
    background: var(--gradient-light);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

/* ==========================================
   Timeline / Process Steps
   ========================================== */

.timeline {
    position: relative;
    padding: 48px 0;
}

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    align-items: flex-start;
}

.timeline-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--color-text-secondary);
    margin: 0;
}

/* ==========================================
   Blog Cards
   ========================================== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    margin: 48px 0;
}

.blog-card {
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    background: var(--gradient-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.blog-card-content {
    padding: 24px;
}

.blog-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gradient-light);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.blog-card p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ==========================================
   Filter Pills
   ========================================== */

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 32px 0;
}

.filter-pill {
    padding: 8px 20px;
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-pill:hover,
.filter-pill.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

/* ==========================================
   Blog Detail Content
   ========================================== */

.blog-detail-hero {
    padding: 140px 0 0px;
    text-align: center;
}

.blog-detail-meta {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
}

.blog-content h2 {
    font-size: 2rem;
    margin-top: 48px;
    margin-bottom: 24px;
    color: var(--color-text-primary);
}

.blog-content h3 {
    font-size: 1.5rem;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--color-text-primary);
}

.blog-content p {
    margin-bottom: 24px;
    line-height: 1.8;
}

.blog-content code {
    background: var(--color-surface-light);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
}

.blog-content pre {
    background: var(--color-surface-light);
    padding: 24px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 24px 0;
}

.blog-content pre code {
    background: none;
    padding: 0;
}
.blog-detail-img img {
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}
/* ==========================================
   Contact Form
   ========================================== */

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.contact-option-card {
    background: white;
    border: 2px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-option-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.contact-option-card .icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-option-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.contact-option-card p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    margin: 0;
}

.contact-form-container {
    max-width: 700px;
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 48px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-text-secondary);
    font-size: 0.8375rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    box-shadow: var(--glow-primary);
    transform: translateY(-2px);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

.trust-item svg {
    color: var(--color-primary);
}

/* ==========================================
   Feature Highlight Cards
   ========================================== */

.feature-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.feature-card-horizontal {
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-card-horizontal .icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-card-horizontal h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--color-text-primary);
}

.feature-card-horizontal p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    margin: 0;
}

/* ==========================================
   CTA Banner
   ========================================== */

.cta-banner {
    background: var(--gradient-primary);
    border-radius: 24px;
    padding: 64px 48px;
    text-align: center;
    color: white;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 20s linear infinite;
}

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

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 10;
}

.cta-banner p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 10;
}

.cta-banner .btn {
    background: white;
    color: var(--color-primary);
    position: relative;
    z-index: 10;
}

.cta-banner .btn:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   Utility Classes
   ========================================== */

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

.mt-80 {
    margin-top: 80px;
}

.mb-80 {
    margin-bottom: 80px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================
   Dark mode & index.html compatibility
   ========================================== */

.dark-mode {
    --glass-bg: rgba(30, 30, 30, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-glow: rgba(99, 102, 241, 0.3);
    --color-background: #0f172a;
    --color-text-primary: #f9fafb;
    --color-text-secondary: #9ca3af;
    --color-surface: #1e1e2e;
    --text-primary: #f9fafb;
    --text-secondary: #9ca3af;
    --bg-light: #0f172a;
    --bg-overlay: rgba(0, 0, 0, 0.5);
}

.navbar-custom {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: var(--glass-bg);
    /* border-bottom: 1px solid var(--glass-border); */
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}
.navbar-brand img {
    width: 148px;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    transition: color 0.3s ease;
    margin: 0 0.5rem;
}

.nav-link:hover {
    color: var(--text-primary) !important;
}

.gradient-bg {
    /* background: linear-gradient(135deg,
        rgba(99, 102, 241, 0.2),
        rgba(139, 92, 246, 0.2),
        rgba(6, 182, 212, 0.2)); */
    position: relative;
    overflow: hidden;
}

.gradient-bg::before,
.gradient-bg::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    animation: float-bg 8s ease-in-out infinite;
    opacity: 0.4;
    z-index: -1;
}

.gradient-bg::before {
    background: var(--gradient-blue);
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.gradient-bg::after {
    background: var(--gradient-purple);
    bottom: 20%;
    right: 20%;
    animation-delay: 2s;
}

@keyframes float-bg {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.neon-border {
    position: relative;
    padding: 2px;
    background: linear-gradient(135deg, var(--gradient-blue), var(--gradient-cyan), var(--gradient-purple));
    border-radius: 20px;
}

.neon-border-inner {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 2rem;
}

.dark-mode-toggle {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dark-mode-toggle:hover {
    background: rgba(255, 255, 255, 0.9);
}

.dark-mode .dark-mode-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
}

.stats-card {
    text-align: center;
    padding: 1.5rem;
}

.stats-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stats-label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.process-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--color-text-primary);
}

.process-description {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.process-duration {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 600;
}

.case-study-card {
    overflow: hidden;
    height: 100%;
}

.case-study-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.1);
}

.case-study-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.case-study-content {
    padding: 1.5rem;
}

.case-study-client {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.case-study-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
    color: var(--color-text-primary);
}

.case-study-card:hover .case-study-title {
    color: var(--color-primary);
}

.case-study-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

.result-label {
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.result-value {
    font-weight: 700;
    color: #10b981;
}

.case-study-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.tag {
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 600;
}

.cta-section {
    padding: 6rem 0;
    position: relative;
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem auto;
    max-width: 900px;
}

.cta-option {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    text-align: center;
}

.dark-mode .cta-option {
    background: rgba(255, 255, 255, 0.05);
}

.cta-option i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-option-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.cta-option-text {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
}

.trust-indicators .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-contact a {
    color: var(--color-text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--color-primary);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   About Us Page
   ========================================== */

/* ==========================================
   Service Cards (Grid Style)
   ========================================== */

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
}

.service-card-compact {
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card-compact:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--color-primary);
}

.service-card-compact .icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card-compact h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.service-card-compact p {
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    font-size: 0.9375rem;
}

.view-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}



.card-custom {
    background: #F2F4F6;
    border-radius: 32px;
    padding: 40px;
    position: relative;
}
.cs-card-bg-image {
    position: absolute;
    bottom: 0;
    right: 0;
    max-height: 390px;
    border-radius: 0 0 32px 32px;
    object-fit: cover;
    opacity: 0.5;
}
.icon-box {
    width: 48px;
    height: 48px;
    background: #004ed014;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* Information section CSS */

.info-lable {
    background-color: #F2F4F6;
    padding: 40px 0;
}
.info-lable-box i {
    font-size: 30px;
    color: #004ED0;
}
.info-lable-box svg {
    width: 34px;
}

.build-slider {
  height: 400px;
  position: relative;
  overflow: hidden;
}

.build-slider .slide {
  height: 400px;
  position: relative;
}

.bg-globe-img {
  background: url('/images/1095018_8010.jpg') center/cover no-repeat;
}

.build-slider .overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 110, 253, 0.85); /* Bootstrap primary overlay */
}

.build-slider h1 {
  font-size: 42px;
}

.build-slider .slick-dots li button:before {
  color: #fff;
  font-size: 10px;
}