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

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background-color: #ffffff;
    scroll-behavior: smooth;
}


.glass-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.glass-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    padding: 0.7rem 0;
}

.navbar-brand {
    font-size: 1.7rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.nav-link {
    font-weight: 500;
    color: #2c3e50 !important;
    transition: 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: #0d6efd !important;
}


.hero-section {
    min-height: 100vh;
    background: linear-gradient(120deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 80px 0;
    overflow: hidden;
}

.badge-glow {
    display: inline-block;
    background: rgba(13, 110, 253, 0.1);
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0d6efd;
    backdrop-filter: blur(4px);
}

.gradient-text {
    background: linear-gradient(125deg, #0d6efd, #00b4d8, #0f172a);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.floating-img {
    animation: float 4s ease-in-out infinite;
    border-radius: 40px;
    box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.2);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.stats-row div {
    border-right: 1px solid #dee2e6;
}

.stats-row div:last-child {
    border-right: none;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 70px;
    fill: #ffffff;
}


.section-padding {
    padding: 100px 0;
}

.section-badge {
    display: inline-block;
    background: #eef2ff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #0d6efd;
    margin-bottom: 1rem;
}


.product-card {
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border-radius: 28px;
    overflow: hidden;
    background: white;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.2) !important;
}

.product-card img {
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover img {
    transform: scale(1.02);
}


.services-section {
    background: linear-gradient(135deg, #0b1120 0%, #111827 100%);
    color: white;
}

.service-card {
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 3rem;
    color: #0d6efd;
    background: #eef2ff;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 50%;
    width: 45px;
    height: 45px;
}

.testimonial-card {
    transition: 0.2s;
    border: 1px solid rgba(0, 0, 0, 0.03);
}


.fade-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.6s ease, transform 0.5s ease;
}

.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}


[data-delay="100"].visible {
    transition-delay: 0.1s;
}

[data-delay="200"].visible {
    transition-delay: 0.2s;
}

[data-delay="300"].visible {
    transition-delay: 0.3s;
}


.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}


.footer a:hover {
    color: white !important;
    text-decoration: underline !important;
}


@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .stats-row div {
        border-right: none;
    }

    .display-3 {
        font-size: 2.2rem;
    }

    .display-5 {
        font-size: 1.8rem;
    }

    .product-card img {
        height: 200px;
    }
}


.scroll-top-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 48px;
    height: 48px;
    background: #0d6efd;
    color: white;
    border: none;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: #0b5ed7;
    transform: translateY(-3px);
}