/* ==========================================================================
   RESET & SYSTEM FOUNDATION
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

:root {
    --primary-blue: #004aad;
    --accent-yellow: #f8be14;
    --text-dark: #1f2937;
    --text-gray: #4b5563;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: "Inter", sans-serif !important;
    color: #000000 !important;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.main-header-premium {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
    padding: 25px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Changed from white to subtle dark */
}

.main-header-premium.scrolled {
    background: var(--glass-bg);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

.logo-box {
    flex-shrink: 0;
    margin-right: 40px;
}

.premium-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: 20px;
}

.premium-nav-link {
    font-size: 13.5px;
    font-weight: 600;
    color: inherit;
    text-decoration: none !important;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0.95;
    text-shadow: none;
    white-space: nowrap;
}

body.is-home .main-header-premium:not(.scrolled) .premium-nav-link {
    color: #001f3f !important;
    text-shadow: none;
}

body:not(.is-home) .main-header-premium:not(.scrolled) .premium-nav-link {
    color: #ffffff !important;
    text-shadow: none;
}

body.is-home .main-header-premium:not(.scrolled) .logo-box img {
    filter: none !important;
}

body:not(.is-home) .main-header-premium:not(.scrolled) .logo-box img {
    filter: brightness(0) invert(1) !important;
}

.main-header-premium.scrolled .premium-nav-link {
    color: #000000 !important;
    text-shadow: none;
    opacity: 1;
}

.main-header-premium.scrolled .logo-box img {
    filter: none;
}

.premium-nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-yellow);
    transition: width 0.3s ease;
}

.premium-nav-link:hover {
    opacity: 1;
    color: var(--accent-yellow) !important;
}

.premium-nav-link:hover::after {
    width: 100%;
}

.header-cta-btn {
    background: var(--accent-yellow);
    color: #000000 !important;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 14px;
    transition: var(--transition-smooth);
    border: none;
    box-shadow: 0 4px 15px rgba(248, 190, 20, 0.25);
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(248, 190, 20, 0.4);
    background: #e5af12;
    color: #000000 !important;
}

.header-cart-icon {
    font-size: 1.25rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

body.is-home .main-header-premium:not(.scrolled) .header-cart-icon {
    color: #001f3f !important;
}

body:not(.is-home) .main-header-premium:not(.scrolled) .header-cart-icon {
    color: #ffffff !important;
}

.main-header-premium.scrolled .header-cart-icon {
    color: #000000 !important;
}

.header-cart-icon:hover {
    color: var(--accent-yellow) !important;
    transform: scale(1.1);
}

.mobile-nav-toggle {
    display: none;
    background: #004aad;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 20px;
    cursor: pointer;
    color: #ffffff;
    align-items: center;
    justify-content: center;
}

.main-header-premium.scrolled .mobile-nav-toggle {
    color: #0a3d62 !important;
}

/* Mega Menu Styles */
.premium-nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.mega-menu-wrapper {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    padding-top: 20px;
    pointer-events: none;
}

.has-mega-menu:hover .mega-menu-wrapper {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.mega-menu-container {
    background: #ffffff;
    width: 900px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mega-menu-row {
    display: flex;
    padding: 30px;
    gap: 30px;
}

.mega-menu-col {
    flex: 1;
}

.mega-menu-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.mega-menu-list li {
    margin-bottom: 8px;
}

.mega-menu-list a {
    color: #4b5563 !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.2s ease;
    display: block;
    padding: 5px 0;
}

.mega-menu-list a:hover {
    color: var(--primary-blue) !important;
    transform: translateX(5px);
}

.mega-menu-footer {
    background: #f8fafc;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mega-menu-footer .mega-menu-row {
    padding: 20px 30px;
    justify-content: flex-start;
}

.mega-menu-footer .footer-link {
    color: var(--primary-blue) !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.mega-menu-footer .footer-link:hover {
    color: var(--accent-yellow) !important;
}

@media (max-width: 1100px) {
    .mega-menu-container {
        width: 750px;
    }
}

/* ==========================================================================
   ULTIMATE HERO SLIDER - ENTERPRISE STYLE (BRI CONCEPT)
   ========================================================================== */
.hero-enterprise-style {
    position: relative !important;
    padding: 0 !important;
    height: 100vh !important;
    min-height: 850px !important;
    background: #ffffff !important;
    overflow: visible !important;
    /* Allow bar overlap */
}

.hero-enterprise-style .slide-item {
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    position: relative;
    z-index: 5;
    padding-top: 160px;
    padding-bottom: 80px;
    background: transparent !important;
}

.hero-enterprise-style .slide-item::before {
    display: none !important;
}

@media (max-width: 991px) {
    .hero-enterprise-style {
        min-height: 850px !important;
    }
}

/* Typography & Content */
.hero-content-box {
    max-width: 600px;
}

.trust-indicator {
    display: inline-flex;
    align-items: center;
    color: #004aad;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero-enterprise-style h1 {
    font-size: 72px !important;
    font-weight: 900 !important;
    color: #001f3f !important;
    line-height: 1.05 !important;
    margin-bottom: 30px !important;
    letter-spacing: -2px !important;
}

.text-accent {
    color: #f8be14 !important;
}

.text-description {
    min-height: 150px;
    /* Keeps buttons in a fixed position */
    margin-bottom: 40px !important;
}

.text-description p {
    font-size: 20px !important;
    color: #4b5563 !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
    font-weight: 400 !important;
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    /* Limit to 4 lines to prevent collision */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Buttons */
.btn-primary-enterprise {
    display: inline-flex;
    align-items: center;
    padding: 20px 45px;
    background: #004aad;
    color: #fff !important;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 15px 35px rgba(0, 74, 173, 0.2);
    transition: var(--transition-smooth);
    text-decoration: none !important;
}

.btn-primary-enterprise:hover {
    background: #001f3f;
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 74, 173, 0.3);
}

.btn-whatsapp-hero {
    display: inline-flex;
    align-items: center;
    padding: 18px 45px;
    background: #f8be14 !important;
    /* Theme Yellow for Premium feel */
    border: none !important;
    color: #001f3f !important;
    /* Dark text on Yellow */
    border-radius: 100px;
    font-weight: 800;
    font-size: 16px;
    transition: var(--transition-smooth);
    text-decoration: none !important;
    box-shadow: 0 10px 25px rgba(248, 190, 20, 0.3) !important;
}

.btn-whatsapp-hero:hover {
    background: #004aad !important;
    color: #ffffff !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 74, 173, 0.4) !important;
}

/* Showcase Image & Cards */
.hero-showcase-container {
    position: relative;
    padding-left: 50px;
}

.main-mockup-wrapper {
    position: relative;
    z-index: 10;
}

.hero-main-img {
    width: 100% !important;
    height: auto !important;
    /* Reverted to auto for natural sizing */
    min-height: 450px;
    /* Moderate minimum height */
    object-fit: cover;
    border-radius: 60px;
    /* Increased border radius as requested */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.floating-data-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 25px;
    border-radius: 30px;
    /* Increased to match main image style */
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 20;
    animation: floatCard 4s ease-in-out infinite;
}

.card-top {
    top: -20px;
    right: -20px;
}

.card-bottom {
    bottom: 20px;
    left: -40px;
    animation-delay: 2s;
}

.floating-data-card .icon-box {
    width: 45px;
    height: 45px;
    background: rgba(0, 74, 173, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #004aad;
    font-size: 18px;
}

.floating-data-card .details {
    display: flex;
    flex-direction: column;
}

.floating-data-card .label {
    font-size: 11px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
}

.floating-data-card .value {
    font-size: 16px;
    font-weight: 800;
    color: #001f3f;
}

@keyframes floatCard {

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

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

/* Quick Action Bar (Overlapping) */
.hero-quick-bar-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(50%);
    z-index: 100;
}

.quick-bar-inner {
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.quick-item {
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.quick-item:last-child {
    border: none;
}

.quick-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 40px 20px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.quick-item i {
    font-size: 28px;
    color: #004aad;
    transition: all 0.3s ease;
}

.quick-item span {
    font-weight: 800;
    font-size: 14px;
    color: #001f3f;
    text-transform: uppercase;
}

.quick-item:hover {
    background: #f8faff;
}

.quick-item:hover i {
    transform: translateY(-5px) scale(1.1);
    color: #f8be14;
}

/* Custom Navigation (BRI Style) */
.hero-nav-lines {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}

.banner-carousel .owl-dots {
    display: none !important;
    /* Managed by nav-lines */
}

/* Mobile Fixes */
@media (max-width: 991px) {
    .banner-carousel .hero-content-box {
        text-align: center;
        margin-bottom: 40px;
    }

    .hero-enterprise-style h1 {
        font-size: 36px !important;
        margin-bottom: 15px !important;
    }

    .hero-enterprise-style .text-description {
        min-height: auto;
        margin-bottom: 30px !important;
    }

    .hero-enterprise-style .text-description p {
        font-size: 15px !important;
    }

    .hero-showcase-container {
        padding-left: 0;
    }

    .hero-main-img {
        border-radius: 30px;
        min-height: 300px;
    }

    .hero-nav-lines {
        bottom: 30px;
    }

    .floating-data-card {
        display: none;
    }
}

/* ==========================================================================
   QUICK ACTION CARDS (Integrated)
   ========================================================================== */
.hero-quick-cards {
    display: none;
    /* Hide from hero area as it moves to services */
}

.quick-card-item {
    background: #ffffff;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
}

.quick-card-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 74, 173, 0.12);
    border-color: var(--accent-yellow);
}

.quick-card-image-wrapper {
    width: 100%;
    height: 180px;
    border-radius: 15px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.quick-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.quick-card-item:hover .quick-card-image-wrapper {
    border-color: var(--accent-yellow);
    background: var(--primary-blue);
}

.quick-card-title {
    font-size: 18px;
    font-weight: 800;
    color: #000000 !important;
    margin-bottom: 10px;
}

.quick-card-desc {
    font-size: 14px;
    color: #000000 !important;
    line-height: 1.7;
}

/* Services Section Background Refinement */
.services-section {
    background-color: #fcfdfe !important;
    position: relative;
}

.services-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, #ffffff, transparent);
    pointer-events: none;
}

/* ==========================================================================
   GLOBAL COMPONENTS OVERRIDES
   ========================================================================== */
.sec-title h2 {
    font-size: 48px !important;
    font-weight: 900 !important;
    color: #000000 !important;
    /* Extremely dark navy for maximum clarity */
    letter-spacing: -0.02em;
    text-transform: none;
}

/* UNIVERSAL PREMIUM BUTTONS */
.btn-premium,
.theme-btn,
.btn-style-one {
    background: var(--accent-yellow) !important;
    color: #000000 !important;
    padding: 16px 42px !important;
    min-height: 48px !important;
    /* Mobile accessibility */
    border-radius: 100px !important;
    font-weight: 900 !important;
    font-size: 16px !important;
    transition: var(--transition-smooth) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    border: none !important;
    box-shadow: 0 6px 20px rgba(248, 190, 20, 0.3) !important;
    text-transform: none !important;
    cursor: pointer;
}

/* Global Mobile Fixes */
@media (max-width: 768px) {

    /* Touch Target & Accessibility */
    .btn,
    button,
    .cat-pill,
    .premium-nav-link {
        min-height: 44px !important;
    }

    /* Global Section Spacing */
    section {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Prevent iOS Auto-Zoom */
    input,
    select,
    textarea {
        font-size: 16px !important;
    }

    /* Responsive Content Spacing */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

.btn-premium:hover,
.theme-btn:hover,
.btn-style-one:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 35px rgba(248, 190, 20, 0.45) !important;
    background: #e5af12 !important;
    color: #000000 !important;
}

/* SECONDARY BUTTON (Glass Style) */
.btn-secondary-premium {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    padding: 14px 40px !important;
    border-radius: 100px !important;
    font-weight: 600 !important;
    transition: var(--transition-smooth) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.btn-secondary-premium:hover {
    background: #ffffff !important;
    color: var(--primary-blue) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2) !important;
}

/* FOOTER REFINEMENT */
.main-footer {
    background: var(--primary-blue) !important;
    padding-top: 80px;
}

/* RESPONSIVE MISC */
@media (max-width: 991px) {
    .nav-container {
        padding: 0 20px;
    }

    .banner-section .slide-item h1 {
        font-size: 48px !important;
    }

    .hero-quick-cards {
        margin-top: 20px;
    }
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0.6;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-yellow);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* ==========================================================================
   ABOUT SECTION PREMIUM
   ========================================================================== */
.about-section-premium {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-title-wrapper h2 {
    font-size: 48px !important;
    font-weight: 800 !important;
    color: var(--primary-blue) !important;
    margin-bottom: 25px !important;
    position: relative;
    display: block !important;
    letter-spacing: -0.02em;
}

.about-title-wrapper .yellow-separator {
    display: block !important;
    margin: 0 0 30px 0 !important;
}

/* Mobile-only Justify and Alignment */
@media (max-width: 991px) {

    .about-text p,
    .vision-mission-box p,
    .vision-mission-box span,
    .text-description p,
    .sec-title p,
    .quick-card-desc,
    .testimonial-text-premium,
    .blog-content-premium p,
    .process-card-premium .text-muted,
    .info-block p,
    .history-content li,
    .service-details p,
    .blog-details p,
    .page-content p,
    .team-details p,
    .why-choose-us .inner-column div,
    .why-choose-us .inner-column li {
        text-align: justify !important;
        text-justify: inter-word !important;
        line-height: 1.7 !important;
    }
}

.about-text p,
.vision-mission-box p,
.vision-mission-box span {
    line-height: 1.8 !important;
}


@media (max-width: 768px) {
    .about-section-premium {
        padding: 60px 0;
    }

    .about-title-wrapper {
        text-align: center !important;
    }

    .about-title-wrapper h2 {
        font-size: 28px !important;
        margin-bottom: 15px !important;
    }

    .about-title-wrapper .yellow-separator,
    .why-choose-us .sec-title .yellow-separator {
        margin: 10px auto !important;
        display: block !important;
    }

    .why-choose-us .sec-title,
    .why-choose-us .sec-title h2 {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .about-text p {
        font-size: 15px !important;
        line-height: 1.8 !important;
    }
}

/* Separator styling handled by .yellow-separator class */

/* ==========================================================================
   YELLOW SEPARATOR WITH DOT (UNIFIED STYLE)
   ========================================================================== */
.yellow-separator {
    position: relative;
    width: 50px;
    height: 3px;
    background: #f1c40f;
    margin: 15px 0;
    display: inline-block;
}

.yellow-separator::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #f1c40f;
    border-radius: 50%;
}

/* Centered variant */
.yellow-separator.centered {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/* Left aligned variant */
.yellow-separator.left {
    margin-left: 0;
    margin-right: 0;
}

/* ==========================================================================
   PORTFOLIO FILTER BUTTONS (ALIGNED)
   ========================================================================== */
.portfolio-filter-premium {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 40px;
}

.portfolio-filter-premium .filter {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #004aad;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.4;
    white-space: normal;
    word-wrap: break-word;
    max-width: 280px;
}

.portfolio-filter-premium .filter:hover {
    background: #f8f9fa;
    border-color: #f1c40f;
    color: #004aad;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 74, 173, 0.1);
}

.portfolio-filter-premium .filter.active {
    background: #f1c40f;
    border-color: #f1c40f;
    color: #000000;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.3);
}

.portfolio-filter-premium .filter::after {
    display: none !important;
}

.about-text {
    font-size: 17px;
    line-height: 1.8;
    color: #000000 !important;
    margin-bottom: 30px;
}

.vision-mission-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition-smooth);
}

.vision-mission-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-yellow);
}

.vision-mission-box h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.vision-mission-box h3 i {
    color: var(--accent-yellow);
}

/* ==========================================================================
   PORTFOLIO SECTION PREMIUM
   ========================================================================== */
.portfolio-section-premium {
    padding: 30px 0;
    background: #f8fafc;
}

/* ==========================================================================
   TEAM SECTION PREMIUM (OVERLAY DESIGN)
   ========================================================================== */
/* Homepage component overrides */
.member-role {
    color: #ffffff !important;
    opacity: 0.9;
    font-weight: 600 !important;
}

/* About page and general team card overrides */
.team-section-premium .blog-card-premium {
    position: relative;
    border: none !important;
    border-radius: 24px !important;
    overflow: hidden;
    background: #000 !important;
}

.team-section-premium .blog-image-wrapper {
    height: 400px !important;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-section-premium .blog-card-premium:hover .blog-image-wrapper {
    transform: scale(1.08);
}

.team-section-premium .blog-card-premium::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 58, 138, 0.95) 0%,
            rgba(0, 0, 0, 0.4) 40%,
            transparent 80%);
    z-index: 1;
    transition: all 0.4s ease;
}

.team-section-premium .blog-card-premium:hover::after {
    background: linear-gradient(to top,
            rgba(0, 74, 173, 0.98) 0%,
            rgba(0, 58, 138, 0.6) 50%,
            transparent 100%);
}

.team-section-premium .blog-content-premium {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 2;
    padding: 35px 25px !important;
    background: transparent !important;
    text-align: center !important;
}

.team-section-premium .blog-content-premium h3 {
    color: #ffffff !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    margin-bottom: 8px !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.team-section-premium .blog-content-premium p {
    color: #ffffff !important;
    /* Make role white */
    opacity: 0.9;
    font-weight: 700 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 20px !important;
}

/* Social links in overlay */
.team-section-premium .blog-content-premium .btn-premium {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}

.team-section-premium .blog-content-premium .btn-premium:hover {
    background: var(--accent-yellow) !important;
    color: #000000 !important;
    border-color: var(--accent-yellow) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 20px rgba(248, 190, 20, 0.3) !important;
}

/* Team Card Clickable Overlay */
.team-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 74, 173, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 10;
}

.team-card-clickable:hover .team-card-overlay {
    opacity: 1;
    visibility: visible;
}

.team-card-clickable {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card-clickable:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Homepage Team Section - Fix Photo Sizes */
#team-section-root .card-container {
    flex-shrink: 0;
    width: 100%;
    padding: 20px 15px;
    box-sizing: border-box;
    perspective: 1000px;
    display: flex;
    align-items: stretch;
}

#team-section-root .image-wrapper {
    position: relative;
    width: 100%;
    height: 400px !important;
    overflow: hidden;
    background: #0d3654;
    flex-shrink: 0;
}

