﻿/* =========================
   ROOT THEME – BALAJI TAX ADVISOR
   Font: Share Tech
   ========================= */

:root {
    /* ===== BRAND COLORS ===== */
    --primary-color: #0B3C5D; /* Deep Professional Blue */
    --secondary-color: #D4AF37; /* Gold Accent (Trust & Authority) */
    --accent-color: #1F7A8C; /* Subtle Teal for highlights */
    /* ===== BACKGROUND COLORS ===== */
    --dark-bg: #0F1B2A; /* Header / Footer Background */
    --light-bg: #F4F7FA; /* Section Background */
    --white: #FFFFFF;
    /* ===== TEXT COLORS ===== */
    --heading-color: #0B3C5D;
    --text-color: #333333;
    --muted-text: #6B7280;
    --light-text: #F9FAFB;
    /* ===== UI COLORS ===== */
    --border-color: #E5E7EB;
    --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Share Tech', sans-serif;
    background: var(--light-bg);
    color: var(--text-color);
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4 {
    color: var(--heading-color);
    font-weight: 600;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 6px;
    border: none;
    transition: 0.3s ease;
}

    .btn-primary:hover {
        background: var(--secondary-color);
        color: #000;
    }
/* =========================
   BALAJI TAX TOP BAR
   ========================= */

.tax-topbar {
    background: var(--dark-bg);
    color: var(--light-text);
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

    /* GOLD ANIMATED BORDER */
    .tax-topbar::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: -100%;
        width: 100%;
        height: 3px;
        background: var(--secondary-color);
        animation: slideBorder 30s linear infinite;
    }

@keyframes slideBorder {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* LEFT CONTACT AREA */
.topbar-left {
    display: flex;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
    transition: 0.3s ease;
    font-size: 18px;
    letter-spacing: 1px;
}

    .contact-item i {
        color: var(--secondary-color);
        transition: 0.3s;
    }

    /* SLIDE TEXT ANIMATION */
    .contact-item span {
        position: relative;
        transition: transform 0.3s ease;
    }

    .contact-item:hover span {
        transform: translateX(5px);
    }

    .contact-item:hover i {
        transform: rotate(15deg) scale(1.2);
    }

/* RIGHT SOCIAL ICONS */
.topbar-right {
    display: flex;
    gap: 15px;
}

    .topbar-right a {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255,255,255,0.05);
        color: var(--light-text);
        transition: 0.3s ease;
        position: relative;
        text-decoration: none;
    }

        /* HOVER EFFECT */
        .topbar-right a:hover {
            background: var(--secondary-color);
            color: #000;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(212,175,55,0.4);
        }

        /* GLOW PULSE ANIMATION */
        .topbar-right a::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 50%;
            border: 1px solid var(--secondary-color);
            opacity: 0;
            transform: scale(0.8);
            transition: 0.3s;
        }

        .topbar-right a:hover::before {
            opacity: 1;
            transform: scale(1.2);
        }

/* RESPONSIVE */
@media (max-width: 768px) {
    .tax-topbar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .topbar-left {
        flex-direction: column;
        gap: 8px;
    }
}
/* =========================
   HEADER BASE
   ========================= */

.tax-header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 40px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =========================
   LOGO
   ========================= */

.logo-text h2 {
    font-family: 'Share Tech', sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--secondary-color);
    font-weight: 500;
}

.logo-underline {
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin-top: 6px;
    transition: 0.4s ease;
}

.logo-text:hover .logo-underline {
    width: 100%;
}

/* =========================
   NAVIGATION
   ========================= */

