/* ============================================================
   BAAJE Website Redesign — Premium Corporate Overlay
   Loaded AFTER main.css to selectively override and enhance
   ============================================================ */

/* ---- CSS Custom Properties (Design Tokens) ---- */
:root {
    /* A deep, rich base that clearly reflects blue */
    --baaje-navy: #0a2342;

    /* A slightly more saturated, "bright" version for accents */
    --baaje-navy-2: #15325b;

    /* A muted, professional tone */
    --baaje-navy-3: #1b2d48;

    /* A dark shade that still has "soul" compared to pure dark */
    --baaje-dark: #051930;
    /* alias – used everywhere */

    /* Brand Colors */
    --baaje-primary: #008080;
    /* Teal – for CTAs / buttons */
    --baaje-primary-dark: #006666;
    --baaje-primary-light: #00a3a3;
    --baaje-gold: #D4AF37;
    /* Gold – for headings / icons */
    --baaje-gold-light: #e6c65c;

    /* Neutral */
    --baaje-charcoal: #333333;
    --baaje-surface: #f8fafb;
    --baaje-surface-2: #F8F9FA;
    --baaje-text: #2c3e50;
    --baaje-text-muted: #6b7c93;
    --baaje-white: #ffffff;
    --baaje-border: rgba(0, 128, 128, 0.12);
    --baaje-border-light: rgba(0, 0, 0, 0.06);

    /* Shadows */
    --baaje-shadow-sm: 0 2px 8px rgba(0, 27, 52, 0.08);
    --baaje-shadow-md: 0 8px 30px rgba(0, 27, 52, 0.12);
    --baaje-shadow-lg: 0 20px 60px rgba(0, 27, 52, 0.18);

    /* Gradients */
    --baaje-gradient: linear-gradient(135deg, #008080 0%, #00a3a3 50%, #00b4d8 100%);
    --baaje-gradient-dark: linear-gradient(135deg, #001b34 0%, #001426 100%);
    --baaje-gradient-gold: linear-gradient(135deg, #D4AF37 0%, #e6c65c 100%);

    /* Typography */
    --baaje-ff: 'Inter', 'Mona Sans', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --baaje-section-py: clamp(60px, 8vw, 120px);
    --baaje-section-py-sm: clamp(40px, 6vw, 80px);

    /* Border radius */
    --baaje-radius-sm: 8px;
    --baaje-radius-md: 12px;
    --baaje-radius-lg: 20px;
    --baaje-radius-xl: 28px;

    /* Transitions */
    --baaje-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --baaje-ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --baaje-duration: 0.35s;
    --baaje-duration-slow: 0.6s;
}

/* ============================================================
   1. GLOBAL BASE — typography family only, NOT color
   ============================================================ */

body {
    font-family: var(--baaje-ff) !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.7;
}

/* Font family only — NO global color override here */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--baaje-ff) !important;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

/* ── Also: parent .staff div has mt-3 class → reduce its margin */
footer .staff {
    margin-top: 0.5rem !important;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.15rem, 2vw, 1.5rem);
}

a {
    transition: color var(--baaje-duration) var(--baaje-ease),
        opacity var(--baaje-duration) var(--baaje-ease);
}

/* ============================================================
   2. SECTION SPACING
   ============================================================ */

.section-gap {
    padding-top: var(--baaje-section-py) !important;
    padding-bottom: var(--baaje-section-py) !important;
}

@media (max-width: 991px) {
    .section-gap {
        padding-top: var(--baaje-section-py-sm) !important;
        padding-bottom: var(--baaje-section-py-sm) !important;
    }
}

/* ============================================================
   3. HEADER TOP BAR — White background, Gold social icons
   ============================================================ */

.header-top {
    background: var(--baaje-surface-2) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0.5rem 0;
}

.header-top * {
    color: var(--baaje-charcoal) !important;
}

.header-top .social-links ul li a,
.header-top .social-links.style-2 ul li a {
    color: var(--baaje-gold) !important;
    font-size: 0.9rem;
    transition: color var(--baaje-duration) var(--baaje-ease);
}

.header-top .social-links ul li a:hover,
.header-top .social-links.style-2 ul li a:hover {
    color: var(--baaje-primary) !important;
    transform: translateY(-2px);
}

/* ============================================================
   4. MAIN HEADER (sticky white glass)
   ============================================================ */

.header-bottom {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--baaje-duration) var(--baaje-ease);
}

.header-area.sticky .header-bottom {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--baaje-shadow-md);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

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

.header-area.sticky {
    animation: slideDown 0.4s var(--baaje-ease) forwards;
}


/* Keep slide content above the overlay */
.tj-slider-item .container {
    position: relative;
    z-index: 2;
}

/* Nav Links */
.mainmenu>ul>li>a {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: var(--baaje-dark) !important;
    padding: 1.2rem 1rem !important;
    position: relative;
    transition: color var(--baaje-duration) var(--baaje-ease);
}

.mainmenu>ul>li>a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--baaje-gradient);
    transition: all var(--baaje-duration) var(--baaje-ease);
    transform: translateX(-50%);
    border-radius: 2px;
}

.mainmenu>ul>li:hover>a::before,
.mainmenu>ul>li.current-menu-item>a::before {
    width: 60%;
}

/* Active page indicator stays teal/green */
.mainmenu>ul>li:hover>a,
.mainmenu>ul>li.current-menu-item>a {
    color: var(--baaje-primary) !important;
}

/* Dropdown */
.mainmenu ul li .sub-menu {
    background: var(--baaje-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--baaje-radius-md);
    box-shadow: var(--baaje-shadow-lg);
    padding: 0.75rem 0;
    min-width: 240px;
}

.mainmenu ul li .sub-menu li a {
    font-size: 0.88rem !important;
    font-weight: 500;
    color: var(--baaje-text) !important;
    padding: 0.55rem 1.5rem !important;
    transition: all var(--baaje-duration) var(--baaje-ease);
    border-left: 2px solid transparent;
}

.mainmenu ul li .sub-menu li a:hover {
    color: var(--baaje-primary) !important;
    background: rgba(0, 128, 128, 0.04);
    border-left-color: var(--baaje-primary);
    padding-left: 1.75rem !important;
}

/* Logo — header (larger, beats main.css width:117px) */
.site_logo,
.site_logo img {
    width: auto !important;
    max-width: none !important;
    max-height: 92px !important;
    /* 15% bigger than 80px */
    height: auto !important;
}

/* Mobile logo */
.mobile_logo img {
    max-height: 55px !important;
}

/* Mobile menu */
.hamburger_wrapper {
    background: var(--baaje-dark) !important;
}

/* ============================================================
   5. BUTTONS — Teal gradient for all CTAs
   ============================================================ */

.tj-primary-btn {
    font-family: var(--baaje-ff) !important;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px !important;
    padding: 0.75rem 2rem;
    background: var(--baaje-gradient) !important;
    color: var(--baaje-white) !important;
    border: none !important;
    transition: all var(--baaje-duration) var(--baaje-ease);
    box-shadow: 0 4px 15px rgba(0, 128, 128, 0.25);
}

.tj-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 128, 128, 0.35);
    color: var(--baaje-white) !important;
}

.tj-primary-btn .btn-icon {
    margin-left: 0.5rem;
    transition: transform var(--baaje-duration) var(--baaje-ease);
}

.tj-primary-btn:hover .btn-icon {
    transform: translateX(4px);
}

/* ============================================================
   6. HERO SECTION — headings on white/light bg
   ============================================================ */

/* The About section with "Excellence In AV & IT Since 1991" sits on a
   light/white background → heading must be DARK, not gold */
.tj-about-section,
.h8-about-section {
    background: var(--baaje-surface);
}