#team-section-root .card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}

#team-section-root .card-inner {
    height: 550px !important;
    max-height: 550px !important;
    display: flex;
    flex-direction: column;
    width: 100%;
}

#team-section-root .card-content {
    flex-shrink: 0;
    flex-grow: 0;
    padding: 30px 25px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#team-section-root .member-name {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

#team-section-root .member-role {
    font-size: 14px;
    font-weight: 500;
    color: #1dd1a1;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Override Vue component transforms to ensure uniform height */
#team-section-root .card-container {
    transform: none !important;
}

#team-section-root .card-inner {
    transform: none !important;
}

/* Ensure all cards have same visual appearance */
#team-section-root .carousel-track {
    align-items: center !important;
}

/* Remove any scaling effects */
#team-section-root .card-container[style*="transform"] {
    transform: none !important;
}

.portfolio-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    margin-bottom: 30px;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 74, 173, 0.15);
}

.portfolio-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.portfolio-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 74, 173, 0.95), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
}

.portfolio-overlay p {
    color: var(--accent-yellow);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   TESTIMONIAL SECTION PREMIUM
   ========================================================================== */
.testimonial-section-premium {
    padding: 30px 0;
    background: var(--primary-blue);
    color: #fff;
}

.testimonial-card-premium {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 40px;
    border-radius: 40px;
    text-align: center;
    position: relative;
    margin: 20px;
}

.testimonial-quote-icon {
    font-size: 40px;
    color: var(--accent-yellow);
    margin-bottom: 30px;
    opacity: 1;
}

.testimonial-text-premium {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author-premium img {
    width: 70px !important;
    height: 70px !important;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 3px solid var(--accent-yellow);
}

.testimonial-author-premium h5 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
}

.testimonial-author-premium p {
    color: var(--accent-yellow);
    font-size: 14px;
}

/* ==========================================================================
   BLOG SECTION PREMIUM
   ========================================================================== */
.blog-card-premium {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 74, 173, 0.12);
    border-color: var(--accent-yellow);
}

.blog-image-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.blog-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-yellow);
    color: #000;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(248, 190, 20, 0.3);
}

.blog-content-premium {
    padding: 20px;
}

.blog-content-premium h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card-premium:hover .blog-content-premium h3 {
    color: var(--accent-yellow);
}

.blog-content-premium p {
    color: #4b5563 !important;
    /* Professional Gray */
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.blog-read-more {
    color: var(--primary-blue);
    font-weight: 800;
    text-decoration: none !important;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.blog-read-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    color: var(--accent-yellow);
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   SUBSCRIBE SECTION PREMIUM
   ========================================================================== */
.subscribe-section {
    background: linear-gradient(135deg,
            var(--primary-blue) 0%,
            #1a4f7e 100%) !important;
    padding: 60px 0 !important;
    position: relative;
    overflow: hidden;
    color: #fff !important;
}

.subscribe-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(248, 190, 20, 0.05);
    border-radius: 50%;
    z-index: 1;
}

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

.subscribe-section .title-column h2 {
    color: #ffffff !important;
    font-size: 34px !important;
    font-weight: 800 !important;
    margin-bottom: 12px !important;
    font-family: "Inter", sans-serif !important;
}

.subscribe-section .title-column .text {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 16px !important;
    line-height: 1.6;
}

.subscribe-section .title-column .icon-box {
    display: none !important;
    /* Remove dated icon box */
}

.subscribe-section .form-column .inner-column {
    padding-top: 10px;
}

.subscribe-section .subscribe-form .form-group {
    position: relative;
    display: flex;
    gap: 10px;
}

.subscribe-section .subscribe-form .form-group input[type="email"] {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 15px !important;
    padding: 15px 25px !important;
    color: #fff !important;
    height: 60px !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
    font-family: "Inter", sans-serif !important;
}

.subscribe-section .subscribe-form .form-group input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.subscribe-section .subscribe-form .form-group input[type="email"]:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--accent-yellow) !important;
    outline: none !important;
}

