/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Mobile viewport fix */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Announcement Bar */
.top-announcement-bar {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 8px 0;
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid rgba(251, 191, 36, 0.2);
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
}

.announcement-text {
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.3px;
}

.announcement-text strong {
    color: #fbbf24;
    font-weight: 700;
}

.announcement-close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.announcement-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.divider-pattern {
    display: flex;
    align-items: center;
    gap: 15px;
    animation: patternSlide 15s linear infinite;
}

.pattern-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
    animation: dotPulse 2s ease-in-out infinite;
}

.pattern-dot:nth-child(1) {
    animation-delay: 0s;
}

.pattern-dot:nth-child(3) {
    animation-delay: 0.5s;
}

.pattern-dot:nth-child(5) {
    animation-delay: 1s;
}

.pattern-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, #fbbf24, transparent);
    position: relative;
}

.pattern-line::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, transparent, rgba(251, 191, 36, 0.3), transparent);
    filter: blur(2px);
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
    }
    50% {
        transform: scale(1.3);
        box-shadow: 0 0 15px rgba(251, 191, 36, 0.9);
    }
}

@keyframes patternSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100px);
    }
}

/* Announcement Banner - Prominent Design */
.announcement-banner {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #fbbf24 100%);
    color: #0f172a;
    z-index: 999;
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.6);
    border-bottom: 3px solid #d97706;
    transition: all 0.4s ease;
    margin-top: 0;
    padding-top: 20px;
}

.announcement-banner.hidden {
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
}

.banner-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 10px 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.banner-icon-pulse {
    font-size: 2rem;
    color: #0f172a;
    animation: iconPulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 transparent);
    }
    50% {
        transform: scale(1.2);
        filter: drop-shadow(0 0 10px rgba(15, 23, 42, 0.5));
    }
}

.banner-message {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    flex-wrap: wrap;
    justify-content: center;
}

.banner-highlight {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.3);
    padding: 4px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-divider {
    color: #0f172a;
    font-size: 1.5rem;
    font-weight: 300;
}

.banner-main-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
}

.banner-cta {
    background: #0f172a;
    color: #fbbf24;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.3);
}

.banner-cta:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.4);
}

.banner-cta i {
    transition: transform 0.3s ease;
}

.banner-cta:hover i {
    transform: translateX(5px);
}

.banner-close-btn {
    background: rgba(15, 23, 42, 0.15);
    border: none;
    color: #0f172a;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.banner-close-btn:hover {
    background: rgba(15, 23, 42, 0.25);
    transform: rotate(90deg) scale(1.1);
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #334155 0%, #475569 50%, #334155 100%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(251, 191, 36, 0.3);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo .logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.nav-logo .logo:hover {
    transform: scale(1.05);
}

.logo-svg {
    transition: all 0.3s ease;
    cursor: pointer;
    filter: drop-shadow(0 2px 8px rgba(251, 191, 36, 0.3));
}

.logo-svg:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(251, 191, 36, 0.5));
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fbbf24;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 80%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section with Video Background */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    overflow: hidden;
}

.banner-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-inline-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.hero-inline-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.82) contrast(1.08) saturate(1.08);
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1s ease, transform 6s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.85) contrast(1.05) saturate(1.1);
}

@media (max-width: 768px) {
    .slide {
        background-position: center top;
    }

    .video-slide video {
        object-position: center top;
    }
}

