/* ===========================
   Table of Content
   ===========================
   1. Global Reset
   2. Navbar (Desktop)
   3. Dropdown Menu
   4. Offcanvas Menu (Mobile)
   5. Responsive Styles
=========================== */

/* 1. Global Reset */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Times, 'Times New Roman', serif;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 12px;
}

a {
    text-decoration: none;
}

body,
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.main_wraP {
    overflow: hidden;
}

/* ---------- Top Header ---------- */
.top-header {
    background-color: #000;
    color: white;
    font-size: 14px;
    text-align: center;
}

.top-header .contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.top-header i {
    margin-right: 6px;
    color: #fff;
    font-size: 16px;
}

.top-header span {
    vertical-align: middle;
}

@media (max-width: 768px) {
    .top-header {
        font-size: 14px;
    }

    .top-header .contact-info {
        flex-direction: row-reverse;
        gap: 10px;
    }

    .contact-item:has(.bi-geo-alt) {
        display: none !important;
    }

}




/* ===== NAVBAR ===== */
.navbar {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-weight: 500;

}

.navbar {
    width: 100%;
    transition: all 0.3s ease;
    z-index: 1050;
}

/* Fixed style when scrolling */
.navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    /* ensures it's visible above content */
}

.navbar-nav .nav-link {
    color: #0c6e6d !important;
    margin: 0 8px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #796831 !important;
}

/* Dropdown hover for desktop */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;

}

.dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);

}

.dropdown-item:hover {
    background-color: #0c6e6d;
    color: #fff;

    .footer-bottom {
        margin-top: 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        font-size: 13px;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
}

/* ===== BUTTONS ===== */
.navbar-btns .btn {
    border-radius: 30px;
    padding: 6px 18px;
    font-weight: 500;
}

.btn-primary {
    background-color: #0c6e6d;
    border: none;
}

.btn-primary:hover {
    background-color: #004aad;
}

.btn-outline-primary {
    border: 2px solid #0c6e6d;
    color: #0c6e6d;
}

.btn-outline-primary:hover {
    background-color: #0c6e6d;
    color: #fff;
}

/* ===== OFFCANVAS ===== */
.offcanvas-start {
    width: 280px;
}

/* Responsive dropdown fix */
@media (max-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: none;
    }

    .navbar-btns {
        justify-content: center;
    }
}


/* navbar exit */


/* ===== Banner ===== */
.banner {
    position: relative;
    width: 100%;
    min-height: 70vh;
    /* adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
    /* ensures video doesn’t overflow */
}

/* Background Video */
.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    /* keep behind overlay and text */
}

/* Overlay for readability */
.banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 110, 109, 0.6);
    /* overlay color */
    z-index: -1;
}

/* Banner Content */
.banner-content {
    position: relative;
    z-index: 1;
    /* keep text above video and overlay */
    max-width: 800px;
    padding: 0 20px;
}

.banner h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.banner-content a {
    background: #f6b93b;
}

/* Button Style */
.btn-golden {
    background: #f6b93b;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-golden:hover {
    background: #0C6E6D;
    text-decoration: none;
    color: #000;
}

/* Responsive */
@media (max-width: 992px) {
    .banner h1 {
        font-size: 2.5rem;
    }

    .banner p {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .banner h1 {
        font-size: 2rem;
    }

    .banner p {
        font-size: 1rem;
    }

    .btn-golden {
        padding: 10px 25px;
    }
}


/* ===== About ===== */
.about-us {
    background-color: #e9fffe;
    text-align: center;
    padding: 40px 20px;
}

.about-us h2 {
    color: #000000;
    font-weight: 700;
    border-bottom: 3px solid #0c6e6d;
    padding-bottom: 5px;
    display: inline-block;
}

.about-us p {
    font-size: 15px;
    color: #000000;
    margin-bottom: 15px;
    text-align: left;
}

.about-us img {
    max-width: 400px;
    height: 400px;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .about-us img {
        max-width: 100%;
        height: 100%;
    }

    .about-us h2 {
        color: #000000;
        font-size: 18px;
        font-weight: 700;
        border-bottom: 3px solid #0c6e6d;
        padding-bottom: 5px;
        display: inline-block;
    }
}



/* ===== Recruiters Slider ===== */
.recruiters h1 {
    color: #000000;
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 3px solid #0c6e6d;
    /* Change color & thickness as needed */
    padding-bottom: 5px;
    /* Space between text and underline */
    display: inline-block;
    /* Ensures underline only under text */

}

.recruiter-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-track {
    display: flex;
    gap: 40px;
    animation: none;
    /* animation handled by JS */
}

.slider-track img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: transform 0.3s, filter 0.3s;
}