.subscribe-section .subscribe-form .form-group button {
    background: var(--accent-yellow) !important;
    color: #000 !important;
    border-radius: 15px !important;
    width: 60px !important;
    height: 60px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px !important;
    transition: all 0.3s ease !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(248, 190, 20, 0.3) !important;
}

.subscribe-section .subscribe-form .form-group button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(248, 190, 20, 0.5) !important;
    filter: brightness(1.1);
}

/* ==========================================================================
   MAIN FOOTER PREMIUM
   ========================================================================== */
.main-footer {
    background: #003a8a !important;
    /* Deep Navy Background */
    padding-top: 80px !important;
    color: #ffffff !important;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.main-footer::before {
    display: none !important;
    /* Remove dated image background */
}

.main-footer .footer-logo img {
    height: 50px !important;
    width: auto !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    display: block !important;
    object-fit: contain !important;
}

.main-footer .footer-contact-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.main-footer .footer-contact-list li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 15px !important;
    margin-bottom: 25px !important;
    width: 100% !important;
    padding: 0 !important;
}

.main-footer .footer-contact-list li i {
    color: var(--accent-yellow) !important;
    font-size: 18px !important;
    width: 20px !important;
    flex-shrink: 0 !important;
    text-align: center;
    margin-top: 4px;
}

.main-footer .contact-detail {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    flex: 1 !important;
    min-width: 0;
}

.main-footer .contact-detail .label {
    color: var(--accent-yellow) !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block !important;
    line-height: 20px !important;
    height: 20px !important;
    margin-bottom: 5px !important;
}

.main-footer .contact-detail .value {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    font-weight: 500 !important;
}

.main-footer .contact-detail .value a {
    color: inherit !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.main-footer .contact-detail .value a:hover {
    color: var(--accent-yellow) !important;
}

.main-footer .links-widget .list {
    display: block !important;
    width: 100% !important;
    position: relative !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

.main-footer .links-widget .list li {
    margin-bottom: 15px !important;
    padding: 0 !important;
}

.main-footer .links-widget .list li a {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: block !important;
    font-size: 15px !important;
    padding: 0 !important;
}

.main-footer .links-widget .list li a:hover {
    color: var(--accent-yellow) !important;
    padding-left: 8px !important;
}

.main-footer .recent-posts .post {
    margin-bottom: 25px !important;
    display: flex !important;
    gap: 15px !important;
    align-items: center !important;
}

.main-footer .recent-posts .thumb {
    width: 80px !important;
    height: 60px !important;
    flex-shrink: 0 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
}

.main-footer .recent-posts .thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.4s ease !important;
}

.main-footer .recent-posts .post:hover .thumb img {
    transform: scale(1.15);
}

.main-footer .post-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.main-footer .post-info .post-date {
    color: var(--accent-yellow) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-footer .post-info h4 {
    margin: 0 !important;
    line-height: 1.4 !important;
}

.main-footer .post-info h4 a {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.main-footer .post-info h4 a:hover {
    color: var(--accent-yellow) !important;
}

/* UNIVERSAL FOOTER RESET - FIX OVERLAPPING AND WRAPPING */
.main-footer .widgets-section {
    padding: 50px 0 20px !important;
    /* Smaller top/bottom padding */
    position: relative !important;
}

.main-footer .footer-logo-top {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    margin-bottom: 20px !important;
    /* Tighter gap below logo */
    padding-left: 15px !important;
    /* Align with column gutters */
}

.main-footer .footer-logo-top img {
    height: 55px !important;
    width: auto !important;
    display: block !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

.main-footer .footer-column {
    margin-bottom: 30px !important;
    /* Reduced from 40px */
}

/* Ensure all widget titles start at same level */
.main-footer .footer-widget {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.main-footer .big-column {
    width: 100% !important;
}

.main-footer .about-widget {
    padding-right: 40px !important;
}

.main-footer .widget-title {
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    margin-bottom: 25px !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    font-family: "Inter", sans-serif !important;
    padding-bottom: 0 !important;
    text-transform: none !important;
    line-height: normal !important;
    height: 20px !important;
    /* Align with contact label height */
}

.main-footer .widget-title::after {
    content: "" !important;
    position: absolute !important;
    bottom: -10px !important;
    left: 0 !important;
    width: 40px !important;
    height: 3px !important;
    background: var(--accent-yellow) !important;
    border-radius: 2px !important;
}

/* Fix useful links position - Align directly under title */
.main-footer .links-widget .list {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    /* Remove top margin to align with contact list */
    list-style: none !important;
    text-align: left !important;
}

.main-footer .links-widget .list li {
    margin-bottom: 12px !important;
    padding: 0 !important;
    display: block !important;
    position: relative !important;
    line-height: 1.6 !important;
    /* Ensure consistent spacing with contact labels */
}

.main-footer .links-widget .list li:before {
    display: none !important;
    /* Remove any old bullets */
}

.main-footer .links-widget .list li a {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 15px !important;
    padding: 0 !important;
    display: inline-block !important;
    transition: all 0.3s ease;
}

.main-footer .links-widget .list li a:hover {
    color: var(--accent-yellow) !important;
}

/* Scroll To Top */
.scroll-to-top {
    background: var(--accent-yellow) !important;
    color: #000 !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(248, 190, 20, 0.3);
}

.scroll-to-top:hover {
    background: #e5af12 !important;
    transform: translateY(-5px);
}

/* Remove default separators in footer */
.main-footer .footer-column .widget-title:before,
.main-footer .footer-column .widget-title:after {
    display: none !important;
}

/* Mobile Optimizations */
@media (max-width: 576px) {
    .subscribe-section .subscribe-form .form-group {
        flex-direction: column;
        gap: 15px;
    }

    .subscribe-section .subscribe-form .form-group button {
        width: 100% !important;
        height: 55px !important;
        border-radius: 12px !important;
    }
}

/* Footer Bottom Refinement */
.footer-bottom {
    background: #002e6e !important;
    padding: 20px 0 !important;
    /* Reduced from 30px */
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.footer-bottom .copyright-text {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 14px !important;
}

.footer-bottom .social-links .social-icon-two li a {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #fff !important;
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    display: block;
    text-align: center;
}

.footer-bottom .social-links .social-icon-two li a:hover {
    background: var(--accent-yellow) !important;
    color: #000 !important;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(248, 190, 20, 0.3) !important;
}

/* ==========================================================================
   PAGE TITLE & BREADCRUMB PREMIUM (PREMIUM CUT)
   ========================================================================== */
.page-title-premium {
    position: relative !important;
    padding: 160px 0 120px !important;
    background: #004aad !important;
    background: linear-gradient(135deg, #002e6e 0%, #004aad 100%) !important;
    text-align: center;
    overflow: hidden !important;
    display: flex;
    align-items: center;
    justify-content: center;
    /* The Premium Cut Effect */
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
    z-index: 10;
}

/* Specific background support for Hero Images if added later via admin */
.page-title-premium.has-bg-image {
    background-size: cover !important;
    background-position: center center !important;
}

.page-title-premium.has-bg-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 46, 110, 0.9) 0%,
            rgba(0, 74, 173, 0.7) 100%);
    z-index: 1;
}

.page-title-premium .container {
    position: relative;
    z-index: 10;
}

.page-title-premium h1 {
    font-size: 56px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: -1px !important;
    margin-bottom: 20px !important;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeInUpPremium 0.8s ease-out forwards;
}

.page-title-premium .bread-crumb {
    animation: fadeInUpPremium 1s ease-out 0.2s forwards;
    opacity: 0;
}

@keyframes fadeInUpPremium {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Advanced Floating Elements */
.floating-element {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.element-1 {
    top: 15%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle,
            rgba(248, 190, 20, 0.2) 0%,
            transparent 70%);
    filter: blur(40px);
    animation: float-slow 15s infinite alternate;
}

.element-2 {
    bottom: 10%;
    right: 5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle,
            rgba(0, 74, 173, 0.3) 0%,
            transparent 70%);
    filter: blur(60px);
    animation: float-slow 20s infinite alternate-reverse;
}

@keyframes float-slow {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    100% {
        transform: translate(40px, 40px) rotate(10deg) scale(1.1);
    }
}

/* Grid Pattern Overlay */
.page-title::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px,
            transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
}

.bread-crumb {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
}

.bread-crumb ul {
    display: inline-flex !important;
    align-items: center;
    background: rgba(255, 255, 255, 0.08) !important;
    padding: 12px 32px !important;
    border-radius: 100px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    list-style: none !important;
    margin: 0 !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
}

.bread-crumb ul li {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
}

.bread-crumb ul li:last-child {
    color: var(--accent-yellow) !important;
}

/* Completely reset old breadcrumb separators from style.css */
.page-title .bread-crumb li::before,
.page-title .bread-crumb li::after {
    display: none !important;
    content: none !important;
    position: static !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
}

.bread-crumb ul li:not(:last-child)::after {
    display: inline-flex !important;
    align-items: center !important;
    content: "→" !important;
    font-family: "Inter", sans-serif !important;
    font-weight: 500 !important;
    margin: 0 15px !important;
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 16px !important;
    line-height: 1 !important;
}

.bread-crumb ul li a {
    color: #ffffff !important;
    opacity: 0.8;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.bread-crumb ul li a:hover {
    color: var(--accent-yellow) !important;
    opacity: 1;
    transform: translateY(-1px);
}

/* Bottom Curve integration for the white content section */
.page-title-bottom-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, #ffffff 0%, transparent 100%);
    z-index: 3;
}

/* ==========================================================================
   FAQ ACCORDION PREMIUM
   ========================================================================== */
.faq-section-two {
    padding: 100px 0 !important;
    background-color: #ffffff !important;
}

.accordion-box {
    position: relative;
    padding-top: 10px;
}

.accordion-box .accordion {
    position: relative;
    margin-bottom: 20px;
}

.accordion-box .acc-btn {
    position: relative;
    cursor: pointer;
    padding: 24px 35px !important;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 15px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--primary-blue) !important;
    transition: all 0.3s ease !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.accordion-box .acc-btn.active {
    background: var(--primary-blue) !important;
    color: #ffffff !important;
    border-color: var(--primary-blue) !important;
    box-shadow: 0 10px 30px rgba(0, 74, 173, 0.2);
    border-radius: 15px 15px 0 0 !important;
}

.accordion-box .acc-btn .icon-outer {
    order: 2;
    font-size: 14px;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.accordion-box .acc-btn.active .icon-outer {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(180deg);
}

.accordion-box .acc-content {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-top: none !important;
    border-radius: 0 0 15px 15px !important;
    padding: 0 35px !important;
    display: none;
    overflow: hidden;
}

.accordion-box .acc-content.current {
    display: block;
    padding: 25px 35px 35px !important;
}

.accordion-box .acc-content .text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
}

/* FAQ Sidebar Category Widget */
.faq-list-sidebar {
    background: #f8fafc;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-cat li {
    margin-bottom: 12px;
}

.faq-cat li a {
    display: block;
    padding: 15px 20px;
    background: #ffffff;
    border-radius: 12px;
    color: var(--text-dark) !important;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.faq-cat li.active a,
.faq-cat li a:hover {
    background: var(--accent-yellow);
    color: #000000 !important;
    box-shadow: 0 10px 20px rgba(248, 190, 20, 0.2);
}

/* ==========================================================================
   MISSION & VISION BOXES (ABOUT PAGE)
   ========================================================================== */
.our-mission-section {
    padding: 100px 0 !important;
    background: #ffffff;
}

.our-mission-section .info-box {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.our-mission-section .info-box:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-yellow);
}

.our-mission-section .info-box h4 {
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.our-mission-section .info-box h4::before {
    content: "";
    width: 6px;
    height: 20px;
    background: var(--accent-yellow);
    border-radius: 3px;
}

/* FUN FACTS COUNTER */
.fun-fact-section {
    padding: 60px 0 0;
}

.fact-counter .count-box {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.fact-counter .count {
    font-size: 52px;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.fact-counter .counter-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fact-counter .separater {
    width: 40px;
    height: 3px;
    background: var(--accent-yellow);
    margin: 15px auto;
    border: none !important;
}

/* ==========================================================================
   CONTACT SECTION PREMIUM
   ========================================================================== */
.contact-section {
    padding: 100px 0 !important;
    background: #ffffff;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    background: #f9fafb !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 15px !important;
    padding: 18px 25px !important;
    font-family: "Inter", sans-serif !important;
    transition: all 0.3s ease !important;
    width: 100%;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: var(--accent-yellow) !important;
    background: #ffffff !important;
    box-shadow: 0 5px 20px rgba(248, 190, 20, 0.12) !important;
    outline: none;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    background: #f9fafb !important;
    padding: 30px !important;
    border-radius: 20px !important;
    margin-bottom: 20px !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 20px !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.contact-info li:hover {
    transform: translateY(-5px) !important;
    border-color: var(--accent-yellow) !important;
    background: #ffffff !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06) !important;
}

.contact-info li i {
    font-size: 28px !important;
    color: var(--accent-yellow) !important;
}

.contact-info li span {
    font-weight: 800 !important;
    color: var(--primary-blue) !important;
    display: block !important;
    margin-bottom: 8px !important;
    font-size: 16px !important;
}

.contact-info li a,
.contact-info li {
    color: #4b5563 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    text-decoration: none !important;
}

/* Map Full Border Refinement - FIXED HEIGHT & FULL FILL */
.map-wrapper {
    background: #fff !important;
    padding: 0 !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    height: 450px !important;
    /* Fixed robust height */
    position: relative !important;
    overflow: hidden !important;
}

.map-wrapper .ratio {
    height: 100% !important;
    padding-bottom: 0 !important;
    /* Disable standard ratio padding */
    border-radius: inherit !important;
}

.map-wrapper iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    display: block !important;
    border-radius: inherit !important;
    margin: 0 !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
}

.map-wrapper .ratio>* {
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
}


.team-profile-modal .modal-dialog {
    max-width: 1100px !important;
    margin: 1.75rem auto;
}

.team-profile-modal .modal-content {
    border-radius: 30px !important;
    border: none !important;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

.team-profile-modal .modal-body {
    padding: 60px 70px !important;
    position: relative;
    background: #fff;
}

.btn-close-custom {
    position: absolute;
    top: 40px;
    right: 50px;
    background: none;
    border: none;
    color: #ff9300 !important;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    cursor: pointer;
}

.member-photo-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    background: #f8fafc;
}

.member-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/5;
}

/* Modal Specific Member Name */
.team-profile-modal .member-name {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #000 !important;
    margin: 0 0 5px 0 !important;
    line-height: 1.2;
}

/* Restore Homepage Carousel Card Styles */
#team-section-root .member-name {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 5px !important;
}

#team-section-root .member-role {
    color: #1dd1a1 !important;
    font-weight: 600 !important;
}

#team-section-root .card-inner {
    height: 520px !important;
    min-height: 520px !important;
    max-height: 520px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
}

#team-section-root .image-wrapper {
    height: 380px !important;
    min-height: 380px !important;
    max-height: 380px !important;
    padding-top: 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

#team-section-root .card-image {
    height: 100% !important;
    width: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    object-fit: cover !important;
    object-position: top !important;
}

.member-designation {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #00529C !important;
    margin-bottom: 35px !important;
}

.info-block {
    margin-bottom: 25px;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
}

.info-block .section-title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #00529C !important;
    margin-bottom: 8px;
    text-transform: none;
}

