html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}



* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    color: #0b1b2b;
    background: #f6f8fb
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #0d2538;
    box-shadow: 0 2px 8px rgba(0,0,0,.15)
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0
}

.logo {
    color: #fff;
    font-weight: 800
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 16px;
    align-items: center;
    margin: 0;
    padding: 0
}

    .nav-links a {
        color: #e8f1ff;
        opacity: .9
    }

        .nav-links a:hover {
            opacity: 1
        }

.btn {
    background: #2f7bff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 10px;
    display: inline-block;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(47,123,255,.25)
}

    .btn:hover {
        transform: translateY(-1px)
    }

.btn-small {
    padding: 8px 14px;
    border-radius: 8px
}

.carousel {
    position: relative;
    overflow: hidden;
    background: #031a2b
}

.slides {
    position: relative;
    height: 72vh;
    min-height: 420px
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s ease
}

    .slide.active {
        opacity: 1
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(.7)
    }

.caption {
    position: absolute;
    left: 8%;
    bottom: 12%;
    color: #fff;
    max-width: 560px
}

    .caption h1 {
        font-size: 42px;
        margin: 0 0 8px
    }

    .caption p {
        opacity: .9;
        margin: 0 0 14px
    }

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,.35);
    border: none;
    color: #fff;
    font-size: 26px;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer
}

.carousel .prev {
    left: 12px
}

.carousel .next {
    right: 12px
}

.dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    display: flex;
    gap: 8px;
    justify-content: center
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    opacity: .45
}

    .dot.active {
        opacity: 1
    }

.intro {
    padding: 48px 0;
    text-align: center
}

    .intro h2 {
        font-size: 28px;
        margin: 0 0 8px
    }

    .intro p {
        color: #4a5a6a
    }

.product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 18px;
    padding: 0 0 40px
}

.card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
    overflow: hidden;
    display: flex;
    flex-direction: column
}

    .card img {
        height: 160px;
        object-fit: cover
    }

    .card h3 {
        margin: 14px 14px 6px
    }

    .card p {
        margin: 0 14px 8px;
        color: #556
    }

    .card .link {
        margin: 0 14px 16px;
        color: #2f7bff;
        font-weight: 600
    }

.partners-section {
    background: #eef5ff;
    padding: 40px 0;
    /*height:100px;*/
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
    align-items: center;
    justify-items: center
}
.partners-grid .Partner-img {
    height: 100px;
    width: 200px;
}
.partners-grid.big {
    padding: 40px 0
}

.page-hero {
    background: linear-gradient(135deg,#0d2538,#153d64);
    color: #fff;
    padding: 60px 0;
    text-align: center
}

.two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 24px;
    padding: 40px 0
}

.product-details {
    display: grid;
    gap: 40px;
    padding: 40px 0
}

.product {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
    padding: 16px
}

    .product.reverse {
        grid-template-columns: 1fr 1.2fr
    }

    .product h2 {
        margin: 0 0 8px
    }

    .product p {
        color: #445
    }

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 18px;
    padding: 40px 0
}

.service-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
    padding: 18px
}

.form-wrap {
    padding: 40px 0
}

.form {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
    padding: 24px
}

    .form label {
        display: block;
        font-weight: 600;
        color: #334;
        margin: 10px 0
    }

    .form input, .form textarea, .form select {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccd6e5;
        border-radius: 10px;
        margin-top: 6px;
        font: inherit
    }

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 18px;
    align-items: start;
    padding: 24px 0 0
}

footer {
    background: #0d2538;
    color: #cfe4ff;
    margin-top: 60px
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0
}

    .footer-links a {
        color: #cfe4ff;
        opacity: .9
    }

.copyright {
    border-top: 1px solid #274861;
    margin-top: 18px;
    padding: 14px 0;
    text-align: center;
    color: #98b7d6;
    font-size: 14px
}

@media (max-width: 880px) {
    .nav-toggle {
        display: block
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #0d2538;
        position: absolute;
        left: 0;
        right: 0;
        top: 58px;
        padding: 12px 20px
    }

        .nav-links.open {
            display: flex
        }

    .slides {
        height: 56vh
    }

    .product {
        grid-template-columns: 1fr
    }
    /**/
    /* Reset and Base */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Roboto', sans-serif;
        background-color: #f8f9fa;
        color: #333;
        line-height: 1.6;
    }

    a {
        text-decoration: none;
    }

    /* Container */
    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Hero Section */
    .page-hero {
        background-color: #003366;
        color: #fff;
        padding: 60px 20px;
        text-align: center;
    }

        .page-hero h1 {
            font-size: 3rem;
            margin-bottom: 10px;
        }

        .page-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

    /* Product Section */
    .product-details {
        display: flex;
        flex-direction: column;
        gap: 60px;
        padding: 60px 0;
    }

    .product {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        flex-wrap: wrap;
    }

        .product.reverse {
            flex-direction: row-reverse;
        }

        .product img {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .product h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .product p {
            font-size: 1rem;
            color: #555;
            margin-bottom: 20px;
        }

    .btn {
        display: inline-block;
        padding: 12px 24px;
        background-color: #007bff;
        color: white;
        border-radius: 5px;
        font-weight: 600;
        transition: background-color 0.3s ease;
    }

        .btn:hover {
            background-color: #0056b3;
        }

    /* Responsive */
    @media (max-width: 768px) {
        .product {
            flex-direction: column;
            text-align: center;
        }

            .product.reverse {
                flex-direction: column;
            }

            .product img {
                max-width: 100%;
            }
    }

}