.slider-track img:hover {
    filter: none;
    transform: scale(1.1);
}

@media (max-width: 600px) {
    .slider-track img {
        width: 90px;
        height: 90px;
        gap: 25px;
    }

    .recruiters h1 {
        color: #000000;
        font-size: 1.3rem;
        font-weight: 700;
        border-bottom: 3px solid #0c6e6d;
        /* Change color & thickness as needed */
        padding-bottom: 5px;
        /* Space between text and underline */
        display: inline-block;
        /* Ensures underline only under text */

    }
    
}






/* ===== Services ===== */
.services {
    background-color: #f8f9fa;
}

.services h2 {
    color: #000000;
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 3px solid #0c6e6d;
    /* Change color & thickness as needed */
    padding-bottom: 5px;
    /* Space between text and underline */
    display: inline-block;
    /* Ensures underline only under text */
}



.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
}

.service-card {
    background-color: #fff;
    border: 2px solid #0c6e6d10;
    transition: 0.3s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card i {
    font-size: 2.5rem;
    color: #0c6e6d;
    margin-bottom: 15px;
}

.service-card h5 {
    color: #000000;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.95rem;
    color: #333;
    flex-grow: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #0c6e6d;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.btn-golden {
    background-color: #0c6e6d;
    border: none;
    color: #fff;
    padding: 8px 18px;
    border-radius: 25px;
    transition: 0.3s;
}

.btn-golden:hover {
    background-color: #ebd998;
    transform: translateY(-2px);
}

/* Maintain 2 cards per row on small devices */
@media (max-width: 576px) {
    .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .services h2 {
        color: #000000;
        font-size: 1.5rem;
        font-weight: 700;
        border-bottom: 3px solid #0c6e6d;
        padding-bottom: 5px;
        display: inline-block;
    }
}



/* ===== Job / Hire Section ===== */
.job-hire {
    background-color: #ffffff;
    padding: 60px 20px;
    color: rgb(0, 0, 0);
}

.job-hire h3 {
    color: #000000;
    margin-bottom: 10px;
    font-weight: bolder;
}

.job-hire p {
    padding: 20px;
    font-size: 1rem;
    position: relative;
    color: #000000;
}

/* ===== Buttons ===== */
.job-hire .btn {
    background-color: #0c6e6d;
    /* Teal background */
    color: #ffffff;
    /* White text */
    border: 2px solid #0c6e6d;
    /* Matching border */
    padding: 10px 25px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Hover effect */
.job-hire .btn:hover {
    background-color: #e3cc80;
    /* Gold on hover */
    color: #0c6e6d;
    /* Teal text */
    border-color: #e3cc80;
    transform: scale(1.05);
}

/* Vertical border divider */
.job-hire .left-box {
    border-right: 3px solid #0c6e6d;
    ;
}

@media (max-width: 768px) {
    .job-hire .left-box {
        border-right: none;
        border-bottom: 2px solid #e3cc80;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
}




/* ===== Breadcrumb Section ===== */
.breadcrumb-section {
    position: relative;
    text-align: center;
    font-family: "Poppins", sans-serif;
    /* background-color: #e8d18b; */
    /* background-color: #EBD998; */
    /* background: linear-gradient(to right, #FFC50F, #609dd3); */
    /* background: linear-gradient(to right, #EBD998, #609dd3); */
    /* background-color: #FFC50F; */
    background-color: #013a0f;
    padding: 60px 0;
    overflow: hidden;
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.075);
    z-index: 1;
}

.breadcrumb-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.breadcrumb-inner h1 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

/* Breadcrumb list container */
.breadcrumb-list {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 12px 20px;
    margin: 0;
    border-radius: 50px;
    /* background: rgba(0, 0, 0, 0.10); */
    background-color: #ffffff;
    backdrop-filter: blur(6px);
    font-size: 16px;
}

/* Breadcrumb items */
.breadcrumb-list li {
    color: #000000;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.breadcrumb-list li a {
    color: #000000;
    text-decoration: none;
    position: relative;
}

.breadcrumb-list li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #000000;
    left: 0;
    bottom: -2px;
    transition: width 0.3s ease;
}

.breadcrumb-list li a:hover::after {
    width: 100%;
}

/* Arrow separator styling */
.breadcrumb-list li.separator {
    margin: 0 8px;
    font-size: 18px;
    color: #000000;
    font-weight: 600;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .breadcrumb-inner h1 {
        font-size: 2rem;
    }

    .breadcrumb-list {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .breadcrumb-inner h1 {
        font-size: 2rem;
    }

    .breadcrumb-list {
        padding: 8px 12px;
        gap: 4px;
    }
}

/* ===== Breadcrumb exit ===== */



/* ===== Job Section ===== */
.job-section {
    background-color: #ffffff;
    /* gradient background */
    color: #000000;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 80px 0;
    text-align: center;
}

.job-section h1 {
    color: #000000;
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 3px solid #0c6e6d;
    /* Change color & thickness as needed */
    padding-bottom: 5px;
    /* Space between text and underline */
    display: inline-block;
    /* Ensures underline only under text */
    ;
}


.job-section .lead {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.job-section .career-benefits li {
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 1rem;
}

.job-section .apply-btn,
.job-section .btn-gradient {
    background-color: #0C6E6D;
    /* gradient button */
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.85rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-section .apply-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .job-section h1 {
        font-size: 1.5rem;
    }

    .job-section .career-benefits li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .job-section {
        padding: 60px 15px;
    }

    .job-section h1 {
        font-size: 1.1rem;
    }

    .job-section .career-benefits li {
        font-size: 0.9rem;
    }
}





/* ===== Job Application Form Styling ===== */
.application-section {
    padding: 80px 15px;
    background-color: #f7f7f7;
}

.application-section h2 {
    color: #000000;
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 3px solid #0c6e6d;
    padding-bottom: 5px;
    margin: 0 auto 25px;
    /* centers block and adds bottom spacing */
    text-align: center;
    width: fit-content;
    /* makes width just as wide as text */
}

.application-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.application-form label {
    font-weight: 500;
}

.application-form input,
.application-form textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.application-form input:focus,
.application-form textarea:focus {
    outline: none;
    border-color: #4facfe;
    box-shadow: 0 0 8px rgba(79, 172, 254, 0.4);
}

.submit-btn {
    display: inline-block;
    background-color: #173d62;
    color: #fff;
    font-weight: 600;
    padding: 12px 35px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media(max-width:768px) {
    .application-section h2 {
        font-size: 1.5rem;
    }

    .submit-btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

@media(max-width:480px) {
    .application-section h2 {
        font-size: 1.5rem;
    }

    .application-form {
        padding: 25px 15px;
    }

    .submit-btn {
        padding: 8px 20px;
        font-size: 0.95rem;
    }
}








/* ================== Employee Benefits Page ================== */
.employee-section {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: #fff;
    padding: 80px 15px;
    text-align: center;
}

.employee-section h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.employee-section ul {
    list-style: none;
    max-width: 900px;
    margin: auto;
    padding-left: 0;
    text-align: left;
}

.employee-section ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
    padding-left: 35px;
}

.employee-section ul li::before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.btn-redirect {
    display: inline-block;
    margin: 30px auto 0;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    transition: all 0.3s ease;
}

.btn-redirect:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* ================== Employer Form Page ================== */
.employer-form-section {
    padding: 80px 15px;
    background-color: #f8f9fa;
}

.employer-form-section h1 {
    color: #000000;
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 3px solid #0c6e6d;
    padding-bottom: 5px;
    margin: 0 auto 25px;
    /* centers block and adds bottom spacing */
    text-align: center;
    width: fit-content;
    /* makes width just as wide as text */
}

.employer-form-section form {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.employer-form-section label {
    font-weight: 500;
    margin-bottom: 5px;
}

.employer-form-section input,
.employer-form-section textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 1rem;
    transition: 0.3s;
}

.employer-form-section input:focus,
.employer-form-section textarea:focus {
    outline: none;
    border-color: #4facfe;
    box-shadow: 0 0 8px rgba(79, 172, 254, 0.4);
}

.btn-gradient {
    display: inline-block;
    background-color: #173d62;
    color: #fff;
    font-weight: 600;
    padding: 15px 40px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* ================== Responsive Styles ================== */
@media (max-width: 992px) {

    .employee-section h1,
    .employer-form-section h1 {
        font-size: 1.5rem;
    }

    .employee-section ul li {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {

    .employee-section h1,
    .employer-form-section h1 {
        font-size: 1.5rem;
    }

    .employee-section ul li {
        font-size: 0.95rem;
    }

    .btn-redirect,
    .btn-gradient {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {

    .employee-section h1,
    .employer-form-section h1 {
        font-size: 1.5rem;
    }

    .employee-section ul li {
        font-size: 14px;
        font-weight: 300;
    }

    .employer-form-section form {
        padding: 25px 15px;
    }

    .btn-redirect,
    .btn-gradient {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}




/* about-us */
.about-section {
    background-color: #e9fffe;
    padding: 40px 20px;
}


.about-section h2 {
    color: #000000;
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 3px solid #0c6e6d;
    /* Change color & thickness as needed */
    padding-bottom: 5px;
    /* Space between text and underline */
    display: inline-block;
    /* Ensures underline only under text */
}

.about-section p {
    font-size: 15px;
    color: #000000;
    margin-bottom: 15px;
    text-align: left;
}

.about-section ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.about-section ul li i {
    font-size: 18px;
}

.about-section img {
    max-width: 400px;
    height: 400px;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {

    .about-section h2 {
        color: #000000;
        font-size: 1.3rem;
        font-weight: 700;
        border-bottom: 3px solid #0c6e6d;
        padding-bottom: 5px;
        display: inline-block;
    }

    .about-section p {
        font-size: 14px;
        font-weight: 300;
        color: #000000;
        text-align: left;
    }


    .about-section {
        text-align: center;
    }

    .about-section .col-lg-6 {
        text-align: center !important;
    }

    @media (max-width: 600px) {
        .about-section img {
            max-width: 350px;
            height: 350px;
        }
    }

}

/* about-us exit*/


/* Why Choose Us  */

/* Container */
.why-choose-us {
    padding: 60px 20px;
    background-color: #e9f6ff;
    text-align: center;
}

.why-choose-us h2 {
    color: #000000;
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 3px solid #0c6e6d;
    /* Change color & thickness as needed */
    padding-bottom: 5px;
    /* Space between text and underline */
    display: inline-block;
    /* Ensures underline only under text */
}

.why-choose-us h3 {
    font-weight: bold;

}


.why-choose-us p {
    margin-bottom: 40px;
    color: #000000;
    padding: 0 10px;
}

/* Cards container */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card .icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 30px 0 0 0;
    margin: 0 auto 15px;
    /* border: 2px solid #0c6e6d; */
    /* padding: 5px; */
    background-color: #fff;
}

/* Hover overlay */
.card {
    position: relative;
    overflow: hidden;
    border-radius: 30px 0 30px 0px;
    /* keep overlay within card */
}

.card::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #54cecc;
    transition: top 0.4s ease;
    z-index: 0;
}

.card:hover::before {
    top: 0;
}

/* Keep text and icons above overlay */
.card .icon,
.card h3,
.card p {
    position: relative;
    z-index: 1;
}


/* Responsive */
@media (max-width: 992px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-us h2 {
        color: #000000;
        font-size: 1.5rem;
        font-weight: 700;
        border-bottom: 3px solid #0c6e6d;
        padding-bottom: 5px;
        display: inline-block;
    }
}

@media (max-width: 600px) {
    .cards {
        grid-template-columns: 1fr;
    }
}

/* Why Choose Us exit */


/* Mission & Vision */

.mission-section {
    padding: 60px 20px;
    background-color: #e9f6ff75;
}

.mission-section h2 {
    color: #000000;
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 3px solid #0c6e6d;
    /* Change color & thickness as needed */
    padding-bottom: 5px;
    /* Space between text and underline */
    display: inline-block;
    /* Ensures underline only under text */
}

.mission-section p {
    font-size: 15px;
    color: #000000;
    text-align: left;
    margin-bottom: 15px;
    line-height: 1.7;
}

.mission-section ul {
    padding-left: 0;
    margin-top: 15px;
}

.mission-section ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #000;
    text-align: left;
    display: flex;
    align-items: start;
    gap: 8px;
}

.mission-section ul li i {
    font-size: 18px;
    color: #0c6e6d;
    margin-top: 3px;
}

.mission-section img {
    width: 570px;
    max-width: 562px;
    height: 418px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-section {
        text-align: center;
    }

    .mission-section h2 {
        color: #000000;
        font-size: 1.5rem;
        font-weight: 700;
        border-bottom: 3px solid #0c6e6d;
        /* Change color & thickness as needed */
        padding-bottom: 5px;
        /* Space between text and underline */
        display: inline-block;
        /* Ensures underline only under text */
    }

    .mission-section .col-lg-6 {
        text-align: center !important;
    }

    .mission-section img {
        max-width: 100%;
        height: 100%;
    }
}



/* Mission & Vision exit */



/* Our Vision Section */
.vision-section {
    padding: 60px 20px;
    background-color: #e9fffe75;
}

.vision-section h2 {
    color: #000000;
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 3px solid #0c6e6d;
    /* Change color & thickness as needed */
    padding-bottom: 5px;
    /* Space between text and underline */
    display: inline-block;
    /* Ensures underline only under text */
}

.vision-section p {
    font-size: 15px;
    color: #000000;
    text-align: left;
    margin-bottom: 15px;
    line-height: 1.7;
}

.vision-section ul {
    padding-left: 0;
    margin-top: 15px;
}

.vision-section ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #000;
    text-align: left;
    display: flex;
    align-items: start;
    gap: 8px;
}

.vision-section ul li i {
    font-size: 18px;
    text-align: left;
    color: #0c6e6d;
    margin-top: 3px;
}

.vision-section img {
    width: 570px;
    max-width: 562px;
    height: 430px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .vision-section {
        text-align: center;
    }

    .vision-section h2 {
        color: #000000;
        font-size: 1.5rem;
        font-weight: 700;
        border-bottom: 3px solid #0c6e6d;
        /* Change color & thickness as needed */
        padding-bottom: 5px;
        /* Space between text and underline */
        display: inline-block;
        /* Ensures underline only under text */
    }

    .vision-section .col-lg-6 {
        text-align: center !important;
    }

    .vision-section img {
        max-width: 100%;
        height: 100%;
    }
}

/* Our Vision Section exit*/





/* Premium Services Section */
.premium-services {
    padding: 40px 20px;
    background-color: #ffffff;
}

.premium-services h2 {
    color: #000000;
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 3px solid #0c6e6d;
    /* Change color & thickness as needed */
    padding-bottom: 5px;
    /* Space between text and underline */
    display: inline-block;
    /* Ensures underline only under text */
}

.premium-services p {
    font-size: 15px;
    color: #000000;
    text-align: left;
    line-height: 1.7;
}

.premium-services ul {
    padding-left: 0;
    margin-top: 15px;
}

.premium-services ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #000;
    display: flex;
    align-items: start;
    gap: 8px;
}


.premium-services ul li i {
    font-size: 18px;
    color: #0c6e6d;
    margin-top: 3px;
}

.premium-services img {
    width: 100%;
    max-width: 500px;
    /* Controls width consistency */
    height: 320px;
    /* Fixed height for uniform look */
    object-fit: cover;
    /* Ensures image fills area without distortion */
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .premium-services {
        text-align: center;
    }

    .premium-services h2 {
        color: #000000;
        margin-top: -20px;
        font-size: 1.5rem;
        font-weight: 700;
        border-bottom: 3px solid #0c6e6d;
        /* Change color & thickness as needed */
        padding-bottom: 5px;
        /* Space between text and underline */
        display: inline-block;
        /* Ensures underline only under text */
    }

    .premium-services .col-lg-6 {
        text-align: center !important;
    }

    .premium-services img {
        max-width: 100%;
        margin-bottom: 25px;
    }
}

/* Premium Services Section exir*/





/* ==== GALLERY CONTAINER ==== */
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 50px;
    max-width: 1200px;
    margin: auto;
}

/* ==== GALLERY ITEMS ==== */
.gallery-item {
    position: relative;
    flex: 0 0 calc(25% - 20px);
    max-width: calc(25% - 20px);
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    /* keeps square ratio */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ==== RESPONSIVE (TABLET & MOBILE) ==== */
@media (max-width: 992px) {
    .gallery-item {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .gallery-container {
        padding: 30px;
        gap: 15px;
    }

    .gallery-item {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}






/* Contact use */

/* ===== Contact Section ===== */
.contact-section {
    background-color: #f9fafc;
}

/* Info Boxes */
.info-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.info-box:hover {
    transform: translateY(-5px);
}

.info-box i {
    font-size: 30px;
    color: #0c6e6d;
    margin-bottom: 10px;
    display: block;
}


/* Map */
.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 12px;
}

/* Popup */
.popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup.active {
    display: flex;
}

.popup-content {
    background: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.popup-content button {
    background: #004aad;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
}

.popup-content button:hover {
    background: #0072ff;
}

/* Responsive */
@media (max-width: 768px) {
    .info-box {
        margin-bottom: 20px;
    }

    .contact-form {
        padding: 25px;
    }

    .map-container iframe {
        height: 300px;
    }
}


/* Contact use exit*/





.footer {
    background: #0b0b0b;
    color: #fff;
    padding-top: 50px;
    font-family: 'Poppins', sans-serif;
}

.footer .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-top img {
    width: 130px;
    height: 80px;
    margin-bottom: 20px;
}

.footer-column {
    flex: 1 1 200px;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #fdbe00;
    border-bottom: 2px solid #fdbe00;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #fdbe00;
}

/* Contact Icons */
.footer-column.contact ul li i {
    margin-right: 8px;
    color: #fdbe00;
}

/* Gallery Grid (2x3 Layout) */
.footer-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.footer-gallery img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.footer-gallery img:hover {
    transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom {
    background: #1a1a1a;
    text-align: center;
    padding: 10px 5px;
    border-top: 2px solid #ffffff;
    margin-top: 40px;
}

/* .footer-bottom .social-links {
    margin-bottom: 10px;
}

.footer-bottom .social-links a {
    color: #e8d08a;
    margin: 0 10px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-bottom .social-links a:hover {
    color: #fff;
} */

.footer-bottom p {
    font-size: 16px;
    color: #ffffff;
    margin: 10px 0;
}

/* .back-to-top {
    display: inline-block;
    color: #e8d08a;
    margin-top: 10px;
    font-size: 20px;
    transition: 0.3s;
}

.back-to-top:hover {
    color: #fff;
} */

/* Responsive Design */
@media (max-width: 992px) {
    .footer-top {
        justify-content: center;
        text-align: center;
    }

    .footer-column {
        flex: 1 1 45%;
    }

    .footer-gallery .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        flex: 1 1 100%;
    }

    .footer-gallery .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Back to top button  WhatsApp Floating Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #ffc105;
    border: 2px solid #e8d08a;
    color: #0c6e6d;
    border-radius: 50%;
    font-size: 22px;
    padding: 8px 10px;
    text-decoration: none;
    transition: 0.3s;
    z-index: 999;
}

.back-to-top:hover {
    background: #ffffff;
    border: 2px solid #e8d08a;
    color: #e8d08a;
}

/* WhatsApp Floating Button (Above Back to Top)*/
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    /* sits above back-to-top */
    right: 30px;
    background: #25d366;
    border: 2px solid #25d366;
    color: #ffffff;
    border-radius: 50%;
    padding: 8px 10px;
    font-size: 22px;
    text-decoration: none;
    transition: 0.3s;
    z-index: 999;
}

.whatsapp-float:hover {
    background: #ffffff;
    color: #25d366;
}

/* =========================================
   Responsive Adjustments
========================================= */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 90px;
        /* same spacing as desktop */
        right: 20px;
    }

    .back-to-top {
        bottom: 30px;
        right: 20px;
    }
}