/* Desktop hero video - ensure full coverage */
.hero-youtube {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* YouTube Video Background */
.video-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-youtube {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0.4;
    filter: brightness(0.8) contrast(1.1) saturate(1.2);
}

@media (min-aspect-ratio: 16/9) {
    .hero-youtube {
        height: 56.25vw;
    }
}

@media (max-aspect-ratio: 16/9) {
    .hero-youtube {
        width: 177.78vh;
    }
}

/* Mobile video optimization */
@media (max-width: 768px) {
    .hero-youtube {
        width: 100vw;
        height: 100vh;
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
        opacity: 0.5;
        top: 0;
        left: 0;
        transform: none;
    }
    
    .video-background {
        display: block;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    .hero-video-bg {
        overflow: hidden;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    /* Ensure video covers entire mobile viewport */
    .hero {
        position: relative;
        overflow: hidden;
    }
    
    .hero-content {
        padding-top: 80px;
    }

    /* Additional mobile video positioning */
    .hero-youtube {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        min-width: 100% !important;
        min-height: 100% !important;
        object-fit: cover;
        transform: none !important;
    }
}

/* Animated gradient background as fallback */
.animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.animated-bg.active {
    opacity: 1;
}

.gradient-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.7;
    animation: float-circle 20s ease-in-out infinite;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.8) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation-duration: 25s;
}

.circle-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(252, 211, 77, 0.7) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-duration: 30s;
    animation-delay: -5s;
}

.circle-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.7) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 20s;
    animation-delay: -10s;
}

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

.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    cursor: pointer;
    touch-action: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.75) 0%,
        rgba(30, 41, 59, 0.7) 50%,
        rgba(15, 23, 42, 0.8) 100%
    );
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 900px;
    padding: 40px 20px 0;
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(252, 211, 77, 0.5);
    box-shadow: 0 4px 15px rgba(252, 211, 77, 0.3);
}

.hero-badge i {
color: #fcd34d;
filter: drop-shadow(0 0 8px rgba(252, 211, 77, 0.8));
}

/* CSS Typewriter effect as fallback */
.typewriter {
overflow: hidden;
border-right: 2px solid #3b82f6;
white-space: nowrap;
display: inline-block;
animation: typing 2s steps(80, end) forwards, blink-caret 0.75s step-end 2.75s, hide-cursor 0s 2.75s forwards;
width: 0;
opacity: 1;
animation-fill-mode: forwards;
}

.typewriter-tagline {
overflow: hidden;
border-right: 2px solid #3b82f6;
white-space: nowrap;
display: inline-block;
animation: typing-tagline 2s steps(80, end) 3s forwards, blink-caret 0.75s step-end 5.75s, hide-cursor-tagline 0s 5.75s forwards;
width: 0;
opacity: 1;
animation-fill-mode: forwards;
}

.responsive-break {
    display: none;
}

@keyframes typing {
0% {
width: 0;
}
100% {
width: 100%;
}
}

@keyframes typing-tagline {
0% {
width: 0;
}
100% {
width: 100%;
}
}

@keyframes blink-caret {
from, to {
border-color: transparent;
}
50% {
border-color: #3b82f6;
}
}

@keyframes hide-cursor {
0% {
border-right-color: #3b82f6;
}
}

@keyframes hide-cursor-tagline {
    0% {
        border-right-color: #3b82f6;
    }
    100% {
        border-right-color: transparent;
    }
}

@keyframes no-cursor {
    0% {
        border-right: 2px solid #3b82f6;
    }
    100% {
        border-right: none;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    color: #fbbf24;
    margin-bottom: 3rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
}

.hero-cta-single {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.btn-hero-main {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #0f172a;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.4);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.btn-hero-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(251, 191, 36, 0.6);
    border-color: #fbbf24;
}

.btn-hero-main i {
    transition: transform 0.3s ease;
}

.btn-hero-main:hover i {
    transform: translateX(8px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #60a5fa;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.8), 2px 2px 4px rgba(0, 0, 0, 0.5);
    filter: brightness(1.2);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: white;
    color: #1e3a8a;
}

.btn-primary:hover {
    background: transparent;
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #1e3a8a;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Floating Elements */
.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 8%;
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
    z-index: 1;
}

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

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}


.testimonial-card {
    position: relative;
    padding: 2.6rem;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    color: #0f172a;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(148, 163, 184, 0.25);
    transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
    transform-style: preserve-3d;
}

.testimonial-card::before,
.testimonial-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.testimonial-card::before {
    background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.25), transparent 65%),
                radial-gradient(circle at bottom right, rgba(251, 191, 36, 0.2), transparent 55%);
}

