/*
Theme Name: USA Best Window Tinting Premium
Theme URI: https://usabestwindowtinting.com/
Author: Your Agency
Version: 2.0
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    background: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ========== HEADER ========== */
.top-bar {
    background: #1a1a2e;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
}

.top-contact i {
    margin-right: 8px;
    color: #e63946;
}

.free-consult {
    background: #e63946;
    padding: 4px 16px;
    border-radius: 30px;
    font-weight: 600;
}

/* Main Header */
.main-header {
    background: #f6f5f3;
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 200px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: #1a1a2e;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2563eb;
}

.quote-btn {
    background: #2563eb;
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 40px;
    transition: all 0.3s ease;
}

.quote-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* ========== HERO SECTION (Reference Style) ========== */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #2563eb;
}

.hero p {
    font-size: 18px;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 50px 0 30px;
    flex-wrap: wrap;
}

.badge {
    text-align: center;
}

.badge .number {
    font-size: 36px;
    font-weight: 800;
    color: #2563eb;
}

.badge .label {
    font-size: 14px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons Group */
.btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid #2563eb;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2563eb;
    color: #fff;
    transform: translateY(-3px);
}

/* ========== SERVICES SECTION (Cards) ========== */
.services {
    padding: 80px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card .content {
    padding: 30px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 20px;
}

.service-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 12px;
}

/* ========== BENEFITS SECTION (Grid with Icons) ========== */
.benefits {
    background: #f8fafc;
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 48px;
    color: #2563eb;
    margin-bottom: 20px;
}

.benefit-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* ========== FOOTER ========== */
.footer {
    background: #1a1a2e;
    color: #cbd5e1;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #2563eb;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    background: rgba(255, 255, 255, 0.1);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #2563eb;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {

    .services-grid,
    .benefits-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 32px;
    }

    .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .trust-badges {
        gap: 25px;
    }
}




/* ==============================================
   PREMIUM UPDATES - Reference Website Style
   ============================================== */

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.badge {
    text-align: center;
}

.badge-number {
    font-size: 32px;
    font-weight: 800;
    color: #2563eb;
}

.badge-label {
    font-size: 14px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Grid - 2 Cards */
.services-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card.premium {
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.service-card.premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

.service-card.premium .service-image {
    height: 240px;
    background-size: cover;
    background-position: center;
}

.service-card.premium .service-content {
    padding: 30px;
}

.service-card.premium h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
    transition: all 0.3s;
}

.service-link:hover {
    color: #1d4ed8;
    transform: translateX(5px);
}

/* Benefits Section */
.benefits {
    background: #f8fafc;
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-item {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 20px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.benefit-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Comfort Section */
.comfort-section {
    padding: 80px 0;
    text-align: center;
    background: #fff;
}

.comfort-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.comfort-content p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 25px;
}

.btn-outline {
    background: #F7DC6F;
    color: #2563eb;
    border: 2px solid #2563eb;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-outline:hover {
    background: #2563eb;
    color: #fff;
    transform: translateY(-2px);
}

/* Footer Premium */
.site-footer {
    background: #1a1a2e;
    color: #cbd5e1;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #2563eb;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    background: rgba(255, 255, 255, 0.1);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #2563eb;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {

    .services-grid-2,
    .benefits-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        gap: 25px;
    }

    .hero-content h1 {
        font-size: 32px;
    }
}



/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/*.back-to-top.show {*/
/*    opacity: 1;*/
/*    visibility: visible;*/
/*}*/

.back-to-top:hover {
    background: #1d4ed8;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* Sticky Header Effect */
.main-header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Mobile Menu Button */
.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #2563eb;
}

@media (max-width: 992px) {
    .mobile-toggle {
        display: block;
    }

    .main-nav .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .main-nav .nav-menu.active {
        display: flex;
    }
}


/* ==============================================
   VIDEO HERO SECTION
   ============================================== */

.hero-video {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-video .container {
    position: relative;
    z-index: 2;
}

.hero-video .hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.logo-badge {
    margin-bottom: 30px;
}

.logo-badge img {
    max-height: 60px;
    width: auto;
    margin-bottom: 10px;
}

.formerly {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 0.8;
    color: #fff;
}

.hero-video h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.hero-video h1 span {
    color: #2563eb;
}

.hero-video .hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #fff;
}

/* Trust Badges Section */
.trust-badges-section {
    padding: 40px 0;
    background: #f8fafc;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background: #fff;
}

.services-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 240px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 30px;
}

.service-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
    transition: all 0.3s;
}

.service-link:hover {
    color: #1d4ed8;
    transform: translateX(5px);
}

/* Comfort Section */
.comfort-section {
    padding: 80px 0;
    background: #f8fafc;
    text-align: center;
}

.comfort-content {
    max-width: 900px;
    margin: 0 auto;
}

.comfort-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.comfort-content p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 30px;
    line-height: 1.8;
}

.comfort-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-item {
    background: #f8fafc;
    padding: 30px 20px;
    text-align: center;
    border-radius: 20px;
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.benefit-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.cta-phone {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 600;
}

.cta-phone i {
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-video h1 {
        font-size: 32px;
    }

    .services-grid-2,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        gap: 25px;
    }

    .comfort-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-video .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-group .btn-primary,
    .btn-group .btn-secondary {
        display: block;
        width: 80%;
        margin: 10px auto;
    }
}


/* =========================================
   PREMIUM HERO HOVER + CLIENT-PLEASING STYLE
   ========================================= */

/* Hero Section with Video Background */
.hero-video {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.video-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.8s ease;
}

/* Premium zoom effect on hover */
.hero-video:hover .video-background video {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.35));
}

.hero-video .container {
    position: relative;
    z-index: 2;
}

.hero-video .hero-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Main Heading */
.hero-video h1 {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -1px;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
}

/* Stylish hover effect only */
.hero-video h1:hover {
    transform: translateY(-4px);
    text-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

/* Highlighted word */
.hero-video h1 span {
    color: #2f6df6;
    position: relative;
    display: inline-block;
    transition: all 0.4s ease;
}

/* Stylish span hover */
.hero-video h1 span:hover {
    color: #4f83ff;
    transform: scale(1.03);
}

/* Subtitle */
.hero-video .hero-subtitle {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.92);
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    transition: 0.3s;
}

/* Soft hover */
.hero-video .hero-subtitle:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Button Group */
.hero-video .btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Premium Primary Button */
.hero-video .btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    padding: 18px 38px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
    transition: all 0.35s ease;
}

/* Primary hover */
.hero-video .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(37, 99, 235, 0.35);
}

/* Premium Secondary Button */
.hero-video .btn-secondary {
    background: transparent;
    color: #fff;
    padding: 18px 38px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.85);
    transition: all 0.35s ease;
}

/* Secondary hover */
.hero-video .btn-secondary:hover {
    background: #fff;
    color: #111;
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(255, 255, 255, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-video h1 {
        font-size: 36px;
    }

    .hero-video .hero-subtitle {
        font-size: 17px;
    }

    .hero-video .btn-group {
        flex-direction: column;
        align-items: center;
    }
}

/* ==============================================
   FORCE REMOVE ALL HEADER GAPS (TOP & BOTTOM)
   ============================================== */

/* Top Bar - Minimum Height */
.top-bar {
    padding: 4px 0 !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    min-height: auto !important;
}

.top-bar .container {
    padding: 0 20px !important;
    margin: 0 !important;
}

/* Main Header - Zero Padding/Margin */
.main-header {
    padding: 0 !important;
    margin: 0 !important;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.main-header .container {
    padding: 0 20px !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Logo - Remove ALL Gaps */
.logo {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
    font-size: 0 !important;
}

.logo a {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
    display: inline-block !important;
}

.logo img {
    max-height: 100px !important;
    /* BARA LOGO - chota nahi karna */
    width: auto !important;
    margin: 10 !important;
    padding: 10 !important;
    display: block !important;

}

/* Navigation Menu - Align Properly */
.nav-menu {
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-menu li {
    margin: 0 !important;
    padding: 0 !important;
}

.nav-menu li a {
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
}

/* Quote Button - Center Align */
.quote-btn {
    margin: 0 !important;
    padding: 8px 20px !important;
    line-height: 2 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 22px !important;
}


/* Trust Badges Hover Effects */
.badge {
    transition: all 0.3s ease;
    cursor: pointer;
}

.badge:hover {
    transform: translateY(-5px);
}

.badge img {
    max-height: 65px;
    width: auto;
    display: block;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.badge:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 15px rgba(37, 99, 235, 0.3));
}

.badge-number {
    font-size: 26px;
    font-weight: 800;
    color: #2563eb;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.badge:hover .badge-number {
    color: #1d4ed8;
}

.badge-label {
    font-size: 13px;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.badge:hover .badge-label {
    color: #2563eb;
}

/* Navigation Menu Styles */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: #1a1a2e;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: #2563eb;
}

/* Mobile Menu */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }
}

/* ==============================================
   NAVBAR LINKS - PREMIUM HOVER EFFECTS
   ============================================== */

.nav-menu li a {
    position: relative;
    text-decoration: none;
    color: #1a1a2e;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 0;
    transition: color 0.3s ease;
}

/* Hover Effect: Color Change + Shadow */
.nav-menu li a:hover {
    color: #2563eb;
    text-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

/* Animated Underline (Reference Style) */
.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* Active Menu Item (Current Page) */
.nav-menu li.current-menu-item a,
.nav-menu li.current-page-item a {
    color: #2563eb;
}

.nav-menu li.current-menu-item a::after,
.nav-menu li.current-page-item a::after {
    width: 100%;
    background: #2563eb;
}

/* Box Shadow on Hover (Optional - Card Effect) */
.nav-menu li a:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* For Desktop: Add slight scale on hover */
@media (min-width: 992px) {
    .nav-menu li a:hover {
        transform: translateY(-2px);
    }
}

/* ==============================================
   PREMIUM SERVICES SECTION (Reference Style)
   ============================================== */

.premium-services {
    padding: 80px 0;
    background: #f8fafc;
}

.premium-header {
    text-align: center;
    margin-bottom: 50px;
}

.premium-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.premium-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    border-radius: 3px;
}

.premium-header p {
    font-size: 18px;
    color: #4b5563;
    max-width: 600px;
    margin: 20px auto 0;
}

/* Services Grid */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Premium Card */
.premium-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.premium-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15);
}

/* Card Image */
.card-image {
    height: 260px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.premium-card:hover .card-image img {
    transform: scale(1.05);
}

/* Card Content */
.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.card-content p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0px;
    transition: all 0.3s;

}

.service-link:hover {
    color: #1d4ed8;
    gap: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .premium-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .premium-header h2 {
        font-size: 28px;
    }

    .card-image {
        height: 200px;
    }

    .card-content {
        padding: 20px;
    }
}


/* Premium Heading - BOLD + LONG SHADOW Effect */
.premium-header h2 {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a1a2e;
    position: relative;
    display: inline-block;
    /* Long Shadow Effect */
    text-shadow:
        1px 1px 0 #cbd5e1,
        2px 2px 0 #cbd5e1,
        3px 3px 0 #cbd5e1,
        4px 4px 0 #cbd5e1,
        5px 5px 0 #cbd5e1,
        6px 6px 0 #cbd5e1,
        7px 7px 0 #cbd5e1,
        8px 8px 0 #cbd5e1,
        9px 9px 0 #cbd5e1,
        10px 10px 0 #cbd5e1,
        11px 11px 0 #cbd5e1,
        12px 12px 0 #cbd5e1,
        13px 13px 0 rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

/* Hover effect - Shadow aur bhi long ho jaye */
.premium-header h2:hover {
    text-shadow:
        1px 1px 0 #cbd5e1,
        2px 2px 0 #cbd5e1,
        3px 3px 0 #cbd5e1,
        4px 4px 0 #cbd5e1,
        5px 5px 0 #cbd5e1,
        6px 6px 0 #cbd5e1,
        7px 7px 0 #cbd5e1,
        8px 8px 0 #cbd5e1,
        9px 9px 0 #cbd5e1,
        10px 10px 0 #cbd5e1,
        11px 11px 0 #cbd5e1,
        12px 12px 0 #cbd5e1,
        13px 13px 0 #cbd5e1,
        14px 14px 0 #cbd5e1,
        15px 15px 0 #cbd5e1,
        16px 16px 0 #cbd5e1,
        17px 17px 0 #cbd5e1,
        18px 18px 0 #cbd5e1,
        19px 19px 0 #cbd5e1,
        20px 20px 0 rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}



/* ==============================================
   RESIDENTIAL PAGE STYLES (REFERENCE LOOK)
   ============================================== */

/* Hero Section */
.residential-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    padding: 60px 0;
    text-align: center;
}

.residential-hero .hero-icon {
    margin-bottom: 20px;
}

.residential-hero .hero-icon img {
    max-height: 60px;
    width: auto;
}

