/* =========================================================================
   LUXETRUE $100K ULTRA-PREMIUM UI ENHANCEMENTS
   A complete visual overhaul overriding the baseline template.
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --clr-def: #D4AF37 !important; /* Premium Real Gold */
    --clr-heading: #070D1F !important; /* Midnight Obsidian */
    --clr-body: #4A5568 !important; /* Premium Slate */
    --clr-bg: #F8F9FA !important; /* Soft warm luxury white */
    
    --font-1: 'Outfit', sans-serif !important;
    --font-2: 'Outfit', sans-serif !important;

    /* Cinematic Gradients */
    --clr-gradient: linear-gradient(135deg, #070D1F 0%, #152243 100%) !important;
    --clr-gradient-2: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%) !important;
    --clr-gradient-fade: linear-gradient(to right, rgba(7,13,31,0.9), rgba(7,13,31,0.7)) !important;
    
    /* Massive, Soft 3D Box Shadows (Apple/Stripe Tier) */
    --box-shadow-1: 0 20px 50px rgba(10, 20, 50, 0.06) !important;
    --box-shadow-hover: 0 40px 80px rgba(10, 20, 50, 0.12), 0 10px 20px rgba(10, 20, 50, 0.08) !important;
    --box-shadow-gold: 0 20px 40px rgba(212, 175, 55, 0.25) !important;
    --box-shadow-gold-hover: 0 30px 60px rgba(212, 175, 55, 0.4) !important;
}

body {
    background-color: var(--clr-bg) !important;
    font-family: var(--font-1) !important;
    letter-spacing: 0.3px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-2) !important;
    color: var(--clr-heading) !important;
    letter-spacing: -1.5px !important;
    font-weight: 800 !important;
}

h2.heading-2, h3.heading-3 {
    line-height: 1.1 !important;
}

/* Force standard paragraphs and lists to be highly visible */
body p,
.about-list li,
.contact-ads span,
.addr-desc p {
    color: #4A5568 !important; /* Hardcoded hex to beat template specificity */
    line-height: 1.8;
}
.about-list li {
    margin-bottom: 15px !important;
}

/* 1. Glassmorphism Navigation */
.header .navbar,
.header {
    background: #ffffff !important;
}

.bsnav-sticky.sticked {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: 0 10px 50px rgba(0,0,0,0.04) !important;
    border-bottom: 1px solid rgba(0,0,0,0.05) !important;
    padding: 15px 0 !important;
    transition: all 0.4s ease !important;
}

.bsnav-sticky .navbar-nav > li > a {
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px !important;
    transition: color 0.3s;
    color: var(--clr-heading) !important;
}

.bsnav-sticky .navbar-nav > li > a:hover {
    color: var(--clr-def) !important;
}

ul.navbar-nav > li.nav-item > a.nav-link {
    color: var(--clr-heading) !important;
}

.header .logo-display span {
    color: var(--clr-heading) !important;
}

/* 2. Ultra-Premium $100k Buttons */
.btn-1, .btn-submit, .btn-circle, .btn-2 {
    background: var(--clr-gradient-2) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 60px !important; /* Maximum pillar pill shape */
    padding: 18px 45px !important;
    box-shadow: var(--box-shadow-gold) !important;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.btn-1::before, .btn-submit::before, .btn-circle::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, #E6C25A 0%, #D4AF37 100%) !important;
    z-index: -1;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.btn-1:hover::before, .btn-submit:hover::before, .btn-circle:hover::before {
    opacity: 1;
}

.btn-1:hover, .btn-submit:hover, .btn-circle:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: var(--box-shadow-gold-hover) !important;
    color: #fff !important;
}

/* 3. $100k Cards & Service Grids Enhancement */
.service-single, .project-single, .about-box, .pricing-box, .blog-single {
    background: #ffffff !important;
    border-radius: 28px !important;
    border: 1px solid rgba(0,0,0,0.01) !important;
    box-shadow: var(--box-shadow-1) !important;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    position: relative;
    overflow: hidden;
    padding: 5px; /* Slight buffer for the image */
}