.tax-nav ul {
    display: flex;
    gap: 38px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

    .tax-nav ul li {
        position: relative;
    }

        .tax-nav ul li a {
            text-decoration: none;
            font-size: 15px;
            color: var(--heading-color);
            font-weight: 500;
            transition: 0.3s ease;
            display: inline-block;
            padding: 5px 0;
        }

            /* Hover underline */
            .tax-nav ul li a::after {
                content: "";
                display: block;
                width: 0%;
                height: 2px;
                background: var(--secondary-color);
                transition: 0.3s ease;
            }

            .tax-nav ul li a:hover::after {
                width: 100%;
            }

            .tax-nav ul li a:hover {
                color: var(--primary-color);
            }

/* =========================
   DROPDOWN BASE RESET
   ========================= */

.dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* =========================
   DESKTOP DROPDOWN
   ========================= */
/* =========================
   FORCE CLEAN DESKTOP DROPDOWN
   ========================= */

@media (min-width: 993px) {

    /* Completely reset dropdown */
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 230px;
        background: var(--white);
        border-top: 3px solid var(--secondary-color);
        box-shadow: var(--shadow-soft);
        border-radius: 6px;
        padding: 10px 0;
        display: none !important; /* FORCE hide */
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    /* Show only on hover */
    .dropdown:hover > .dropdown-menu {
        display: block !important;
    }

    /* Remove any open class effect on desktop */
    .dropdown.open > .dropdown-menu {
        display: none !important;
    }

    .dropdown-menu li {
        padding: 8px 20px;
    }

        .dropdown-menu li a {
            font-size: 14px;
            color: var(--text-color);
            display: block;
        }

        .dropdown-menu li:hover {
            background: var(--light-bg);
        }
}

/* =========================
   MOBILE MENU
   ========================= */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

    .menu-toggle span {
        width: 26px;
        height: 3px;
        background: var(--primary-color);
        transition: 0.3s;
    }

/* =========================
   MOBILE VIEW
   ========================= */

@media (max-width: 992px) {

    .menu-toggle {
        display: flex;
    }

    .tax-nav {
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        background: var(--white);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        box-shadow: var(--shadow-soft);
    }

        .tax-nav.active {
            max-height: 1000px;
            padding: 15px 0;
        }

        .tax-nav ul {
            flex-direction: column;
            gap: 0;
        }

            .tax-nav ul li {
                width: 100%;
                border-bottom: 1px solid var(--border-color);
            }

                .tax-nav ul li a {
                    display: block;
                    padding: 14px 25px;
                    font-size: 15px;
                    color: var(--heading-color);
                }

    /* MOBILE DROPDOWN */

    .dropdown-menu {
        display: none;
        position: static;
        background: var(--light-bg);
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        padding: 0;
    }

        .dropdown-menu li a {
            padding: 12px 40px;
            font-size: 14px;
            color: var(--text-color);
        }

            .dropdown-menu li a:hover {
                background: var(--secondary-color);
                color: #000;
            }
}

/* =============================
   GRID SLIDER BASE
============================= */

.grid-slider {
    width: 100%;
    overflow: hidden;
}

.grid-slider-wrapper {
    position: relative;
}

.g-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

    .g-slide.active {
        opacity: 1;
        position: relative;
    }

    .g-slide img {
        width: 100%;
        display: block;
    }

/* =============================
   GRID SYSTEM
============================= */

.grid-box {
    position: absolute;
    inset: 0;
    display: grid;
    pointer-events: none;
}

.grid-cell {
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

/* =============================
   UNIQUE ANIMATIONS
============================= */

.type-split.active .grid-cell {
    animation: splitOpen 2s ease forwards;
}

@keyframes splitOpen {
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

.type-fall.active .grid-cell {
    animation: tileFall 2.2s ease forwards;
}

@keyframes tileFall {
    to {
        transform: translateY(150%);
        opacity: 0;
    }
}

.type-zoomtiles.active .grid-cell {
    animation: zoomTiles 2s ease forwards;
}

@keyframes zoomTiles {
    to {
        transform: scale(0);
        opacity: 0;
    }
}

.type-flip.active .grid-cell {
    animation: flipOut 2.2s ease forwards;
}

@keyframes flipOut {
    to {
        transform: rotateY(90deg);
        opacity: 0;
    }
}

.type-diagonal.active .grid-cell {
    animation: diagMove 2.2s ease forwards;
}

@keyframes diagMove {
    to {
        transform: translate(150%,-150%);
        opacity: 0;
    }
}

/* =============================
   BUTTONS
============================= */

.g-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0B3C5D26;
    color: #fff;
    border: none;
    padding: 14px 18px;
    font-size: 20px;
    border-radius: 2px;
    cursor: pointer;
    z-index: 20;
    border: 1px solid var(--secondary-color);
    box-shadow: 0 0 6px var(--secondary-color);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.g-btn:hover {
    background: #D4AF37;
    color: #000;
    transition: all 0.5s ease;
}
/* ===================================
   DIAGONAL ABOUT SECTION
=================================== */

.balaji-about-diagonal {
    position: relative;
    background: var(--light-bg);
    overflow: hidden;
    padding: 30px 0 30px;
}

/* BIG BACKGROUND TEXT */

.about-big-text {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 140px;
    font-weight: 900;
    color: rgba(0,0,0,0.04);
    letter-spacing: 10px;
    pointer-events: none;
    white-space: nowrap;
}

/* MAIN CONTAINER */

.about-container {
    display: flex;
    position: relative;
    min-height: 450px;
}

/* PANELS */

.about-panel {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    transition: 0.8s ease;
}

/* INDIAN PANEL */

.indian-panel {
    background: var(--primary-color);
    color: #fff;
    transform: translateX(-100%);
    opacity: 0;
}

    .indian-panel h2 {
        color: var(--secondary-color);
    }
/* US PANEL */

.us-panel {
    background: var(--secondary-color);
    color: #000;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    transform: translateX(100%);
    opacity: 0;
}

/* CONTENT */

.panel-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.panel-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.panel-content ul {
    padding-left: 18px;
}

    .panel-content ul li {
        margin-bottom: 8px;
    }

/* HOVER EXPAND EFFECT */

.about-panel:hover {
    flex: 1.2;
}

/* BOTTOM TEXT */

.about-bottom {
    text-align: center;
    margin-top: 60px;
}

    .about-bottom h3 {
        font-size: 28px;
        margin-bottom: 10px;
        color: var(--primary-color);
    }

/* REVEAL ACTIVE */

.indian-panel.active,
.us-panel.active {
    transform: translateX(0);
    opacity: 1;
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .about-container {
        flex-direction: column;
    }

    .about-panel {
        clip-path: none;
        transform: translateY(80px);
        opacity: 0;
        padding: 50px 30px;
    }

        .about-panel.active {
            transform: translateY(0);
            opacity: 1;
        }

    .about-big-text {
        font-size: 60px;
    }
}
/* ===================================
   TABLET VIEW (Maintain desktop layout)
   769px to 992px
=================================== */

@media (max-width: 992px) and (min-width: 769px) {

    /* Keep side-by-side layout */
    .about-container {
        flex-direction: row;
        min-height: 380px;
    }

    /* Keep diagonal shape */
    .about-panel {
        clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
        padding: 50px 35px;
        transform: translateX(0);
        opacity: 1;
    }

    /* US panel diagonal */
    .us-panel {
        clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
        transform: translateX(0);
        opacity: 1;
    }

    /* Disable vertical mobile animation */
    .about-panel.active {
        transform: translateX(0);
        opacity: 1;
    }

    /* Reduce heading size */
    .panel-content h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    /* Reduce paragraph size */
    .panel-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Reduce list font */
    .panel-content ul li {
        font-size: 14px;
    }

    /* Adjust big background text */
    .about-big-text {
        font-size: 90px;
        letter-spacing: 6px;
    }

    /* Bottom section */
    .about-bottom {
        margin-top: 40px;
        padding: 0 20px;
    }

        .about-bottom h3 {
            font-size: 22px;
        }

        .about-bottom p {
            font-size: 14px;
        }
}

.bta-services-section {
    padding: 10px 50px;
    background: url(../images/s2.png) center;
}

.bta-services-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

/* LEFT HEADING */

.bta-services-heading {
    width: 35%;
    position: sticky;
    top: 120px;
}

    .bta-services-heading h2 {
        font-size: 42px;
        color: var(--primary-color);
        line-height: 1.2;
    }

    .bta-services-heading p {
        margin-top: 20px;
        color: var(--muted-text);
    }

/* RIGHT CARDS */

.bta-services-cards {
    width: 65%;
}

.bta-card {
    background: #fff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 120px;
    opacity: 0;
    transform: translateY(60px);
    transition: 0.6s ease;
}

    .bta-card.active {
        opacity: 1;
        transform: translateY(0);
    }

    .bta-card h3 {
        margin-bottom: 30px;
        color: var(--primary-color);
    }

.two-col {
    display: flex;
    gap: 60px;
}

    .two-col ul {
        padding-left: 18px;
    }

    .two-col li {
        margin-bottom: 8px;
        font-size: 14px;
    }

/* Compliance Grid */

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

    .compliance-grid div {
        background: var(--light-bg);
        padding: 18px;
        border-radius: 8px;
        font-size: 14px;
        transition: 0.3s;
    }

    .compliance-grid i {
        margin-right: 8px;
        color: var(--secondary-color);
    }

    .compliance-grid div:hover {
        background: var(--secondary-color);
        color: #000;
        transform: translateY(-5px);
    }

/* Responsive */

@media(max-width:992px) {

    .bta-services-container {
        flex-direction: column;
        gap: 40px;
    }

    .bta-services-section {
        padding: 20px;
    }

    .bta-services-heading,
    .bta-services-cards {
        width: 100%;
        position: relative;
        top: 0;
    }

    .two-col {
        flex-direction: column;
    }

    .compliance-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

.india-structure {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.india-left, .india-right {
    flex: 1;
}

    .india-left h4,
    .india-right h4 {
        margin-bottom: 12px;
        border-left: 4px solid var(--secondary-color);
        padding-left: 10px;
    }

.india-structure ul {
    list-style: none;
    padding: 0;
    columns: 2;
    column-gap: 20px;
}

.india-structure li {
    font-size: 13px;
    margin-bottom: 6px;
}

.india-divider {
    width: 2px;
    background: var(--secondary-color);
}

@media (max-width: 768px) {

    .india-structure {
        flex-direction: column;
        gap: 20px;
    }

    .india-divider {
        display: none;
    }

    .india-left h4,
    .india-right h4 {
        font-size: 16px;
        margin-bottom: 10px;
        padding-left: 8px;
    }

    /* Clean 2 column service grid */
    .india-structure ul {
        columns: unset;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px 16px;
    }

    .india-structure li {
        font-size: 12px;
        line-height: 1.4;
        padding-left: 14px;
        position: relative;
    }

        .india-structure li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-size: 12px;
        }
}

.us-panels {
    margin-top: 20px;
}

.us-box {
    background: linear-gradient(135deg, var(--light-bg), #ffffff);
    padding: 25px;
    border-radius: 12px;
}

    .us-box h4 {
        margin-bottom: 15px;
    }

    .us-box ul {
        list-style: none;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 20px;
    }

    .us-box li {
        font-size: 13px;
        padding-left: 18px;
        position: relative;
    }

        .us-box li::before {
            content: "✓";
            color: var(--secondary-color);
            position: absolute;
            left: 0;
        }
/* ===============================
   CARD 3 – COMPLIANCE GRID
   =============================== */

.bta-card .core-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}

    .bta-card .core-layout div {
        background: var(--light-bg);
        padding: 18px 15px;
        border-radius: 10px;
        text-align: center;
        font-size: 14px;
        font-weight: 500;
        color: var(--heading-color);
        transition: 0.3s ease;
        box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    }

        .bta-card .core-layout div i {
            display: block;
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--secondary-color);
        }

        /* Hover Effect */
        .bta-card .core-layout div:hover {
            transform: translateY(-6px);
            background: var(--primary-color);
            color: #fff;
        }

            .bta-card .core-layout div:hover i {
                color: var(--secondary-color);
            }

/* ===============================
   MOBILE – 2 COLUMNS
   =============================== */

@media (max-width: 768px) {

    .bta-card .core-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

        .bta-card .core-layout div {
            padding: 14px 10px;
            font-size: 13px;
        }

            .bta-card .core-layout div i {
                font-size: 18px;
                margin-bottom: 8px;
            }
}
/* ==========================================
   TABLET VIEW (769px – 1024px)
   Keep same layout as desktop
========================================== */

@media (max-width:1024px) and (min-width:769px) {

    /* Keep horizontal layout */
    .bta-services-container {
        flex-direction: row;
        align-items: flex-start;
        gap: 50px;
        padding: 0 25px;
    }

    /* Keep sticky heading on left */
    .bta-services-heading {
        width: 38%;
        position: sticky;
        top: 100px;
    }

        /* Reduce heading font */
        .bta-services-heading h2 {
            font-size: 32px;
            line-height: 1.25;
        }

        .bta-services-heading p {
            font-size: 14px;
            margin-top: 12px;
        }

    /* Right cards width */
    .bta-services-cards {
        width: 62%;
    }



    .bta-card h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }


    /* Indian services grid */
    .india-structure {
        gap: 20px;
    }

        .india-structure ul {
            columns: 2;
            column-gap: 16px;
        }

        .india-structure li {
            font-size: 12.5px;
        }


    /* US services grid */
    .us-box {
        padding: 20px;
    }

        .us-box ul {
            grid-template-columns: repeat(2, 1fr);
            gap: 8px 16px;
        }

        .us-box li {
            font-size: 12.5px;
        }


    /* Compliance grid stays 3 columns like desktop */
    .bta-card .core-layout {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

        .bta-card .core-layout div {
            font-size: 12.5px;
            padding: 14px 10px;
        }

            .bta-card .core-layout div i {
                font-size: 18px;
            }
}

/* ==============================
   WHY CHOOSE US SECTION
================================ */

.bta-why-section {
    padding: 120px 40px;
    background: linear-gradient(135deg, #f4f7fa 60%, #ffffff 40%);
    position: relative;
    overflow: hidden;
}

.bta-why-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ======================
   LEFT CONTENT
====================== */

.bta-why-content h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

    .bta-why-content h2 span {
        color: var(--secondary-color);
    }

.bta-why-intro {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-color);
}

/* Points */
.bta-why-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.bta-why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s ease;
}

    .bta-why-item i {
        font-size: 22px;
        color: var(--secondary-color);
        margin-top: 5px;
    }

    .bta-why-item h4 {
        margin-bottom: 5px;
        color: var(--heading-color);
    }

    .bta-why-item p {
        font-size: 14px;
        color: var(--muted-text);
    }

    /* Scroll Animation Active */
    .bta-why-item.show {
        opacity: 1;
        transform: translateY(0);
    }

/* ======================
   RIGHT FLOATING PANEL
====================== */

.bta-why-highlight {
    background: var(--primary-color);
    color: #fff;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transform: translateY(40px);
    transition: 0.6s ease;
}

    .bta-why-highlight h3 {
        font-size: 26px;
        margin-bottom: 20px;
        color: var(--secondary-color);
    }

    .bta-why-highlight p {
        font-size: 14px;
        margin-bottom: 25px;
        line-height: 1.8;
    }

    .bta-why-highlight ul {
        list-style: none;
        padding: 0;
    }

    .bta-why-highlight li {
        margin-bottom: 10px;
        font-size: 14px;
    }

    /* Floating reveal */
    .bta-why-highlight.show {
        transform: translateY(0);
    }

/* ======================
   MOBILE
====================== */

@media(max-width: 992px) {

    .bta-why-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .bta-why-content h2 {
        font-size: 30px;
    }

    .bta-why-highlight {
        padding: 35px 25px;
    }
}
/* =========================
   SPLIT FOOTER BASE
========================= */

.bta-split-footer {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    background: var(--dark-bg);
    color: var(--light-text);
    overflow: hidden;
}

/* LEFT DIAGONAL PANEL */
.bta-footer-left {
    flex: 1;
    min-width: 300px;
    background: var(--primary-color);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    display: flex;
    align-items: center;
    padding: 80px 60px;
    position: relative;
}

.footer-left-inner {
    max-width: 400px;
    transform: translateX(-80px);
    opacity: 0;
    transition: 0.8s ease;
}

    .footer-left-inner.visible {
        transform: translateX(0);
        opacity: 1;
    }

.bta-footer-left h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* RIGHT SIDE */
.bta-footer-right {
    flex: 1.2;
    min-width: 320px;
    display: flex;
    justify-content: space-between;
    padding: 80px 60px;
    background: var(--dark-bg);
}

/* Sections */
.footer-section {
    width: 48%;
    transform: translateX(80px);
    opacity: 0;
    transition: 0.8s ease;
}

    .footer-section.visible {
        transform: translateX(0);
        opacity: 1;
    }

    .footer-section h4 {
        color: var(--secondary-color);
        margin-bottom: 20px;
        position: relative;
    }

        /* Animated Underline */
        .footer-section h4::after {
            content: "";
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--secondary-color);
            transition: 0.4s ease;
        }

    .footer-section:hover h4::after {
        width: 100%;
    }

    /* Quick Links */
    .footer-section ul {
        list-style: none;
        padding: 0;
    }

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

            .footer-section ul li a {
                text-decoration: none;
                color: var(--light-text);
                transition: 0.3s ease;
            }

                .footer-section ul li a:hover {
                    color: var(--secondary-color);
                    padding-left: 8px;
                }

/* Contact */
.footer-contact {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

    .footer-contact i {
        margin-right: 10px;
        color: var(--secondary-color);
    }

/* Social Icons */
.footer-social {
    margin-top: 20px;
}

    .footer-social a {
        display: inline-flex;
        width: 42px;
        height: 42px;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
        margin-right: 10px;
        transition: 0.4s ease;
        color: var(--light-text);
        text-decoration: none;
    }

        .footer-social a:hover {
            background: var(--secondary-color);
            color: #000;
            transform: scale(1.2) rotate(8deg);
        }

/* Bottom Bar */
.footer-bottom-bar {
    width: 100%;
    text-align: center;
    padding: 20px;
    background: #0B1624;
    font-size: 14px;
}

/* Responsive */
@media(max-width: 992px) {

    .bta-split-footer {
        flex-direction: column;
    }

    .bta-footer-left {
        clip-path: none;
        padding: 60px 30px;
    }

    .bta-footer-right {
        flex-direction: column;
        gap: 40px;
        padding: 60px 30px;
    }

    .footer-section {
        width: 100%;
    }
}

@media (max-width: 992px) and (min-width: 769px) {

    .bta-split-footer {
        flex-direction: row;
    }

    .bta-footer-left {
        flex: 1;
        clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
        padding: 50px 35px;
    }

    .footer-left-inner {
        max-width: 100%;
        transform: none;
        opacity: 1;
    }

    .bta-footer-left h2 {
        font-size: 22px;
    }

    .footer-left-inner p {
        font-size: 14px;
        line-height: 1.6;
    }

    .bta-footer-right {
        flex: 1.2;
        padding: 50px 35px;
        flex-direction: row;
    }

    .footer-section {
        width: 48%;
        transform: none;
        opacity: 1;
    }

        .footer-section h4 {
            font-size: 16px;
        }

        .footer-section ul li a {
            font-size: 14px;
        }

    .footer-contact span {
        font-size: 14px;
    }

    .footer-social a {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

/* =========================
   MOBILE FIX – FULL TEXT VISIBILITY
========================= */

@media (max-width: 768px) {

    /* Remove diagonal shape completely on mobile */
    .bta-footer-left {
        clip-path: none !important;
        padding: 40px 20px !important;
    }

    /* Prevent hidden text due to transform animation */
    .footer-left-inner {
        transform: none !important;
        opacity: 1 !important;
        max-width: 100% !important;
        width: 100%;
    }

    /* Ensure text wraps properly */
    .bta-footer-left h2,
    .bta-footer-left p {
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }

    .bta-footer-left p {
        font-size: 14px;
        line-height: 1.7;
        padding: 0 5px;
    }

    /* Stack right side neatly */


    .footer-section {
        width: 100% !important;
        transform: none !important;
        opacity: 1 !important;
    }

        .footer-section ul {
            padding-left: 0;
        }


    .footer-contact span {
        word-break: break-word;
    }


    /* Bottom bar */
    .footer-bottom-bar {
        font-size: 13px;
        padding: 15px 10px;
        word-break: break-word;
    }
}


/* EXTRA SMALL DEVICES (very small phones) */
@media (max-width: 420px) {

    .bta-footer-left {
        padding: 35px 15px !important;
    }

        .bta-footer-left h2 {
            font-size: 20px;
        }

        .bta-footer-left p {
            font-size: 13.5px;
            line-height: 1.6;
        }

    .footer-section h4 {
        font-size: 16px;
    }

    .footer-section ul li a {
        font-size: 14px;
    }
}

/* ===============================
   WRAPPER
================================ */

.balaji-crumb-diagonal {
    position: relative;
    min-height: 150px;
    overflow: hidden;
    background: #0B3C5D;
    display: flex;
    align-items: center;
    padding: 60px 80px;
    color: #fff;
}

/* ===============================
   DIAGONAL BACKGROUND LAYER
================================ */

.crumb-bg-layer {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background: linear-gradient(135deg, #D4AF37, #b8962e);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    animation: diagonalReveal 1.4s ease forwards;
    transform: translateX(100%);
}

@keyframes diagonalReveal {
    to {
        transform: translateX(0);
    }
}

/* Floating subtle shapes */

.balaji-crumb-diagonal::before,
.balaji-crumb-diagonal::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    animation: floatAnim 6s ease-in-out infinite alternate;
}

.balaji-crumb-diagonal::before {
    width: 200px;
    height: 200px;
    top: 40px;
    left: 30%;
}

.balaji-crumb-diagonal::after {
    /*width: 120px;
    height: 120px;
    bottom: 40px;
    right: 20%;*/
}

@keyframes floatAnim {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-20px);
    }
}

/* ===============================
   CONTENT
================================ */

.crumb-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* TEXT ANIMATION */

.crumb-text h1 {
    font-size: 46px;
    margin-bottom: 10px;
    animation: slideUpText 1.3s ease forwards;
    opacity: 0;
    transform: translateY(40px);
    color: var(--accent-color);
}

.crumb-text p {
    font-size: 16px;
    opacity: 0.9;
    animation: slideUpText 1.6s ease forwards;
    opacity: 0;
    transform: translateY(40px);
}

@keyframes slideUpText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   BREADCRUMB NAV
================================ */

.crumb-nav {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    padding: 14px 28px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeInNav 1.8s ease forwards;
    opacity: 0;
}

@keyframes fadeInNav {
    to {
        opacity: 1;
    }
}

.crumb-nav a {
    text-decoration: none;
    color: #0f1b2a;
    position: relative;
    transition: 0.3s;
}

    .crumb-nav a::after {
        content: "";
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 0%;
        height: 2px;
        background: #0B3C5D;
        transition: 0.3s;
    }

    .crumb-nav a:hover::after {
        width: 100%;
    }

.crumb-nav span {
    color: #0b3c5d;
}

.crumb-nav .active {
    font-weight: 600;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {

    .balaji-crumb-diagonal {
        padding: 50px 30px;
        text-align: center;
    }

    .crumb-content {
        flex-direction: column;
        gap: 25px;
    }

    .crumb-text h1 {
        font-size: 30px;
    }

    .crumb-bg-layer {
        width: 100%;
        clip-path: none;
    }
}
/* ==========================================
   TABLET VIEW (769px – 1024px)
   Keep same layout as desktop
========================================== */

@media (max-width:1024px) and (min-width:769px) {

    .balaji-crumb-diagonal {
        padding: 50px 40px;
        min-height: 130px;
        text-align: left;
    }

    /* Keep horizontal layout */
    .crumb-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    /* Keep diagonal background */
    .crumb-bg-layer {
        width: 65%;
        clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    /* Reduce heading size */
    .crumb-text h1 {
        font-size: 34px;
        margin-bottom: 6px;
    }

    /* Reduce subtitle size */
    .crumb-text p {
        font-size: 14px;
    }

    /* Adjust breadcrumb nav */
    .crumb-nav {
        padding: 10px 18px;
        font-size: 14px;
        gap: 8px;
    }

        .crumb-nav a,
        .crumb-nav span {
            font-size: 14px;
        }

    /* Adjust floating shapes size */
    .balaji-crumb-diagonal::before {
        width: 140px;
        height: 140px;
        top: 20px;
        left: 28%;
    }
}

/* ===============================
   EXECUTIVE CONTACT SECTION
================================= */

.balaji-contact-executive {
    padding: 110px 6%;
    background: #F4F7FA;
}

.executive-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: center;
}

/* ===============================
   PROFILE PANEL
================================= */

.executive-profile {
    position: relative;
    background: url('../images/p2.png') center;
    padding: 60px 35px 40px;
    border-radius: 5px;
    box-shadow: 0 0px 6px rgba(102, 86, 36, 0.74);
    animation: profileSlide 1s ease forwards;
}

.profile-image-wrapper {
    position: absolute;
    top: -70px;
    left: 35px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

    .profile-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.profile-info {
    margin-top: 80px;
}

    .profile-info h2 {
        color: #0B3C5D;
        font-size: 22px;
        margin-bottom: 5px;
    }

.designation {
    color: #D4AF37;
    font-size: 14px;
    margin-bottom: 25px;
}

.profile-contact div {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.profile-contact i {
    color: #0B3C5D;
}

.profile-desc {
    margin-top: 25px;
    font-size: 13px;
    color: #6B7280;
    line-height: 1.6;
}

/* ===============================
   FORM PANEL
================================= */

.executive-form {
    background: url('../images/c2.png') no-repeat center;
    background-size: cover;
    padding: 70px 60px;
    border-radius: 2px;
    box-shadow: 0 0px 10px rgba(15, 27, 42, 0.32);
    animation: formFade 1.2s ease forwards;
}

    .executive-form h3 {
        font-size: 24px;
        color: #0B3C5D;
        margin-bottom: 40px;
    }

/* Floating Label Inputs */

.exec-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.exec-input {
    position: relative;
}

    .exec-input.full {
        grid-column: span 2;
    }

    .exec-input input,
    .exec-input textarea {
        width: 100%;
        padding: 14px 10px;
        border: none;
        border-bottom: 2px solid #E5E7EB;
        outline: none;
        font-size: 14px;
        background: transparent;
    }

    .exec-input label {
        position: absolute;
        top: 14px;
        left: 10px;
        font-size: 14px;
        color: #9CA3AF;
        transition: 0.3s ease;
        pointer-events: none;
    }

    .exec-input input:focus + label,
    .exec-input input:valid + label,
    .exec-input textarea:focus + label,
    .exec-input textarea:valid + label {
        top: 0px;
        font-size: 12px;
        color: #0B3C5D;
        padding: 15px 0;
    }

    .exec-input input:focus,
    .exec-input textarea:focus {
        border-bottom: 2px solid #0B3C5D;
        padding-top: 30px;
    }

    .exec-input textarea {
        height: 120px;
        resize: none;
    }

/* Button */

.exec-btn {
    background: #0B3C5D;
    color: #fff;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 40px;
}

    .exec-btn:hover {
        background: #D4AF37;
        color: #000;
    }

/* ===============================
   ANIMATIONS
================================= */

@keyframes profileSlide {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes formFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 992px) {

    .executive-container {
        grid-template-columns: 1fr;
        gap: 90px;
    }

    .profile-image-wrapper {
        left: 50%;
        transform: translateX(-50%);
    }

    .executive-form {
        padding: 50px 30px;
    }

    .exec-form-grid {
        grid-template-columns: 1fr;
    }

    .exec-input.full {
        grid-column: span 1;
    }
}
/* ==========================================
   TABLET VIEW (769px – 1024px)
   Keep same layout as desktop
========================================== */

@media (max-width:1024px) and (min-width:769px) {

    /* Keep two-column layout */
    .executive-container {
        grid-template-columns: 360px 1fr;
        gap: 40px;
        align-items: center;
    }

    /* Profile panel adjustments */
    .executive-profile {
        padding: 50px 25px 35px;
    }

    .profile-image-wrapper {
        width: 110px;
        height: 110px;
        top: -60px;
        left: 25px;
    }

    .profile-info {
        margin-top: 70px;
    }

        .profile-info h2 {
            font-size: 20px;
        }

    .designation {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .profile-contact div {
        font-size: 13px;
        gap: 8px;
    }

    .profile-desc {
        font-size: 12.5px;
        line-height: 1.5;
    }

    /* Form panel adjustments */
    .executive-form {
        padding: 50px 40px;
    }

        .executive-form h3 {
            font-size: 20px;
            margin-bottom: 30px;
        }

    .exec-form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .exec-input input,
    .exec-input textarea {
        font-size: 13px;
        padding: 12px 8px;
    }

    .exec-input label {
        font-size: 13px;
    }

    .exec-input textarea {
        height: 100px;
    }

    .exec-btn {
        padding: 12px 22px;
        font-size: 14px;
        margin-top: 25px;
    }
}


/*Testimonials SECTION */
.bta-pop-section {
    padding: 100px 20px;
    background: url('../images/t3.png') no-repeat center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Segoe UI', sans-serif;
}

/* HEADER */
.bta-pop-header {
    text-align: center;
    margin-bottom: 60px;
}

    .bta-pop-header h2 {
        font-size: 38px;
        color: #0b2c5f;
        font-weight: 700;
    }

    .bta-pop-header span {
        color: #caa54b;
    }

/* GRID */
.bta-pop-grid {
    max-width: 1000px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* CARD */
.bta-pop-card {
    background: white;
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-top: 4px solid #0b2c5f;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.7);
    animation: popIn 0.6s forwards;
}

    /* DIFFERENT WIDTH */
    .bta-pop-card.wide {
        grid-column: span 2;
    }

    .bta-pop-card.small {
        padding: 18px;
    }

    /* POP DELAYS */
    .bta-pop-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .bta-pop-card:nth-child(2) {
        animation-delay: 0.3s;
    }

    .bta-pop-card:nth-child(3) {
        animation-delay: 0.5s;
    }

    .bta-pop-card:nth-child(4) {
        animation-delay: 0.7s;
    }

    .bta-pop-card:nth-child(5) {
        animation-delay: 0.9s;
    }

/* POP ANIMATION */
@keyframes popIn {

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* SPOTLIGHT HOVER EFFECT */
.bta-pop-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient( 120deg, transparent, rgba(202,165,75,0.25), transparent );
}

/* SPOTLIGHT SWEEP */
.bta-pop-card:hover::before {
    animation: spotlight 0.8s;
}

/* CARD HOVER LIFT */
.bta-pop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(11,44,95,0.18);
    border-top: 4px solid #caa54b;
}

/* SPOTLIGHT KEYFRAME */
@keyframes spotlight {

    from {
        left: -100%;
    }

    to {
        left: 100%;
    }
}

/* TEXT */
.bta-pop-text {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* CLIENT */
.bta-pop-client {
    display: flex;
    align-items: center;
}

/* AVATAR */
.bta-pop-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg,#0b2c5f,#1e4c9a);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 12px;
}

/* NAME */
.bta-pop-name {
    font-weight: 600;
    color: #0b2c5f;
}

/* QUOTE */
.bta-pop-quote {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 38px;
    color: rgba(202,165,75,0.2);
}

/* RESPONSIVE */
@media(max-width:700px) {
    .bta-pop-card.wide {
        grid-column: span 1;
    }
}





/* SECTION */
.bta-hscroll-gallery-section {
    padding: 100px 0;
    background: linear-gradient(180deg,#f3f7fd,#ffffff);
    font-family: 'Segoe UI', sans-serif;
    position: relative;
}

/* HEADER */
.bta-hscroll-gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

    .bta-hscroll-gallery-header h2 {
        font-size: 38px;
        font-weight: 700;
        color: #0b2c5f;
    }

    .bta-hscroll-gallery-header span {
        color: #caa54b;
    }


/* CONTAINER */
.bta-hscroll-container {
    overflow: hidden;
    max-width: 1200px;
    margin: auto;
    position: relative;
}

/* ROW */
.bta-hscroll-row {
    display: flex;
    gap: 25px;
    transition: transform 0.6s ease;
}

/* CARD */
.bta-hscroll-card {
    flex: 0 0 auto;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: white;
    transition: all 0.4s ease;
}

    /* IMAGE */
    .bta-hscroll-card img {
        height: 280px;
        width: auto;
        display: block;
    }

    /* HOVER */
    .bta-hscroll-card:hover {
        transform: translateY(-12px) scale(1.05);
        box-shadow: 0 25px 60px rgba(11,44,95,0.35);
    }

/* BUTTONS */
.bta-gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0b2c5f;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: 0.3s;
    z-index: 99999;
}

    .bta-gallery-btn:hover {
        background: #caa54b;
    }

.bta-prev {
    left: 10px;
}

.bta-next {
    right: 10px;
}

/* RESPONSIVE */
@media(max-width:700px) {
    .bta-hscroll-card img {
        height: 200px;
    }
}




/* SECTION */
.bta-floatcol-gallery-section {
    padding: 100px 20px;
    background: linear-gradient(180deg,#f4f8fd,#ffffff);
    font-family: 'Segoe UI', sans-serif;
}


/* HEADER */
.bta-floatcol-gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

    .bta-floatcol-gallery-header h2 {
        font-size: 42px;
        font-weight: 700;
        color: #0b2c5f;
    }

    .bta-floatcol-gallery-header span {
        color: #caa54b;
    }


/* COLUMN LAYOUT (UNCHANGED) */
.bta-floatcol-gallery {
    max-width: 1200px;
    margin: auto;
    column-count: 3;
    column-gap: 25px;
}


/* CARD */
.bta-floatcol-card {
    display: inline-block;
    width: 100%;
    margin-bottom: 25px;
    border-radius: 4px;
    overflow: hidden;
    background: white;
    box-shadow: 0 0px 6px rgba(9, 6, 26, 0.8);
    position: relative;
    transform: scale(0.6);
    opacity: 0;
    animation: elasticBounce 0.9s forwards;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}


    /* IMAGE */
    .bta-floatcol-card img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.6s ease, filter 0.4s ease;
    }


/* EXISTING ELASTIC BOUNCE REVEAL */
@keyframes elasticBounce {

    0% {
        transform: scale(0.6);
        opacity: 0;
    }

    60% {
        transform: scale(1.08);
        opacity: 1;
    }

    80% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}


/* STAGGER */
.bta-floatcol-card:nth-child(1) {
    animation-delay: 0.1s;
}

.bta-floatcol-card:nth-child(2) {
    animation-delay: 0.2s;
}

.bta-floatcol-card:nth-child(3) {
    animation-delay: 0.3s;
}

.bta-floatcol-card:nth-child(4) {
    animation-delay: 0.4s;
}

.bta-floatcol-card:nth-child(5) {
    animation-delay: 0.5s;
}

.bta-floatcol-card:nth-child(6) {
    animation-delay: 0.6s;
}


/* NEW UNIQUE HOVER: 3D TILT */
.bta-floatcol-card:hover {
    transform: perspective(800px) rotateX(4deg) rotateY(-4deg) scale(1.05);
    box-shadow: 0 35px 70px rgba(11,44,95,0.35), 0 0 20px rgba(202,165,75,0.2);
}


    /* IMAGE DEPTH EFFECT */
    .bta-floatcol-card:hover img {
        transform: scale(1.1);
        filter: contrast(110%) brightness(105%);
    }


/* GLOW BORDER EFFECT */
.bta-floatcol-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 2px;
    background: linear-gradient( 120deg, transparent, #caa54b, transparent );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.bta-floatcol-card:hover::before {
    opacity: 1;
    animation: borderGlow 2s linear infinite;
}


/* LIGHT REFLECTION SWEEP */
.bta-floatcol-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient( 120deg, transparent, rgba(255,255,255,0.5), transparent );
    transform: skewX(-25deg);
}

.bta-floatcol-card:hover::after {
    animation: lightSweep 0.8s ease;
}


/* BORDER GLOW ANIMATION */
@keyframes borderGlow {

    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}


/* LIGHT SWEEP ANIMATION */
@keyframes lightSweep {

    from {
        left: -120%;
    }

    to {
        left: 120%;
    }
}


/* RESPONSIVE */
@media(max-width:900px) {
    .bta-floatcol-gallery {
        column-count: 2;
    }
}

@media(max-width:600px) {
    .bta-floatcol-gallery {
        column-count: 1;
    }
}





/* SECTION */
.bta-geo-breadcrumb-section {
    position: relative;
    padding: 110px 20px 80px;
    background: linear-gradient( 120deg, var(--primary-color), var(--accent-color) );
    overflow: hidden;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
}


    /* ANGLED BACKGROUND SHAPE */
    .bta-geo-breadcrumb-section::before {
        content: "";
        position: absolute;
        width: 120%;
        height: 180px;
        background: var(--secondary-color);
        bottom: -60px;
        left: -10%;
        transform: skewY(-6deg);
        opacity: 0.15;
    }


/* FLOATING SQUARES */
.bta-square {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--secondary-color);
    opacity: 0.2;
    animation: floatSquare 10s infinite linear;
}

    .bta-square:nth-child(1) {
        top: 20%;
        left: 10%;
    }

    .bta-square:nth-child(2) {
        top: 60%;
        right: 15%;
        animation-delay: 3s;
    }

    .bta-square:nth-child(3) {
        top: 35%;
        right: 30%;
        animation-delay: 6s;
    }


@keyframes floatSquare {

    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-80px) rotate(360deg);
    }
}


/* TITLE */
.bta-geo-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    animation: slideFadeDown 1s ease;
}

@keyframes slideFadeDown {

    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* BREADCRUMB */
.bta-geo-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 15px 35px;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    animation: slideFadeUp 1s ease;
}

@keyframes slideFadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ITEM */
.bta-geo-item {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: 0.3s;
}


/* ICON */
.bta-geo-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconBounce 2s infinite;
}

