/*font*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Mona+Sans:ital,wght@0,200..900;1,200..900&display=swap');

/*navbar styles*/
* {
    font-family: "Mona Sans", serif;
    font-style: normal;
}

:root {
    --primary-color: #293B9D;
    --secondary-color: white;
}


.header {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1%;
    width: 100%;
    box-shadow: 0 6px 10px rgba(213, 24, 50, 0.5);
    position: fixed;
    z-index: 999;
}

.logo-container {
    width: 100px;
    height: auto;
    padding-left: 4%;
}

@media screen and (min-width:1500px) {
    .header {
        background-color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: space-around;
        padding: 0.5%;
        width: 100%;
        gap: 18%;
        box-shadow: 0 6px 10px rgba(213, 24, 50, 0.5);
        position: fixed;
        z-index: 999;
    }
}

@media screen and (min-width:1024px) and (max-width:1280px) {
    .logo-container {
        padding-left: 4%;
    }
}

.logo {
    width: 100px;
    height: 60px;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
}

.nav-item {
    font-weight: 400;
    font-size: 20px;
    list-style-type: none;
}

.nav-link {
    color: black;
    text-decoration: none !important;
    position: relative;
}

/* Active nav-link with exact gradient effect */
.nav-item.active .nav-link {
    font-weight: 500 !important;
    font-size: 20px;
    background: linear-gradient(90deg,
            #21A366, #00A3E0, #7030A0,
            #C00000, #FFC000, #548235, #002BFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

/* Darker underline effect */
.nav-item.active .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
            #008000, #0057B7, #7030A0,
            #C00000, #FF8C00, #2E7D32, #00008B);
    border-radius: 5px;
    filter: blur(0.8px);
    opacity: 1;
    /* Ensures it’s dark and visible */
}


/* Keyframes for a smooth, elegant gradient movement */
@keyframes gradientRainbow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.contact-us {
    width: 150px;
    height: auto;
    background-color: #293B9D;
    color: #ffffff;
    padding: 10px;
    border: none;
    border-radius: 10px;
    margin-right: 20px;
}

.contact-btn-nav {
    color: white !important;
    text-decoration: none !important;

}

/* mobile navbar */
/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: black;
    transition: 0.3s;
}

@media screen and (min-width:1500px){
    .nav-container{
        padding: 0.5%;
    }
    .nav-item{
        font-size: 30px;
    }
    .nav-item.active .nav-link{
        font-size: 30px;
    }
}

@media (max-width: 768px) {

    /* Initially hidden with opacity & transform */
    .logo {
        width: 100%;
        height: auto;
        padding: 10px;
    }

    .header {
        padding: 0;
    }

    .nav-container {
        position: absolute;
        top: 70px;
        right: 0;
        background: white;
        width: 100%;
        max-width: 250px;
        /* Adjust width */
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
        opacity: 0;
        transform: translateY(-20px);
        /* Start above */
        transition: opacity 0.4s ease, transform 0.4s ease;
        visibility: hidden;
        border-radius: 10px;
        overflow: hidden;
        /* Prevent sudden jumps */
    }

    /* Show menu with smooth animation */
    .nav-container.active {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
        width: 38%;
        margin-right: 20px;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
        gap: 20px;
    }

    .hamburger {
        display: flex;
        cursor: pointer;
    }

    /* When active, transform into "X" */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

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

    /* Hide desktop contact button on mobile */
    .desktop-contact {
        display: none;
    }

    /* Style contact as nav-item in mobile menu */
    .mobile-contact {
        font-weight: 400;
        font-size: 20px;
        list-style-type: none;
    }

    .mobile-contact .nav-link {
        color: black;
        text-decoration: none !important;
    }
}


/* Show desktop contact button normally */
@media (min-width: 769px) {
    .mobile-contact {
        display: none;
    }
}



/*footer styles*/

.footer-section {
    background-color: #fff;
    box-shadow: 0 2px 8px #293B9D;
    border-radius: 15px;
}

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

.connect {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    align-items: flex-start;
}

.under {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 10px;

}

.horizontal-line {
    text-align: center;
    width: 90%;
    margin: auto;
    box-shadow: 0 2px 8px grey;
}

.input-group input {
    border: 1px solid #ccc;
    border-radius: 15px 0 0 15px;
    box-shadow: 0 2px 8px grey;
    padding: 10px;
}

.input-group .btn {
    border-radius: 0 15px 15px 0;
    background-color: #293B9D;
    box-shadow: 0 2px 8px grey;
}