.residential-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.residential-hero p {
    font-size: 18px;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Watch Video */
.watch-video {
    padding: 40px 0;
    background: #fff;
}

.video-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-wrapper img {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    transition: all 0.3s;
}

.play-button:hover {
    background: #2563eb;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Difference Section */
.difference {
    padding: 60px 0;
    background: #f8fafc;
    text-align: center;
}

.difference h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.difference p {
    max-width: 800px;
    margin: 0 auto 30px;
    color: #4b5563;
}

.feature-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.feature {
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-weight: 600;
}

/* Approach Steps */
.approach {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.step {
    background: #f8fafc;
    padding: 20px 30px;
    border-radius: 16px;
    text-align: left;
    max-width: 250px;
}

.step span {
    background: #2563eb;
    color: white;
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

/* Film Type Sections (Solar, Decorative, Security) */
.film-type {
    padding: 60px 0;
    border-bottom: 1px solid #e2e8f0;
}

.film-type.alt {
    background: #f8fafc;
}

.film-type .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.film-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.film-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.film-content .issue {
    background: #e2e8f0;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    margin: 20px 0;
}

/* Why Homeowners Love */
.why-love {
    padding: 60px 0;
    text-align: center;
    background: #fff;
}

.youtube-placeholder {
    max-width: 600px;
    margin: 30px auto 0;
    position: relative;
    cursor: pointer;
}

.youtube-placeholder img {
    width: 100%;
    border-radius: 20px;
}

.play-text {
    margin-top: 15px;
    font-weight: 600;
    color: #2563eb;
}

/* Savings Stats */
.savings-stats {
    background: #1a1a2e;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.savings-stats h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stats div {
    font-size: 18px;
}

.stats strong {
    font-size: 48px;
    display: block;
    font-weight: 800;
}

/* Benefits Grid */
.benefits-full {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    background: #f8fafc;
    padding: 25px 20px;
    border-radius: 20px;
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

/* Recent Projects */
.recent-projects {
    padding: 60px 0;
    background: #f8fafc;
    text-align: center;
}

/* Final CTA */
.final-cta-resi {
    padding: 60px 0;
    text-align: center;
    background: #fff;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* Homeowner Stats */
.homeowner-stats {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 50px 0;
    text-align: center;
}

.homeowner-stats .container {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.homeowner-stats span {
    font-size: 48px;
    font-weight: 800;
    display: block;
}

/* Testimonial */
.testimonial {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial p {
    font-style: italic;
    color: #4b5563;
    line-height: 1.8;
}

/* FAQ */
.faq {
    background: #f8fafc;
    padding: 60px 0;
}

.faq .container {
    max-width: 800px;
}

.faq-q {
    background: white;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-q strong {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
}

/* Bottom CTA */
.bottom-cta {
    padding: 50px 0;
    text-align: center;
    background: #fff;
}

.bottom-cta .btn-primary,
.bottom-cta .btn-secondary {
    margin: 0 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .film-type .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .feature-list {
        flex-direction: column;
        align-items: center;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .homeowner-stats .container {
        flex-direction: column;
        gap: 30px;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .residential-hero h1 {
        font-size: 32px;
    }
}


/* ==============================================
   PREMIUM H1 HEADING - BOLD + LONG SHADOW EFFECT
   (As requested by client)
   ============================================== */

h1 {
    font-size: 56px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a1a2e;
    position: relative;
    display: inline-block;
    /* Long Shadow Effect */
    text-shadow:
        1px 1px 0 #cbd5e1,
        2px 2px 0 #cbd5e1,
        3px 3px 0 #cbd5e1,
        4px 4px 0 #cbd5e1,
        5px 5px 0 #cbd5e1,
        6px 6px 0 #cbd5e1,
        7px 7px 0 #cbd5e1,
        8px 8px 0 #cbd5e1,
        9px 9px 0 #cbd5e1,
        10px 10px 0 #cbd5e1,
        11px 11px 0 #cbd5e1,
        12px 12px 0 #cbd5e1,
        13px 13px 0 rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

/* Hover effect - Shadow aur bhi long ho jaye */
h1:hover {
    text-shadow:
        1px 1px 0 #cbd5e1,
        2px 2px 0 #cbd5e1,
        3px 3px 0 #cbd5e1,
        4px 4px 0 #cbd5e1,
        5px 5px 0 #cbd5e1,
        6px 6px 0 #cbd5e1,
        7px 7px 0 #cbd5e1,
        8px 8px 0 #cbd5e1,
        9px 9px 0 #cbd5e1,
        10px 10px 0 #cbd5e1,
        11px 11px 0 #cbd5e1,
        12px 12px 0 #cbd5e1,
        13px 13px 0 #cbd5e1,
        14px 14px 0 #cbd5e1,
        15px 15px 0 #cbd5e1,
        16px 16px 0 #cbd5e1,
        17px 17px 0 #cbd5e1,
        18px 18px 0 #cbd5e1,
        19px 19px 0 #cbd5e1,
        20px 20px 0 rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Responsive ke liye adjust */
@media (max-width: 768px) {
    h1 {
        font-size: 36px;
        text-shadow:
            1px 1px 0 #cbd5e1,
            2px 2px 0 #cbd5e1,
            3px 3px 0 #cbd5e1,
            4px 4px 0 #cbd5e1,
            5px 5px 0 #cbd5e1,
            6px 6px 0 #cbd5e1,
            7px 7px 0 #cbd5e1,
            8px 8px 0 #cbd5e1;
    }
}

/* Optional: H2, H3 bhi same effect chahiye to ye bhi add karo */
h2 {
    font-size: 38px;
    font-weight: 800;
    text-shadow: 1px 1px 0 #e2e8f0, 2px 2px 0 #e2e8f0, 3px 3px 0 #e2e8f0, 4px 4px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

h2:hover {
    transform: translateY(-1px);
    text-shadow: 1px 1px 0 #e2e8f0, 2px 2px 0 #e2e8f0, 3px 3px 0 #e2e8f0, 4px 4px 0 #e2e8f0, 5px 5px 0 rgba(0, 0, 0, 0.08);
}




/* =========================================
   Residential Hero Section with Your Image
========================================= */

/* =========================================
   Residential Hero Section with Correct Background Path
========================================= */

.residential-hero {
    position: relative;
    width: 100%;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 110px 20px;

    /* FIXED IMAGE PATH FOR HOSTINGER */
    background: url('/wp-content/themes/usabestwindowtinting-theme/assets/images/residential-hero-badge.png') center center/cover no-repeat !important;

    overflow: hidden;
}

/* Dark overlay for text visibility */
.residential-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(20, 40, 70, 0.35);
    z-index: 1;
}

/* Content */
.residential-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

/* Hero H1 */
.residential-hero h1 {
    font-size: 72px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 20px;

    /* Global h1 shadow remove only here */
    text-shadow: none !important;
    transform: none !important;

    white-space: nowrap;
    display: block;
}

.residential-hero h1:hover {
    text-shadow: none !important;
    transform: none !important;
}

/* Paragraph */
.residential-hero p {
    font-size: 24px;
    line-height: 1.7;
    color: #ffffff;
    max-width: 850px;
    margin: 0 auto 40px;
    font-weight: 400;
}

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

/* Primary Button */
.btn-primary {
    display: inline-block;
    background: #2563eb;
    color: #F7DC6F;
    padding: 18px 42px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s;
    border: none;
}

.btn-primary:hover {
    background: #1d4ed8;
    color: #ffffff;
}

/* Secondary Button */
.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    padding: 18px 42px;
    border: 2px solid #ffffff;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #111;
}

/* Responsive */
@media (max-width: 991px) {
    .residential-hero h1 {
        font-size: 48px;
        white-space: normal;
    }

    .residential-hero p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .residential-hero {
        min-height: 500px;
        padding: 80px 20px;
    }

    .residential-hero h1 {
        font-size: 34px;
        white-space: normal;
    }

    .residential-hero p {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}


/* Section */
.watch-video {
    padding: 80px 0;
}

/* Thumbnail Wrapper */
.video-wrapper {
    position: relative;
    max-width: 1100px;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.video-wrapper img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

/* Play Button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 40px;
    padding: 20px 28px;
    border-radius: 50%;
    transition: 0.3s;
}

.video-wrapper:hover .play-button {
    background: #2563eb;
}

/* Modal */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.video-modal video {
    width: 90%;
    max-width: 1000px;
    max-height: 80vh;
}

/* Close button */
.close-video {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* =========================================
   Remove shadow only from Savings Stats H2
========================================= */

.savings-stats h2 {
    text-shadow: none !important;
    color: #ffffff;
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.3;
}

/* hover shadow bhi remove */
.savings-stats h2:hover {
    text-shadow: none !important;
    transform: none;
}

/* =========================================
   Final CTA Section - Premium Button Styling
========================================= */

.final-cta-resi {
    padding: 100px 0;
    background: #f7f8fc;
    text-align: center;
}

.final-cta-resi h2 {
    font-size: 58px;
    font-weight: 800;
    color: #0f172a;
    text-shadow: none !important;
    margin-bottom: 25px;
    line-height: 1.2;
}

.final-cta-resi h2:hover {
    text-shadow: none !important;
    transform: none;
}

.final-cta-resi p {
    max-width: 950px;
    margin: 0 auto 45px;
    font-size: 24px;
    line-height: 1.8;
    color: #334155;
}

/* Buttons Row */
.final-cta-resi .cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* First Premium Blue Button */
.final-cta-resi .btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff !important;
    padding: 22px 42px;
    border-radius: 60px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
    transition: all 0.3s ease;
    display: inline-block;
}

.final-cta-resi .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(37, 99, 235, 0.35);
}

/* Second Premium White Button */
.final-cta-resi .btn-secondary {
    background: #ffffff;
    color: #111827 !important;
    padding: 22px 42px;
    border-radius: 60px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #dbeafe;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: inline-block;
}

.final-cta-resi .btn-secondary:hover {
    transform: translateY(-3px);
    border-color: #2563eb;
    color: #2563eb !important;
}

/* Responsive */
@media (max-width: 768px) {
    .final-cta-resi h2 {
        font-size: 38px;
    }

    .final-cta-resi p {
        font-size: 18px;
    }

    .final-cta-resi .btn-primary,
    .final-cta-resi .btn-secondary {
        width: 100%;
        text-align: center;
        font-size: 16px;
        padding: 18px 20px;
    }
}

/* =========================================
   Bottom CTA Section - Button Fix + Premium Style
========================================= */

.bottom-cta {
    padding: 80px 0;
    background: #f8fafc;
    text-align: center;
}

/* buttons wrapper */
.bottom-cta .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Primary Blue Button */
.bottom-cta .btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    color: #ffffff !important;
    padding: 22px 42px;
    border-radius: 60px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    border: none;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
    transition: all 0.3s ease;
}

.bottom-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(37, 99, 235, 0.35);
}

/* Secondary White Button */
.bottom-cta .btn-secondary {
    background: #ffffff !important;
    color: #111827 !important;
    padding: 22px 42px;
    border-radius: 60px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    border: 2px solid #dbeafe;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.bottom-cta .btn-secondary:hover {
    transform: translateY(-3px);
    border-color: #2563eb;
    color: #2563eb !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .bottom-cta .container {
        flex-direction: column;
    }

    .bottom-cta .btn-primary,
    .bottom-cta .btn-secondary {
        width: 100%;
        max-width: 350px;
        font-size: 16px;
        padding: 18px 20px;
        text-align: center;
    }
}

/* =========================================
   FAQ Section Premium Styling + Hover Effect
========================================= */

.faq {
    padding: 100px 0;
    background: #f8fafc;
}

.faq h2 {
    text-align: center;
    font-size: 52px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 50px;
    text-shadow: none !important;
}

.faq h2:hover {
    text-shadow: none !important;
    transform: none;
}

/* FAQ Card */
.faq-q {
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid #edf2f7;
    transition: all 0.35s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Left blue hover line */
.faq-q::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(180deg, #2563eb, #1d4ed8);
    transition: 0.35s ease;
    border-radius: 20px 0 0 20px;
    z-index: 0;
}

/* Hover Effect */
.faq-q:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.08);
    border-color: #dbeafe;
}

.faq-q:hover::before {
    width: 6px;
}

/* Question */
.faq-q strong {
    display: block;
    font-size: 30px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

/* Answer */
.faq-q p {
    font-size: 24px;
    line-height: 1.8;
    color: #475569;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .faq {
        padding: 70px 0;
    }

    .faq h2 {
        font-size: 36px;
        margin-bottom: 35px;
    }

    .faq-q {
        padding: 25px;
        border-radius: 16px;
    }

    .faq-q strong {
        font-size: 22px;
    }

    .faq-q p {
        font-size: 17px;
        line-height: 1.6;
    }
}

/* Hero section ke h1 ka hover effect band */
.hero-video h1,
.hero-video h1:hover {
    transform: none !important;
    text-shadow: none !important;
    transition: none !important;
}

/* Agar span par bhi effect aa raha ho */
.hero-video h1 span,
.hero-video h1 span:hover {
    text-shadow: none !important;
    transform: none !important;
}

/* Hero subtitle bhi clean rahe */
.hero-video .hero-subtitle,
.hero-video .hero-subtitle:hover {
    text-shadow: none !important;
    transform: none !important;
}

/* Buttons par unnecessary hover shadow remove */
.hero-video .btn-primary:hover,
.hero-video .btn-secondary:hover {
    transform: translateY(-2px);
    /* slight premium hover only */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* CTA Section - h2 hover effect band */
.cta-section h2,
.cta-section h2:hover {
    text-shadow: none !important;
    transform: none !important;
    transition: none !important;
}

/* CTA paragraph clean */
.cta-section p,
.cta-section p:hover {
    text-shadow: none !important;
    transform: none !important;
}

/* Button hover simple premium only */
.cta-section .btn-primary,
.cta-section .btn-primary:hover {
    text-shadow: none !important;
}

/* Agar global h2 hover effect strong hai to ye bhi add karo */
.cta-section h2::before,
.cta-section h2::after {
    display: none !important;
}

/* =========================================
   FAQ SECTION – ULTRA PREMIUM CLIENT STYLE
   Hover Shadow + Glass Effect + Less Height
========================================= */

.faq {
    padding: 60px 0;
    /* height kam */
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.faq h2 {
    text-align: center;
    font-size: 46px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 35px;
    /* spacing kam */
    letter-spacing: -1px;
    text-shadow: none !important;
    position: relative;
}

/* Stylish underline */
.faq h2::after {
    content: "";
    width: 90px;
    height: 4px;
    background: linear-gradient(to right, #2563eb, #60a5fa);
    display: block;
    margin: 14px auto 0;
    border-radius: 50px;
}

/* FAQ CARD */
.faq-q {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    padding: 28px 34px;
    /* height kam */
    border-radius: 22px;
    margin-bottom: 22px;

    border: 1px solid rgba(255, 255, 255, 0.7);

    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);

    transition: all 0.45s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Premium glowing left bar */
.faq-q::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 5px;
    height: calc(100% - 40px);
    background: linear-gradient(180deg,
            #2563eb,
            #3b82f6,
            #60a5fa);
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.18);
}

/* Soft shine effect */
.faq-q::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.35),
            transparent);
    transition: 0.8s;
}

/* PREMIUM HOVER */
.faq-q:hover {
    transform: translateY(-8px) scale(1.01);

    box-shadow:
        0 20px 45px rgba(37, 99, 235, 0.08),
        0 8px 18px rgba(15, 23, 42, 0.05);

    border-color: #dbeafe;
}

/* shine move */
.faq-q:hover::after {
    left: 130%;
}

/* left line stronger */
.faq-q:hover::before {
    width: 8px;
    box-shadow: 0 0 28px rgba(37, 99, 235, 0.28);
}

/* Question */
.faq-q strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.5;
    position: relative;
    z-index: 2;
    transition: 0.3s;
}

.faq-q:hover strong {
    color: #1d4ed8;
}

/* Answer */
.faq-q p {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin: 0;
    position: relative;
    z-index: 2;
    transition: 0.3s;
}

.faq-q:hover p {
    color: #334155;
}

/* Responsive */
@media (max-width: 768px) {
    .faq {
        padding: 45px 0;
    }

    .faq h2 {
        font-size: 34px;
        margin-bottom: 28px;
    }

    .faq-q {
        padding: 22px;
        border-radius: 18px;
    }

    .faq-q strong {
        font-size: 19px;
    }

    .faq-q p {
        font-size: 15px;
        line-height: 1.6;
    }
}

/* ==============================================
   COMMERCIAL PAGE STYLES
   ============================================== */

.commercial-hero {
    min-height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

.commercial-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.commercial-hero .container {
    position: relative;
    z-index: 2;
    color: white;
}

.commercial-hero h1 {
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.top-choice {
    text-align: center;
    padding: 50px 0;
    background: #f8fafc;
}

.choice-badge {
    background: #2563eb;
    color: white;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 15px;
}

.help-line {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
}

.quote-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    text-align: center;
}

.quote-note {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 15px;
}

.transform-business {
    padding: 60px 0;
    text-align: center;
}

.client-logos .logo-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.benefits-list {
    background: #f8fafc;
    padding: 60px 0;
}

.benefits-grid-2col {
    display: flex;
    gap: 60px;
    justify-content: center;
    margin-top: 30px;
}

.benefits-grid-2col ul {
    list-style: none;
}

.benefits-grid-2col li {
    margin-bottom: 12px;
}

.benefits-grid-2col li i {
    color: #2563eb;
    margin-right: 10px;
}

.approach-section {
    padding: 60px 0;
    text-align: center;
}

.approach-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.approach-steps .step {
    background: #f8fafc;
    padding: 25px;
    border-radius: 20px;
    width: 220px;
}

.approach-steps .step span {
    background: #2563eb;
    color: white;
    width: 40px;
    height: 40px;
    display: inline-block;
    line-height: 40px;
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 15px;
}

.services-grid-section {
    padding: 60px 0;
    background: #fff;
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card-commercial {
    background: #f8fafc;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
}

.service-card-commercial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.film-detail {
    padding: 60px 0;
    background: #f8fafc;
}

.film-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.film-detail-image img {
    width: 100%;
    border-radius: 20px;
}

.commercial-benefits-full {
    padding: 60px 0;
    text-align: center;
}

.benefits-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefits-grid-3col .benefit {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.leed-section {
    background: #1a1a2e;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.leed-benefits {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.leed-benefits span {
    background: #2563eb;
    padding: 8px 20px;
    border-radius: 30px;
}

.who-we-work {
    padding: 60px 0;
    text-align: center;
}

.client-types {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.client-types span {
    background: #f8fafc;
    padding: 10px 25px;
    border-radius: 40px;
    font-weight: 500;
}

.faq-commercial {
    background: #f8fafc;
    padding: 60px 0;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 16px;
}

.final-cta-commercial {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

@media (max-width: 768px) {

    .service-cards-grid,
    .benefits-grid-3col,
    .film-detail-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid-2col {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* navbar link */
/* ========================================
   PREMIUM GLASSMORPHISM NAVBAR STYLE
   FULL UPDATED VERSION
======================================== */

/* MAIN HEADER */
.main-header {
    background: #ffffff;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo img,
.custom-logo {
    max-height: 70px;
    transition: 0.4s ease;
}

.logo:hover img,
.logo:hover .custom-logo {
    transform: scale(1.06);
}

/* NAVBAR BOX */
.main-nav {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 14px 28px;
    border-radius: 60px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

/* NAV MENU */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* MENU ITEM */
.nav-menu li {
    position: relative;
}

/* BASE LINK STYLE */
.nav-menu li a {
    display: inline-block;
    padding: 14px 22px 22px;
    /* neeche underline ke liye extra space */
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.35s ease;
    position: relative;
    letter-spacing: 0.5px;
    line-height: 1;
}

/* ========================================
   DIFFERENT COLORS FOR EACH NAV ITEM
======================================== */

.nav-menu li:nth-child(1) a {
    color: #2563eb;
    /* Commercial */
}

.nav-menu li:nth-child(2) a {
    color: #16a34a;
    /* Residential */
}

.nav-menu li:nth-child(3) a {
    color: #7c3aed;
    /* Solutions */
}

.nav-menu li:nth-child(4) a {
    color: #ea580c;
    /* Resources */
}

.nav-menu li:nth-child(5) a {
    color: #db2777;
    /* Company */
}

.nav-menu li:nth-child(6) a {
    color: #0891b2;
    /* Contact */
}

/* ========================================
   PREMIUM HOVER EFFECT
======================================== */

.nav-menu li a:hover {
    transform: translateY(-4px) scale(1.06);
    background: rgba(255, 255, 255, 0.95);
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.08),
        0 6px 12px rgba(37, 99, 235, 0.08);
}

/* INDIVIDUAL HOVER COLORS */

.nav-menu li:nth-child(1) a:hover {
    color: #1d4ed8;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.18);
}

.nav-menu li:nth-child(2) a:hover {
    color: #15803d;
    box-shadow: 0 15px 35px rgba(22, 163, 74, 0.18);
}

.nav-menu li:nth-child(3) a:hover {
    color: #6d28d9;
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.18);
}

.nav-menu li:nth-child(4) a:hover {
    color: #c2410c;
    box-shadow: 0 15px 35px rgba(234, 88, 12, 0.18);
}

.nav-menu li:nth-child(5) a:hover {
    color: #be185d;
    box-shadow: 0 15px 35px rgba(219, 39, 119, 0.18);
}

.nav-menu li:nth-child(6) a:hover {
    color: #0e7490;
    box-shadow: 0 15px 35px rgba(8, 145, 178, 0.18);
}

/* ========================================
   UNDERLINE EFFECT (FIXED BELOW TEXT)
======================================== */

.nav-menu li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -15px;
    /* underline ab neeche aayegi */
    width: 0;
    height: 4px;
    border-radius: 20px;
    background: currentColor;
    transform: translateX(-50%);
    transition: all 0.35s ease;
    opacity: 0;
}

.nav-menu li a:hover::after {
    width: 55%;
    opacity: 1;
}

/* ========================================
   ACTIVE MENU STYLE
======================================== */

.nav-menu li.current-menu-item a,
.nav-menu li.current_page_item a {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.nav-menu li.current-menu-item a::after,
.nav-menu li.current_page_item a::after {
    width: 55%;
    opacity: 1;
}

/* ========================================
   QUOTE BUTTON
======================================== */

.quote-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    padding: 15px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.20);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.quote-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.30);
}

/* ========================================
   MOBILE TOGGLE
======================================== */

.mobile-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #111827;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 991px) {

    .main-nav {
        display: none;
    }

    .quote-btn {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .main-header .container {
        gap: 20px;
    }

    .logo img,
    .custom-logo {
        max-height: 55px;
    }
}

/* ========================================= */
/* COMMERCIAL HERO SECTION */
/* ========================================= */

.commercial-hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* background: url('<?php echo get_template_directory_uri(); ?>/assets/images/commercial-hero-bg.JPG') no-repeat center center/cover;
    overflow: hidden; */
    /* Your Background Image */
    background: url('/usabestwindowtinting/wordpress/wp-content/themes/usabestwindowtinting-theme/assets/images/commercial-hero-bg.JPG') center center/cover no-repeat;
}

.commercial-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.commercial-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: #fff;
}

.commercial-hero h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.commercial-hero p {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #fff;
}

.commercial-hero .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.commercial-hero .btn-primary,
.commercial-hero .btn-secondary {
    padding: 16px 34px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.commercial-hero .btn-primary {
    background: #2563eb;
    color: #fff;
}

.commercial-hero .btn-primary:hover {
    background: #1d4ed8;
}

.commercial-hero .btn-secondary {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.commercial-hero .btn-secondary:hover {
    background: #fff;
    color: #000;
}

/* =========================================
   PREMIUM QUOTE SECTION – CLIENT STYLE
========================================= */

.quote-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #0b1335 0%, #111b4d 100%);
    position: relative;
    overflow: hidden;
}

/* subtle premium glow background */
.quote-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: rgba(37, 99, 235, 0.12);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.quote-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    transition: all 0.4s ease;
}

.quote-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.22);
}

/* =========================================
   LEFT SIDE
========================================= */

.quote-left {
    background: linear-gradient(180deg, #d4b07a 0%, #c79b5d 100%);
    padding: 60px 45px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-left h4 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.3;
}

.quote-left p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.quote-left .help-text {
    font-size: 22px;
    font-weight: 700;
    margin-top: 20px;
}

.quote-left .phone {
    font-size: 30px;
    font-weight: 800;
    margin-top: 10px;
    color: #ffffff;
}

/* =========================================
   RIGHT SIDE CONTENT
========================================= */

.quote-content {
    padding: 70px 60px;
    background: #f8f8f8;
}

.quote-content h3 {
    font-size: 48px;
    font-weight: 800;
    color: #2d2d2d;
    margin-bottom: 20px;
    line-height: 1.2;
}

.quote-content p {
    font-size: 20px;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.7;
}

.quote-content .btn-primary {
    display: inline-block;
    background: #be3144;
    color: #fff;
    padding: 18px 42px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgba(190, 49, 68, 0.25);
}

.quote-content .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(190, 49, 68, 0.35);
    background: #a82839;
}

.quote-note {
    margin-top: 28px;
    font-size: 14px;
    color: #888 !important;
    line-height: 1.7;
}

/* =========================================
   RIGHT SIDE IMAGE AREA
========================================= */

.quote-image {
    position: relative !important;
    min-height: 550px !important;

    background-image: url('/wp-content/themes/usabestwindowtinting-theme/assets/images/commercial-quote-bg.PNG') !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;

    overflow: hidden !important;
    transition: all 0.5s ease !important;
}

/* premium dark overlay */
.quote-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 50, 0.35);
    transition: all 0.5s ease;
    z-index: 1;
}

/* hover zoom effect */
.quote-image:hover {
    transform: scale(1.03);
}

/* hover overlay effect */
.quote-image:hover::before {
    background: rgba(10, 20, 50, 0.15);
}

/* optional text on image */
.quote-image-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
    color: #fff;
}

.quote-image-content h4 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.quote-image-content p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 450px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {
    .quote-wrapper {
        grid-template-columns: 1fr;
    }

    .quote-left,
    .quote-content {
        padding: 45px 30px;
    }

    .quote-content h3 {
        font-size: 36px;
    }

    .quote-left .phone {
        font-size: 24px;
    }

    .quote-image {
        min-height: 400px;
    }
}

@media (max-width: 576px) {
    .quote-content h3 {
        font-size: 30px;
    }

    .quote-content p,
    .quote-left p {
        font-size: 16px;
    }

    .quote-content .btn-primary {
        width: 100%;
        text-align: center;
    }

    .quote-image-content {
        left: 20px;
        bottom: 20px;
    }

    .quote-image-content h4 {
        font-size: 24px;
    }
}

/* globle css */

/* =========================================
   GLOBAL PREMIUM SECTION CSS
   (Hero + Footer excluded automatically)
========================================= */
/* =========================================
   GLOBAL PREMIUM SECTION CSS
   HERO SECTION EXCLUDED (VIDEO SAFE)
========================================= */

/* 
IMPORTANT:
main-hero-section ko exclude kiya gaya hai
taake video background hide na ho
*/



/* index.php ka hero video background */

/* =========================================
   HERO SECTION – FORCE VIDEO BACKGROUND
========================================= */

/* ========================================
   HERO VIDEO SECTION — FINAL FIX
======================================== */

/* =========================================
   MAIN HERO SECTION – UPDATED CSS

   /* =========================================
   GLOBAL PREMIUM SECTION CSS
   FIXED VERSION (VIDEO SAFE)
========================================= */

/*
ISSUE:
before/after pseudo elements
main hero video ke upar aa rahe the

FIX:
main-hero-section ko fully exclude kar diya
+ pseudo layers ko safe banaya
*/

/* =========================================
   NORMAL SECTIONS ONLY
========================================= */

section:not(.commercial-hero):not(.residential-hero):not(.main-hero-section):not(footer):not(.site-footer) {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* =========================================
   SOFT GLOW EFFECT
========================================= */

section:not(.commercial-hero):not(.residential-hero):not(.main-hero-section):not(footer):not(.site-footer)::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 320px;
    height: 320px;
    background: rgba(37, 99, 235, 0.06);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

section:not(.commercial-hero):not(.residential-hero):not(.main-hero-section):not(footer):not(.site-footer)::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(190, 49, 68, 0.05);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

/* =========================================
   CONTAINER
========================================= */

section:not(.commercial-hero):not(.residential-hero):not(.main-hero-section):not(footer):not(.site-footer) .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
}

/* =========================================
   H2 STYLING
========================================= */

section:not(.commercial-hero):not(.residential-hero):not(.main-hero-section):not(footer):not(.site-footer) h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    transition: all 0.4s ease;

    background: linear-gradient(90deg,
            #0f172a 0%,
            #2563eb 45%,
            #be3144 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* Hover */
section:not(.commercial-hero):not(.residential-hero):not(.main-hero-section):not(footer):not(.site-footer) h2:hover {
    transform: scale(1.05);
    text-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
}

/* =========================================
   GLOBAL PARAGRAPH
========================================= */

section:not(.commercial-hero):not(.residential-hero):not(.main-hero-section):not(footer):not(.site-footer) p {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    font-weight: 500;
}

/* =========================================
   PREMIUM CARDS
========================================= */

.logo-placeholder,
.service-card-commercial,
.benefit,
.step,
.faq-item,
.section-box,
.testimonial-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

/* Top hover line */

.logo-placeholder::before,
.service-card-commercial::before,
.benefit::before,
.step::before,
.faq-item::before,
.section-box::before,
.testimonial-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #be3144);
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.35s ease;
}

/* Hover lift */

.logo-placeholder:hover,
.service-card-commercial:hover,
.benefit:hover,
.step:hover,
.faq-item:hover,
.section-box:hover,
.testimonial-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.10);
    border-color: #dbeafe;
}

/* Show top line */

.logo-placeholder:hover::before,
.service-card-commercial:hover::before,
.benefit:hover::before,
.step:hover::before,
.faq-item:hover::before,
.section-box:hover::before,
.testimonial-box:hover::before {
    transform: scaleX(1);
}

/* =========================================
   VERY IMPORTANT HERO FIX
========================================= */

.main-hero-section,
.main-hero-section::before,
.main-hero-section::after {
    background: transparent !important;
    z-index: auto !important;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {
    section:not(.commercial-hero):not(.residential-hero):not(.main-hero-section):not(footer):not(.site-footer) {
        padding: 80px 0;
    }

    section:not(.commercial-hero):not(.residential-hero):not(.main-hero-section):not(footer):not(.site-footer) h2 {
        font-size: 40px;
    }

    section:not(.commercial-hero):not(.residential-hero):not(.main-hero-section):not(footer):not(.site-footer) p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    section:not(.commercial-hero):not(.residential-hero):not(.main-hero-section):not(footer):not(.site-footer) h2 {
        font-size: 30px;
    }

    section:not(.commercial-hero):not(.residential-hero):not(.main-hero-section):not(footer):not(.site-footer) p {
        font-size: 15px;
        line-height: 1.7;
    }
}


/* =========================================
   FIX VIDEO NOT SHOWING – FORCE VIDEO DISPLAY
========================================= */

.main-hero-section {
    position: relative !important;
    min-height: 100vh !important;
    width: 100% !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    background: #000 !important;
}

/* FORCE VIDEO */
.main-hero-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 1 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: none !important;
}

/* Overlay */
.main-hero-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.45) !important;
    z-index: 2 !important;
}

/* Content */
.main-hero-content {
    position: relative !important;
    z-index: 3 !important;
    max-width: 1200px !important;
    margin: auto !important;
    text-align: center !important;
    color: #fff !important;
    padding: 140px 20px 100px !important;
}

/* Heading */
.main-hero-content h1 {
    font-size: 64px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin-bottom: 25px !important;
    color: #ffffff !important;
}

/* Paragraph */
.main-hero-content p {
    max-width: 900px !important;
    margin: 0 auto 40px !important;
    font-size: 22px !important;
    line-height: 1.8 !important;
    color: rgba(255, 255, 255, 0.92) !important;
}

/* Buttons */
.hero-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
}

.primary-btn {
    display: inline-block !important;
    padding: 18px 42px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    min-width: 220px !important;
    background: linear-gradient(90deg, #2563eb, #1d4ed8) !important;
    color: #fff !important;
    border: none !important;
}

.outline-btn {
    background: transparent !important;
    border: 2px solid #fff !important;
    color: #fff !important;
}

/* Mobile */
@media (max-width: 768px) {
    .main-hero-content h1 {
        font-size: 36px !important;
    }

    .main-hero-content p {
        font-size: 16px !important;
    }

    .primary-btn {
        width: 100% !important;
    }
}

/* =========================================
   MAIN HERO VIDEO SECTION
========================================= */

.main-hero-section {
    position: relative !important;
    height: 100vh !important;
    min-height: 700px !important;
    width: 100% !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    padding: 0 !important;
    z-index: 1 !important;
}

/* VIDEO */
.main-hero-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 1 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* OVERLAY */
.main-hero-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.45) !important;
    z-index: 2 !important;
}

/* CONTENT */
.main-hero-content {
    position: relative !important;
    z-index: 3 !important;
    text-align: center !important;
    color: #fff !important;
    max-width: 1200px !important;
}

/* TITLE */
.main-hero-content h1 {
    font-size: 64px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin-bottom: 25px !important;
    color: #ffffff !important;
}

/* TEXT */
.main-hero-content p {
    font-size: 22px !important;
    line-height: 1.8 !important;
    margin-bottom: 40px !important;
    color: rgba(255, 255, 255, 0.92) !important;
}

/* BUTTONS */
.hero-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
}

.primary-btn {
    padding: 18px 42px !important;
    border-radius: 50px !important;
    background: #2563eb !important;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    display: inline-block !important;
}

.outline-btn {
    background: transparent !important;
    border: 2px solid #fff !important;
}

/* navlink blue color */
/* NAV MENU LINKS - ALL BLUE COLOR */

.main-nav .nav-menu li a,
.main-nav .nav-menu li a:visited,
.main-nav .nav-menu li a:focus,
.main-nav .nav-menu li a:active {
    color: #2563eb !important;
    /* Blue color */
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Hover Effect */
.main-nav .nav-menu li a:hover {
    color: #00008B !important;
    /* Darker blue on hover */
}

/* Active Current Menu Item */
.main-nav .nav-menu li.current-menu-item a,
.main-nav .nav-menu li.current_page_item a,
.main-nav .nav-menu li.current-menu-ancestor a {
    color: #2563eb !important;
}

/* Mobile Menu Blue */
@media (max-width: 991px) {
    .main-nav .nav-menu li a {
        color: #00008B !important;
    }
}

/* red nave link and blue  */

/* NAV MENU LINKS */

.main-nav .nav-menu li {
    position: relative;
}

.main-nav .nav-menu li a {
    color: #2563eb !important;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding: 8px 0;
    transition: color 0.3s ease;
}

/* RED UNDERLINE */
.main-nav .nav-menu li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #e11d48;
    border-radius: 50px;
    transition: width 0.3s ease;
}

/* HOVER */
.main-nav .nav-menu li a:hover {
    color: #00008B !important;
}

.main-nav .nav-menu li a:hover::after {
    width: 100%;
}

/* ACTIVE MENU */
.main-nav .nav-menu li.current-menu-item a::after,
.main-nav .nav-menu li.current_page_item a::after,
.main-nav .nav-menu li.current-menu-ancestor a::after {
    width: 100%;
}

.main-nav .nav-menu li.current-menu-item a,
.main-nav .nav-menu li.current_page_item a,
.main-nav .nav-menu li.current-menu-ancestor a {
    color: #2563eb !important;
}

/* MOBILE */
@media (max-width: 991px) {
    .main-nav .nav-menu li a {
        color: #2563eb !important;
    }
}

/* l */
/* ========================================= */
/* TRANSFORM BUSINESS SECTION */
/* ========================================= */

.transform-business {
    padding: 100px 0;
    background: #f5f5f5;
    text-align: center;
}

.transform-business h2 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(to right, #0f172a, #2563eb, #e11d48);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
}

.transform-business p {
    max-width: 1100px;
    margin: 0 auto 40px;
    font-size: 20px;
    line-height: 1.7;
    color: #334155;
}

.trusted-text {
    display: block;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
    color: #111827;
}

/* CAROUSEL */

.logo-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px;
    max-width: 1100px;

    scrollbar-width: none;
}

.logo-carousel::-webkit-scrollbar {
    display: none;
}

.logo-item {
    min-width: 160px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: 0.4s ease;

    flex-shrink: 0;
}

.logo-item:hover {
    transform: scale(1.05);
}

.logo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}


.logo-item img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

/* BUTTONS */

.carousel-btn {
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #2563eb;
    color: #fff;
}

.prev-btn {
    margin-right: 20px;
}

.next-btn {
    margin-left: 20px;
}

/* MOBILE */

@media (max-width: 768px) {

    .transform-business h2 {
        font-size: 42px;
    }

    .transform-business p {
        font-size: 18px;
    }

    .logo-item {
        min-width: 140px;
        height: 100px;
    }

}