/* Cinematic Rounding on images inside cards */
.service-single img, .project-single img, .about-right img, .blog-single img {
    border-radius: 24px !important;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.service-single:hover, .project-single:hover, .about-box:hover, .blog-single:hover {
    transform: translateY(-15px) !important;
    box-shadow: var(--box-shadow-hover) !important;
}

.service-single:hover img, .project-single:hover img, .blog-single:hover img {
    transform: scale(1.06) rotate(1deg) !important;
}

/* Card Content Spacing */
.service-single .service-content, .project-single .project-content {
    padding: 30px !important;
}

/* 4. Elegant Forms (Contact & Newsletter) */
.contact-form {
    background: #ffffff !important;
    padding: 50px !important;
    border-radius: 30px !important;
    box-shadow: var(--box-shadow-1) !important;
}

.input-style-2, .form-control {
    background: #F4F7FB !important;
    border: 2px solid transparent !important;
    border-radius: 16px !important;
    padding: 22px 30px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: var(--clr-heading) !important;
    transition: all 0.4s ease !important;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.02) !important;
}

.input-style-2:focus, .form-control:focus {
    background: #ffffff !important;
    border-color: var(--clr-def) !important;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15), inset 0 2px 5px rgba(0,0,0,0.0) !important;
    transform: translateY(-2px);
}

.input-style-2::placeholder {
    color: #718096 !important;
    font-weight: 500 !important;
}

/* 5. Footer $100k Transformation */
.footer {
    background: var(--clr-heading) !important;
    border-top: 5px solid var(--clr-def) !important;
    position: relative;
    padding-top: 100px !important;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 100%;
    background: radial-gradient(circle at 50% 150%, rgba(212,175,55,0.15) 0%, transparent 70%);
    z-index: 0;
}
.footer .container {
    position: relative;
    z-index: 1;
}
.footer-logo h2, .footer-widget-title { 
    color: #fff !important; 
    font-weight: 800 !important;
    letter-spacing: -0.5px !important;
}
.footer-list a { 
    color: #A0AEC0 !important; 
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important; 
    font-weight: 500;
}
.footer-list a:hover { 
    color: var(--clr-def) !important; 
    padding-left: 12px !important; 
}

/* 6. Cinematic Hero Slider Overlays */
.slider-caption h2 {
    font-weight: 900 !important;
    text-shadow: 0 15px 40px rgba(0,0,0,0.6) !important;
    letter-spacing: -3px !important;
    font-size: 80px !important;
    line-height: 1.1 !important;
}
@media (max-width: 768px) {
    .slider-caption h2 {
        font-size: 45px !important;
    }
}
.slider-caption p {
    font-size: 20px !important;
    font-weight: 400 !important;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5) !important;
    margin-bottom: 40px !important;
}

/* 7. Subtle Section Spacing */
.de-padding {
    padding: 140px 0 !important;
}

/* 8. Breadcrumb Banner */
.site-breadcrumb {
    padding: 180px 0 120px !important;
    position: relative;
}
.site-breadcrumb::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--clr-gradient-fade);
    z-index: 1;
}
.site-breadcrumb .container {
    position: relative;
    z-index: 2;
}
.breadcrumb-title {
    font-size: 60px !important;
    font-weight: 900 !important;
    letter-spacing: -2px !important;
}

/* 9. Scroll To Top Button */
#scrtop {
    background: var(--clr-gradient-2) !important;
    box-shadow: var(--box-shadow-gold) !important;
    border-radius: 50% !important;
    height: 55px !important;
    width: 55px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 22px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    color: #fff !important;
    position: fixed !important;
    bottom: 30px !important;
    right: 25px !important;
    z-index: 999 !important;
}
#scrtop:hover {
    transform: translateY(-8px) scale(1.1) !important;
    box-shadow: var(--box-shadow-gold-hover) !important;
}

/* 10. WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 100px; /* Elevated above scroll-top */
    right: 25px;
    width: 55px;
    height: 55px;
    background-color: #25d366; /* WhatsApp Green */
    color: #fff !important;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.whatsapp-float:hover {
    transform: translateY(-8px) scale(1.1);
    background-color: #128c7e;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

/* 11. Modals / Alerts */
.alert-success, .alert-danger {
    border-radius: 16px !important;
    border: none !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
    padding: 25px !important;
}

/* --- HERO TEXT HIGH CONTRAST FIX --- */
.hero-content-desc h2.hero-title,
.slider-caption h2,
.hero-content-desc h1, 
.hero-content-desc h2 {
    color: #ffffff !important;
}

.hero-content-desc p,
.slider-caption p {
    color: rgba(255, 255, 255, 0.95) !important;
}

.hero-content-desc .hero-sub-title,
.slider-caption .hero-sub-title,
.text-grad.hero-sub-title {
    color: var(--clr-def) !important; /* Gold */
    -webkit-text-fill-color: var(--clr-def) !important;
    background: none !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5) !important;
    font-size: 16px !important;
    letter-spacing: 3px !important;
    font-weight: 700 !important;
}

