@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');


:root{
    --primaryColor: #ee7f08;
    --softColor: #fedddd;
    --whiteColor: #f5f5f5;
    --blackColor: #222;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    font-family: "Merriweather", serif;
}
  
html{
    scroll-behavior: smooth;
}
body{
    /* width: 100%; */
    background-color: var(--softColor);
}

.top-bar {
    background: #aa8905;
    color: #fff;
    text-align: center;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    gap: 15px;
    animation: fadeIn 1s ease-in-out;
}
.top-bar span {
    font-weight: bold;
    animation: blink 1s infinite alternate;
}
@keyframes blink {
    0% { opacity: 1; }
    100% { opacity: 0.1; }
}



.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 5%;
    background: rgba(0, 0, 0, 0.85);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease-in-out;
}
.logo img{
    height: 70px;
}
.nav-links{
    list-style: none;
    display: flex;
    align-items: center;
}
.nav-links li {
    margin: 0 10px;
}
.nav-links a{
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
}
.nav-links a:hover {
    background: #c49c00;
    color: #000;
    letter-spacing: 2px;
    box-shadow: 0px 4px 10px rgba(228, 255, 78, 0.5);
    transform: scale(1.1);
}
.contact-btn {
    background-color: rgb(194, 11, 11);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}
.menu-toggle{
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    display: none;
}
.menu-toggle.active {
    transform: rotate(90deg);
}




.header{
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../Images/faq-banner-1.png');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5% 3%;
    border-radius: 0 0 50px 50px;
    max-height: 800px;
    color: var(--whiteColor);
}
.header-title{
    font-size: 48px;
    letter-spacing: 1.5;
}
.header-desc {
    font-size: 20px;
    letter-spacing: 1;
    text-align: center;
}
.search {
    width: 50%;
    height: 55px;
    background-color: var(--whiteColor);
    margin-top: 2%;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    padding: 5px;
}
.search input {
    width: 80%;
    height: 100%;
    padding: 1% 3%;
    background: transparent;
    border: none;
}
.search button{
    width: 20%;
    min-width: 100px;
    height: 100%;
    font-size: 1.1rem;
    background-color: var(--primaryColor);
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    cursor: pointer;
}
.search button:hover{
    background-color: var(--blackColor);
    color: var(--whiteColor);
}


.faq {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 3%;
}
.faq-name{
    flex: 0.5;
    padding: 2% 2% 0 0;
}
.faq-header{
    padding: 5% 0 0 0;
    font-size: 40px;
    letter-spacing: 2;
}
.faq-img{
    border-radius: 10px;
    width: 100%;
}
.faq-box{
    flex: 1;
    min-width: 320px;
    padding: 2% 0 4% 4%;
    border-left: 2px solid var(--primaryColor);
}
.faq-wrapper{
    width: 100%;
    padding: 1.5rem;
    border-bottom: 1px solid var(--blackColor);
}
.faq-title{
    display: block;
    position: relative;
    width: 100%;
    letter-spacing: 1.2;
    font-size: 28px;
    font-weight: 600;
    color: var(--primaryColor);
}
.faq-title::after{
    content: "";
    width: 10px;
    height: 10px;
    float: right;
    border-style: solid;
    border-width: 2px 2px 0 0;
    transform: rotate(135deg);
    transition: 0.4s ease-in-out;
}
.faq-detail{
    line-height: 1.5;
    letter-spacing: 1;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    font-size: 20px;
}
.faq-trigger{
    display: none;
}
.faq-trigger:checked + .faq-title + .faq-detail {
    max-height: 300px;
}
.faq-trigger:checked + .faq-title::after{
    transform: rotate(-45deg);
    transition: 0.4s ease-in-out;
}




/* Footer Section starts */

