/* ===========================
   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: #bd2d37;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

/* INNER LAYOUT */
.top-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT SIDE */
.top-header-left {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.top-header-left .contact-line {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
}

.top-header-left i {
    color: #ffffff;
    font-size: 15px;
}

/* RIGHT SIDE */
.top-header-right {
    width: 60%;
    overflow: hidden;
    text-align: right;
}

.top-header-right marquee {
    color: #ffffff;
    font-weight: 700;
    white-space: nowrap;
    font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .top-header-inner {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    @media (max-width: 991px) {
        .top-header-left {
            opacity: 0;
            visibility: hidden;
            height: 0;
            overflow: hidden;
        }
    }

    .top-header-left,
    .top-header-right {
        width: 100%;
        align-items: center;
        text-align: center;
    }
}

/* Top Header Exit*/


/* ===== NAVBAR ===== */
.navbar {
    background: transparent !important;
    font-weight: 500;

}

.navbar {
    width: 100%;
    height: 100px;
    transition: all 0.3s ease;
    z-index: 1050;
    background: #fff
}

/* Fixed style when scrolling */
.navbar.fixed {
    position: fixed;
    background: #ffffff !important;
    top: 0;
    left: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.247);
    background-color: #fff;
    /* ensures it's visible above content */
}

.navbar-nav .nav-link {
    color: #bd2d37 !important;
    margin: 0 8px;
    font-size: 18px;
    font-weight: 700;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #000000 !important;
}

.courses-dropdown:hover .courses-menu {
    display: block;
}


/* Arrow rotation (optional) */
.courses-dropdown .courses-toggle::after {
    transform: rotate(90deg);
}

/* About Exit */

.dropdown-item:hover {
    border-top: 1px solid rgb(0, 0, 0);
    border-bottom: 1px solid rgb(0, 0, 0);
    color: #176CB1;
}

.navbar-brand {
    margin-top: -12px;
    width: 100px;
    height: 80px;
}

/* ===== BUTTONS ===== */
.navbar-btns .btn {
    border-radius: 30px;
    padding: 6px 18px;
    font-size: 18px;
    font-weight: 700;
}


.btn-outline-primary {
    border: 2px solid #E93F38;
    color: #E93F38;
}

.btn-outline-primary:hover {
    background-color: #00008B;
    border: 1px solid #00008B;
    color: #fff;
}

/* ===== OFFCANVAS ===== */
.offcanvas-start {
    width: 280px;
}

.offcanvas-contact {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 10px;
    background-color: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.offcanvas-contact p {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #000000;
}

.offcanvas-contact i.bi {
    font-size: 16px;
    margin-right: 5px;
}



/* Responsive dropdown fix */
@media (max-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: none;
    }

    .navbar-btns {
        justify-content: center;
    }

}


/* === Mobile / Offcanvas: show dropdown menu so inner links are visible === */
/* On small screens show courses-menu as part of the flow (not absolute) */
@media (max-width: 991px) {
    .courses-menu {
        display: block !important;
        /* make sure it's visible on mobile */
        position: static !important;
        /* stack under the toggle */
        width: 100% !important;
        min-width: auto;
        box-shadow: none !important;
        background: transparent !important;
        /* let offcanvas background show */
        padding: 0;
        /* remove desktop padding if any */
        margin: 0;
    }
    

    /* style the menu items for mobile list view inside offcanvas */
    .courses-menu .dropdown-item {
        display: block;
        width: 100%;
        padding: 12px 18px;
        margin: 6px 0;
        background: #fff;
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, 0.04);
    }

    /* ensure the courses-dropdown container stretches if you want */
    .courses-dropdown {
        width: 100%;
        position: relative;

    }

    /* if you used .open class for mobile toggling earlier, .mobile-open is redundant
     but safe to include so JS and CSS correlate */
    .courses-dropdown.mobile-open .courses-menu {
        display: block !important;
    }
}


/* Also ensure when inside an offcanvas (Bootstrap) the menu shows properly */
.offcanvas .courses-menu {
    display: block !important;
    position: static !important;
    box-shadow: none !important;
    background: transparent !important;
    width: 100%;
    padding: 0;
}



/* navbar exit */

/* ACCL HERO SERVICES SECTION  */