/* What commercial window film does for your business */
/* ===================================== */
/* BENEFITS + VIDEO SECTION */
/* ===================================== */

.benefits-list {
    padding: 100px 0;
    background: #f8fafc;
}

.benefits-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    flex-wrap: wrap;
}

/* LEFT SIDE */

.benefits-content {
    flex: 1;
    min-width: 320px;
}

.benefits-content h2 {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 20px;

    background: linear-gradient(to right, #0f172a, #2563eb, #e11d48);

    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;
}

.benefits-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #111827;
}

.benefits-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 35px;
}

.benefits-grid-2col {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.benefits-grid-2col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-grid-2col li {
    font-size: 18px;
    margin-bottom: 18px;
    color: #1e293b;
    font-weight: 600;
}

.benefits-grid-2col li i {
    color: #2563eb;
    margin-right: 10px;
}

/* RIGHT SIDE VIDEO */

.video-box {
    position: relative;
    flex: 1;
    min-width: 320px;
    max-width: 600px;

    border-radius: 30px;
    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);

    cursor: pointer;
}

/* THUMBNAIL */

.video-thumbnail {
    width: 100%;
    display: block;
    transition: 0.5s ease;
}

/* VIDEO */

.promo-video {
    width: 100%;
    display: none;
}

/* PLAY BUTTON */

.play-btn {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 90px;
    height: 90px;

    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 34px;

    border: 2px solid rgba(255, 255, 255, 0.5);

    transition: 0.4s ease;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(37, 99, 235, 0.85);
}

/* HOVER EFFECT */

.video-box:hover .video-thumbnail {
    transform: scale(1.04);
}

/* MOBILE */

@media (max-width: 768px) {

    .benefits-content h2 {
        font-size: 42px;
    }

    .benefits-content h3 {
        font-size: 26px;
    }

    .benefits-wrapper {
        gap: 40px;
    }

}

/* 2 columns ko ek hi row me rakhne ke liye */

.benefits-grid-2col {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: nowrap;
    /* line break nahi hogi */
}

/* dono ul same width */

.benefits-grid-2col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 50%;
}

/* mobile par responsive */

@media (max-width: 768px) {
    .benefits-grid-2col {
        flex-wrap: wrap;
        /* mobile par neeche aa sakta hai */
        gap: 20px;
    }

    .benefits-grid-2col ul {
        width: 100%;
    }
}

/* g */
/* VIDEO SECTION */

.video-wrapper {
    position: relative;
    max-width: 700px;
    /* thumbnail ka size chota */
    margin: 0 auto;
    /* center me */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* video + thumbnail poster */

.video-wrapper video {
    width: 100%;
    height: auto;
    /* image proportion maintain rahe */
    display: block;
    object-fit: cover;
    border-radius: 20px;
}

/* play button */

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 80px;
    height: 80px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.play-icon {
    font-size: 34px;
    color: #fff;
}

/* f */
/* ===================================== */
/* OUR APPROACH SECTION */
/* ===================================== */

.approach-section {
    background: #2d2d2d;
    /* dark gray background */
    padding: 100px 0;
}

.approach-section h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 60px;
}

.approach-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #2563eb;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;
    color: #fff;
}

.step strong {
    display: block;
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 15px;
}

.step p {
    font-size: 17px;
    line-height: 1.7;
    color: #d1d5db;
}

/* mobile */

@media (max-width: 768px) {
    .approach-section h2 {
        font-size: 36px;
    }

    .approach-steps {
        gap: 20px;
    }
}

/* sirf cards (You Schedule / We Install / You Enjoy) ka background dark gray */

.approach-section {
    padding: 100px 0;
    background: #ffffff;
    /* section white rahe */
}

.approach-section h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 60px;
}

.approach-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* yahan dark gray background hoga */

.step {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 40px 30px;

    background: #2d2d2d;
    /* dark gray only here */
    border-radius: 20px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #2563eb;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;
    color: #fff;
}

.step strong {
    display: block;
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 15px;
}

.step p {
    font-size: 17px;
    line-height: 1.7;
    color: #d1d5db;
}

/* IMPORTANT laga kar dark gray background force apply */

.approach-section {
    background: #ffffff !important;
    /* poora section white */
    padding: 100px 0 !important;
}

/* sirf ye boxes dark gray honge */

.approach-section .step {
    background: #2d2d2d !important;
    /* dark gray force */
    border-radius: 20px !important;
    padding: 40px 30px !important;
    text-align: center !important;

    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
}

/* title white */

.approach-section .step strong {
    display: block !important;
    font-size: 26px !important;
    color: #ffffff !important;
    margin-bottom: 15px !important;
}

/* paragraph light white */

.approach-section .step p {
    color: #d1d5db !important;
    font-size: 17px !important;
    line-height: 1.7 !important;
}

/* icon circle */

.approach-section .step-icon {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 25px !important;
    border-radius: 50% !important;
    background: #2563eb !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    font-size: 32px !important;
    color: #fff !important;
}

/* button section */

.approach-btn {
    text-align: center;
    margin-top: 50px;
}

.contact-btn {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
}

.contact-btn:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
}

/* LEARN ABOUT SOLAR FILM button ka black border */

.btn-secondary {
    border: 2px solid #000000 !important;
    /* black border */
    color: #000000 !important;
    background: transparent !important;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}

/* ===================================== */
/* LEED CERTIFICATION SECTION */
/* ===================================== */

.leed-section {
    background: #003b5c !important;
    padding: 100px 0;
}

.leed-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* LEFT SIDE */

.leed-content {
    flex: 1;
    min-width: 320px;
}

.leed-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.leed-content h3 {
    font-size: 30px;
    color: #dbeafe;
    margin-bottom: 35px;
}

.leed-benefits {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}

.leed-benefits span {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    padding-left: 10px;
    border-left: 4px solid #60a5fa;
}

.btn-outline {
    display: inline-block;
    padding: 16px 36px;
    border: 2px solid #ffffff;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: #ffffff;
    color: #003b5c;
}

/* RIGHT IMAGE */

.leed-image-box {
    flex: 1;
    min-width: 320px;
    max-width: 600px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.20);
}

.leed-image {
    width: 100%;
    display: block;
    transition: 0.5s ease;
}

/* ZOOM HOVER EFFECT */

.leed-image-box:hover .leed-image {
    transform: scale(1.08);
}

/* MOBILE */

@media (max-width: 768px) {
    .leed-content h2 {
        font-size: 36px;
    }

    .leed-content h3 {
        font-size: 24px;
    }

    .leed-wrapper {
        gap: 40px;
    }
}

/* sirf heading ke neeche white background */



/* white line ko bohat zyada height dene ke liye */

/* heading upar rahe aur white background neeche */

.leed-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    z-index: 2;
    /* heading ko upar rakhega */
}

/* LEED section ke h2 par global gradient effect hatao */

.leed-section h2 {
    /* global h2 gradient override */
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;

    color: #ffffff !important;
    text-shadow: none !important;
    transform: none !important;

    text-align: left !important;
    display: block !important;
    cursor: default !important;
}

/* hover effect bhi hatao */

.leed-section h2:hover {
    transform: none !important;
    text-shadow: none !important;
}

/* white underline/background completely remove */

.leed-section h2::after {
    display: none !important;
    content: none !important;
}

/* LEED heading par shadow + hover effect */

.leed-section h2 {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;

    color: #ffffff !important;
    text-align: left !important;
    display: inline-block !important;

    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.25) !important;
    transition: all 0.4s ease !important;
    cursor: pointer !important;
}

/* hover effect */

.leed-section h2:hover {
    transform: translateY(-4px) scale(1.03) !important;
    text-shadow: 0 15px 30px rgba(255, 255, 255, 0.25) !important;
}

/* Create an ECO-Friendly building & office ko poore section ke bilkul center me */

.leed-section h2 {
    width: 100% !important;
    display: block !important;
    text-align: center !important;

    margin: 0 auto 50px auto !important;

    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;

    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.25) !important;
    transition: all 0.4s ease !important;
}

.leed-section h2:hover {
    transform: translateY(-4px) scale(1.03) !important;
    text-shadow: 0 15px 30px rgba(255, 255, 255, 0.25) !important;
}

/* dono images ke darmiyan proper gap */

.leed-images-box {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
    /* yahan se gap control hoga */
}

/* extra safety */

.leed-image-box {
    margin-bottom: 0 !important;
}

/* ===================================== */
/* WHO WE WORK WITH SECTION */
/* ===================================== */

.work-with-section {
    padding: 100px 0;
    background: #f8fafc;
}

.work-with-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* card */

.work-card {
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.4s ease;
}

/* circle image */

.work-card img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto 20px;
    transition: 0.4s ease;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
}

/* heading */

.work-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    transition: 0.4s ease;
}

/* hover effect */

.work-card:hover {
    transform: translateY(-8px);
}

.work-card:hover img {
    transform: scale(1.08);
}

.work-card:hover h3 {
    color: #2563eb;
}

/* mobile */

@media (max-width: 768px) {
    .work-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* circle ke andar icon style */

.circle-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;

    border-radius: 50%;
    background: #f1f5f9;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 52px;
    color: #2563eb;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

/* hover zoom effect */

.work-card:hover .circle-icon {
    transform: scale(1.08);
    background: #2563eb;
    color: #ffffff;
}

/* case studies button ka black outline */

.case-studies .btn-outline {
    border: 2px solid #000000 !important;
    /* black outline */
    color: #000000 !important;
    background: transparent !important;

    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}

/* hover effect */

.case-studies .btn-outline:hover {
    background: #000000 !important;
    color: #ffffff !important;
}

/* solution page */
/* ==============================================
   SOLUTIONS PAGE STYLES
   ============================================== */

/* Hero Section - Red Background */
.solutions-hero {
    background: #e63946;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.solutions-hero h1 {
    color: white;
    text-shadow: none;
    font-size: 48px;
    margin-bottom: 20px;
}

.solutions-hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    opacity: 0.95;
}

/* Most Popular Grid */
.most-popular {
    padding: 60px 0;
    background: #fff;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.popular-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.popular-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
}

/* Hover Color Change - Phone Color (#2563eb) */
.popular-card:hover h3,
.popular-card:hover li {
    color: #2563eb;
}

.popular-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.popular-card p {
    color: #4b5563;
    margin-bottom: 15px;
}

.popular-card ul {
    list-style: none;
    padding: 0;
}

.popular-card li {
    padding: 5px 0;
    color: #6b7280;
    transition: color 0.3s;
}

/* Experience Section - Red Background */
.experience-section {
    background: #e63946;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.experience-section h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
}

.experience-section p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    opacity: 0.95;
}

/* Locations & Inventory */
.locations-inventory {
    padding: 60px 0;
    background: #f8fafc;
}

.locations-inventory .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.loc-card,
.inventory-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.loc-card:hover,
.inventory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Van Section - Blur Effect */
.van-section {
    position: relative;
    overflow: hidden;
}

.van-overlay {
    background: rgba(230, 57, 70, 0.85);
    padding: 60px 0;
}

.van-content {
    position: relative;
    text-align: center;
}

.van-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    filter: blur(3px);
    transition: filter 0.4s;
}

.van-content:hover .van-image {
    filter: blur(0);
}

.van-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 25px;
    border-radius: 40px;
    white-space: nowrap;
}

/* Help Section */
.help-section {
    padding: 60px 0;
    text-align: center;
    background: #fff;
}

.help-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.help-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.help-btn {
    background: #2563eb;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.help-btn:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .solutions-hero h1 {
        font-size: 32px;
    }

    .popular-grid {
        grid-template-columns: 1fr;
    }

    .locations-inventory .container {
        grid-template-columns: 1fr;
    }

    .van-text {
        white-space: normal;
        width: 80%;
        font-size: 14px;
    }

    .help-buttons {
        flex-direction: column;
        align-items: center;
    }

    .help-btn {
        width: 80%;
        text-align: center;
    }
}

/* Solutions Hero Section background color */

.solutions-hero {
    background: #b83a4b !important;
    padding: 100px 0;
}

/* text white for better visibility */

.solutions-hero h1,
.solutions-hero p {
    color: #ffffff !important;
}

/* Popular cards hover background color */

.popular-card {
    transition: all 0.4s ease;
    border-radius: 20px;
}

/* hover par card ka color change */

.popular-card:hover {
    background: #c5aa75 !important;
    transform: translateY(-8px);
}

/* text visibility better */

.popular-card:hover h3,
.popular-card:hover p,
.popular-card:hover li {
    color: #ffffff !important;
}

/* Locations + Inventory cards hover effect */

.loc-card,
.inventory-card {
    transition: all 0.4s ease;
    border-radius: 20px;
}

/* hover par background color change */

.loc-card:hover,
.inventory-card:hover {
    background: #c5aa75 !important;
    transform: translateY(-8px);
}

/* text white on hover */

.loc-card:hover h3,
.loc-card:hover p,
.inventory-card:hover h3,
.inventory-card:hover p {
    color: #ffffff !important;
}

/* ===================================== */
/* VAN SECTION */
/* ===================================== */
/* ===================================== */
/* BEFORE FOOTER RED SECTION */
/* ===================================== */

.before-footer-red-section {
    background: #b83a4b !important;
    padding: 100px 0 !important;
    width: 100% !important;
    position: relative !important;
    overflow: hidden !important;
}

.before-footer-content {
    width: 100% !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
}

.before-footer-box {
    margin-bottom: 50px !important;
    padding-bottom: 30px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25) !important;
}

.before-footer-box:last-child {
    margin-bottom: 0 !important;
    border-bottom: none !important;
}

.before-footer-box h3 {
    font-size: 34px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 15px !important;
    line-height: 1.3 !important;

    background: none !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: none !important;
}

.before-footer-box p {
    font-size: 18px !important;
    line-height: 1.8 !important;
    color: #ffffff !important;
    margin: 0 !important;
    font-weight: 500 !important;
}

/* mobile */

@media (max-width: 768px) {
    .before-footer-red-section {
        padding: 70px 0 !important;
    }

    .before-footer-box h3 {
        font-size: 26px !important;
    }

    .before-footer-box p {
        font-size: 16px !important;
    }
}

/* ==============================================
   SERVICE AREAS PAGE STYLES
   ============================================== */
/* ==============================================
   SERVICE AREAS PAGE STYLES
   ============================================== */

.service-hero {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.service-hero h1 {
    color: white;
    font-size: 48px;
    margin-bottom: 15px;
}

.service-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    opacity: 0.9;
}

.states-section {
    padding: 60px 0;
    background: #f8fafc;
}

.states-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.state-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.state-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
}

.state-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a2e;
    border-bottom: 2px solid #2563eb;
    display: inline-block;
    padding-bottom: 5px;
}

.state-card ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.state-card li {
    margin-bottom: 12px;
}

.state-card a {
    text-decoration: none;
    color: #4b5563;
    transition: all 0.3s;
    display: block;
    padding: 8px 0;
}

.state-card a:hover {
    color: #2563eb;
    transform: translateX(8px);
}

.service-cta {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.service-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.service-cta p {
    margin-bottom: 25px;
    font-size: 18px;
}

.service-cta .btn-primary {
    background: white;
    color: #2563eb;
}

.service-cta .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .states-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .states-grid {
        grid-template-columns: 1fr;
    }

    .service-hero h1 {
        font-size: 32px;
    }
}

/* service page hero ke bad card section */
/* State Card Hover Color */

.state-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 30px 25px;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

/* Mouse Hover Effect */
.state-card:hover {
    background: #ffab40 !important;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    border-color: #ffab40;
}

/* Heading on Hover */
.state-card:hover h2 {
    color: #ffffff !important;
}

/* Links on Hover */
.state-card:hover ul li a {
    color: #ffffff !important;
}

/* Smooth transition */
.state-card h2,
.state-card ul li a {
    transition: all 0.3s ease;
}

/* SERVICE HERO SECTION BACKGROUND IMAGE */

.service-hero {
    position: relative;
    padding: 140px 0;
    background: url('../images/offce.jfif') center center/cover no-repeat;
    overflow: hidden;
}

/* Dark Overlay for better text visibility */
.service-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Content above overlay */
.service-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Heading */
.service-hero h1 {
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Paragraph */
.service-hero p {
    font-size: 22px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin: 0 auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .service-hero {
        padding: 100px 0;
    }

    .service-hero h1 {
        font-size: 38px;
    }

    .service-hero p {
        font-size: 16px;
    }
}

/* =========================================
   SERVICE HERO SECTION FORCE BACKGROUND IMAGE
========================================= */

/* =========================================
   SERVICE HERO BACKGROUND IMAGE
   HD + NO PIXEL BREAK
========================================= */

.service-hero {
    position: relative !important;
    min-height: 650px !important;
    padding: 160px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;

    /* Better image quality */
    background-image: url("/usabestwindowtinting/wordpress/wp-content/themes/usabestwindowtinting-theme/assets/images/offce2.jpg") !important;
    background-size: 100% 100% !important;
    /* prevent blur */
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: #000 !important;
}

/* Dark overlay */
.service-hero::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.45) !important;
    z-index: 1 !important;
}

/* Disable unwanted after effect */
.service-hero::after {
    display: none !important;
}

/* Content */
.service-hero .container {
    position: relative !important;
    z-index: 5 !important;
    text-align: center !important;
    max-width: 1200px !important;
}

/* Heading */
.service-hero h1 {
    font-size: 72px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
}

/* Paragraph */
.service-hero p {
    font-size: 24px !important;
    line-height: 1.8 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

/* Tablet */
@media (max-width: 991px) {
    .service-hero {
        min-height: 500px !important;
        padding: 120px 0 !important;
        background-size: cover !important;
    }

    .service-hero h1 {
        font-size: 48px !important;
    }

    .service-hero p {
        font-size: 18px !important;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .service-hero {
        min-height: 420px !important;
        padding: 100px 0 !important;
    }

    .service-hero h1 {
        font-size: 34px !important;
    }

    .service-hero p {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }
}

/* =========================================
   SERVICE HERO BACKGROUND IMAGE
   FIXED FOR HOSTINGER
========================================= */

.service-hero {
    position: relative !important;
    min-height: 650px !important;
    padding: 160px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;

    /* FIXED PATH (remove localhost path) */
    background-image: url("/wp-content/themes/usabestwindowtinting-theme/assets/images/offce2.jpg") !important;

    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: #000 !important;
}

/* Dark overlay */
.service-hero::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.45) !important;
    z-index: 1 !important;
}

/* Disable unwanted after effect */
.service-hero::after {
    display: none !important;
}

/* Content */
.service-hero .container {
    position: relative !important;
    z-index: 5 !important;
    text-align: center !important;
    max-width: 1200px !important;
}

/* Heading */
.service-hero h1 {
    font-size: 72px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
}

/* Paragraph */
.service-hero p {
    font-size: 24px !important;
    line-height: 1.8 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

/* Tablet */
@media (max-width: 991px) {
    .service-hero {
        min-height: 500px !important;
        padding: 120px 0 !important;
        background-size: cover !important;
    }

    .service-hero h1 {
        font-size: 48px !important;
    }

    .service-hero p {
        font-size: 18px !important;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .service-hero {
        min-height: 420px !important;
        padding: 100px 0 !important;
    }

    .service-hero h1 {
        font-size: 34px !important;
    }

    .service-hero p {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }
}

/* Paragraph visibility fix */
.service-hero p {
    font-size: 24px;
    line-height: 1.8;
    font-weight: 600;
    max-width: 950px;
    margin: 0 auto;

    color: #ffdfb8 !important;
    opacity: 1 !important;
    visibility: visible !important;

    /* remove fade/gradient issue */
    background: none !important;
    -webkit-text-fill-color: #ffdfb8 !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;

    /* better visibility on image */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45) !important;

    position: relative;
    z-index: 5;
}

/* Light transparent background behind paragraph text */
.service-hero p {
    display: inline-block;
    font-size: 24px;
    line-height: 1.8;
    font-weight: 600;
    max-width: 950px;
    margin: 0 auto;
    padding: 14px 28px;

    color: #ffffff !important;

    /* Light soft background */
    background: rgba(255, 255, 255, 0.18) !important;

    /* Glass effect */
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    border-radius: 12px;

    /* Soft border */
    border: 1px solid rgba(255, 255, 255, 0.25);

    /* Better visibility */
    text-shadow: none !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);

    position: relative;
    z-index: 5;
}

/* CTA Button Black Outline */
.service-cta .btn-primary {
    display: inline-block;
    padding: 16px 38px;
    border-radius: 50px;

    background: #2563eb;
    /* button blue */
    color: #ffffff !important;

    border: 2px solid #000000 !important;
    /* black outline */

    font-size: 17px;
    font-weight: 700;
    text-decoration: none;

    transition: all 0.3s ease;
}

/* Hover Effect */
.service-cta .btn-primary:hover {
    background: #1d4ed8;
    border-color: #000000 !important;
    transform: translateY(-2px);
}

/* ==============================================
   SERVICE AREAS PAGE - DETAILED STYLES
   ============================================== */

.service-hero {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.service-hero h1 {
    color: white;
    font-size: 48px;
    margin-bottom: 15px;
}

.service-detail {
    padding: 60px 0;
    border-bottom: 1px solid #e2e8f0;
}

.service-detail.alt {
    background: #f8fafc;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-grid.reverse {
    direction: rtl;
}

.service-grid.reverse .service-text {
    direction: ltr;
}

.service-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.service-text p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-text strong {
    color: #2563eb;
    font-size: 18px;
}

.service-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
}

.service-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

/* CTA Section */
.service-cta {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.service-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.service-cta .btn-primary {
    background: white;
    color: #2563eb;
    margin-top: 20px;
}

.service-cta .btn-primary:hover {
    transform: translateY(-3px);
}

.cta-phone {
    margin-top: 20px;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-grid.reverse {
        direction: ltr;
    }

    .service-text h1 {
        font-size: 28px;
    }
}

/* CTA Button Text Always Visible - Black Color */

.service-cta .btn-primary {
    display: inline-block;
    padding: 16px 38px;
    border-radius: 50px;

    background: #ffffff !important;
    /* white background */
    color: #000000 !important;
    /* black text always visible */

    border: 2px solid #000000 !important;
    /* black outline */

    font-size: 17px;
    font-weight: 700;
    text-decoration: none !important;

    min-width: 260px;
    text-align: center;

    transition: all 0.3s ease;
}

/* Hover Effect */
.service-cta .btn-primary:hover {
    background: #000000 !important;
    color: #ffffff !important;
    border-color: #000000 !important;
    transform: translateY(-2px);
}

/* ABOUT US */
/* =========================================
   ABOUT HERO SECTION — PREMIUM DESIGN
========================================= */

.about-hero {
    /* GLOBAL CSS ki wajah se image hide ho rahi hai */
    /* Isko FORCE override karo */

    .about-hero {
        position: relative !important;
        min-height: 650px !important;
        padding: 120px 0 180px !important;
        display: flex !important;
        align-items: center !important;
        overflow: hidden !important;

        /* Force background image */
        background:
            linear-gradient(rgba(0, 0, 0, 0.45),
                rgba(0, 0, 0, 0.45)),
            url("/usabestwindowtinting/wordpress/wp-content/themes/usabestwindowtinting-theme/assets/images/residential-hero-badge.png") !important;

        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
    }

    /* Global section background ko remove karo */
    section.about-hero,
    .about-hero::before,
    .about-hero::after {
        background-color: transparent !important;
    }

    /* Content upar rahe */
    .about-hero .container {
        position: relative;
        z-index: 5;
    }

    .about-hero h1,
    .about-hero p {
        position: relative;
        z-index: 5;
        color: #fff !important;
    }
}

/* =========================================
   ABOUT HERO — FORCE BACKGROUND IMAGE FIX
========================================= */

.about-hero {
    position: relative !important;
    min-height: 650px !important;
    padding: 140px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;

    /* IMPORTANT: Global section background override */
    background: none !important;
}

/* Background image as overlay layer */
.about-hero::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;

    background-image:
        linear-gradient(rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45)),
        url("http://localhost/usabestwindowtinting/wordpress/wp-content/themes/usabestwindowtinting-theme/assets/images/residential-hero-badge.png") !important;

    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

/* Remove global pseudo conflict */
.about-hero::after {
    display: none !important;
}

/* Content above image */
.about-hero .container {
    position: relative !important;
    z-index: 5 !important;
}

.about-hero .hero-content {
    position: relative !important;
    z-index: 5 !important;
    max-width: 900px;
}

/* Heading */
.about-hero h1 {
    color: #ffffff !important;
    font-size: 72px !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: none !important;
}

/* Paragraph */
.about-hero p {
    color: #ffffff !important;
    font-size: 22px !important;
    line-height: 1.8;
    max-width: 800px;
}

/* Mobile */
@media (max-width: 768px) {
    .about-hero {
        padding: 100px 20px !important;
        min-height: 500px !important;
    }

    .about-hero h1 {
        font-size: 42px !important;
    }

    .about-hero p {
        font-size: 17px !important;
    }
}