@keyframes iconBounce {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}


/* ACTIVE */
.bta-geo-item.active {
    color: var(--secondary-color);
}

    .bta-geo-item.active .bta-geo-icon {
        background: var(--secondary-color);
        color: var(--primary-color);
    }


/* SEPARATOR */
.bta-geo-separator {
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
    animation: expandLine 1.5s infinite alternate;
}

@keyframes expandLine {

    from {
        width: 20px;
    }

    to {
        width: 35px;
    }
}


/* HOVER */
.bta-geo-item:hover {
    transform: translateY(-4px);
}


/* RESPONSIVE */
@media(max-width:600px) {

    .bta-geo-breadcrumb {
        flex-direction: column;
        border-radius: 20px;
    }
}

/* ICON CONTAINER */
.bta-geo-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: var(--shadow-soft);
    transition: 0.3s ease;
    animation: iconFloat 3s infinite ease-in-out;
}


/* ACTIVE ICON */
.bta-geo-item.active .bta-geo-icon {
    background: var(--secondary-color);
    color: var(--primary-color);
}


/* ICON ANIMATION */
@keyframes iconFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}


/* HOVER EFFECT */
.bta-geo-item:hover .bta-geo-icon {
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}


/* ICON SIZE CONTROL */
.bta-geo-icon i {
    font-size: 16px;
}