.ACCL_Hero_services {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* BACKGROUND STRIP */
.ACCL_Hero_BG {
    background: #BD2D37;
    width: 100%;
    height: 500px;
}

/* OVERLAY WRAPPER */
.ACCL_Hero_Overlay {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -420px;
    /* overlap background */
}

/* CAROUSEL BOX */
.ACCL_Hero_Carousel {
    background: transparent;
    padding: 0;
    width: 92%;
    max-width: 1400px;
    min-height: 300px;
    margin: 0 auto;
}

/* IMAGE OVERLAY WRAPPER */
.ACCL-hero-image-overlay {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.6s ease-in-out;
}

.ACCL-hero-image-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.582);
    /* semi-transparent black */
    z-index: 1;
    /* ensure overlay is below text */
    border-radius: 12px;
    /* match image rounding */
}

/* IMAGE WITH SHADOW */
.ACCL-hero-image-overlay img {
    width: 100%;
    max-height: 500px;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    transition: transform 1s ease;
}

.carousel-item.active .ACCL-hero-image-overlay img {
    transform: scale(1.05);
}

/* ==============================
   OVERLAY TEXT STYLING
   ============================== */
.ACCL-image-text.left-overlay {
    position: absolute;
    z-index: 2;
    top: 20%;
    left: 5%;
    color: #fff;
    max-width: 700px;
    margin-top: -60px;
    padding: 20px 25px;
    border-radius: 12px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.carousel-item.active .ACCL-image-text.left-overlay {
    opacity: 1;
    transform: translateX(0);
}

/* HEADING INSIDE OVERLAY */
.ACCL-image-text.left-overlay h2 {
    font-size: 70px;
    color: #ffffff;
    font-weight: bolder;
    margin-bottom: 15px;
    line-height: 1.2;
}

/* TICK LIST */
.ACCL-image-text.left-overlay ul {
    list-style: none;
    padding: 0;
    margin-top: 12px;
}

.ACCL-image-text.left-overlay ul li {
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
    color: #ffffff;
    font-size: 22px;
}

.ACCL-image-text.left-overlay ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    width: 25px;
    height: 25px;
    border: 2px solid #BD2D37;
    border-radius: 50%;
    color: #BD2D37;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* BUTTONS UNDER TEXT */
.ACCL-image-buttons {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.ACCL-image-buttons .ACCL-btn.primary {
    background: #BD2D37;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 8px;
    transition: 0.3s ease;
}

.ACCL-image-buttons .ACCL-btn.primary:hover {
    background: #00008B;
    color: #ffffff;
}

.ACCL-image-buttons .ACCL-btn.secondary {
    border: 2px solid #ffffff;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    padding: 12px 28px;
    border-radius: 8px;
    transition: 0.3s ease;
}

.ACCL-image-buttons .ACCL-btn.secondary:hover {
    background: #00008B;
    border: 2px solid #00008B;
    color: #ffffff;
}

/* CAROUSEL CONTROLS */
.ACCL_Hero_Carousel .carousel-control-prev-icon,
.ACCL_Hero_Carousel .carousel-control-next-icon {
    filter: invert(1);
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .ACCL-image-text.left-overlay {
        top: 20%;
        left: 5%;
        transform: translateX(0);
        max-width: 700px;
        text-align: left;
        margin-top: -60px;
    }

    .ACCL-image-text.left-overlay h2 {
        font-size: 50px;
        color: #fff;
        /* smaller heading */
    }

    .ACCL-image-text.left-overlay ul li {
        font-size: 18px;
        /* smaller tick list text */
    }

    .ACCL-image-buttons .ACCL-btn {
        font-size: 14px;
        /* slightly smaller buttons */
        padding: 10px 24px;
    }
}

@media (max-width: 768px) {
    .ACCL-image-text.left-overlay {
        position: absolute;
        top: 20%;
        left: 5%;
        transform: translateX(0);
        max-width: 100%;
        text-align: left;
        margin-top: -60px;
    }

    .ACCL_Hero_BG {
        background: #BD2D37;
        width: 100%;
        height: 500px;
    }

    .ACCL_Hero_Overlay {
        position: relative;
        width: 100%;
        display: flex;
        height: 149px;
        justify-content: center;
        align-items: center;
        margin-top: -375px;
    }

    .ACCL-image-buttons {
        gap: 10px;
        margin-top: 15px;
    }

    .ACCL-image-buttons .ACCL-btn.primary,
    .ACCL-image-buttons .ACCL-btn.secondary {
        font-size: 13px;
        /* smaller text */
        padding: 8px 18px;
        /* shorter buttons */
        border-radius: 6px;
    }

    .ACCL-image-text.left-overlay ul li {
        padding-left: 32px;
        margin-bottom: 10px;
    }

    .ACCL-image-text.left-overlay ul li::before {
        width: 20px;
        height: 20px;
        font-size: 12px;
        border-width: 2px;
        top: 4px;
    }

    .ACCL-image-text.left-overlay h2 {
        font-size: 22px;
        color: #fff;
    }

    .ACCL-image-text.left-overlay ul li {
        font-size: 12px;
        color: #fff;
        /* smaller tick list text for mobile */
    }

    .ACCL-image-buttons .ACCL-btn {
        font-size: 13px;
        /* smaller buttons for mobile */
        padding: 8px 20px;
    }
}

/* ACCL HERO SERVICES SECTION EXIT */


/* steps-section */

section.steps-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

section.steps-section h2 {
    text-align: center;
    font-size: 34px;
    font-weight: bold;
    color: #00008B;
    /* dark blue */
    margin-bottom: 60px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ===== Steps Container ===== */
.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* ===== Individual Step Card ===== */
.step {
    background: #fff;
    border-radius: 20px;
    flex: 1 1 23%;
    /* 4 per row desktop */
    max-width: 23%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    padding: 70px 25px 25px 25px;
    text-align: left;
    /* left-aligned */
    transition: all 0.4s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ===== Step Number Badge ===== */
.step-number {
    position: absolute;
    top: -30px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #BD2D37;
    /* red */
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ===== Step Image ===== */
.step img {
    width: 80px;
    margin-bottom: 20px;
    display: block;
    margin-left: 0;
    /* align left with text */
}

/* ===== Step Title ===== */
.step-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0B1E5B;
    /* dark blue */
}

/* ===== Step Description ===== */
.step-desc {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    /* dark blue */
    line-height: 1.6;
}

/* ===== Tick List ===== */
.step-desc li {
    list-style: none;
    padding-left: 22px;
    position: relative;
    margin-bottom: 8px;
    color: #00008B;
    /* dark blue */
}

.step-desc li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #BD2D37;
    /* red tick */
    font-weight: bold;
}

/* ===== Responsive: Tablets & Mobiles (≤900px) – 2 per row ===== */
@media (max-width: 900px) {
    .step {
        flex: 1 1 45%;
        max-width: 45%;
        padding-top: 80px;
    }

    .step-number {
        top: -25px;
        left: 15px;
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .step-title {
        font-size: 20px;
    }

    .step-desc {
        font-size: 13px;
    }
}

/* ===== Extra Small Screens (<450px) – 2 per row ===== */
@media (max-width: 450px) {
    .step {
        flex: 1 1 45%;
        max-width: 50%;
        padding: 40px 10px 20px 10px;
    }

}

.step-number {
    top: -20px;
    left: 10px;
    width: 45px;
    height: 45px;
    font-size: 16px;
}

.step-title {
    font-size: 18px;
}

.step-desc {
    font-size: 12px;
}


/* ===== Extra Small Screens (<450px) – 2 per row ===== */
@media (max-width: 450px) {
    .step {
        flex: 1 1 45%;
        max-width: 45%;
        padding-top: 70px;
    }

    section.steps-section h2 {
        font-size: 30px;

    }

    .step-number {
        top: -20px;
        left: 10px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .step-title {
        font-size: 18px;
    }

    .step-desc {
        font-size: 12px;
    }
}

/* steps-section Exit */


/* About Us Section */

.about-us-section {
    padding: 50px 0;
    /* Slightly increased padding top/bottom */
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
}

.about-us-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    /* Ensures EQUAL HEIGHT */
    margin: -15px;
    /* Increased margin to give more space */
}

.about-us-col {
    padding: 15px;
    /* Increased column padding */
    width: 100%;
    box-sizing: border-box;
}

/* Desktop Layout: 50/50 split */
@media (min-width: 992px) {
    .about-us-col {
        width: 50%;
    }
}

/* --- Left Column (Image/GIF) Styling --- */
.left-col {
    order: 1;
}

@media (min-width: 992px) {
    .left-col {
        order: 0;
    }
}

.image-wrapper {
    position: relative;
    /* INCREASED HEIGHT: Changed from 65% back to 75% for a taller look (4:3 ratio) */
    padding-bottom: 75%;
    overflow: hidden;
    height: 0;
}

.about-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* --- Right Column (Text Content) Styling --- */
.content-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    /* Increased padding around the text content */
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.content-wrapper h2 {
    color: #00008B;
    font-size: 34px;
    font-weight: bold;
    /* Slightly larger heading */
    margin-top: 0;
    margin-bottom: 15px;
}

.content-wrapper p {
    line-height: 1.6;
    /* Slightly looser line height */
    margin-bottom: 15px;
    color: #000000;
    font-size: 14px;
    /* Standard font size */
}

/* Hide the longer paragraph on mobile to ensure the layout remains clean */
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .content-wrapper h2 {
        font-size: 30px;

    }

}

/* --- Know More Button Styling --- */
.button-container {
    margin-top: 20px;
    text-align: center;
}

@media (min-width: 992px) {
    .button-container {
        text-align: left;
    }
}

.know-more-button {
    padding: 10px 25px;
    /* Slightly larger button padding */
    background-color: #BD2D37;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: 1em;
}

.know-more-button:hover {
    background-color: #85010a;
}

/* About Us Section Exit */


/* services-section */

.services-section {
    padding: 50px 0px;
    background-color: #f9f9f9;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.section-title {
    text-align: center;
    font-size: 34px;
    font-weight: bold;
    color: #00008B;
    margin-bottom: 30px;
}

/* CUSTOM GRID FOR 3 + 4 CARDS */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 calc(33.33% - 25px);
    /* Default: 3 cards per row */
    max-width: 300px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    margin-bottom: 15px;
}

/* CATEGORY TAG */
.service-category {
    font-size: 16px;
    font-weight: 700;
    color: #BD2D37;
    margin-bottom: 8px;
    text-transform: uppercase;
}

/* TITLE */
.service-title {
    font-size: 20px;
    font-weight: 600;
    color: #00008B;
    margin-bottom: 10px;
}

/* DESCRIPTION */
.service-description {
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
    flex-grow: 1;
}

/* READ MORE LINK */
.service-link {
    margin-top: 15px;
    font-size: 0.85em;
    font-weight: 700;
    text-decoration: none;
    color: #BD2D37;
    position: relative;
}

.service-link::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: #BD2D37;
    margin-top: 3px;
    transition: width 0.3s ease;
}

.service-link:hover::after {
    width: 70px;
}

/* RESPONSIVE FIXES */
@media (max-width: 992px) {
    .service-card {
        flex: 1 1 calc(50% - 25px);
        /* 2 cards per row */
    }
}

@media (max-width: 600px) {
    .service-card {
        flex: 1 1 100%;
        /* 1 card per row */
    }

    .service-card {
        max-width: 320px;
    }

    .section-title {
        font-size: 30px;

    }
}

/* services-section Exit */


/* counter-section */

.counter-section {
    background-color: #BD2D37;
    /* Dark blue */
    padding: 60px 20px;
}

.counter-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
    position: relative;
}

