* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #172033;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================
   NAVBAR
========================= */

.navbar {
    background: #07111f;
    padding: 18px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    color: #ffffff;
    text-decoration: none;
    font-size: 21px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0d6efd;
    border-radius: 10px;
    margin-right: 9px;
    color: #ffffff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    color: #d9e2f2;
    text-decoration: none;
}

.nav-links a:hover {
    color: #ffffff;
}

.quote-btn {
    background: #0d6efd;
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 30px;
}

/* =========================
   HERO
========================= */

.hero {
    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(13, 110, 253, 0.25),
            transparent 35%
        ),
        linear-gradient(135deg, #07111f, #102a43);

    color: #ffffff;
    padding: 150px 0 120px;
}

.hero-content {
    max-width: 900px;
}

.hero-label {
    color: #75b7ff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(45px, 6vw, 72px);
    line-height: 1.05;
    margin: 0;
    font-weight: 800;
}

.hero h1 span {
    display: block;
    color: #75b7ff;
}

.hero p {
    max-width: 720px;
    font-size: 20px;
    line-height: 1.7;
    color: #d9e2f2;
    margin-top: 28px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.hero-buttons a {
    text-decoration: none;
    padding: 14px 25px;
    border-radius: 30px;
    font-weight: 700;
}

.hero-btn-primary {
    background: #0d6efd;
    color: #ffffff;
}

.hero-btn-secondary {
    border: 1px solid rgba(255,255,255,.4);
    color: #ffffff;
}

.hero-btn-secondary:hover {
    background: #ffffff;
    color: #07111f;
}

/* =========================
   SECTIONS
========================= */

.section {
    padding: 80px 0;
}

.section-heading {
    max-width: 750px;
    margin-bottom: 50px;
}

.section-label {
    color: #0d6efd;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-heading h2 {
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.15;
    margin: 0;
    font-weight: 800;
}

.section-heading h2 span {
    color: #0d6efd;
}

.section-heading p {
    color: #667085;
    font-size: 17px;
    line-height: 1.7;
    margin-top: 20px;
}

/* =========================
   SERVICES
========================= */

.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service {
    display: block;
    padding: 30px;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    background: #ffffff;
    text-decoration: none;
    color: #172033;
    transition: .25s ease;
}

.service:hover {
    transform: translateY(-7px);
    border-color: #b9d2ff;
    box-shadow: 0 20px 45px rgba(16,24,40,.10);
    color: #172033;
}

.service-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #eaf3ff;
    color: #0d6efd;
    font-size: 22px;
    margin-bottom: 22px;
}

.service h3 {
    margin: 0 0 12px;
    font-size: 21px;
    font-weight: 700;
}

.service p {
    margin: 0;
    color: #667085;
    line-height: 1.7;
}

.service-link {
    margin-top: 22px;
    color: #0d6efd;
    font-weight: 700;
    font-size: 14px;
}

.services-button {
    text-align: center;
    margin-top: 45px;
}

.services-button a {
    display: inline-block;
    padding: 13px 25px;
    border: 1px solid #0d6efd;
    border-radius: 30px;
    color: #0d6efd;
    text-decoration: none;
    font-weight: 700;
}

.services-button a:hover {
    background: #0d6efd;
    color: #ffffff;
}

/* =========================
   WHY WINPRO
========================= */

.why-section {
    background: #f5f7fa;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 50px;
    align-items: center;
}

.why-grid h2 {
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.15;
    margin: 0 0 20px;
    font-weight: 800;
}

.why-grid h2 span {
    color: #0d6efd;
}

.why-grid > div > p {
    color: #667085;
    font-size: 17px;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 12px;
    background: #eaf3ff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature strong {
    display: block;
    font-size: 17px;
}

.feature p {
    margin: 3px 0 0;
    color: #667085;
    font-size: 14px;
}

.why-box {
    background: #07111f;
    color: #ffffff;
    padding: 45px;
    border-radius: 24px;
}