/* --- PURGE TEMPLATE CYAN OVERRIDES --- */

/* Fix Contact Area Cyan Background */
.contact-left {
    background: var(--clr-heading) !important; /* Transform to Midnight Obsidian */
    border-radius: 30px !important;
}
.contact-left::before, .contact-left::after {
    display: none !important; /* Remove any legacy gradient overlays */
}

/* Fix Card Hover Colors */
.service-single:hover, .project-single:hover, .about-box:hover, .blog-single:hover, .pricing-box:hover {
    background-color: #ffffff !important;
}

/* Force only main feature icons and hover overlays to Gold (Avoid checkmarks) */
.service-single:hover i:not([class*='bi-']):not(.trueluxe-icon-gold), 
.service-single:hover .icon, 
.service-single:hover::before, 
.service-single:hover::after,
.project-single:hover i:not([class*='bi-']):not(.trueluxe-icon-gold), 
.project-single:hover .icon, 
.project-single:hover::before, 
.project-single:hover::after {
    background: var(--clr-def) !important;
    color: #ffffff !important;
    border-color: var(--clr-def) !important;
}

/* Fix any remaining cyan buttons or headers */
.text-grad, .text-grad-2 {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* --- ENFORCE CRISP, MINIMALIST $100K CARD HOVER --- */

/* Kill the heavy template background color fade-ins */
.service-single::before, .service-single::after,
.project-single::before, .project-single::after,
.about-box::before, .about-box::after,
.blog-single::before, .blog-single::after,
.pricing-box::before, .pricing-box::after {
    display: none !important;
    background: none !important;
    opacity: 0 !important;
}

/* Force Hover Background to remain crisp white */
.service-single:hover, .project-single:hover, .about-box:hover, .pricing-box:hover, .blog-single:hover {
    background: #ffffff !important;
    background-color: #ffffff !important;
}

/* Force Text to remain in premium unhovered colors */
.service-single:hover h1, .service-single:hover h2, .service-single:hover h3, .service-single:hover h4, 
.service-single:hover h5, .service-single:hover h6,
.project-single:hover h1, .project-single:hover h2, .project-single:hover h3, .project-single:hover h4 {
    color: var(--clr-heading) !important;
}

.service-single:hover p, .project-single:hover p {
    color: var(--clr-body) !important;
}

/* =========================================================================
   YOUTUBE-STYLE VIDEO THUMBNAIL SERVICES GRID
   ========================================================================= */

.yt-service-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
}

.yt-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(10, 20, 50, 0.12);
}

.yt-thumb {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    background: #E2E8F0;
}

.yt-thumb img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.yt-service-card:hover .yt-thumb img {
    transform: scale(1.08);
}

.yt-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(7, 13, 31, 0.5); /* Midnight transparency */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.yt-service-card:hover .yt-overlay {
    opacity: 1;
}

.yt-btn {
    background: var(--clr-def); /* Gold */
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

.yt-service-card:hover .yt-btn {
    transform: translateY(0);
}

.yt-info {
    padding: 25px;
    display: flex;
    gap: 15px;
    flex-grow: 1;
    align-items: flex-start;
}

.yt-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--clr-heading); /* Midnight */
    color: var(--clr-def); /* Gold */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.yt-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.yt-text h4 {
    font-size: 19px !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px !important;
    color: var(--clr-heading) !important;
    margin-bottom: 8px;
    line-height: 1.3;
}