.counter-item {
    text-align: center;
    flex: 1 1 200px;
    /* Dark red */
    padding: 20px;
    border-radius: 10px;
    color: #ffffff;
    position: relative;
    z-index: 2;
}


.counter-item .counter-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    object-fit: contain;
}

.counter-item i {
    font-size: 50px;
    /* controls overall icon size */
    width: 60px;
    /* optional: explicit width */
    height: 60px;
    /* optional: explicit height */
    line-height: 60px;
    /* vertically center if needed */
    margin-bottom: 15px;
    display: inline-block;
    /* ensures width/height apply correctly */
    text-align: center;
    /* center icon inside width */
}

.counter-number {
    display: block;
    font-size: 2em;
    font-weight: bold;
}

.counter-item p {
    margin-top: 5px;
    font-size: 1em;
    font-weight: bold;
}

/* ===== Ribbon-style dotted curved arrows ===== */
.counter-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -60px;
    /* distance between counters */
    width: 120px;
    /* length of wave */
    height: 20px;
    /* amplitude of wave */
    border-top: 3px dotted #ffffff;
    /* dotted line */
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    /* creates wave-like curve */
    transform: translateY(-50%) rotate(10deg);
    /* slight tilt for style */
    z-index: 1;
}






/* ===== Responsive: 2 per row ===== */
@media (max-width: 992px) {
    .counter-item {
        flex: 1 1 calc(50% - 20px);
    }

    .counter-item:not(:last-child)::after {
        display: none;
        /* hide arrows on smaller screens */
    }
}