.tj-about-section .sec-title,
.h8-about-content-inner h2,
.h8-about-content-inner .sec-title {
    color: var(--baaje-dark) !important;
    -webkit-text-fill-color: var(--baaje-dark) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

.h8-about-content-inner p,
.tj-about-section p {
    color: var(--baaje-text-muted) !important;
    font-size: 1.05rem;
    line-height: 1.9;
}

/* ============================================================
   7. WHAT WE DO SECTION (h5-strategy) — LEFT ALIGNED, dark text on light bg
   ============================================================ */

.h5-strategy {
    background: var(--baaje-surface);
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

/* Section heading left-aligned */
.h5-strategy .sec-heading,
.h5-strategy .h5-strategy-heading {
    text-align: left !important;
}

.h5-strategy .sec-title,
.h5-strategy h2 {
    color: var(--baaje-dark) !important;
    text-align: left !important;
}

.h5-strategy .sub-title {
    color: var(--baaje-primary) !important;
}

.h5-strategy p,
.h5-strategy .h5-strategy-title,
.h5-strategy .h5-strategy-desc {
    color: var(--baaje-text-muted) !important;
    text-align: left;
}

/* ============================================================
   8. PRODUCT OFFERINGS & INDUSTRIES WE SERVE
   — Navy background → Gold headings, white text
   ============================================================ */

.tj-project-section-3 {
    background-color: var(--baaje-navy) !important;
    border-radius: var(--baaje-radius-lg);
}

/* GOLD heading on navy — but user wants WHITE so override to white */
.tj-project-section-3 .sec-title,
.tj-project-section-3 h2,
.tj-project-section-3 h3 {
    color: #FFFFFF !important;
}

.tj-project-section-3 .sub-title {
    color: var(--baaje-gold) !important;
    background: rgba(212, 175, 55, 0.12);
    border: none;
    padding: 0.4rem 1rem;
    border-radius: 50px;
}

/* Cards inside these sections → Logo Navy bg, gold titles, white text */
.tj-project-section-3 .project-item {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--baaje-radius-md) !important;
    overflow: hidden;
    transition: all var(--baaje-duration-slow) var(--baaje-ease);
}

.tj-project-section-3 .project-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tj-project-section-3 .project-item .project-content {
    background: var(--baaje-navy) !important;
    padding: 1.25rem 1.5rem;
}

.tj-project-section-3 .project-item .project-content .title,
.tj-project-section-3 .project-item .project-content .title a {
    color: var(--baaje-gold) !important;
    font-weight: 600;
    font-size: 1rem;
}

.tj-project-section-3 .project-item .project-content p,
.tj-project-section-3 .project-item .project-content .desc {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Swiper pagination bullets on navy */
.tj-project-section-3 .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.tj-project-section-3 .swiper-pagination-bullet-active {
    background: var(--baaje-gold);
    width: 24px;
    border-radius: 4px;
}

/* ============================================================
   9. ABOUT PAGE — "Behind the Brand" / Our Story Section
   — Navy background → gold title, white body text
   ============================================================ */

.tj-service-section.service-2 {
    background: var(--baaje-navy) !important;
}

/* "Our Story, Your Success" heading → WHITE on navy */
.tj-service-section.service-2 .sec-heading .sec-title,
.tj-service-section.service-2 .sec-title,
.tj-service-section.service-2 h2 {
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
}

.tj-service-section.service-2 .sub-title {
    color: var(--baaje-gold) !important;
    background: rgba(212, 175, 55, 0.1);
    border: none;
    padding: 0.4rem 1rem;
    border-radius: 50px;
}

.tj-service-section.service-2 .desc1,
.tj-service-section.service-2 p {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Behind-the-Brand service cards */
.service-item.style-2 {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: var(--baaje-radius-lg);
    padding: 2rem;
    transition: all var(--baaje-duration) var(--baaje-ease);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-item.style-2:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(212, 175, 55, 0.3) !important;
    transform: translateY(-2px);
}

.service-item.style-2 .title,
.service-item.style-2 .title a {
    color: var(--baaje-white) !important;
    font-size: 1.1rem;
    font-weight: 600;
}

.service-item.style-2 .service-icon {
    color: var(--baaje-gold) !important;
    font-size: 1.3rem;
}

.service-item.style-2 .desc {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 0.95rem;
}

/* ============================================================
   10. TRANSLATION SYSTEM HIRE
   — Navy bg, Gold numbers, White text
   ============================================================ */

/* Section bg = Logo Navy */
.tj-service-section-5 {
    background: var(--baaje-surface);
}

/* Section title on this light bg */
.tj-service-section-5 .sec-title {
    color: var(--baaje-dark) !important;
}

/* ─── Translation system: force NO opacity:0 on cards ─── */
.service-item.style-5,
.service-item.style-5.reveal-up {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* Card itself → Logo Navy */
.service-item.style-5 {
    background-color: var(--baaje-navy) !important;
    border-radius: var(--baaje-radius-lg);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

/* 01, 02, 03 numbers → Brand Gold */
.service-item.style-5 .no {
    color: var(--baaje-gold) !important;
    -webkit-text-fill-color: var(--baaje-gold) !important;
    font-size: 60px;
    font-weight: 700;
    opacity: 1 !important;
    line-height: 1;
    margin-bottom: 16px;
}

/* Card title ("Pocket receiver") → White */
.service-item.style-5 .title,
.service-item.style-5 .title a {
    color: #FFFFFF !important;
    font-weight: 600;
}

.service-item.style-5 .title a:hover {
    color: var(--baaje-gold) !important;
}

/* Bullet list → fully opaque high-contrast white */
.service-item.style-5 .system-list,
.service-item.style-5 ul.system-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    opacity: 1 !important;
}

.service-item.style-5 .service-content,
.service-item.style-5 .service-content-area {
    opacity: 1 !important;
}

.service-item.style-5 .system-list li {
    color: #FFFFFF !important;
    /* solid white, not rgba */
    font-size: 0.95rem;
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.4rem;
    opacity: 1 !important;
}

.service-item.style-5 .system-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--baaje-gold);
}

.service-item.style-5 .system-list .inner-list {
    list-style: none;
    padding-left: 1rem;
    margin-top: 0.4rem;
}

.service-item.style-5 .system-list .inner-list li {
    color: rgba(255, 255, 255, 0.9) !important;
    opacity: 1 !important;
}

.service-item.style-5 .system-list .inner-list li::before {
    width: 4px;
    height: 4px;
    background: var(--baaje-primary-light);
}

/* Desc fallback */
.service-item.style-5 .desc,
.service-item.style-5 p {
    color: rgba(255, 255, 255, 0.9) !important;
    opacity: 1 !important;
}

/* ============================================================
   11. ABOUT PAGE — core principles cards (choose-box)
   ============================================================ */

.choose-box {
    background: var(--baaje-navy);
    border-radius: var(--baaje-radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--baaje-duration-slow) var(--baaje-ease);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.choose-box:hover {
    border-color: var(--baaje-gold);
    box-shadow: var(--baaje-shadow-md);
    transform: translateY(-4px);
}

.choose-box .title,
.choose-box h3,
.choose-box h4 {
    color: var(--baaje-gold) !important;
}

.choose-box .desc,
.choose-box p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.choose-icon {
    width: 60px;
    height: 60px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--baaje-radius-md);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--baaje-gold);
    transition: all var(--baaje-duration) var(--baaje-ease);
}

.choose-box:hover .choose-icon {
    background: var(--baaje-gold);
    color: var(--baaje-navy);
    transform: scale(1.05);
}

/* ============================================================
   12. STATS / COUNTUP — Logo Navy bg
   ============================================================ */

.countup-item.style-2 {
    background: var(--baaje-navy);
    border-radius: var(--baaje-radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: all var(--baaje-duration) var(--baaje-ease);
}

.countup-item.style-2:hover {
    border-color: var(--baaje-gold);
    box-shadow: var(--baaje-shadow-md);
    transform: translateY(-4px);
}

.countup-item.style-2 .count-icon {
    color: var(--baaje-gold) !important;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.countup-item.style-2 .countup-number {
    color: #FFFFFF !important;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.countup-item.style-2 .count-plus {
    color: var(--baaje-gold);
    font-weight: 800;
}

.countup-item.style-2 .count-text {
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ============================================================
   13. CONTACT PAGE
   ============================================================ */

.contact-form {
    background: var(--baaje-white);
    border-radius: var(--baaje-radius-xl);
    padding: 3rem;
    box-shadow: var(--baaje-shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-form .form-input input,
.contact-form .form-input textarea {
    font-family: var(--baaje-ff) !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: var(--baaje-radius-md) !important;
    padding: 0.9rem 1.25rem !important;
    color: var(--baaje-dark);
    background: var(--baaje-surface);
    transition: all var(--baaje-duration) var(--baaje-ease);
}

.contact-form .form-input input:focus,
.contact-form .form-input textarea:focus {
    border-color: var(--baaje-primary) !important;
    box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.1);
    background: var(--baaje-white);
    outline: none;
}

/* Contact Info Cards — Logo Navy */
.contact-item.style-2 {
    background: var(--baaje-navy);
    border-radius: var(--baaje-radius-lg);
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--baaje-duration) var(--baaje-ease);
    margin-bottom: 1rem;
}

.contact-item.style-2:hover {
    border-color: var(--baaje-gold);
}

.contact-item.style-2 .contact-icon {
    width: 48px;
    height: 48px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--baaje-radius-sm);
    color: var(--baaje-gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-title {
    color: var(--baaje-gold) !important;
    font-weight: 700 !important;
}

.contact-item.style-2 p,
.contact-item.style-2 a {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Contact Info Sidebar (redesigned right panel) */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--baaje-navy);
    border-radius: var(--baaje-radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--baaje-duration) var(--baaje-ease);
}

.contact-info-card:hover {
    border-color: var(--baaje-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.12);
    border-radius: var(--baaje-radius-sm);
    color: var(--baaje-gold);
    font-size: 1.15rem;
    flex-shrink: 0;
}

.contact-info-title {
    color: var(--baaje-gold) !important;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact-info-body p,
.contact-info-body a {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 0.92rem;
    line-height: 1.7;
    text-decoration: none;
    transition: color var(--baaje-duration) var(--baaje-ease);
}

.contact-info-body a:hover {
    color: var(--baaje-gold) !important;
}

/* CTA */
.cta-area {
    background: var(--baaje-gradient-dark);
    border-radius: var(--baaje-radius-xl);
    padding: 3rem;
}

.cta-area .title {
    color: var(--baaje-white) !important;
    font-weight: 800;
}

/* ============================================================
   14. FOOTER — Full repair
   ============================================================ */

.tj-footer-section.footer-2 {
    background: var(--baaje-navy) !important;
    overflow: hidden;
    position: relative;
}

/* Ensure the Industries We Serve slider (index.php) flow flush into footer */
.tj-project-section-3 {
    padding-bottom: 0 !important;
}
.tj-project-section-3 .swiper-pagination-area {
    padding-bottom: 2.5rem;
}

/* Widget titles → White + teal underline */
.tj-footer-section.footer-2 .footer-widget .title {
    color: #FFFFFF !important;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.tj-footer-section.footer-2 .footer-widget .title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--baaje-gradient);
    /* keep teal accent as user asked */
    border-radius: 2px;
}

/* Footer links */
.tj-footer-section.footer-2 .footer-widget ul li a {
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 0.9rem;
    transition: all var(--baaje-duration) var(--baaje-ease);
}

.tj-footer-section.footer-2 .footer-widget ul li a:hover {
    color: var(--baaje-gold) !important;
    padding-left: 6px;
}

/* Brand names below logo → Gold */
.footer-text h4,
.footer-text h5 {
    color: var(--baaje-gold) !important;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.footer-logo,
.footer-logo img {
    max-width: none !important;
    width: auto !important;
    max-height: 100px !important;
    height: auto !important;
    border-radius: 0;
}

/* Award logos on dark bg */
.award-logo img {
    filter: brightness(0) invert(1);
    opacity: 0.65;
    max-height: 45px;
    transition: opacity var(--baaje-duration) var(--baaje-ease);
}

.award-logo img:hover {
    opacity: 1;
}

/* ── GET IN TOUCH contact row ─────────────────────────── */

/* REMOVE the circular gold background from main.css on .contact-div i */
.tj-footer-section .contact-div i,
footer .contact-div i {
    background: transparent !important;
    height: auto !important;
    width: auto !important;
    line-height: normal !important;
    border-radius: 0 !important;
    margin-right: 0 !important;
    color: var(--baaje-gold) !important;
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

footer .contact-div {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

footer .contact-div p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem;
    line-height: 1.6;
    width: auto !important;
    /* undo main.css calc width */
}

footer .contact-div p a {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: color var(--baaje-duration) var(--baaje-ease);
}

footer .contact-div p a:hover {
    color: var(--baaje-gold) !important;
}

/* ── Staff Login ─────────────────────────────────────── */

.staff-link {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    text-decoration: none;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin-top: 0.35rem;
    /* tightened from .75rem */
}

.staff-link:hover {
    background: none !important;
}

/* ── Staff Login — fully remove circle from main.css .icon class ─── */
.staff-link .icon,
footer .staff .icon,
footer .icon {
    background: transparent !important;
    background-color: transparent !important;
    height: auto !important;
    width: auto !important;
    padding: 0 !important;
    line-height: normal !important;
    border-radius: 0 !important;
}

.staff-link .icon i,
footer .staff .icon i {
    color: var(--baaje-gold) !important;
    font-size: 1rem;
    background: none !important;
}

.staff-link h2 {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 0.95rem !important;
    font-weight: 500;
    margin: 0 !important;
    letter-spacing: 0;
}

.staff-link:hover h2 {
    color: #FFFFFF !important;
}

.staff-link:hover .icon i {
    color: var(--baaje-gold-light) !important;
}

/* ── Copyright bar ───────────────────────────────────── */

.tj-copyright-area-2 {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem 0;
}

.copyright-text p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* ── Social icons in copyright ───────────────────────── */

.tj-footer-section .social-links ul li a {
    width: 38px;
    height: 38px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.85rem;
    transition: all var(--baaje-duration) var(--baaje-ease);
}

.tj-footer-section .social-links ul li a:hover {
    background: var(--baaje-gold) !important;
    border-color: var(--baaje-gold) !important;
    color: var(--baaje-navy) !important;
    transform: translateY(-3px);
}

/* ── Footer Marquee Watermark — 0.05 opacity ─────────── */

.footer-marquee {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 1.5rem 0;
    margin-top: 2rem;
    overflow: hidden;
}

.marquee-text {
    color: rgba(255, 255, 255, 0.05) !important;
    font-size: 1.4rem !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    pointer-events: none;
}

.marquee-img img {
    opacity: 0.05 !important;
    filter: brightness(0) invert(1);
}

/* ── Background shapes (low opacity watermarks) ──────── */

.tj-footer-section .bg-shape-1,
.tj-footer-section .bg-shape-2 {
    opacity: 0.04;
    pointer-events: none;
}

/* ============================================================
   15. FLOATING CTA BUTTONS (phone / whatsapp)
   ============================================================ */

.social_media_div {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    z-index: 999;
}

.social_media_div .icons_list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social_media_div .icons_list li a {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--baaje-white);
    transition: all var(--baaje-duration) var(--baaje-ease-bounce);
    box-shadow: var(--baaje-shadow-md);
}

.social_media_div .phone-icon {
    background: var(--baaje-primary);
}

.social_media_div .whatsapp-icon {
    background: #25d366;
}

.social_media_div .icons_list li a:hover {
    transform: scale(1.15) translateY(-2px);
    box-shadow: var(--baaje-shadow-lg);
}

/* ============================================================
   16. MODAL
   ============================================================ */

.modal-content {
    border-radius: var(--baaje-radius-xl) !important;
    border: none;
    box-shadow: var(--baaje-shadow-lg);
    overflow: hidden;
}

/* ============================================================
   17. SCROLL REVEAL
   ============================================================ */

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--baaje-ease), transform 0.7s var(--baaje-ease);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   18. RESPONSIVE — Comprehensive Breakpoints
   ============================================================ */

/* ── Laptop: ≤ 1199px ──────────────────────────────────── */
@media (max-width: 1199px) {

    /* Slightly tighter nav link spacing */
    .mainmenu>ul>li>a {
        padding: 1.2rem 0.75rem !important;
        font-size: 0.85rem !important;
    }

    /* Service 5 content area padding reduced */
    .service-item.style-5 .service-content-area {
        padding: 50px 60px !important;
    }
}

/* ── Tablet landscape / small laptop: ≤ 991px ──────────── */
@media (max-width: 991px) {

    /* Hide top-bar info strip */
    .header-top {
        display: none !important;
    }

    /* Section vertical padding */
    .section-gap {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    .h5-strategy {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    /* What We Do — keep left align */
    .h5-strategy .sec-heading,
    .h5-strategy .h5-strategy-heading {
        text-align: left !important;
    }

    /* Contact form */
    .contact-form {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    /* Principle / choose-box cards — 2 per row */
    .choose-box {
        padding: 2rem;
    }

    /* Countup items */
    .countup-item.style-2 {
        padding: 2rem;
    }

    /* CTA section */
    .cta-area {
        padding: 2.5rem 2rem;
    }

    /* Footer: rounded top corners get smaller */
    .tj-footer-section.footer-2 {
        border-radius: var(--baaje-radius-lg) var(--baaje-radius-lg) 0 0;
    }

    /* Footer columns stack gracefully */
    .footer-main-area .row>[class*='col-'] {
        margin-bottom: 2.5rem;
    }

    /* Translation system — reduce side padding */
    .service-item.style-5 .service-content-area {
        padding: 40px 40px !important;
    }

    /* Translation system — stack vertically on tablet */
    .service-item.style-5 {
        flex-direction: column;
    }

    .service-item.style-5 .service-img {
        width: 100%;
        max-height: 280px;
        overflow: hidden;
    }

    .service-item.style-5 .service-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Product cards: 2 per row on tablet */
    .tj-project-section-3 .swiper-slide {
        width: 50% !important;
    }

    /* Nav — hide desktop nav (Bootstrap collapse handles mobile) */
    .mainmenu {
        display: none;
    }

    /* Staff login area tighter */
    .footer-widget.widget-subscribe {
        padding-bottom: 0;
    }
}

/* ── Tablet portrait: ≤ 767px ──────────────────────────── */
@media (max-width: 767px) {

    /* Footer corners */
    .tj-footer-section.footer-2 {
        border-radius: var(--baaje-radius-md) var(--baaje-radius-md) 0 0;
    }

    /* Contact form */
    .contact-form {
        padding: 1.5rem;
        border-radius: var(--baaje-radius-lg);
    }

    /* Floating CTA icons — slightly smaller */
    .social_media_div .icons_list li a {
        width: 46px;
        height: 46px;
        font-size: 1rem;
    }

    /* Section headings scale down */
    .sec-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem) !important;
    }

    /* Hero / About heading */
    .tj-about-section .sec-title {
        font-size: clamp(1.8rem, 7vw, 2.8rem) !important;
    }

    /* Footer columns go to 2 across on large mobile */
    .tj-footer-section .row>.col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 2rem;
    }

    /* Translation system full-width stacked */
    .service-item.style-5 {
        flex-direction: column !important;
    }

    .service-item.style-5 .service-content-area {
        padding: 2rem 1.5rem !important;
    }

    .service-item.style-5 .service-content {
        max-width: 100% !important;
    }

    .service-item.style-5 .no {
        font-size: 40px !important;
    }

    /* Product cards: 1 per row */
    .tj-project-section-3 .swiper-slide {
        width: 100% !important;
    }

    /* Nav mobile: logo sizing */
    .site_logo img {
        max-height: 42px;
    }

    /* CTA section stack */
    .cta-area {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    /* Copyright / footer bar */
    .copyright-content-area {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .copyright-content-area .social-links {
        justify-content: center;
    }
}

/* ── Mobile: ≤ 575px ────────────────────────────────────── */
@media (max-width: 575px) {

    /* Section padding */
    .section-gap {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    /* Card padding */
    .choose-box {
        padding: 1.5rem;
    }

    .countup-item.style-2 {
        padding: 1.5rem;
    }

    .service-item.style-2 {
        padding: 1.5rem;
    }

    .contact-item.style-2 {
        padding: 1.25rem;
    }

    /* Translation system numbers smaller on mobile */
    .service-item.style-5 .no {
        font-size: 2.2rem !important;
    }

    .service-item.style-5 .service-content-area {
        padding: 1.5rem 1rem !important;
    }

    .service-item.style-5 .title,
    .service-item.style-5 .title a {
        font-size: 1.1rem !important;
    }

    /* Footer: all columns full width */
    .tj-footer-section .row>[class*='col-'] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Footer logo sizing */
    .footer-logo img {
        max-height: 48px;
    }

    /* Footer text */
    .footer-text h5 {
        font-size: 0.85rem !important;
    }

    /* Floating CTA — move to bottom left on very small screens to avoid overlap */
    .social_media_div {
        bottom: 1rem;
        right: 1rem;
    }

    .social_media_div .icons_list li a {
        width: 44px;
        height: 44px;
        font-size: 0.95rem;
    }

    /* Button full-width on mobile */
    .tj-primary-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Section title centered on mobile */
    .tj-project-section-3 .sec-heading,
    .tj-project-section-3 .sec-title {
        text-align: center;
    }

    /* Contact form */
    .contact-form {
        padding: 1.25rem;
    }

    /* CTA area full radius */
    .cta-area {
        padding: 1.5rem;
        border-radius: var(--baaje-radius-lg);
    }
}

/* ── Very small screens: ≤ 400px ───────────────────────── */
@media (max-width: 400px) {
    h1 {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }

    h2 {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    h3 {
        font-size: clamp(1.2rem, 6vw, 1.6rem);
    }

    .tj-footer-section .row>[class*='col-'] {
        margin-bottom: 1.5rem;
    }

    .staff-link h2 {
        font-size: 0.9rem !important;
    }
}

/* ============================================================
   19. UTILITIES
   ============================================================ */

html {
    scroll-behavior: smooth;
}

.text-gradient {
    background: var(--baaje-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Prevent horizontal scroll on all devices */
body {
    overflow-x: hidden;
}

/* ============================================================
   20. PAGE HEADER / BREADCRUMB SECTION
   ============================================================ */

.tj-page-header {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 80px;
    min-height: 350px;
    display: flex;
    align-items: center;
}

.tj-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--baaje-navy) 0%, rgba(10, 35, 66, 0.85) 100%);
    z-index: 1;
}

.tj-page-header .container {
    position: relative;
    z-index: 2;
}

.tj-page-title {
    color: var(--baaje-white) !important;
    font-size: clamp(2.5rem, 5vw, 4rem) !important;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.tj-page-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.tj-page-link span {
    color: rgba(255, 255, 255, 0.6);
}

.tj-page-link a {
    color: var(--baaje-gold) !important;
    font-weight: 500;
    transition: color var(--baaje-duration) var(--baaje-ease);
}

.tj-page-link a:hover {
    color: var(--baaje-white) !important;
}

.tj-page-link span:last-child {
    color: var(--baaje-white);
    font-weight: 500;
}

@media (max-width: 991px) {
    .tj-page-header {
        padding: 100px 0 60px;
        min-height: 280px;
    }

    .tj-page-title {
        font-size: clamp(2rem, 6vw, 3rem) !important;
    }
}

@media (max-width: 575px) {
    .tj-page-header {
        padding: 80px 0 50px;
        min-height: 220px;
    }

    .tj-page-link {
        font-size: 0.85rem;
    }
}

/* ============================================================
   21. ABOUT PAGE - SERVICE CARDS (Our Story section)
   ============================================================ */

.tj-service-section.service-2 .sec-heading {
    text-align: center;
}

.tj-service-section.service-2 .service-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-item.style-2 {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 280px;
}

@media (max-width: 991px) {
    .service-item.style-2 {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (max-width: 575px) {
    .service-item.style-2 {
        flex: 1 1 100%;
    }
}

/* ============================================================
   22. STATS/COUNTUP SECTION
   ============================================================ */

.tj-countup-section {
    background: var(--baaje-navy);
    padding: 4rem 0;
}

.countup-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

/* ============================================================
   23. CLIENT/BRANDS SECTION
   ============================================================ */

.client-slider .client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--baaje-white);
    border-radius: var(--baaje-radius-md);
    height: 100px;
    transition: all var(--baaje-duration) var(--baaje-ease);
}

.client-slider .client-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--baaje-shadow-md);
}

.client-slider .client-logo img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--baaje-duration) var(--baaje-ease);
}

.client-slider .client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================================
   23B. OUR STORY / YOUR SUCCESS - Full Width Layout
   ============================================================ */

.tj-service-section.service-2 .container-fluid.px-lg-5 {
    max-width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
}

.story-heading-area {
    padding-right: 2rem;
}

.story-heading-area .sec-title {
    font-size: clamp(2rem, 4vw, 3rem) !important;
    line-height: 1.2;
}

.story-heading-area .desc1 {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-top: 1rem;
}

.service-wrapper-2 {
    padding-left: 2rem;
}

@media (max-width: 991px) {
    .tj-service-section.service-2 .container-fluid.px-lg-5 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .story-heading-area {
        padding-right: 0;
        padding-bottom: 2rem;
        text-align: left;
    }

    .service-wrapper-2 {
        padding-left: 0;
    }
}

/* ============================================================
   24. FORM VALIDATION STATES
   ============================================================ */

.contact-form .form-input {
    position: relative;
    margin-bottom: 1.25rem;
}

.contact-form .form-input label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--baaje-text);
    margin-bottom: 0.5rem;
}

.contact-form .form-input.input-focused input,
.contact-form .form-input.input-focused textarea {
    border-color: var(--baaje-primary) !important;
    box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.1);
}

.contact-form .form-input.input-filled input,
.contact-form .form-input.input-filled textarea {
    background: var(--baaje-surface);
}

/* ============================================================
   25. LOADING STATES
   ============================================================ */

.tj-primary-btn.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.tj-primary-btn.loading .btn-text span {
    opacity: 0;
}

.tj-primary-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    margin: -9px 0 0 -9px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--baaje-white);
    border-radius: 50%;
    animation: btn-spinner 0.8s linear infinite;
}