.yt-text p {
    font-size: 15px !important;
    color: var(--clr-body) !important;
    line-height: 1.6;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =========================================================================
   ABOUT SECTION PREMIUMIZATION
   ========================================================================= */

.about-area {
    background-color: #ffffff !important;
}

/* The '15' Huge Number */
.year-value {
    font-size: 15rem !important;
    font-weight: 900 !important;
    line-height: 0.8 !important;
    background: linear-gradient(135deg, var(--clr-def) 0%, #aa841c 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    margin-bottom: 20px !important;
    display: inline-block;
    position: relative;
    letter-spacing: -5px;
}

/* The 'Years of experience' Text */
.year-value .exp {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    -webkit-text-fill-color: var(--clr-heading) !important;
    display: block;
    margin-top: 15px;
    line-height: 1.2 !important;
}

/* Progress Rings Center Text */
.chart span {
    color: var(--clr-heading) !important;
    font-weight: 800 !important;
    font-size: 1.4rem !important;
}

/* Progress Rings Bottom Title */
.progress-box h4 {
    color: var(--clr-heading) !important;
    font-weight: 700 !important;
    margin-top: 25px !important;
    font-size: 18px !important;
}

/* Reset image shadow or strange container properties */
.about-left-pic {
    background: transparent !important;
    box-shadow: none !important;
}

/* =========================================================================
   TEXT VISIBILITY & HIGH CONTRAST FIXES
   ========================================================================= */

/* Hero / Breadcrumb Title Contrast */
.breadcrumb-title {
    color: #ffffff !important;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5) !important;
}

.breadcrumb-menu li, .breadcrumb-menu li a {
    color: #E2E8F0 !important;
}

.breadcrumb-menu li.active {
    color: var(--clr-def) !important; /* Gold */
}

/* Footer Typography Visibility */
.footer p, 
.footer li a, 
.footer-contact-text h5, 
.footer-contact-text p,
.footer-logo p {
    color: #E2E8F0 !important;
}

.footer li a:hover {
    color: var(--clr-def) !important;
}

.footer-widget-title {
    color: #ffffff !important;
}

/* =========================================================================
   MOBILE RESPONSIVENESS OVERRIDES
   ========================================================================= */

@media (max-width: 991px) {
    /* Adjust grid layouts to single column */
    .grid-2 {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        display: grid;
    }
    .about-wpr.grid-2, .contact-wpr.grid-2 {
        grid-template-columns: 1fr !important;
    }
    
    /* Reduce huge paddings */
    .de-padding {
        padding: 80px 0 !important;
    }
    .site-breadcrumb {
        padding: 120px 0 80px !important;
    }
    .footer {
        padding-top: 60px !important;
    }
    
    /* Reduce typography sizes */
    .year-value {
        font-size: 8rem !important;
    }
    .hero-content-desc h2.hero-title, 
    .slider-caption h2 {
        font-size: 36px !important;
    }
    .breadcrumb-title {
        font-size: 40px !important;
    }
    
    /* Button sizes */
    .btn-1, .btn-submit, .btn-circle, .btn-2 {
        padding: 14px 35px !important;
        font-size: 14px !important;
    }
    
    /* Contact Form */
    .contact-form {
        padding: 30px !important;
    }
}

@media (max-width: 767px) {
    /* Global Container Breathing Space */
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    .year-value {
        font-size: 6rem !important;
    }
    /* Hide slider arrows on mobile */
    .swiper-button-next, .swiper-button-prev, .owl-nav {
        display: none !important;
    }

    /* Center and pad hero content */
    .hero-content-desc {
        padding: 0 20px !important;
        text-align: center !important;
    }
    .hero-content-desc h2.hero-title {
        font-size: 28px !important;
        line-height: 1.3 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        margin: 0 auto 15px !important;
    }
    .hero-content-desc p {
        font-size: 14px !important;
        line-height: 1.6 !important;
        white-space: normal !important;
        margin: 0 auto 25px !important;
    }
    .breadcrumb-title {
        font-size: 32px !important;
    }
    .de-padding {
        padding: 60px 0 !important;
    }
    .btn-1, .btn-submit, .btn-circle, .btn-2 {
        padding: 12px 30px !important;
        font-size: 13px !important;
        width: auto !important;
        display: inline-block !important;
    }
    .hero-btn {
        flex-direction: column !important;
        width: 100% !important;
        gap: 15px !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .hero-btn a {
        width: auto !important;
        margin: 0 !important;
        flex-grow: 0 !important;
    }
    .contact-form {
        padding: 20px !important;
        border-radius: 20px !important;
    }
    
    /* Adjust about progress section */
    .progress-wrapper.grid-2 {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .progress-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        margin: 0 auto;
    }
    
    /* Center About Text & Fix Card UI */
    .about-right-up {
        padding: 0 !important;
        margin: 0 !important;
    }
    .about-text-content {
        text-align: center !important;
        margin-top: 20px !important;
        padding: 0 15px !important;
        background: transparent !important;
        box-shadow: none !important;
    }
    .about-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-left: 0 !important;
    }
    
    /* Mobile header logo */
    .header-2 .navbar-brand .logo-display span {
        font-size: 24px !important;
    }
    
    /* Modals scaling */
    .modal-body.p-md-5 {
        padding: 30px !important;
    }
}

/* =========================================================================
   ADDITIONAL UTILITY CLASSES
   ========================================================================= */

.text-grad-2 {
    background: var(--clr-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-premium {
    color: #070D1F !important;
    font-weight: 700;
}



.bg-obsidian {
    background: #070D1F !important;
}

.text-gold {
    color: #D4AF37 !important;
}

.bg-gold {
    background: #D4AF37 !important;
}

.border-gold {
    border: 2px solid #D4AF37 !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.career-path .badge {
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease;
}

.career-path .badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.simple-truth {
    background: rgba(212, 175, 55, 0.05) !important;
}

/* =========================================================================
   $100K PREMIUM SERVICE UI COMPONENTS
   ========================================================================= */


/* 1. Ultra-Premium Glassmorphism Card */
.glass-card-premium {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    border-radius: 32px !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.glass-card-premium:hover {
    transform: translateY(-10px) !important;
    border-color: rgba(212, 175, 55, 0.5) !important;
    box-shadow: 0 40px 80px rgba(212, 175, 55, 0.12) !important;
    background: rgba(255, 255, 255, 0.85) !important;
}

/* 2. Info Tiles (Quick Stats/Features) */
.info-tile-premium {
    padding: 35px !important;
    border-radius: 24px !important;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    transition: all 0.4s ease !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
}

.info-tile-premium:hover {
    box-shadow: 0 20px 45px rgba(10, 20, 50, 0.08) !important;
    transform: translateY(-5px);
}

.tile-icon-wrap {
    width: 70px;
    height: 70px;
    background: var(--clr-heading);
    color: var(--clr-def);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(7, 13, 31, 0.2);
    transition: all 0.4s ease;
}

.info-tile-premium:hover .tile-icon-wrap {
    transform: rotateY(180deg);
    background: var(--clr-def);
    color: #fff;
}

/* 3. Step Roadmap (How it Works) - Robust 4-Column Layout */
.roadmap-container {
    position: relative;
    padding: 60px 0;
    display: flex;
    flex-wrap: wrap;
}

/* Connecting Line */
.roadmap-container::before {
    content: '';
    position: absolute;
    top: 105px; /* Aligned with step-number center */
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.4), transparent);
    z-index: 0;
}

.roadmap-step {
    padding: 20px 15px; /* Reduced for layout stability */
    position: relative;
    z-index: 1;
    height: 100%;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--clr-def);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 2;
    border: 4px solid #fff; /* Separation from line */
}

/* Ensure 4 columns on desktop */
@media (min-width: 992px) {
    .roadmap-container .col-md-3 {
        flex: 0 0 25% !important;
        max-width: 25% !important;
    }
}

/* 4. Luxury Divider */
.luxury-hr {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.3), transparent);
    border: none;
    margin: 60px 0;
}