.testimonial-card::after {
    background: linear-gradient(130deg, rgba(59, 130, 246, 0.16), rgba(251, 191, 36, 0.28));
    mix-blend-mode: multiply;
}

.testimonial-card:hover,
.testimonial-card:focus-within {
    transform: translateY(-12px) scale(1.015) rotateX(2deg);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.28);
    border-color: rgba(59, 130, 246, 0.4);
}

.testimonial-card:hover::before,
.testimonial-card:focus-within::before,
.testimonial-card:hover::after,
.testimonial-card:focus-within::after {
    opacity: 1;
}

.testimonial-card::selection {
    background: rgba(59, 130, 246, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(251, 191, 36, 0.8);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.4);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: 0.02em;
}

.testimonial-position {
    color: rgba(55, 65, 81, 0.75);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.testimonial-rating {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #facc15;
    text-shadow: 0 6px 16px rgba(250, 204, 21, 0.45);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(15, 23, 42, 0.85);
    letter-spacing: 0.01em;
    font-style: italic;
    margin: 0;
}

/* News Ticker Section */
.news-ticker-section {
    background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 50%, #f59e0b 100%);
    padding: 0;
    overflow: hidden;
    border-top: 3px solid #0f172a;
    border-bottom: 3px solid #0f172a;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4), 0 -4px 20px rgba(251, 191, 36, 0.4);
}

.news-ticker {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(0,0,0,0.1) 0%, transparent 10%, transparent 90%, rgba(0,0,0,0.1) 100%);
    position: relative;
}


.ticker-wrapper {
    display: flex;
    animation: scroll 3s linear infinite;
}

.ticker-content {
    display: flex;
    flex-shrink: 0;
    gap: 3rem;
    padding: 15px 0;
    align-items: center;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
    font-size: 1rem;
    color: #0f172a;
    font-weight: 500;
    padding: 0 2rem;
    border-right: 2px solid rgba(15, 23, 42, 0.2);
}

.ticker-item:last-child {
    border-right: none;
}

.ticker-item i {
    color: #0f172a;
    font-size: 1.1rem;
}

.ticker-item strong {
    color: #7c2d12;
    font-weight: 700;
}

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

.news-ticker-section:hover .ticker-wrapper {
    animation-play-state: paused;
}

