body {
    background: linear-gradient(to right, rgba(15, 93, 157, 1), rgba(12, 74, 125, 1), rgba(49, 163, 219, 1));
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins";
}

:root {
    --heading1: 45px;
    --heading2: 24px;
    --para-heading: 18px
}

.header {
    background-color: white;
    padding: 10px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.40);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1250px;
    margin: auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.span-align {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.company-name {
    font-size: 18px;
    color: #004080;
    font-weight: bold;
}

.tagline {
    font-size: 12px;
    color: gray;
    margin-left: 5px;
}

.nav {
    display: flex;
    gap: 50px;
}

.nav a {
    text-decoration: none;
    color: #0c5d9d;
    font-weight: 500;
    padding: 6px 0px;
    position: relative;
    display: inline-block;
}

.nav a.active {
    color: #0c5d9d;
    font-weight: bold;
    position: relative;
}

.nav a.active::before,
.nav a.active::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 12px;
    height: 65%;
    border: 2px solid #0c5d9d;
    border-top: none;
    border-bottom: none;
    border-radius: 80%;
    margin-top: 7px;
}

.nav a.active::before {
    left: -14px;
    border-right: none;
}

.nav a.active::after {
    right: -14px;
    border-left: none;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 2px solid #0c5d9d;
    border-radius: 50%;
    color: #0c5d9d;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #0c5d9d;
    color: #ffffff;
}


.contact-btn {
    background-color: white;
    border: 2px solid #004080;
    color: #004080;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
}

.contact-btn:hover {
    background-color: #004080;
    color: white;
}

.mobile-contact-btn {
    display: none !important;
}


.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #0c5d9d;
    margin-left: auto;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Mobile Menu Styles */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    background: #0c5d9d;
    border-radius: 2px;
    transition: 0.4s;
}

/* Toggle Animation to X */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* mobiel response  */
@media (max-width: 768px) {
    .container {
        flex-direction: row;
        /* Changed from column to row */
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .logo {
        flex: 1 1 auto;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        gap: 10px;
    }

    .nav-wrapper.show-nav {
        max-height: 500px;
        padding-top: 10px;
    }

    .nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 12px;
    }

    .nav a {
        text-align: center;
        width: 100%;
        padding: 10px 0;
    }

    .social-icons {
        margin-top: 10px;
        justify-content: center;
    }

    .contact-btn {
        align-self: center;
        margin-top: 10px;
    }

    .mobile-contact-btn {
        display: block !important;
    }
}

/* Larger Screens */
@media (min-width: 1920px) {
    .container {
        max-width: 92%;
    }

    .logo img {
        height: 50px;
    }

    .company-name {
        font-size: 22px;
    }

    .tagline {
        font-size: 14px;
    }

    .nav a {
        font-size: 18px;
    }

    .contact-btn {
        font-size: 18px;
        padding: 10px 20px;
    }
}




/* footer */
.footer-wrapper {
    background: linear-gradient(to bottom, #0b63a5 50%, #ffffff 50%);
    padding: 10px;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #c6e7f6;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    position: relative;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-map {
    flex: 1;
    position: relative;
    min-width: 320px;
    max-width: 600px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer-address-box {
    position: absolute;
    top: 10px;
    left: 10px;
    background: white;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 13px;
    width: 250px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    line-height: 1.4;
}

.footer-form {
    display: flex;
    align-items: center;
    justify-content: center;
    /* flex: 1; */
    min-width: 500px;
}

.footer-form input {
    padding: 12px 16px;
    border: none;
    border-radius: 20px 0 0 20px;
    width: 100%;
    font-size: 16px;
    outline: none;
}

.footer-form button {
    padding: 12px 20px;
    background-color: #0b63a5;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
}

hr {
    border: none;
    border-top: 1px solid #0b63a5;
    margin: 10px 0 20px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-contact,
.footer-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--para-heading);
    color: #003366;
}

.footer-contact i,
.footer-phone i {
    font-size: 25px;
    color: #003366;

}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 2px solid #0c5d9d;
    border-radius: 50%;
    color: #0c5d9d;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background-color: #0c5d9d;
    color: #ffffff;
}


.footer-copy {
    text-align: center;
    color: #000;
    font-size: var(--para-heading);
    margin-top: 10px;
}

/* pop up card */
.popup {
    display: none;
    /* Initially hidden */
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 500px;
    background-color: #ffffff;
    background-image: url(../images/Background.png);
    background-size: cover;
    background-position: center;
    transform: translate(-50%, -50%);
    padding: 30px 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    z-index: 1000;
    text-align: center;
    /* font-family: "Poppins", sans-serif; */
}

