/* ============================================================
   SAMS IT AND TECHNOLOGY - Main Stylesheet
   ============================================================ */

:root {
    --primary: #0066ff;
    --primary-dark: #0044cc;
    --primary-glow: rgba(0, 102, 255, 0.35);
    --accent: #00d4ff;
    --accent2: #7c3aed;
    --dark-bg: #020818;
    --dark-card: #060f2a;
    --dark-surface: #0a1535;
    --dark-border: rgba(0, 102, 255, 0.2);
    --text-primary: #f0f4ff;
    --text-muted: #8da0c4;
    --gradient: linear-gradient(135deg, #0066ff, #00d4ff);
    --gradient-purple: linear-gradient(135deg, #7c3aed, #0066ff);
    --font-main: 'Inter', sans-serif;
    --font-brand: 'Orbitron', monospace;
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.7;
}

::selection {
    background: var(--primary);
    color: #fff;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--dark-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    margin-bottom: 1.5rem;
    animation: pulse 1.2s ease-in-out infinite;
}

.preloader-logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(0, 102, 255, 0.4), 0 0 80px rgba(0, 212, 255, 0.15);
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

.preloader-bar {
    width: 200px;
    height: 4px;
    background: rgba(0, 102, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 1rem;
}

.preloader-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 2px;
    animation: loading 1.8s ease-in-out infinite;
}

.preloader-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes loading {
    0% {
        width: 0%;
    }

    50% {
        width: 70%;
    }

    100% {
        width: 100%;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(0.98);
    }
}

/* ===== NAVBAR ===== */
#mainNavbar {
    background: transparent;
    padding: 1.2rem 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

#mainNavbar.scrolled {
    background: rgba(2, 8, 24, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    padding: 0.7rem 0;
}

.brand-icon {
    width: 44px;
    height: 44px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.brand-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.brand-icon.small {
    width: 36px;
    height: 36px;
}

.brand-name {
    font-family: var(--font-brand);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    letter-spacing: 1px;
    line-height: 1;
}

.brand-sub {
    font-size: 0.6rem;
    color: var(--accent);
    letter-spacing: 1.5px;
    line-height: 1.4;
    margin-top: 2px;
}

.nav-link-custom {
    color: var(--text-muted) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem !important;
    border-radius: 8px;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.nav-link-custom:hover {
    color: var(--text-primary) !important;
    background: rgba(0, 102, 255, 0.1);
}

.btn-glow {
    background: var(--gradient);
    color: #fff !important;
    border: none;
    border-radius: 10px;
    padding: 0.6rem 1.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 0 20px var(--primary-glow);
    text-decoration: none;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px var(--primary-glow);
    color: #fff !important;
}

.toggler-icon {
    color: var(--text-primary);
    font-size: 1.4rem;
}

.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: radial-gradient(ellipse at 20% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        var(--dark-bg);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230066ff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.4;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.4;
    }

    90% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 102, 255, 0.15);
    border: 1px solid rgba(0, 102, 255, 0.4);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(0, 102, 255, 0.1);
    }
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 1.5rem;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.rating-stars i {
    color: #f59e0b;
    font-size: 1rem;
}

.rating-score {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.rating-text {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.btn-hero-primary {
    background: var(--gradient);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 0.85rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px var(--primary-glow);
    color: #fff;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 0.85rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(0, 102, 255, 0.1);
    border-color: var(--primary);
    color: var(--text-primary);
    transform: translateY(-3px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.hero-card-float {
    position: absolute;
    background: rgba(6, 15, 42, 0.85);
    border: 1px solid var(--dark-border);
    border-radius: 14px;
    padding: 1rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(20px);
    animation: floatCard 4s ease-in-out infinite;
    min-width: 200px;
}

.card-1 {
    top: 60px;
    right: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 180px;
    right: 40px;
    animation-delay: 1.3s;
}

.card-3 {
    top: 310px;
    right: 10px;
    animation-delay: 2.6s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

.card-icon {
    font-size: 1.8rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-value {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-primary);
}

/* Orbit */
.hero-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-80%, -50%);
    width: 280px;
    height: 280px;
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--dark-border);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateOrbit 20s linear infinite;
}

.ring-1 {
    width: 200px;
    height: 200px;
}

.ring-2 {
    width: 280px;
    height: 280px;
    animation-direction: reverse;
    animation-duration: 30s;
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-brand);
    font-weight: 900;
    font-size: 1rem;
    color: #fff;
    box-shadow: 0 0 40px var(--primary-glow);
}

.orbit-dot {
    position: absolute;
    width: 36px;
    height: 36px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--accent);
}

.dot-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-18px);
}