/* Financial Education Video Section */
.video-section {
    background: white;
    padding: 100px 0;
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.video-text h2 {
    margin-bottom: 1rem;
}

.video-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.video-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.video-feature-item:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.video-feature-item i {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-top: 0.25rem;
}

.video-feature-item h4 {
    margin-bottom: 0.25rem;
    color: #1e3a8a;
    font-weight: 600;
}

.video-feature-item p {
    font-size: 0.9rem;
    color: #64748b;
}

.video-wrapper {
    position: relative;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 3px solid #e2e8f0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.video-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    font-weight: 600;
    color: #0f172a;
}

.video-badge i {
    font-size: 1.2rem;
}

/* Enhanced Services Section */
.services {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    padding: 100px 0;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(30,58,138,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(59,130,246,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(30,58,138,0.02)"/><circle cx="10" cy="60" r="0.5" fill="rgba(59,130,246,0.02)"/><circle cx="90" cy="30" r="0.5" fill="rgba(30,58,138,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

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


.services-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.services-main {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
}

.service-hero {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    position: relative;
    border: 3px solid transparent;
    background: linear-gradient(135deg, #fff, #f8fafc) padding-box,
                linear-gradient(135deg, #3b82f6, #1e3a8a) border-box;
}

.service-hero-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
}

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

.service-hero h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1e3a8a;
    font-weight: 700;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #374151;
}

.feature-item i {
    color: #10b981;
    font-size: 1.2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
}

.service-card {
    position: relative;
    isolation: isolate;
    border-radius: 26px;
    overflow: hidden;
    min-height: 240px;
    height: 100%;
    box-shadow: 0 28px 55px rgba(15, 23, 42, 0.2);
    transition: transform 0.45s ease, box-shadow 0.45s ease, filter 0.45s ease;
    background: rgba(15, 23, 42, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--service-bg, linear-gradient(135deg, #1e3a8a, #3b82f6));
    background-size: cover;
    background-position: center;
    filter: saturate(1.12) contrast(1.05);
    transform: scale(1.04);
    transition: transform 0.6s ease;
    z-index: -2;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 10%, rgba(15, 23, 42, 0.6) 58%, rgba(15, 23, 42, 0.88) 100%);
    opacity: 0.92;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-14px) scale(1.015);
    box-shadow: 0 35px 60px rgba(15, 23, 42, 0.28);
}

.service-card:hover::before {
    transform: scale(1.1);
}

.service-card:hover::after,
.service-card:focus-within::after {
    opacity: 1;
}

.service-card-content {
    position: relative;
    z-index: 1;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    justify-content: flex-end;
    color: rgba(248, 250, 252, 0.95);
    text-shadow: 0 14px 28px rgba(15, 23, 42, 0.65);
}

.service-card--hero {
    min-height: 360px;
    box-shadow: 0 40px 65px rgba(15, 23, 42, 0.32);
    width: 100%;
}

.service-card--hero::after {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 10%, rgba(15, 23, 42, 0.68) 55%, rgba(15, 23, 42, 0.92) 100%);
}

.service-card--hero .service-card-content {
    padding: 2.75rem;
    gap: 1.3rem;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(248, 250, 252, 0.45);
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(6px);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: #f43f5e;
}

.service-card h3,
.service-card h4 {
    margin: 0;
    color: #f43f5e;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 800;
}

.service-card h3 {
    font-size: 2rem;
}

.service-card h4 {
    font-size: 1.4rem;
}

.service-card p {
    margin: 0;
    color: rgba(248, 250, 252, 0.92);
    line-height: 1.75;
}

.service-features--overlay {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.service-features--overlay .feature-item {
    background: rgba(15, 23, 42, 0.55);
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    font-size: 0.85rem;
    color: rgba(248, 250, 252, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.service-features--overlay .feature-item i {
    color: #fbbf24;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(254, 242, 242, 0.9);
    transition: gap 0.35s ease, color 0.35s ease;
}

.service-link i {
    transition: transform 0.35s ease;
}

.service-card:hover .service-link,
.service-card:focus-within .service-link {
    gap: 0.7rem;
    color: #ffffff;
}

.service-card:hover .service-link i,
.service-card:focus-within .service-link i {
    transform: translateX(6px);
}

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

.service-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
    font-weight: 600;
}

.service-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #1e3a8a;
    gap: 0.75rem;
}

/* Enhanced Calculator Cards */
.calculator-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.calculator-card:hover {
    transform: translateY(-8px);
    border-color: #3b82f6;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

.calculator-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.calculator-card:hover .calculator-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
}

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

/* Pulse Animation for CTA Buttons */
.btn-primary {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

/* Button hover effects for mobile */
.btn-hover-effect {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-hover-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-hover-effect:active::after {
    width: 300px;
    height: 300px;
}

@media (hover: hover) {
    .btn-hover-effect:hover {
        transform: scale(1.05);
    }
}

/* Mobile touch feedback */
@media (max-width: 768px) {
    .btn-hover-effect:active {
        transform: scale(0.95);
    }
}

/* Enhanced mobile responsiveness fixes */
@media (max-width: 768px) {
    /* Ensure no horizontal overflow */
    html, body {
        width: 100%;
        overflow-x: hidden;
    }

    /* Improve touch targets */
    .nav-link, .btn, .calculator-btn, .banner-cta, .service-link {
        min-height: 44px;
        padding: 12px 16px;
    }

    /* Better image responsiveness */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Fix form elements */
    input, select, textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Improve news ticker on mobile */
    .ticker-item {
        padding: 0 8px;
        font-size: 0.8rem;
    }

    /* Ensure hero content doesn't overflow */
    .hero-content {
        padding: 0 10px;
    }

    /* Better spacing for sections */
    .services-grid, .testimonials-grid, .calculators-grid {
        gap: 1rem;
    }

    /* Optimize video for all mobile orientations */
    .hero-youtube {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        object-fit: cover;
        z-index: 1;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .hero-title-artistic {
        font-size: 1.6rem;
    }

    .btn-hero-main {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    /* Compact banner */
    .banner-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
    }

    /* Ensure forms stack properly */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Smaller icons and text */
    .service-icon, .calculator-icon, .contact-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon i, .calculator-icon i, .contact-icon i {
        font-size: 1.2rem;
    }
}

/* Prevent zoom on input focus for iOS */
@media screen and (max-width: 768px) {
    input[type="text"], input[type="email"], input[type="tel"], textarea, select {
        font-size: 16px;
    }
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e3a8a;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-weight: 500;
}

.about-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    transform-style: preserve-3d;
    isolation: isolate;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);
}

.about-image::before,
.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    transition: opacity 0.6s ease, transform 0.6s ease;
    z-index: 1;
}

.about-image::before {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.35) 0%, rgba(251, 191, 36, 0.25) 60%, rgba(15, 118, 110, 0.25) 100%);
    mix-blend-mode: screen;
    opacity: 0.7;
    filter: blur(0px);
}

.about-image::after {
    background: radial-gradient(circle at 20% 20%, rgba(251, 191, 36, 0.45), transparent 55%),
                radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.4), transparent 55%);
    opacity: 0;
    transform: scale(1.2);
}

.about-image img {
    width: 100%;
    display: block;
    border-radius: inherit;
    transform: scale(1.02) translateZ(0);
    transition: transform 0.8s ease, filter 0.8s ease;
    filter: saturate(1.05) contrast(1.05) brightness(0.98);
}

.about-image .about-image-glow {
    position: absolute;
    inset: 10%;
    border-radius: inherit;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.about-image:hover::before,
.about-image:focus-within::before {
    opacity: 1;
    filter: blur(6px);
}

.about-image:hover::after,
.about-image:focus-within::after {
    opacity: 1;
    transform: scale(1);
}

.about-image:hover img,
.about-image:focus-within img {
    transform: scale(1.08) translateZ(0);
    filter: saturate(1.1) contrast(1.08) brightness(1.02);
}

.about-image:hover .about-image-glow,
.about-image:focus-within .about-image-glow {
    opacity: 0.8;
}

@media (prefers-reduced-motion: reduce) {
    .about-image,
    .about-image::before,
    .about-image::after,
    .about-image img {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

/* Calculators Section */
.calculators {
    background: #f8fafc;
}

.calculators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.calculator-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.calculator-card:hover {
    transform: translateY(-5px);
}

.calculator-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

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

.calculator-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.calculator-btn:hover {
    background: #1e3a8a;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.25);
    border: 1px solid rgba(148, 163, 184, 0.2);
    transform: translateZ(0);
}

.contact-map iframe {
    width: 100%;
    height: 260px;
    border: 0;
    display: block;
    filter: grayscale(10%) saturate(120%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.contact-map:hover iframe,
.contact-map:focus-within iframe {
    filter: grayscale(0%) saturate(135%);
    transform: scale(1.02);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(30, 64, 175, 0.08) 100%);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #1e3a8a;
}

.contact-item p {
    margin: 0;
    color: #475569;
}

.contact-form {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1e3a8a);
}

.contact-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.form-title {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-align: center;
    position: relative;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 2px;
}

.form-subtitle {
    color: #64748b;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    text-align: center;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #3b82f6;
    border-radius: 50%;
    display: inline-block;
}

.required {
    color: #ef4444;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1), 0 4px 12px rgba(59, 130, 246, 0.15);
    background: #fefefe;
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
    font-style: italic;
}

.checkbox-group {
    margin-bottom: 2.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-weight: 500;
    color: #475569;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #3b82f6;
}

.checkbox-label a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.checkbox-label a:hover {
    color: #1e3a8a;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 18px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-submit:hover::before {
    width: 400px;
    height: 400px;
}

/* Footer */
.footer {
    background: #1e3a8a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #3b82f6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #3b82f6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #cbd5e1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #334155, #475569);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        color: white;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-video-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Mobile hero title */
    .hero-title {
        font-size: 2.5rem;
        padding: 0 10px;
        line-height: 1.2;
    }

    .hero-tagline {
        font-size: 1rem;
        padding: 0 15px;
        letter-spacing: 2px;
        margin-bottom: 2rem;
    }

    .btn-hero-main {
        font-size: 1rem;
        padding: 14px 35px;
    }

    .testimonials {
        padding: 15px 0;
    }

    .section-title {
        margin-bottom: 0.5rem;
        font-size: 1.6rem;
        margin-top: 0;
    }

    .section-subtitle {
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

    .container {
        padding: 0 15px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 10px;
        margin-bottom: 1rem;
    }

    .hero-overlay {
        background: linear-gradient(
            135deg,
            rgba(15, 23, 42, 0.85) 0%,
            rgba(30, 41, 59, 0.8) 50%,
            rgba(15, 23, 42, 0.9) 100%
        );
    }

    .hero-stats {
        gap: 1rem;
        flex-direction: row;
        justify-content: space-around;
        padding: 0 10px;
    }

    .hero-stat {
        flex: 1;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 0 15px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        font-size: 0.9rem;
        padding: 12px 24px;
    }

    .hero {
        min-height: 100vh;
        padding: 20px 0 15px 0;
    }

    .hero-content {
        padding: 0 20px;
        text-align: center;
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
        text-align: center;
    }

    .responsive-break {
        display: block;
        height: 0;
    }

    .hero-tagline {
        margin-bottom: 2rem;
        padding: 0 20px;
        font-size: 1.2rem;
        text-align: center;
        letter-spacing: 2px;
    }

    .hero-cta-single {
        margin-top: 1rem;
    }

    .gradient-circle {
        filter: blur(50px);
    }

    .circle-1 {
        width: 250px;
        height: 250px;
    }

    .circle-2 {
        width: 300px;
        height: 300px;
    }

    .circle-3 {
        width: 200px;
        height: 200px;
    }

    .particles-canvas {
        opacity: 0.6;
    }

    /* Mobile navbar fixes */
    .nav-menu.active {
        background: linear-gradient(135deg, #334155 0%, #475569 100%);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    /* Mobile ticker */
    .news-ticker-section {
        padding: 0;
        margin: 0;
    }

    .news-ticker {
        font-size: 0.85rem;
        padding: 8px 0;
    }
    
    .ticker-item {
        padding: 0 12px;
    }

    /* Mobile banner - tight spacing */
    .announcement-banner {
        padding-top: 60px;
    }

    .banner-wrapper {
        padding: 6px 10px;
        gap: 0.4rem;
    }

    .banner-message {
        font-size: 0.8rem;
    }

    /* Mobile testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-header {
        margin-bottom: 0.75rem;
    }

    .testimonial-rating {
        margin-bottom: 0.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }

    .banner-icon-pulse {
        font-size: 1.5rem;
    }
    .banner-message {
        flex-direction: column;
        gap: 0.5rem;
    }

    .banner-highlight {
        font-size: 0.9rem;
    }

    .banner-divider {
        display: none;
    }

    .banner-main-text {
        font-size: 0.9rem;
    }

    .banner-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .banner-close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
    }

    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Mobile contact form */
    /* Mobile contact section */
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .contact-map iframe {
        height: 220px;
    }

    .contact-info {
        order: -1;
    }

    .contact-form {
        order: 0;
        padding: 1.25rem 1rem;
    }

    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .btn-submit {
        font-size: 1rem;
        padding: 14px 24px;
    }

    /* Mobile service cards */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
        width: 100%;
        padding: 0;
        margin: 0 auto;
    }

    .service-card {
        min-height: 220px;
    }

    .service-card--hero {
        min-height: 320px;
    }

    .service-card-content {
        padding: 1.75rem;
        gap: 0.85rem;
    }

    .service-card h3 {
        font-size: 1.6rem;
    }

    .service-card h4 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    .services {
        overflow-x: hidden;
    }

    .services .container {
        padding: 0 15px;
        overflow-x: hidden;
    }

    /* Mobile about section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: 0;
        max-width: 420px;
        margin: 1.5rem auto 0;
    }

    /* Mobile video section */
    .video-content {
        grid-template-columns: 1fr;
    }

    .video-container {
        margin-bottom: 2rem;
    }

    /* Section spacing - ultra compact mobile */
    section {
        padding: 20px 0;
    }

    .about {
        padding: 15px 0;
    }

    .services {
        padding: 15px 0;
    }

    .video-section {
        padding: 15px 0;
    }

    .calculators {
        padding: 15px 0;
    }

    .contact {
        padding: 15px 0;
    }

    .footer {
        padding: 20px 0 10px;
    }

    .about-content,
    .services-showcase,
    .video-content {
        gap: 1.5rem;
    }

    .services-showcase {
        grid-template-columns: 1fr !important;
        padding: 0;
    }

    .hero-stats {
        margin-bottom: 1.5rem;
    }

    .about-text,
    .video-text {
        padding: 0 15px;
    }

    .about-text h2,
    .video-text h2 {
        margin-bottom: 1rem;
    }

    .about-text p {
        margin-bottom: 1rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .section-title {
        font-size: 1.8rem;
        padding: 0 15px;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
    }

    /* Mobile calculator cards */
    .calculator-card {
        padding: 1.25rem;
    }

    .calculators-grid {
        gap: 1rem;
    }

    .calculator-icon {
        margin-bottom: 1rem;
    }

    /* Ensure touch targets are large enough */
    .btn, .nav-link, .calculator-card button {
        min-height: 44px;
    }

    /* Mobile scroll indicator */
    .scroll-indicator {
        bottom: 20px;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    /* Enhanced mobile video optimization for small screens */
    .hero-youtube {
        width: 100vw !important;
        height: 100vh !important;
        min-width: 100% !important;
        min-height: 100% !important;
        object-fit: cover;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
    }
    
    .video-background {
        width: 100% !important;
        height: 100% !important;
        overflow: hidden;
    }
    
    .hero-video-bg {
        overflow: hidden;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    section {
        padding: 15px 0;
    }

    .hero {
        padding: 15px 0 10px 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-tagline {
        font-size: 0.85rem;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }

    .btn-hero-main {
        font-size: 0.9rem;
        padding: 12px 28px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.4rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .testimonial-card {
        padding: 0.9rem;
    }

    .testimonials-grid {
        gap: 0.6rem;
    }

    .service-card {
        padding: 0.9rem;
    }

    .services-grid {
        gap: 0.75rem;
    }

    .banner-wrapper {
        padding: 5px 8px;
    }

    .form-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .form-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .form-group {
        margin-bottom: 0.75rem;
    }

    .btn-submit {
        font-size: 0.95rem;
        padding: 12px 20px;
    }

    .footer {
        padding: 15px 0 8px;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .hero-buttons .btn {
        font-size: 0.85rem;
        padding: 10px 20px;
    }

/* Extra small screens */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card, .testimonial-card, .calculator-card {
        padding: 1rem;
    }

    .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Desktop-specific styles */
@media (min-width: 769px) {
    .hero {
        min-height: 100vh;
    }

    .services-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .video-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }

    .calculators-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
}
