* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

:root {
    --primary-orange: #F05A28;
    --primary-blue: #234781;
    --dark-bg: #0a0a0a;
    --green: #75F60C;

}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button {
    font-family: 'Inter', sans-serif;
}

.social-fixed {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 12px 8px;
    border-radius: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.social-fixed a {
    background: var(--primary-blue);
    width: 44px;
    height: 44px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: 0.25s;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.social-fixed a:hover {
    background: var(--primary-orange);
    color: #fff;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .social-fixed {
        right: 12px;
        gap: 10px;
        padding: 8px 6px;
    }

    .social-fixed a {
        width: 30px;
        height: 30px;
        font-size: 1.1rem;
        line-height: 30px;
    }
}

/* ---------- HEADER ---------- */
.navbar-transparent {
    background-color: transparent !important;
    transition: all 0.3s ease-in-out;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    height: 70px;
}

.navbar-scrolled {
    background-color: white !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 0.7rem 2rem;
}

.navbar-scrolled .nav-link {
    color: #000 !important;
}

.navbar-scrolled .navbar-brand {
    color: #000 !important;
}

.navbar-scrolled .btn-book-nav {
    background-color: var(--primary-blue) !important;
    color: white !important;
    border-color: var(--primary-blue) !important;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.7rem;
    letter-spacing: -0.02em;
    color: white !important;
}

.navbar-brand span {
    color: var(--primary-orange);
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 0.6rem;
    color: white !important;
    transition: 0.2s;
    border-bottom: 1px solid transparent;
}

.nav-link:hover {
    color: var(--primary-orange) !important;
    border-bottom: 1px solid var(--primary-orange);
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: transparent;
}

.navbar-scrolled .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.7);
}

.navbar-scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.btn-book-nav {
    border: 2px solid white;
    background: transparent;
    color: white;
    padding: 8px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.2s;
}

.btn-book-nav:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
}

@media (max-width: 991px) {
    .navbar-transparent {
        padding: 0.8rem 1rem;
    }

    .navbar-collapse {
        background: var(--primary-blue); 
        padding: 20px;
        border-radius: 20px;
        margin-top: 10px;
    }

    .navbar-scrolled .navbar-collapse {
        background: white;
    }

    .navbar-scrolled .navbar-collapse .nav-link {
        color: #000 !important;
    }
}

/* Hero Section */
.hero-section {
    height: 95vh;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 10%), url('../image/hero-image.jpeg') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow-x: hidden;
}

.hero-content {
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-content .tagline {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-orange);
    margin-bottom: 0.8rem;
}

.hero-content p {
    font-size: 1rem;
    max-width: 650px;
    margin: 1rem auto;
    font-weight: 400;
    line-height: 1.5;
}

.btn-cta {
    background: var(--primary-orange);
    color: white;
    padding: 10px 30px;
    border-radius: 40px;
    font-weight: 600;
    margin: 0.4rem;
    transition: 0.25s;
    border: none;
    font-size: 0.95rem;
}

.btn-cta-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 10px 30px;
    border-radius: 40px;
    font-weight: 600;
    margin: 0.4rem;
}

.btn-cta-outline:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.btn-cta:hover {
    transform: translateY(-3px);
    background: #e04a1a;
}

section {
    padding: 50px 0;
    width: 100%;
    overflow-x: hidden;
}

.container,
.container-fluid {
    overflow-x: hidden;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    /* margin-bottom: 48px; */
    text-align: center;
    color: #111;
    /*text-decoration: 4px underline var(--primary-orange);*/
}

.section-title span {
    color: var(--primary-orange);
}


/* Why Choose Us */
.why-card {
    background: #f8f9fa;
    padding: 28px 20px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
    border: 1px solid white;
}

.why-card:hover {
    border-color: var(--green);
    transform: translateY(-5px);
}

.why-card i {
    font-size: 2.3rem;
    margin-bottom: 18px;
    color: var(--primary-orange);
    width: 70px;
    height: 70px;
    background: rgba(35, 71, 129, 0.07);
    border-radius: 28px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;

}

.why-card h4 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Counter Section */
.counter-section {
    background: var(--primary-blue);
    padding: 70px 0;
}

.counter-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
}

/* ----- SERVICE----- */
.services-section {
    padding: 50px 0;
    width: 90%;
    max-width: 1400px;
    margin-inline: auto;
    color: #111;
}

.services-section h2 {
    text-transform: capitalize;
    letter-spacing: 0.025em;
    font-size: clamp(2rem, 1.8125rem + 0.75vw, 2.6rem);
    text-align: center;
    margin-bottom: 1.5rem;
}

.services-section .serv-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    margin-top: 3em;
}

@media (max-width: 1200px) {
    .services-section .serv-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-section .serv-container {
        grid-template-columns: 1fr;
    }
}

