body {
    margin: 0;
    padding: 0;
    font-family: "Exo 2", sans-serif;
}

/* HERO BACKGROUND */
.hero-section {
    background-color: #414141;
    height: 100%;
    width: 100%;
    position: relative;
}

/* DARK OVERLAY */
.hero-section::before {
    content: "";
    position: absolute;
    background: rgba(6, 25, 41, 0.60);
}

/* NAVBAR EXACT STYLE */



.navbar-toggler {
    background-color: transparent;
    color: white;
}

.navbar-brand img {
    width: 220px;
}

.navbar-brand {
    width: 16%;
}

.nav-link {
    color: white !important;
    font-size: 15px;
    margin-right: 18px;
}

/* #mainNav{
        margin-left: 90px;
    } */


.navbar>.container {
    padding: 0 20px;
}

.contact-btn {
    background: white;
    color: #b28f3e;
    padding: 10px 22px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
}

/* HERO CONTENT RIGHT */
.hero-content {
    position: relative;
    z-index: 1;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 0%;
    text-align: center;
    color: #fff;
    padding-top: 43px;
    padding-bottom: 48px;

}

.hero-title {
    font: 700 48px / 53px "Exo 2", sans-serif;
    margin-bottom: 18px;

}

.hero-sub {
    font: 19px / 23px "Open Sans", serif;
    margin-bottom: 42px;
}

.hero-buttons a {
    margin-right: 15px;
    padding: 10px 22px;
    display: inline-block;
    border-radius: 30px;
    font-size: 19px;
    font-weight: 600;

    text-decoration: none;
}

.btn-white {
    background-color: #b28f3e;
    color: white;
}

.btn-outline-white {
    border: 2px solid #b28f3e;
    color: #b28f3e;
    background-color: white;
}

#drop-1 {
    left: 68%;
    top: 68%;
}


/* form */
.contact-section {
    background-image: url('/images/form-bg.jpg');
    /* Replace with your image path */
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
}

/* Form container styling */
.form-container {
    background-color: transparent;
    /* Semi-transparent white background */
    padding: 40px;
    border-radius: 8px;
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    text-align: center;
    font-size: 28px;
}

.form-container p {
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
}

.textarea {
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    height: 150px;
}

.submit-btn {
    background-color: #b28f3e;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 30px;
    cursor: pointer;
    width: 90%;
}

.submit-btn:hover {
    background-color: #b1841d;
}

.recaptcha {
    margin-bottom: 20px;
    display: flex;
    width: 100%;

}

.recaptcha-img {
    font-size: 12px;
    color: #555;
    margin-top: 5px;
}

.form-row {
    display: flex;
    justify-content: space-between;
}

.form-row .form-group {
    flex: 1;
}

.form-row .form-group+.form-group {
    margin-left: 15px;
}

.box {
    border: 1px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    border-radius: 15px;
}

.boxes:hover {
    border-color: #b28f3e;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
    border: 1px solid #b28f3e;
    border-radius: 15px;
}

.box-1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 60px 5%;
    text-align: center;
}



/* footer */

.footer-container {
    background-color: #414141;
    color: white;
    padding: 40px 0;
}

.footer-logo img {
    max-width: 220px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.footer-col h3 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: bold;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
}

.footer-col ul li a:hover {
    text-decoration: underline;
}

.social-icons a {
    color: white;
    margin-right: 10px;
    text-decoration: none;
}

.footer-bottom {
    background-color: #414141;
    text-align: left;
    padding: 15px 0;
    padding-left: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #888;
}

/* @media (max-width: 767px) {
    .footer-columns {
        flex-direction: column;
        text-align: center;
    }

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

    .social-icons a {
        margin-right: 15px;
    }
}

@media (max-width: 575px) {
    .footer-columns {
        flex-direction: column;
        text-align: center;
    }

    .footer-col h3 ul {
        font-size: 14px;
        text-align: center;
    }

    .footer-logo img {
        max-width: 150px;
        justify-items: center;
    }
} */



/* ------------------------------ */

/* Offcanvas full height white */
#mobileMenu {
    background: #ffffff !important;
    width: 270px !important;
    padding-top: 10px;
}

/* Close button style (same as screenshot) */
#mobileMenu .btn-close {

    opacity: 1;
    font-size: 20px;
}

/* Main nav links */
#mobileMenu .nav-link {
    font-size: 15px;
    font-weight: 600;
    color: #1f1f1f !important;
    padding: 14px 0;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Arrow icon */
#mobileMenu .nav-link::after {
    content: "";
    font-size: 18px;
    margin-left: 6px;
}

/* Dropdown always visible inside mobile menu */
#mobileMenu .dropdown-menu {
    display: none !important;
    position: relative;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    padding-left: 10px;
}

#mobileMenu .dropdown-menu.show {
    display: block !important;
}

/* Submenu items */
#mobileMenu .dropdown-item {
    font-size: 14px;
    color: #333 !important;
    padding: 7px 0;
}

/* CONTACT US Button */
#mobileMenu .btn-primary {
    margin-top: 25px;
    padding: 10px 0;
    font-size: 15px;
    border-radius: 20px;
}

/* Remove blue hover */
#mobileMenu .dropdown-item:hover {
    background: none !important;
}

#mobileMenu .mobile-toggle::after {
    content: "▾";
    float: right;
    font-size: 12px;
    margin-top: 5px;
}


/* --------------------------------- */
/* DO NOT TOUCH OTHER PAGE ELEMENTS  */
/* HERO + NAVBAR SAFE                */
/* --------------------------------- */

@media (max-width: 768px) {

    .hero-section {
        height: 550px;
        /* fixed height - bilkul perfect */
        background-position: center top;
        background-size: cover !important;
    }

    .hero-content {
        padding-top: 120px;
        /* text perfect center me */
    }

    .hero-title {
        font-size: 38px !important;
        line-height: 34px !important;
        margin: 5px;
    }

    .hero-sub {
        font-size: 15px !important;
    }

    .hero-buttons a {
        font-size: 15px !important;
        padding: 8px 18px !important;
    }

    .hero-buttons a {
        display: block !important;
        /* har button full width */
        width: 90% !important;
        /* same width */
        margin: 0 auto 12px auto !important;
        /* center + gap 12px */
        text-align: center !important;
    }
}



.monile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
}

.main-block {
    max-width: 800px;
}

/* Search */
.faq-search {
    height: 45px;
    box-shadow: none;
}

.search-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
    background-color: #b1841d;
}

.search-btn:hover {
    width: 45px;
    height: 45px;
    font-size: 18px;
    background-color: #b1841d;
}

.faq-search:focus {
    box-shadow: none;
    outline: none;
    /* optional */

}