@keyframes btn-spinner {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================================
   26. ACCESSIBILITY ENHANCEMENTS
   ============================================================ */

:focus-visible {
    outline: 2px solid var(--baaje-primary);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--baaje-primary);
    color: var(--baaje-white);
    padding: 1rem 2rem;
    z-index: 99999;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* ============================================================
   27. PRINT STYLES
   ============================================================ */

@media print {

    .header-area,
    .tj-footer-section,
    .social_media_div,
    .tj-slider-section {
        display: none !important;
    }

    .site-main {
        padding: 0 !important;
    }

    body {
        background: white;
        color: black;
    }
}

/* ============================================================
   28. PREFERS-REDUCED-MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================================
   29B. ODOMETER NUMBER ANIMATION STYLES
   ============================================================ */

.inline-content {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.countup-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--baaje-white) !important;
    font-family: var(--baaje-ff) !important;
}

.count-plus {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--baaje-gold);
    margin-left: 0.25rem;
}

.countup-item.style-2 {
    text-align: left;
}

.countup-item.style-2 .count-inner {
    margin-top: 0.75rem;
}

@media (max-width: 991px) {
    .countup-number {
        font-size: 2.8rem;
    }
}

@media (max-width: 575px) {
    .countup-number {
        font-size: 2.2rem;
    }

    .count-plus {
        font-size: 2rem;
    }
}