/* =========================================
   ABOUT HERO — FINAL WORKING BACKGROUND IMAGE
   (same method as service page)
========================================= */

/* =========================================
   ABOUT HERO SECTION — TEMPLATE STYLE MATCH
========================================= */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #f4f6f9;
}

/* HERO SECTION */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #f4f6f9;
}

/* HERO SECTION */
.about-hero {
    position: relative;
    min-height: 600px;
    padding: 100px 0 120px;
    display: flex;
    align-items: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://images.pexels.com/photos/209235/pexels-photo-209235.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #111;
    /* EXACT working image path */
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45)),
        url("/usabestwindowtinting/wordpress/wp-content/themes/usabestwindowtinting-theme/assets/images/about-bg.jpg") !important;

}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.hero-content {
    max-width: 600px;
    color: white;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* ORANGE BOX - ab screen ke andar hi rahega */
.orange-feature-box {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    background: #f15a37;
    padding: 40px 24px;
    border-radius: 16px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
    z-index: 5;
    text-align: center;
}


/* White circular dot / badge inside orange box */
.white-dot {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.white-dot span {
    font-size: 38px;
    font-weight: 800;
    color: #f15a37;
    line-height: 1;
}

.orange-feature-box h3 {
    color: white;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.orange-feature-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-hero {
        padding: 80px 0;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .orange-feature-box {
        position: static;
        transform: none;
        margin-top: 48px;
        width: 100%;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .orange-feature-box {
        padding: 30px 20px;
    }

    .white-dot {
        width: 75px;
        height: 75px;
    }

    .white-dot span {
        font-size: 30px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #0a0a0a;
    /* fallback dark background */
}

/* ========== TEAM SECTION - BLACK BACKGROUND ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #0a0a0a;
}

/* c1 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #0a0a0a;
    /* fallback dark background */
}

/* ========== TEAM SECTION - BLACK BACKGROUND ========== */
.team-section {
    background: #ffbdfb !important;
    /* pure black background as requested */
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

/* optional subtle texture / grain (keeps black background but adds depth) */
.team-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0) 80%);
    pointer-events: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.team-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

/* heading style exactly as in the reference (Our Team & Capabilities) */
.team-content h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-transform: none;
    position: relative;
    display: inline-block;
}

/* optional: subtle underline accent (like modern design) */
.team-content h2::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #f15a37;
    /* orange accent similar to previous brand */
    border-radius: 4px;
}

.team-content p {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    font-weight: 400;
}

.team-content p strong {
    color: #f15a37;
    font-weight: 700;
}

/* unordered list with check icons */
.team-list {
    list-style: none;
    margin: 40px 0 32px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
}

.team-list li {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    /* background: rgba(255, 255, 255, 0.05); */
    background: rgba(0, 0, 0, 0.05);
    border: 2px solid rgb(0 0 0 / 20%) !important;
    padding: 12px 28px;
    border-radius: 60px;
    backdrop-filter: blur(2px);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-list li i {
    color: #f15a37;
    font-size: 20px;
}

.team-list li:hover {
    background: rgba(241, 90, 55, 0.15);
    border-color: rgba(241, 90, 55, 0.4);
    transform: translateY(-2px);
}

/* highlight paragraph */
.highlight {
    font-size: 18px;
    background: rgba(241, 90, 55, 0.12);
    padding: 20px 28px;
    border-radius: 24px;
    border-left: 5px solid #f15a37;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    margin-top: 20px;
    text-align: left;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .team-section {
        padding: 70px 0;
    }

    .team-content h2 {
        font-size: 38px;
    }

    .team-content p {
        font-size: 17px;
        line-height: 1.55;
    }

    .team-list {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .team-list li {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 16px;
    }

    .highlight {
        font-size: 16px;
        padding: 18px 20px;
    }
}

@media (max-width: 480px) {
    .team-content h2 {
        font-size: 32px;
    }

    .team-content h2::after {
        width: 60px;
        bottom: -8px;
    }

    .team-content p {
        font-size: 15px;
    }

    .team-list li {
        font-size: 15px;
    }

    .highlight {
        font-size: 14px;
        padding: 16px;
    }
}

/* maintain black background for all screen sizes */
@media (prefers-color-scheme: dark) {
    .team-section {
        background: #000000;
    }
}

/* C2 */
/* ===== FONT AWESOME & IMAGES KE LIYE ===== */
/* Head mein ye link lagao: 
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
*/

/* ===== SECTION 1: SAFETY & OSHA COMPLIANCE ===== */
.safety-section {
    background: linear-gradient(135deg, #0a2e3f 0%, #0f4c5f 100%);
    padding: 100px 0;
    position: relative;
    color: #fff;
    overflow: hidden;
}

.safety-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://images.pexels.com/photos/159306/construction-site-building-construction-159306.jpeg?auto=compress&cs=tinysrgb&w=600') center/cover no-repeat;
    opacity: 0.12;
    pointer-events: none;
}

.safety-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.safety-section h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    display: inline-block;
    border-left: 6px solid #ffc107;
    padding-left: 25px;
}

.safety-section h2 span {
    color: #ffc107;
}

.safety-section>.container>p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 650px;
}

.safety-stats {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 25px 35px;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    min-width: 150px;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.stat-card h3 {
    font-size: 36px;
    font-weight: 800;
    color: #ffc107;
}

.stat-card p {
    font-size: 14px;
    margin: 0;
}

.safety-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    list-style: none;
    margin-top: 40px;
}

.safety-list li {
    /* background: rgba(255, 255, 255, 0.08); */
    background: #D35400;
    padding: 18px 22px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.safety-list li:hover {
    background: #16A085;
    transform: translateX(8px);
}

.safety-list li i {
    font-size: 28px;
    color: #ffc107;
}

/* C3 */
/* ===== WHAT WE DO SECTION - DARK BACKGROUND (CLEARVIEW STYLE) ===== */
.whatwedo-section {
    background: #BB8FCE !important;
    padding: 100px 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Subtle gradient overlay for depth */
.whatwedo-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: radial-gradient(circle at 20% 30%, rgba(241, 90, 55, 0.08) 0%, transparent 70%) !important;
    pointer-events: none !important;
}

.whatwedo-section .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    position: relative !important;
    z-index: 2 !important;
}

.whatwedo-content {
    text-align: center !important;
}

/* Heading Style - Modern Clean */
.whatwedo-section h2 {
    font-size: 48px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 18px !important;
    letter-spacing: -0.02em !important;
    position: relative !important;
    display: inline-block !important;
}

/* Underline accent - Orange like ClearView */
.whatwedo-section h2::after {
    content: '' !important;
    position: absolute !important;
    bottom: -12px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 70px !important;
    height: 4px !important;
    background: #f15a37 !important;
    border-radius: 4px !important;
}

/* Subtitle */
.whatwedo-section>.container>.whatwedo-content>p:first-of-type {
    font-size: 18px !important;
    color: rgba(255, 255, 255, 0.65) !important;
    max-width: 650px !important;
    margin: 25px auto 50px auto !important;
    line-height: 1.6 !important;
}

/* Services Grid - Modern Card Layout (ClearView inspired) */
.services-list {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 24px !important;
    margin-bottom: 50px !important;
}

/* Service Card Style - Glassmorphism + Hover Effect */
.service-item {
    background: #2980B9 !important;
    backdrop-filter: blur(10px) !important;
    padding: 32px 24px !important;
    border-radius: 24px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 16px !important;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    cursor: pointer !important;
}

.service-item:hover {
    transform: translateY(-8px) !important;
    background: rgba(241, 90, 55, 0.12) !important;
    border-color: rgba(241, 90, 55, 0.4) !important;
    box-shadow: 0 20px 35px -15px rgba(0, 0, 0, 0.5) !important;
}

/* Icons - Large & Vibrant */
.service-item i {
    font-size: 44px !important;
    color: #f15a37 !important;
    transition: all 0.3s ease !important;
}

.service-item:hover i {
    transform: scale(1.08) !important;
    color: #ff7b5a !important;
}

/* Card Text */
.service-item {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    letter-spacing: -0.3px !important;
}

/* Optional: Add small description inside cards (like ClearView) */
.service-item::after {
    content: "Learn more →" !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: rgba(241, 90, 55, 0.7) !important;
    margin-top: 8px !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.service-item:hover::after {
    opacity: 1 !important;
}

/* Highlight Box - Modern Quote Style */
.whatwedo-section .highlight {
    background: rgba(241, 90, 55, 0.08) !important;
    padding: 28px 35px !important;
    border-radius: 28px !important;
    border-left: 5px solid #f15a37 !important;
    max-width: 800px !important;
    margin: 20px auto 0 auto !important;
    font-size: 17px !important;
    line-height: 1.65 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500 !important;
    text-align: left !important;
    backdrop-filter: blur(4px) !important;
    transition: all 0.3s ease !important;
}

.whatwedo-section .highlight:hover {
    background: rgba(241, 90, 55, 0.12) !important;
    transform: scale(1.01) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .whatwedo-section {
        padding: 70px 0 !important;
    }

    .whatwedo-section h2 {
        font-size: 36px !important;
    }

    .services-list {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .service-item {
        padding: 25px 20px !important;
        flex-direction: row !important;
        text-align: left !important;
        gap: 20px !important;
    }

    .service-item i {
        font-size: 36px !important;
    }

    .service-item::after {
        display: none !important;
    }

    .whatwedo-section .highlight {
        padding: 20px 24px !important;
        font-size: 15px !important;
    }

    .whatwedo-section>.container>.whatwedo-content>p:first-of-type {
        font-size: 16px !important;
        margin-bottom: 35px !important;
    }
}

@media (max-width: 480px) {
    .whatwedo-section h2 {
        font-size: 30px !important;
    }

    .service-item {
        padding: 18px 16px !important;
        font-size: 16px !important;
    }

    .service-item i {
        font-size: 30px !important;
    }

    .whatwedo-section .highlight {
        padding: 18px 20px !important;
        font-size: 14px !important;
    }
}

/* c4 */
/* ===== COMMERCIAL EXPERTISE SECTION - STYLISH MODERN ===== */
.expertise-section {
    background: linear-gradient(135deg, #0f172a 0%, #eef2ff 100%) !important;
    padding: 90px 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Subtle background pattern */
.expertise-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: radial-gradient(circle at 10% 20%, rgba(241, 90, 55, 0.03) 0%, transparent 50%) !important;
    pointer-events: none !important;
}

.expertise-section .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    position: relative !important;
    z-index: 2 !important;
}

.expertise-content {
    text-align: center !important;
}

/* Heading h2 - GLOBAL CSS RESPECTED, isko change nahi kiya */
/* Sirf ensure kar raha hoon ki koi override na ho */
.expertise-section h2 {
    /* global css already hai, ise force nahi kar rahe */
    margin-bottom: 20px !important;
}

/* Subtitle paragraph */
.expertise-section>.container>.expertise-content>p {
    font-size: 18px !important;
    color: #4a5568 !important;
    max-width: 650px !important;
    margin: 0 auto 45px auto !important;
    line-height: 1.6 !important;
}

/* ===== PARTNERS LIST - MODERN CHIPS/CARDS STYLE ===== */
.partners-list {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    margin-bottom: 60px !important;
}

.partner {
    background: #ffffff !important;
    padding: 12px 28px !important;
    border-radius: 60px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid rgba(241, 90, 55, 0.15) !important;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1) !important;
    cursor: default !important;
    letter-spacing: -0.2px !important;
}

.partner:hover {
    transform: translateY(-3px) !important;
    background: #f15a37 !important;
    color: #ffffff !important;
    border-color: #f15a37 !important;
    box-shadow: 0 10px 25px rgba(241, 90, 55, 0.25) !important;
}

/* ===== SOLUTIONS LIST - MODERN CARD STYLE (Expanding Horizons vibe) ===== */
.solutions-list {
    background: #ffffff !important;
    border-radius: 32px !important;
    padding: 45px 40px !important;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    transition: all 0.3s ease !important;
}

.solutions-list:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15) !important;
}

.solutions-list h3 {
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-bottom: 30px !important;
    position: relative !important;
    display: inline-block !important;
}

/* Decorative underline for h3 */
.solutions-list h3::after {
    content: '' !important;
    position: absolute !important;
    bottom: -10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 50px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #f15a37, #ffb347) !important;
    border-radius: 3px !important;
}

.solutions-list ul {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
    gap: 18px !important;
    list-style: none !important;
    margin-top: 30px !important;
}

.solutions-list li {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #334155 !important;
    padding: 14px 18px !important;
    background: #f8fafc !important;
    border-radius: 16px !important;
    transition: all 0.3s ease !important;
    border: 1px solid transparent !important;
}

.solutions-list li:hover {
    background: #fff5f0 !important;
    border-color: rgba(241, 90, 55, 0.2) !important;
    transform: translateX(5px) !important;
}

.solutions-list li i {
    font-size: 24px !important;
    color: #f15a37 !important;
    width: 32px !important;
    text-align: center !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .expertise-section {
        padding: 60px 0 !important;
    }

    .expertise-section>.container>.expertise-content>p {
        font-size: 16px !important;
        margin-bottom: 35px !important;
    }

    .partners-list {
        gap: 12px !important;
        margin-bottom: 45px !important;
    }

    .partner {
        padding: 8px 20px !important;
        font-size: 13px !important;
    }

    .solutions-list {
        padding: 30px 24px !important;
    }

    .solutions-list h3 {
        font-size: 22px !important;
    }

    .solutions-list ul {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .solutions-list li {
        padding: 12px 16px !important;
        font-size: 14px !important;
    }

    .solutions-list li i {
        font-size: 20px !important;
    }
}

@media (max-width: 480px) {
    .partner {
        padding: 6px 16px !important;
        font-size: 12px !important;
    }

    .solutions-list {
        padding: 25px 18px !important;
    }

    .solutions-list h3 {
        font-size: 20px !important;
    }
}

/* c5 */
/* ===== WHY CHOOSE SECTION - PROCESS STYLE (IMAGE WALI LOOK) ===== */
.whychoose-section {
    background: #f5f7fc !important;
    padding: 90px 0 !important;
    position: relative !important;
}

.whychoose-section .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

.whychoose-content {
    text-align: center !important;
}

/* Heading Style - Image jaisa (clean, bold) */
.whychoose-section h2 {
    font-size: 42px !important;
    font-weight: 700 !important;
    color: #1a1a2e !important;
    margin-bottom: 15px !important;
    letter-spacing: -0.5px !important;
    position: relative !important;
    display: inline-block !important;
}

/* Heading ke neeche line - image jaisi */
.whychoose-section h2::after {
    content: '' !important;
    position: absolute !important;
    bottom: -12px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 60px !important;
    height: 3px !important;
    background: #f15a37 !important;
    border-radius: 3px !important;
}

/* ===== GRID - 6 ITEMS (3x2 jaise image mein steps the) ===== */
.why-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin: 55px 0 45px 0 !important;
}

/* Card Style - Bilkul image wale boxes jaisa */
.why-item {
    background: #ffffff !important;
    padding: 35px 20px 30px 20px !important;
    border-radius: 16px !important;
    text-align: center !important;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1) !important;
    border: 1px solid #eef2f6 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02) !important;
}

/* Hover Effect - Image mein step card jaisa feel */
.why-item:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.12) !important;
    border-color: rgba(241, 90, 55, 0.3) !important;
}

/* Icons Style - Bold aur image jaisa prominent */
.why-item i {
    font-size: 48px !important;
    color: #f15a37 !important;
    margin-bottom: 20px !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
}

.why-item:hover i {
    transform: scale(1.05) !important;
}

/* Text Style - Clean sans-serif */
.why-item {
    font-size: 17px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    line-height: 1.4 !important;
}

/* Highlight Box (bottom wala quote) - Clean, light background, left border */
.whychoose-section .highlight {
    background: #ffffff !important;
    padding: 28px 35px !important;
    border-radius: 20px !important;
    border-left: 5px solid #f15a37 !important;
    max-width: 900px !important;
    margin: 25px auto 0 auto !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
    color: #334155 !important;
    font-weight: 500 !important;
    text-align: left !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }

    .whychoose-section h2 {
        font-size: 36px !important;
    }

    .why-item {
        padding: 30px 18px !important;
    }

    .why-item i {
        font-size: 42px !important;
    }

    .why-item {
        font-size: 16px !important;
    }
}

@media (max-width: 576px) {
    .whychoose-section {
        padding: 60px 0 !important;
    }

    .whychoose-section h2 {
        font-size: 30px !important;
    }

    .why-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        margin: 40px 0 35px 0 !important;
    }

    .why-item {
        padding: 25px 18px !important;
        display: flex !important;
        align-items: center !important;
        text-align: left !important;
        gap: 18px !important;
    }

    .why-item i {
        font-size: 36px !important;
        margin-bottom: 0 !important;
    }

    .whychoose-section .highlight {
        padding: 20px 24px !important;
        font-size: 14px !important;
    }
}

/* Medium screens ke liye extra polish */
@media (min-width: 577px) and (max-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .why-item {
        padding: 28px 16px !important;
    }

    .why-item i {
        font-size: 40px !important;
    }
}

/* c6 */
/* ===== CTA SECTION - READY TO WORK STYLE ===== */
.about-cta {
    background: #FFF3E0 !important;
    padding: 70px 20px !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Subtle background pattern for depth */
.about-cta::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.08) 1px, transparent 1px) !important;
    background-size: 30px 30px !important;
    pointer-events: none !important;
}

.about-cta .container {
    max-width: 800px !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 2 !important;
}

/* Heading Style */
.about-cta h2 {
    font-size: 42px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 30px !important;
    line-height: 1.3 !important;
    letter-spacing: -0.5px !important;
}

/* ===== BUTTON - ALAG CLASS (cta-btn-main) ===== */
.cta-btn-main {
    display: inline-block !important;
    background: #ffffff !important;
    color: #f15a37 !important;
    padding: 16px 42px !important;
    border-radius: 50px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
    cursor: pointer !important;
    text-align: center !important;
}

/* Button Hover Effect */
.cta-btn-main:hover {
    transform: translateY(-4px) !important;
    background: #1a1a2e !important;
    color: #ffffff !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25) !important;
}

/* Button Active Effect */
.cta-btn-main:active {
    transform: translateY(1px) !important;
}

/* Phone Text Style */
.cta-phone {
    margin-top: 28px !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.cta-phone i {
    margin-right: 10px !important;
    font-size: 20px !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .about-cta {
        padding: 50px 20px !important;
    }

    .about-cta h2 {
        font-size: 32px !important;
        margin-bottom: 25px !important;
    }

    .cta-btn-main {
        padding: 14px 35px !important;
        font-size: 16px !important;
    }

    .cta-phone {
        font-size: 17px !important;
        margin-top: 22px !important;
    }

    .cta-phone i {
        font-size: 17px !important;
    }
}

@media (max-width: 480px) {
    .about-cta h2 {
        font-size: 26px !important;
    }

    .cta-btn-main {
        padding: 12px 28px !important;
        font-size: 15px !important;
    }

    .cta-phone {
        font-size: 15px !important;
    }
}

/* c7 */
/* ===== CONTACT US PAGE CSS ===== */

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, #0a0a2a 0%, #1a1a3e 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.pexels.com/photos/258154/pexels-photo-258154.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
    opacity: 0.12;
    pointer-events: none;
}

.contact-hero .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Main Contact Section */
.contact-main {
    padding: 70px 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Contact Form */
.contact-form {
    background: #fff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.contact-form>p {
    color: #666;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

label .required {
    color: #f15a37;
}

input,
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #f15a37;
    box-shadow: 0 0 0 3px rgba(241, 90, 55, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #f15a37, #c0392b);
    color: #fff;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(241, 90, 55, 0.3);
}

.recaptcha-note {
    font-size: 12px;
    color: #888;
    margin-top: 15px;
    text-align: center;
}

/* Office Info & Map */
.office-info {
    background: #fff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.office-info h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.badge-customer {
    display: inline-block;
    background: rgba(241, 90, 55, 0.1);
    color: #f15a37;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin: 15px 0 20px;
}

.office-address {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 20px;
    margin: 20px 0;
    border-left: 4px solid #f15a37;
}

.office-address i {
    font-size: 24px;
    color: #f15a37;
    margin-right: 12px;
}

.office-address p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.office-phone {
    margin-top: 15px;
}

.office-phone i {
    font-size: 18px;
    color: #f15a37;
    margin-right: 10px;
}

/* Map Container */
.map-container {
    margin: 25px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: none;
}

/* Email Link */
.email-link {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 16px;
    text-align: center;
}

.email-link i {
    font-size: 20px;
    color: #f15a37;
    margin-right: 10px;
}

.email-link a {
    color: #f15a37;
    text-decoration: none;
    font-weight: 600;
}

.email-link a:hover {
    text-decoration: underline;
}

/* Offices Section */
.offices-section {
    background: #f0f2f5;
    padding: 70px 0;
}

.offices-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.offices-section h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.offices-section>.container>p {
    text-align: center;
    color: #666;
    margin-bottom: 45px;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.office-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #eef2f6;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(241, 90, 55, 0.2);
}

.office-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #f15a37;
    margin-bottom: 15px;
}

.office-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

.office-card i {
    width: 24px;
    color: #f15a37;
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-hero h1 {
        font-size: 38px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 576px) {

    .contact-form,
    .office-info {
        padding: 25px;
    }

    .contact-form h2,
    .office-info h2 {
        font-size: 26px;
    }

    .offices-section h2 {
        font-size: 30px;
    }
}

/* c7 */
/* =========================================
   CONTACT HERO SECTION — PREMIUM ANIMATED GRADIENT
   (Global CSS background override fixed)
========================================= */

.contact-hero {
    position: relative;
    padding: 120px 0 90px !important;
    text-align: center;
    overflow: hidden;

    /* Global CSS override */
    background: none !important;
}

/* Animated Gradient Background Layer */
.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(-45deg,
            #0f172a,
            #2563eb,
            #1d4ed8,
            #be3144,
            #0f172a);

    background-size: 400% 400%;
    animation: gradientFlow 12s ease infinite;
}

/* Soft glowing blur effect */
.contact-hero::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -150px;
    right: -150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(90px);
    z-index: 2;
    pointer-events: none;
}

/* Gradient Animation */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Content above background */
.contact-hero .container {
    position: relative;
    z-index: 5;
    max-width: 1100px;
    margin: auto;
}

/* Heading */
.contact-hero h1 {
    font-size: 60px;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 20px;
    text-shadow: none !important;
}

/* Paragraph */
.contact-hero p {
    font-size: 19px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92) !important;
    max-width: 850px;
    margin: 0 auto 35px;
}

/* Service States Wrapper */
.service-states {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

/* State Badge */
.state-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 50px;

    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);

    color: #ffffff;
    font-size: 15px;
    font-weight: 600;

    backdrop-filter: blur(10px);
    transition: all 0.35s ease;
}

/* Icon */
.state-badge i {
    color: #ffffff;
    font-size: 16px;
}

/* Hover Effect */
.state-badge:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: 90px 20px 70px !important;
    }

    .contact-hero h1 {
        font-size: 40px;
    }

    .contact-hero p {
        font-size: 16px;
    }

    .state-badge {
        font-size: 14px;
        padding: 12px 18px;
    }
}

/* d1 */
/* =========================================
   CONTACT HERO — FORCE BACKGROUND FIX
   (Global CSS ko override karega)
========================================= */

.contact-hero {
    position: relative !important;
    padding: 120px 0 90px !important;
    text-align: center !important;
    overflow: hidden !important;
    z-index: 1;

    /* sab purana background hatao */
    background: none !important;
}

/* FORCE background layer */
.contact-hero::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;

    /* Animated Gradient */
    background: linear-gradient(-45deg,
            #0f172a,
            #2563eb,
            #1d4ed8,
            #be3144,
            #0f172a) !important;

    background-size: 400% 400% !important;
    animation: contactGradient 12s ease infinite !important;
}

/* Glow effect */
.contact-hero::after {
    content: "" !important;
    position: absolute !important;
    top: -150px !important;
    right: -150px !important;
    width: 500px !important;
    height: 500px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.08) !important;
    filter: blur(100px) !important;
    z-index: 2 !important;
    pointer-events: none !important;
}

/* Animation */
@keyframes contactGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* content upar rahe */
.contact-hero .container {
    position: relative !important;
    z-index: 5 !important;
}

/* heading */
.contact-hero h1 {
    color: #ffffff !important;
    font-size: 60px !important;
    font-weight: 800 !important;
    margin-bottom: 20px !important;
    text-shadow: none !important;
}

/* paragraph */
.contact-hero p {
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 18px !important;
    line-height: 1.8 !important;
    max-width: 850px !important;
    margin: 0 auto 35px !important;
}

/* badges wrapper */
.service-states {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 15px !important;
    margin-top: 30px !important;
    position: relative !important;
    z-index: 5 !important;
}