/* 5. Trust Badges */
.trust-badge-wrap {
    padding: 20px;
    border-radius: 100px;
    background: rgba(7, 13, 31, 0.03);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

/* 6. Text Enhancements */
.text-grad-gold {
    background: var(--clr-gradient-2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.reveal-up {
    animation: revealUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}


@keyframes revealUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================================================
   FINAL OVERRIDES (Lowest in file wins)
   ========================================================================= */

/* 1. Icon Visibility Fix (Resolves "Yellow Squares") */
i.text-grad-2, 
i.text-grad-gold,
span.icon.text-grad-2,
.service-single-list li i,
.about-list li i,
.roadmap-step i,
.trust-badge-wrap i,
.trust-item i {
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    color: var(--clr-def) !important; /* Solid Gold */
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    text-fill-color: initial !important;
}

/* Fix for icons inside buttons - must be white for contrast */
.btn-1 i, .btn-2 i, .btn-circle i, .sb-cta-btn i {
    color: #ffffff !important;
    margin-right: 8px;
    display: inline-block !important;
}

/* 2. Navigation Bar Icon Fix (Resolves Shifting & Broken Symbols) */
.nav-dropdown-menu i, 
.sb-services-drop i {
    background: none !important;
    color: var(--clr-heading) !important;
    display: inline-block !important;
    width: 25px !important;
    text-align: center;
    margin-right: 12px !important;
    vertical-align: middle !important;
    font-size: 16px !important;
    border: none !important;
    padding: 0 !important;
}

.nav-dropdown-menu a:hover i,
.sb-services-drop a:hover i {
    color: var(--clr-def) !important;
}

/* 3. Global Icon Stabilizer (Prevent Flicker) */
i, .icon, [class^="fa-"], [class^="bi-"], .fa-solid {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased !important;
}

/* 4. Nuclear Icon Fix (Solid Only - No Gradients) */
.trueluxe-icon-gold {
    background: transparent !important;
    background-color: transparent !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    color: #D4AF37 !important;
    display: inline-block !important;
    vertical-align: middle !important;
    border: none !important;
    box-shadow: none !important;
    font-style: normal !important;
}

i[class*="bi-"].trueluxe-icon-gold {
    font-size: 1.1em;
}

/* 5. Hero Slider Navigation & Pagination Fixes (Restored) */
.swiper-button-next,
.swiper-button-prev {
    color: #D4AF37 !important; /* Gold Arrows */
    background: rgba(0, 0, 0, 0.3);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
}

/* Responsive Hero Slider Fixes */
@media (max-width: 767px) {
    .hero-title {
        font-size: 32px !important;
        line-height: 1.1 !important;
    }
    .hero-sub-title {
        font-size: 14px !important;
    }
    .hero-single p {
        font-size: 15px !important;
        margin-bottom: 20px !important;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .hero-btn {
        gap: 10px !important;
    }
    .hero-btn .btn-circle,
    .hero-btn .btn-open-demat,
    .hero-btn .btn-whatsapp,
    .hero-btn .btn-border {
        padding: 12px 25px !important;
        font-size: 14px !important;
        margin-right: 5px !important;
        margin-bottom: 10px !important;
    }

    /* Info Cards (Tiles) Mobile Optimization */
    .info-tile-premium {
        padding: 2.5rem 2rem !important; /* Reduced from 35px */
    }

    .info-tile-premium h4 {
        font-size: 1.45rem !important; /* Increased for legibility */
        margin-bottom: 1rem !important;
    }

    .info-tile-premium p.small {
        font-size: 1.05rem !important; /* Increased for readability */
        line-height: 1.6 !important;
        margin-bottom: 1.75rem !important;
    }

    .info-tile-premium ul li {
        font-size: 1.0rem !important; /* Increased for readability */
        margin-bottom: 0.75rem !important;
    }

    /* Button compacting inside cards */
    .info-tile-premium .btn-1 {
        padding: 14px 25px !important; /* Larger touch target */
        font-size: 15px !important; /* Increased for readability */
        border-radius: 60px !important;
        height: auto !important;
        line-height: 1.2 !important;
    }

    .tile-icon-wrap {
        width: 60px !important;
        height: 60px !important;
        font-size: 24px !important;
        margin-bottom: 1.5rem !important;
        border-radius: 15px !important;
    }

    /* Trust Badge Mobile Fix */
    .trust-badge-wrap {
        padding: 10px 20px !important; /* Slimmer pill on mobile */
        width: auto !important;
        max-width: 90% !important;
        justify-content: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        border-radius: 50px !important;
        gap: 10px !important;
    }

    .trust-badge-wrap i {
        font-size: 1.2rem !important;
    }

    .text-premium {
        font-size: 13px !important; /* Increased from 11px */
        letter-spacing: 1.5px !important;
        line-height: 1.4 !important;
        text-align: center !important;
    }
}

/* 6. Hero Slider Navigation & Pagination Fixes */
.swiper-button-next,
.swiper-button-prev {
    color: #D4AF37 !important; /* Gold Arrows */
    background: rgba(0, 0, 0, 0.3);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.5;
    width: 12px !important;
    height: 12px !important;
}

.swiper-pagination-bullet-active {
    background: #D4AF37 !important; /* Gold Bullet */
    opacity: 1;
    width: 30px !important;
    border-radius: 6px !important;
}

.bi-twitter-x::before {
    content: "\f66b" !important;
    font-family: 'bootstrap-icons' !important;
}

/* --- BIRIYANI ORDER DETAILS UI FIX --- */
.trueluxe-status-card {
    background: #ffffff !important;
    border: 1px solid rgba(212, 175, 55, 0.15) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03) !important;
    padding: 2.5rem !important;
    transition: all 0.4s ease;
}

.trueluxe-poster-badge {
    background: var(--clr-heading) !important; /* Midnight Obsidian */
    border-left: 5px solid var(--clr-def) !important; /* Gold side accent */
    border-radius: 12px !important;
    padding: 20px 30px !important;
    box-shadow: 0 15px 35px rgba(7, 13, 31, 0.15) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.trueluxe-poster-badge p {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.trueluxe-poster-badge p span {
    color: var(--clr-def) !important;
    font-weight: 700;
}

/* Ensure icons inside the status card are gold and visible */
.trueluxe-status-card i {
    color: var(--clr-def) !important;
    font-size: 1.25rem;
    margin-right: 12px;
}