.input-group .btn:hover {
    border-radius: 0 15px 15px 0;
    background-color: #293B9D;
    box-shadow: 0 2px 8px grey;
}

.social-icons a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
}

.social-icons i {
    transition: transform 0.3s ease;
}

.social-icons i:hover {
    transform: scale(1.2);
}


@media (max-width: 768px) {
    .footer-section .row {
        text-align: center;
    }

    .footer-section .col-md-4 {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        /* padding: 20px; */
    }

    .footer-section {
        width: 80%;
        margin: auto;
    }

    .container {
        width: 90% !important;
        /* margin-left: 1% !important; */
        padding: 5%;
        margin-top: 12px;
    }

    /* Subscription Section */
    .decription {
        width: 100%;
        padding: 10px;
    }

    .decription h5 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .decription p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    /* Office & Contact Section */
    .connect {
        display: flex;
        flex-direction: row;
        text-align: center;
        gap: 15px;
        width: 100%;
        padding-top: 10px;
    }

    .connect h5 {
        font-size: 16px;
    }

    .connect p {
        font-size: 14px;
    }

    .decription .custom-btn {
        width: 35% !important;
        padding: 5px !important;
    }

    /* Copyright & Social Icons */
    .under {
        display: flex;
        align-items: center;
        text-align: center;
        margin-top: 15px;
        gap: 10px;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .social-icons a {
        font-size: 20px;
    }

    .horizontal-line {
        width: 100%;
        margin-top: 10px;
    }
}




/* pop-up */
.popup {
    display: none;
    /* Initially hidden */
    position: fixed;
    top: 50%;
    left: 50%;
    width: 50%;
    height: auto;
    /* Adjust height to fit content */
    background-color: white;
    /* Background color */
    transform: translate(-50%, -50%);
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    z-index: 1000;
    text-align: center;
}

.pop-up-heading {
    font-size: 30px;

    font-weight: 400;
    color: black;
    letter-spacing: 2px;
    margin-bottom: 10px;
    /* Margin for spacing */
}

.pop-up-para {
    color: black;
    font-size: 16px;
    /* Adjust font size for better fit */

    font-weight: normal;
    margin-bottom: 20px;
    /* Margin for spacing */
}

.close-btn {
    margin-top: 10px;
    width: auto;
    /* Adjust width for better fit */
    height: auto;

    font-size: 10px;
    /* Adjust font size for better fit */
    background-color: #293B9D;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    /* Transition for hover effect */
}

.close-btn:hover {
    background-color: red;
    color: #FFFFFF;

}

/********************* 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: lawngreen;
    display: inline-block;
    animation: whatsappbeat 1.5s infinite;
}

@keyframes whatsappbeat {

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

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


/* smaller laptops */
@media only screen and (min-width:1120px) and (max-width: 1280px) {
    .popup {
        width: 70%;
        /* Adjust width for smaller screens */
        padding: 15px;
        /* Adjust padding for better fit */
    }

    .pop-up-heading {
        font-size: 24px;
        /* Adjust font size */
    }

    .pop-up-para {
        font-size: 14px;
        /* Adjust font size */
    }

    .close-btn {
        font-size: 14px;
        /* Adjust font size */
        padding: 8px 16px;
        /* Adjust padding */
    }

    .input-btn-align {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }
}

/* tablet */
@media screen and (min-width:720px) and (max-width:1024px) {
    .popup {
        width: 92%;
        /* Adjust width for mobile screens */
        padding: 10px;
        /* Adjust padding for better fit */
    }

    .pop-up-heading {
        font-size: 20px;
        /* Adjust font size */
    }

    .pop-up-para {
        font-size: 10px;
        /* Adjust font size */
        font-weight: 100;
        letter-spacing: 2px;
    }

    .close-btn {
        font-size: 12px;
        /* Adjust font size */
        padding: 6px 12px;
        /* Adjust padding */
    }
}

/* Mobile View Footer Adjustments */
@media (max-width: 550px) {
    .popup {
        width: 92%;
        /* Adjust width for mobile screens */
        padding: 10px;
        /* Adjust padding for better fit */
    }

    .pop-up-heading {
        font-size: 20px;
        /* Adjust font size */
    }

    .pop-up-para {
        font-size: 10px;
        /* Adjust font size */
        font-weight: 100;
        letter-spacing: 2px;
    }

    .close-btn {
        font-size: 12px;
        /* Adjust font size */
        padding: 6px 12px;
        /* Adjust padding */
    }
}