/* Heading */
.pop-up-heading {
    font-size: 36px;
    font-weight: 700;
    color: #004080;
    /* Theme orange */
    margin-bottom: 15px;
}

/* Paragraph */
.pop-up-para {
    color: #000;
    /* Olive green */
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
}

/* Button */
.close-btn {
    background-color: #000;
    /* Olive green */
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: auto;
}

.close-btn:hover {
    background-color: #004080;
}

/********************* whatsapp container */
.whatsapp-container {
    position: sticky;
    bottom: 20px;
    right: 20px;
    width: 60px;
    text-align: right;
    height: 60px;
    z-index: 9999;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.whatsapp-container i {
    font-size: 48px;
    color: #25D366;
    justify-content: flex-end;
    animation: whatsappbeat 1.5s infinite;
    transition: transform 0.3s ease;
}

@keyframes whatsappbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.call-us-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 9999;
}

.call-us-link {
    display: flex;
    align-items: center;
    background-color: #0b63a5;
    color: white;
    padding: 10px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.call-us-link i {
    font-size: 20px;
    margin-right: 10px;
}

.call-us-link:hover {
    background-color: #084b85;
    transform: scale(1.05);
}



@media (max-width: 600px) {
    .popup {
        width: 90%;
        padding: 20px 15px;
    }

    .pop-up-heading {
        font-size: 28px;
    }

    .pop-up-para {
        font-size: 16px;
    }

    .close-btn {
        font-size: 16px;
        padding: 10px 20px;
    }
}


@media (max-width: 768px) {
    .footer-wrapper {
        padding: 20px 10px;
    }

    .footer-container {
        padding: 15px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer-map {
        min-width: 100%;
        max-width: 100%;
        height: 200px;
        /* Adjust height for mobile */
    }

    .footer-address-box {
        position: absolute;
        top: 15px;
        left: 15px;
        width: 200px;
    }

    .footer-form {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
        min-width: 100%;
    }

    .footer-form input {
        width: 100%;
        border-radius: 20px;
    }

    .footer-form button {
        width: 20%;
        margin-top: 10px;
        margin: auto;
        font-weight: normal;
        border-radius: 15px;
        padding: 10px 10px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer-contact,
    .footer-phone {
        font-size: 14px;
    }

    .footer-socials {
        gap: 12px;
    }

    .footer-socials a {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .footer-copy {
        font-size: 12px;
    }
}

/* responsiveness */
@media only screen and (min-width: 1280px) and (max-width: 2560px) and (-webkit-min-device-pixel-ratio: 2),
only screen and (min-width: 1600px) and (max-width: 2880px) and (-webkit-min-device-pixel-ratio: 2) {

    /* footer */
    .footer-wrapper {
        background: linear-gradient(to bottom, #0b63a5 50%, #ffffff 50%);
        padding: 10px;
        position: relative;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        background-color: #c6e7f6;
        border-radius: 16px;
        padding: 20px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        margin-top: 20px;
    }

    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
    }

    .footer-map {
        flex: 1;
        position: relative;
        min-width: 320px;
        max-width: 600px;
        height: 100px;
        border-radius: 12px;
        overflow: hidden;
    }

    .footer-map iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    .footer-address-box {
        position: absolute;
        top: 10px;
        left: 10px;
        background: white;
        padding: 12px 14px;
        border-radius: 8px;
        font-size: 13px;
        width: 250px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        line-height: 1.4;
    }

    .footer-form {
        display: flex;
        align-items: center;
        justify-content: center;
        /* flex: 1; */
        min-width: 500px;
    }

    .footer-form input {
        padding: 12px 16px;
        border: none;
        border-radius: 20px 0 0 20px;
        width: 100%;
        font-size: 14px;
        outline: none;
    }

    .footer-form button {
        padding: 12px 20px;
        background-color: #0b63a5;
        color: white;
        font-weight: bold;
        border: none;
        border-radius: 0 20px 20px 0;
        cursor: pointer;
    }

    hr {
        border: none;
        border-top: 1px solid #0b63a5;
        margin: 30px 0 20px;
    }

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .footer-contact,
    .footer-phone {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: #003366;
    }

    .footer-contact i,
    .footer-phone i {
        font-size: 25px;
        color: #003366;

    }

    .footer-socials {
        display: flex;
        gap: 16px;
    }

    .footer-socials a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border: 2px solid #0c5d9d;
        border-radius: 50%;
        color: #0c5d9d;
        font-size: 18px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .footer-socials a:hover {
        background-color: #0c5d9d;
        color: #ffffff;
    }


    .footer-copy {
        text-align: center;
        color: #000;
        font-size: 13px;
        margin-top: 10px;
    }
}

/* HD responsiveness */
@media screen and (min-width: 1360px) and (max-width: 1370px) and (min-height: 760px) and (max-height: 770px) {

    /* footer */
    .footer-wrapper {
        background: linear-gradient(to bottom, #0b63a5 50%, #ffffff 50%);
        padding: 10px;
        position: relative;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        background-color: #c6e7f6;
        border-radius: 16px;
        padding: 20px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        margin-top: 20px;
    }

    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
    }

    .footer-map {
        flex: 1;
        position: relative;
        min-width: 320px;
        max-width: 600px;
        height: 100px;
        border-radius: 12px;
        overflow: hidden;
    }

    .footer-map iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    .footer-address-box {
        position: absolute;
        top: 10px;
        left: 10px;
        background: white;
        padding: 12px 14px;
        border-radius: 8px;
        font-size: 13px;
        width: 250px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        line-height: 1.4;
    }

    .footer-form {
        display: flex;
        align-items: center;
        justify-content: center;
        /* flex: 1; */
        min-width: 500px;
    }

    .footer-form input {
        padding: 12px 16px;
        border: none;
        border-radius: 20px 0 0 20px;
        width: 100%;
        font-size: 14px;
        outline: none;
    }

    .footer-form button {
        padding: 12px 20px;
        background-color: #0b63a5;
        color: white;
        font-weight: bold;
        border: none;
        border-radius: 0 20px 20px 0;
        cursor: pointer;
    }

    hr {
        border: none;
        border-top: 1px solid #0b63a5;
        margin: 30px 0 20px;
    }

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .footer-contact,
    .footer-phone {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: #003366;
    }

    .footer-contact i,
    .footer-phone i {
        font-size: 25px;
        color: #003366;

    }

    .footer-socials {
        display: flex;
        gap: 16px;
    }

    .footer-socials a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border: 2px solid #0c5d9d;
        border-radius: 50%;
        color: #0c5d9d;
        font-size: 18px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .footer-socials a:hover {
        background-color: #0c5d9d;
        color: #ffffff;
    }


    .footer-copy {
        text-align: center;
        color: #000;
        font-size: 13px;
        margin-top: 10px;
    }

}

@media screen and (min-width: 1536px) {

    /* footer */
    .footer-wrapper {
        background: linear-gradient(to bottom, #0b63a5 50%, #ffffff 50%);
        padding: 10px;
        position: relative;
    }

    .footer-container {
        max-width: 90%;
        margin: 0 auto;
        background-color: #c6e7f6;
        border-radius: 16px;
        padding: 20px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        margin-top: 20px;
    }

    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
    }

    .footer-map {
        flex: 1;
        position: relative;
        min-width: 320px;
        max-width: 100%;
        height: 100px;
        border-radius: 12px;
        overflow: hidden;
    }

    .footer-map iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    .footer-address-box {
        position: absolute;
        top: 10px;
        left: 10px;
        background: white;
        padding: 12px 14px;
        border-radius: 8px;
        font-size: 13px;
        width: 250px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        line-height: 1.4;
    }

    .footer-form {
        display: flex;
        align-items: center;
        justify-content: center;
        /* flex: 1; */
        min-width: 500px;
    }

    .footer-form input {
        padding: 12px 16px;
        border: none;
        border-radius: 20px 0 0 20px;
        width: 100%;
        font-size: 14px;
        outline: none;
    }

    .footer-form button {
        padding: 12px 20px;
        background-color: #0b63a5;
        color: white;
        font-weight: bold;
        border: none;
        border-radius: 0 20px 20px 0;
        cursor: pointer;
    }

    hr {
        border: none;
        border-top: 1px solid #0b63a5;
        margin: 30px 0 20px;
    }

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .footer-contact,
    .footer-phone {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: #003366;
    }

    .footer-contact i,
    .footer-phone i {
        font-size: 25px;
        color: #003366;

    }

    .footer-socials {
        display: flex;
        gap: 16px;
    }

    .footer-socials a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border: 2px solid #0c5d9d;
        border-radius: 50%;
        color: #0c5d9d;
        font-size: 18px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .footer-socials a:hover {
        background-color: #0c5d9d;
        color: #ffffff;
    }


    .footer-copy {
        text-align: center;
        color: #000;
        font-size: 13px;
        margin-top: 10px;
    }

}