/* badge style */
.state-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 14px 24px !important;
    border-radius: 50px !important;

    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;

    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 600 !important;

    backdrop-filter: blur(10px) !important;
    transition: all 0.35s ease !important;
}

/* hover */
.state-badge:hover {
    transform: translateY(-4px) !important;
    background: rgba(255, 255, 255, 0.22) !important;
}

/* c10*/

/* ===== SOLUTIONS HERO SECTION - LEFT + RIGHT IMAGE WITH HOVER ===== */
.solutions-hero-new {
    background: linear-gradient(135deg, #0a0a2a 0%, #1a1a3e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.solutions-container-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.solutions-row-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

/* Left Content */
.solutions-content-new {
    flex: 1;
    min-width: 280px;
}

.solutions-badge-new {
    display: inline-block;
    background: rgba(241, 90, 55, 0.15);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #f15a37;
    margin-bottom: 25px;
}

.solutions-badge-new i {
    margin: 0 5px;
    font-size: 11px;
    color: #f15a37;
}

.solutions-content-new h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.solutions-content-new p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

/* Icons */
.solutions-icons-new {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 35px;
}

.icon-item-new {
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.icon-item-new i {
    font-size: 28px;
    color: #f15a37;
    display: block;
    margin-bottom: 8px;
}

.icon-item-new span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.icon-item-new:hover {
    transform: translateY(-3px);
}

.icon-item-new:hover span {
    color: #f15a37;
}

/* Buttons */
.solutions-buttons-new {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-solution-new {
    display: inline-block;
    background: linear-gradient(135deg, #f15a37, #c0392b);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-solution-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(241, 90, 55, 0.3);
}

.btn-outline-new {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-new:hover {
    border-color: #f15a37;
    background: rgba(241, 90, 55, 0.1);
}

/* Right Side - Image with Hover Effect */
.solutions-image-new {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
}

.image-card-new {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
    max-width: 450px;
}

.image-card-new img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

/* Hover Effect - Image Zoom */
.image-card-new:hover img {
    transform: scale(1.05);
}

/* Overlay on Hover */
.image-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(241, 90, 55, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 24px;
}

.image-card-new:hover .image-overlay-new {
    opacity: 1;
}

.overlay-content-new {
    text-align: center;
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.image-card-new:hover .overlay-content-new {
    transform: translateY(0);
}

.overlay-content-new i {
    font-size: 55px;
    margin-bottom: 15px;
    color: #fff;
}

.overlay-content-new h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.overlay-content-new p {
    font-size: 14px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 900px) {
    .solutions-row-new {
        flex-direction: column;
        text-align: center;
    }

    .solutions-content-new {
        text-align: center;
    }

    .solutions-icons-new {
        justify-content: center;
    }

    .solutions-buttons-new {
        justify-content: center;
    }

    .solutions-content-new h1 {
        font-size: 38px;
    }

    .image-card-new {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .solutions-hero-new {
        padding: 50px 0;
    }

    .solutions-content-new h1 {
        font-size: 30px;
    }

    .solutions-content-new p {
        font-size: 14px;
    }

    .icon-item-new i {
        font-size: 22px;
    }

    .btn-solution-new {
        padding: 10px 22px;
        font-size: 13px;
    }
}

/* c11 */
/* ===== SOLUTIONS HERO SECTION - GLOWING GRADIENT BACKGROUND ===== */
/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 100%);
    padding: 80px 0 60px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.why-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-badge {
    display: inline-block;
    background: rgba(241, 90, 55, 0.12);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #f15a37;
    margin-bottom: 15px;
}

.why-badge i {
    margin: 0 6px;
}

.why-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.why-header p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid - 3 Columns */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Cards */
.why-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Hover Effect - Color Change */
.why-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, #f15a37, #c0392b);
    box-shadow: 0 20px 40px rgba(241, 90, 55, 0.2);
}

.why-card:hover * {
    color: #fff;
}

/* Icons */
.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f15a37, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: all 0.4s;
}

.why-card:hover .why-icon {
    background: #fff;
    transform: scale(1.1);
}

.why-icon i {
    font-size: 32px;
    color: #fff;
    transition: all 0.4s;
}

.why-card:hover .why-icon i {
    color: #f15a37;
}

/* Text */
.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.why-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    transition: color 0.3s;
}

/* Tags */
.why-tags {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.why-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    background: rgba(241, 90, 55, 0.1);
    padding: 5px 12px;
    border-radius: 30px;
    color: #f15a37;
    transition: all 0.3s;
}

.why-card:hover .why-tags span {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* ===== GALLERY SECTION (NECHE) ===== */
.gallery-section {
    background: #fff;
    padding: 60px 0 80px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 45px;
}

.gallery-badge {
    display: inline-block;
    background: rgba(241, 90, 55, 0.12);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #f15a37;
    margin-bottom: 15px;
}

.gallery-badge i {
    margin: 0 6px;
}

.gallery-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.gallery-header p {
    font-size: 16px;
    color: #666;
}

/* Gallery Grid - 3 Columns */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.08);
}

/* Overlay on Hover */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(241, 90, 55, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 40px;
    color: #fff;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-overlay span {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-overlay i,
.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0 40px;
    }

    .why-header h2 {
        font-size: 30px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gallery-section {
        padding: 40px 0 60px;
    }

    .gallery-header h2 {
        font-size: 28px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-image {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .why-header h2 {
        font-size: 26px;
    }

    .why-card {
        padding: 25px 20px;
    }

    .why-icon {
        width: 55px;
        height: 55px;
    }

    .why-icon i {
        font-size: 24px;
    }
}

/* C14 */
/* LOCATION CARD PURPLE HOVER EFFECT */

.location-card {
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 30px !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    transition: all 0.35s ease !important;
    cursor: pointer !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04) !important;
}

/* HOVER EFFECT */
.location-card:hover {
    background: #7c3aed !important;
    /* Purple */
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.25) !important;
    border-color: #7c3aed !important;
}

/* Hover text white */
.location-card:hover h3,
.location-card:hover p {
    color: #ffffff !important;
}

/* Hover icons orange */
.location-card:hover i {
    color: #ffab40 !important;
}

/* Normal heading */
.location-card h3 {
    font-size: 22px !important;
    font-weight: 700 !important;
    margin-bottom: 18px !important;
    transition: all 0.35s ease !important;
}

/* Normal paragraph */
.location-card p {
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #444 !important;
    margin-bottom: 12px !important;
    transition: all 0.35s ease !important;
}

/* Normal icons */
.location-card i {
    color: #f15a37 !important;
    margin-right: 8px !important;
    transition: all 0.35s ease !important;
}

/* C15 */
/* BENEFITS SECTION PINK HOVER EFFECT */

.benefit-item {
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 30px !important;
    text-align: center !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.35s ease !important;
    cursor: pointer !important;
}

/* HOVER EFFECT - PINK */
.benefit-item:hover {
    background: #ff4fa3 !important;
    /* Pink Color */
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(255, 79, 163, 0.25) !important;
    border-color: #ff4fa3 !important;
}

/* Hover text white */
.benefit-item:hover h4,
.benefit-item:hover p {
    color: #ffffff !important;
}

/* Hover icon white */
.benefit-item:hover .benefit-icon {
    color: #ffffff !important;
    transform: scale(1.1) !important;
}

/* Normal Heading */
.benefit-item h4 {
    font-size: 22px !important;
    font-weight: 700 !important;
    margin: 15px 0 !important;
    transition: all 0.35s ease !important;
}

/* Normal Paragraph */
.benefit-item p {
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #555 !important;
    transition: all 0.35s ease !important;
}

/* Icon Style */
.benefit-icon {
    font-size: 42px !important;
    margin-bottom: 15px !important;
    transition: all 0.35s ease !important;
}

/* C16 */
/* ===== COMFORT SECTION - ENHANCED ===== */
/* ===== COMFORT SECTION - FULLY FIXED ===== */
.comfort-section {
    background: linear-gradient(135deg, #0a0a2a 0%, #1a1a3e 100%);
    padding: 80px 0;
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

.comfort-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header */
.comfort-header {
    text-align: center;
    margin-bottom: 50px;
}

.comfort-badge {
    display: inline-block;
    background: rgba(241, 90, 55, 0.15);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #f15a37;
    margin-bottom: 20px;
    border: 1px solid rgba(241, 90, 55, 0.3);
}

.comfort-badge i {
    margin: 0 8px;
}

.comfort-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.comfort-header p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 850px;
    margin: 0 auto;
}

/* Features Grid - 4 Cards (100% Satisfaction wala) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(241, 90, 55, 0.15);
    border-color: #f15a37;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f15a37, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.feature-icon i {
    font-size: 32px;
    color: #fff;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    line-height: 1.5;
}

.feature-progress {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar {
    height: 100%;
    background: #f15a37;
    border-radius: 10px;
}

.feature-percent {
    font-size: 13px;
    font-weight: 600;
    color: #f15a37;
}

/* Services Grid - 3x2 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(241, 90, 55, 0.12);
}

.service-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #f15a37, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.service-icon i {
    font-size: 24px;
    color: #fff;
}

.service-image {
    width: 100%;
    height: 150px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 15px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    line-height: 1.5;
}

.service-tag {
    display: inline-block;
    background: rgba(241, 90, 55, 0.2);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    color: #f15a37;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 45px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s;
}

.stat-box:hover {
    background: rgba(241, 90, 55, 0.12);
    transform: translateY(-3px);
}

.stat-box i {
    font-size: 35px;
    color: #f15a37;
    margin-bottom: 10px;
    display: block;
}

.stat-num {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* Buttons - VISIBLE */
.comfort-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-contact {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 14px 38px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.btn-contact:hover {
    border-color: #f15a37;
    background: rgba(241, 90, 55, 0.1);
    transform: translateY(-2px);
}

.btn-quote {
    display: inline-block;
    background: linear-gradient(135deg, #f15a37, #c0392b);
    color: #fff;
    padding: 14px 38px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(241, 90, 55, 0.3);
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(241, 90, 55, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .comfort-section {
        padding: 60px 0;
    }

    .comfort-header h2 {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .comfort-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-contact,
    .btn-quote {
        width: 80%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stats-row {
        grid-template-columns: 1fr;
    }

    .comfort-header h2 {
        font-size: 26px;
    }
}

/* c17 */
/* FULL CSS FOR COMFORT STATS SECTION */
/* HOVER + GLOW EFFECT + BEFORE AFTER EFFECT */

.comfort-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

.stat-item {
    position: relative;
    background: #808080;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 35px 30px;
    min-width: 240px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

/* BEFORE EFFECT */
.stat-item::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 79, 163, 0.15), transparent 60%);
    transform: scale(0);
    transition: all 0.5s ease;
    z-index: -1;
}

/* AFTER EFFECT */
.stat-item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    z-index: -1;
}

/* HOVER EFFECT */
.stat-item:hover {
    transform: translateY(-10px);
    background: #ff4fa3;
    border-color: #ff4fa3;
    box-shadow: 0 20px 45px rgba(255, 79, 163, 0.30);
}

.stat-item:hover::before {
    transform: scale(1);
}

.stat-item:hover::after {
    border-color: rgba(255, 255, 255, 0.35);
}

/* ICON */
.stat-item i {
    font-size: 34px;
    color: #f15a37;
    margin-bottom: 18px;
    display: block;
    transition: all 0.4s ease;
}

.stat-item:hover i {
    color: #ffffff;
    transform: scale(1.1);
}

/* NUMBER */
.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    transition: all 0.4s ease;
}

/* LABEL */
.stat-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    transition: all 0.4s ease;
}

.stat-item:hover .stat-label {
    color: #ffffff;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .comfort-stats {
        gap: 20px;
    }

    .stat-item {
        min-width: 100%;
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 34px;
    }

    .stat-label {
        font-size: 15px;
    }
}

/* C17 */
/* =========================================
   COMFORT BUTTONS
   EXTRA GLOW + BEFORE AFTER + HOVER EFFECT
========================================= */

.comfort-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

/* BOTH BUTTONS BASE STYLE */
.btn-comfort-outline,
.btn-comfort-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 34px;
    border-radius: 60px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    cursor: pointer;
    letter-spacing: 0.5px;
}

/* BEFORE EFFECT */
.btn-comfort-outline::before,
.btn-comfort-primary::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 220%;
    height: 220%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 60%);
    transform: scale(0);
    transition: all 0.5s ease;
    z-index: -2;
}

/* AFTER EFFECT */
.btn-comfort-outline::after,
.btn-comfort-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 60px;
    transition: all 0.4s ease;
    z-index: -1;
}

/* =========================================
   OUTLINE BUTTON
========================================= */

.btn-comfort-outline {
    background: #2563eb;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.btn-comfort-outline::after {
    border: 2px solid transparent;
}

.btn-comfort-outline:hover {
    transform: translateY(-5px);
    background: #8b5cf6;
    /* Purple */
    border-color: #8b5cf6;
    color: #E74C3C;
    box-shadow:
        0 0 20px rgba(139, 92, 246, 0.35),
        0 0 40px rgba(139, 92, 246, 0.20);
}

.btn-comfort-outline:hover::before {
    transform: scale(1);
}

.btn-comfort-outline:hover::after {
    border-color: rgba(255, 255, 255, 0.35);
}

/* =========================================
   PRIMARY BUTTON
========================================= */

.btn-comfort-primary {
    background: linear-gradient(135deg, #f15a37, #c0392b);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(241, 90, 55, 0.20);
}

.btn-comfort-primary::after {
    border: 2px solid transparent;
}

.btn-comfort-primary:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #ff4fa3, #ff6ec7);
    color: #ffffff;
    box-shadow:
        0 0 20px rgba(255, 79, 163, 0.35),
        0 0 45px rgba(255, 79, 163, 0.25);
}

.btn-comfort-primary:hover::before {
    transform: scale(1);
}

.btn-comfort-primary:hover::after {
    border-color: rgba(255, 255, 255, 0.35);
}

/* ICON EFFECT */
.btn-comfort-outline i,
.btn-comfort-primary i {
    transition: all 0.35s ease;
}

.btn-comfort-outline:hover i,
.btn-comfort-primary:hover i {
    transform: translateX(4px) scale(1.1);
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 768px) {
    .comfort-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-comfort-outline,
    .btn-comfort-primary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 15px 20px;
        font-size: 14px;
    }
}

/* C18 */
/* ===== STATS HIGHLIGHT SECTION ===== */
/* ===== STATS HIGHLIGHT SECTION ===== */

.stats-highlight-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
}

.stats-highlight-box {
    position: relative;
    min-width: 220px;
    padding: 30px 25px;
    border-radius: 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    overflow: hidden;
    cursor: pointer;
}

/* Before Glow Effect */
.stats-highlight-box::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.18), transparent 60%);
    opacity: 0;
    transition: 0.5s;
    z-index: 0;
}

/* After Border Glow */
.stats-highlight-box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 1px solid transparent;
    transition: 0.4s;
    z-index: 0;
}

/* Hover Effect */
.stats-highlight-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.18);
    border-color: rgba(255, 105, 180, 0.35);
    background: rgba(255, 192, 203, 0.08);
}

.stats-highlight-box:hover::before {
    opacity: 1;
}

.stats-highlight-box:hover::after {
    border-color: rgba(255, 105, 180, 0.45);
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.18);
}

/* Icon */
.stats-highlight-box i {
    font-size: 32px;
    color: #f15a37;
    margin-bottom: 15px;
    display: block;
    position: relative;
    z-index: 2;
}

/* Number */
.stats-highlight-num {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

/* Text */
.stats-highlight-text {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-highlight-row {
        gap: 18px;
    }

    .stats-highlight-box {
        min-width: 160px;
        padding: 24px 18px;
    }

    .stats-highlight-num {
        font-size: 32px;
    }

    .stats-highlight-text {
        font-size: 14px;
    }
}

/* WHITE REMOVE — DARK CARD STYLE */

.stats-highlight-box {
    position: relative;
    min-width: 220px;
    padding: 30px 25px;
    border-radius: 24px;
    text-align: center;

    /* WHITE hata kar dark glass effect */
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    overflow: hidden;
    cursor: pointer;
}

/* Hover me pink/purple glow */
.stats-highlight-box:hover {
    transform: translateY(-8px);
    background: rgba(128, 0, 128, 0.12);
    border-color: rgba(255, 105, 180, 0.35);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.18);
}

/* Number */
.stats-highlight-num {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

/* Text */
.stats-highlight-text {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

/* Icon */
.stats-highlight-box i {
    font-size: 32px;
    color: #f15a37;
    margin-bottom: 15px;
    display: block;
}

/* C19 */
/* 4 cards ko ek hi row me lane ke liye */

.stats-highlight-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
    flex-wrap: nowrap;
    /* IMPORTANT: same row */
    margin-top: 40px;
}

/* Card */
.stats-highlight-box {
    flex: 1;
    min-width: 220px;
    max-width: 260px;
    padding: 30px 25px;
    border-radius: 24px;
    text-align: center;

    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);

    transition: all 0.4s ease;
    overflow: hidden;
    cursor: pointer;
}

/* Hover */
.stats-highlight-box:hover {
    transform: translateY(-8px);
    background: rgba(128, 0, 128, 0.12);
    border-color: rgba(255, 105, 180, 0.35);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.18);
}

/* Icon */
.stats-highlight-box i {
    font-size: 32px;
    color: #f15a37;
    margin-bottom: 15px;
    display: block;
}

/* Number */
.stats-highlight-num {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

/* Text */
.stats-highlight-text {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .stats-highlight-row {
        flex-wrap: wrap;
    }

    .stats-highlight-box {
        min-width: 45%;
    }
}

@media (max-width: 576px) {
    .stats-highlight-box {
        min-width: 100%;
    }
}

/* C20 */
/* PREMIUM CONTACT BUTTON */
.premium-contact-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;

    color: #ffffff;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    border: 2px solid rgba(255, 255, 255, 0.12);

    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

/* BEFORE EFFECT */
.premium-contact-btn::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.18),
            transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

/* AFTER GLOW EFFECT */
.premium-contact-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 60px;
    background: rgba(168, 85, 247, 0.08);
    box-shadow:
        0 0 0 rgba(168, 85, 247, 0),
        0 0 0 rgba(168, 85, 247, 0);
    transition: all 0.4s ease;
    z-index: -2;
}

/* ICON */
.premium-contact-btn i {
    transition: all 0.4s ease;
    font-size: 14px;
}

/* HOVER EFFECT */
.premium-contact-btn:hover {
    transform: translateY(-4px);
    border-color: rgba(168, 85, 247, 0.45);
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    box-shadow:
        0 18px 40px rgba(168, 85, 247, 0.28),
        0 0 30px rgba(168, 85, 247, 0.18);
}

/* BEFORE ANIMATION */
.premium-contact-btn:hover::before {
    left: 120%;
}

/* AFTER GLOW */
.premium-contact-btn:hover::after {
    box-shadow:
        0 0 25px rgba(168, 85, 247, 0.25),
        0 0 50px rgba(168, 85, 247, 0.12);
}

/* ICON MOVE */
.premium-contact-btn:hover i {
    transform: translateX(6px);
}

/* C22 */
/* ================================
   PREMIUM STEPS SECTION
================================ */

/* LIGHT PREMIUM VERSION — BLACK REMOVED */

.premium-steps-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin-top: 50px;
}

.premium-step-box {
    position: relative;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    padding: 35px 30px;
    border-radius: 24px;
    background: rgba(255, 240, 250, 0.95);
    border: 1px solid rgba(124, 58, 237, 0.18);
    color: #4b5563;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow:
        0 10px 30px rgba(124, 58, 237, 0.08),
        inset 0 0 20px rgba(255, 255, 255, 0.4);
}

/* BEFORE Effect */
.premium-step-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg,
            rgba(241, 90, 55, 0.08),
            rgba(124, 58, 237, 0.06),
            rgba(37, 99, 235, 0.06));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -2;
}

/* AFTER Glow */
.premium-step-box::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: linear-gradient(135deg,
            #f15a37,
            #7c3aed,
            #2563eb);
    z-index: -3;
    opacity: 0;
    transition: all 0.4s ease;
    filter: blur(18px);
}

/* Hover */
.premium-step-box:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(124, 58, 237, 0.45);
    box-shadow:
        0 20px 50px rgba(124, 58, 237, 0.12),
        0 0 35px rgba(124, 58, 237, 0.12);
}

.premium-step-box:hover::before {
    opacity: 1;
}

.premium-step-box:hover::after {
    opacity: 1;
}

/* Number */
.premium-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            #f15a37,
            #7c3aed);
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    box-shadow:
        0 8px 20px rgba(241, 90, 55, 0.18),
        0 0 20px rgba(124, 58, 237, 0.10);
}

.premium-step-box:hover .premium-step-number {
    transform: scale(1.08);
    transition: 0.3s;
}

/* Mobile */
@media (max-width: 768px) {
    .premium-steps-wrap {
        flex-direction: column;
        align-items: center;
    }

    .premium-step-box {
        width: 100%;
        max-width: 100%;
        padding: 28px 22px;
        font-size: 15px;
    }
}

/* C23 */
/* PREMIUM FEATURE LIST — CLASS NAME CHANGED + BEFORE/AFTER + GLOW */

.premium-feature-wrap {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 40px;
}

/* Each Feature Box */
.premium-feature-box {
    position: relative;
    padding: 26px 30px;
    border-radius: 24px;
    background: rgba(255, 245, 250, 0.96);
    border: 1px solid rgba(124, 58, 237, 0.16);
    color: #4b5563;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.7;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow:
        0 10px 30px rgba(124, 58, 237, 0.06),
        inset 0 0 20px rgba(255, 255, 255, 0.45);
}

/* BEFORE Premium Layer */
.premium-feature-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg,
            rgba(241, 90, 55, 0.08),
            rgba(236, 72, 153, 0.08),
            rgba(124, 58, 237, 0.06));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -2;
}

/* AFTER Glow Border */
.premium-feature-box::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: linear-gradient(135deg,
            #f15a37,
            #ec4899,
            #7c3aed);
    z-index: -3;
    opacity: 0;
    transition: all 0.4s ease;
    filter: blur(18px);
}

/* Hover */
.premium-feature-box:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(236, 72, 153, 0.35);
    box-shadow:
        0 18px 45px rgba(236, 72, 153, 0.10),
        0 0 30px rgba(124, 58, 237, 0.08);
}

.premium-feature-box:hover::before {
    opacity: 1;
}

.premium-feature-box:hover::after {
    opacity: 1;
}

/* Emoji Icon */
.premium-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-right: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            #f15a37,
            #ec4899);
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    vertical-align: middle;
    box-shadow:
        0 8px 20px rgba(241, 90, 55, 0.14),
        0 0 20px rgba(236, 72, 153, 0.08);
    transition: 0.3s;
}

.premium-feature-box:hover .premium-feature-icon {
    transform: scale(1.08) rotate(3deg);
}

/* Mobile */
@media (max-width: 768px) {
    .premium-feature-box {
        padding: 22px 20px;
        font-size: 15px;
        line-height: 1.6;
    }

    .premium-feature-icon {
        width: 46px;
        height: 46px;
        font-size: 20px;
        margin-right: 12px;
    }
}

/* 2 ITEMS IN ONE ROW */

.premium-feature-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* ek row me 2 */
    gap: 22px;
    margin-top: 40px;
}

/* Each Feature Box */
.premium-feature-box {
    position: relative;
    padding: 26px 30px;
    border-radius: 24px;
    background: rgba(255, 245, 250, 0.96);
    border: 1px solid rgba(124, 58, 237, 0.16);
    color: #4b5563;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.7;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow:
        0 10px 30px rgba(124, 58, 237, 0.06),
        inset 0 0 20px rgba(255, 255, 255, 0.45);
}

/* BEFORE Layer */
.premium-feature-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg,
            rgba(241, 90, 55, 0.08),
            rgba(236, 72, 153, 0.08),
            rgba(124, 58, 237, 0.06));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -2;
}

/* AFTER Glow */
.premium-feature-box::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: linear-gradient(135deg,
            #f15a37,
            #ec4899,
            #7c3aed);
    z-index: -3;
    opacity: 0;
    transition: all 0.4s ease;
    filter: blur(18px);
}

.premium-feature-box:hover {
    transform: translateY(-8px);
    border-color: rgba(236, 72, 153, 0.35);
}

.premium-feature-box:hover::before {
    opacity: 1;
}

.premium-feature-box:hover::after {
    opacity: 1;
}

/* Icon */
.premium-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-right: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f15a37, #ec4899);
    color: #ffffff;
    font-size: 24px;
    vertical-align: middle;
}

/* Mobile */
@media (max-width: 768px) {
    .premium-feature-wrap {
        grid-template-columns: 1fr;
        /* mobile me single row */
    }
}

/* LAST CARD CENTER ALIGN */

.premium-feature-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 40px;
    align-items: stretch;
}

/* Third item center me */
.premium-feature-box:last-child {
    grid-column: 1 / span 2;
    /* dono columns cover kare */
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    /* center align */
}