/* MASTER SECTION */
.bta-tax-wrapper {
    display: grid;
    grid-template-columns: 340px 1fr;
    min-height: 750px;
    background: var(--light-bg);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    font-family: 'Segoe UI', sans-serif;
}


/* SIDEBAR */
.bta-tax-sidebar {
    background: linear-gradient(180deg,var(--primary-color),var(--dark-bg));
    padding: 30px;
    color: white;
    position: relative;
}


    /* FLOATING SHAPE */
    .bta-tax-sidebar::before {
        content: "";
        position: absolute;
        width: 200px;
        height: 200px;
        background: var(--secondary-color);
        opacity: 0.08;
        border-radius: 50%;
        top: -60px;
        right: -60px;
        animation: floatShape 10s infinite ease-in-out;
    }

@keyframes floatShape {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(40px);
    }

    100% {
        transform: translateY(0);
    }
}


/* SIDEBAR TITLE */
.bta-tax-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--secondary-color);
}


/* MENU ITEM */
.bta-tax-item {
    padding: 14px 16px;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.05);
    transition: 0.4s;
    position: relative;
}


    /* ACTIVE HIGHLIGHT */
    .bta-tax-item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 100%;
        background: var(--secondary-color);
        border-radius: 10px;
        transition: 0.4s;
    }

    .bta-tax-item.active::before {
        width: 100%;
    }

    .bta-tax-item span,
    .bta-tax-item i {
        position: relative;
        z-index: 1;
    }

    .bta-tax-item.active {
        color: var(--primary-color);
        font-weight: 600;
    }