.dot-2 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(18px);
}

.dot-3 {
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateX(-18px);
}

@keyframes rotateOrbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid var(--dark-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    animation: bounceDown 1.5s ease-in-out infinite;
    cursor: pointer;
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* ===== TICKER ===== */
.ticker-section {
    background: rgba(0, 102, 255, 0.08);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
    padding: 1rem 0;
    overflow: hidden;
}

.ticker-wrapper {
    overflow: hidden;
}

.ticker-track {
    display: flex;
    gap: 3rem;
    animation: ticker 35s linear infinite;
    white-space: nowrap;
}

.ticker-track span {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.ticker-track span i {
    color: var(--accent);
    font-size: 0.4rem;
    vertical-align: middle;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== SECTION COMMONS ===== */
.section-padding {
    padding: 100px 0;
}

.section-tag {
    display: inline-block;
    background: rgba(0, 102, 255, 0.12);
    border: 1px solid rgba(0, 102, 255, 0.3);
    color: var(--accent);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about-visual {
    position: relative;
}

.about-img-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.about-glow-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.12), transparent 70%);
    top: -50px;
    right: -50px;
    border-radius: 50%;
    pointer-events: none;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.about-stat {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    padding: 1.2rem;
    text-align: center;
    transition: var(--transition);
}

.about-stat:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15);
}

.stat-number {
    font-family: var(--font-brand);
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.ceo-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.25);
    border-radius: var(--radius-sm);
    padding: 1rem 1.2rem;
}

.ceo-avatar {
    font-size: 2.5rem;
    color: var(--accent);
}

.ceo-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
}

.ceo-title {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Highlights */
.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 0.8rem;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.highlight-item i {
    color: #22d3ee;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
}

.service-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 102, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.15);
}

.service-card.featured {
    border-color: rgba(0, 102, 255, 0.5);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 212, 255, 0.04));
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient);
    color: #fff;
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

.service-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(0, 102, 255, 0.12);
    border: 1px solid rgba(0, 102, 255, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--accent);
    margin-bottom: 1.2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 25px var(--primary-glow);
    transform: scale(1.05);
}

.service-card:hover .service-icon-wrap i {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

.service-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.2rem;
}

.service-list li {
    color: var(--text-muted);
    font-size: 0.82rem;
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-list li::before {
    content: '▸';
    color: var(--accent);
    font-size: 0.7rem;
}

.service-link {
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent);
    gap: 0.7rem;
}

/* ===== PLATFORM SECTION ===== */
.platform-section {
    background: linear-gradient(135deg, rgba(6, 15, 42, 0.9), rgba(2, 8, 24, 1));
}

.platform-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.platform-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    padding: 1.1rem 1.3rem;
    transition: var(--transition);
}

.platform-feature:hover {
    border-color: var(--primary);
    transform: translateX(5px);
    box-shadow: -4px 0 20px rgba(0, 102, 255, 0.15);
}

.pf-icon {
    width: 42px;
    height: 42px;
    background: rgba(0, 102, 255, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
    flex-shrink: 0;
}

.pf-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.pf-desc {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 0.2rem;
}

/* Platform Mockup */
.platform-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.platform-mockup {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    width: 100%;
    max-width: 480px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 102, 255, 0.1);
}

