/* ========================================
   PREMIUM PROFESSIONAL DESIGN SYSTEM
   Surya Enterprises - Professional UI/UX
   ======================================== */

/* ===== ENHANCED CSS VARIABLES ===== */
:root {
    /* Premium Color Palette */
    --premium-primary: #6366f1;
    --premium-primary-light: #818cf8;
    --premium-primary-dark: #4f46e5;
    --premium-secondary: #22c55e;
    --premium-secondary-light: #4ade80;
    --premium-accent: #f59e0b;
    --premium-accent-light: #fbbf24;

    /* Glassmorphism Colors */
    --glass-white: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: rgba(0, 0, 0, 0.1);

    /* Premium Gradients */
    --gradient-premium: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --gradient-aurora: linear-gradient(135deg, #a8edea 0%, #fed6e3 50%, #d299c2 100%);
    --gradient-ocean: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-sunset: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-dark-glass: linear-gradient(135deg, rgba(15, 15, 30, 0.9) 0%, rgba(30, 30, 60, 0.8) 100%);

    /* Premium Shadows */
    --shadow-glow-primary: 0 0 40px rgba(99, 102, 241, 0.4);
    --shadow-glow-secondary: 0 0 40px rgba(34, 197, 94, 0.3);
    --shadow-elevated: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 20px 60px rgba(0, 0, 0, 0.15);

    /* Premium Typography */
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== PREMIUM BODY ENHANCEMENT ===== */
body {
    background: linear-gradient(180deg, #fafaff 0%, #f0f0ff 50%, #ffffff 100%);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(34, 197, 94, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.02) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* ===== PREMIUM HEADER ===== */
header {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    border-bottom: 1px solid rgba(99, 102, 241, 0.08) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05) !important;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08) !important;
}

/* Premium Logo Enhancement */
.logo {
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-highlight {
    background: var(--gradient-ocean) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 900;
}

/* Premium Navigation Links */
nav a {
    position: relative;
    padding: 10px 16px !important;
    border-radius: 10px;
    font-weight: 600 !important;
}

nav a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

nav a:hover::before {
    opacity: 1;
}

nav a:hover {
    color: var(--premium-primary) !important;
    transform: translateY(-2px) scale(1.02);
}

/* Premium Login Button */
.login-btn {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%) !important;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4), 0 0 40px rgba(99, 102, 241, 0.2) !important;
    border-radius: 12px !important;
    padding: 12px 28px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 1.2s ease;
}

.login-btn:hover::before {
    left: 100%;
}

.login-btn:hover {
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5), 0 0 60px rgba(99, 102, 241, 0.3) !important;
}

/* ===== PREMIUM HERO SECTION ===== */
.hero {
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.3) 0%, rgba(30, 41, 59, 0.2) 50%, rgba(15, 23, 42, 0.3) 100%),
        url('../images/hero-bg.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Animated Gradient Overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(34, 197, 94, 0.05) 0%, transparent 60%);
    animation: gradientShift 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes gradientShift {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.85;
        transform: scale(1.04);
    }
}

/* Floating Particles */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 50px 160px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 160px 120px, rgba(255, 255, 255, 0.5), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: particleFloat 45s linear infinite;
    opacity: 0.2;
    z-index: 2;
    pointer-events: none;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
    }

    100% {
        transform: translateY(-200px) translateX(30px);
    }
}

/* Premium Hero Content */
.hero-content {
    z-index: 10 !important;
    animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Background Shapes */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatShape 35s ease-in-out infinite;
}

.floating-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.floating-shape.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    bottom: -50px;
    left: -100px;
    animation-delay: -5s;
}

.floating-shape.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    top: 50%;
    left: 70%;
    animation-delay: -10s;
}

.floating-shape.shape-4 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #00d4ff 0%, #0ea5e9 100%);
    bottom: 20%;
    right: 15%;
    animation-delay: -7s;
    opacity: 0.1;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    25% {
        transform: translateY(-15px) rotate(3deg) scale(1.02);
    }

    50% {
        transform: translateY(-5px) rotate(-3deg) scale(0.98);
    }

    75% {
        transform: translateY(-10px) rotate(2deg) scale(1.01);
    }
}


/* Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.trust-badge i {
    color: #22c55e;
    font-size: 1.2rem;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: badgeShine 8s ease-in-out infinite;
}

@keyframes badgeShine {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 100%;
    }
}

/* Hero Stats Counter */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 4rem;
    padding: 30px 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 0 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scrollWheel 3.5s ease-in-out infinite;
}

@keyframes scrollWheel {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(8px);
        opacity: 0.3;
    }
}

.scroll-indicator span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Button Shine Effect */
.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: btnShineEffect 7s ease-in-out infinite;
}

@keyframes btnShineEffect {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 100%;
    }
}

.hero h1 {
    font-size: clamp(3.5rem, 8vw, 6rem) !important;
    font-weight: 900 !important;
    letter-spacing: -3px !important;
    line-height: 1 !important;
    margin-bottom: 2rem !important;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3) !important;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #ffffff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: titleGlow 8s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    }

    to {
        filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.5));
    }
}

.hero p {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem) !important;
    max-width: 800px !important;
    margin: 0 auto 3rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3) !important;
}

/* Responsive Hero Stats */
@media (max-width: 992px) {
    .hero-stats {
        gap: 20px;
        padding: 25px 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-divider {
        height: 40px;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 25px;
        padding: 30px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    }

    .trust-badge {
        font-size: 0.85rem;
        padding: 10px 20px;
    }

    .scroll-indicator {
        display: none;
    }

    .floating-shape.shape-1,
    .floating-shape.shape-2 {
        opacity: 0.08;
    }

    .floating-shape.shape-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        padding: 20px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

/* Premium CTA Buttons */
.cta-buttons {
    gap: 1.5rem !important;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%) !important;
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4), 0 0 50px rgba(34, 197, 94, 0.2) !important;
    padding: 18px 40px !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    border-radius: 14px !important;
    position: relative;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.cta-buttons .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 1.2s ease;
}

.cta-buttons .btn-primary:hover::before {
    left: 100%;
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-5px) scale(1.03) !important;
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.5), 0 0 70px rgba(34, 197, 94, 0.3) !important;
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    padding: 18px 40px !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-5px) scale(1.03) !important;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2) !important;
}

/* ===== PREMIUM SERVICES SECTION ===== */
.services-section {
    padding: 140px 0 !important;
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 50%, #ffffff 100%) !important;
    position: relative;
}

/* Decorative Background Elements */
.services-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBubble 10s ease-in-out infinite;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBubble 12s ease-in-out infinite reverse;
}

@keyframes floatBubble {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-30px) translateX(20px);
    }
}

/* Premium Services Hero */
.services-hero {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%) !important;
    padding: 80px 0 !important;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: rotateBackground 40s linear infinite;
}

@keyframes rotateBackground {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.services-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
    font-weight: 900 !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.services-hero p {
    font-size: 1.3rem !important;
    opacity: 0.95 !important;
}

/* ===== PREMIUM SERVICE CARDS ===== */
.service-card {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border-radius: 24px !important;
    padding: 50px 35px !important;
    border: 1px solid rgba(99, 102, 241, 0.1) !important;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset !important;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
    overflow: hidden;
}

/* Gradient Border on Hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0) 0%, rgba(99, 102, 241, 0) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: all 0.8s ease;
    pointer-events: none;
}

.service-card:hover::before {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #22c55e 100%);
}

/* Glow Effect */
.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.01) !important;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 60px rgba(99, 102, 241, 0.1),
        0 0 0 1px rgba(99, 102, 241, 0.15) !important;
}

/* Premium Service Icons */
.service-icon {
    width: 100px !important;
    height: 100px !important;
    margin: 0 auto 35px !important;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%) !important;
    border-radius: 26px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem !important;
    color: white !important;
    position: relative;
    box-shadow:
        0 15px 35px rgba(99, 102, 241, 0.3),
        0 0 0 6px rgba(99, 102, 241, 0.1) !important;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.5) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.7s ease;
    z-index: -1;
}

