/*==================================================
Google Fonts
==================================================*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');


/*==================================================
Reset
==================================================*/

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

html {
    scroll-behavior: smooth;
}

body {

    font-family: 'Inter', sans-serif;
    color: #111;
    background: #ffffff;
    overflow-x: hidden;

}

img {

    max-width: 100%;
    display: block;

}

a {

    text-decoration: none;

}

ul {

    list-style: none;

}


/*==================================================
Container
==================================================*/

.container {

    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;

}


/*==================================================
Header
==================================================*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 78px;
    background: #ffffff;
    z-index: 9999;
    box-shadow:
        -6px 8px 20px rgba(32, 53, 142, 0.30),
        6px 8px 20px rgba(143, 69, 72, 0.30);
}

body {
    padding-top: 78px;
}

.header .container {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

}


/*==================================================
Logo
==================================================*/
.logo {
    flex: 0 0 auto;
}

.logo img {
    display: block;
    height: 85px;
    width: auto;
}


.logo a {

    color: #fff;
    font-size: 42px;
    font-weight: 500;
    letter-spacing: .5px;

}


/*==================================================
Navigation
==================================================*/

.navigation {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0;

}

.navigation ul {

    display: flex;
    align-items: center;
    gap: 48px;
}

.navigation ul li a {
    position: relative;
    display: inline-block;
    padding: 10px 0;
    color: #222;
    font-weight: 500;
    transition: color .3s ease;
}

.navigation ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #19357d 0%, #b75d61 100%);
    transition: width .3s ease;
}

.navigation ul li a.active {
    color: #000;
}

.navigation ul li a.active::after {
    width: 100%;
}


/*==================================================
Header Buttons
==================================================*/

.header-buttons {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;

}

.btn-call {
    color: #000;
    border: 1px solid #19357d;
    padding: 11px 22px;
    font-size: 14px;
    transition: .35s;
    border-radius: 10px;

}

.btn-call:hover {
    color: #fff;
    background: #19357d;

}

.btn-consultation {

    color: #fff;
    padding: 11px 22px;

    background: linear-gradient(90deg, #20358e, #8f4548);
    border-radius: 10px;
    transition: .35s;

}

.btn-consultation:hover {

    opacity: .9;

}

/*==================================================
Mobile Toggle Button
==================================================*/
.mobile-toggle {
    display: none;
    font-size: 24px;
    color: #19357d;
    cursor: pointer;
    z-index: 1001;
}

/*==================================================
Mobile Navigation
==================================================*/
@media (max-width: 991px) {

    body {
        padding-top: 70px;
    }

    .header {
        height: 45px;
        background: #fff;
        box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
    }

    .header .container {
        height: 70px;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    /* Logo */
    .logo {
        flex: 0 0 auto;
    }

    .logo img {
        display: block;
        height: 36px;
        width: auto;
    }

    /* Hide CTA Buttons */
    .header-buttons {
        display: none;
    }

    /* Hamburger */
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Mobile Navigation */
    .navigation {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100dvh - 70px);
        margin: 0;
        background: #fff;
        transform: translateX(-100%);
        transition: transform .35s ease;
        overflow-y: auto;
        z-index: 999;
    }

    .navigation.active {
        transform: translateX(0);
    }

    .navigation ul {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 20px;
    }

    .navigation ul li {
        width: 100%;
        border-bottom: 1px solid #ececec;
    }

    .navigation ul li a {
        display: block;
        width: 100%;
        padding: 18px 0;
        font-size: 16px;
        color: #222;
        font-weight: 500;
        transition: .3s;
    }

    .navigation ul li a:hover,
    .navigation ul li a.active {
        color: #19357d;
    }

    /* Hamburger -> Close Icon */
    .mobile-toggle.active i::before {
        content: "\f00d";
    }
}

/*=========================================
Footer
=========================================*/


/********************* whatsapp container */
.whatsapp-container {
    position: fixed;
    z-index: 99;
    bottom: 0;
    right: 3%;
    width: 50px;
    height: 50px;
    background-color: transparent;
}

.whatsapp-container i {
    font-size: 40px;
    color: #25D366;
    display: inline-block;
    animation: whatsappbeat 1.5s infinite;
}

@keyframes whatsappbeat {

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

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

.footer-section {
    background: #000;
    padding-bottom: 30px;
    padding-top: 30px;
    position: relative;
}

.footer-section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #7b403d, #21367d);
}

.footer-section .container {
    /* max-width: 1600px; */
    margin: auto;
    padding: 0 40px;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

/*=========================================
Left — Info Grid
=========================================*/

.footer-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
    row-gap: 10px;
}

.info-block h4 {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 14px;
}

.info-block p {
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    display: block;
}

.contact-number {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;

}

/*============================*/

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    transition: .3s;
}

.footer-social a:hover {
    opacity: .8;
}

/*=========================================
Right — Form
=========================================*/

.footer-form {
    width: 780px;
}

.contact-request-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    height: 40px;
    border: none;
    outline: none;
    padding: 0 22px;
    font-size: 16px;
    color: #333;
    border-radius: 10px;
    /* background: #fdf6ee; */
}

.form-group input::placeholder {
    color: #999;
}

/*============================*/

.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.form-submit button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(90deg, #7b403d, #21367d);
    transition: .35s;
    border-radius: 10px;
}

.form-submit button i {
    font-size: 16px;
    transform: rotate(-45deg)
}

.form-submit button:hover {
    opacity: .9;
}


/* Popup Styles */
#popup-message {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: 90%;
    max-width: 400px;
    background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    font-family: Arial, sans-serif;
}

#popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
}

#popup-heading {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

#popup-para {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

#close-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#close-btn:hover {
    background-color: #d55d07;
}


/*==================================================
Global Header/Footer Responsiveness
==================================================*/

.mobile-toggle {
    display: none;
    color: #000;
    font-size: 22px;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .footer-section .container {
        padding: 0 24px;
    }
}

@media (max-width: 900px) {
    .header .container {
        height: auto;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        /* padding: 16px 0; */
    }

    .navigation {
        order: 3;
        width: 100%;
        height: 45%;
        top: 7%;
    }

    .navigation ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
        margin-top: 10px;
    }

    .header-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .btn-call,
    .btn-consultation {
        flex: 1 1 140px;
        width: auto;
        text-align: center;
    }

    .mobile-toggle {
        display: block;
    }

    .footer-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    .footer-info {
        /* grid-template-columns: 1fr; */
    }

    .footer-form {
        width: 100%;
    }

    .footer-section {
        padding-top: 24px;
        padding-bottom: 24px;
    }
}

@media (max-width: 767px) {
    .navigation ul {
        justify-content: center;
        gap: 12px;
    }

    .header-buttons {
        justify-content: center;
        gap: 8px;
    }

    .btn-call,
    .btn-consultation {
        width: 100%;
    }

    .form-group input {
        height: 40px;
        border: none;
        outline: none;
        padding: 0 22px;
        font-size: 16px;
        color: #333;
        /* background: #fdf6ee; */
        width: 100%;
    }
}