.info-block p {
    color: #444 !important;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 0;
}

.history-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.history-list li {
    padding: 0 !important;
    margin-bottom: 10px;
    color: #444 !important;
    line-height: 1.6;
    font-size: 15px;
    position: relative;
}

.history-list li::before {
    display: none !important;
}

.contact-info {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .team-profile-modal .modal-dialog {
        margin: 20px !important;
        max-width: calc(100% - 40px) !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .team-profile-modal .modal-content {
        max-height: 85vh !important;
        /* Create the cut-off effect */
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .team-profile-modal .modal-body {
        padding: 50px 25px 40px 25px !important;
        overflow-y: auto !important;
        /* Enable sliding/scrolling for cut-off content */
        -webkit-overflow-scrolling: touch;
    }

    .btn-close-custom {
        top: 20px !important;
        right: 20px !important;
        background: white !important;
        padding: 5px 10px !important;
        border-radius: 50px !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    }

    .member-photo-wrapper {
        max-width: 280px !important;
        margin: 0 auto 30px auto !important;
    }

    .team-profile-modal .member-name {
        font-size: 26px !important;
        text-align: center !important;
        margin-bottom: 5px !important;
    }

    .member-designation {
        font-size: 15px !important;
        text-align: center !important;
        margin-bottom: 35px !important;
    }

    .info-block .section-title {
        text-align: center !important;
        font-size: 18px !important;
        margin-bottom: 20px !important;
    }

    .info-block p,
    .history-list li {
        font-size: 14.5px !important;
        text-align: justify !important;
        text-justify: inter-word;
    }

    /* Hide scrollbar for cleaner look like in screenshot if requested, but keep scrolling active */
    .team-profile-modal .modal-body::-webkit-scrollbar {
        width: 4px;
    }

    .team-profile-modal .modal-body::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.1);
        border-radius: 10px;
    }
}

/* ==========================================================================
   PORTFOLIO PAGE PREMIUM
   ========================================================================== */
.gallery-section {
    padding: 100px 0 !important;
    background: #f8fafc !important;
}

.portfolio-filter-premium {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px !important;
}

.portfolio-filter-premium li {
    background: #fff !important;
    color: var(--primary-blue) !important;
    padding: 10px 25px !important;
    border-radius: 100px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03) !important;
}

.portfolio-filter-premium li.active,
.portfolio-filter-premium li:hover {
    background: var(--accent-yellow) !important;
    color: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(248, 190, 20, 0.2) !important;
    border-color: var(--accent-yellow) !important;
}

.portfolio-card-premium {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.portfolio-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 74, 173, 0.1);
    border-color: var(--accent-yellow);
}