.mockup-header {
    background: var(--dark-surface);
    border-bottom: 1px solid var(--dark-border);
    padding: 0.9rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mockup-dots {
    display: flex;
    gap: 0.4rem;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) {
    background: #ff5f57;
}

.mockup-dots span:nth-child(2) {
    background: #ffbd2e;
}

.mockup-dots span:nth-child(3) {
    background: #28c840;
}

.mockup-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.mockup-body {
    display: flex;
    height: 300px;
}

.mockup-sidebar {
    width: 50px;
    background: rgba(6, 15, 42, 0.8);
    border-right: 1px solid var(--dark-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 0;
}

.sidebar-item {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-item.active,
.sidebar-item:hover {
    background: var(--primary);
    color: #fff;
}

.mockup-main {
    flex: 1;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mock-stat-row {
    display: flex;
    gap: 0.6rem;
}

.mock-stat {
    flex: 1;
    border-radius: 8px;
    padding: 0.7rem;
    text-align: center;
}

.mock-stat.green {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.mock-stat.red {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.mock-stat.blue {
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.ms-num {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.ms-lbl {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.mock-stat.green .ms-num {
    color: #22c55e;
}

.mock-stat.red .ms-num {
    color: #ef4444;
}

.mock-stat.blue .ms-num {
    color: var(--accent);
}

.mock-progress-area {
    margin-bottom: 0;
}

.mock-progress-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.mock-progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.mock-progress-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 3px;
    animation: progressFill 2s ease-out 1s both;
}

@keyframes progressFill {
    from {
        width: 0 !important;
    }
}

.mock-progress-value {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: right;
    margin-top: 0.2rem;
}

.mock-test-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.mock-test-item {
    font-size: 0.72rem;
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.mock-test-item.pass {
    background: rgba(34, 197, 94, 0.06);
    color: #22c55e;
}

.mock-test-item.fail {
    background: rgba(239, 68, 68, 0.06);
    color: #ef4444;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: radial-gradient(ellipse at center, rgba(0, 102, 255, 0.06) 0%, transparent 70%);
}

.stat-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.15);
}

.stat-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.stat-counter {
    font-family: var(--font-brand);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-name {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Rating Breakdown */
.rating-breakdown {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 2.5rem;
}

.big-rating {
    font-family: var(--font-brand);
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.rating-stars-big i {
    color: #f59e0b;
    font-size: 1.3rem;
}

.rating-reviews {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.rating-bar-item .progress {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.rating-bar-item .progress-bar {
    background: var(--gradient);
    border-radius: 4px;
    transition: width 1.5s ease;
}

.rating-bar-item span:first-child {
    width: 30px;
    text-align: right;
}

.rating-bar-item span:last-child {
    width: 35px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: linear-gradient(180deg, var(--dark-surface), var(--dark-bg));
    position: relative;
    overflow: hidden;
}

.contact-bg-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 102, 255, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 30%, rgba(0, 212, 255, 0.07) 0%, transparent 50%);
    pointer-events: none;
}

/* Contact Cards */
.contact-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 2.2rem 2rem;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--gradient);
    transition: left 0.5s ease;
}

.contact-card:hover::before {
    left: 0;
}

.contact-card:hover {
    border-color: rgba(0, 102, 255, 0.45);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.15);
}

.contact-card.featured-card {
    border-color: rgba(0, 102, 255, 0.4);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 212, 255, 0.04));
    box-shadow: 0 0 40px rgba(0, 102, 255, 0.1);
}

.contact-card.featured-card::before {
    left: 0;
    background: var(--gradient);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 102, 255, 0.12);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--accent);
    margin: 0 auto 1.2rem;
    transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 25px var(--primary-glow);
    transform: scale(1.1);
}

.contact-card-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 0.7rem;
}

.contact-card-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.contact-card-link {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.contact-card-link i {
    transition: transform 0.3s ease;
}

.contact-card-link:hover {
    color: var(--primary);
}

.contact-card-link:hover i {
    transform: translateX(4px);
}

/* Form Wrap */
.contact-form-wrap {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 3rem 3rem;
    position: relative;
    overflow: hidden;
}

.contact-form-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    border-radius: var(--radius) var(--radius) 0 0;
}

.contact-form-title {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.contact-form-sub {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin: 0;
}

/* Floating Label Groups */
.form-float-group {
    position: relative;
}

.form-float-group label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.88rem;
    pointer-events: none;
    transition: all 0.25s ease;
    background: transparent;
    padding: 0 0.25rem;
    z-index: 1;
}

.form-float-group textarea ~ label {
    top: 1rem;
    transform: none;
}

.form-float-group select ~ label,
.form-float-group .form-control:focus ~ label,
.form-float-group .form-control:not(:placeholder-shown) ~ label {
    top: 0;
    transform: translateY(-50%);
    font-size: 0.72rem;
    color: var(--accent);
    background: var(--dark-card);
    font-weight: 600;
    letter-spacing: 0.4px;
}

.form-float-group textarea:focus ~ label,
.form-float-group textarea:not(:placeholder-shown) ~ label {
    top: 0;
    transform: translateY(-55%);
    font-size: 0.72rem;
    color: var(--accent);
    background: var(--dark-card);
    font-weight: 600;
}

/* Submit Button */
.btn-contact-submit {
    background: var(--gradient);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 8px 30px var(--primary-glow);
    position: relative;
    overflow: hidden;
}

.btn-contact-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 45px var(--primary-glow);
    color: #fff;
}

.btn-contact-submit:hover::before {
    opacity: 1;
}

.btn-contact-submit:active {
    transform: translateY(0);
}

/* CTA Strip */
.contact-cta-strip {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.12), rgba(0, 212, 255, 0.06));
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
}