@media (max-width: 600px) {
    .counter-item {
        flex: 1 1 calc(50% - 15px);
        margin-bottom: 20px;
    }
}

/* counter-section Exit */



/* Testimonials Section  */
.tp-testimonials {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f4f6fb, #eef2ff);
    text-align: center;
}

.tp-title {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #00008B;
}

.tp-slider-wrapper {
    overflow: hidden;
    max-width: 1000px;
    margin: auto;
}

.tp-slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tp-card {
    min-width: calc(50% - 15px);
    /* 2 slides desktop */
    background: #fff;
    padding: 35px 25px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tp-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.tp-card img {
    width: 120PX;
    height: 120PX;
    border-radius: 50%;
    margin-bottom: 18px;
}

.tp-card p {
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 12px;
}

.tp-stars {
    color: #f4b400;
    margin-bottom: 12px;
}

.tp-card h4 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    color: #00008B;
}

.tp-card span {
    font-size: 14px;
    color: #000000;
}

.tp-controls {
    margin-top: 30px;
}

.tp-controls button {
    background: #001f4d;
    color: #fff;
    border: none;
    padding: 10px 16px;
    margin: 0 6px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.tp-controls button:hover {
    background: #003c99;
}

/* Tablet */
@media (max-width: 900px) {
    .tp-card {
        min-width: calc(50% - 15px);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .tp-card {
        min-width: 100%;
    }

    .tp-title {
        font-size: 30px;
    }

    .tp-title {
        font-size: 26px;
    }
}

/* Testimonials Section Exit */


/* ACCL Breadcrumb  */
.ACCL-breadcrumb-section {
    background: #001f4d;
    /* Dark Blue */
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
}

/* Container inside section */
.ACCL-breadcrumb-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Heading */
.ACCL-breadcrumb-heading {
    color: #ffffff;
    /* White text */
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
}

/* Animated Gradient Underline */
/* .ACCL-breadcrumb-heading::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 80px;
    height: 4px;
    border-radius: 10px;
    background: linear-gradient(90deg, #ffffff, #e63946);
    background-size: 200% 100%;
    animation: gradientSlide 3s linear infinite;
} */

/* Gradient Animation */
@keyframes gradientSlide {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 0%;
    }
}

/* Breadcrumb Styling */
.ACCL-breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    /* semi-transparent white */
    padding: 8px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: inline-block;
    transition: background 0.3s ease;
}