.portfolio-card-premium .image-box {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.portfolio-card-premium .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card-premium:hover .image-box img {
    transform: scale(1.1);
}

.portfolio-card-premium .overlay-box {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 74, 173, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-card-premium:hover .overlay-box {
    opacity: 1;
}

.portfolio-card-premium .content {
    color: #fff;
}

.portfolio-card-premium .content h3 {
    margin-bottom: 5px;
}

.portfolio-card-premium .content h3 a {
    color: #fff !important;
    font-weight: 800;
    font-size: 20px;
    text-decoration: none !important;
}

.portfolio-card-premium .tags {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-yellow);
}

/* ==========================================================================
   SERVICE DETAIL PREMIUM
   ========================================================================== */
.sidebar-page-container {
    padding: 100px 0 !important;
    background: #fff;
}

.service-sidebar-premium {
    background: #f8fafc;
    padding: 30px;
    border-radius: 25px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-sidebar-premium .blog-cat {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.service-sidebar-premium .blog-cat li {
    margin-bottom: 12px;
}

.service-sidebar-premium .blog-cat li a {
    display: block;
    padding: 15px 20px;
    background: #fff;
    border-radius: 15px;
    color: var(--text-dark) !important;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-sidebar-premium .blog-cat li.active a,
.service-sidebar-premium .blog-cat li a:hover {
    background: var(--primary-blue) !important;
    color: #fff !important;
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0, 74, 173, 0.15);
}

.service-detail-premium h2 {
    font-size: 36px !important;
    font-weight: 900 !important;
    color: var(--primary-blue) !important;
    margin: 30px 0 20px !important;
    font-family: "Inter", sans-serif !important;
}

.service-detail-premium .image-box {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-detail-premium .image-box img {
    width: 100% !important;
    height: auto !important;
    display: block;
    object-fit: cover;
}

.service-detail-premium .text {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
}

.btn-style-four {
    background: var(--accent-yellow) !important;
    padding: 15px 35px !important;
    border-radius: 100px !important;
    font-weight: 800 !important;
    color: #000 !important;
    box-shadow: 0 8px 20px rgba(248, 190, 20, 0.3) !important;
}

.service-card-premium {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
}

.service-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 74, 173, 0.1);
    border-color: var(--accent-yellow);
}

.service-card-premium .image-box {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-card-premium .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-premium:hover .image-box img {
    transform: scale(1.1);
}

.service-card-premium .lower-content {
    padding: 25px;
}

.service-card-premium h3 {
    margin-bottom: 12px;
}

.service-card-premium h3 a {
    color: var(--primary-blue) !important;
    font-weight: 800;
    font-size: 20px;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.service-card-premium:hover h3 a {
    color: var(--accent-yellow) !important;
}

.service-card-premium .text {
    font-size: 14.5px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 15px;
}

.services-carousel .item {
    padding-bottom: 20px;
}

.services-carousel .quick-card-item {
    height: 100% !important;
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

/* Custom Owl Nav for Services */
.services-carousel .owl-nav {
    position: absolute;
    top: -95px;
    right: 0;
    margin-top: 0 !important;
}

.services-carousel .owl-nav .owl-prev,
.services-carousel .owl-nav .owl-next {
    width: 45px !important;
    height: 45px !important;
    line-height: 45px !important;
    background: #fff !important;
    color: var(--primary-blue) !important;
    border-radius: 50% !important;
    margin: 0 5px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    display: inline-block !important;
}

.services-carousel .owl-nav .owl-prev:hover,
.services-carousel .owl-nav .owl-next:hover {
    background: var(--accent-yellow) !important;
    color: #000 !important;
    transform: translateY(-3px);
}

.services-carousel .owl-dots {
    margin-top: 40px !important;
}

.services-carousel .owl-dot {
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    outline: none !important;
}

/* Hide theme default dots if any */
.services-carousel .owl-dots .owl-dot:after,
.services-carousel .owl-dots .owl-dot:before {
    display: none !important;
}

/* ==========================================================================
   MOBILE HEADER & NAVBAR OVERRIDES (GENERATED)
   ========================================================================== */
@media (max-width: 768px) {

    /* 1. Base Header Adjustments - TRANSPARENT TO WHITE */
    .main-header-premium {
        padding: 15px 0 !important;
        background-color: transparent !important;
        /* Start Transparent */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: none !important;
    }

    .main-header-premium.scrolled {
        padding: 10px 0 !important;
        background-color: #ffffff !important;
        /* Becomes White */
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    }

    /* Container Spacing */
    .nav-container {
        padding: 0 20px !important;
    }

    /* 2. Logo Optimization - LEFT ALIGNED & COLORED (Aggressive Fix) */
    .logo-box,
    .main-header-premium .logo-box {
        margin-right: auto !important;
        flex-grow: 0 !important;
        padding: 0 !important;
    }

    .logo-box a,
    .main-header-premium .logo-box a {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    /* Target specifically to override the global :not(.scrolled) rule */
    .main-header-premium .logo-box img,
    .main-header-premium:not(.scrolled) .logo-box img {
        height: 42px !important;
        width: auto !important;
        object-fit: contain !important;
        filter: none !important;
        /* Force original colors */
        opacity: 1 !important;
    }

    /* 3. Hide Desktop Elements */
    .premium-nav,
    .header-cta-wrapper {
        display: none !important;
    }

    /* 4. Hamburger Menu (Mobile Toggle) - DYNAMIC COLOR */
    .mobile-nav-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 22px !important;
        color: #ffffff !important;
        /* White on transparent header */
        width: 42px;
        height: 42px;
        background: rgba(255, 255, 255, 0.15) !important;
        border: 1px solid rgba(255, 255, 255, 0.25) !important;
        border-radius: 8px !important;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .main-header-premium.scrolled .mobile-nav-toggle {
        color: #0a3d62 !important;
        /* Primary Blue on white header */
        background: rgba(10, 61, 98, 0.05) !important;
        border: 1px solid rgba(10, 61, 98, 0.1) !important;
    }

    .mobile-nav-toggle:active {
        background: rgba(255, 255, 255, 0.2) !important;
        transform: scale(0.95);
    }

    /* 5. Mobile Menu Overlay Refinement - 75% WIDTH & WHITE BG */
    #mobileMenuOverlay {
        width: 75% !important;
        left: auto !important;
        right: 0 !important;
        background: #ffffff !important;
        /* White Background */
        padding: 80px 25px 40px !important;
        justify-content: flex-start !important;
        overflow-y: auto !important;
        gap: 0 !important;
        /* Reset gap, use margins */
        box-shadow: -15px 0 40px rgba(0, 0, 0, 0.1) !important;
        border-left: 1px solid rgba(0, 0, 0, 0.05) !important;
    }

    /* Close Button */
    #closeMobileMenu {
        top: 25px !important;
        right: 25px !important;
        font-size: 24px !important;
        width: 42px;
        height: 42px;
        background: rgba(10, 61, 98, 0.05) !important;
        border: 1px solid rgba(10, 61, 98, 0.1) !important;
        color: #0a3d62 !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 0 !important;
        transition: all 0.2s ease;
    }

    #closeMobileMenu:active {
        background: rgba(255, 255, 255, 0.2) !important;
        transform: rotate(90deg);
    }

    /* Menu Items - DARK TEXT ON WHITE BG */
    .mobile-nav-item {
        font-family: "Inter", sans-serif !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        color: #0a3d62 !important;
        /* Primary Blue */
        padding: 16px 0 !important;
        width: 100% !important;
        text-align: center !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
        opacity: 0.9;
        text-decoration: none !important;
        letter-spacing: 0.5px;
    }

    .mobile-nav-item:hover {
        color: var(--accent-yellow) !important;
        opacity: 1;
    }

    .mobile-nav-item:active {
        opacity: 1;
        background: rgba(10, 61, 98, 0.03) !important;
        color: var(--accent-yellow) !important;
    }

    /* CTA inside Menu */
    #mobileMenuOverlay .header-cta-btn {
        margin-top: 30px !important;
        width: 100% !important;
        justify-content: center !important;
        background: var(--accent-yellow) !important;
        /* Yellow Desktop Match */
        color: #000000 !important;
        /* Black Text */
        font-weight: 800 !important;
        font-size: 16px !important;
        padding: 16px !important;
        border-radius: 12px !important;
    }

    /* ==========================================================================
       HERO SECTION - PREMIUM CUT MOBILE FIX
       ========================================================================== */
    .hero-premium-cut {
        height: 100vh !important;
        height: 100svh !important;
        min-height: 100vh !important;
        background: #002e6e !important;
        clip-path: none !important;
        /* Standardize for mobile to avoid text cutoff */
    }

    /* Force all carousel parts to fill the viewport height */
    .banner-carousel,
    .banner-carousel .owl-stage-outer,
    .banner-carousel .owl-stage,
    .banner-carousel .owl-item {
        height: 100% !important;
        min-height: 100vh !important;
        min-height: 100svh !important;
    }

    .hero-premium-cut .slide-item {
        height: 100% !important;
        min-height: 100vh !important;
        min-height: 100svh !important;
        padding-top: 80px !important;
        padding-bottom: 40px !important;
        background: #002e6e !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .hero-premium-cut .content-box {
        max-width: 100% !important;
        padding: 0 20px !important;
        margin: 0 auto !important;
    }

    .hero-premium-cut .slide-item h1 {
        font-size: 38px !important;
        margin-bottom: 15px !important;
        letter-spacing: -1px !important;
    }

    .hero-premium-cut .slide-item .text p {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }

    .hero-premium-cut .slide-bg-gradient {
        background: radial-gradient(circle at 50% 50%,
                rgba(0, 74, 173, 0.9) 0%,
                #002e6e 100%) !important;
    }

    /* ==========================================================================
       TEAM SECTION (BAGIAN 3) - MOBILE REFINEMENT
       ========================================================================== */
    #team-section-root,
    .team-section-wrapper,
    section#team {
        background: #0a3d62 !important;
        /* Seamless match with hero bottom */
        padding-top: 40px !important;
        padding-bottom: 60px !important;
    }

    /* Force Title Centering - Aggressive targeting */
    .team-section-wrapper .title-wrapper,
    .team-section-wrapper .header-content,
    .team-section-wrapper h2.section-title,
    #team-section-root h2 {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        margin-bottom: 25px !important;
        color: #ffffff !important;
    }

    /* Small Adjustments for Team Cards on Mobile */
    .team-section-wrapper .card-container,
    #team-section-root .card-container {
        padding: 5px !important;
    }

    .team-section-wrapper .card-inner,
    #team-section-root .card-inner {
        height: 460px !important;
        /* Slightly smaller for mobile */
        min-height: 460px !important;
        background: rgba(255, 255, 255, 0.05) !important;
    }

    .team-section-wrapper .image-wrapper,
    #team-section-root .image-wrapper {
        height: 320px !important;
        min-height: 320px !important;
    }
}

/* ==========================================================================
   HERO SECTION - MOBILE & TABLET OPTIMIZATION
   ========================================================================== */
@media (max-width: 991px) {

    /* Hero Container */
    .hero-enterprise-style {
        height: 100vh !important;
        /* Back to full screen for immersive background */
        min-height: 600px !important;
        padding-bottom: 0 !important;
        background: #000 !important;
        /* Fallback */
    }

    .hero-enterprise-style .slide-item {
        height: 100vh !important;
        /* Ensure slide fills the viewport height */
        padding-top: 140px;
        padding-bottom: 80px;
        text-align: left;
        /* Alignment changed to left */
        flex-direction: column;
        justify-content: center;
        /* Center content vertically in the full-height slide */
        background-image: var(--mobile-bg-image) !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }

    .hero-enterprise-style .slide-item::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.7) 0%,
                rgba(0, 0, 0, 0.4) 50%,
                rgba(0, 0, 0, 0.7) 100%) !important;
        z-index: 1;
        display: block !important;
    }

    .hero-enterprise-style .container {
        position: relative;
        z-index: 2;
    }

    .hero-enterprise-style .container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Content Box */
    .hero-content-box {
        max-width: 100%;
        margin: 0 0 30px 0;
        /* Changed from centered margin */
        padding: 0;
    }

    .hero-enterprise-style h1 {
        font-size: 36px !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
        color: #ffffff !important;
        /* White text for contrast on background */
    }

    .hero-enterprise-style h1 .text-accent {
        color: #f8be14 !important;
    }

    .text-description {
        min-height: auto;
        margin-bottom: 30px !important;
    }

    .text-description p {
        font-size: 16px !important;
        line-height: 1.6 !important;
        color: rgba(255, 255, 255, 0.9) !important;
        /* Light text for contrast */
        -webkit-line-clamp: 6;
        line-clamp: 6;
    }

    /* Buttons */
    .hero-cta-group {
        display: flex;
        justify-content: flex-start;
        /* Align buttons to the left */
        flex-wrap: wrap;
        gap: 12px;
    }

    .btn-primary-enterprise,
    .btn-whatsapp-hero {
        padding: 14px 25px;
        width: auto !important;
        /* Not full width anymore */
        min-width: 180px;
        /* Decent click area */
        justify-content: center;
    }

    /* Hide Image Column on Mobile - as it's now the background */
    .hero-enterprise-style .col-lg-6:has(.hero-showcase-container) {
        display: none !important;
    }

    /* Floating Cards - Hide on Mobile to reduce clutter */
    .floating-data-card {
        display: none !important;
    }
}

/* ==========================================================================
   GLOBAL MODERN MOBILE REFINEMENTS (NON-DESTRUCTIVE)
   ========================================================================== */