footer {
    background: linear-gradient(135deg, #0e1d25, #236281);
    color: #ffffff;
    padding: 60px 8%;
    /* border-top-left-radius: 120px;
    border-bottom-right-radius: 120px; */
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: start;
}
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    position: relative;
    color: #e0b60a;
    display: inline-block; 
    text-align: center; 
    width: 100%; 
}
.footer-column p i{
    margin-right: 8px;
    color: #e0b60a;
}
.footer-column h3::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #a58503;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}
.footer-column p {
    font-size: 1.1rem;
    color: rgb(255, 255, 255);
    line-height: 1.6;
}
.footer-column img {
    width: 160px;
    margin-bottom: 15px;
}
.quick-links {
    text-align: center; 
}
.quick-links h3 {
    position: relative;
    display: inline-block;
}
.quick-links h3::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #a58503;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}



.latest-blogs {
    margin-left: -15px; 
}
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 12px;
}
.social-icons a {
    color: #d1a909;
    font-size: 1.5rem;
    transition: 0.3s ease-in-out;
}
.social-icons a:hover {
    color: #c49e08;
    transform: scale(1.2);
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column ul li {
    margin-bottom: 12px;
}
.footer-column ul li a {
    font-size: 1.2rem;
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: 0.3s ease-in-out;
}
.footer-column ul li a:hover {
    color: #c49c00;
    text-decoration: underline;
}
.blog-post {
    margin-bottom: 12px;
}
.blog-post a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: 0.3s;
}
.blog-post a:hover {
    color: #c49c00;
}
.blog-post span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.658);
    margin-top: 3px;
}
.map-container {
    margin-top: 20px;
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.map-container iframe {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    border: none;
}
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 50px; /* Added space to separate from columns */
    position: relative;
}
.footer-bottom::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    margin-bottom: 15px; /* Space between the line and copyright */
}
.footer-bottom p {
    font-size: 1rem;
    color: rgb(255, 255, 255);
}


/* Footer Section ends */














@media screen and (max-width: 768px) {

    .top-bar {
        font-size: 13px;
        flex-direction: column;
        text-align: center;
        gap: 5px;
        padding: 8px 5%;
    }
    .menu-toggle {
        display: block;
        position: relative;
        z-index: 1001; /* Ensure it stays above */
    }
    .nav-links {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%; 
        background: rgba(0, 0, 0, 0.85);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 15px 0;
        gap: 15px;
        transition: left 0.4s ease-in-out, opacity 0.3s ease-in-out;
        opacity: 0;
        border-radius: 10px;
        box-shadow: 5px 0 10px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }
    .nav-links.active {
        left: 0;
        opacity: 1;
    }
    .nav-links li {
        margin: 10px 0;
    }
    .menu-toggle.rotated {
        transform: rotate(90deg);
        transition: transform 0.3s ease-in-out;
    }
    .nav-links a {
        font-size: 18px;
        padding: 10px 15px;
        border-radius: 5px;
        transition: background 0.3s ease-in-out;
    }
    .nav-links a:hover {
        background: #a58503;
        color: #fff;
        box-shadow: 0px 4px 10px rgba(228, 255, 78, 0.5);
    }


        
    .header{
        background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../Images/faq\ banner\(mobile\).png');
        height: 200px;
    }
    .search{
        height: 35px;
        width: 100%;
    }
    .header-title{
        font-size: 35px;
    }
    .header-desc {
        font-size: 18px;
    }
    .faq-title{
        font-size: 20px;
    }
    .faq-detail{
        font-size: 15px;
    }
    .faq {
        justify-content: center;
        text-align: center;
    }
    .faq-name {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .faq-header {
        padding: 0;
        font-size: 25px; /* Adjust as needed */
    }
    .faq-img {
        max-width: 80%; /* Adjust size if necessary */
    }


    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-column {
        align-items: center;
    }
    .footer-column ul {
        padding: 0;
    }
    .footer-column ul li{
        text-align: center;
        align-items: center;
    }
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .map-container iframe {
        height: 250px;
    }
    .footer-bottom p{
        font-size: 1rem;
    }
}


 
@media screen and (max-width: 576px) {

    .top-bar {
        font-size: 12px;
        padding: 6px 5%;
        text-align: center;
    }


    .footer-container {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    .footer-column h3 {
        margin-top: 20px;
        margin-bottom: 10px;
        font-size: 1.3rem;
    }
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-icons {
        justify-content: center;
    }
    .footer-bottom {
        margin-top: 30px;
    }
    .footer-bottom p{
        font-size: 0.9rem;
    }
}