.services-section .serv-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.services-section .serv-card:nth-child(1) .serv-box .serv-icon .serv-iconBox {
    background: var(--primary-orange);
}

.services-section .serv-card:nth-child(2) .serv-box .serv-icon .serv-iconBox {
    background: var(--primary-blue);
}

.services-section .serv-card:nth-child(3) .serv-box .serv-icon .serv-iconBox {
    background: var(--primary-orange);
}

.services-section .serv-card:nth-child(4) .serv-box .serv-icon .serv-iconBox {
    background: var(--primary-blue);
}

.services-section .serv-card .serv-content {
    padding: 1rem 0.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.services-section .serv-card .serv-content h3 {
    text-transform: capitalize;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.services-section .serv-card .serv-content p {
    margin: 0.5rem 0 0.8rem;
    color: #565656;
    font-size: 0.85rem;
    line-height: 1.45;
}

.serv-highlight {
    font-size: 0.8rem;
    color: var(--primary-orange);
    font-weight: 600;
    margin: 4px 0;
}

.services-section .serv-card-inner {
    position: relative;
    width: inherit;
    height: 16rem;
    background: var(--clr);
    border-radius: 1.25rem;
    border-bottom-right-radius: 0;
    overflow: hidden;
}

.services-section .serv-box {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 1.25rem;
    overflow: hidden;
}

.services-section .serv-imgBox {
    position: absolute;
    inset: 0;
}

.services-section .serv-imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-section .serv-imgBox img:hover {
    transform: scale(1.75);
    transition: 0.3s;
}

.services-section .serv-icon {
    position: absolute;
    bottom: -0.375rem;
    right: -0.375rem;
    width: 5rem;
    height: 5rem;
    background: var(--clr);
    border-top-left-radius: 50%;
}

.services-section .serv-icon:hover .serv-iconBox {
    transform: scale(1.1);
}

.services-section .serv-icon::before {
    position: absolute;
    content: "";
    bottom: 0.375rem;
    left: -1.25rem;
    background: transparent;
    width: 1.25rem;
    height: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    box-shadow: 0.313rem 0.313rem 0 0.313rem #fff;
}

.services-section .serv-icon::after {
    position: absolute;
    content: "";
    top: -1.25rem;
    right: 0.375rem;
    background: transparent;
    width: 1.25rem;
    height: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    box-shadow: 0.313rem 0.313rem 0 0.313rem var(--clr);
}

.services-section .serv-icon .serv-iconBox {
    position: absolute;
    inset: 0.625rem;
    background: #282828;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    text-decoration: none;
}

.services-section .serv-icon .serv-iconBox span {
    color: #fff;
    font-size: 1.3rem;
}

.serv-card-buttons {
    display: flex;
    gap: 10px;
    /* margin-top: 2px; */
    flex-wrap: wrap;
}

.btn-serv-detail {
    background: transparent;
    border: 1.5px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 7px 16px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.7rem;
    transition: 0.2s;
    text-decoration: none;
}

.btn-serv-detail:hover {
    background: var(--primary-blue);
    color: white;
}

.btn-serv-book {
    background: var(--primary-orange);
    border: none;
    color: white;
    padding: 7px 16px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.7rem;
    transition: 0.2s;
    text-decoration: none;
}

.btn-serv-book:hover {
    background: #e04a1a;
}

.testimonials-section {
        padding: 5rem 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.5)), url('../image/faqhero.jpg') center center/cover no-repeat fixed;
        position: relative;
        overflow: hidden;
    }


    .testimonial-card {
        background: white;
        border-radius: 20px;
        padding: 1.5rem;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
        position: relative;
        margin: 0 15px;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .testimonial-quote {
        position: absolute;
        top: 20px;
        right: 25px;
        font-size: 3rem;
        color: rgba(42, 107, 156, 0.1);
    }

    .client-name {
        font-weight: 500;
        color: var(--primary);
        margin-top: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .stars {
        color: #FFD700;
        margin-bottom: 1.5rem;
    }

    .testimonial-text {
        line-height: 1.7;
        color: #555;
        font-style: italic;
        position: relative;
        padding: 0 1rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--primary);
        opacity: 1;
        top: 50%;
        transform: translateY(-50%);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .carousel-control-prev {
        left: -25px;
    }

    .carousel-control-next {
        right: -25px;
    }

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        background: var(--secondary);
        transform: translateY(-50%) scale(1.1);
    }



    .carousel-indicators button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: var(--primary);
        opacity: 0.4;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .carousel-indicators button.active {
        opacity: 1;
        transform: scale(1.3);
        background-color: var(--secondary);
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
        .testimonial-card {
            padding: 2rem;
        }

        .carousel-control-prev {
            left: 10px;
        }

        .carousel-control-next {
            right: 10px;
        }
    }

    @media (max-width: 768px) {
        .testimonials-section {
            padding: 3rem 0;
        }

        .testimonial-card {
            padding: 1.5rem;
            margin: 0 10px;
        }

        .testimonial-img {
            width: 80px;
            height: 80px;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 40px;
            height: 40px;
        }
    }

    @media (max-width: 576px) {
        .testimonial-card {
            padding: 1.2rem;
        }

        .testimonial-text {
            font-size: 0.95rem;
        }
    }
    
      .osd-partners-title {
        font-weight: 700;
        font-size: 2rem;
    }

    .osd-highlight {
        color: #F05A28;
    }

    .osd-partners-subtext {
        color: #6c757d;
        font-size: 0.95rem;
    }

    .osd-partner-logo {
        max-height: 60px;
        object-fit: contain;
        transition: all 0.3s ease;
    }

    .osd-partner-logo:hover {
        transform: scale(1.05);
    }

    .osd-trust-badge {
         display: inline-block;
        font-size: 0.8rem;
        font-weight: 600;
        color: #234781;
        background: var(--primary orange);
        padding: 6px 14px;
        border-radius: 50px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

/* Reach out */
.reach-card {
    /* background: #f9f9f9; */
    border-radius: 28px;
    padding: 36px 28px;
    height: 100%;
}

.reach-card i {
    color: var(--primary-orange);
    width: 28px;
}
.reach-card a {
    color: #234781;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}
.map-placeholder {
    background: #e9ecef;
    border-radius: 28px;
    height: 100%;
    min-height: 320px;
    overflow: hidden;
}

iframe {
    width: 100%;
    height: 100%;
    border-radius: 28px;
}

/* Detailed Footer */
.footer-detailed {
    background: var(--primary-blue);
    color: white;
    padding: 60px 0 30px;
}

.footer-detailed h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-detailed a {
    color: white;
    text-decoration: none;
    transition: 0.2s;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 8px;
}

.footer-detailed a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 25px;
    margin-top: 20px;
    text-align: center;
    font-size: 0.75rem;
}


@media (max-width: 768px) {
    .navbar-transparent {
        padding: 0.1rem 0.1rem;
    }

    section {
        padding: 50px 0;
    }

    .hero-section {
        height: 85vh;
        min-height: 500px;
    }
    
    .hero-content p {
    font-size: 0.85rem;
    }
    
    .whyus p{
            font-size: 0.85rem;
        
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: row;
        gap: 10px;
    }

    .btn-cta,
    .btn-cta-outline {
        padding: 8px 18px;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }
}

.bafg-wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 10px;
        }

        .bafg-head {
            text-align: center;
            margin-bottom: 30px;
        }

        .bafg-head h2 {
            font-size: 30px;
            margin: 0 0 10px 0;
            font-weight: 700;
        }

        .bafg-head p {
            color: #666;
            margin: 0;
        }

        /* FAST GRID - Same size cards */
        .bafg-grid {
            display: grid;
            gap: 10px;
            grid-template-columns: 1fr;
        }

        /* ALL CARDS SAME SIZE */
        .bafg-card {
            background: #fff;
            border-radius: 2px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        /* FIXED HEIGHT for image container */
        .bafg-images {
            display: flex;
            height: 250px;
            width: 100%;
        }

        .bafg-half {
            width: 50%;
            position: relative;
            overflow: hidden;
        }
        
         .bafg-cover{
            width: 100%;
            position: relative;
            overflow: hidden;
        }


        .bafg-half img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .bafg-label {
            position: absolute;
            bottom: 10px;
            left: 10px;
            background: var(--primary-blue);
            color: white;
            padding: 4px 12px;
            border-radius: 2px;
            font-size: 12px;
            font-weight: bold;
            z-index: 2;
        }

        .bafg-footer {
            background: var(--primary-blue);
            padding: 10px;
            text-align: center;
            min-height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .bafg-footer span {
            color: white;
            font-size: 15px;
            font-weight: 600;
        }
        
        .bafg-footercover {
            background: var(--primary-blue);
            padding: 10px;
            text-align: center;
            min-height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
          .bafg-footercover span {
            color: white;
            font-size: 15px;
            font-weight: 600;
        }


        /* Responsive */
        @media (min-width: 768px) {
            .bafg-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .bafg-images {
                height: 250px;
            }
        }

        @media (min-width: 1024px) {
            .bafg-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .bafg-images {
                height: 250px;
            }
        }

        /* CRITICAL: Lazy loading optimization */
        .bafg-half img {
            loading: lazy;
            decoding: async;
        }

        /* Performance: Reduce motion */
        @media (prefers-reduced-motion: reduce) {
            .bafg-card {
                transition: none;
            }
        }
        
          /* Minimal scrollbar */
    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: #f1f1f1;
    }
      ::-webkit-scrollbar-thumb {
      background: var(--orange);
      border-radius: 10px;
    }