.cta-strip-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.cta-strip-text i {
    color: var(--accent);
}

.cta-strip-text strong {
    color: var(--text-primary);
}



.contact-info-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 2.5rem;
    height: 100%;
}

.contact-info-title {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--dark-border);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ci-icon {
    width: 42px;
    height: 42px;
    background: rgba(0, 102, 255, 0.12);
    border: 1px solid rgba(0, 102, 255, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent);
    flex-shrink: 0;
}

.ci-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ci-value {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-top: 0.2rem;
}

.contact-social {
    display: flex;
    gap: 0.7rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--primary-glow);
}

.social-btn.sm {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
    border-radius: 8px;
}

/* Contact Form */
.contact-form {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 2.5rem;
}

.form-label-custom {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    letter-spacing: 0.3px;
}

.form-control-custom {
    background: var(--dark-surface) !important;
    border: 1px solid var(--dark-border) !important;
    border-radius: var(--radius-sm) !important;
    color: var(--text-primary) !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.9rem !important;
    transition: var(--transition) !important;
}

.form-control-custom:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15) !important;
    background: rgba(6, 15, 42, 0.9) !important;
}

.form-control-custom::placeholder {
    color: rgba(141, 160, 196, 0.5) !important;
}

.form-select.form-control-custom option {
    background: var(--dark-card);
    color: var(--text-primary);
}

.form-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    border-radius: var(--radius-sm);
    padding: 0.8rem 1.2rem;
    font-size: 0.88rem;
    font-weight: 500;
}

.spin {
    animation: spin360 1s linear infinite;
    display: inline-block;
}

@keyframes spin360 {
    to {
        transform: rotate(360deg);
    }
}

/* ===== FOOTER ===== */
.footer-section {
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
    padding: 4rem 0 2rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    max-width: 300px;
}

.footer-heading {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.87rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 3px;
}

.footer-address {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.footer-address i {
    color: var(--accent);
}

.footer-divider {
    border-color: var(--dark-border);
    margin: 2rem 0 1.5rem;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin: 0;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--gradient);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
}

