@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --deep-blue: #0f172a;
    --blue: #1e40af;
}

body {
    font-family: 'Poppins', system-ui, sans-serif;
}

.tail-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1200ms ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 10;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15,23,42,0.75) 0%, rgba(15,23,42,0.45) 100%);
}

/* Card hover effects */
.service-card, .pricing-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover, .pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgb(30 64 175 / 0.25);
}

/* Counter */
.counter {
    font-variant-numeric: tabular-nums;
}

/* Button */
.btn-primary {
    background: linear-gradient(90deg, #1e40af, #3b82f6);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #1e3a8a, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgb(30 64 175 / 0.5);
}

/* Marquee */
.marquee {
    overflow: hidden;
    white-space: nowrap;
}

/* Line clamp */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: hidden;
    overflow: hidden;
}

/* FAQ Accordion */
.faq-btn i {
    transition: transform 0.3s ease;
}

.faq-btn i.rotate-180 {
    transform: rotate(180deg);
}

.faq-content {
    transition: all 0.3s ease;
}

/* Mobile menu */
@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
    }
    
    .slide h1 {
        font-size: 3rem;
    }
}

/* Loading animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .5;
    }
}

.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Form focus effects */
input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #1e40af;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0f172a;
}