@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html,
body {
    width: 100%;
    min-height: 100vh;
    /* background: #fff; */
    color: #020847;
    overflow-x: hidden;

}

/* =========================
   NAVBAR
========================= */

.navbar {
    width: 100%;
    height: 75px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 10%;

    /*background: rgb(2, 53, 140);*/
    background: rgb(11 36 85);
    position: fixed;
    top: 45px;
    /* sticks below top-bar */
    z-index: 1000;
}
.btn-primary{
    background: rgb(1 15 42) !important;
    color:white !important;
}
.btn-secondary{
    background: rgb(1 15 42) !important;
    color:white !important;
}
.btn{
      background: rgb(1 15 42) !important;
    color:white !important;
}
.submit-btn{
      background: rgb(1 15 42) !important;
    color:white !important;
}
/* =========================
   LOGO
========================= */
.logo {
    position: fixed;
    z-index: 1000;
}

.logo span {
    font-family: Arial, sans-serif;
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
    margin-left: 8px;
}

.logo::after {
    transform: rotate(-6deg);
}

.logo:hover {
    transform: 0.3s;
}


/* =========================
   RIGHT SIDE
========================= */

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
    position: fixed;
    right: 100px;
}

/* =========================
   LINKS
========================= */

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 35px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: rgb(203, 202, 202);
    font-size: 1rem;
    font-weight: 500;
    text-transform: capitalize;
    position: relative;
    transition: 0.3s ease;
}

/* Text Color Hover */

.nav-links a:hover {
    color:#00CDFF;
    /*color: #32322f;*/
}

/* Animated Underline */

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: #fff;
    transition: 0.4s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* =========================
   BUTTON
========================= */

.quote-btn {
    text-decoration: none;
    padding: 14px 30px;
    border: 2px solid #f0f0f0;
    color: #ededed;
    background: #1f6380;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
    border-radius: 8px;
}

.quote-btn:hover {
    background: #f9f9f9;
    color: #000;
    transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px) {

    .navbar {
        padding: 0 5%;
    }

    .nav-right {
        gap: 30px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .quote-btn {
        padding: 12px 22px;
    }
}

@media(max-width:600px) {

    .navbar {
        height: 80px;
        padding: 0 20px;
    }

    .logo {
        font-size: 1.7rem;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .quote-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}


/* =========================
   TOP BAR
========================= */

.top-bar {
    background: #e2e7eb;
    border: #000;
    color: #000;
    height: 45px;
    padding: 0 8%;
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    position: fixed;
    top: 0;
    z-index: 1001;

    font-size: 0.9rem;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color:#000;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 25px;
    color:#000;
}

.header-social-icons {
    display: flex;
    gap: 15px;
}

.header-social-icons a {
    color:#000;
    font-size: 1rem;
    transition: 0.3s;
}

.header-social-icons a:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* ====================================
   FOOTER
==================================== */

.footer {
    background-color: #3E7CB1;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.align-center {
    align-items: center;
    text-align: center;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 20px 0;
    color: #ffffff;
}

.footer-logo span {
    color: rgb(11, 36, 85);
}

.company-desc {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
    font-size: 14px;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgb(11, 36, 85);
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background-color: #ffffff;
    color: rgb(11, 36, 85);
    transform: translateY(-3px);
}

.footer-column h3 {
    font-size: 20px;
    margin: 0 0 25px 0;
    color: #ffffff;
    font-weight: bold;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: rgb(11, 36, 85);
}

.contact-heading {
    text-align: center;
}

.footer-contact-wrapper {
    margin: 0 auto;
    display: inline-block;
    text-align: left;
}

.contact-item {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item .icon {
    color: rgb(11, 36, 85);
    font-size: 18px;
    margin-top: 2px;
    text-align: center;
}

.contact-text strong {
    display: block;
    font-size: 15px;
    margin-bottom: 5px;
    color: #ffffff;
}

.contact-text p {
    margin: 0;
    color: #ffffff;
    line-height: 1.5;
    font-size: 13px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
    margin-top: 40px;
}

.footer-bottom p {
    margin: 0;
    color: #ffffff;
    font-size: 13px;
}

.owner-link {
    color: rgb(11, 36, 85);
    text-decoration: none;
    font-weight: bold;
}

.owner-link:hover {
    text-decoration: underline;
    color: #ffffff;
}

/* ====================================
   RESPONSIVE DESIGN
==================================== */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr); 
        gap: 40px;
    }
    
    .footer-contact-wrapper {
        margin: 0;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column {
        margin-bottom: 10px;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
        grid-template-columns: 1fr;
    }
    
    .contact-item .icon {
        margin: 0 auto 5px;
    }
}

/* ====================================
   RESPONSIVE
==================================== */

@media(max-width:992px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer {
        text-align: center;
    }

    .highlight {
        grid-template-columns: auto;
    }

}

@media(max-width:768px) {
    .top-left {
        display: none;
    }

    .top-right {
        width: 100%;
        justify-content: center;
        gap: 15px;
        font-size: 12px;
    }

    .logo {
        position: static;
    }

    .nav-right {
        position: static;
    }

    .burger {
        display: block !important;
        font-size: 28px;
        color: white;
        cursor: pointer;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 75px;
        right: 0;
        width: 250px;
        background: #02358c;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    #menu-toggle:checked~.nav-links {
        display: flex;
    }

    .quote-btn {
        display: none;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
    }

    .hero-content,
    .hero-image {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .partners-column_1 {
        grid-template-columns: repeat(1, 1fr);
    }
}

.footer {
    text-align: center;

}

#menu-toggle {
    display: none;
}

.burger {
    display: none;
}