/* ============================================================
   NEW ABOUT US PAGE - COMPLETE REDESIGN
   ============================================================ */

/* Hero Section */
.about-hero-section {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--baaje-navy) 0%, rgba(10, 35, 66, 0.9) 100%);
    z-index: 2;
}

.about-hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem) !important;
    font-weight: 800;
    color: var(--baaje-white) !important;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-breadcrumb span,
.hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.hero-breadcrumb a:hover {
    color: var(--baaje-gold);
}

.hero-breadcrumb span:last-child {
    color: var(--baaje-white);
}

.hero-breadcrumb i {
    color: var(--baaje-gold);
}

/* Principles Section */
.principles-section {
    padding: 100px 0;
    background: var(--baaje-surface);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    color: var(--baaje-primary) !important;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 128, 128, 0.1);
    border-radius: 50px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem) !important;
    color: var(--baaje-dark) !important;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title .highlight {
    color: var(--baaje-primary) !important;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.principle-card {
    background: var(--baaje-white);
    border-radius: var(--baaje-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--baaje-border-light);
    transition: all var(--baaje-duration) var(--baaje-ease);
    position: relative;
    overflow: hidden;
}

.principle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--baaje-gradient);
    transform: scaleX(0);
    transition: transform var(--baaje-duration) var(--baaje-ease);
}