/* CONTENT AREA */
.bta-tax-content {
    background: white;
    padding: 50px;
    position: relative;
}


/* PANEL */
.bta-tax-panel {
    display: none;
    opacity: 0;
}


    /* ACTIVE PANEL */
    .bta-tax-panel.active {
        display: block;
        animation: panelAnimation 0.6s ease forwards;
    }


/* PANEL ANIMATION */
@keyframes panelAnimation {

    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* CONTENT TITLE */
.bta-tax-panel-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}


/* DESCRIPTION */
.bta-tax-panel-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 30px;
}


/* SERVICE GRID */
.bta-tax-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 18px;
}


/* CARD */
.bta-tax-card {
    background: var(--light-bg);
    padding: 18px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    transition: 0.4s;
}


    /* CARD HOVER */
    .bta-tax-card:hover {
        transform: translateY(-8px) scale(1.03);
        background: white;
        box-shadow: var(--shadow-soft);
    }


/* RESPONSIVE */
@media(max-width:900px) {

    .bta-tax-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   TABLET VIEW (769px – 1024px)
   Keep same layout as desktop
========================================== */

@media (max-width:1024px) and (min-width:769px) {

    /* Keep sidebar + content side-by-side */
    .bta-tax-wrapper {
        display: grid;
        grid-template-columns: 280px 1fr;
        min-height: 650px;
    }

    /* Sidebar adjustments */
    .bta-tax-sidebar {
        padding: 25px 18px;
    }

    .bta-tax-title {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .bta-tax-item {
        padding: 12px 14px;
        font-size: 14px;
        gap: 10px;
    }

        .bta-tax-item i {
            font-size: 14px;
        }

    /* Content adjustments */
    .bta-tax-content {
        padding: 35px;
    }

    .bta-tax-panel-title {
        font-size: 26px;
    }

    .bta-tax-panel-desc {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 22px;
    }

    /* Grid stays same but optimized */
    .bta-tax-grid {
        grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
        gap: 14px;
    }

    .bta-tax-card {
        padding: 14px;
        font-size: 14px;
    }
}


/* SECTION */
.bta-us-section {
    padding: 100px 20px;
    background: linear-gradient(135deg,#F4F7FA,#ffffff);
    position: relative;
    overflow: hidden;
}


    /* FLOATING SHAPES */
    .bta-us-section:before,
    .bta-us-section:after {
        content: "";
        position: absolute;
        border-radius: 50%;
        background: rgba(212,175,55,0.08);
        animation: float 8s infinite ease-in-out;
    }

    .bta-us-section:before {
        width: 300px;
        height: 300px;
        top: -100px;
        left: -100px;
    }

    .bta-us-section:after {
        width: 200px;
        height: 200px;
        bottom: -80px;
        right: -80px;
    }

@keyframes float {

    0%,100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-30px);
    }
}


/* TITLE */
.bta-us-title {
    text-align: center;
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}


/* SUBTITLE */
.bta-us-sub {
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    font-size: 18px;
}


/* GRID */
.bta-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}