/* ===== AOS ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-visual {
        display: none;
    }

    .section-padding {
        padding: 70px 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .rating-breakdown {
        padding: 1.5rem;
    }

    .contact-form,
    .contact-info-card {
        padding: 1.5rem;
    }

    .footer-section {
        padding: 3rem 0 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 220px 220px;
    }

    .gallery-item.gallery-large {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    #gal-2 {
        grid-column: 1;
        grid-row: 2;
    }

    #gal-3 {
        grid-column: 2;
        grid-row: 2;
    }

    #gal-4 {
        grid-column: 1;
        grid-row: 3;
    }

    #gal-5 {
        grid-column: 2;
        grid-row: 3;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }
}

/* ===== PROCESS / HOW WE WORK ===== */
.process-section {
    background: radial-gradient(ellipse at 50% 100%, rgba(0, 102, 255, 0.07) 0%, transparent 70%);
}

.process-line {
    position: absolute;
    top: 60px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--primary), transparent);
    z-index: 0;
    opacity: 0.4;
}

.process-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.15);
}

.process-num {
    font-family: var(--font-brand);
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.4;
}

.process-card:hover .process-num {
    opacity: 1;
}

.process-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--accent);
    margin: 0 auto 1.2rem;
    transition: var(--transition);
}

.process-card:hover .process-icon {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 25px var(--primary-glow);
}

.process-card:hover .process-icon i {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

.process-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.process-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: linear-gradient(135deg, var(--dark-bg), rgba(6, 15, 42, 0.95));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
    gap: 12px;
    border-radius: var(--radius);
    overflow: hidden;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
}

.gallery-item.gallery-large {
    grid-column: 1;
    grid-row: 1 / 3;
}

#gal-2 {
    grid-column: 2;
    grid-row: 1;
}

#gal-3 {
    grid-column: 3;
    grid-row: 1;
}

#gal-4 {
    grid-column: 2;
    grid-row: 2;
}

#gal-5 {
    grid-column: 3;
    grid-row: 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 102, 255, 0.15) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.2rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: radial-gradient(ellipse at 50% 50%, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
}

.testimonial-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 2.5rem 3rem;
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.04), rgba(124, 58, 237, 0.04));
    border-radius: var(--radius);
    pointer-events: none;
}

.testi-quote {
    font-size: 3.5rem;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.testi-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.8rem;
}

.testi-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testi-avatar {
    font-size: 2.8rem;
    color: var(--accent);
}

.testi-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
}

.testi-role {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}

.testi-stars i {
    color: #f59e0b;
    font-size: 0.8rem;
}

.testi-indicators {
    position: relative !important;
    bottom: auto !important;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.testi-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: rgba(0, 102, 255, 0.3) !important;
    border: none !important;
    transition: var(--transition) !important;
    opacity: 1 !important;
}

.testi-indicators button.active {
    background: var(--primary) !important;
    transform: scale(1.3);
}

/* ============================================================
   ✨ PREMIUM INTERACTIVE ENHANCEMENTS
   ============================================================ */

/* ===== SCROLL PROGRESS BAR ===== */
#scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #0066ff, #00d4ff, #7c3aed);
    z-index: 10000;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}



/* ===== SECTION NAV DOTS ===== */
#sectionDots {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 990;
}

.dot-link {
    width: 10px;
    height: 10px;
    background: rgba(141, 160, 196, 0.35);
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease;
    position: relative;
}

.dot-link::after {
    content: attr(title);
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark-card);
    color: var(--text-muted);
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    border: 1px solid var(--dark-border);
    transition: opacity 0.2s ease;
}

.dot-link:hover::after {
    opacity: 1;
}

.dot-link.active {
    background: var(--accent);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
    transform: scale(1.4);
}

.dot-link:hover {
    background: var(--primary);
}

@media (max-width: 768px) {
    #sectionDots { display: none; }
}

/* ===== HERO TYPING EFFECT ===== */
.hero-typed-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-typed-prefix {
    color: var(--text-muted);
}

.hero-typed-text {
    color: var(--accent);
    font-weight: 700;
    font-family: var(--font-brand);
    font-size: 0.92rem;
    letter-spacing: 0.5px;
}