.principle-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--baaje-shadow-lg);
    border-color: var(--baaje-border);
}

.principle-card:hover::before {
    transform: scaleX(1);
}

.principle-card .card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 128, 128, 0.1);
    border-radius: 50%;
    font-size: 1.75rem;
    color: var(--baaje-primary);
    transition: all var(--baaje-duration) var(--baaje-ease);
}

.principle-card:hover .card-icon {
    background: var(--baaje-primary);
    color: var(--baaje-white);
    transform: scale(1.1);
}

.principle-card .card-title {
    font-size: 1.25rem !important;
    color: var(--baaje-dark) !important;
    font-weight: 700;
    margin-bottom: 1rem;
}

.principle-card .card-desc {
    color: var(--baaje-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Story Section */
.story-section {
    padding: var(--baaje-section-py-sm) 0;
    background: var(--baaje-navy);
    position: relative;
    overflow: hidden;
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.story-content .section-tag {
    background: rgba(212, 175, 55, 0.15);
    color: var(--baaje-gold) !important;
}

.story-content .section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
    color: var(--baaje-white) !important;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.story-content .highlight {
    color: var(--baaje-gold) !important;
}

.story-intro {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.story-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--baaje-gold), var(--baaje-primary));
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
    padding-left: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--baaje-navy);
    border: 2px solid var(--baaje-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--baaje-gold);
    z-index: 1;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--baaje-radius-lg);
    padding: 1.5rem;
    transition: all var(--baaje-duration) var(--baaje-ease);
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(5px);
}

.timeline-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.15);
    border-radius: var(--baaje-radius-md);
    font-size: 1.1rem;
    color: var(--baaje-gold);
    margin-bottom: 1rem;
}

.timeline-title {
    font-size: 1.15rem !important;
    color: var(--baaje-white) !important;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.timeline-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* Stats Section */
.stats-section {
    padding: var(--baaje-section-py-sm) 0;
    background: var(--baaje-surface);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--baaje-white);
    border-radius: var(--baaje-radius-lg);
    border: 1px solid var(--baaje-border-light);
    transition: all var(--baaje-duration) var(--baaje-ease);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--baaje-shadow-md);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--baaje-navy);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--baaje-gold);
}

.stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.stat-number .animate-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--baaje-white) !important;
    font-family: var(--baaje-ff) !important;
    line-height: 1;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--baaje-primary);
}

.stat-label {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--baaje-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: var(--baaje-section-py-sm) 0 0;
    background: var(--baaje-navy);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.8rem) !important;
    color: var(--baaje-white) !important;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--baaje-gradient);
    color: var(--baaje-white) !important;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--baaje-duration) var(--baaje-ease);
    box-shadow: 0 4px 15px rgba(0, 128, 128, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 128, 128, 0.4);
}

.cta-button i {
    transition: transform var(--baaje-duration) var(--baaje-ease);
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1199px) {
    .principles-grid {
        gap: 1.5rem;
    }

    .principle-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 991px) {
    .about-hero-section {
        min-height: 280px;
        padding: 120px 0 60px;
    }



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

    .story-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-content {
        text-align: center;
    }

    .story-content .section-title {
        font-size: clamp(2rem, 4vw, 2.8rem) !important;
    }

    .timeline {
        max-width: 500px;
        margin: 0 auto;
    }

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

@media (max-width: 767px) {
    .about-hero-section {
        padding: 100px 0 50px;
    }

    .hero-title {
        font-size: clamp(2rem, 5vw, 3rem) !important;
    }



    .principles-grid {
        grid-template-columns: 1fr;
    }

    .principle-card {
        padding: 2rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-number .animate-number {
        font-size: 2.5rem;
    }

    .cta-title {
        font-size: 1.8rem !important;
    }

    .cta-desc {
        font-size: 1rem;
    }
}

/* ============================================================
   29C. FUNFACT/NUMBERS SECTION
   ============================================================ */

.tj-funfact-section,
.tj-funfact-section .row,
.tj-funfact-section .countup-item {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.tj-funfact-section {
    background: var(--baaje-navy) !important;
    background-color: var(--baaje-navy) !important;
    position: relative;
    overflow: hidden;
    border-radius: var(--baaje-radius-lg) !important;
    padding: 80px 0;
}

.tj-funfact-section .sec-heading.style-4 {
    text-align: center;
}

.tj-funfact-section .sec-heading.style-4 .sub-title {
    display: inline-block;
    color: var(--baaje-gold) !important;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.tj-funfact-section .sec-heading.style-4 .sub-title i {
    margin-right: 0.5rem;
}

.tj-funfact-section .sec-heading.style-4 .sec-title {
    color: var(--baaje-white) !important;
    font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
    margin-bottom: 0;
}

.tj-funfact-section .heading-wrap-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.tj-funfact-section .countup-item.style-2 {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--baaje-radius-lg);
    transition: all var(--baaje-duration) var(--baaje-ease);
}

.tj-funfact-section .countup-item.style-2:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.tj-funfact-section .count-icon {
    font-size: 1.5rem;
    color: var(--baaje-gold);
    margin-bottom: 0.75rem;
}

.tj-funfact-section .steps {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.5rem;
}

.tj-funfact-section .count-text {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

.tj-funfact-section .bg-shape-1,
.tj-funfact-section .bg-shape-2 {
    position: absolute;
    opacity: 0.03;
    pointer-events: none;
}

.tj-funfact-section .bg-shape-1 {
    top: 0;
    left: 0;
}

.tj-funfact-section .bg-shape-2 {
    bottom: 0;
    right: 0;
}

@media (max-width: 991px) {
    .tj-funfact-section .row {
        justify-content: center;
    }
}

/* ============================================================
   29. PRODUCT PAGES - ALTERNATIVE PAGE HEADER
   ============================================================ */

.tj-page-header-sec {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0 60px;
    min-height: 280px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.tj-page-header-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--baaje-navy) 0%, rgba(10, 35, 66, 0.9) 100%);
    z-index: 1;
}

.tj-page-header-sec .container {
    position: relative;
    z-index: 2;
}

.tj-page-header-sec.tj-page-header-content.text-center {
    text-align: center;
}

.tj-page-header-sec .tj-page-title {
    color: var(--baaje-white) !important;
    font-size: clamp(2rem, 4vw, 3.5rem) !important;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 991px) {
    .tj-page-header-sec {
        padding: 80px 0 50px;
        min-height: 220px;
    }

    .tj-page-header-sec .tj-page-title {
        font-size: clamp(1.8rem, 5vw, 2.8rem) !important;
    }
}

@media (max-width: 575px) {
    .tj-page-header-sec {
        padding: 70px 0 40px;
        min-height: 180px;
    }
}

/* ============================================================
   30. PRODUCT CARDS (blog-item.style-2)
   ============================================================ */

.blog-item.style-2 {
    background: var(--baaje-white);
    border-radius: var(--baaje-radius-lg);
    overflow: hidden;
    border: 1px solid var(--baaje-border-light);
    transition: all var(--baaje-duration-slow) var(--baaje-ease);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-item.style-2:hover {
    transform: translateY(-8px);
    box-shadow: var(--baaje-shadow-lg);
    border-color: var(--baaje-border);
}

.blog-item.style-2 .blog-thumb {
    position: relative;
    overflow: hidden;
    padding-top: 65%;
    background: var(--baaje-surface);
}

.blog-item.style-2 .blog-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--baaje-duration-slow) var(--baaje-ease);
}

.blog-item.style-2:hover .blog-thumb img {
    transform: scale(1.08);
}

.blog-item.style-2 .blog-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-item.style-2 .title-area {
    margin-bottom: 1rem;
}

.blog-item.style-2 .title {
    color: var(--baaje-dark) !important;
    font-size: 1.15rem !important;
    font-weight: 700;
    line-height: 1.4;
    transition: color var(--baaje-duration) var(--baaje-ease);
}

.blog-item.style-2:hover .title {
    color: var(--baaje-primary) !important;
}

.blog-item.style-2 .text-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--baaje-primary);
    text-decoration: none;
    transition: all var(--baaje-duration) var(--baaje-ease);
}