.ACCL-breadcrumb:hover {
    background: rgba(255, 255, 255, 0.15);
}

.ACCL-breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.ACCL-breadcrumb-item {
    font-size: 20px;
    color: #ffffff;
    /* White text */
    position: relative;
    transition: transform 0.3s ease;
}

.ACCL-breadcrumb-item a {
    color: #e63946;
    /* White links */
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}

.ACCL-breadcrumb-item a:hover {
    color: #ffffff;
    /* Red hover */
    transform: translateY(-2px);
}

.ACCL-breadcrumb-item::after {
    content: "›";
    margin-left: 8px;
    color: #ffffffcc;
    /* Slightly transparent white */
    font-size: 16px;
}

.ACCL-breadcrumb-item:last-child::after {
    content: "";
}

.ACCL-breadcrumb-item.active {
    color: #ffffff;
    /* Active page in black */
    font-weight: 600;
}

/* Responsive */
@media (max-width: 600px) {
    .ACCL-breadcrumb-heading {
        font-size: 28px;
    }

    .ACCL-breadcrumb-list {
        font-size: 13px;
        gap: 6px;
    }

    .ACCL-breadcrumb-item::after {
        margin-left: 5px;
    }
}


/* ACCL Breadcrumb Exit */




/* ACCL About Section  */
.ACCL-about-section {
    padding: 60px 20px;
    background-color: #fff9f9;
}

.ACCL-container {
    max-width: 1200px;
    margin: auto;
}

/* Title Top Center */
.ACCL-title-wrap {
    text-align: center;
    margin-bottom: 20px;
}

/* Underline Title */
.ACCL-about-title {
    font-size: 34px;
    font-weight: 700;
    color: #00008B;
    position: relative;
    display: inline-block;
}


/* Image + Content Row  */
.ACCL-about-row {
    display: flex;
    gap: 40px;
    align-items: stretch;
    /* KEY: same height */
    flex-wrap: wrap;
}

/* Equal Width */
.ACCL-about-col {
    flex: 1;
    display: flex;
}

/* Image Box */
.ACCL-image-wrapper {
    width: 100%;
    height: 100%;
}

.ACCL-about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Content Box */
.ACCL-content-wrapper {
    padding: 10px;
    border-radius: 16px;
}

.ACCL-content-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 16px;
}

/* Responsive  */
@media (max-width: 991px) {
    .ACCL-about-row {
        flex-direction: column;
    }

    .ACCL-about-col {
        width: 100%;
    }

    .ACCL-about-title {
        font-size: 34px;
    }

    .ACCL-about-title {
        font-size: 30px;
    }
}

/* ACCL About Section  Exit*/



/* ACCL-what-we-do */

.ACCL-what-we-do {
    padding: 50px 20px;
    background-color: #ffffff;
    /* Clean white background */
    font-family: 'Poppins', sans-serif;
}

/* Section Title */
.ACCL-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.ACCL-whatwedo-title h2 {
    font-size: 34px;
    color: #00008B;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.ACCL-section-title p {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
}