/* Feature Box */
.premium-feature-box {
    position: relative;
    padding: 26px 30px;
    border-radius: 24px;
    background: rgba(255, 245, 250, 0.96);
    border: 1px solid rgba(124, 58, 237, 0.16);
    color: #4b5563;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.7;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow:
        0 10px 30px rgba(124, 58, 237, 0.06),
        inset 0 0 20px rgba(255, 255, 255, 0.45);
}

/* Hover */
.premium-feature-box:hover {
    transform: translateY(-8px);
    border-color: rgba(236, 72, 153, 0.35);
}

/* Mobile */
@media (max-width: 768px) {
    .premium-feature-wrap {
        grid-template-columns: 1fr;
    }

    .premium-feature-box:last-child {
        grid-column: auto;
        max-width: 100%;
    }
}

/* C23 */
/* EXTRA PREMIUM STATS SECTION */

.premium-stats-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

/* Card */
.premium-stat-card {
    position: relative;
    padding: 38px 28px;
    border-radius: 28px;
    background: rgba(255, 245, 250, 0.96);
    border: 1px solid rgba(236, 72, 153, 0.12);
    text-align: center;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow:
        0 12px 35px rgba(236, 72, 153, 0.06),
        inset 0 0 18px rgba(255, 255, 255, 0.55);
}

/* Before Effect */
.premium-stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: linear-gradient(135deg,
            rgba(241, 90, 55, 0.05),
            rgba(236, 72, 153, 0.08),
            rgba(124, 58, 237, 0.05));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

/* After Glow */
.premium-stat-card::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    background: linear-gradient(135deg,
            #f15a37,
            #ec4899,
            #7c3aed);
    filter: blur(18px);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

/* Hover */
.premium-stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(236, 72, 153, 0.28);
}

.premium-stat-card:hover::before {
    opacity: 1;
}

.premium-stat-card:hover::after {
    opacity: 1;
}

/* Number */
/* Standard compatibility fix */

.premium-stat-number {
    background: linear-gradient(135deg,
            #a855f7,
            #ec4899,
            #f15a37);

    -webkit-background-clip: text;
    background-clip: text;
    /* standard property for compatibility */

    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Text */
.premium-stat-text {
    font-size: 17px;
    font-weight: 500;
    color: blue;
    /* white nahi */
    line-height: 1.7;
    margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .premium-stats-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .premium-stat-card {
        padding: 30px 22px;
    }

    .premium-stat-number {
        font-size: 34px;
    }

    .premium-stat-text {
        font-size: 15px;
    }
}

/* D1 */
/* DONO COLOR CHANGE - Soft Blue + Purple Premium */

.premium-stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.12),
            /* soft blue */
            rgba(139, 92, 246, 0.12),
            /* purple */
            rgba(168, 85, 247, 0.08)
            /* violet */
        );
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.premium-stat-card::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    background: linear-gradient(135deg,
            #3b82f6,
            /* blue */
            #8b5cf6,
            /* purple */
            #a855f7
            /* violet */
        );
    filter: blur(20px);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

/* Hover */
.premium-stat-card:hover::before {
    opacity: 1;
}

.premium-stat-card:hover::after {
    opacity: 1;
}

/* c24 */
/* PREMIUM RED STATS SECTION */

.premium-red-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.premium-red-box {
    padding: 30px 24px;
    border-radius: 24px;
    background: rgba(255, 245, 245, 0.95);
    border: 1px solid rgba(239, 68, 68, 0.12);
    text-align: center;
    transition: all 0.4s ease;
    box-shadow:
        0 10px 30px rgba(239, 68, 68, 0.05),
        inset 0 0 15px rgba(255, 255, 255, 0.5);
}

.premium-red-box:hover {
    transform: translateY(-8px);
    border-color: rgba(239, 68, 68, 0.25);
    box-shadow:
        0 18px 40px rgba(239, 68, 68, 0.08),
        inset 0 0 20px rgba(255, 255, 255, 0.6);
}

/* Number Red Color */
.premium-red-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 12px;
    line-height: 1;
}

/* Text Red Color */
.premium-red-text {
    font-size: 16px;
    font-weight: 500;
    color: #b91c1c;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .premium-red-stats {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .premium-red-number {
        font-size: 34px;
    }

    .premium-red-text {
        font-size: 15px;
    }
}

/* c25 */
/* IMAGE HEIGHT 3X BIGGER */

.service-image-large {
    width: 100% !important;
    height: 900px !important;
    overflow: hidden !important;
    border-radius: 24px !important;
}

.service-image-large img {
    width: 100% !important;
    height: 50% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 24px !important;
    margin-top: 190px !important;
}

/* c26 */
/* Image Hover Zoom Effect */
.service-image-large {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 24px !important;
    cursor: pointer !important;
    margin-top: 60px !important;
}

.service-image-large img {
    width: 100% !important;
    height: 520px !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 24px !important;
    transition: transform 0.6s ease, box-shadow 0.6s ease !important;
}

/* Mouse Hover Zoom */
.service-image-large:hover img {
    transform: scale(1.08) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25) !important;
}

/* Extra Premium Glow Effect */
.service-image-large::before {
    content: "" !important;
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg,
            rgba(255, 0, 150, 0.12),
            rgba(0, 102, 255, 0.10)) !important;
    opacity: 0 !important;
    transition: all 0.5s ease !important;
    z-index: 2 !important;
    border-radius: 24px !important;
    pointer-events: none !important;
}

.service-image-large:hover::before {
    opacity: 1 !important;
}

/* c26 */
/* Responsive Image Hover Zoom Effect */

.service-image-large {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 24px !important;
    cursor: pointer !important;
    margin-top: 60px !important;
}

.service-image-large img {
    width: 100% !important;
    height: 520px !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 24px !important;
    transition: transform 0.6s ease, box-shadow 0.6s ease !important;
}

/* Hover Effect Desktop */
.service-image-large:hover img {
    transform: scale(1.08) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25) !important;
}

/* Glow Overlay */
.service-image-large::before {
    content: "" !important;
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg,
            rgba(255, 0, 150, 0.12),
            rgba(0, 102, 255, 0.10)) !important;
    opacity: 0 !important;
    transition: all 0.5s ease !important;
    z-index: 2 !important;
    border-radius: 24px !important;
    pointer-events: none !important;
}

.service-image-large:hover::before {
    opacity: 1 !important;
}

/* Tablet Responsive */
@media (max-width: 992px) {
    .service-image-large {
        margin-top: 40px !important;
    }

    .service-image-large img {
        height: 420px !important;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .service-image-large {
        margin-top: 30px !important;
        border-radius: 18px !important;
    }

    .service-image-large img {
        height: 300px !important;
        border-radius: 18px !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .service-image-large img {
        height: 240px !important;
    }
}

/* c27 */
/* ===== MAIN HEADER - CENTERED ===== */
.main-header {
    background: #f7f5f3;
    padding: 15px 50px !important;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.main-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

/* Logo */
.main-header .logo {
    flex-shrink: 0;
}

.main-header .logo img {
    max-height: 55px;
    width: auto;
}

/* Navigation - Centered */
.main-header .main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-header .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}

.main-header .nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
    transition: all 0.3s;
    position: relative;
}

.main-header .nav-menu li a:hover {
    color: #f15a37;
}

/* Hover Underline Effect */
.main-header .nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -15 !important;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #f15a37;
    transition: width 0.3s;
}

.main-header .nav-menu li a:hover::after {
    width: 100%;
}

/* Quote Button */
.main-header .quote-btn {
    background: #1f53dc !important;
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.main-header .quote-btn i {
    font-size: 14px;
}

.main-header .quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(241, 90, 55, 0.4) !important;
}

/* Mobile Toggle - Hide on Desktop */
.main-header .mobile-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
    .main-header .container {
        justify-content: space-between;
    }

    .main-header .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: #0a0a2a !important;
        flex-direction: column;
        transition: left 0.3s ease;
        z-index: 1000;
        padding: 30px 20px;
    }

    .main-header .main-nav.active {
        left: 0;
    }

    .main-header .nav-menu {
        flex-direction: column;
        gap: 20px;
    }

    .main-header .mobile-toggle {
        display: block;
    }

    .main-header .quote-btn {
        margin-left: auto;
        margin-right: 15px;
    }
}

@media (max-width: 768px) {
    .main-header .container {
        padding: 0 15px;
    }

    .main-header .logo img {
        max-height: 45px;
    }

    .main-header .quote-btn {
        padding: 8px 18px;
        font-size: 12px;
    }

    .main-header .quote-btn i {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .main-header .quote-btn span {
        display: none;
    }

    .main-header .quote-btn i {
        margin: 0;
    }

    .main-header .quote-btn {
        padding: 8px 12px;
    }
}

/* c29 */
/* ===================================== */
/* PREMIUM HEADER STYLE - SAME AS IMAGE */
/* ===================================== */

.main-header {
    background: #ffffff !important;
    padding: 14px 0 !important;
    position: relative !important;
    z-index: 9999 !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04) !important;
}

.main-header .container {
    max-width: 1320px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

/* ====================== */
/* LOGO */
/* ====================== */

.logo img,
.custom-logo {
    max-height: 90px !important;
    width: auto !important;
    display: block !important;
}

/* ====================== */
/* NAVIGATION WRAPPER */
/* ====================== */

#mobileMenu {
    background: #f8f8f8 !important;
    border-radius: 60px !important;
    padding: 18px 35px !important;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03) !important;
}

/* ====================== */
/* NAV MENU */
/* ====================== */

.nav-menu {
    display: flex !important;
    align-items: center !important;
    gap: 34px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-menu li {
    margin: 0 !important;
    padding: 0 !important;
}

.nav-menu li a {
    text-decoration: none !important;
    color: #2563eb !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

/* Hover underline */

.nav-menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0%;
    height: 2px;
    background: #2563eb;
    transition: 0.3s;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-menu li a:hover {
    color: #0f3fb8 !important;
}

/* ====================== */
/* QUOTE BUTTON */
/* ====================== */

.quote-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    color: #ffffff !important;
    padding: 16px 34px !important;
    border-radius: 50px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25) !important;
    transition: all 0.3s ease !important;
}

.quote-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.35) !important;
}

/* ====================== */
/* MOBILE TOGGLE */
/* ====================== */

.mobile-toggle {
    display: none !important;
    font-size: 30px !important;
    color: #2563eb !important;
    cursor: pointer !important;
}

/* ===================================== */
/* MOBILE RESPONSIVE */
/* ===================================== */

@media (max-width: 992px) {

    .mobile-toggle {
        display: block !important;
    }

    #mobileMenu {
        display: none;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background: #ffffff !important;
        border-radius: 0 0 20px 20px !important;
        padding: 20px !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
        z-index: 9999 !important;
    }

    .nav-menu {
        flex-direction: column !important;
        gap: 14px !important;
        width: 100% !important;
    }

    .nav-menu li {
        width: 100% !important;
    }

    .nav-menu li a {
        display: block !important;
        width: 100% !important;
        padding: 14px 18px !important;
        background: #f7f7f7 !important;
        border-radius: 12px !important;
    }

    .quote-btn {
        display: none !important;
    }
}

/* c31 */
/* ============================= */
/* MOBILE VIEW CENTER ALIGN FIX  */
/* ============================= */

@media (max-width: 768px) {

    .states-section {
        padding: 40px 15px;
    }

    .states-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 20px;
    }

    .state-card {
        width: 100% !important;
        max-width: 350px !important;
        margin: 0 auto !important;
        text-align: center !important;
        padding: 25px 20px !important;
        border-radius: 20px;
    }

    .state-card h2 {
        text-align: center !important;
        margin-bottom: 18px;
    }

    .state-card ul {
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
    }

    .state-card ul li {
        text-align: center !important;
        margin-bottom: 12px;
    }

    .state-card ul li a {
        display: inline-block;
        text-align: center !important;
    }

}

/* C31 */
/* ============================= */
/* FOOTER MOBILE CENTER FIX */
/* ============================= */

@media (max-width: 992px) {

    .site-footer {
        text-align: center !important;
        padding: 50px 20px !important;
    }

    .site-footer .container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 15px !important;
    }

    .footer-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 35px !important;
        text-align: center !important;
    }

    .footer-col {
        width: 100% !important;
        max-width: 500px !important;
        text-align: center !important;
        margin: 0 auto !important;
    }

    .footer-col h3 {
        text-align: center !important;
        margin-bottom: 18px !important;
    }

    .footer-col p {
        text-align: center !important;
        margin-bottom: 12px !important;
        line-height: 1.8 !important;
    }

    .footer-col ul {
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
        text-align: center !important;
    }

    .footer-col ul li {
        margin-bottom: 12px !important;
        text-align: center !important;
    }

    .footer-col ul li a {
        display: inline-block !important;
        text-align: center !important;
    }

    .social-links {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 15px !important;
        margin-top: 20px !important;
        flex-wrap: wrap !important;
    }

    .social-links a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .footer-bottom {
        text-align: center !important;
        margin-top: 35px !important;
        padding-top: 25px !important;
    }

    .footer-bottom p {
        text-align: center !important;
        line-height: 1.8 !important;
        font-size: 14px !important;
    }

}

/* C34 */
/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #0a0a2a 0%, #1a1a3e 100%);
    padding: 60px 0 20px;
    color: rgba(255, 255, 255, 0.8);
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #f15a37;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-col ul li a:hover {
    color: #f15a37;
    padding-left: 5px;
}

.footer-col i {
    width: 25px;
    color: #f15a37;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #f15a37;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* c32 */
/* ===================================== */
/* STEP SECTION FULL MOBILE RESPONSIVE */
/* ===================================== */

.steps {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.step {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.10);
}

/* Icon Box */
.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.20);
}

.step-icon i {
    font-size: 30px;
    color: #ffffff;
}