/* COLUMN */
.bta-us-column {
    background: white;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    transition: 0.4s;
}


    /* HOVER */
    .bta-us-column:hover {
        transform: translateY(-10px);
    }


    /* GOLD TOP BORDER ANIMATION */
    .bta-us-column:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 4px;
        width: 0;
        background: var(--secondary);
        transition: 0.5s;
    }

    .bta-us-column:hover:before {
        width: 100%;
    }


/* COLUMN TITLE */
.bta-us-column-title {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600;
}


/* SERVICE ITEM */
.bta-us-item {
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    background: #f8fafc;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
}


    /* ITEM HOVER EFFECT */
    .bta-us-item:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 0;
        background: linear-gradient(90deg,var(--secondary),transparent);
        opacity: 0.2;
        transition: 0.4s;
    }

    .bta-us-item:hover:before {
        width: 100%;
    }

    .bta-us-item:hover {
        transform: translateX(8px);
        background: #ffffff;
    }


    /* ICON DOT */
    .bta-us-item:after {
        content: "";
        position: absolute;
        left: -10px;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 6px;
        background: var(--secondary);
        border-radius: 50%;
        opacity: 0;
        transition: 0.3s;
    }

    .bta-us-item:hover:after {
        left: 5px;
        opacity: 1;
    }