@media (max-width: 767px) {

    /* 1. Global Section Headers - Compact & Tidy */
    .sec-title h2,
    .about-title-wrapper h2,
    .section-title {
        font-size: 28px !important;
        line-height: 1.2 !important;
        text-align: center !important;
        margin-bottom: 12px !important;
        width: 100% !important;
    }

    .yellow-separator,
    .sec-title .rounded,
    .title-box .yellow-separator {
        margin: 0 auto 20px auto !important;
        /* Force center separators */
        width: 50px !important;
    }

    .sec-title div[style*="color: #666666"] {
        text-align: center !important;
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    /* 2. Global Section Padding - Reduce waste */
    section,
    .py-5 {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    /* 3. Page Titles - Compact */
    .page-title-premium {
        padding: 100px 0 60px 0 !important;
        min-height: auto !important;
    }

    .page-title-premium h1 {
        font-size: 32px !important;
    }

    /* 4. Counters (Fun Facts) - Clean 2-Column Grid */
    .fun-fact-section-premium .row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .fun-fact-section-premium .col-md-6,
    .fun-fact-section-premium .col-sm-12 {
        width: 100% !important;
        padding: 0 !important;
    }

    .counter-card-premium {
        padding: 25px 15px !important;
        border-radius: 15px !important;
    }

    .counter-card-premium .count {
        font-size: 32px !important;
    }

    .counter-card-premium .counter-title {
        font-size: 11px !important;
        letter-spacing: 0.5px !important;
    }

    /* 5. Services & Layanan - Tidy Stack */
    .service-card-premium,
    .process-card-premium {
        padding: 25px !important;
        border-radius: 20px !important;
        margin-bottom: 10px !important;
    }

    /* 6. Portfolio Filters - No Overlap */
    .portfolio-filter-buttons {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 8px !important;
        padding: 0 10px !important;
    }

    .portfolio-filter-buttons button {
        padding: 8px 16px !important;
        font-size: 13px !important;
        white-space: nowrap !important;
    }

    /* 7. About Section - Mobile Align */
    .about-section-premium {
        text-align: center !important;
    }

    .about-section-premium .about-title-wrapper {
        text-align: center !important;
    }

    .about-text div {
        text-align: left !important;
        /* Keep description legible */
        font-size: 15px !important;
    }

    .vision-mission-box {
        text-align: left !important;
        padding: 20px !important;
        border-radius: 15px !important;
    }

    .vision-mission-box h3 {
        font-size: 20px !important;
    }

    /* 8. Spacing Fix for Bootstrap Gaps */
    .g-5,
    .g-4 {
        --bs-gutter-y: 1.5rem !important;
    }
}

/* Scroll To Top Override */
.scroll-to-top {
    left: auto !important;
    right: 30px !important;
    bottom: 30px !important;
    background: var(--accent-yellow) !important;
    color: #000000 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    opacity: 1 !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    display: none;
    /* Controlled by JS */
    align-items: center;
    justify-content: center;
}

.scroll-to-top .fas {
    line-height: 50px;
}

.scroll-to-top:hover {
    background: #004aad !important;
    color: #ffffff !important;
    transform: translateY(-5px);
}

/* MOBILE ONLY - Modern Border & Layout Refinements */
@media (max-width: 767px) {

    /* Soften Card Borders */
    .inner-box,
    .service-block .inner-box,
    .news-block .inner-box,
    .team-block .inner-box,
    .project-block .inner-box {
        border-radius: 20px !important;
        border: 1px solid rgba(0, 0, 0, 0.06) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
        margin-bottom: 25px !important;
        /* Fix stacking spacing */
        overflow: hidden !important;
    }

    /* Fix Image Corners */
    .image-box img,
    .image img,
    .thumb img {
        border-radius: 20px 20px 0 0 !important;
    }

    /* Consistent Spacing for Sections */
    section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    /* Remove double borders on lists/widgets */
    .sidebar .widget,
    .footer-widget {
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    /* Fix Input Fields on Mobile (General) */
    input.form-control,
    textarea.form-control,
    select {
        border-radius: 12px !important;
        border: 1px solid #eaeaea !important;
        padding: 15px !important;
    }

    input:focus,
    textarea:focus {
        border-color: #f8be14 !important;
        box-shadow: 0 0 0 3px rgba(248, 190, 20, 0.1) !important;
    }
}

/* Newsletter Mobile Fix - Clean Layout */
@media (max-width: 767px) {
    .subscribe-section {
        padding: 50px 20px !important;
    }

    .subscribe-section .title-column {
        text-align: center !important;
        margin-bottom: 30px !important;
    }

    .subscribe-section .title-column h2 {
        font-size: 24px !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
    }

    .subscribe-section .title-column .text {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .subscribe-section .title-column .icon-box {
        display: none !important;
    }

    .subscribe-section .form-column {
        margin-top: 0 !important;
    }

    .subscribe-section .form-column .inner-column {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .subscribe-section .subscribe-form .form-group {
        position: relative !important;
        display: block !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
    }

    .subscribe-section .subscribe-form .form-group input[type="email"] {
        width: 100% !important;
        padding: 15px 20px !important;
        padding-right: 60px !important;
        border-radius: 50px !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        background: rgba(255, 255, 255, 0.1) !important;
        color: #fff !important;
        font-size: 15px !important;
        height: 60px !important;
        box-shadow: none !important;
    }

    .subscribe-section .subscribe-form .form-group input[type="email"]::placeholder {
        color: rgba(255, 255, 255, 0.7) !important;
    }

    .subscribe-section .subscribe-form .form-group button {
        position: absolute !important;
        right: 5px !important;
        top: 5px !important;
        bottom: 5px !important;
        width: 50px !important;
        height: 50px !important;
        margin: 0 !important;
        transform: none !important;
        border-radius: 50% !important;
        background: #f8be14 !important;
        border: none !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center;
        justify-content: center !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
        color: #000 !important;
    }

    .subscribe-section .subscribe-form .form-group button i {
        font-size: 18px !important;
        margin: 0 !important;
    }

    .subscribe-form .form-group button i {
        color: #000 !important;
        font-size: 16px !important;
    }
}

/* ==========================================================================
   MOBILE AUDIT FIXES (2026-01-21)
   ========================================================================== */
@media (max-width: 768px) {

    /* 1. Typography Fixes - Override Desktop sizes */
    .section-title-premium-dynamic,
    .sec-title h2 {
        font-size: 28px !important;
        /* Visual Harmony */
        line-height: 1.3 !important;
    }

    /* 2. Spacing Optimization */
    section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .sec-title {
        margin-bottom: 30px !important;
    }

    /* 3. Team Card Safety Override */
    .team-section-wrapper .card-inner {
        height: auto !important;
        min-height: auto !important;
    }

    /* 4. Menu Close Button Safety */
    #closeMobileMenu {
        top: max(30px, env(safe-area-inset-top)) !important;
    }
}

/* ==========================================================================
   FAQs Icon Alignment Fixes
   ========================================================================== */
.accordion-box .acc-btn .icon-outer {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    right: 20px !important;
    /* Adjust if needed */
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 24px !important;
    height: 24px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    /* Ensure no conflict */
}

/* Ensure relative positioning on the button to handle the absolute icon */
.accordion-box .acc-btn {
    position: relative !important;
    padding-right: 50px !important;
    /* Make space for the icon */
    display: flex !important;
    align-items: center !important;
}

/* Center the icons themselves */
.accordion-box .acc-btn .icon-outer .icon {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    line-height: normal !important;
    font-size: 14px !important;
    /* Adjust size */
}

/* Ensure correct FontAwesome rendering */
.accordion-box .acc-btn .icon-outer .icon::before {
    margin: 0 !important;
    line-height: 1 !important;
    display: block !important;
}

/* Handle Visibility Logic Clearly */
.accordion-box .acc-btn:not(.active) .icon_minus {
    opacity: 0 !important;
    visibility: hidden !important;
}

.accordion-box .acc-btn.active .icon_plus {
    opacity: 0 !important;
    visibility: hidden !important;
}

.accordion-box .acc-btn.active .icon_minus {
    opacity: 1 !important;
    visibility: visible !important;
}

.accordion-box .acc-btn:not(.active) .icon_plus {
    opacity: 1 !important;
    visibility: visible !important;
}

/* ==========================================================================
   E-COMMERCE REFINEMENTS (2026-01-22)
   ========================================================================== */

/* Product Card Styling */
.service-card-premium {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.service-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card-premium .image-box img {
    transition: transform 0.5s ease;
}

.service-card-premium:hover .image-box img {
    transform: scale(1.05);
}

/* Premium Button for E-Commerce */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #004aad;
    /* Primary Blue */
    color: #ffffff !important;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 74, 173, 0.2);
}

.btn-premium:hover {
    background: #003380;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 74, 173, 0.3);
}

.btn-premium i {
    margin-right: 8px;
    /* Space between icon and text */
}

.btn-premium.ml-2 {
    margin-left: 10px;
}

/* Form Inputs for Checkout */
.checkout-section .form-control {
    border: 1px solid #e0e0e0;
    background: #fdfdfd;
    font-size: 15px;
    color: #333;
    transition: border-color 0.3s ease;
}

.checkout-section .form-control:focus {
    border-color: #004aad;
    box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.1);
    background: #fff;
}

.checkout-section label {
    color: #444;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}

/* Success Page Animation */
.success-section i.fa-check-circle {
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

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

/* Cart Table Responsive */
@media (max-width: 768px) {
    .cart-section table {
        display: block;
        width: 100%;
        overflow-x: auto;
    }

    .cart-section .btn-premium {
        width: 100%;
        margin-top: 10px;
        margin-left: 0 !important;
    }

    .cart-section .text-right {
        text-align: center !important;
    }
}

/* ==========================================================================
   HEADER COMPACT FIXES (2026-01-22)
   ========================================================================== */
.premium-nav {
    gap: 15px !important;
    /* Reduced from 30px */
}

.premium-nav-link {
    font-size: 13px !important;
    /* Slightly smaller text */
}

.header-cta-btn {
    white-space: nowrap !important;
    /* Prevent text wrapping */
    padding: 10px 20px !important;
    /* Tighter padding */
    font-size: 13px !important;
}

.logo-box {
    margin-right: 20px !important;
    /* Reduce space after logo */
}

.nav-container {
    padding: 0 20px !important;
    /* Maximize width */
}

/* Portfolio Filter Mobile Optimization */
@media (max-width: 768px) {
    .filters {
        width: 100% !important;
        overflow: hidden !important;
    }

    .portfolio-filter-premium {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        gap: 8px !important;
        margin-bottom: 25px !important;
        padding: 0 15px 8px 15px !important;
        margin-left: -15px !important;
        margin-right: -15px !important;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start !important;
    }

    .portfolio-filter-premium li,
    .portfolio-filter-premium .filter {
        padding: 8px 14px !important;
        font-size: 12px !important;
        min-height: 36px !important;
        max-width: none !important;
        min-width: auto !important;
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        border-radius: 20px !important;
    }
}

/* Carousel Indicators Styling (Premium Style) */
.carousel-indicators {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 20px !important;
    margin-bottom: 0 !important;
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
}

.carousel-indicators li {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: rgba(0, 74, 173, 0.2) !important;
    cursor: pointer !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.carousel-indicators li.active {
    width: 35px !important;
    background: var(--accent-yellow) !important;
    border-radius: 10px !important;
}

.carousel-indicators li:hover {
    background: var(--accent-yellow) !important;
}

/* Team Section Carousel Dots - Simple Dots Only */
.team-section .owl-dots,
.team-carousal .owl-dots {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 6px !important;
    margin-top: 20px !important;
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
}

.team-section .owl-dot,
.team-carousal .owl-dot {
    width: 10px !important;
    height: 10px !important;
    background: rgba(0, 74, 173, 0.25) !important;
    border-radius: 50% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
    display: inline-block !important;
}

.team-section .owl-dot.active,
.team-carousal .owl-dot.active {
    background: var(--accent-yellow) !important;
    width: 10px !important;
    height: 10px !important;
    transform: none !important;
}

/* ==========================================================================
   MOBILE MENU PREMIUM
   ========================================================================== */
.premium-mobile-menu {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 85% !important;
    max-width: 400px;
    height: 100vh !important;
    background-color: #ffffff !important;
    z-index: 1000000 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow-y: auto !important;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1) !important;
}

.mobile-menu-header {
    padding: 20px 25px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-bottom: 1px solid #f1f5f9 !important;
    position: sticky !important;
    top: 0;
    background: white;
    z-index: 10;
    height: 80px;
}

.mobile-menu-logo img {
    height: 35px !important;
    width: auto !important;
    object-fit: contain !important;
}

.close-menu-btn {
    background: #f1f5f9 !important;
    border: none !important;
    color: #001f3f !important;
    font-size: 28px !important;
    cursor: pointer !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1;
}

.mobile-nav-container {
    padding: 10px 25px !important;
    flex-grow: 1;
}

.mobile-nav-item {
    color: #001f3f !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    padding: 18px 0 !important;
    border-bottom: 1px solid #f1f5f9 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mobile-nav-item:hover {
    color: var(--accent-yellow) !important;
    padding-left: 5px !important;
}

.mobile-submenu-btn {
    background: #f8fafc !important;
    border: none !important;
    color: #64748b !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease;
    pointer-events: none;
    /* Let the parent click handle it */
}

.active .mobile-submenu-btn {
    background: var(--accent-yellow) !important;
    color: #000 !important;
    transform: rotate(180deg);
}

.mobile-submenu-list {
    background: #f8fafc !important;
    border-radius: 12px !important;
    margin: 5px 0 15px !important;
    padding: 10px 20px !important;
    display: none;
    flex-direction: column !important;
}

.mobile-submenu-link {
    color: #475569 !important;
    font-size: 15px !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    display: block !important;
    padding: 10px 0 !important;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.mobile-submenu-link:last-child {
    border-bottom: none;
}

.mobile-submenu-link:hover {
    color: var(--primary-blue) !important;
    padding-left: 5px !important;
}

.mobile-menu-footer {
    padding: 25px !important;
    border-top: 1px solid #f1f5f9 !important;
    background: #ffffff;
    position: sticky;
    bottom: 0;
}

/* ==========================================================================
   FOUNDATIONAL MOBILE UX IMPROVEMENTS (Audit 2026-02-18)
   ========================================================================== */
@media (max-width: 991px) {

    /* Improve Section Spacing (80px is often too much for mobile) */
    section,
    .services-section,
    .about-section-premium,
    .track-section,
    .checkout-section,
    .cart-section,
    .page-title-premium {
        padding: 40px 0 !important;
    }

    /* Page Title Refinement */
    .page-title-premium {
        min-height: 180px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .page-title-premium h1 {
        font-size: 28px !important;
        margin-bottom: 10px !important;
    }

    /* Typography Scaling */
    .sec-title h2,
    .section-title-premium-dynamic {
        font-size: 26px !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }

    /* Global Form Improvements */
    .form-control,
    .form-select,
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
        font-size: 16px !important;
        /* Prevents iOS auto-zoom */
        padding: 12px 15px !important;
        height: auto !important;
        border-radius: 12px !important;
    }

    .form-group {
        margin-bottom: 20px !important;
    }

    .form-label,
    label {
        font-size: 14px !important;
        margin-bottom: 8px !important;
        font-weight: 600 !important;
    }

    /* Button Enhancements for Touch */
    .btn-premium,
    .theme-btn,
    .btn-style-one {
        min-height: 50px !important;
        padding: 12px 25px !important;
        font-size: 15px !important;
        width: 100% !important;
        /* Full width buttons on mobile are easier to tap */
        justify-content: center !important;
        display: flex !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Mobile Header Specifics */
    .main-header-premium {
        padding: 10px 0 !important;
    }

    .logo-box img {
        height: 35px !important;
    }

    .header-cta-btn {
        display: none !important;
        /* Hide quote button on header to save space */
    }

    /* Table Scroll Indicators */
    .table-responsive {
        border-radius: 12px !important;
        border: 1px solid #eee !important;
        background: linear-gradient(to right, white 30%, rgba(255, 255, 255, 0)),
            linear-gradient(to right, rgba(255, 255, 255, 0), white 70%) 100% 0,
            radial-gradient(farthest-side at 0 50%, rgba(0, 0, 0, .2), rgba(0, 0, 0, 0)),
            radial-gradient(farthest-side at 100% 50%, rgba(0, 0, 0, .2), rgba(0, 0, 0, 0)) 100% 0;
        background-repeat: no-repeat;
        background-color: white;
        background-size: 40px 100%, 40px 100%, 14px 100%, 14px 100%;
        background-attachment: local, local, scroll, scroll;
        -webkit-overflow-scrolling: touch;
    }

    /* Hero Section Refinements */
    .hero-enterprise-style h1 {
        font-size: 34px !important;
        line-height: 1.1 !important;
        margin-bottom: 20px !important;
    }

    .hero-enterprise-style .text-description p {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }

    /* Team Modal Mobile Fix */
    .team-profile-modal .modal-body {
        padding: 30px 20px !important;
    }

    .member-photo-wrapper {
        margin-bottom: 20px !important;
    }

    .member-name {
        font-size: 24px !important;
        text-align: center !important;
    }

    .member-designation {
        text-align: center !important;
        margin-bottom: 25px !important;
    }

    /* Blog Card Refinements */
    .blog-image-wrapper {
        height: 200px !important;
    }

    .blog-content-premium h3 {
        font-size: 18px !important;
    }

    .blog-read-more {
        display: flex !important;
        width: 100% !important;
        justify-content: center !important;
        padding: 12px !important;
        background: #f8fafc !important;
        border-radius: 8px !important;
        margin-top: 15px !important;
    }

    /* Testimonial Refinements */
    .testimonial-card-premium {
        padding: 25px 20px !important;
    }

    .testimonial-text-premium {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }

    /* Checkout Specific Mobile Fixes */
    .checkout-section .card-body {
        padding: 20px !important;
    }

    .unit-row {
        gap: 5px !important;
    }

    /* Floating elements sometimes get in the way on small screens */
    .floating-element {
        display: none !important;
    }

    /* Service Single Specifics */
    .sidebar-page-container {
        padding: 40px 0 !important;
    }

    .service-detail-premium-box {
        padding: 25px 20px !important;
    }

    .service-detail-premium-box .image-box {
        height: 250px !important;
        margin-bottom: 20px !important;
    }

    .service-detail-premium-box h2 {
        font-size: 24px !important;
        margin-bottom: 15px !important;
    }

    .service-detail-premium-box .text {
        font-size: 15px !important;
        line-height: 1.7 !important;
    }

    /* Service Single Specifics - Compact Pill Design */
    .sidebar-page-container {
        padding: 30px 0 !important;
    }

    .sidebar-widget.categories-premium {
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        margin-bottom: 25px !important;
    }

    .categories-premium h3 {
        display: none !important;
    }

    .cat-list {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 10px !important;
        padding: 5px 15px 15px 15px !important;
        margin-left: -15px !important;
        margin-right: -15px !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .cat-list::-webkit-scrollbar {
        display: none;
    }

    .cat-list li {
        margin-bottom: 0 !important;
        flex: 0 0 auto !important;
    }

    .cat-list a {
        padding: 10px 20px !important;
        border-radius: 50px !important;
        font-size: 13px !important;
        white-space: nowrap !important;
        border: 1px solid #eee !important;
        background: #fff !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03) !important;
    }

    .cat-list a i {
        display: none !important;
    }

    .cat-list a.bg-yellow-premium {
        border-color: #f8be14 !important;
        color: #000 !important;
        background: #f8be14 !important;
    }

    .service-detail-premium-box {
        padding: 20px !important;
        box-shadow: none !important;
        border-radius: 15px !important;
    }

    /* Standard order: nav on top is fine when it's just pills */
    .sidebar-page-container .row {
        display: block !important;
    }

    /* Portfolios Page - Ultra Compact Audit (2 columns) */
    .gallery-section {
        padding: 15px 0 !important;
    }

    /* Hide the repetitive description that takes up space on mobile */
    .gallery-section .sec-title .text {
        display: none !important;
    }

    .gallery-section .sec-title h2 {
        font-size: 20px !important;
        margin-bottom: 10px !important;
    }

    .gallery-section .yellow-separator {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Filters: Ensure horizontal scroll and compact pills */
    .portfolio-filter-premium {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 8px !important;
        padding-bottom: 10px !important;
        margin-bottom: 20px !important;
        scrollbar-width: none;
    }

    .portfolio-filter-premium::-webkit-scrollbar {
        display: none;
    }

    .portfolio-filter-premium li {
        flex: 0 0 auto !important;
        padding: 6px 14px !important;
        font-size: 12px !important;
        border-radius: 50px !important;
    }

    /* 2 columns layout to save vertical space */
    .gallery-section .items-container {
        display: flex !important;
        flex-wrap: wrap !important;
        margin-left: -5px !important;
        margin-right: -5px !important;
    }

    .gallery-section .items-container>div {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding-left: 5px !important;
        padding-right: 5px !important;
        margin-bottom: 15px !important;
    }

    .portfolio-card-premium {
        border-radius: 12px !important;
    }

    .portfolio-card-premium .image-box {
        height: 140px !important;
    }

    .portfolio-card-premium .content h3 a {
        font-size: 13px !important;
        line-height: 1.2 !important;
    }

    .portfolio-card-premium .content .tags {
        font-size: 9px !important;
        margin-bottom: 3px !important;
    }

    .portfolio-card-premium .overlay-box {
        padding: 12px !important;
    }

    /* Extra compact Page Titles for mobile - Header Wrap Fix */
    .page-title-premium {
        padding: 105px 0 25px !important;
        /* Heavily increased to fully clear sticky header */
        min-height: auto !important;
        clip-path: none !important;
        background: var(--primary-blue) !important;
    }

    .page-title-premium h1 {
        display: none !important;
        /* Hide redundant giant title */
    }

    .page-title-premium .bread-crumb {
        margin-top: 0 !important;
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        padding: 0 15px !important;
    }

    .page-title-premium .bread-crumb ul {
        background: rgba(255, 255, 255, 0.08) !important;
        padding: 8px 18px !important;
        border-radius: 50px !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0 !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        width: auto !important;
        max-width: 100% !important;
    }

    .bread-crumb ul li {
        font-size: 10.5px !important;
        white-space: nowrap !important;
        display: flex !important;
        align-items: center !important;
        letter-spacing: 0 !important;
    }

    .bread-crumb ul li a {
        font-size: 10.5px !important;
        padding: 2px 0 !important;
    }

    /* Use a smaller separator for mobile to save horizontal space */
    .bread-crumb ul li:not(:last-child)::after {
        content: "›" !important;
        font-family: Arial, sans-serif !important;
        margin: 0 6px !important;
        font-size: 14px !important;
        opacity: 0.5 !important;
        display: inline-block !important;
    }

    /* Portfolios Page - Grid Alignment Fix */
    .gallery-section {
        padding: 20px 0 !important;
    }

    .gallery-section .sec-title .text {
        display: none !important;
    }

    .gallery-section .sec-title h2 {
        font-size: 22px !important;
        margin-bottom: 5px !important;
        text-align: center !important;
    }

    .gallery-section .yellow-separator {
        margin: 0 auto 15px !important;
    }

    /* Clean 2 Columns Grid - Force override plugin styles */
    .gallery-section .items-container {
        display: flex !important;
        flex-wrap: wrap !important;
        margin: 0 -8px !important;
        height: auto !important;
        /* Fix masonry height */
    }

    .gallery-section .items-container>div {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding: 0 8px !important;
        margin-bottom: 16px !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        display: block !important;
    }

    .portfolio-card-premium {
        border-radius: 12px !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
    }

    .portfolio-card-premium .image-box {
        height: 150px !important;
    }

    .portfolio-card-premium .overlay-box {
        padding: 12px 10px !important;
    }

    .portfolio-card-premium .content h3 a {
        font-size: 13px !important;
        line-height: 1.3 !important;
    }

    .portfolio-card-premium .content .tags {
        font-size: 9px !important;
    }

    .portfolio-card-premium .content .blog-read-more {
        display: none !important;
        /* Hide to save space in grid */
    }

    /* Blog Single Audit Fixes */
    .blog-detail-premium {
        padding: 25px 20px !important;
        border-radius: 15px !important;
    }

    .blog-detail-premium .image-box {
        height: 220px !important;
        border-radius: 12px !important;
        margin-bottom: 20px !important;
    }

    .blog-detail-premium h2 {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }

    .article-content {
        font-size: 15px !important;
        line-height: 1.7 !important;
        text-align: left !important;
        /* Better for narrow screens */
    }

    .post-meta {
        gap: 15px !important;
        margin-bottom: 15px !important;
        font-size: 12px !important;
    }

    .latest-news-premium {
        padding: 25px 20px !important;
    }

    /* About Page - Premium Compact Refinement */
    .about-section-premium,
    .why-choose-us,
    .team-section-premium,
    .process-section {
        padding: 35px 0 !important;
    }

    /* Titles: Compact but not tiny */
    .about-title-wrapper h2,
    .why-choose-us .sec-title h2,
    .team-section-premium .sec-title h2,
    .process-section .sec-title h2 {
        font-size: 24px !important;
        margin-bottom: 12px !important;
    }

    /* Re-enable short descriptions with better scaling */
    .team-section-premium .sec-title div[style*="color: #666666"],
    .process-section .sec-title div[style*="color: #666666"] {
        display: block !important;
        font-size: 13px !important;
        line-height: 1.5 !important;
        opacity: 0.8 !important;
    }

    /* Team Members: Compact 2-Column Grid (Rata Kiri) */
    .team-section-premium .row {
        justify-content: flex-start !important;
    }

    .team-section-premium .row>div {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding: 0 6px !important;
    }

    .team-section-premium .blog-card-premium {
        border-radius: 16px !important;
        margin-bottom: 12px !important;
        text-align: left !important;
        background: #002d62 !important;
        /* Deep blue background for better contrast */
    }

    .team-section-premium .blog-image-wrapper {
        height: 190px !important;
        border-radius: 16px !important;
    }

    .team-section-premium .blog-content-premium {
        padding: 12px 10px !important;
        text-align: left !important;
    }

    .team-section-premium .blog-content-premium h3 {
        font-size: 14px !important;
        font-weight: 800 !important;
        margin-bottom: 2px !important;
        text-align: left !important;
        color: #ffffff !important;
        /* Premium white */
    }

    .team-section-premium .blog-content-premium p {
        font-size: 9px !important;
        margin-bottom: 5px !important;
        line-height: 1.2 !important;
        text-transform: uppercase !important;
        /* Tidy premium look */
        letter-spacing: 0.3px !important;
        text-align: left !important;
        color: rgba(255, 255, 255, 0.8) !important;
        /* Subtle white */
        font-weight: 700 !important;
    }

    /* Process Steps: Clean Single Column (REVERT TO LEFT ALIGN) */
    .process-section .row>div {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .process-card-premium {
        padding: 25px 20px !important;
        border-radius: 20px !important;
        margin-bottom: 20px !important;
        text-align: left !important;
    }

    .process-card-premium .process-number {
        margin: 0 auto 15px auto !important;
        /* Balanced centered placement */
    }

    .process-card-premium h4 {
        font-size: 18px !important;
        margin-bottom: 12px !important;
        text-align: center !important;
    }

    .process-card-premium .text-muted {
        font-size: 14.5px !important;
        text-align: justify !important;
        text-justify: inter-word !important;
        line-height: 1.6 !important;
    }

    /* Section Header Refinement */
    .process-section .sec-title h2 {
        font-size: 28px !important;
    }
}

/* Extra small screens fix */
@media (max-width: 480px) {
    .sec-title h2 {
        font-size: 20px !important;
    }

    /* Hero Home Mobile Enhancement */
    .hero-content-box {
        text-align: left !important;
        padding: 0 20px !important;
        margin: 0 !important;
    }

    /* Hide ALL Navigation Elements on Hero & Team Slider Mobile */
    .banner-carousel .owl-nav,
    .team-carousal .owl-nav,
    .team-section-wrapper .nav-container,
    .team-section-wrapper .nav-btn,
    #team-section-root .nav-container,
    .banner-carousel .owl-prev,
    .banner-carousel .owl-next,
    .hero-nav-lines {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .hero-enterprise-style h1 {
        font-size: 32px !important;
        /* Slightly larger for impact */
        margin-bottom: 20px !important;
    }

    .text-description {
        min-height: auto !important;
        margin-bottom: 25px !important;
    }

    .text-description p {
        font-size: 15px !important;
        line-height: 1.5 !important;
        max-width: 100% !important;
        /* Allow full width for left align */
        margin: 0 !important;
        text-align: left !important;
    }

    .hero-cta-group {
        text-align: left !important;
        margin-top: 25px !important;
        padding: 0 !important;
    }

    .btn-whatsapp-hero {
        padding: 16px 36px !important;
        font-size: 15px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important;
        /* Jarak antara icon dan teks */
        margin-left: 0 !important;
    }

    .contact-section {
        padding: 40px 0 !important;
    }

    .contact-section .sec-title h2 {
        font-size: 26px !important;
        margin-bottom: 15px !important;
        text-align: center !important;
    }

    .contact-section .sec-title .rounded {
        margin: 15px auto !important;
        /* Center the yellow line */
    }

    .contact-section .sec-title .text-muted {
        font-size: 13.5px !important;
        text-align: center !important;
        margin-bottom: 30px !important;
        padding: 0 10px !important;
    }

    .contact-section .form-group input,
    .contact-section .form-group textarea {
        font-size: 14px !important;
        padding: 15px !important;
        border-radius: 12px !important;
    }

    .contact-section .btn-premium {
        width: 100% !important;
        justify-content: center !important;
        margin-top: 10px !important;
    }

    /* Info Column */
    .contact-info {
        padding: 0 !important;
        margin-top: 20px !important;
    }

    .contact-info li {
        display: flex !important;
        align-items: center !important;
        /* Center vertically */
        margin-bottom: 15px !important;
        padding: 15px !important;
        /* Reduce card padding for mobile */
        gap: 15px !important;
        /* Consistent spacing */
        background: #fff !important;
        border-radius: 16px !important;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02) !important;
    }

    .contact-info li i {
        background: transparent !important;
        /* Remove circle background */
        min-width: 50px !important;
        /* Slightly wider container for better visual balance */
        height: auto !important;
        /* Auto height */
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 0 !important;
        /* Remove radius */
        font-size: 26px !important;
        /* Optimal size */
        margin-right: 0 !important;
        color: #002d62 !important;
    }

    .contact-info li div {
        flex: 1 !important;
        padding-left: 5px !important;
        /* Slight push for text */
    }

    .contact-info li span {
        font-size: 12px !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        color: #999 !important;
        display: block !important;
        margin-bottom: 2px !important;
        /* Tighter label spacing */
        margin-top: 2px !important;
        /* Slight push down for balance */
    }

    .contact-info li a,
    .contact-info li {
        font-size: 14px !important;
        color: #333 !important;
        line-height: 1.6 !important;
    }

    /* Map Wrapper Mobile */
    .map-wrapper {
        margin: 15px !important;
        /* Side margins to fix width */
        width: auto !important;
        /* Auto width */
        border-radius: 16px !important;
        background: #fff !important;
        /* Card background */
        padding: 5px !important;
        /* Frame padding */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
    }

    .map-wrapper .ratio {
        min-height: 120px !important;
        /* Reduced height */
        border-radius: 12px !important;
        /* Inner radius */
    }
}

/* Ensure map looks good on desktop too*/
@media (min-width: 769px) {
    .map-wrapper {
        margin-top: 30px !important;
        /* Reduced from 50px to pull it up */
    }

    .contact-section .sec-title.left {
        text-align: left !important;
    }
}

/* ==========================================================================
   PORTFOLIO SINGLE PAGE - PREMIUM FIX
   ========================================================================== */

/* Fix spacing between the clipped page-title and the content section below */
.project-details-section {
    padding: 80px 0 100px !important;
    background: #ffffff;
    position: relative;
    z-index: 10;
}

/* Main image: full width, rounded, with shadow */
.project-detail .upper-box figure img {
    width: 100% !important;
    max-height: 550px;
    height: auto !important;
    display: block;
    border-radius: 30px !important;
    box-shadow: 0 30px 70px rgba(0, 46, 110, 0.12) !important;
    object-fit: cover;
}

/* Portfolio Description Styles */
.portfolio-description {
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: #4b5563 !important;
    margin-bottom: 35px !important;
}

.portfolio-description p {
    margin-bottom: 20px !important;
}

/* Sidebar Info Box Styles */
.info-column .sidebar-card {
    background: #ffffff !important;
    border-radius: 28px !important;
    padding: 35px !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04) !important;
}

.info-column .sidebar-card ul li {
    padding: 16px 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 15px;
}

.info-column .sidebar-card ul li:last-child {
    border-bottom: none !important;
}

.info-column .sidebar-card .label-text {
    width: 100px !important;
    min-width: 100px !important;
    font-size: 13px !important;
    color: #9ca3af !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-top: 2px;
}

.info-column .sidebar-card .value-text {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #001f3f !important;
    line-height: 1.4 !important;
}

/* Share Button Style Fixes */
.share-icon-btn {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 18px !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.share-icon-btn:hover {
    transform: scale(1.15) rotate(5deg) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Back Button & Action Buttons */
.portfolio-action-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    margin-top: 40px;
}

.btn-back-portfolio {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 14px 28px !important;
    background: #f3f4f6 !important;
    color: #4b5563 !important;
    border-radius: 100px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    border: none !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.btn-back-portfolio:hover {
    background: #e5e7eb !important;
    color: #1f2937 !important;
    transform: translateX(-5px) !important;
}

.btn-cta-portfolio {
    padding: 14px 32px !important;
    background: #f8be14 !important;
    color: #000000 !important;
    border-radius: 100px !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    box-shadow: 0 8px 25px rgba(248, 190, 20, 0.3) !important;
    border: none !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
}

.btn-cta-portfolio:hover {
    background: #e5af12 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(248, 190, 20, 0.45) !important;
}

/* Category Badge Enhancement */
.category-badge-p {
    display: inline-block;
    background: #004aad;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 16px;
    border-radius: 100px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-right: 8px;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0, 74, 173, 0.2);
}

/* Responsive */
@media (max-width: 767px) {
    .project-details-section {
        padding: 40px 0 60px !important;
    }

    .project-detail .upper-box {
        margin-bottom: 30px !important;
    }

    .project-detail .lower-content h2 {
        font-size: 24px !important;
    }

    .project-detail .lower-content p,
    .project-detail .lower-content .inner-column>div {
        font-size: 14px !important;
    }
}