.service-card:hover .service-icon {
    transform: scale(1.06) rotate(5deg) !important;
    box-shadow:
        0 15px 40px rgba(99, 102, 241, 0.35),
        0 0 0 8px rgba(99, 102, 241, 0.12) !important;
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

/* Icon Color Variations - Premium */
.service-icon.aadhaar {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 50%, #0284c7 100%) !important;
    box-shadow: 0 15px 35px rgba(6, 182, 212, 0.3), 0 0 0 6px rgba(6, 182, 212, 0.1) !important;
}

.service-icon.pan {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%) !important;
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.3), 0 0 0 6px rgba(34, 197, 94, 0.1) !important;
}

.service-icon.voter {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%) !important;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3), 0 0 0 6px rgba(59, 130, 246, 0.1) !important;
}

.service-icon.driving {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%) !important;
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.3), 0 0 0 6px rgba(239, 68, 68, 0.1) !important;
}

.service-icon.electricity {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%) !important;
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.3), 0 0 0 6px rgba(245, 158, 11, 0.1) !important;
}

.service-icon.mobile {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%) !important;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.3), 0 0 0 6px rgba(139, 92, 246, 0.1) !important;
}

.service-icon.dth {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 50%, #be185d 100%) !important;
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.3), 0 0 0 6px rgba(236, 72, 153, 0.1) !important;
}

.service-icon.lic {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 50%, #0f766e 100%) !important;
    box-shadow: 0 15px 35px rgba(20, 184, 166, 0.3), 0 0 0 6px rgba(20, 184, 166, 0.1) !important;
}

.service-icon.fastag {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #c2410c 100%) !important;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.3), 0 0 0 6px rgba(249, 115, 22, 0.1) !important;
}

.service-icon.aeps {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 50%, #4338ca 100%) !important;
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.3), 0 0 0 6px rgba(99, 102, 241, 0.1) !important;
}

/* Service Card Text */
.service-card h3 {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    margin-bottom: 15px !important;
    letter-spacing: -0.5px !important;
}

.service-card p {
    font-size: 1rem !important;
    color: #64748b !important;
    line-height: 1.7 !important;
    margin-bottom: 25px !important;
}

/* Premium Service Button */
.service-card .btn-secondary {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    color: white !important;
    padding: 14px 28px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3) !important;
    border: none !important;
    transition: all 0.4s ease !important;
    position: relative;
    overflow: hidden;
}

.service-card .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.service-card .btn-secondary:hover::before {
    left: 100%;
}

.service-card .btn-secondary:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4) !important;
}

/* ===== PREMIUM CATEGORY NAVIGATION ===== */
.category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px !important;
    justify-content: center;
    padding: 30px !important;
    margin-bottom: 50px !important;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.category-btn {
    padding: 14px 28px !important;
    background: #ffffff !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 14px !important;
    color: #475569 !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.category-btn:hover,
.category-btn.active {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.35) !important;
}

.category-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.category-btn:hover i,
.category-btn.active i {
    transform: scale(1.2);
}

/* ===== PREMIUM CATEGORY TITLES ===== */
.category-title {
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    margin-bottom: 40px !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    padding-bottom: 20px !important;
    border-bottom: 3px solid transparent !important;
    background: linear-gradient(90deg, #6366f1, #a855f7, transparent) !important;
    background-size: 100% 3px !important;
    background-position: bottom !important;
    background-repeat: no-repeat !important;
}

.category-title i {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem !important;
}

/* ===== PREMIUM SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 80px !important;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
    font-weight: 900 !important;
    margin-bottom: 1.5rem !important;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.25rem !important;
    color: #64748b !important;
    max-width: 700px !important;
    margin: 0 auto !important;
    line-height: 1.8 !important;
}

/* ===== PREMIUM UPDATES SECTION ===== */
.updates-section {
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%) !important;
    padding: 100px 0 !important;
}

.update-card {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border-radius: 24px !important;
    padding: 35px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid rgba(99, 102, 241, 0.08) !important;
    transition: all 0.4s ease !important;
}

.update-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1) !important;
}

.update-header h3 {
    font-weight: 800 !important;
    color: #1e293b !important;
}

.update-header h3 i {
    color: #6366f1 !important;
}

/* ===== PREMIUM JOBS GRID ===== */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.jobs-column {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.08);
    transition: all 0.4s ease;
}