/* ============================= */
/* SCROLL REVEAL ANIMATION */
/* ============================= */

.bta-us-title,
.bta-us-sub {
    opacity: 0;
    transform: translateY(40px);
    animation: titleReveal 1s ease forwards;
}

.bta-us-sub {
    animation-delay: .3s;
}

@keyframes titleReveal {

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================= */
/* STAGGER COLUMN ENTRY */
/* ============================= */

.bta-us-column {
    opacity: 0;
    transform: translateY(60px) scale(.95);
    animation: columnReveal .8s ease forwards;
}

    .bta-us-column:nth-child(1) {
        animation-delay: .3s;
    }

    .bta-us-column:nth-child(2) {
        animation-delay: .6s;
    }

    .bta-us-column:nth-child(3) {
        animation-delay: .9s;
    }


@keyframes columnReveal {

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* ============================= */
/* SHIMMER EFFECT */
/* ============================= */

.bta-us-column:after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient( 120deg, transparent, rgba(255,255,255,.4), transparent );
    transform: skewX(-25deg);
}

.bta-us-column:hover:after {
    animation: shimmerMove 1.2s ease;
}

@keyframes shimmerMove {

    100% {
        left: 120%;
    }
}


/* ============================= */
/* BREATHING GLOW ANIMATION */
/* ============================= */

.bta-us-column {
    animation: columnReveal .8s ease forwards, glowBreath 4s infinite ease-in-out;
}

@keyframes glowBreath {

    0%,100% {
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    }

    50% {
        box-shadow: 0 20px 60px rgba(11,60,93,0.15);
    }
}


/* ============================= */
/* SERVICE ITEM STAGGER REVEAL */
/* ============================= */

.bta-us-item {
    opacity: 0;
    transform: translateX(-20px);
    animation: itemReveal .6s ease forwards;
}

    .bta-us-item:nth-child(1) {
        animation-delay: .2s;
    }

    .bta-us-item:nth-child(2) {
        animation-delay: .3s;
    }

    .bta-us-item:nth-child(3) {
        animation-delay: .4s;
    }

    .bta-us-item:nth-child(4) {
        animation-delay: .5s;
    }

    .bta-us-item:nth-child(5) {
        animation-delay: .6s;
    }

    .bta-us-item:nth-child(6) {
        animation-delay: .7s;
    }

    .bta-us-item:nth-child(7) {
        animation-delay: .8s;
    }

    .bta-us-item:nth-child(8) {
        animation-delay: .9s;
    }

@keyframes itemReveal {

    to {
        opacity: 1;
        transform: translateX(0);
    }
}




/* ============================= */
/* GRID PARALLAX MICRO MOVEMENT */
/* ============================= */

.bta-us-grid {
    animation: gridFloat 8s ease-in-out infinite;
}

@keyframes gridFloat {

    0%,100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }
}


