@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette (Light Theme) */
    --bg-main: #F8FAFC; 
    --bg-secondary: #FFFFFF; 
    --bg-tertiary: #F1F5F9; 
    
    --primary: #2C3691; /* Xevo Royal Blue */
    --accent: #26ABE2; /* Xevo Sky Blue */
    --accent-glow: rgba(38, 171, 226, 0.5);
    
    --text-main: #0F172A;
    --text-muted: #475569; 
    
    --border-color: #E2E8F0;
    --glass-bg: rgba(255, 255, 255, 0.85);
    
    --star-color: #F59E0B;
    
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography specifics */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

/* Custom Navbar overrides for Bootstrap */
.custom-navbar {
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    transition: var(--transition);
}

.custom-navbar.navbar-scrolled {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid var(--border-color) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    padding: 1rem 0;
}

.custom-navbar .nav-link {
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 500;
}

.custom-navbar .nav-link:hover {
    color: var(--primary);
}

.navbar-transparent {
    background: transparent !important;
    border-bottom: none !important;
    backdrop-filter: none !important;
}

.navbar-transparent .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.navbar-transparent.navbar-scrolled .nav-link {
    color: var(--text-muted) !important;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(44, 54, 145, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(38, 171, 226, 0.4);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Premium Awwwards Hero Section */
.hero-awwwards {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, #1a2265 50%, var(--accent) 100%);
}

.hero-shape-1 {
    position: absolute;
    top: -20%; right: -10%;
    width: 800px; height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(38, 171, 226, 0.1) 0%, transparent 60%);
    filter: blur(60px);
    z-index: 0;
}

.hero-shape-2 {
    position: absolute;
    bottom: -10%; left: -10%;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(44, 54, 145, 0.08) 0%, transparent 60%);
    filter: blur(60px);
    z-index: 0;
}

.display-mega {
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

/* Glassmorphism Elements */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(44, 54, 145, 0.08);
}

/* Service Cards Overhaul */
.service-premium-card {
    background: var(--bg-secondary);
    border-radius: 30px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.service-premium-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(44, 54, 145, 0.03), rgba(38, 171, 226, 0.05));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-premium-card:hover {
    transform: translateY(-15px);
    border-color: rgba(38, 171, 226, 0.3);
    box-shadow: 0 30px 60px rgba(0,0,0,0.06);
}

.service-premium-card:hover::before {
    opacity: 1;
}

.icon-box-large {
    width: 80px; height: 80px;
    border-radius: 24px;
    background: var(--bg-tertiary);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.service-premium-card:hover .icon-box-large {
    background: var(--primary);
    color: white;
    transform: scale(1.1) rotate(-5deg);
}

/* Marquee / Logos */
.logos-marquee {
    overflow: hidden;
    white-space: nowrap;
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.logos-track {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.logos-track h3 {
    display: inline-block;
    margin: 0 3rem;
    opacity: 0.3;
    font-size: 1.8rem;
    color: var(--text-muted);
}

.logos-track img {
    display: inline-block;
    margin: 0 3rem;
    max-height: 60px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    vertical-align: middle;
}

.logos-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

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

/* Image wrappers */
.img-reveal {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.img-reveal img {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}
.img-reveal:hover img {
    transform: scale(1.05);
}

/* Floating badge for hero */
.premium-badge {
    position: absolute;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    animation: float 6s ease-in-out infinite;
    z-index: 3;
}
.badge-1 { bottom: 10%; left: -10%; }
.badge-2 { top: 15%; right: -5%; animation-delay: -3s; }

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

/* Text Highlights */
.highlight-text {
    position: relative;
    display: inline-block;
    z-index: 1;
}
.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 8px; left: 0; width: 100%; height: 16px;
    background: var(--accent-glow);
    z-index: -1;
    transform: skewX(-15deg);
}

/* Page Banner */
.page-banner {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.page-banner img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: -2;
}
.page-banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.9));
    z-index: -1;
}
.page-banner h1 {
    color: #FFFFFF; font-size: 3.5rem; max-width: 800px; margin: 0 auto;
}
.page-banner p {
    color: rgba(255,255,255,0.8); font-size: 1.2rem; max-width: 600px; margin: 1rem auto 0;
}

/* Global Padding */
.section-padding {
    padding: 8rem 0;
}

/* Testimonial adjustments */
.testimonial-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
}

/* Forms */
.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-main);
    font-family: inherit;
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 0 4px rgba(44, 54, 145, 0.1);
}

/* Authority Logos Strip */
.authority-strip {
    padding: 3rem 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.authority-strip .authority-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: var(--bg-tertiary);
    border-radius: 20px;
    padding: 15px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.authority-strip .authority-logo:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 30px rgba(44, 54, 145, 0.12);
    border-color: var(--accent);
}

.authority-strip .authority-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Why Choose Us - Animated Counters */
.counter-section {
    background: linear-gradient(135deg, var(--primary) 0%, #1a2265 50%, var(--accent) 100%);
    position: relative;
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(38, 171, 226, 0.15), transparent 60%);
    border-radius: 50%;
    filter: blur(80px);
}