.hero-typed-cursor {
    color: var(--accent);
    font-weight: 300;
    font-size: 1.1rem;
    animation: cursorBlink 0.7s step-end infinite;
    margin-left: 1px;
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ===== ANIMATED HERO BACKGROUND BLOBS ===== */
.hero-section::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 5%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: blobFloat 8s ease-in-out infinite;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: blobFloat 10s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.05); }
    66% { transform: translate(-15px, 15px) scale(0.97); }
}

/* ===== GLOWING SECTION DIVIDERS ===== */
.section-padding + .section-padding::before,
.ticker-section + .section-padding::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
    opacity: 0.25;
    margin-bottom: 0;
}

/* ===== 3D CARD TILT (perspective container) ===== */
.service-card {
    transform-style: preserve-3d;
    will-change: transform;
}

/* Shimmer sweep on service cards (uses mousemove CSS variable) */
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(0, 212, 255, 0.06) 0%,
        transparent 65%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

/* ===== RIPPLE ON BTN CLICK ===== */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: scale(0);
    animation: rippleAnim 0.55s linear;
    pointer-events: none;
}

@keyframes rippleAnim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===== STAT CARD PULSE RINGS ===== */
.stat-card {
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.07) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.5s ease;
    border-radius: 50%;
}

.stat-card:hover::before {
    transform: scale(1);
}

/* ===== PROCESS CARD GLOW LINE ===== */
.process-card {
    position: relative;
    overflow: hidden;
}

.process-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gradient);
    transition: width 0.5s ease;
}

.process-card:hover::after {
    width: 100%;
}

/* ===== GALLERY IMAGE ZOOM PULSE ===== */
.gallery-item img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
    filter: brightness(0.85);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(0, 212, 255, 0.05));
    opacity: 0;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* ===== TESTIMONIAL CARD SHIMMER ===== */
.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -60%;
    width: 50%;
    height: 300%;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.03) 50%, transparent 60%);
    animation: shimmerSlide 4s ease infinite;
}

@keyframes shimmerSlide {
    0% { transform: translateX(-100%) skewX(-15deg); }
    60%, 100% { transform: translateX(350%) skewX(-15deg); }
}

/* ===== FLOATING ABOUT GLOW ===== */
.about-img-card {
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ===== ENHANCED NAVBAR ACTIVE INDICATOR ===== */
.nav-link-custom.active-nav {
    color: var(--text-primary) !important;
    background: rgba(0, 102, 255, 0.12) !important;
    position: relative;
}

.nav-link-custom.active-nav::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--accent);
}

/* ===== CONTACT CARD PULSE ON HOVER ===== */
.contact-card:hover .contact-card-icon {
    animation: iconBounce 0.4s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1.1); }
    50% { transform: scale(1.2) rotate(-5deg); }
}

/* ===== SMOOTH SECTION REVEAL VARIANTS ===== */
[data-aos="fade-up-sm"] {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-aos="fade-up-sm"].aos-animate {
    opacity: 1;
    transform: none;
}

[data-aos="zoom-in-soft"] {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="zoom-in-soft"].aos-animate {
    opacity: 1;
    transform: none;
}

/* ===== FOOTER BRAND GLOW ON HOVER ===== */
.footer-brand:hover .brand-icon {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transition: box-shadow 0.3s ease;
}

/* ===== GLOWING BORDER ANIMATION ON FEATURED CARDS ===== */
@keyframes borderGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 102, 255, 0.1), 0 0 40px rgba(0, 212, 255, 0.05); }
    50% { box-shadow: 0 0 35px rgba(0, 102, 255, 0.2), 0 0 60px rgba(0, 212, 255, 0.08); }
}

.service-card.featured {
    animation: borderGlow 3s ease-in-out infinite;
}

/* ===== SCROLL REVEAL STAGGER HELPER ===== */
.stagger-1 { transition-delay: 0.05s !important; }
.stagger-2 { transition-delay: 0.1s !important; }
.stagger-3 { transition-delay: 0.15s !important; }
.stagger-4 { transition-delay: 0.2s !important; }