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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    /* font-family: "Roboto", serif; */
    font-optical-sizing: auto;
    font-family: "Asap", serif;
    /* font-family: "Manrope", serif; */
}

.hero {
    background-color: #f1f1f1;
    padding-top: 40px;
    /* height: 100vh; */
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

nav {
    position: sticky;
}

nav a {
    padding-inline: 20px;
    /* padding-block: 12px; */
    font-size: 16px;
}

.about,
.products,
.testimonials,
.contact {
    padding: 2rem;
}

.contact {
    background: #f8f9fa;
}

.footer {
    background: #343a40;
    color: white;
    text-align: center;
}

.stats {

    /* background: linear-gradient(to bottom, #04a0c1, white) */
    background: linear-gradient(to bottom, #14b8db8f, white)
}

.stats img {
    max-width: 50px;
    /* Adjust icon size */
}

.stats p {
    margin-top: 10px;
    font-size: 20px;
    color: #333;
    font-weight: 600;
}

.contact p {
    font-size: 18px;
}


@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .header-section {
        flex-direction: column;
        gap: 20;
    }

    .header-section nav {
        margin-top: 12px;
    }
  
  .header-section {
    flex-direction: column;
}

    .stats p {
        font-size: 16px;
    }

    .contact p {
        font-size: 16px;
    }

    .hero {
        padding-top: 20px;
        /* height: 100vh; */
    }

}
.head {}

.text-primary {
    color: #004085 !important;
}

.text-gold {
    color: #FFC107 !important;
}

.btn-primary {
    background-color: #004085;
    border: none;
}

.btn-primary:hover {
    background-color: #003366;
}

.card {
    /* border: none */
}

i {
    color: #2b4bb6;
}




/*  */

.logo h2 {
    /* color: navy; */
    font-size: 45px;
    line-height: 1;
    /* Adjust line height for vertical spacing */
    display: inline-block;
    /* allows for more control over width */
}

.logo h2 span {
    font-size: 14px;
    color: #0062cc;
    display: block;
    /* make it a block-level element to force new line */
    width: fit-content;
    /* make the width fit to content*/
    margin-left: auto;
    margin-right: 0;
    text-align: left;
}