/* ============================================
   NEONPULSEIT - Premium Stylesheet
   Theme: Neon Light - Modern & Vibrant
   Colors: Teal/Cyan + Orange + Rose + Emerald
   ============================================ */

:root {
    /* Primary Colors - Neon Light Theme */
    --primary-teal: #0891B2;
    --primary-orange: #F97316;
    --primary-rose: #E11D48;
    --primary-emerald: #10B981;

    /* Light Shades */
    --teal-light: #ECFEFF;
    --orange-light: #FFF7ED;
    --rose-light: #FFF1F2;
    --emerald-light: #ECFDF5;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0891B2 0%, #F97316 100%);
    --gradient-secondary: linear-gradient(135deg, #F97316 0%, #E11D48 100%);
    --gradient-accent: linear-gradient(135deg, #10B981 0%, #0891B2 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-light: linear-gradient(135deg, #ecfeff 0%, #fff7ed 50%, #ecfdf5 100%);
    --gradient-hero: linear-gradient(135deg, #ecfeff 0%, #fff7ed 30%, #fff1f2 60%, #ecfdf5 100%);
    --gradient-top-bar: linear-gradient(90deg, #0891B2, #F97316, #E11D48);

    /* Neutral Colors */
    --dark-bg: #0f172a;
    --dark-secondary: #1e293b;
    --light-bg: #f0fdfa;
    --white: #ffffff;
    --text-dark: #0f172a;
    --text-body: #475569;
    --text-muted: #64748b;
    --text-light: #94a3b8;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(8, 145, 178, 0.06);
    --shadow-md: 0 4px 12px rgba(8, 145, 178, 0.08);
    --shadow-lg: 0 12px 28px rgba(8, 145, 178, 0.1);
    --shadow-xl: 0 20px 40px rgba(8, 145, 178, 0.12);
    --shadow-glow-primary: 0 8px 30px rgba(8, 145, 178, 0.25);
    --shadow-glow-secondary: 0 8px 30px rgba(249, 115, 22, 0.2);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg { background: var(--gradient-primary); }
.section-padding { padding: 110px 0; }
.section-padding-sm { padding: 70px 0; }

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden { opacity: 0; visibility: hidden; }

.loader {
    width: 48px;
    height: 48px;
    border: 3px solid var(--teal-light);
    border-top-color: var(--primary-teal);
    border-right-color: var(--primary-orange);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    position: relative;
}

.loader::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 10px; height: 10px;
    background: var(--gradient-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

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

/* ============================================
   NAVBAR - Clean White with Accent
   ============================================ */
.navbar {
    padding: 18px 0;
    transition: var(--transition-normal);
    background: transparent;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 20px rgba(8, 145, 178, 0.06);
    padding: 12px 0;
    border-bottom: 2px solid transparent;
    border-image: var(--gradient-top-bar) 1;
}

@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        visibility: visible !important;
    }
    .navbar-collapse.collapse:not(.show) { display: flex !important; }
    .navbar-nav {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        visibility: visible !important;
    }
    .navbar-nav .nav-item {
        display: block !important;
        visibility: visible !important;
    }
    .navbar-nav .nav-link {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.navbar-brand { display: flex; align-items: center; }
.navbar-brand img { height: 48px; width: auto; }

.navbar .navbar-nav { display: flex; }
.navbar .navbar-nav .nav-item { list-style: none; }

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 8px 18px !important;
    position: relative;
    transition: var(--transition-fast);
    display: block;
    font-size: 15px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
    transform: translateX(-50%);
    border-radius: 3px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-teal) !important;
}

.btn-nav {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    padding: 10px 26px !important;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-glow-primary);
    transition: var(--transition-normal);
    border: none;
    letter-spacing: 0.3px;
}

.btn-nav:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 35px rgba(8, 145, 178, 0.35);
}

.btn-nav::after { display: none !important; }

.navbar-toggler {
    border: 2px solid var(--primary-teal);
    padding: 8px 12px;
    background: transparent;
    border-radius: 10px;
}

.navbar-toggler:focus { box-shadow: none; outline: none; }

.navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230891B2' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
}

/* ============================================
   HERO SECTION - Vibrant Light
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 70%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(8, 145, 178, 0.08) 0%, transparent 60%);
    animation: heroBlob 20s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 55%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(249, 115, 22, 0.06) 0%, transparent 60%);
    animation: heroBlob 16s ease-in-out infinite reverse;
}

@keyframes heroBlob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -25px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.97); }
}

.hero-section .particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-section .particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-teal);
    border-radius: 50%;
    opacity: 0.08;
    animation: twinkle 5s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.05; transform: scale(1); }
    50% { opacity: 0.2; transform: scale(1.8); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--primary-teal);
    padding: 8px 20px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 22px;
    border: 1px solid rgba(8, 145, 178, 0.12);
    box-shadow: var(--shadow-sm);
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 22px;
    color: var(--text-dark);
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.12rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 500px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
    line-height: 1.85;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-image {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease 0.5s forwards;
    opacity: 0;
}

.hero-image img {
    max-width: 100%;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 8px 30px rgba(8, 145, 178, 0.1);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floatSmooth 4s ease-in-out infinite;
    z-index: 3;
    border: 1px solid rgba(8, 145, 178, 0.06);
}

.floating-element.el-1 { top: 20%; right: 10%; animation-delay: 0s; }
.floating-element.el-2 { bottom: 30%; right: 5%; animation-delay: 1.3s; }
.floating-element.el-3 { bottom: 20%; left: 55%; animation-delay: 2.6s; }

.floating-element strong { color: var(--text-dark); font-size: 16px; }
.floating-element small { color: var(--text-muted); font-size: 12px; display: block; }

.floating-element i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 18px;
}

.floating-element i.teal {
    background: linear-gradient(135deg, #ecfeff, #cffafe);
    color: var(--primary-teal);
}

.floating-element i.orange {
    background: linear-gradient(135deg, #fff7ed, #fed7aa);
    color: var(--primary-orange);
}

.floating-element i.emerald {
    background: linear-gradient(135deg, #ecfdf5, #a7f3d0);
    color: var(--primary-emerald);
}

.floating-element i.rose {
    background: linear-gradient(135deg, #fff1f2, #fecdd3);
    color: var(--primary-rose);
}

@keyframes floatSmooth {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary-gradient {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-glow-primary);
    cursor: pointer;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-primary-gradient::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-primary-gradient:hover::before { left: 100%; }

.btn-primary-gradient:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(8, 145, 178, 0.4);
    color: var(--white);
}

.btn-outline-gradient {
    background: var(--white);
    color: var(--primary-teal);
    border: 2px solid rgba(8, 145, 178, 0.2);
    padding: 12px 32px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-normal);
    cursor: pointer;
}

.btn-outline-gradient:hover {
    background: var(--primary-teal);
    border-color: var(--primary-teal);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-primary);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 65px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ecfeff, #fff7ed);
    color: var(--primary-teal);
    padding: 8px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
}

/* ============================================
   SERVICES SECTION - Accent Border Cards
   ============================================ */
.services-section {
    background: var(--light-bg);
    position: relative;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 38px 28px;
    text-align: center;
    transition: var(--transition-normal);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(8, 145, 178, 0.04);
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 30px;
    transition: var(--transition-normal);
}

.service-icon.teal {
    background: linear-gradient(135deg, #ecfeff, #cffafe);
    color: var(--primary-teal);
}

.service-icon.orange {
    background: linear-gradient(135deg, #fff7ed, #fed7aa);
    color: var(--primary-orange);
}

.service-icon.emerald {
    background: linear-gradient(135deg, #ecfdf5, #a7f3d0);
    color: var(--primary-emerald);
}

.service-icon.rose {
    background: linear-gradient(135deg, #fff1f2, #fecdd3);
    color: var(--primary-rose);
}

.service-card:hover .service-icon {
    transform: scale(1.12) rotate(5deg);
}

.service-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.75;
}

.service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-teal);
    font-weight: 600;
    margin-top: 16px;
    font-size: 14px;
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition-normal);
}

.service-card:hover .learn-more {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-image { position: relative; }

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 24px 28px;
    border-radius: 18px;
    text-align: center;
    box-shadow: var(--shadow-glow-primary);
}

.experience-badge h3 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge p {
    font-size: 13px;
    margin: 0;
    font-weight: 600;
    opacity: 0.9;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-content > p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.85;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 14px;
    background: var(--light-bg);
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.about-feature:hover {
    border-color: rgba(8, 145, 178, 0.1);
    box-shadow: var(--shadow-md);
}

.about-feature i {
    width: 44px; height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 18px;
}

.about-feature i.teal { background: linear-gradient(135deg, #ecfeff, #cffafe); color: var(--primary-teal); }
.about-feature i.orange { background: linear-gradient(135deg, #fff7ed, #fed7aa); color: var(--primary-orange); }
.about-feature i.emerald { background: linear-gradient(135deg, #ecfdf5, #a7f3d0); color: var(--primary-emerald); }
.about-feature i.rose { background: linear-gradient(135deg, #fff1f2, #fecdd3); color: var(--primary-rose); }

.about-feature h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--text-dark);
}

.about-feature p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: var(--gradient-dark);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 25% 50%, rgba(8, 145, 178, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 50%, rgba(249, 115, 22, 0.15) 0%, transparent 50%);
}

.stat-item {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
    padding: 28px 16px;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #67e8f9, #fdba74, #a7f3d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 500;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio-section {
    background: var(--light-bg);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 1px solid rgba(8, 145, 178, 0.12);
    background: var(--white);
    color: var(--text-body);
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 14px;
}

.filter-btn:hover {
    border-color: var(--primary-teal);
    color: var(--primary-teal);
    background: #ecfeff;
}

.filter-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-glow-primary);
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.portfolio-item:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.portfolio-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.portfolio-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(15, 23, 42, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    opacity: 0;
    transition: var(--transition-normal);
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-item:hover img,
.portfolio-item:hover svg { transform: scale(1.06); }
.portfolio-item svg { transition: var(--transition-slow); }

.portfolio-overlay h4 {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.portfolio-overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    margin-bottom: 14px;
}

.portfolio-overlay .btn-view {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 12px;
    font-size: 18px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-glow-primary);
}

.portfolio-overlay .btn-view:hover { transform: scale(1.1); }

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: var(--white);
    position: relative;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    position: relative;
    margin: 20px 0;
    border: 1px solid rgba(8, 145, 178, 0.05);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

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

.testimonial-card::before {
    content: '\201C';
    font-size: 80px;
    color: var(--primary-teal);
    opacity: 0.08;
    position: absolute;
    top: 5px; left: 25px;
    font-family: Georgia, serif;
}

.testimonial-content { position: relative; z-index: 1; }

.testimonial-content p {
    font-size: 15px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.85;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author img {
    width: 60px; height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--text-dark);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-muted);
}

.testimonial-rating {
    color: #f59e0b;
    font-size: 13px;
    margin-top: 4px;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section { background: var(--light-bg); }

.team-card {
    text-align: center;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(8, 145, 178, 0.04);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.team-image { position: relative; overflow: hidden; }

.team-image img,
.team-image svg {
    width: 100%; height: 300px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-card:hover .team-image img,
.team-card:hover .team-image svg { transform: scale(1.04); }

.team-social {
    position: absolute;
    bottom: -50px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    transition: var(--transition-normal);
}

.team-card:hover .team-social { bottom: 16px; }

.team-social a {
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary-teal);
    border-radius: 10px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.team-social a:hover {
    background: var(--gradient-primary);
    color: var(--white);
}

.team-info { padding: 22px 18px; }

.team-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--text-dark);
}

.team-info span {
    color: var(--primary-teal);
    font-size: 13px;
    font-weight: 600;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--gradient-dark);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 350px;
    background: radial-gradient(ellipse, rgba(249, 115, 22, 0.15) 0%, transparent 60%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 18px;
}

.cta-content p {
    color: rgba(255,255,255,0.7);
    font-size: 17px;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section { background: var(--light-bg); }

.contact-info-card {
    background: var(--white);
    border-radius: 18px;
    padding: 26px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(8, 145, 178, 0.04);
    border-left: 3px solid var(--primary-teal);
}

.contact-info-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.contact-info-card i {
    width: 52px; height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 22px;
}

.contact-info-card i.teal { background: linear-gradient(135deg, #ecfeff, #cffafe); color: var(--primary-teal); }
.contact-info-card i.orange { background: linear-gradient(135deg, #fff7ed, #fed7aa); color: var(--primary-orange); }
.contact-info-card i.emerald { background: linear-gradient(135deg, #ecfdf5, #a7f3d0); color: var(--primary-emerald); }
.contact-info-card i.rose { background: linear-gradient(135deg, #fff1f2, #fecdd3); color: var(--primary-rose); }

.contact-info-card h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.contact-info-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 14px;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 38px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(8, 145, 178, 0.04);
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 14px 18px;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    font-size: 15px;
    transition: var(--transition-fast);
    margin-bottom: 18px;
    background: #fafafa;
    color: var(--text-dark);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
    background: var(--white);
}

.contact-form textarea.form-control { min-height: 150px; resize: none; }

.contact-form .form-check-label { color: var(--text-muted); font-size: 14px; }
.contact-form .form-check-input:checked {
    background-color: var(--primary-teal);
    border-color: var(--primary-teal);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding-top: 80px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-top-bar);
}

.footer-widget h4 {
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 22px;
}

.footer-widget p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.8;
}

.footer-widget ul li { margin-bottom: 11px; }

.footer-widget ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-widget ul li a:hover {
    color: #67e8f9;
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 42px; height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255,255,255,0.7);
    border-radius: 12px;
    transition: var(--transition-fast);
    border: 1px solid rgba(255,255,255,0.06);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: var(--shadow-glow-primary);
}

.footer-newsletter {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-newsletter input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-size: 14px;
}

.footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter input:focus { outline: none; border-color: rgba(8, 145, 178, 0.5); }

.footer-newsletter button {
    padding: 14px 22px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-fast);
    font-weight: 700;
}

.footer-newsletter button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 22px 0;
    margin-top: 60px;
}

.footer-bottom p { color: rgba(255,255,255,0.5); margin: 0; font-size: 13px; }

.footer-bottom-links { display: flex; gap: 22px; justify-content: flex-end; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); font-size: 13px; }
.footer-bottom-links a:hover { color: #67e8f9; }

/* ============================================
   PAGE HEADERS
   ============================================ */
.page-header {
    background: var(--gradient-dark);
    padding: 155px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -30%; right: -15%;
    width: 60%; height: 140%;
    background: radial-gradient(ellipse, rgba(249, 115, 22, 0.12) 0%, transparent 55%);
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-top-bar);
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
}

.breadcrumb { justify-content: center; margin: 0; }
.breadcrumb-item { color: rgba(255,255,255,0.6); font-size: 14px; }
.breadcrumb-item a { color: rgba(255,255,255,0.6); }
.breadcrumb-item a:hover { color: #67e8f9; }
.breadcrumb-item.active { color: #67e8f9; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); content: "/"; }

/* ============================================
   ABOUT PAGE SPECIFIC
   ============================================ */
.mission-vision-section { background: var(--light-bg); }

.mv-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    height: 100%;
    transition: var(--transition-normal);
    border: 1px solid rgba(8, 145, 178, 0.04);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.mv-card:hover::before { transform: scaleX(1); }

.mv-card i {
    width: 64px; height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 16px;
    font-size: 28px;
    margin-bottom: 22px;
    box-shadow: var(--shadow-glow-primary);
}

.mv-card h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 12px; color: var(--text-dark); }
.mv-card p { color: var(--text-muted); line-height: 1.8; font-size: 14px; }

/* Timeline */
.timeline { position: relative; padding: 20px 0; }

.timeline::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 40px;
    position: relative;
    margin-bottom: 40px;
    width: 50%;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 40px;
    margin-left: 50%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    right: -10px; top: 0;
    width: 20px; height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
}

.timeline-item:nth-child(even)::before { right: auto; left: -10px; }

.timeline-content {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    max-width: 400px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(8, 145, 178, 0.04);
}

.timeline-content h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.timeline-content span { color: var(--primary-teal); font-size: 13px; font-weight: 700; }
.timeline-content p { color: var(--text-muted); font-size: 13px; margin-top: 8px; margin-bottom: 0; }

/* ============================================
   SERVICES PAGE SPECIFIC
   ============================================ */
.service-detail-card {
    background: var(--white);
    border-radius: 20px;
    padding: 44px 34px;
    text-align: center;
    margin-bottom: 30px;
    transition: var(--transition-normal);
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(8, 145, 178, 0.04);
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.service-detail-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.service-detail-card:hover::before { transform: scaleX(1); }

.service-detail-card .service-icon { width: 90px; height: 90px; margin: 0 auto 28px; font-size: 40px; }
.service-detail-card h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 16px; color: var(--text-dark); }
.service-detail-card p { color: var(--text-muted); margin-bottom: 22px; line-height: 1.75; font-size: 14px; }
.service-detail-card ul { text-align: left; margin-bottom: 22px; }
.service-detail-card ul li {
    padding: 6px 0; color: var(--text-muted);
    display: flex; align-items: center; gap: 10px; font-size: 14px;
}
.service-detail-card ul li i { color: var(--primary-teal); }

.process-section { background: var(--light-bg); }

.process-step { text-align: center; position: relative; padding: 0 20px; }

.process-step::after {
    content: '';
    position: absolute;
    top: 40px; right: -50%;
    width: 100%; height: 3px;
    background: var(--gradient-primary);
    z-index: 0;
}

.process-step:last-child::after { display: none; }

.process-number {
    width: 80px; height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 800;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-glow-primary);
}

.process-step h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.process-step p { color: var(--text-muted); font-size: 13px; }

/* Tech cards */
.tech-card {
    background: var(--white);
    border: 1px solid rgba(8, 145, 178, 0.05);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.tech-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.tech-card i { font-size: 36px; margin-bottom: 12px; display: block; }
.tech-card h5 { font-size: 14px; font-weight: 600; color: var(--text-dark); }

/* FAQ */
.accordion-item {
    background: var(--white) !important;
    border: 1px solid rgba(8, 145, 178, 0.06) !important;
    border-radius: 14px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-button {
    background: transparent !important;
    color: var(--text-dark) !important;
    font-weight: 600;
    font-size: 15px;
    padding: 18px 22px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) { color: var(--primary-teal) !important; }
.accordion-body { color: var(--text-muted); padding: 0 22px 18px; font-size: 14px; line-height: 1.8; }

/* ============================================
   PORTFOLIO PAGE
   ============================================ */
.portfolio-detail-item { margin-bottom: 30px; }
.portfolio-detail-item img { height: 300px; }

.client-logo-card {
    background: var(--white);
    border: 1px solid rgba(8, 145, 178, 0.05);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.client-logo-card:hover { box-shadow: var(--shadow-lg); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.map-section { height: 400px; background: var(--light-bg); }
.map-section iframe { width: 100%; height: 100%; border: none; border-radius: 0; }

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 14px;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-glow-primary);
}

.scroll-to-top.show { opacity: 1; visibility: visible; }

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(8, 145, 178, 0.4);
}

/* ============================================
   CAREERS PAGE
   ============================================ */
.job-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition-normal);
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(8, 145, 178, 0.04);
    border-left: 4px solid var(--primary-teal);
    position: relative;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.job-card .job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
}

.job-card .job-icon {
    width: 56px; height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 24px;
}

.job-card .job-type {
    background: linear-gradient(135deg, #ecfeff, #cffafe);
    color: var(--primary-teal);
    padding: 5px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

.job-card h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }

.job-card .job-meta { display: flex; gap: 14px; margin-bottom: 12px; flex-wrap: wrap; }
.job-card .job-meta span { display: flex; align-items: center; gap: 5px; color: var(--text-muted); font-size: 13px; }

.job-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; line-height: 1.75; }

.job-card .job-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 18px; }
.job-card .job-tags span {
    background: var(--light-bg);
    color: var(--primary-teal);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.benefit-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition-normal);
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(8, 145, 178, 0.04);
}

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

.benefit-card .benefit-icon {
    width: 64px; height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 28px;
}

.benefit-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.benefit-card p { color: var(--text-muted); font-size: 13px; margin: 0; }

.culture-image { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.culture-image svg { width: 100%; height: auto; }

.hiring-process { position: relative; }

.hiring-step {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    position: relative;
}

.hiring-step:last-child { margin-bottom: 0; }

.hiring-step::before {
    content: '';
    position: absolute;
    left: 25px; top: 55px; bottom: -28px;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-teal), var(--primary-orange));
    border-radius: 3px;
}

.hiring-step:last-child::before { display: none; }

.hiring-step .step-number {
    width: 50px; height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-glow-primary);
}

.hiring-step .step-content h5 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; color: var(--text-dark); }
.hiring-step .step-content p { color: var(--text-muted); font-size: 13px; margin: 0; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-28px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(28px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

@keyframes neonGlow {
    0%, 100% { text-shadow: 0 0 5px rgba(8,145,178,0.3), 0 0 10px rgba(8,145,178,0.2); }
    50% { text-shadow: 0 0 20px rgba(8,145,178,0.5), 0 0 40px rgba(249,115,22,0.3); }
}

@keyframes pulseRing {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

[data-aos] { transition-duration: 800ms; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1199px) {
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2.3rem; }
}

@media (max-width: 991px) {
    .hero-section { padding-top: 120px; }
    .hero-title { font-size: 2.5rem; }
    .hero-image { margin-top: 50px; }
    .floating-element { display: none; }

    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: 16px;
        box-shadow: var(--shadow-xl);
        margin-top: 15px;
        border: 1px solid rgba(8, 145, 178, 0.06);
    }

    .about-features { grid-template-columns: 1fr; }

    .timeline::before { left: 20px; }
    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%; padding-left: 60px; padding-right: 0; margin-left: 0;
        justify-content: flex-start;
    }
    .timeline-item::before,
    .timeline-item:nth-child(even)::before { left: 10px; right: auto; }

    .process-step::after { display: none; }
}

@media (max-width: 767px) {
    .section-padding { padding: 70px 0; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-buttons { flex-direction: column; }
    .section-title { font-size: 1.8rem; }
    .stat-item h3 { font-size: 2.5rem; }
    .cta-content h2 { font-size: 2rem; }
    .page-header-content h1 { font-size: 2.2rem; }
    .footer-bottom { text-align: center; }
    .footer-bottom-links { justify-content: center; margin-top: 15px; }
    .experience-badge { position: relative; bottom: 0; right: 0; margin-top: 20px; display: inline-block; }
}

@media (max-width: 575px) {
    .hero-buttons .btn-primary-gradient,
    .hero-buttons .btn-outline-gradient { width: 100%; justify-content: center; }
    .contact-form-wrapper { padding: 24px; }
    .footer-newsletter { flex-direction: column; }
}