.blog-item.style-2 .text-btn .btn-icon {
    transition: transform var(--baaje-duration) var(--baaje-ease);
}

.blog-item.style-2 .text-btn:hover {
    color: var(--baaje-primary-dark);
}

.blog-item.style-2 .text-btn:hover .btn-icon {
    transform: translateX(6px);
}

@media (max-width: 575px) {
    .blog-item.style-2 .blog-content {
        padding: 1.25rem;
    }

    .blog-item.style-2 .title {
        font-size: 1.05rem !important;
    }
}

/* ============================================================
   31. SECTION HEADING WRAP
   ============================================================ */

.sec-heading-wrap {
    margin-bottom: 2.5rem;
}

.sec-heading-wrap .sec-heading {
    text-align: center;
}

.sec-heading-wrap .sec-title {
    color: var(--baaje-dark) !important;
}

.sec-heading .sub-title {
    display: inline-block;
    color: var(--baaje-primary) !important;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.sec-heading .sub-title i {
    margin-right: 0.5rem;
}

.heading-wrap-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tj-project-section-3 .heading-wrap-content {
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.tj-project-section-3 .sec-heading-wrap .sec-title {
    color: var(--baaje-white) !important;
}

/* ============================================================
   32. SERVICE CONTENT AREA
   ============================================================ */

.tj-service-section-5 .service-content-area {
    background: var(--baaje-navy);
    border-radius: var(--baaje-radius-lg);
    overflow: hidden;
}

.service-item.style-5 {
    display: flex;
    min-height: 400px;
}

.service-item.style-5 .service-content {
    padding: 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-item.style-5 .service-img {
    flex: 0 0 45%;
    max-width: 45%;
}

.service-item.style-5 .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-item.style-5 .no {
    font-size: 4rem;
    font-weight: 800;
    color: var(--baaje-gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

@media (max-width: 991px) {
    .service-item.style-5 {
        flex-direction: column;
    }

    .service-item.style-5 .service-img {
        flex: 0 0 100%;
        max-width: 100%;
        max-height: 250px;
    }

    .service-item.style-5 .service-content {
        padding: 2rem;
    }
}

/* ============================================================
   ABOUT PAGE - OUR STORY SECTION (Full Width)
   ============================================================ */

.tj-service-section.service-2 .container-fluid {
    max-width: 1400px;
}

.story-heading-area {
    padding-right: 3rem;
}

@media (max-width: 1199px) {
    .story-heading-area {
        padding-right: 2rem;
    }
}

@media (max-width: 991px) {
    .story-heading-area {
        padding-right: 0;
        padding-bottom: 2rem;
        text-align: left;
    }
}

.service-wrapper-2 {
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
    .service-wrapper-2 {
        padding-left: 0;
        border-left: none;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.tj-service-section.service-2 .sec-heading.style-2 .sec-title {
    font-size: clamp(2rem, 4vw, 3rem) !important;
    line-height: 1.2;
}

.tj-service-section.service-2 .sec-heading.style-2 .desc1 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.8) !important;
}

/* ============================================================
   NUMBER COUNTER ANIMATION (Odometer)
   ============================================================ */

.countup-item.style-2 {
    position: relative;
    overflow: hidden;
}

.countup-number {
    display: inline-block;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--baaje-white);
    min-width: 80px;
}

.count-plus {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--baaje-gold);
    margin-left: 0.25rem;
}

.odometer {
    font-family: inherit !important;
}

.odometer.odometer-auto-theme .odometer-digit {
    display: inline-block;
    position: relative;
    vertical-align: top;
}

.odometer.odometer-auto-theme .odometer-value {
    display: block;
    text-align: center;
}

/* Animate odometer when visible */
.countup-item.style-2 .odometer {
    transition: none;
}

.countup-item.style-2 .odometer.odometer-animating .odometer-digit {
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom odometer animation using CSS */
.odometer-value {
    transition: transform 1.5s ease-out;
    transform: translateY(-100%);
}

.odometer.odometer-animating .odometer-value {
    transform: translateY(0);
}

@media (max-width: 767px) {
    .countup-number {
        font-size: 2.5rem;
    }

    .count-plus {
        font-size: 2rem;
    }
}

/* ============================================================
   20. PAGE HEADER / BREADCRUMB SECTION
   ============================================================ */

.tj-page-header {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 100px;
    overflow: hidden;
}

.tj-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--baaje-navy) 0%, rgba(10, 35, 66, 0.85) 100%);
    z-index: 1;
}

.tj-page-header .container {
    position: relative;
    z-index: 2;
}

.tj-page-header-content {
    text-align: center;
}

.tj-page-title {
    font-size: clamp(2.5rem, 6vw, 4rem) !important;
    color: var(--baaje-white) !important;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.tj-page-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.tj-page-link a {
    color: var(--baaje-gold) !important;
    font-weight: 500;
    transition: color var(--baaje-duration) var(--baaje-ease);
}

.tj-page-link a:hover {
    color: var(--baaje-white) !important;
}

.tj-page-link span:not(:last-child) {
    color: rgba(255, 255, 255, 0.4);
}

.tj-page-link i {
    color: var(--baaje-gold);
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .tj-page-header {
        padding: 100px 0 70px;
    }
}

@media (max-width: 767px) {
    .tj-page-header {
        padding: 80px 0 50px;
    }

    .tj-page-link {
        font-size: 0.9rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================================
   21. ABOUT PAGE - PRINCIPLES SECTION (choose-box)
   ============================================================ */

.tj-choose-section {
    background: var(--baaje-surface);
}

/* Section heading */
.tj-choose-section .sec-heading-wrap {
    text-align: center;
    margin-bottom: 3rem;
}

.tj-choose-section .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--baaje-primary) !important;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.tj-choose-section .sub-title i {
    color: var(--baaje-gold);
}

.tj-choose-section .sec-title {
    color: var(--baaje-dark) !important;
    margin-bottom: 2rem;
}

.tj-choose-section .sec-title span {
    color: var(--baaje-primary) !important;
}

.tj-choose-section .btn-wrap {
    margin-top: 1.5rem;
}

/* ============================================================
   22. ABOUT PAGE - STATS SECTION
   ============================================================ */

.tj-counter-section {
    background: var(--baaje-navy);
    padding: 80px 0;
}

.countup-item {
    text-align: center;
    padding: 2rem;
}

.countup-item .count-icon {
    color: var(--baaje-gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.countup-item .countup-number {
    color: var(--baaje-white);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countup-item .count-plus {
    color: var(--baaje-gold);
    font-weight: 800;
}

.countup-item .count-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

/* ============================================================
   23. ABOUT PAGE - SERVICE CARDS (tj-service-section)
   ============================================================ */

.tj-service-section {
    background: var(--baaje-surface);
    padding: var(--baaje-section-py) 0;
}

.service-item {
    background: var(--baaje-white);
    border-radius: var(--baaje-radius-lg);
    padding: 2rem;
    border: 1px solid var(--baaje-border-light);
    transition: all var(--baaje-duration) var(--baaje-ease);
    height: 100%;
}

.service-item:hover {
    border-color: var(--baaje-primary);
    box-shadow: var(--baaje-shadow-md);
    transform: translateY(-4px);
}

.service-item .service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 128, 128, 0.08);
    border-radius: var(--baaje-radius-md);
    color: var(--baaje-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-item:hover .service-icon {
    background: var(--baaje-primary);
    color: var(--baaje-white);
}

.service-item .title {
    color: var(--baaje-dark) !important;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-item .desc {
    color: var(--baaje-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================================
   24. CTA / CALL TO ACTION SECTION
   ============================================================ */

.tj-cta-section {
    background: var(--baaje-gradient-dark);
    padding: 80px 0;
    border-radius: var(--baaje-radius-xl);
    overflow: hidden;
    position: relative;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content .title {
    color: var(--baaje-white) !important;
    font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ============================================================
   25. FORM VALIDATION STATES
   ============================================================ */

.contact-form .form-input {
    margin-bottom: 1.25rem;
}

.contact-form .form-input input.error,
.contact-form .form-input textarea.error {
    border-color: #ef4444 !important;
}

.contact-form .form-input label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--baaje-text);
    margin-bottom: 0.5rem;
    display: block;
}

.contact-form .form-message {
    padding: 1rem;
    border-radius: var(--baaje-radius-md);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-form .form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.contact-form .form-message.success {
    background: rgba(0, 128, 128, 0.1);
    border: 1px solid rgba(0, 128, 128, 0.2);
    color: var(--baaje-primary);
}

/* ============================================================
   26. LOADING & SKELETON STATES
   ============================================================ */

@keyframes pulse-skeleton {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.skeleton {
    animation: pulse-skeleton 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    background: linear-gradient(90deg, var(--baaje-surface) 25%, var(--baaje-border-light) 50%, var(--baaje-surface) 75%);
    background-size: 200% 100%;
}

/* ============================================================
   27. ACCESSIBILITY ENHANCEMENTS
   ============================================================ */

*:focus-visible {
    outline: 2px solid var(--baaje-primary);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--baaje-navy);
    color: var(--baaje-white);
    padding: 1rem 2rem;
    z-index: 9999;
    border-radius: var(--baaje-radius-md);
    transition: top var(--baaje-duration) var(--baaje-ease);
}

.skip-link:focus {
    top: 1rem;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --baaje-primary: #006666;
        --baaje-gold: #b8960c;
        --baaje-text: #000000;
        --baaje-text-muted: #333333;
    }

    .tj-primary-btn {
        border: 2px solid currentColor !important;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal-up {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Print styles */
@media print {

    .header-area,
    .tj-slider-section,
    .social_media_div,
    .tj-footer-section {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    .tj-page-header {
        background: none !important;
        padding: 2rem 0;
    }

    .tj-page-title {
        color: #000 !important;
    }
}

/* ============================================================
   ABOUT US PAGE REDESIGN - COMPLETE STYLES
   ============================================================ */

/* Hero Section */
.about-hero-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.about-hero-section .hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.about-hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--baaje-navy) 0%, rgba(10, 35, 66, 0.85) 100%);
    z-index: 2;
}

.about-hero-section .container {
    position: relative;
    z-index: 3;
}

.about-hero-section .hero-content {
    text-align: center;
    color: var(--baaje-white);
}

.about-hero-section .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.about-hero-section .hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.about-hero-section .hero-breadcrumb a {
    color: var(--baaje-gold);
    transition: color 0.3s ease;
}

.about-hero-section .hero-breadcrumb a:hover {
    color: var(--baaje-white);
}

.about-hero-section .hero-breadcrumb i {
    color: var(--baaje-gold);
}

/* Section Common Styles */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    color: var(--baaje-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--baaje-dark);
    line-height: 1.2;
}

.section-title .highlight {
    color: var(--baaje-primary);
}

/* Principles Section */
.principles-section {
    background: var(--baaje-surface);
    padding: 100px 0;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.principle-card {
    background: var(--baaje-white);
    border-radius: var(--baaje-radius-lg);
    padding: 2.5rem 2rem;
    border: 1px solid var(--baaje-border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.principle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--baaje-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.principle-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--baaje-shadow-lg);
    border-color: var(--baaje-border);
}

.principle-card:hover::before {
    transform: scaleX(1);
}

.principle-card .card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 128, 128, 0.1);
    border-radius: var(--baaje-radius-md);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--baaje-primary);
    transition: all 0.3s ease;
}

.principle-card:hover .card-icon {
    background: var(--baaje-primary);
    color: var(--baaje-white);
    transform: scale(1.1);
}

.principle-card .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--baaje-dark);
    margin-bottom: 1rem;
}

.principle-card .card-desc {
    font-size: 0.95rem;
    color: var(--baaje-text-muted);
    line-height: 1.7;
}

@media (max-width: 991px) {
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .principles-grid {
        grid-template-columns: 1fr;
    }

    .principles-section {
        padding: 60px 0;
    }
}

/* Story Section */
.story-section {
    background: var(--baaje-navy);
    padding: var(--baaje-section-py-sm) 0;
    position: relative;
    overflow: hidden;
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.story-content {
    position: sticky;
    top: 100px;
}

.story-content .section-title {
    color: var(--baaje-white);
    margin-bottom: 1rem;
}

.story-content .section-tag {
    color: var(--baaje-gold);
}

.story-content .story-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.story-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--baaje-gold), rgba(212, 175, 55, 0.3));
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
    padding-left: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--baaje-primary);
    border: 3px solid var(--baaje-gold);
    border-radius: 50%;
    z-index: 2;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--baaje-radius-lg);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(10px);
}

.timeline-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.15);
    border-radius: var(--baaje-radius-md);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--baaje-gold);
}

