:root {
    --primary: #e5e5e5;
    --secondary: #E08D0D;
    --highlights: #14213d;
    --headings: 'Poppins', sans-serif;
    --sub: 'Montserrat', sans-serif;
    --para: 'Inter', sans-serif;
}
body {
    background-color: var(--primary);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.nav-container {
    max-width: 1500px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
}
.hi {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: var(--secondary);
    border-bottom: 3px solid var(--highlights);
    padding: 16px 32px;
}

.nav-image {
    margin-left: -130px;
    max-width:180%;
    height: auto;
}

.hamburger {
    z-index: 1;
    display: block;
    position: relative;
    border: none;
    user-select: none;
    background: none;
    outline: none;
    appearance: none;
    cursor: pointer;
}

.hamburger span{
    display: block;
    width: 33px;
    height: 4px;
    margin-right: -50px;
    margin-bottom: 4px;
    position: relative;
    background-color: var(--highlights);
    border-radius: 6px;
    z-index: 2;
    transform-origin: 0 0;
    transition: 0.4s;
}

.hamburger:hover span:nth-child(2) {
    transform: translateX(10px);
    background-color: var(--primary);
}

.hamburger.is-active span:nth-child(1) {
    transform: translate(1px, -2px) rotate(45deg);
    background-color: #E08D0D;
}
.hamburger.is-active span:nth-child(2) {
    opacity: 0;
    transform: translateX(15px);
}
.hamburger.is-active span:nth-child(3) {
    transform: translate(-1.5px, 2.5px) rotate(-45deg);
    background-color: #E08D0D;
}

.hamburger.is-active:hover span {
    background-color: #e6e6e6;
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
}
@media (min-width: 768px) {
    .nav-links {
        display: flex !important;
    }
    .mobile-menu {
        display: none !important;
        visibility: hidden;
        position: absolute;
    }
    .nav-image {
        margin-left: -130px;
        max-width:103%;
        height: auto;
    }
}
.nav-links {
    display: none;
    flex: 1 1 0;
    justify-content: flex-end;
    margin: 0 -16px;
    font-size: 130%;
}
.nav-links a{
    color: #000;
    margin: 0 16px;
    text-decoration: none;
    transition: 0.4s;
    padding: 8px 16px;
    border-radius: 99px;
    font-family: var(--sub);
}

.nav-links a.is-active {
    color: var(--primary);
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 250px; 
    height: 50vh;
    margin-top: 3%;
    background: var(--highlights);
    box-shadow: -4px 0px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease-in-out;
    z-index: -1;
}

.mobile-menu a {
    padding: 15px;
    text-decoration: none;
    color: var(--secondary);
    font-size: 18px;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: orange;
}

.mobile-menu.open {
    right: 10%; 
}
.carousel-item img {
    width: 100%; /* Ensures it takes the full width */
    height: 450px; /* Set a fixed height */
    object-fit: cover; /* Ensures the image fills the space without distortion */
}
.carousel-control-prev, 
.carousel-control-next {
    background-color: #14213D; /* Dark Blue */
}

@media (min-width: 768px) {
    .carousel-item img {
        width: 100%; /* Ensures it takes the full width */
        height: 650px; /* Set a fixed height */
        object-fit: cover; /* Ensures the image fills the space without distortion */
    }
}

.intro-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.intro-cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 14px rgba(0, 0, 0, 0.1);
}
.text-cont {
    width: 67.5%;
}

.info-box {
    margin-bottom: 35px;
}

.info-head {
    color: #E08D0D;
    font-size: 24px;
    font-family: var(--sub);
}

.info-para {
    color: #333;
    font-size: 16px;
    line-height: 1.7;
    font-family: var(--para);
}
.img-cont {
    width: 50%;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .intro-cont {
        flex-direction: column;
        text-align: center;
    }
    .text-cont, .img-cont {
        width: 100%;
    }
    .img-cont {
        margin-left: 40px;
    }
    .intro-head {
        margin-top: 40px;
        color: #14213D;
        font-size: 50px !important;
        font-family: var(--headings);
    }
}
.intro-head {
    margin-top: 40px;
    color: #14213D;
    font-size: 85px;
    font-family: var(--headings);
}
.intro-head1 {
    margin-top: 40px;
    color: #14213D;
    font-size: 73px;
    font-family: var(--headings);
    margin-bottom: 40px;
}
/* FAQ Container */
.faq-container {
    max-width: 950px;
    margin: auto;
    padding: 30px;
}

/* FAQ Item */
.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 40px;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
    background: #f4f4f4;
}

/* FAQ Question */
.faq-question {
    font-size: 22px;
    font-weight: bold;
    color: #333;
}

/* FAQ Answer (Initially Hidden) */
.faq-answer {
    display: none;
    padding: 15px;
    font-size: 18px;
    color: #555;
    transition: max-height 0.3s ease-out;
}

/* FAQ Toggle (+ Symbol) */
.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #14213D;
    transition: transform 0.3s;
}

/* Open FAQ - Rotates the "+" */
.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
    .faq-container {
        padding: 10px;
    }

    .faq-item {
        padding: 12px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }

    .faq-toggle {
        font-size: 18px;
    }
    .intro-head1 {
        margin-top: 40px;
        color: #14213D;
        font-size: 43px;
        font-family: var(--headings);
        margin-bottom: 40px;
    }
}

.lol {
    margin-bottom: 60px;
}
.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
    background-color: #14213D;
    color: #fff;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: auto;
    width: 350px;
    margin-right: 10px;
}
.column {
    flex: 1;
    min-width: 250px;
    padding: 10px;
}
.column h3 {
    color: #E08D0D;
    font-size: 22px;
}
.column p, .column a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}
.column a:hover {
    text-decoration: underline;
}
.social-icons {
    margin-top: 10px;
}
.social-icons a {
    color: #fff;
    margin-right: 10px;
    font-size: 20px;
}
.increased-line-spacing {
    line-height: 1.8;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: center;
    }
    .column {
        text-align: center;
        max-width: 90%;
    }
    .logo img {
        height: auto;
        width: 250px;
        margin-right: 10px;
    }
}