.why-box-icon {
    width: 60px;
    height: 60px;
    background: #0d6efd;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.why-box h3 {
    font-size: 28px;
    margin: 0 0 15px;
}

.why-box p {
    color: #cbd5e1;
}

.why-box a {
    display: inline-block;
    margin-top: 15px;
    color: #75b7ff;
    text-decoration: none;
    font-weight: 700;
}

/* =========================
   CTA
========================= */

.cta-section {
    background: #ffffff;
}

.cta {
    background: linear-gradient(135deg, #0d6efd, #084298);
    color: #ffffff;
    padding: 55px;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-label {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.cta h2 {
    margin: 0;
    font-size: 38px;
}

.cta p {
    color: rgba(255,255,255,.85);
    margin-bottom: 0;
}

.cta > a {
    display: inline-block;
    background: #ffffff;
    color: #0d6efd;
    text-decoration: none;
    padding: 14px 25px;
    border-radius: 30px;
    font-weight: 700;
    white-space: nowrap;
}

/* =========================
   FOOTER
========================= */

footer {
    background: #07111f;
    color: #ffffff;
    padding: 50px 0 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
}

footer p {
    color: #aebbd0;
    max-width: 450px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #d9e2f2;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 35px;
    padding-top: 20px;
    color: #8fa0b8;
    font-size: 14px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .services {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .cta {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 600px) {

    .container {
        width: 92%;
    }

    .hero {
        padding: 100px 0 80px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 18px;
    }

    .section {
        padding: 60px 0;
    }

    .services {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .cta {
        padding: 35px 25px;
    }

    .cta h2 {
        font-size: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-wrap: wrap;
    }

}
/* =========================
   HOME IMAGE SLIDER
========================= */

.home-slider {
    position: relative;
    width: 100%;
    height: 680px;
    overflow: hidden;
    background: #07111f;
}

.slider-track {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(3, 12, 25, 0.90) 0%,
            rgba(3, 12, 25, 0.65) 45%,
            rgba(3, 12, 25, 0.25) 100%
        );
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    max-width: 850px;
    color: #ffffff;
    z-index: 5;
}

.slide-label {
    color: #75b7ff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.slide-content h1 {
    margin: 0;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2px;
}

.slide-content h1 span {
    display: block;
    color: #75b7ff;
}

.slide-content p {
    max-width: 720px;
    margin-top: 25px;
    font-size: 19px;
    line-height: 1.7;
    color: #d9e2f2;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.slide-buttons a {
    display: inline-block;
    text-decoration: none;
    padding: 14px 25px;
    border-radius: 30px;
    font-weight: 700;
    transition: 0.2s;
}

.slide-btn-primary {
    background: #0d6efd;
    color: #ffffff;
}

.slide-btn-primary:hover {
    background: #0b5ed7;
    color: #ffffff;
}

.slide-btn-secondary {
    border: 1px solid rgba(255,255,255,.6);
    color: #ffffff;
}

.slide-btn-secondary:hover {
    background: #ffffff;
    color: #07111f;
}


/* =========================
   SLIDER ARROWS
========================= */

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    width: 48px;
    height: 48px;

    border: 1px solid rgba(255,255,255,.4);
    border-radius: 50%;

    background: rgba(0,0,0,.25);
    color: #ffffff;

    font-size: 22px;
    cursor: pointer;

    transition: 0.2s;
}

.slider-arrow:hover {
    background: #0d6efd;
    border-color: #0d6efd;
}

.slider-prev {
    left: 25px;
}

.slider-next {
    right: 25px;
}


/* =========================
   SLIDER DOTS
========================= */

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;

    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;

    border: 0;
    border-radius: 50%;

    background: rgba(255,255,255,.5);
    cursor: pointer;
    padding: 0;
}

.slider-dot.active {
    background: #ffffff;
    transform: scale(1.25);
}


/* =========================
   MOBILE
========================= */

@media (max-width: 800px) {

    .home-slider {
        height: 620px;
    }

    .slide-content {
        left: 25px;
        right: 25px;
        max-width: none;
    }

    .slide-content h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

}