/* Title */
.step strong {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

/* Paragraph */
.step p {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

/* ===================================== */
/* TABLET RESPONSIVE */
/* ===================================== */

@media (max-width: 992px) {

    .steps {
        gap: 20px;
    }

    .step {
        min-width: 260px;
        max-width: 100%;
        padding: 30px 20px;
    }

}

/* ===================================== */
/* MOBILE RESPONSIVE */
/* ===================================== */

@media (max-width: 768px) {

    .steps {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 20px !important;
        margin-top: 30px !important;
    }

    .step {
        width: 100% !important;
        max-width: 340px !important;
        min-width: unset !important;
        margin: 0 auto !important;
        padding: 28px 20px !important;
        border-radius: 20px !important;
        text-align: center !important;
    }

    .step-icon {
        width: 70px !important;
        height: 70px !important;
        margin-bottom: 18px !important;
    }

    .step-icon i {
        font-size: 26px !important;
    }

    .step strong {
        font-size: 20px !important;
        margin-bottom: 10px !important;
    }

    .step p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

}

/* c33 */
/* =========================================
   LEED IMAGES MOBILE RESPONSIVE + CENTER
   1 Row me 1 Image
========================================= */

/* Desktop Default */
.leed-images-box {
    display: flex !important;
    gap: 25px !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
}

.leed-image-box {
    flex: 1 !important;
    max-width: 420px !important;
    display: flex !important;
    justify-content: center !important;
}

.leed-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 18px !important;
    object-fit: cover !important;
}

/* =========================================
   MOBILE VIEW
========================================= */

@media (max-width: 768px) {

    .leed-images-box {
        display: flex !important;
        flex-direction: column !important;
        /* 1 row me 1 image */
        justify-content: center !important;
        align-items: center !important;
        gap: 20px !important;
        width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .leed-image-box {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto !important;
    }

    .leed-image {
        width: 90% !important;
        max-width: 420px !important;
        height: auto !important;
        margin: 0 auto !important;
        display: block !important;
        border-radius: 16px !important;
    }

}

/* C35 */
/* =========================================
MOBILE RESPONSIVE CENTER FIX
Layout change nahi hoga
Sirf mobile me center hoga
========================================= */

@media (max-width: 768px) {

    /* Main section */
    .solutions-hero-new {
        padding: 60px 20px !important;
        text-align: center !important;
    }

    /* Container */
    .solutions-container-new {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }

    /* Row */
    .solutions-row-new {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 40px !important;
    }

    /* Left Content */
    .solutions-content-new {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        margin: 0 auto !important;
    }

    /* Heading */
    .solutions-content-new h1 {
        text-align: center !important;
        font-size: 34px !important;
        line-height: 1.3 !important;
        margin-bottom: 18px !important;
    }

    /* Paragraph */
    .solutions-content-new p {
        text-align: center !important;
        font-size: 16px !important;
        line-height: 1.8 !important;
        margin: 0 auto 25px !important;
        max-width: 100% !important;
    }

    /* Badge */
    .solutions-badge-new {
        display: inline-block !important;
        margin: 0 auto 20px !important;
        text-align: center !important;
    }

    /* Icons Box */
    .solutions-icons-new {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 15px !important;
        margin-top: 25px !important;
    }

    .icon-item-new {
        justify-content: center !important;
        text-align: center !important;
    }

    /* Buttons */
    .solutions-buttons-new {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 15px !important;
        margin-top: 30px !important;
    }

    .btn-solution-new {
        width: 100% !important;
        max-width: 280px !important;
        text-align: center !important;
        justify-content: center !important;
    }

    /* Right Side Video */
    .solutions-video-new {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto !important;
    }

    .video-card-new {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }

    .video-thumbnail {
        width: 100% !important;
        text-align: center !important;
    }

    .video-thumbnail img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto !important;
        border-radius: 20px !important;
    }

    /* Video Wrapper */
    .video-wrapper {
        width: 100% !important;
    }

    .solution-video {
        width: 100% !important;
        height: auto !important;
        border-radius: 20px !important;
    }

    /* Play button center */
    .play-button {
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
}

/* =========================================
MISSION CONTENT MOBILE CENTER FIX
========================================= */

@media (max-width: 768px) {

    .mission-content {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
        padding: 0 20px !important;
    }

    .mission-content h2 {
        text-align: center !important;
        font-size: 32px !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }

    .mission-content p {
        text-align: center !important;
        font-size: 16px !important;
        line-height: 1.8 !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }

}

/* C35 */
/* ===================================== */
/* STICKY HEADER CSS */
/* header.php ke inline <style> me add karo */
/* ===================================== */

.main-header {
    position: sticky !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

/* container alignment better */
.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* logo fix */
.logo img {
    max-height: 70px;
    width: auto;
    display: block;
}

/* Desktop Nav */
@media (min-width: 993px) {

    .mobile-toggle {
        display: none !important;
    }

    #mobileMenu {
        display: block !important;
    }

    .nav-menu {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 18px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-menu li {
        list-style: none;
    }

    .nav-menu li a {
        text-decoration: none;
        font-weight: 700;
        font-size: 14px;
        color: #111;
        padding: 10px 14px;
        border-radius: 10px;
        transition: 0.3s;
    }

    .nav-menu li a:hover {
        background: rgba(241, 90, 55, 0.08);
        color: #f15a37;
    }
}

/* Mobile */
@media (max-width: 992px) {

    .main-header {
        padding: 10px 0;
    }

    .mobile-toggle {
        display: block !important;
        font-size: 30px;
        cursor: pointer;
        z-index: 999999;
        color: #111;
    }

    #mobileMenu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        border-radius: 0 0 20px 20px;
        z-index: 99999;
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        gap: 14px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        width: 100%;
        padding: 14px;
        background: #f8f8f8;
        border-radius: 12px;
        text-decoration: none;
        color: #111;
        font-weight: 700;
        transition: 0.3s;
    }

    .nav-menu li a:hover {
        background: rgba(241, 90, 55, 0.08);
        color: #f15a37;
    }

    .quote-btn {
        display: none !important;
    }
}

/* c36 */
/* =========================================
SOCIAL ICONS PERFECT CENTER + PREMIUM HOVER
Facebook / Instagram / LinkedIn / TikTok
========================================= */

.social-links {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.social-links a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Icon perfectly center */
.social-links a i {
    font-size: 22px;
    line-height: 1;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

/* Individual Colors */
.social-links a:nth-child(1) {
    background: #1877f2;
    /* Facebook */
    color: #fff;
}

.social-links a:nth-child(2) {
    background: linear-gradient(45deg,
            #f09433,
            #e6683c,
            #dc2743,
            #cc2366,
            #bc1888);
    /* Instagram */
    color: #fff;
}

.social-links a:nth-child(3) {
    background: #0a66c2;
    /* LinkedIn */
    color: #fff;
}

.social-links a:nth-child(4) {
    background: #000000;
    /* TikTok */
    color: #fff;
}

/* Before Glow Effect */
.social-links a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.18);
    transform: scale(0);
    border-radius: 50%;
    transition: all 0.4s ease;
    z-index: 1;
}

/* Premium Hover */
.social-links a:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.social-links a:hover::before {
    transform: scale(1.2);
}

.social-links a:hover i {
    transform: scale(1.12);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .social-links {
        justify-content: center;
    }

    .social-links a {
        width: 48px;
        height: 48px;
    }

    .social-links a i {
        font-size: 20px;
    }
}

/* c37 */
/* =========================================
FULL HERO BACKGROUND IMAGE FIX
grediant.jfif ko pura hero background banana
========================================= */

.states-hub-section {
    background:
        linear-gradient(rgba(10, 10, 42, 0.65),
            rgba(10, 10, 42, 0.65)),
        url("<?php echo get_template_directory_uri(); ?>/assets/images/grediant.jfif") center center / cover no-repeat !important;

    padding: 100px 0 !important;
    position: relative;
    overflow: hidden;
    min-height: 700px;
}

/* old rotating effect hata do */
.states-hub-section::before {
    display: none !important;
}

/* section header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* badge */
.section-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

/* heading */
.section-header h1 {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 18px;
    line-height: 1.2;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

/* paragraph */
.section-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.92) !important;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

/* mobile responsive */
@media (max-width: 768px) {
    .states-hub-section {
        padding: 70px 0 !important;
        min-height: auto;
        background-position: center center !important;
    }

    .section-header h1 {
        font-size: 30px !important;
        line-height: 1.3;
    }

    .section-header p {
        font-size: 15px;
    }

    .section-badge {
        font-size: 13px;
        padding: 8px 18px;
    }
}

/* c38 */
/* Georgia Locations Heading Center */
.georgia-location-heading {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: #0a0a2a;
    margin-bottom: 15px;
    line-height: 1.3;
    padding-left: 300px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .georgia-location-heading {
        font-size: 30px;
        text-align: center;
        margin-bottom: 12px;
    }
}

/* c38 */
/* ============================= */
/* CAROUSEL SECTION */
/* ============================= */

.carousel-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a2a, #1a1a3e);
    overflow: hidden;
}

.carousel-heading {
    text-align: center;
    margin-bottom: 50px;
}

.carousel-heading h2 {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.carousel-heading p {
    max-width: 750px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.carousel-container {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 30px;
    animation: scroll 28s linear infinite;
    width: max-content;
}

.project-card {
    min-width: 320px;
    max-width: 320px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transition: 0.4s;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.project-info {
    padding: 22px;
}

.project-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #111827;
}

.project-info p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Mobile Responsive */

@media (max-width: 768px) {

    .carousel-heading h2 {
        font-size: 30px;
    }

    .project-card {
        min-width: 280px;
        max-width: 280px;
    }

    .project-card img {
        height: 200px;
    }

}

/* C39 */
/* ============================= */
/* CTA SECTION */
/* ============================= */

.cta-state {
    padding: 90px 0;
    background: linear-gradient(135deg, #f15a37, #c0392b);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-state::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.cta-state::after {
    content: "";
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.cta-badge i {
    margin: 0 8px;
}

.cta-state h2 {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-state p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 35px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-feature {
    background: rgba(255, 255, 255, 0.12);
    padding: 14px 22px;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    backdrop-filter: blur(10px);
}

.cta-feature i {
    margin-right: 8px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #f15a37;
    padding: 16px 42px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: 0.35s;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.cta-btn i {
    transition: 0.3s;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

/* Mobile Responsive */

@media (max-width: 768px) {

    .cta-state {
        padding: 70px 20px;
    }

    .cta-state h2 {
        font-size: 30px;
    }

    .cta-state p {
        font-size: 15px;
    }

    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
    }

}

/* Features Box Text Color Fix */

.cta-feature {
    background: rgba(255, 255, 255, 0.12);
    padding: 14px 22px;
    border-radius: 50px;

    /* yahan color change kiya gaya hai */
    color: #111827;

    font-weight: 700;
    font-size: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.cta-feature i {
    margin-right: 8px;
    color: #ffffff;
}

/* Trusted Georgia Window Tinting Experts Badge Color Fix */

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);

    /* text color change */
    color: #111827;

    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.cta-badge i {
    margin: 0 8px;

    /* icon color */
    color: #f15a37;
}

/* c40 */

.atlanta-project-heading {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111827;
    padding-left: 300px;
}


.atlanta-project-text {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
}


.scroll-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
}

.scroll-item {
    text-align: center;
    max-width: 350px;
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.scroll-item:hover {
    transform: translateY(-8px);
}

.scroll-item img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    margin-bottom: 20px;
}

.scroll-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
}

.scroll-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .atlanta-project-heading {
        font-size: 28px;
    }

    .atlanta-project-text {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .scroll-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .scroll-item {
        width: 100%;
        max-width: 100%;
    }

}

/* c41 */
/* Premium Hero Section */

.city-hero {
    background:
        radial-gradient(circle at top left, rgba(241, 90, 55, 0.18), transparent 35%),
        radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.18), transparent 35%),
        linear-gradient(135deg, #0a0a2a 0%, #111827 45%, #1a1a3e 100%);
    padding: 110px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Premium Badge */

.city-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    padding: 12px 28px;
    border-radius: 50px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.city-badge i {
    color: #f15a37;
    margin: 0 8px;
}

/* Premium Heading */

.city-hero h1 {
    font-size: 62px;
    font-weight: 900;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* Content */

.hero-subtext {
    max-width: 850px;
    margin: 0 auto 40px;
    font-size: 19px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

/* Feature Boxes */

.hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.hero-feature {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 24px;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.hero-feature:hover {
    transform: translateY(-5px);
    background: rgba(241, 90, 55, 0.18);
}

.hero-feature i {
    color: #f15a37;
    margin-right: 8px;
}

/* Buttons */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #f15a37, #d94720);
    color: #ffffff;
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s;
    box-shadow: 0 15px 30px rgba(241, 90, 55, 0.25);
}

.hero-btn-primary:hover {
    transform: translateY(-4px);
}

.hero-btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s;
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Mobile */

@media (max-width: 768px) {

    .city-hero {
        padding: 80px 0;
    }

    .city-hero h1 {
        font-size: 34px;
    }

    .hero-subtext {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-feature {
        width: 100%;
        max-width: 320px;
    }

}

/* d1 */
/* ============================= */
/* IMPORTANT FIX - REMOVE GLOBE EFFECT */
/* + ADD PREMIUM GRADIENT BACKGROUND */
/* ============================= */

.city-hero {
    position: relative !important;
    padding: 110px 0 !important;
    text-align: center !important;
    overflow: hidden !important;

    /* IMPORTANT: Proper Gradient Background */
    background: linear-gradient(135deg,
            #0b1120 0%,
            #111827 35%,
            #1e293b 70%,
            #0f172a 100%) !important;
}

/* ============================= */
/* LEFT GLOW EFFECT */
/* ============================= */

.city-hero::before {
    content: "" !important;
    position: absolute !important;
    top: -150px !important;
    left: -150px !important;
    width: 400px !important;
    height: 400px !important;
    background: rgba(241, 90, 55, 0.18) !important;
    border-radius: 50% !important;
    filter: blur(120px) !important;
    z-index: 0 !important;
}

/* ============================= */
/* RIGHT GLOW EFFECT */
/* ============================= */

.city-hero::after {
    content: "" !important;
    position: absolute !important;
    right: -150px !important;
    bottom: -150px !important;
    width: 450px !important;
    height: 450px !important;
    background: rgba(59, 130, 246, 0.16) !important;
    border-radius: 50% !important;
    filter: blur(140px) !important;
    z-index: 0 !important;
}

/* ============================= */
/* CONTENT ABOVE BACKGROUND */
/* ============================= */

.city-hero .container {
    position: relative !important;
    z-index: 2 !important;
}

/* ============================= */
/* IMPORTANT: REMOVE OLD GLOBE H1 EFFECT */
/* ============================= */

.city-hero h1 {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;

    font-size: 60px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
    margin-bottom: 25px !important;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
    letter-spacing: -1px !important;
}

/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {

    .city-hero {
        padding: 80px 0 !important;
    }

    .city-hero h1 {
        font-size: 34px !important;
    }

}


/* C46 */
/* Service Links Section - New */
/* .service-links-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.service-links-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.service-links-wrapper h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.service-links-wrapper>p {
    color: #666;
    margin-bottom: 40px;
}

.states-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: left;
    margin-bottom: 40px;
}

.state-link-group h3 {
    color: #f15a37;
    font-size: 22px;
    margin-bottom: 15px;
    border-left: 3px solid #f15a37;
    padding-left: 15px;
}

.state-link-group ul {
    list-style: none;
    padding: 0;
}

.state-link-group ul li {
    margin-bottom: 10px;
}

.state-link-group ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.state-link-group ul li a:hover {
    color: #f15a37;
    padding-left: 5px;
}

.state-hub-link {
    text-align: center;
    margin-top: 20px;
}

.hub-link-btn {
    display: inline-block;
    background: linear-gradient(135deg, #f15a37, #c0392b);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.hub-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(241, 90, 55, 0.3);
}

@media (max-width: 768px) {
    .states-links-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
} */

/* c47 */
/* ===== SERVICE LINKS SECTION - GLOWING DARK BACKGROUND ===== */
.service-links-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a2a 0%, #1a1a3e 30%, #0d1b2a 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Glowing Background */
.service-links-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(241, 90, 55, 0.12) 0%, rgba(241, 90, 55, 0.05) 30%, transparent 70%);
    animation: rotateGlowPremium 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateGlowPremium {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Second Glow Layer */
.service-links-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 40%, rgba(241, 90, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.service-links-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 5;
}

/* Heading Style - White */
.service-links-wrapper h2 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 20px rgba(241, 90, 55, 0.3);
}

.service-links-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f15a37, #ffb347, #f15a37);
    border-radius: 4px;
}

.service-links-wrapper>p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 50px;
}

/* States Grid */
.states-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* State Link Group Cards - Dark Glassmorphism */
.state-link-group {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 30px 25px;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Card Hover Glow Effect */
.state-link-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(241, 90, 55, 0.2), transparent);
    transition: left 0.6s ease;
}

.state-link-group:hover::before {
    left: 100%;
}

.state-link-group::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f15a37, #ffb347, #f15a37);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.state-link-group:hover::after {
    transform: scaleX(1);
}

.state-link-group:hover {
    transform: translateY(-8px);
    background: rgba(241, 90, 55, 0.12);
    border-color: rgba(241, 90, 55, 0.4);
    box-shadow: 0 25px 45px rgba(241, 90, 55, 0.25);
}

/* State Heading - White with Orange Accent */
.state-link-group h3 {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(241, 90, 55, 0.3);
}

.state-link-group h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #f15a37;
    border-radius: 3px;
    transition: width 0.3s;
}

.state-link-group:hover h3::after {
    width: 100%;
}

/* List Items */
.state-link-group ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.state-link-group ul li {
    margin-bottom: 12px;
    opacity: 0;
    transform: translateX(-15px);
    animation: slideInPremium 0.4s ease forwards;
}

.state-link-group ul li:nth-child(1) {
    animation-delay: 0.05s;
}

.state-link-group ul li:nth-child(2) {
    animation-delay: 0.1s;
}

.state-link-group ul li:nth-child(3) {
    animation-delay: 0.15s;
}

.state-link-group ul li:nth-child(4) {
    animation-delay: 0.2s;
}

.state-link-group ul li:nth-child(5) {
    animation-delay: 0.25s;
}

@keyframes slideInPremium {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Links - Light Color for Dark Background */
.state-link-group ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    padding: 6px 0;
}

.state-link-group ul li a::before {
    content: '▹';
    color: #f15a37;
    font-size: 12px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s;
}

.state-link-group ul li a:hover {
    color: #f15a37;
    transform: translateX(10px);
    text-shadow: 0 0 8px rgba(241, 90, 55, 0.5);
}

.state-link-group ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Hub Link Button */
.state-hub-link {
    text-align: center;
    margin-top: 30px;
}

.hub-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f15a37, #c0392b);
    color: #fff;
    padding: 14px 40px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(241, 90, 55, 0.3);
}

/* Button Shine Effect */
.hub-link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.hub-link-btn:hover::before {
    left: 100%;
}

.hub-link-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(241, 90, 55, 0.5);
}

.hub-link-btn:hover i {
    transform: translateX(5px);
}

.hub-link-btn i {
    transition: transform 0.3s;
}

/* Responsive */
@media (max-width: 992px) {
    .states-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-links-wrapper h2 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .service-links-section {
        padding: 60px 0;
    }

    .states-links-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-links-wrapper h2 {
        font-size: 32px;
    }

    .service-links-wrapper>p {
        font-size: 16px;
    }

    .state-link-group h3 {
        font-size: 22px;
    }

    .hub-link-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .service-links-wrapper h2 {
        font-size: 28px;
    }

    .state-link-group {
        padding: 25px 20px;
    }
}

/* c48 */
/* ===== SERVICE LINKS SECTION - DARK GLOWING BACKGROUND (FORCED) ===== */
.service-links-section {
    background: linear-gradient(135deg, #0a0a2a 0%, #1a1a3e 30%, #0d1b2a 100%) !important;
    padding: 80px 0 !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

.service-links-section::before {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    left: -50% !important;
    width: 200% !important;
    height: 200% !important;
    background: radial-gradient(circle, rgba(241, 90, 55, 0.15) 0%, transparent 70%) !important;
    animation: rotateGlowPremium 20s linear infinite !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

@keyframes rotateGlowPremium {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.service-links-wrapper {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    text-align: center !important;
    position: relative !important;
    z-index: 2 !important;
}

.service-links-wrapper h2 {
    font-size: 48px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
    text-shadow: 0 0 20px rgba(241, 90, 55, 0.3) !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
}

.service-links-wrapper h2::after {
    content: '' !important;
    position: absolute !important;
    bottom: -15px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 80px !important;
    height: 4px !important;
    background: #f15a37 !important;
    border-radius: 4px !important;
}

.service-links-wrapper>p {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 18px !important;
    margin-bottom: 50px !important;
}

.states-links-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin-bottom: 50px !important;
}

.state-link-group {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 24px !important;
    padding: 30px 25px !important;
    transition: all 0.4s ease !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.state-link-group:hover {
    transform: translateY(-8px) !important;
    background: rgba(241, 90, 55, 0.15) !important;
    border-color: rgba(241, 90, 55, 0.4) !important;
    box-shadow: 0 25px 45px rgba(241, 90, 55, 0.25) !important;
}

.state-link-group h3 {
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
    position: relative !important;
    display: inline-block !important;
}

.state-link-group h3::after {
    content: '' !important;
    position: absolute !important;
    bottom: -8px !important;
    left: 0 !important;
    width: 40px !important;
    height: 3px !important;
    background: #f15a37 !important;
    border-radius: 3px !important;
    transition: width 0.3s !important;
}

.state-link-group:hover h3::after {
    width: 100% !important;
}

.state-link-group ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 20px 0 0 !important;
}

.state-link-group ul li {
    margin-bottom: 12px !important;
}

.state-link-group ul li a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s !important;
    padding: 6px 0 !important;
}

.state-link-group ul li a::before {
    content: '▹' !important;
    color: #f15a37 !important;
    font-size: 12px !important;
    opacity: 0 !important;
    transform: translateX(-8px) !important;
    transition: all 0.3s !important;
}

.state-link-group ul li a:hover {
    color: #f15a37 !important;
    transform: translateX(10px) !important;
}

.state-link-group ul li a:hover::before {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.state-hub-link {
    text-align: center !important;
    margin-top: 30px !important;
}

.hub-link-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    background: linear-gradient(135deg, #f15a37, #c0392b) !important;
    color: #ffffff !important;
    padding: 14px 40px !important;
    border-radius: 60px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    transition: all 0.4s !important;
    box-shadow: 0 5px 20px rgba(241, 90, 55, 0.3) !important;
    border: none !important;
}

.hub-link-btn:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(241, 90, 55, 0.5) !important;
}

@media (max-width: 992px) {
    .states-links-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .service-links-wrapper h2 {
        font-size: 38px !important;
    }
}

@media (max-width: 768px) {
    .service-links-section {
        padding: 60px 0 !important;
    }

    .states-links-grid {
        grid-template-columns: 1fr !important;
    }

    .service-links-wrapper h2 {
        font-size: 32px !important;
    }

    .service-links-wrapper>p {
        font-size: 16px !important;
    }

    .state-link-group h3 {
        font-size: 22px !important;
    }

    .hub-link-btn {
        padding: 12px 30px !important;
        font-size: 14px !important;
    }
}
/*c47*/
/* ========================================= */
/* COMMERCIAL HERO SECTION - BACKGROUND FIX */
/* ========================================= */

.commercial-hero {
    position: relative !important;
    min-height: 700px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    overflow: hidden !important;

    background-image: url("/wp-content/themes/usabestwindowtinting-theme/assets/images/commercial-hero-bg.JPG") !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}
/*c49*/
/* BEAUTIFUL VIDEO THUMBNAIL EFFECT */

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    background: #000;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.video-wrapper video {
    width: 100%;
    display: block;
    border-radius: 20px;
    object-fit: cover;
    filter: brightness(0.75);
    transition: all 0.4s ease;
}

.video-wrapper:hover video {
    filter: brightness(0.9);
    transform: scale(1.02);
}

/* Dark overlay on thumbnail */
.video-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.15)
    );
    z-index: 1;
    pointer-events: none;
    border-radius: 20px;
}

/* Play Button Overlay */
.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    cursor: pointer;
}

/* Beautiful Play Circle */
.play-icon {
    width: 90px;
    height: 90px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #ffffff;
    box-shadow: 0 10px 35px rgba(0,0,0,0.25);
    transition: all 0.35s ease;
    animation: pulsePlay 2s infinite;
}

.play-icon:hover {
    transform: scale(1.12);
    background: #f15a37;
    border-color: #f15a37;
    box-shadow: 0 15px 40px rgba(241,90,55,0.35);
}
/*C50*/
/* =========================================
   MONITOR SCREEN IMAGE FIX
========================================= */

.monitor-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
    padding: 80px 0;
    background: #f8fafc;
}

.monitor {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Screen Box */
.monitor .screen {
    width: 420px;
    height: 280px;
    background: #111;
    border: 12px solid #2c2c2c;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Image perfect fit */
.monitor .screen img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 6px;
}

/* BEFORE / AFTER Tag */
.monitor .tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #f15a37;
    color: #fff;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 30px;
    z-index: 5;
    letter-spacing: 1px;
}

/* Stand */
.monitor .stand {
    width: 120px;
    height: 18px;
    background: #444;
    margin: 0 auto;
    border-radius: 0 0 12px 12px;
    position: relative;
}

.monitor .stand::before {
    content: "";
    width: 50px;
    height: 50px;
    background: #555;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .monitor .screen {
        width: 100%;
        max-width: 360px;
        height: 240px;
    }

    .monitor-wrapper {
        gap: 40px;
        padding: 60px 20px;
    }
}
/*C52*/
/* =========================================
   PREMIUM BEFORE / AFTER 3D CAROUSEL MONITOR
========================================= */

.monitor-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 850px;
    padding: 100px 40px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(241,90,55,0.15), transparent 40%),
        radial-gradient(circle at bottom right, rgba(0,140,255,0.12), transparent 40%),
        linear-gradient(135deg, #f8fbff 0%, #eef5ff 50%, #ffffff 100%);
}

/* decorative glow lines */
.monitor-wrapper::before,
.monitor-wrapper::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    z-index: 0;
    filter: blur(80px);
    opacity: 0.5;
}

.monitor-wrapper::before {
    top: -120px;
    left: -120px;
    background: rgba(241, 90, 55, 0.18);
}

.monitor-wrapper::after {
    bottom: -120px;
    right: -120px;
    background: rgba(0, 132, 255, 0.15);
}

.monitor {
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
    cursor: pointer;
}

/* default state */
.monitor.before {
    transform: translateX(140px) scale(0.88);
    z-index: 2;
}

.monitor.after {
    transform: translateX(-140px) scale(1);
    z-index: 3;
}

/* Hover BEFORE = BEFORE front */
.monitor.before:hover {
    transform: translateX(0px) scale(1.12);
    z-index: 5;
}

.monitor.before:hover ~ .monitor.after {
    transform: translateX(-180px) scale(0.85);
    z-index: 1;
    opacity: 0.8;
}

/* Hover AFTER = AFTER front */
.monitor.after:hover {
    transform: translateX(0px) scale(1.12);
    z-index: 5;
}

.monitor-wrapper:has(.monitor.after:hover) .monitor.before {
    transform: translateX(180px) scale(0.85);
    z-index: 1;
    opacity: 0.8;
}

/* SCREEN */
.monitor .screen {
    width: 720px;
    height: 460px;
    background: #0d1117;
    border: 14px solid #1f2937;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 30px 80px rgba(0,0,0,0.18),
        0 0 0 rgba(241,90,55,0);
    transition: all 0.45s ease;
}

/* LED Glow Effect */
.monitor:hover .screen {
    box-shadow:
        0 35px 90px rgba(0,0,0,0.22),
        0 0 40px rgba(241,90,55,0.25),
        0 0 80px rgba(241,90,55,0.12);
}

/* Image */
.monitor .screen img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.5s ease;
}

.monitor:hover .screen img {
    transform: scale(1.06);
}

/* BEFORE / AFTER Badge */
.monitor .tag {
    position: absolute;
    top: 22px;
    left: 22px;
    background: linear-gradient(135deg, #f15a37, #ff7f50);
    color: #fff;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 40px;
    z-index: 5;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(241,90,55,0.25);
}

/* Stand */
.monitor .stand {
    width: 180px;
    height: 20px;
    background: #374151;
    margin: 0 auto;
    border-radius: 0 0 14px 14px;
    position: relative;
}

.monitor .stand::before {
    content: "";
    width: 70px;
    height: 65px;
    background: #4b5563;
    position: absolute;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* floating design particles */
.monitor-wrapper .floating-shape {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(241,90,55,0.06);
    animation: floatMove 8s ease-in-out infinite;
}

@keyframes floatMove {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-25px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Mobile */
@media (max-width: 992px) {
    .monitor-wrapper {
        flex-direction: column;
        min-height: auto;
        gap: 50px;
    }

    .monitor.before,
    .monitor.after {
        transform: none !important;
        opacity: 1 !important;
    }

    .monitor .screen {
        width: 100%;
        max-width: 420px;
        height: 280px;
    }
}
/*v52*/
/* =========================================
   PREMIUM OVERLAP MONITOR STYLE
   SAME AS REFERENCE IMAGE
========================================= */

.monitor-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 850px;
    padding: 100px 40px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
    overflow: hidden;
}

/* decorative gradient effect */
.monitor-wrapper::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(241,90,55,0.08), transparent 70%);
    top: -150px;
    left: -150px;
    z-index: 0;
}

.monitor-wrapper::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0,120,255,0.06), transparent 70%);
    bottom: -150px;
    right: -150px;
    z-index: 0;
}

.monitor {
    position: relative;
    transition: all 0.5s ease;
    cursor: pointer;
    z-index: 2;
}

/* LEFT SCREEN */
.monitor.before {
    transform: translateX(180px) rotate(-10deg) scale(0.88);
    z-index: 2;
}

/* RIGHT SCREEN */
.monitor.after {
    transform: translateX(-180px) rotate(0deg) scale(1);
    z-index: 3;
}

/* hover effect */
.monitor.before:hover {
    transform: translateX(40px) rotate(0deg) scale(1.08);
    z-index: 5;
}

.monitor.after:hover {
    transform: translateX(-40px) scale(1.08);
    z-index: 5;
}

/* monitor screen */
.monitor .screen {
    width: 720px;
    height: 460px;
    background: #000;
    border: 18px solid #0a0a0a;
    border-bottom: 40px solid #d9d9d9;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

/* image fit */
.monitor .screen img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: 0.5s;
}

.monitor:hover .screen img {
    transform: scale(1.05);
}

/* top camera dot */
.monitor .screen::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #111;
    border-radius: 50%;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

/* BEFORE AFTER label */
.monitor .tag {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #f15a37;
    color: #fff;
    padding: 10px 24px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    z-index: 5;
    letter-spacing: 1px;
}

/* stand */
.monitor .stand {
    width: 180px;
    height: 20px;
    background: #cfcfcf;
    margin: 0 auto;
    border-radius: 0 0 12px 12px;
    position: relative;
}

.monitor .stand::before {
    content: "";
    width: 70px;
    height: 60px;
    background: #dcdcdc;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 8px;
}

/* responsive */
@media (max-width: 992px) {
    .monitor-wrapper {
        flex-direction: column;
        align-items: center;
        min-height: auto;
        gap: 50px;
    }

    .monitor.before,
    .monitor.after {
        transform: none !important;
    }

    .monitor .screen {
        width: 100%;
        max-width: 400px;
        height: 260px;
    }
}
/*c54*/
/* Pulse Animation */
@keyframes pulsePlay {
    0% {
        box-shadow: 0 0 0 0 rgba(241,90,55,0.35);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(241,90,55,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(241,90,55,0);
    }
}
/*c55*/
/* =========================================
BEFORE / AFTER MONITOR SECTION
PREMIUM BIG SCREEN STYLE
========================================= */

/* =========================================
MONITOR CAROUSEL SECTION
AUTO LOOP + SIDE CUT VIEW + ARROWS
========================================= */

.monitor-carousel-section {
    padding: 100px 0;
    background: #dff3b2;
    position: relative;
    overflow: hidden;
}

.monitor-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.monitor-slider-track {
    display: flex;
    transition: 0.6s ease;
}

.monitor-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 50px;
    padding: 20px;
}

/* monitor */
.monitor .screen {
    width: 520px;
    height: 320px;
    background: #111;
    border: 18px solid #2e2e2e;
    border-bottom: 35px solid #cfcfcf;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.monitor .screen img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.monitor .stand {
    width: 130px;
    height: 18px;
    background: #cfcfcf;
    margin: 0 auto;
    position: relative;
}

.monitor .stand::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 50px;
    background: #bfbfbf;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.monitor-label {
    text-align: center;
    margin-top: 20px;
    font-size: 42px;
    font-weight: 800;
    color: #fff;
}

.middle-arrow {
    font-size: 80px;
    color: #fff;
    margin-bottom: 80px;
}

/* arrows */
.slider-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: none;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}



.monitor-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 100px 40px;
    flex-wrap: nowrap;
    overflow: hidden;

    /* Green Gradient Background */
    background: linear-gradient(
        135deg,
        #7ea51d 0%,
        #6b9115 35%,
        #4d6f0c 70%,
        #2f4a05 100%
    );
}

/* soft overlay effect */
.monitor-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08), transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05), transparent 30%),
        radial-gradient(circle at 50% 80%, rgba(255,255,255,0.04), transparent 30%);
    pointer-events: none;
}

/* monitor box */
.monitor {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* monitor screen */
.monitor .screen {
    width: 500px;
    height: 320px;
    background: #111;
    border: 14px solid #111;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 25px 60px rgba(0,0,0,0.25),
        0 0 30px rgba(255,255,255,0.08);
}

/* image fit */
.monitor .screen img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

/* top camera dot */
.monitor .screen::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #1d4cff;
    border-radius: 50%;
    z-index: 5;
    box-shadow: 0 0 10px rgba(29,76,255,0.5);
}

/* BEFORE / AFTER tag */
.monitor .tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 40px;
    z-index: 5;
    letter-spacing: 1px;
}

/* stand */
.monitor .stand {
    width: 180px;
    height: 20px;
    background: #dcdcdc;
    margin-top: 0;
    border-radius: 0 0 20px 20px;
    position: relative;
    box-shadow: inset 0 3px 10px rgba(255,255,255,0.5);
}

/* stand neck */
.monitor .stand::before {
    content: "";
    width: 70px;
    height: 70px;
    background: #efefef;
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* center arrow */
.monitor-arrow {
    font-size: 120px;
    font-weight: 800;
    color: #ffffff;
    z-index: 3;
    line-height: 1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* hover effect */
.monitor:hover .screen {
    transform: translateY(-8px);
    transition: 0.4s ease;
    box-shadow:
        0 35px 70px rgba(0,0,0,0.35),
        0 0 40px rgba(255,255,255,0.12);
}

/* responsive */
@media (max-width: 1100px) {
    .monitor-wrapper {
        flex-wrap: wrap;
        gap: 30px;
    }

    .monitor .screen {
        width: 420px;
        height: 280px;
    }

    .monitor-arrow {
        font-size: 80px;
    }
}

@media (max-width: 768px) {
    .monitor .screen {
        width: 100%;
        max-width: 360px;
        height: 240px;
    }

    .monitor-arrow {
        font-size: 60px;
    }
}
/*c57*/
/* =========================================
EXTRA GLOWING GRADIENT BACKGROUND
+ FULL IMAGE INSIDE LED SCREEN
========================================= */

/* =========================================
FULL SECTION GRADIENT BACKGROUND
+ IMAGE FULL SHOW INSIDE SCREEN
========================================= */

.monitor-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 120px 50px;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;

    /* FULL SECTION GRADIENT BACKGROUND */
    background: linear-gradient(
        135deg,
        #a4c639 0%,
        #7ea61a 30%,
        #5f8610 60%,
        #3e5f08 100%
    ) !important;
}

/* full section glow layer */
.monitor-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.18), transparent 35%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.12), transparent 30%),
        radial-gradient(circle at 50% 80%, rgba(255,255,255,0.10), transparent 40%);
    z-index: 1;
    pointer-events: none;
}