.counter-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(44, 54, 145, 0.15), transparent 60%);
    border-radius: 50%;
    filter: blur(60px);
}

.counter-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.counter-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(38, 171, 226, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.counter-card .counter-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.counter-card .counter-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.counter-card .counter-label {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

/* Gradient Divider */
.gradient-divider {
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--primary), var(--accent), transparent);
    border: none;
    margin: 0;
    opacity: 0.5;
}

/* Service Menu Item Hover */
.service-menu-item:hover {
    background: rgba(38, 171, 226, 0.08) !important;
    transform: translateX(5px);
}

.service-menu-item:hover .icon-box {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(38, 171, 226, 0.2);
}

/* ============================================
   $10K PREMIUM DESIGN SYSTEM
   ============================================ */

/* Smooth Scroll */
html { scroll-behavior: smooth; }

/* Animated Dot Grid Background */
.dot-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: dotPulse 8s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator .mouse::after {
    content: '';
    width: 4px;
    height: 10px;
    background: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseScroll 2s ease-in-out infinite;
}

@keyframes mouseScroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Wave Section Divider */
.wave-divider {
    width: 100%;
    line-height: 0;
    margin-top: -2px;
}

.wave-divider svg {
    width: 100%;
    height: 80px;
    display: block;
}

.wave-divider-flip {
    transform: rotate(180deg);
    margin-bottom: -2px;
    margin-top: 0;
}

/* Glowing Card Border */
.glow-card {
    position: relative;
    background: var(--bg-secondary);
    border-radius: 24px;
    padding: 2.5rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.glow-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, transparent, transparent, var(--accent));
    opacity: 0;
    transition: opacity 0.5s;
    animation: glowRotate 4s linear infinite;
    z-index: -2;
}

.glow-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--bg-secondary);
    border-radius: 22px;
    z-index: -1;
}

.glow-card:hover::before {
    opacity: 1;
}

.glow-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(38, 171, 226, 0.15);
}

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

/* Process / How It Works */
.process-section {
    background: var(--bg-tertiary);
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 0 1rem;
}

.process-step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-weight: 800;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(38, 171, 226, 0.3);
    position: relative;
    z-index: 2;
}

.process-connector {
    position: absolute;
    top: 30px;
    left: 55%;
    width: 90%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), rgba(38, 171, 226, 0.2));
    z-index: 1;
}

.process-step-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin: 0 auto 1.2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.process-step:hover .process-step-icon {
    transform: translateY(-8px) rotate(-5deg);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

/* Premium Testimonial Card */
.testimonial-premium {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    border: 1px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.testimonial-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.testimonial-premium:hover::before {
    transform: scaleX(1);
}

.testimonial-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(44, 54, 145, 0.1);
}

/* Text Shimmer Effect */
.text-shimmer {
    background: linear-gradient(
        120deg,
        var(--primary) 0%,
        var(--accent) 25%,
        white 50%,
        var(--accent) 75%,
        var(--primary) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 4s linear infinite;
}

@keyframes textShimmer {
    to { background-position: 200% center; }
}

/* Animated underline for headings */
.heading-underline {
    position: relative;
    display: inline-block;
}

.heading-underline::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    transition: width 0.5s ease;
}

.heading-underline:hover::after {
    width: 100%;
}

/* Feature Grid Cards */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, transparent, rgba(38, 171, 226, 0.05));
    transition: height 0.5s ease;
}

.feature-card:hover::after {
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(38, 171, 226, 0.1);
}

/* Floating Particles */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.particle-1 {
    width: 6px; height: 6px;
    background: var(--accent);
    top: 20%; left: 10%;
    animation: particleFloat 6s ease-in-out infinite;
}

.particle-2 {
    width: 4px; height: 4px;
    background: var(--primary);
    top: 40%; right: 15%;
    animation: particleFloat 8s ease-in-out infinite reverse;
}

.particle-3 {
    width: 8px; height: 8px;
    background: rgba(38, 171, 226, 0.3);
    bottom: 30%; left: 20%;
    animation: particleFloat 7s ease-in-out infinite 1s;
}

.particle-4 {
    width: 5px; height: 5px;
    background: rgba(44, 54, 145, 0.4);
    top: 60%; right: 25%;
    animation: particleFloat 9s ease-in-out infinite 2s;
}

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    25% { transform: translate(20px, -30px) scale(1.2); opacity: 1; }
    50% { transform: translate(-10px, -50px) scale(0.8); opacity: 0.4; }
    75% { transform: translate(15px, -20px) scale(1.1); opacity: 0.8; }
}

/* Responsive premium adjustments */
@media (max-width: 768px) {
    .process-connector { display: none; }
    .premium-badge { display: none; }
    .wave-divider svg { height: 40px; }
    .counter-card .counter-number { font-size: 2.2rem; }
}