.jobs-column:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.column-header {
    padding: 20px 25px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.column-header.header-jobs {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.column-header.header-admit {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.column-header.header-results {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.jobs-list {
    list-style: none;
    padding: 15px 0;
    margin: 0;
}

.jobs-list li {
    padding: 0;
    margin: 0;
}

.jobs-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 25px;
    color: #475569;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.jobs-list a:hover {
    background: rgba(99, 102, 241, 0.08);
    color: #6366f1;
    padding-left: 30px;
}

.jobs-list a i {
    color: #6366f1;
    font-size: 0.8rem;
}

.new-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: auto;
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* ===== PREMIUM MARQUEE ===== */
.marquee-container {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.marquee-label {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    padding: 15px 25px;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.marquee-content {
    flex: 1;
    overflow: hidden;
    padding: 15px 20px;
}

.marquee-content p {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
    color: white;
    font-weight: 500;
}

.marquee-content span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 60px;
}

.marquee-content span i {
    color: #fbbf24;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== PREMIUM BLOG SECTION ===== */
.blog-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
    margin-bottom: 50px;
}

.blog-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid #6366f1;
    color: #6366f1;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-primary:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

/* ===== PREMIUM FOOTER ===== */
footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%) !important;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #a855f7, #22c55e, #f59e0b);
}

.footer-content {
    padding-top: 30px !important;
}

.footer-section h3 {
    color: #22c55e !important;
    font-weight: 800 !important;
    font-size: 1.2rem !important;
    margin-bottom: 25px !important;
}

.footer-section ul li {
    margin-bottom: 12px !important;
}

.footer-section a {
    color: #94a3b8 !important;
    font-weight: 500;
    transition: all 0.3s ease !important;
}

.footer-section a:hover {
    color: #22c55e !important;
    padding-left: 8px;
}

.footer-section i {
    color: #6366f1 !important;
    margin-right: 12px;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-top: 25px !important;
    text-align: center;
}

.footer-bottom p {
    color: #64748b !important;
    font-weight: 500;
}

/* ===== PREMIUM LOADING ANIMATION ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #e2e8f0;
    border-top-color: #6366f1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: clamp(2.5rem, 6vw, 4rem) !important;
        letter-spacing: -2px !important;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .category-nav {
        padding: 20px !important;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px !important;
        min-height: auto !important;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem) !important;
        letter-spacing: -1px !important;
    }

    .hero p {
        font-size: 1.1rem !important;
    }

    .cta-buttons {
        flex-direction: column !important;
        width: 100%;
        padding: 0 20px;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .services-section {
        padding: 80px 0 !important;
    }

    .section-header {
        margin-bottom: 50px !important;
    }

    .category-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .category-btn {
        justify-content: center;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .marquee-container {
        flex-direction: column;
        align-items: stretch;
    }

    .marquee-label {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem !important;
    }

    .hero p {
        font-size: 1rem !important;
    }

    .service-card {
        padding: 30px 20px !important;
    }

    .service-icon {
        width: 80px !important;
        height: 80px !important;
        font-size: 2.2rem !important;
    }

    .category-title {
        font-size: 1.4rem !important;
    }

    .section-header h2 {
        font-size: 1.8rem !important;
    }
}

/* ===== ANIMATIONS ===== */
.animate-in {
    opacity: 0;
    animation: animateIn 0.8s ease-out both;
}

@keyframes animateIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

/* Scroll Animation Trigger */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 50%, #f8faff 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBubble 15s ease-in-out infinite;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBubble 18s ease-in-out infinite reverse;
}

.why-choose-us .section-header h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.why-choose-us .section-header h2 i {
    color: #f59e0b;
    font-size: 1.8rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 45px 35px;
    text-align: center;
    border: 1px solid rgba(99, 102, 241, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #a855f7, #22c55e);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(99, 102, 241, 0.15);
}

.feature-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    border-radius: 22px;
    position: relative;
    transition: all 0.5s ease;
}

/* Alternating Icon Colors */
.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.3);
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.3);
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.3);
}

.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.3);
}

.feature-card:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    box-shadow: 0 15px 35px rgba(6, 182, 212, 0.3);
}

.feature-card:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.3);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Features Grid */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 80px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-card {
        padding: 35px 25px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .why-choose-us {
        padding: 60px 0;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }
}