/* ===========================
   FLOAT POSITION
=========================== */

.bta-wa-pill {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    text-decoration: none;
}


/* ===========================
   INNER CONTAINER
=========================== */

.bta-wa-inner {
    display: flex;
    align-items: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg,#25D366,#128C7E);
    border-radius: 6px;
    color: white;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0px 0 6px rgba(5, 41, 22, 0.55);
    transition: all .6s cubic-bezier(.23,1,.32,1);
    position: relative;
    /* gentle floating animation */
    animation: waFloatSoft 4s ease-in-out infinite;
}


/* FLOAT ANIMATION (SLOW) */

@keyframes waFloatSoft {

    0%,100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }
}


/* ICON */

.bta-wa-inner i {
    font-size: 22px;
    min-width: 40px;
    text-align: center;
    transition: transform .8s ease;
}


/* TEXT */

.bta-wa-text {
    white-space: nowrap;
    opacity: 0;
    margin-left: 4px;
    font-size: 13px;
    font-weight: 500;
    transition: opacity .5s ease;
}


/* ===========================
   HOVER EXPAND
=========================== */

.bta-wa-pill:hover .bta-wa-inner {
    width: 170px;
    background: linear-gradient(135deg,#0B3C5D,#1F7A8C);
}


/* SHOW TEXT */

.bta-wa-pill:hover .bta-wa-text {
    opacity: 1;
}


/* ICON ROTATE SLOW */

.bta-wa-pill:hover i {
    transform: rotate(360deg);
}


/* ===========================
   SOFT GLOW ANIMATION
=========================== */

.bta-wa-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(90deg,transparent,rgba(255,255,255,.3),transparent);
    opacity: 0;
    transition: opacity .6s;
}

.bta-wa-pill:hover .bta-wa-inner::before {
    opacity: 1;
    animation: waGlowMove 2s linear infinite;
}


@keyframes waGlowMove {

    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}


/* ===========================
   MOBILE
=========================== */

@media(max-width:768px) {

    .bta-wa-inner {
        width: 35px;
        height: 35px;
    }

        .bta-wa-inner i {
            font-size: 20px;
            min-width: 35px;
        }

    .bta-wa-pill:hover .bta-wa-inner {
        width: 180px;
    }

    .bta-wa-text {
        font-size: 12px;
    }
}
/* ==========================================
   TABLET VIEW (≤1024px)
   Show text by default
========================================== */

@media (max-width:1024px) {

    .bta-wa-inner {
        width: 180px; /* expanded width */
        background: linear-gradient(135deg,#0B3C5D,#1F7A8C);
    }

    .bta-wa-text {
        opacity: 1; /* show text */
        margin-left: 6px;
    }

    /* Disable hover rotate on touch devices */
    .bta-wa-pill:hover i {
        transform: none;
    }
}


/* ==========================================
   MOBILE VIEW (≤768px)
========================================== */

@media(max-width:768px) {

    .bta-wa-pill {
        right: 12px;
    }

    .bta-wa-inner {
        width: 165px;
        height: 38px;
        animation: none; /* stop floating on mobile for stability */
    }

        .bta-wa-inner i {
            font-size: 18px;
            min-width: 38px;
        }

    .bta-wa-text {
        opacity: 1;
        font-size: 12px;
    }
}


/* ==========================================
   SMALL MOBILE (≤480px)
========================================== */

@media(max-width:480px) {

    .bta-wa-inner {
        width: 150px;
        height: 36px;
    }

    .bta-wa-text {
        font-size: 11.5px;
    }
}