.timeline-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--baaje-white);
    margin-bottom: 0.75rem;
}

.timeline-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

@media (max-width: 991px) {
    .story-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-content {
        position: static;
    }

    .story-section {
        padding: 70px 0;
    }
}

@media (max-width: 575px) {
    .timeline {
        padding-left: 2.5rem;
    }

    .timeline-item {
        padding-left: 1.5rem;
    }

    .timeline-marker {
        left: -2.5rem;
        width: 16px;
        height: 16px;
    }
}

/* Stats Section */
.stats-section {
    background: var(--baaje-gradient-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 128, 128, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: var(--baaje-gold);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: var(--baaje-gold);
    color: var(--baaje-navy);
    transform: scale(1.1);
}

.stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.stat-number .animate-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--baaje-white);
    line-height: 1;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--baaje-gold);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number .animate-number {
        font-size: 2.2rem;
    }

    .stat-suffix {
        font-size: 1.5rem;
    }

    .stats-section {
        padding: 60px 0;
    }
}

/* CTA Section */
.cta-section {
    background: var(--baaje-surface);
    padding: 100px 0;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--baaje-dark);
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.1rem;
    color: var(--baaje-text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--baaje-gradient);
    color: var(--baaje-white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 128, 128, 0.25);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 128, 128, 0.35);
    color: var(--baaje-white);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

@media (max-width: 575px) {
    .cta-section {
        padding: 60px 0;
    }
}

/* AOS Animation Fixes */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* ============================================================
   ABOUT US PAGE REDESIGN
   ============================================================ */

/* Hero Section */
.about-hero-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-section .hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.about-hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--baaje-navy) 0%, rgba(10, 35, 66, 0.85) 100%);
    z-index: 1;
}

.about-hero-section .container {
    position: relative;
    z-index: 2;
}

.about-hero-section .hero-content {
    text-align: center;
    padding: 2rem 0;
}

.about-hero-section .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--baaje-white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.about-hero-section .hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.about-hero-section .hero-breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.about-hero-section .hero-breadcrumb a {
    color: var(--baaje-gold);
    transition: color var(--baaje-duration) var(--baaje-ease);
}

.about-hero-section .hero-breadcrumb a:hover {
    color: var(--baaje-white);
}

.about-hero-section .hero-breadcrumb i {
    color: var(--baaje-gold);
}

/* Section Common Styles */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    color: var(--baaje-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 128, 128, 0.1);
    border-radius: 50px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--baaje-dark);
    line-height: 1.2;
}

.section-title .highlight {
    color: var(--baaje-primary);
}