/* monitor */
.monitor {
    position: relative;
    z-index: 2;
}

/* SCREEN */
.monitor .screen {
    width: 540px;
    height: 360px;
    background: #000;
    border: 14px solid #111;
    border-radius: 20px;
    overflow: hidden;
    position: relative;

    box-shadow:
        0 25px 60px rgba(0,0,0,0.30),
        0 0 40px rgba(255,255,255,0.08);
}

/* IMAGE FULL SHOW */
.monitor .screen img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important; /* full image visible */
    display: block !important;
    background: #000;
}

/* TAG */
.monitor .tag {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #f15a37;
    color: #fff;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 30px;
    z-index: 5;
}

/* STAND */
.monitor .stand {
    width: 140px;
    height: 20px;
    background: #dcdcdc;
    margin: 0 auto;
    border-radius: 0 0 15px 15px;
    position: relative;
}

.monitor .stand::before {
    content: "";
    width: 60px;
    height: 55px;
    background: #cfcfcf;
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 8px;
}

/* HOVER GLOW */
.monitor:hover .screen {
    transform: translateY(-8px) scale(1.02);
    transition: 0.4s ease;

    box-shadow:
        0 35px 80px rgba(0,0,0,0.35),
        0 0 60px rgba(255,255,255,0.18),
        0 0 100px rgba(255,255,255,0.08);
}
/*c58*/
/* =========================================
PREMIUM BEFORE AFTER SECTION
GRAY + BLACK LED LOOK
BACKGROUND IMAGE + LOW OPACITY
FULL IMAGE FILL
========================================= */

.monitor-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 70px;
    padding: 120px 60px 80px;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

/* BACKGROUND IMAGE WITH LOW OPACITY */
.monitor-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;

    background: 
        linear-gradient(
            rgba(120, 150, 20, 0.78),
            rgba(90, 120, 10, 0.78)
        ),
        url("<?php echo get_template_directory_uri(); ?>/assets/images/your-bg-image.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: -2;
}

/* extra glow */
.monitor-wrapper::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 250px;
    bottom: 0;
    left: 0;

    background: radial-gradient(
        ellipse at center,
        rgba(255,255,255,0.12) 0%,
        transparent 70%
    );

    z-index: -1;
}

/* MONITOR */
.monitor {
    text-align: center;
    position: relative;
}

/* LED SCREEN */
.monitor .screen {
    width: 520px;
    height: 320px;
    background: #111;
    border: 16px solid #111;
    border-bottom: 40px solid #d9d9d9;
    border-radius: 18px;
    overflow: hidden;
    position: relative;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.35),
        0 0 30px rgba(255,255,255,0.06);
}

/* IMAGE FULL FILL */
.monitor .screen img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}

/* camera dot */
.monitor .screen::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #2d5cff;
    border-radius: 50%;
    z-index: 5;
}

/* stand */
.monitor .stand {
    width: 140px;
    height: 16px;
    background: #d9d9d9;
    margin: 0 auto;
    position: relative;
    border-radius: 0 0 12px 12px;
}

.monitor .stand::before {
    content: "";
    width: 60px;
    height: 50px;
    background: #cfcfcf;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 6px;
}

/* BEFORE AFTER TEXT BELOW */
.monitor-label {
    margin-top: 25px;
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ARROW CENTER */
.middle-arrow {
    font-size: 90px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 90px;
    text-shadow: 0 0 20px rgba(255,255,255,0.25);
}

/* hover effect */
.monitor:hover .screen {
    transform: translateY(-8px) scale(1.02);
    transition: 0.4s ease;
    box-shadow:
        0 35px 80px rgba(0,0,0,0.40),
        0 0 60px rgba(255,255,255,0.10);
}
/*c59*/
/* LED SCREEN */
.monitor .screen {
    width: 520px;
    height: 320px;
    background: #111;

    /* BLACK OUTER BORDER */
    border: 16px solid #111;

    /* BOTTOM GREY LED PART */
    border-bottom: 40px solid #bfbfbf;  /* grey color */

    border-radius: 18px;
    overflow: hidden;
    position: relative;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.35),
        0 0 30px rgba(255,255,255,0.06);
}
/*c60*/
/* FULL PICTURE SHOW INSIDE LED */

.monitor .screen {
    width: 520px;
    height: 320px;
    background: #111;

    /* outer black border */
    border: 16px solid #111;

    /* bottom grey LED part */
    border-bottom: 40px solid #bfbfbf;

    border-radius: 18px;
    overflow: hidden;
    position: relative;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.35),
        0 0 30px rgba(255,255,255,0.06);
}

/* IMAGE FULL SHOW */
.monitor .screen img {
    width: 100% !important;
    height: 100% !important;

    /* full image visible */
    object-fit: contain !important;

    /* black background if image ratio differs */
    background: #000;

    display: block !important;
}

/*c61*/
/* =========================================
LIGHT BACKGROUND IMAGE OPTION
========================================= */

/* =========================================
SECTION BACKGROUND IMAGE FIX (HOSTINGER PATH)
+ LIGHT OPACITY IMAGE BACKGROUND
========================================= */

/* =========================================
LIGHT BACKGROUND IMAGE
30% OPACITY + LIGHT GREEN BASE COLOR
========================================= */

/* =========================================
NEW BACKGROUND CLASS
GRADIENT + GLOW + BOTTOM EFFECT
========================================= */

.monitor-carousel-section {
    position: relative !important;
    padding: 120px 0 220px 0 !important;
    overflow: hidden !important;

    /* FULL SECTION BACKGROUND */
    background: linear-gradient(
        135deg,
        #dff3b2 0%,
        #cce88a 25%,
        #b8dd62 55%,
        #a4cf42 100%
    ) !important;
}

/* BIG CENTER GLOW */
.monitor-carousel-section .monitor-slider::before {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    background: radial-gradient(
        circle,
        rgba(255,255,255,0.22) 0%,
        rgba(255,255,255,0.10) 35%,
        transparent 70%
    );

    filter: blur(50px);
    z-index: 1;
    pointer-events: none;
}

/* BOTTOM GLOW BACKGROUND */
.monitor-carousel-section .monitor-slider::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -160px;
    transform: translateX(-50%);

    width: 95%;
    height: 320px;

    background: radial-gradient(
        ellipse,
        rgba(110, 170, 30, 0.45) 0%,
        rgba(110, 170, 30, 0.22) 35%,
        rgba(255,255,255,0.08) 55%,
        transparent 80%
    );

    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

/* CONTENT ABOVE GLOW */
.monitor-slider,
.monitor-slide,
.monitor,
.slider-btn {
    position: relative;
    z-index: 2;
}
/*c62*/
/* =========================================
BOTTOM GRADIENT GLOWING BACKGROUND
SECTION KE NECHE GLOW EFFECT
========================================= */

.monitor-carousel-section {
    position: relative;
    padding: 100px 0 180px 0;
    background: #dff3b2;
    overflow: hidden;
}

/* bottom glowing gradient */
.monitor-carousel-section::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -120px;
    transform: translateX(-50%);

    width: 90%;
    height: 280px;

    background: radial-gradient(
        ellipse,
        rgba(125, 180, 40, 0.45) 0%,
        rgba(125, 180, 40, 0.18) 35%,
        rgba(255,255,255,0.08) 55%,
        transparent 75%
    );

    filter: blur(70px);
    z-index: 1;
    pointer-events: none;
}

/* soft upper glow */
.monitor-carousel-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 700px;
    height: 700px;

    background: radial-gradient(
        circle,
        rgba(255,255,255,0.18) 0%,
        rgba(255,255,255,0.08) 35%,
        transparent 70%
    );

    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}

/* content always above glow */
.monitor-slider,
.monitor-slide,
.monitor {
    position: relative;
    z-index: 2;
}
/*c63*/
/* =========================================
SLIDER ARROWS FIX POSITION
========================================= */

.monitor-carousel-section {
    position: relative;
    padding: 100px 80px;
    overflow: hidden;
}

.monitor-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* LEFT + RIGHT ARROWS FIX */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    color: #111;
    font-size: 32px;
    font-weight: 700;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

/* LEFT ARROW */
.prev-btn {
    left: 20px;
}

/* RIGHT ARROW */
.next-btn {
    right: 20px;
}

/* Hover effect */
.slider-btn:hover {
    background: #8db11e;
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }
/*}*/
/*c64*/

/* =========================================
FULL SCREEN IMAGE POPUP CSS
========================================= */


/*c65*/
/* =========================================
SCROLL TO TOP ARROW (FIXED RIGHT BOTTOM)
========================================= */

.scroll-top-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 55px;
    height: 55px;
    background: #2f6df6;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    z-index: 99999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    transition: 0.3s ease;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    background: #1d57d6;
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

/* mobile */





@media (max-width: 768px) {
    .scroll-top-btn {
        right: 15px;
        bottom: 20px;
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

/*c67*/
/* =========================================
HEADING + PARAGRAPH CENTER ALIGN
DESKTOP + MOBILE RESPONSIVE
========================================= */

.before-after-heading {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0px 0px;
    position: relative;
    z-index: 5;
}

.before-after-heading h2 {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
    line-height: 1.2;
    text-transform: capitalize;
}

.before-after-heading p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.92);
    max-width: 760px;
    margin: 0 auto;
    font-weight: 400;
}


/* =========================================
TABLET RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .before-after-heading {
        margin-bottom: 45px;
    }

    .before-after-heading h2 {
        font-size: 34px;
    }

    .before-after-heading p {
        font-size: 16px;
        line-height: 1.7;
    }
}


/* =========================================
MOBILE RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .before-after-heading {
        padding: 0 15px;
        margin-bottom: 35px;
        text-align: center;
    }

    .before-after-heading h2 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .before-after-heading p {
        font-size: 15px;
        line-height: 1.7;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }
}


/* =========================================
SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .before-after-heading h2 {
        font-size: 24px;
    }

    .before-after-heading p {
        font-size: 14px;
        line-height: 1.6;
    }
}
/*C67*/
/* =========================================
FEATURED PROJECTS - 3 CARDS IN ONE ROW
TEXT BLACK COLOR
========================================= */

/* Section heading */
.featured-projects .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.featured-projects .section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #000 !important;   /* BLACK */
    margin-bottom: 15px;
    line-height: 1.2;
}

.featured-projects .section-header p {
    font-size: 18px;
    color: #000 !important;   /* BLACK */
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* 3 cards in one row */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* ek row me 3 */
    gap: 30px;
    align-items: stretch;
}

/* Card */
.project-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.35s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Image */
.project-image {
    position: relative;
    overflow: hidden;
}

/*C69*/
/* =========================================
FORCE CENTER + 3 CARDS IN ONE ROW
SECTION PROPERLY CENTER
========================================= */

.featured-projects {
    width: 100%;
    padding: 80px 0;
    background: #f8f8f8;
}

.featured-projects .container {
    width: 100%;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 30px;
}

/* Heading Center */
.featured-projects .section-header {
    text-align: center !important;
    margin: 0 auto 60px auto !important;
    max-width: 900px;
}

.featured-projects .section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #000 !important;
    margin-bottom: 15px;
    text-align: center !important;
}

.featured-projects .section-header p {
    font-size: 18px;
    line-height: 1.7;
    color: #000 !important;
    text-align: center !important;
    margin: 0 auto !important;
}

/* 3 cards ek hi row me */
.projects-grid {
    display: flex !important;
    justify-content: center !important;
    align-items: stretch;
    gap: 30px;
    flex-wrap: nowrap !important;
    width: 100%;
}

/* Card width */
.project-card {
    width: 32% !important;
    min-width: 32% !important;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
}

/* Image */
.project-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* Card text */
.project-info {
    padding: 28px;
}

.project-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000 !important;
    margin-bottom: 15px;
}

.project-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #000 !important;
    margin-bottom: 20px;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .projects-grid {
        flex-wrap: wrap !important;
    }

    .project-card {
        width: 48% !important;
        min-width: 48% !important;
    }
}

@media (max-width: 767px) {
    .project-card {
        width: 100% !important;
        min-width: 100% !important;
    }

    .featured-projects .section-header h2 {
        font-size: 30px;
    }

    .featured-projects .section-header p {
        font-size: 15px;
    }
}
/*C69*/
/* =========================================
FINAL FIX — 3 CARDS IN ONE ROW (FORCED)
========================================= */

/* parent section */
.featured-projects {
    width: 100%;
    padding: 80px 0;
    background: #f7f7f7;
}

/* container */
.featured-projects .container {
    max-width: 1400px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* heading center */
.featured-projects .section-header {
    text-align: center !important;
    max-width: 900px;
    margin: 0 auto 60px auto !important;
}

.featured-projects .section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #000 !important;
    margin-bottom: 15px;
    text-align: center !important;
}

.featured-projects .section-header p {
    font-size: 18px;
    line-height: 1.7;
    color: #000 !important;
    text-align: center !important;
    margin: 0 auto !important;
}

/* ===== MAIN FIX HERE ===== */
.projects-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important; /* 3 in one row */
    gap: 30px !important;
    width: 100% !important;
    align-items: start;
}

/* cards */
.project-card {
    width: 100% !important;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
}

/* image */
.project-image {
    position: relative;
}

.project-image img {
    width: 100% !important;
    height: 260px !important;
    object-fit: cover;
    display: block;
}

/* badge */
.before-after-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #f15a37;
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
}

/* content */
.project-info {
    padding: 28px;
}

.project-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000 !important;
    margin-bottom: 15px;
}

.project-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #000 !important;
    margin-bottom: 20px;
}

/* tags */
.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.project-tags span {
    background: #f2f2f2;
    color: #000;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

/* link */
.project-link {
    color: #f15a37;
    font-weight: 700;
    text-decoration: none;
}

/* tablet */
@media (max-width: 991px) {
    .projects-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* mobile */
@media (max-width: 767px) {
    .projects-grid {
        grid-template-columns: 1fr !important;
    }

    .featured-projects .section-header h2 {
        font-size: 30px;
    }

    .featured-projects .section-header p {
        font-size: 15px;
    }
}
/*C70*/
/* =========================================
FORCE 3 CARDS IN ONE ROW
INLINE STYLE FIX
========================================= */

.featured-projects .container {
    max-width: 1400px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.featured-projects .projects-grid {
    display: flex !important;
    flex-wrap: nowrap !important;      /* force single row */
    justify-content: center !important;
    align-items: stretch !important;
    gap: 30px !important;
    width: 100% !important;
    overflow: hidden !important;
}

.featured-projects .project-card {
    width: 32% !important;             /* 3 cards in one row */
    min-width: 32% !important;
    max-width: 32% !important;
    flex: 0 0 32% !important;
    background: #fff !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
}

/* image full width */
.featured-projects .project-image img {
    width: 100% !important;
    height: 240px !important;
    object-fit: cover !important;
    display: block !important;
}

/* text black */
.featured-projects h2,
.featured-projects h3,
.featured-projects p,
.featured-projects .project-link,
.featured-projects .project-tags span,
.featured-projects .before-after-badge {
    color: #000 !important;
}

/* content spacing */
.featured-projects .project-info {
    padding: 25px !important;
}

/* mobile responsive */
@media (max-width: 991px) {
    .featured-projects .projects-grid {
        flex-wrap: wrap !important;
    }

    .featured-projects .project-card {
        width: 48% !important;
        min-width: 48% !important;
        max-width: 48% !important;
        flex: 0 0 48% !important;
    }
}

@media (max-width: 767px) {
    .featured-projects .project-card {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
}
.project-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* Badge */
.before-after-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #f15a37;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
}

/* Card content */
.project-info {
    padding: 28px;
}

.project-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000 !important;   /* BLACK */
    margin-bottom: 14px;
}

.project-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #000 !important;   /* BLACK */
    margin-bottom: 20px;
}

/* Tags */
.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.project-tags span {
    background: #f5f5f5;
    color: #000;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 30px;
}

/* Link */
.project-link {
    font-size: 15px;
    font-weight: 700;
    color: #f15a37;
    text-decoration: none;
}

.project-link:hover {
    color: #d94422;
}

/* Tablet */
@media (max-width: 991px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .featured-projects .section-header h2 {
        font-size: 30px;
    }

    .featured-projects .section-header p {
        font-size: 15px;
    }
}
/*c71*/
/* ===== CLIENT INSTALLATION VIDEOS SECTION ===== */
.installation-videos {
    background: linear-gradient(135deg, #0f0c29 0%, #1a1a3e 50%, #24243e 100%);
    padding: 80px 0;
    position: relative;
}

.installation-videos .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.installation-videos .section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.installation-videos .section-header p {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    max-width: 650px;
    margin: 10px auto 0;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.video-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s;
    border: 1px solid rgba(255,255,255,0.08);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px rgba(241,90,55,0.2);
    border-color: rgba(241,90,55,0.4);
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    transition: transform 0.5s;
}

.video-card:hover .video-wrapper iframe {
    transform: scale(1.02);
}

.video-caption {
    padding: 20px;
    text-align: center;
}

.video-caption h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.video-caption p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
}

/* Responsive */
@media (max-width: 768px) {
    .installation-videos {
        padding: 50px 0;
    }
    .installation-videos .section-header h2 {
        font-size: 32px;
    }
    .videos-grid {
        gap: 20px;
    }
}
/*c72*/
/* ===== CLIENT INSTALLATION VIDEOS SECTION – PREMIUM EFFECTS ===== */
.installation-videos {
    background: linear-gradient(135deg, #0f0c29 0%, #1a1a3e 50%, #24243e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle animated overlay glow */
.installation-videos::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(241,90,55,0.08), transparent 60%);
    animation: rotateSlow 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.installation-videos .section-header {
    text-align: center;
    margin-bottom: 50px;
}

/* Gradient Text for Heading */
.installation-videos .section-header h2 {
    font-size: 46px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #f15a37, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    display: inline-block;
    padding-bottom: 10px;
    position: relative;
}

/* Underline glow effect */
.installation-videos .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f15a37, #ffb347);
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(241,90,55,0.6);
}

.installation-videos .section-header p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 650px;
    margin: 15px auto 0;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.video-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Hover Glow Effect */
.video-card:hover {
    transform: translateY(-10px);
    border-color: rgba(241,90,55,0.6);
    box-shadow: 0 25px 40px rgba(241,90,55,0.35), 0 0 20px rgba(241,90,55,0.3);
    background: rgba(241,90,55,0.08);
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    transition: transform 0.6s ease;
}

/* Zoom Effect on Hover */
.video-card:hover .video-wrapper iframe {
    transform: scale(1.08);
}

.video-caption {
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.video-caption h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.video-card:hover .video-caption h3 {
    color: #f15a37;
    text-shadow: 0 0 5px rgba(241,90,55,0.5);
}

.video-caption p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .installation-videos {
        padding: 60px 0;
    }
    .installation-videos .section-header h2 {
        font-size: 32px;
    }
    .videos-grid {
        gap: 25px;
    }
}
/*c73*/
.video-caption h3 i {
    color: #007bff !important;
}

.video-meta i {
    color: #007bff !important;
}

/*c74*/
/* ===== PREMIUM FILM SPECS SECTION ===== */
.film-specs-premium {
    background: linear-gradient(135deg, #0a0a2a 0%, #1a1a3e 50%, #0d1b2a 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

/* Animated background glow */
.film-specs-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(241,90,55,0.08), transparent 60%);
    animation: rotateGlow 25s linear infinite;
    pointer-events: none;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.film-specs-premium .section-header {
    text-align: center;
    margin-bottom: 55px;
}

.film-specs-premium .section-header h2 {
    font-size: 46px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #f15a37, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    display: inline-block;
    position: relative;
}

.film-specs-premium .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #f15a37, #ffb347);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(241,90,55,0.5);
}

.film-specs-premium .section-header p {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    max-width: 700px;
    margin: 20px auto 0;
}

.film-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.film-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.film-card:hover {
    transform: translateY(-12px);
    border-color: rgba(241,90,55,0.6);
    box-shadow: 0 25px 45px rgba(241,90,55,0.3), 0 0 20px rgba(241,90,55,0.2);
    background: rgba(241,90,55,0.08);
}

.card-front {
    padding: 28px 22px 30px;
    text-align: center;
}

.film-icon {
    font-size: 48px;
    color: #f15a37;
    margin-bottom: 18px;
    transition: all 0.3s;
}

.film-card:hover .film-icon {
    transform: scale(1.1);
    text-shadow: 0 0 12px rgba(241,90,55,0.8);
}

.film-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

/* Heat rejection bar */
.heat-bar {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    margin: 15px 0;
    overflow: hidden;
}

.heat-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #f15a37, #ffb347);
    border-radius: 10px;
    width: 0%;
    transition: width 0.5s;
}

.film-card:hover .heat-bar span {
    width: var(--width) !important; /* dynamically set inline */
}

.heat-value {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
}

/*c77*/
.monitor-label {
    color: #007bff !important;
}
.heat-value strong {
    color: #f15a37;
}

.appearance {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    font-style: italic;
}

/* Image with zoom hover */
.film-image {
    width: 100%;
    height: 150px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 12px;
}

.film-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.film-card:hover .film-image img {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .film-specs-premium {
        padding: 60px 0;
    }
    .film-specs-premium .section-header h2 {
        font-size: 32px;
    }
    .film-grid {
        gap: 25px;
    }
}
/*c74*/
/* ============================================= */
/* BEFORE/AFTER CAROUSEL – MOBILE RESPONSIVE FIX */
/* ============================================= */

@media (max-width: 768px) {

    /* Slide container ko column mein kar do */
    .monitor-slide {
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
        padding: 20px 0 !important;
    }

    /* Before aur After monitor ko center karo */
    .monitor {
        width: 90% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
    }

    /* Middle arrow ko rotate karo aur margin do */
    .middle-arrow {
        transform: rotate(90deg) !important;
        margin: 10px 0 !important;
        font-size: 28px !important;
    }

    /* Screen (image container) ko responsive banao */
    .monitor .screen {
        width: 100% !important;
        aspect-ratio: 16 / 9 !important;
        overflow: hidden !important;
    }

    .monitor .screen img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* Stand ko chhota karo */
    .stand {
        width: 60% !important;
        height: 20px !important;
    }

    /* Labels ko theek karo */
    .monitor-label {
        font-size: 14px !important;
        padding: 5px 12px !important;
    }

    /* Buttons (left/right arrows) ko thoda adjust karo */
    .slider-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 20px !important;
    }

    .prev-btn {
        left: -15px !important;
    }

    .next-btn {
        right: -15px !important;
    }

    /* Heading aur paragraph bhi center aur font size adjust */
    .before-after-heading h2 {
        font-size: 32px !important;
    }

    .before-after-heading p {
        font-size: 16px !important;
        padding: 0 15px !important;
    }
}

/* Extra small devices (below 480px) */
@media (max-width: 480px) {
    .monitor {
        width: 95% !important;
        max-width: 280px !important;
    }

    .slider-btn {
        width: 32px !important;
        height: 32px !important;
        font-size: 16px !important;
    }
}
/*c76*/
/* Mobile Top Scroll Button Fix */
/* Double arrow issue remove + single proper icon show */

@media (max-width: 768px) {

    .scroll-top,
    .back-to-top,
    .go-top,
    .top-btn {
        position: fixed;
        right: 20px;
        bottom: 80px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index: 9999;
    }

    /* Remove duplicate icon */
    .scroll-top i:last-child,
    .back-to-top i:last-child,
    .go-top i:last-child,
    .top-btn i:last-child,
    .scroll-top::after,
    .back-to-top::after,
    .go-top::after,
    .top-btn::after {
        display: none !important;
        content: none !important;
    }

    /* Keep only one arrow centered */
    .scroll-top i,
    .back-to-top i,
    .go-top i,
    .top-btn i {
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1 !important;
        font-size: 20px !important;
    }

}
/*c78*/
/* Mobile Blue Extra Circle Remove */

@media (max-width: 768px) {

    /* Remove extra blue circle above arrow button */
    .back-to-top::before,
    .back-to-top::after,
    .scroll-top::before,
    .scroll-top::after,
    .go-top::before,
    .go-top::after,
    .top-btn::before,
    .top-btn::after {
        display: none !important;
        content: none !important;
    }

    /* Hide unwanted extra icon if duplicated */
    .back-to-top i:not(:first-child),
    .scroll-top i:not(:first-child),
    .go-top i:not(:first-child),
    .top-btn i:not(:first-child) {
        display: none !important;
    }

    /* Keep only proper arrow button */
    .back-to-top {
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
    }

}
/*c79*/
/* Make logo inside circle larger */
.single-row-logos .logo-circle img {
    width: 85% !important;
    max-width: 85% !important;
    object-fit: contain !important;
}

/* Optional: slightly increase circle size for better proportion */
.single-row-logos .logo-circle {
    width: 130px !important;
    height: 130px !important;
    padding: 5px !important;
}