/* Services Row */
.ACCL-wwd-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    justify-items: center;
}

/* Service Cards */
.ACCL-wwd-card {
    background: #f8f9fa;
    /* Light gray card background */
    padding: 25px 20px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    /* subtle border */
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Hover effect */
.ACCL-wwd-card:hover {
    transform: translateY(-6px);
    border-color: #001f4d;
    /* Dark Blue border on hover */
}

/* Card Icon */
.ACCL-wwd-icon {
    font-size: 38px;
    color: #e63946;
    /* Red accent */
    margin-bottom: 15px;
    transition: transform 0.3s, color 0.3s;
}

/* Icon hover effect */
.ACCL-wwd-card:hover .ACCL-wwd-icon {
    transform: scale(1.2);
    color: #001f4d;
    /* Dark Blue on hover */
}

/* Card Title */
.ACCL-wwd-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #001f4d;
    transition: color 0.3s;
}

/* Title hover */
.ACCL-wwd-card:hover h3 {
    color: #e63946;
    /* Red on hover */
}

/* Card Paragraph */
.ACCL-wwd-card p {
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
}

/* Responsive - all mobile sizes show 2 per row */
@media (max-width: 991px) {
    .ACCL-wwd-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {

    .ACCL-section-title p {
        font-size: 14px;
    }

    .ACCL-wwd-card h3 {
        font-size: 18px;
    }

    .ACCL-wwd-card p {
        font-size: 13px;
    }

    .ACCL-wwd-icon {
        font-size: 32px;
    }

    .ACCL-wwd-row {
        grid-template-columns: repeat(2, 1fr);
        /* keep 2 per row on small mobiles */
        gap: 15px;
    }

    .ACCL-whatwedo-title h2 {
        font-size: 30px;

    }
}



/* ACCL-what-we-do Exit */


/* ACCL-mission-vision-section */

.ACCL-mv-core-alt-section {
    padding: 60px 20px;
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
}

/* ===== Section Title ===== */
.ACCL-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.ACCL-section-title h2 {
    font-size: 34px;
    color: #00008B;
    font-weight: 700;
    margin-bottom: 12px;
}


.ACCL-section-title p {
    color: #000000cc;
    font-size: 16px;
}

/* ===== Cards Wrapper ===== */
.ACCL-mv-core-alt-row {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ===== Glass Card ===== */
.ACCL-mv-alt-card {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 35px 40px;
    border-radius: 20px;
    background: linear-gradient(135deg, #001f4d 0%, #000000 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.849);
    transition: all 0.4s ease;
}

/* Hover */
.ACCL-mv-alt-card:hover {
    border-color: #e63946;
    transform: translateX(8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

/* ===== Icon (Left) ===== */
.ACCL-mv-alt-icon {
    min-width: 100px;
    height: 100px;
    border-radius: 14px;
    background: #e63946;
    color: #ffffff;
    font-size: 70px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}


/* Icon hover */
.ACCL-mv-alt-card:hover .ACCL-mv-alt-icon {
    transform: rotate(-6deg) scale(1.1);
}

/* ===== Content (Right) ===== */
.ACCL-mv-alt-content h3 {
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}

.ACCL-mv-alt-content p {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.7;
}

/* ===============================
   Responsive
================================ */
@media (max-width: 768px) {
    .ACCL-mv-alt-card {
        flex-direction: column;
        text-align: center;
    }

    .ACCL-mv-alt-icon {
        margin-bottom: 15px;
    }
}

@media (max-width: 600px) {
    .ACCL-section-title h2 {
        font-size: 26px;
    }

    .ACCL-mv-alt-card {
        padding: 30px 25px;
    }
}

/* ACCL-mission-vision-section Exit */


/* ACCL-why-choose-us */

.ACCL-why-choose-us {
    padding: 80px 20px;
    background: #fdeded88;
    font-family: 'Poppins', sans-serif;
}

.ACCL-container {
    max-width: 1200px;
    margin: auto;
}

.ACCL-why-row {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

/* LEFT SIDE */
.ACCL-why-left {
    flex: 1;
}

.ACCL-why-left h2 {
    font-size: 34px;
    font-weight: bold;
    color: #00008B;
    margin-bottom: 20px;
}

.ACCL-why-left p {
    font-size: 20px;
    color: #000000;
    line-height: 1.7;
}

/* RIGHT SIDE */
.ACCL-why-right {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* CARD */
.ACCL-why-card {
    display: flex;
    gap: 15px;
    background: #f9f9f9;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ACCL-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* ICON */
.ACCL-why-icon {
    font-size: 2.2rem;
    color: #BD2D37;
    flex-shrink: 0;
}

/* CONTENT */
.ACCL-why-content h4 {
    font-size: 18px;
    font-weight: bold;
    color: #00008B;
    margin-bottom: 6px;
}

.ACCL-why-content p {
    font-size: 14px;
    color: #000000;
    line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .ACCL-why-row {
        flex-direction: column;
    }

    .ACCL-why-right {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .ACCL-why-left h2 {
        font-size: 26px;
    }

    .ACCL-why-right {
        grid-template-columns: 1fr;
    }

    .ACCL-why-left p {
        font-size: 16px;

    }
}

/* ACCL-why-choose-us Exit */


/* Call to Action Section */
.cta-simple-section {
    width: 100%;
    padding: 30px 15px;
    background-color: #c8c8ffb4;
    text-align: center;
}

.cta-simple-container p {
    font-size: 34px;
    color: #00008B;
    margin-bottom: 15px;
    font-weight: bold;
}

.cta-simple-button {
    display: inline-block;
    padding: 10px 25px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background-color: #FF0000;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-simple-button:hover {
    background-color: #0f4a80;
    transform: translateY(-2px);
}

/* ===== Responsive adjustments ===== */
@media (max-width: 480px) {
    .cta-simple-section {
        padding: 25px 10px;
    }

    .cta-simple-container p {
        font-size: 20px;
    }

    .cta-simple-button {
        padding: 8px 20px;
        font-size: 0.95em;
    }
}

/* Call to Action Section Exit */



/* contact-section */

.contact-section {
    width: 100%;
    margin: 0 auto;
    padding: 60px 20px;
    background: #f9f9f9;
}

.contact-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 30px;
}

/* Map */
.contact-map {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: 0;
}

/* Company Details */
.contact-details {
    flex: 1;
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    font-family: 'Poppins', sans-serif;
}

.contact-details h2 {
    margin-bottom: 25px;
    color: #BD2D37;
    font-size: 32px;
    font-weight: 600;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.detail-label {
    min-width: 130px;
    font-weight: 600;
    color: #00008B;
    margin-right: 10px;
}

.detail-value {
    color: #000000;
    font-size: 14px;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-map iframe {
        min-height: 300px;
    }

    .detail-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .detail-label {
        margin-bottom: 5px;
    }
}

/* contact-section Exit */


/* Contact Form */

.contact-container {
    max-width: 650px;
    margin: 50px auto;
    padding: 45px 30px;
    background-color: #ffffff;
    /* lighter background */
    border-radius: 20px;
    /* softer corners */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    /* soft shadow */
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.contact-container h2 {
    font-size: 32px;
    color: #00008B;
    /* brand color */
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-container input,
.contact-container select,
.contact-container textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 20px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 1em;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
}

.contact-container input:focus,
.contact-container select:focus,
.contact-container textarea:focus {
    border-color: #BD2D37;
    box-shadow: 0 0 8px rgba(189, 45, 55, 0.3);
    outline: none;
}

.contact-container button {
    padding: 12px 35px;
    font-size: 1.1em;
    color: #fff;
    background: linear-gradient(135deg, #BD2D37, #FF4B5C);
    /* gradient button */
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(189, 45, 55, 0.3);
}

.contact-container button:hover {
    background: linear-gradient(135deg, #FF4B5C, #BD2D37);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(189, 45, 55, 0.35);
}

/* ===== Popup ===== */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    z-index: 1001;
    max-width: 400px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.popup-gif {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 1.3em;
    cursor: pointer;
    color: #00008B;
}

/* ===== Overlay ===== */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1000;
}


/* Contact Form Exit */


/* Gallery */

.gallery-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 🔒 Fixed size for all items */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

/* Image fills box perfectly */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* crop without distortion */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover Zoom Effect */
.gallery-item:hover img {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Video behaves exactly like image */
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover effect for video */
.gallery-item:hover video {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}


/* ===== Responsive: 2 per row ===== */
@media (max-width: 992px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Gallery Exit */


/* Our Mission & Vision */

.mission-vision-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    font-family: 'Arial', sans-serif;
}

.mission-vision-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.mission-vision-section h1 {
    text-align: center;
    font-size: 2.8em;
    color: #176CB0;
    margin-bottom: 50px;
    font-weight: 700;
}

.mission-vision-section h2 {
    font-size: 2em;
    color: #176CB0;
    margin-bottom: 15px;
}

.mission-vision-section p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #333;
}

.mission-vision-section .values ul {
    list-style: none;
    padding: 0;
}

.mission-vision-section .values ul li {
    font-size: 1.05em;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    color: #333;
}

/* Custom bullet icon */
.mission-vision-section .values ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #176CB0;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .mission-vision-section h1 {
        font-size: 2.2em;
    }

    .mission-vision-section h2 {
        font-size: 1.6em;
    }

    .mission-vision-section p,
    .mission-vision-section .values ul li {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .mission-vision-section h1 {
        font-size: 1.8em;
    }

    .mission-vision-section h2 {
        font-size: 1.4em;
    }
}

/* Our Mission & Vision Exit */




.footer {
    background: #000000;
    color: #ffffff;
    padding-top: 0;
    font-family: 'Poppins', sans-serif;
}

/* =========================================
   Footer Info Bar (Top Strip)
========================================= */
.footer-info-bar {
    background-color: darkblue;
    padding: 30px 20px;
}

.footer-info-container {
    max-width: 1000px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
}

.footer-info-icon {
    width: 80px;
    height: 80px;
    background: #BD2D37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #000000;
}

.footer-info-icon i {
    font-size: 34px;
    /* icon size */
    color: #ffffff;
}

.footer-info-item strong {
    font-size: 20px;
}

/* Responsive Info Bar */
@media (max-width: 768px) {
    .footer-info-container {
        flex-direction: column;
        text-align: left;
        /* left-align text instead of center */
        align-items: flex-start;
        /* left-align flex items */
    }
}

/* =========================================
   Footer Main Container
========================================= */
.footer .container {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px 0;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-top img {
    width: 130px;
    height: 100px;
    margin-bottom: 20px;
}

/* =========================================
   Footer Columns
========================================= */
.footer-column {
    flex: 1 1 200px;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #bd2d37;
    border-bottom: 2px solid #bd2d37;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #ffffff;
    line-height: 1.6;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #bd2d37;
}

/* =========================================
   Footer Gallery
========================================= */
.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: #00008B;
    text-align: center;
    padding: 10px 10px;
    border-top: 2px solid #ffffff;
    margin-top: 40px;
}

.footer-bottom p {
    font-size: 16px;
    color: #ffffff;
    margin: 10px 0;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #bd2d37;
}

/* =========================================
   Floating Buttons
========================================= */
.back-to-top,
.whatsapp-float {
    position: fixed;
    right: 0;
    width: 48px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    z-index: 999;
    border-radius: 12px 0 0 12px;
    overflow: hidden;
    transition: all 0.35s ease;
}

/* Back to Top */
.back-to-top {
    bottom: 120px;
    background: #00008B;
    box-shadow: -4px 8px 20px rgba(0, 0, 0, 0.25);
}

/* WhatsApp */
.whatsapp-float {
    bottom: 185px;
    background: #25d366;
    box-shadow: -4px 8px 20px rgba(0, 0, 0, 0.25);
}

/* ===============================
   SHIMMER EFFECT (BACKGROUND)
================================ */
.back-to-top::before,
.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.25),
            transparent);
    transform: translateX(-100%);
    animation: shimmer 4.5s ease-in-out infinite;
}

/* Stop shimmer on hover */
.back-to-top:hover::before,
.whatsapp-float:hover::before {
    animation-play-state: paused;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* ===============================
   ICON MICRO ROTATION
================================ */
.back-to-top i,
.whatsapp-float i {
    position: relative;
    z-index: 2;
    animation: iconTilt 3.8s ease-in-out infinite;
}

/* Rotate only icons */
@keyframes iconTilt {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* Stop icon animation on hover */
.back-to-top:hover i,
.whatsapp-float:hover i {
    animation-play-state: paused;
}

/* ===============================
   WHATSAPP HOVER LABEL
================================ */
.whatsapp-float::after {
    content: attr(data-label);
    position: absolute;
    right: 48px;
    background: #25d366;
    color: #fff;
    padding: 10px 14px;
    white-space: nowrap;
    border-radius: 12px 0 0 12px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.35s ease;
    font-size: 0.85rem;
}

.whatsapp-float:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* ===============================
   MOBILE ADJUSTMENT
================================ */
@media (max-width: 576px) {

    .back-to-top,
    .whatsapp-float {
        width: 44px;
        height: 50px;
        font-size: 20px;
    }

    .back-to-top {
        bottom: 95px;
    }

    .whatsapp-float {
        bottom: 150px;
    }
}


/* =========================================
   Footer Responsive
========================================= */
@media (max-width: 992px) {
    .footer-top {
        justify-content: center;
        text-align: center;
    }

    .footer-column {
        flex: 1 1 45%;
    }
}

@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);
    }

    .whatsapp-float {
        right: 20px;
    }

    .back-to-top {
        right: 20px;
    }
}