.section-title.text-white {
    color: var(--baaje-white) !important;
}

.section-title.text-white .highlight {
    color: var(--baaje-gold);
}

/* Principles Section */
.principles-section {
    padding: var(--baaje-section-py) 0;
    background: var(--baaje-surface);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.principle-card {
    background: var(--baaje-white);
    border-radius: var(--baaje-radius-lg);
    padding: 2.5rem 2rem;
    border: 1px solid var(--baaje-border-light);
    transition: all var(--baaje-duration-slow) var(--baaje-ease);
    position: relative;
    overflow: hidden;
}

.principle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--baaje-gradient);
    transform: scaleX(0);
    transition: transform var(--baaje-duration) var(--baaje-ease);
}

.principle-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--baaje-shadow-lg);
    border-color: var(--baaje-border);
}

.principle-card:hover::before {
    transform: scaleX(1);
}

.principle-card .card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 128, 128, 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.principle-card .card-icon i {
    font-size: 1.75rem;
    color: var(--baaje-primary);
    transition: color var(--baaje-duration) var(--baaje-ease);
}

.principle-card:hover .card-icon i {
    color: var(--baaje-gold);
}

.principle-card .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--baaje-dark);
    margin-bottom: 1rem;
}

.principle-card .card-desc {
    color: var(--baaje-text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Story/Timeline Section */
.story-section {
    padding: var(--baaje-section-py) 0;
    background: var(--baaje-navy);
    position: relative;
    overflow: hidden;
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.story-content .section-tag {
    background: rgba(212, 175, 55, 0.15);
    color: var(--baaje-gold);
}

.story-content .story-intro {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 1.5rem;
    line-height: 1.8;
}

.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--baaje-gold) 0%, rgba(212, 175, 55, 0.3) 100%);
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
    padding-left: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--baaje-gold);
    color: var(--baaje-navy);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    z-index: 2;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--baaje-radius-md);
    padding: 1.5rem 2rem;
    transition: all var(--baaje-duration) var(--baaje-ease);
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(8px);
}

.timeline-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.15);
    border-radius: var(--baaje-radius-sm);
    margin-bottom: 1rem;
}

.timeline-icon i {
    font-size: 1.25rem;
    color: var(--baaje-gold);
}

.timeline-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--baaje-white);
    margin-bottom: 0.75rem;
}

.timeline-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

.story-bg-pattern {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Stats Section */
.stats-section {
    padding: var(--baaje-section-py) 0;
    background: var(--baaje-surface);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--baaje-navy);
    border-radius: var(--baaje-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--baaje-duration) var(--baaje-ease);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--baaje-shadow-lg);
    border-color: rgba(212, 175, 55, 0.3);
}

.stat-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    margin: 0 auto 1.25rem;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--baaje-gold);
}

.stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.stat-number .animate-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--baaje-white);
    font-family: var(--baaje-ff);
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--baaje-gold);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.75rem;
}

/* CTA Section */
.cta-section {
    padding: var(--baaje-section-py) 0;
    background: var(--baaje-gradient-dark);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--baaje-white);
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--baaje-gradient);
    color: var(--baaje-white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--baaje-duration) var(--baaje-ease);
    box-shadow: 0 4px 20px rgba(0, 128, 128, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 128, 128, 0.4);
    color: var(--baaje-white);
}

.cta-button i {
    transition: transform var(--baaje-duration) var(--baaje-ease);
}

.cta-button:hover i {
    transform: translateX(6px);
}

/* Responsive */
@media (max-width: 1199px) {
    .principles-grid {
        gap: 1.5rem;
    }

    .stat-number .animate-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-content {
        text-align: center;
    }

    .story-content .story-intro {
        margin-left: auto;
        margin-right: auto;
    }

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

@media (max-width: 767px) {
    .principles-grid {
        grid-template-columns: 1fr;
    }

    .principle-card {
        padding: 2rem 1.5rem;
    }

    .timeline {
        padding-left: 2.5rem;
    }

    .timeline::before {
        left: 0.5rem;
    }

    .timeline-marker {
        left: -2rem;
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.65rem;
    }

    .timeline-item {
        padding-left: 1.5rem;
    }

    .timeline-content {
        padding: 1.25rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 575px) {
    .about-hero-section {
        min-height: 300px;
    }

    .about-hero-section .hero-title {
        font-size: 2rem;
    }

    .stat-number .animate-number {
        font-size: 2rem;
    }

    .stat-suffix {
        font-size: 1.5rem;
    }
}

/* ============================================================
   GLOBAL SHARED SECTIONS (Testimonials, Regions, etc.)
   ============================================================ */

/* Section Headers */
.section-tag {
  display: inline-block;
  color: var(--baaje-gold, #D4AF37);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  background: rgba(212, 175, 55, 0.12);
  padding: 0.4rem 1rem;
  border-radius: 50px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: var(--baaje-ff, 'Inter', system-ui, sans-serif);
}

.section-title .highlight {
  color: var(--baaje-teal, #008080);
}

.section-intro {
  font-size: 1.125rem;
  color: var(--baaje-text-light, #666);
  max-width: 700px;
  margin: 0 auto;
}

/* Testimonials Section */
.testimonials-section .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonials-section .testimonial-card {
  background: var(--baaje-white, #fff);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--baaje-radius-md, 12px);
  padding: 2rem;
  position: relative;
  transition: all var(--baaje-duration, 0.35s) var(--baaje-ease, cubic-bezier(0.4, 0, 0.2, 1));
}

.testimonials-section .testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--baaje-shadow-lg, 0 20px 60px rgba(0, 0, 0, 0.1));
}

.testimonials-section .quote-icon {
  color: var(--baaje-gold, #D4AF37);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.testimonials-section .testimonial-text {
  font-style: italic;
  color: var(--baaje-text-light, #666);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonials-section .testimonial-author {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 1rem;
}

.testimonials-section .author-name {
  font-weight: 600;
  color: var(--baaje-navy, #0a2342);
}

.testimonials-section .author-role {
  font-size: 0.875rem;
  color: var(--baaje-text-light, #666);
}

/* Regions Section */
.regions-section {
  background: var(--baaje-navy) !important;
  border-radius: 12px;
  margin-bottom: 30px;
}

.regions-section .regions-content {
  text-align: center;
}

.regions-section .regions-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.regions-section .region-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  transition: all var(--baaje-duration, 0.35s) var(--baaje-ease, cubic-bezier(0.4, 0, 0.2, 1));
}

.regions-section .region-chip:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--baaje-gold, #D4AF37);
}

.regions-section .region-chip i {
  margin-right: 0.5rem;
}

.regions-section .languages-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.regions-section .language-badge {
  background: var(--baaje-gradient, linear-gradient(135deg, #008080 0%, #006666 100%));
  color: #fff;
  border-radius: var(--baaje-radius-sm, 8px);
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.regions-section .regions-note {
  opacity: 0.8;
}

.regions-section .regions-note a {
  color: var(--baaje-gold, #D4AF37);
  transition: color var(--baaje-duration, 0.35s) var(--baaje-ease, cubic-bezier(0.4, 0, 0.2, 1));
}

.regions-section .regions-note a:hover {
  color: var(--baaje-teal, #008080);
}

/* Responsive Styles for Global Shared Sections */
@media (max-width: 1199px) {
  .testimonials-section .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 1.75rem;
  }
}
/* Custom Glassmorphism Overlay for Project/Industry Cards */
.glass-overlay {
    position: absolute !important;
    bottom: 12px !important;
    left: 12px !important;
    right: 12px !important;
    background: rgba(0, 0, 0, 0.45) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    padding: 15px !important;
    border-radius: var(--baaje-radius-sm) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    text-align: center !important;
    z-index: 10 !important;
    transition: all 0.3s ease !important;
}

.project-item:hover .glass-overlay {
    background: rgba(0, 0, 0, 0.65) !important;
    transform: translateY(-5px) !important;
}

.glass-overlay .title {
    color: #ffffff !important;
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    margin-bottom: 0 !important;
    letter-spacing: 0.5px !important;
}

/* Force Boxed Footer and CTA sections on inner pages */
.cta-section {
    border-radius: 12px !important;
    margin-inline-start: 15px !important;
    margin-inline-end: 15px !important;
}

/* Global Footer Boxed Separator */
.tj-footer-section.footer-2 {
    margin-top: 30px !important;
    border-radius: 12px 12px 0 0 !important;
}

@media only screen and (max-width: 767px) {
    .cta-section {
        margin-inline-start: 12px !important;
        margin-inline-end: 12px !important;
    }
    .tj-footer-section.footer-2 {
        margin-top: 20px !important;
    }
}
