/* Modern Design Improvements for Baibhav International - UPDATED BLUE THEME */

:root {
    --primary-blue: #1b4e8c;
    --sky-blue: #009fe3;
    --dark-blue: #0d2e5a;
    --light-bg: #fdfdfd;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Global Font Consistency */
body, h1, h2, h3, h4, h5, h6, p, a, span, button {
    font-family: 'Jost', sans-serif !important;
}

/* Banner Image Consistency & Blending Fix */
.banner-con .banner_wrapper .banner-image img {
    width: 100% !important;
    max-width: 570px !important;
    height: 420px !important;
    object-fit: contain !important;
    object-position: center bottom !important;
    mix-blend-mode: multiply !important; /* Magic fix for white-background images */
    filter: brightness(1.02) !important; /* Slightly brighten to compensate for multiply blend */
    display: block !important;
    margin: 0 auto !important;
    pointer-events: none !important; /* Allow interactions to pass through if needed */
    z-index: 1 !important;
}

/* Ensure Circular Badge is ALWAYS on top */
.banner-con .banner_wrapper .circle-text {
    z-index: 10 !important;
    pointer-events: auto !important;
}

.primary_btn {
    border-radius: 50px !important;
    background-color: var(--primary-blue) !important;
    padding: 15px 35px !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.primary_btn:hover {
    background-color: var(--sky-blue) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 159, 227, 0.3);
    color: #fff !important;
}

/* CTA Button Group */
.cta-btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.cta-btn-group.justify-content-center {
    justify-content: center;
}

/* Premium Button Variants */
.btn-premium-filled {
    background: var(--primary-blue) !important;
    color: #fff !important;
    font-weight: 700 !important;
    box-shadow: 0 10px 20px rgba(27, 78, 140, 0.2) !important;
}

.btn-premium-outline {
    border: 2px solid var(--primary-blue) !important;
    background: transparent !important;
    color: var(--primary-blue) !important;
    padding: 13px 35px !important; /* Adjust for border */
    font-weight: 700 !important;
}

.btn-premium-outline:hover {
    background: var(--primary-blue) !important;
    color: #fff !important;
}

/* --- HERO SECTION RESPONSIVE FIXES --- */
.banner-btn-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.badge-number {
    font-weight: 800;
    line-height: 1;
    display: block;
    font-size: 2.8rem;
}

.badge-text {
    font-weight: 500;
    line-height: 1.3;
    display: block;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 767px) {
    .banner-btn-group {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .banner-btn-group .primary_btn {
        width: 100%;
        text-align: center;
    }
    
    .badge-number {
        font-size: 1.8rem !important;
    }
    
    .badge-text {
        font-size: 0.7rem !important;
    }
}

@media (max-width: 575px) {
    .banner-con .banner_wrapper .circle-text {
        left: 20px !important;
        top: -20px !important;
        width: 85px !important;
        height: 85px !important;
    }
    
    .badge-number {
        font-size: 1.4rem !important;
    }
    
    .badge-text {
        font-size: 0.6rem !important;
        line-height: 1.1;
        letter-spacing: 0.2px;
    }
}

/* 1. Results Section */
.results-con {
    padding: 80px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.results-con h2 {
    font-weight: 700;
    margin-bottom: 50px;
    color: #2b2b2b;
}

.stat-box {
    padding: 20px;
}

.stat-box .number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-blue);
    display: block;
    line-height: 1;
}

.stat-box .label {
    font-size: 1.1rem;
    color: #555;
    margin-top: 15px;
    display: block;
}

/* 2. Partner Grid Section Refined (ID Based) */
#premium-partner-con {
    padding: 120px 0;
    background-color: #f8fbff !important;
    background-image: radial-gradient(#d0e3ff 0.5px, transparent 0.5px) !important;
    background-size: 20px 20px !important;
    position: relative;
}

#premium-partner-con h2 {
    font-size: 3.2rem !important;
    font-weight: 700 !important;
    margin-bottom: 60px;
    color: #0d2e5a !important;
    text-align: center;
    position: relative;
    display: block;
}

#premium-partner-con h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(to right, #1b4e8c, #009fe3);
    border-radius: 10px;
}

#premium-partner-con .partner-card {
    background: #ffffff !important;
    border: 1px solid rgba(27, 78, 140, 0.08) !important;
    border-radius: 30px !important;
    padding: 60px 40px !important;
    box-shadow: 0 15px 45px rgba(27, 78, 140, 0.05) !important;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) !important;
    height: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#premium-partner-con .partner-card:hover {
    transform: translateY(-15px) !important;
    box-shadow: 0 30px 70px rgba(27, 78, 140, 0.12) !important;
    border-color: #009fe3 !important;
}

#premium-partner-con .partner-card i {
    font-size: 4rem !important;
    color: #1b4e8c !important;
    margin-bottom: 35px;
    background: linear-gradient(135deg, #eee 0%, #fff 100%);
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 25px;
    display: inline-block;
    text-align: center; 
}

#premium-partner-con .partner-card h5 {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #111 !important;
}

/* Manufacturing Process Row Styling (Improved) */
#premium-benefits-row {
    background: linear-gradient(135deg, #0d2e5a 0%, #1b4e8c 50%, #009fe3 100%) !important;
    color: #ffffff !important;
    padding: 100px 0 !important;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
    border-radius: 60px !important;
    box-shadow: 0 35px 80px rgba(13, 46, 90, 0.4) !important;
}

#premium-benefits-row h4 {
    font-size: 2.8rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 50px !important;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: center;
}

.process-step {
    padding: 45px 30px !important;
    background: #ffffff !important;
    border: 1px solid #eef6ff !important;
    border-top: 4px solid var(--primary-blue) !important;
    border-radius: 20px !important;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    min-height: 380px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
}

.process-step:hover {
    background: #f8fbff !important;
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(27, 78, 140, 0.08) !important;
    border-color: rgba(0, 159, 227, 0.3) !important;
}

.icon-wrap {
    width: 85px;
    height: 85px;
    background: #f0f7ff;
    border: 1px solid #e1e9f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.process-step:hover .icon-wrap {
    background: var(--primary-blue);
    transform: rotateY(360deg);
}

.process-step i {
    font-size: 2.2rem !important;
    color: var(--primary-blue) !important;
    margin-bottom: 0 !important;
}

.process-step:hover i {
    color: #fff !important;
}

.step-tag {
    position: absolute;
    top: 15px;
    right: 20px;
    background: #f8fbff;
    color: var(--primary-blue);
    padding: 3px 10px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    border: 1px solid #e1e9f5;
}

.process-step:hover .step-tag {
    background: var(--primary-blue);
    color: #fff;
}

.process-step h6 {
    color: #0d2e5a !important;
    font-weight: 800 !important;
    margin-bottom: 15px !important;
    font-size: 1.25rem !important;
}

.process-step p {
    color: #4a5568 !important;
    font-size: 0.9rem !important;
    line-height: 1.7 !important;
}

/* SLEEK MODERN CONNECTORS (Pulsing Line) */
@media (min-width: 992px) {
    .process-step::after {
        content: '';
        position: absolute;
        width: 60px;
        height: 2px;
        background: linear-gradient(to right, rgba(0, 159, 227, 0.8), transparent);
        right: -30px;
        top: 50%;
        transform: translateY(-50%);
        z-index: -1;
    }

    /* Pulsing effect on line */
    @keyframes pulse-line {
        0% { transform: scaleX(0.8) translateY(-50%); opacity: 0.3; }
        50% { transform: scaleX(1.2) translateY(-50%); opacity: 0.8; }
        100% { transform: scaleX(0.8) translateY(-50%); opacity: 0.3; }
    }
    .process-step::after {
        animation: pulse-line 3s infinite ease-in-out;
    }
    .col-lg-3:last-child .process-step::after {
        display: none;
    }
}

/* --- ABOUT PAGE PREMIUM STYLES --- */

/* 1. Compressed Sub-Banner (Light Version) */
#premium-about-banner {
    padding: 60px 0 40px !important;
    background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%) !important;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e1e9f5;
}

#premium-about-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0, 159, 227, 0.05), transparent);
    pointer-events: none;
}

#premium-about-banner h1 {
    font-size: 2.8rem !important;
    font-weight: 800 !important;
    color: #0d2e5a !important;
    margin-bottom: 10px !important;
    text-shadow: none !important;
}

#premium-about-banner .box {
    background: #fff !important;
    padding: 8px 20px !important;
    border-radius: 50px !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e1e9f5 !important;
}

#premium-about-banner .box a, 
#premium-about-banner .box span {
    color: #0d2e5a !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
}

/* 2. Heritage Section Modernization */
.heritage-con {
    padding: 120px 0 !important;
    background: #fff;
}

.heritage-img-box {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.heritage-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--sky-blue);
    padding: 25px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 159, 227, 0.4);
    min-width: 140px;
}

.heritage-badge h3 {
    font-size: 3rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin-bottom: 0 !important;
}

.heritage-content h6 {
    color: var(--sky-blue) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.heritage-content h2 {
    font-size: 2.8rem !important;
    font-weight: 700 !important;
    color: #0d2e5a !important;
    margin-bottom: 30px;
}

.heritage-content .highlight {
    color: var(--primary-blue);
    position: relative;
}

/* 3. Reach Section (Light version) */
.reach-con {
    background: #f8fbff !important;
    color: #0d2e5a !important;
    padding: 80px 0 !important;
    text-align: center;
    border-radius: 40px;
    margin: 40px 0;
    border: 1px solid #eef6ff;
}

.reach-con h2 {
    color: #0d2e5a !important;
    font-weight: 700 !important;
}

.reach-stat .number {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    background: linear-gradient(to right, #0d2e5a, #009fe3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.reach-stat .label {
    color: #4a5568 !important;
    font-weight: 600;
}

/* 4. Vision & Mission Section (New Theme) */
.vision-mission-con {
    padding: 120px 0 !important;
}

.vm-content {
    padding: 60px !important;
    background: linear-gradient(135deg, #a5c2e8 0%, #ffffff 100%) !important;
    color: #0d2e5a !important;
    border-radius: 40px !important;
    border: 1px solid #e1e9f5 !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03) !important;
}

.vm-content h3 {
    color: #0d2e5a !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
}

.vm-content h3::after {
    background: linear-gradient(to right, #1b4e8c, #009fe3) !important;
    height: 5px !important;
    border-radius: 10px;
    left: 0 !important;
    transform: none !important;
}

.vm-content p {
    color: #4a5568 !important;
    text-align: left !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .partner-card {
        margin-bottom: 30px;
    }

    .vm-content {
        margin-top: 30px;
    }

    .vm-row.reordered {
        flex-direction: column-reverse;
    }
}

/* 5. Clients Section */
.clients-con {
    padding: 60px 0;
    background-color: #fff;
    border-top: 1px solid #eee;
    text-align: center;
}

.clients-con h6 {
    color: var(--primary-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.client-logo-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.client-logo {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* 6. Testimonials Refined (ID Based Equal Height Fix) */
#premium-testimonial-con {
    padding: 140px 0 !important;
    background-color: #fcfdfe !important;
    position: relative;
    overflow: hidden;
}

#premium-testimonial-con h2 {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    color: #0d2e5a !important;
    margin-bottom: 70px !important;
    text-align: center;
    position: relative;
}

#premium-testimonial-con h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(to right, #1b4e8c, #009fe3);
    border-radius: 10px;
}

/* Force Owl to stretch items to equal height */
#premium-testimonial-con .owl-stage {
    display: flex !important;
    align-items: stretch !important;
}

#premium-testimonial-con .owl-item {
    display: flex !important;
}

#premium-testimonial-con .testimonial-box {
    background: #ffffff !important;
    padding: 60px 45px !important;
    border-radius: 35px !important;
    box-shadow: 0 25px 60px rgba(27, 78, 140, 0.06) !important;
    margin: 30px 15px !important;
    position: relative;
    border: 1px solid rgba(27, 78, 140, 0.05) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    flex: 1 0 auto !important; 
    height: calc(100% - 60px) !important; 
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    width: 100%;
}

#premium-testimonial-con .testimonial-box:hover {
    transform: translateY(-8px) scale(1.01) !important;
    box-shadow: 0 30px 80px rgba(27, 78, 140, 0.12) !important;
    border-color: #009fe3 !important;
}

#premium-testimonial-con .testimonial-box p {
    font-family: 'Jost', sans-serif !important;
    font-style: italic !important;
    font-size: 1.2rem !important;
    color: #444 !important;
    line-height: 1.9 !important;
    margin-bottom: 50px !important;
    flex-grow: 1 !important;
}

#premium-testimonial-con .testimonial-quoteimage {
    position: absolute;
    top: 35px;
    right: 40px;
    width: 60px !important;
    opacity: 0.1 !important;
    filter: invert(15%) sepia(85%) saturate(1500%) hue-rotate(195deg) brightness(100%) contrast(100%);
}

.testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(27, 78, 140, 0.1);
}

.testimonial-box p {
    font-style: italic;
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
    flex-grow: 1; /* Pushes profile info to the bottom */
}

.testimonial-quoteimage {
    position: absolute;
    top: 30px;
    right: 40px;
    width: 50px !important;
    opacity: 0.08;
    filter: invert(24%) sepia(54%) saturate(1096%) hue-rotate(189deg) brightness(91%) contrast(92%); /* Matches primary blue */
}

.review-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-personimage img {
    width: 60px !important;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-content .detail .name {
    display: block;
    font-weight: 700;
    color: #222;
    font-size: 1.1rem;
}

.review-content .detail .review {
    display: block;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

/* 7. About Page Modernization */

/* Heritage Section */
.heritage-con {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.heritage-img-box {
    position: relative;
    padding-right: 30px;
}

.heritage-img-box img {
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    width: 100%;
}

.heritage-badge {
    position: absolute;
    bottom: -30px;
    right: 0;
    background: var(--primary-blue);
    color: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(27, 78, 140, 0.3);
}

.heritage-badge h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0;
}

.heritage-badge p {
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.heritage-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
}

.heritage-content .highlight {
    color: var(--primary-blue);
}

.heritage-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

/* Values Grid */
.values-grid-con {
    padding: 100px 0;
    background: #fdfdfd;
}

.value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.value-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    border-color: var(--primary-blue);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #f0f7ff;
    color: var(--primary-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--primary-blue);
    color: #fff;
    transform: rotateY(180deg);
}

.value-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

/* 4. Process Visualizer - Modern Light Ecommerce Update */
.process-con {
    padding: 100px 0;
    background-color: #fbfbfb; /* Clean off-white */
    color: #333;
    position: relative;
    overflow: hidden;
}

/* Subtle background texture */
.process-con::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#eee 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
    pointer-events: none;
}

.process-con h6 {
    color: #1b4e8c !important; /* Brand Blue subtitle */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.process-con h2 {
    color: #1a1a1a !important; /* Dark heading */
    font-weight: 800;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 40px 25px;
    transition: all 0.3s ease;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 25px;
    margin: 10px;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-color: #1b4e8c;
}

.process-step::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #eee;
}

.process-step.last::after {
    display: none;
}

.step-num {
    font-size: 5rem;
    font-weight: 900;
    color: #f5f5f5; /* Very faint grey */
    line-height: 1;
    margin-bottom: -35px;
    transition: all 0.3s ease;
}

.process-step:hover .step-num {
    color: #f0f0f0;
    transform: scale(1.05);
}

.step-content i {
    font-size: 3rem;
    color: #1b4e8c; /* Brand Blue icons */
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.process-step:hover .step-content i {
    transform: scale(1.1);
}

.step-content h5 {
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.step-content p {
    color: #666 !important;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Mobile Responsiveness for process-step */
@media (max-width: 991px) {
    .process-step::after {
        display: none;
    }
    .process-step {
        margin-bottom: 30px;
    }
}

/* Leadership & Quality */
.leadership-con {
    padding: 100px 0;
}

.founder-quote {
    padding: 50px;
    background: #fff;
    border-radius: 30px;
    box-shadow: var(--card-shadow);
    position: relative;
    border-left: 10px solid var(--primary-blue);
}

.founder-quote i.quote-icon {
    font-size: 4rem;
    color: #eee;
    position: absolute;
    top: 15px;
    right: 6px;
}

.founder-quote p {
    font-size: 1.5rem;
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

.founder-meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.founder-meta img.signature {
    max-width: 150px;
    opacity: 0.7;
}

.quality-card {
    background: linear-gradient(135deg, #fdfdfd 0%, #f5f5f5 100%);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    height: 100%;
}

.quality-card img {
    max-width: 200px;
    margin-bottom: 25px;
}

.quality-card h3 {
    font-weight: 800;
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    .process-step::after {
        display: none;
    }
    .heritage-badge {
        position: static;
        margin-top: 30px;
    }
    .heritage-img-box {
        padding-right: 0;
        margin-bottom: 50px;
    }
}

/* --- Products Page Premium Light Theme --- */

#premium-products-banner {
    padding: 60px 0 40px !important;
    background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%) !important;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e1e9f5;
    text-align: center;
}

#premium-products-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0, 159, 227, 0.05), transparent);
    pointer-events: none;
}

#premium-products-banner h1 {
    font-size: 3rem !important;
    font-weight: 800 !important;
    color: #0d2e5a !important;
    margin-bottom: 10px !important;
}

#premium-products-banner .box {
    background: #fff !important;
    padding: 8px 20px !important;
    border-radius: 50px !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e1e9f5 !important;
}

#premium-products-banner .box a, 
#premium-products-banner .box span {
    color: #0d2e5a !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
}

.tabs-options .nav-tabs {
    border: none;
    gap: 12px;
    margin-bottom: 60px;
    justify-content: center;
}

.tabs-options .nav-tabs li a {
    background: #fff;
    border: 1px solid #e1e9f5 !important;
    border-radius: 50px !important;
    padding: 12px 30px !important;
    color: #4a5568 !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.tabs-options .nav-tabs li a.active,
.tabs-options .nav-tabs li a:hover {
    background: var(--primary-blue) !important;
    color: #fff !important;
    border-color: var(--primary-blue) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(27, 78, 140, 0.15);
}

.product-grid-container {
    padding-bottom: 100px;
}

.product-card-v2 {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 50px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0f7ff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.product-card-v2:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(27, 78, 140, 0.08);
    border-color: var(--sky-blue);
}

.product-img-box {
    background: #f8fbff;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.product-img-box img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.badge-v2 {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: var(--primary-blue);
    padding: 6px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(27, 78, 140, 0.2);
    z-index: 2;
}

.product-meta-v2 {
    padding: 25px;
    text-align: center;
}

.product-meta-v2 h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0d2e5a;
    margin-bottom: 12px;
}

.product-action-v2 {
    margin-top: 15px;
}

.btn-minimal {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111 !important;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-minimal:hover {
    color: #1b4e8c !important;
    border-color: #1b4e8c;
    padding-left: 5px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .product-img-box {
        height: 300px;
        padding: 20px;
    }
    .sub_banner_content h1 {
        font-size: 2.5rem;
    }
}

/* 9. Manufacturing & Partner Sections Refined (Take 3) */

.mfg-section {
    padding: 100px 0;
    background-color: #ffffff;
    border-top: 1px solid #e1e9f5;
}

.mfg-content h6 {
    color: var(--primary-blue);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.mfg-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #0d2e5a;
    margin-bottom: 30px;
}

.mfg-heading-box {
    margin-bottom: 80px;
}

.mfg-grid {
    border: none;
    margin-top: 60px;
}

.mfg-item {
    background: #fff;
    padding: 60px 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 12px;
    border: 1px solid #eee;
    height: 100%;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    margin-bottom: 30px;
}

.mfg-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--primary-blue);
}

.mfg-item i {
    font-size: 3rem;
    color: var(--primary-blue); /* Permanent Color */
    margin-bottom: 25px;
    transition: all 0.4s ease;
    display: block;
}

/* --- Contact CTA Section Enhancements (ID Based) --- */
#premium-cta-con {
    background: linear-gradient(-45deg, #ffffff, #a9b1ca, #ebebeb, #e4e9f2);
    background-size: 400% 400% !important;
    padding: 140px 0 !important;
    color: #fff !important;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: gradientShift 15s ease infinite !important;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

#premium-cta-con::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.15;
    pointer-events: none;
}

#premium-cta-con h2 {
    font-size: 3rem !important;
    font-weight: 700 !important;
    margin-bottom: 30px !important;
    text-shadow: 0 10px 25px rgba(0,0,0,0.3) !important;
    letter-spacing: -0.5px !important;
}

#premium-cta-con p {
    font-size: 1.4rem !important;
    max-width: 800px;
    margin: 0 auto 50px !important;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-cta-con h2 {
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.contact-cta-con p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.cta-call {
    background: #fff;
    color: var(--primary-blue) !important;
}

.cta-whatsapp {
    background: #25d366;
    color: #fff !important;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Scalable Solutions Section */
.scalable-solutions {
    padding: 100px 0;
    background: #fff;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.feature-list .icon-box {
    width: 60px;
    height: 60px;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-list li:hover .icon-box {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.feature-list li:hover .icon-box i {
    color: #fff;
}

.feature-list .icon-box i {
    font-size: 1.2rem;
    color: var(--primary-blue);
}

.feature-list h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #111;
}

.feature-list p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Light Partner CTA Section Refined */
.partner-cta-section {
    padding: 120px 0;
    background-color: #fdfdfd;
    background-image: radial-gradient(#efefef 1px, transparent 1px);
    background-size: 30px 30px;
    color: #111;
    text-align: center;
    border-top: 1px solid #eee;
}

.cta-content h6 {
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 25px;
}

.cta-content h2 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 35px;
    color: #111;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #444;
}

.btn-premium {
    padding: 18px 45px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    transition: all 0.4s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-premium.red {
    background: var(--primary-blue);
    color: #fff !important;
    border: 1px solid var(--primary-blue);
}

.btn-premium.outline {
    border: 1px solid #111;
    color: #111 !important;
    margin-left: 20px;
}

.btn-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.btn-premium.outline:hover {
    background: #111;
    color: #fff !important;
}

@media (max-width: 991px) {
    .mfg-item {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 40px 20px;
    }
    .mfg-item.last {
        border-bottom: none;
    }
    .cta-content h2 {
        font-size: 2.5rem;
    }
    .btn-premium.outline {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
    }
    .btn-premium.red {
        width: 100%;
    }
}

/* 10. Product Detail Page (Take 1 Modernization) */

.product-detail-section {
    padding: 80px 0;
    background-color: #fff;
}

.detail-gallery-container {
    padding-right: 40px;
}

.main-view-v2 {
    background: #f8f8f8;
    border: 1px solid #eee;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    padding: 40px;
}

.main-view-v2 img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.detail-thumbs {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.detail-thumb-item {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    border: 1px solid #eee;
    background: #fff;
    border-radius: 4px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.detail-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.detail-thumb-item:hover,
.detail-thumb-item.active {
    border-color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.detail-info-box {
    padding-left: 20px;
}

.detail-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    display: block;
}

.detail-title {
    font-family: 'Archivo', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
    line-height: 1.1;
    word-wrap: break-word;
}

@media (max-width: 991px) {
    .detail-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 575px) {
    .detail-title {
        font-size: 1.5rem;
    }
}

.detail-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.detail-price-on-request a {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.1rem;
    background: #f0f7ff;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.detail-price-on-request a:hover {
    background: var(--primary-blue);
    color: #fff;
}

.detail-status {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 15px;
    border-radius: 50px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
}

.status-in-stock {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-request {
    background: #fff8e1;
    color: #f57f17;
}

.detail-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.detail-specs-list {
    margin-bottom: 40px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dotted #eee;
}

.spec-label {
    font-weight: 700;
    color: #111;
    width: 150px;
}

.spec-value {
    color: #555;
    flex: 1;
}

/* Redesigned Quantity and Action Row */
.detail-action-row {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 50px;
}

.detail-qty-box {
    display: flex;
    background: #f8f8f8;
    border-radius: 4px;
    padding: 5px;
    border: 1px solid #eee;
}

.qty-btn {
    width: 45px;
    height: 45px;
    border: none;
    background: transparent;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    color: var(--primary-blue);
}

.qty-display {
    width: 50px;
    border: none;
    background: transparent;
    text-align: center;
    font-weight: 700;
    outline: none !important;
}

.btn-detail-main {
    flex: 1;
    background: #111;
    color: #fff !important;
    text-align: center;
    padding: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid #111;
    text-decoration: none !important;
}

.btn-detail-main.red {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-detail-main:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-detail-main.red:hover {
    background: var(--sky-blue);
    border-color: var(--sky-blue);
}

@media (max-width: 991px) {
    .detail-gallery-container {
        padding-right: 0;
        margin-bottom: 50px;
    }
    .detail-title {
        font-size: 2.2rem;
    }
    .main-view-v2 {
        height: 400px;
    }
    .detail-action-row {
        flex-direction: column;
        align-items: stretch;
    }
    .detail-qty-box {
        justify-content: center;
    }
}

/* 11. Gallery Page Modernization */

#premium-gallery-banner {
    padding: 60px 0 40px !important;
    background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%) !important;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e1e9f5;
    text-align: center;
}

#premium-gallery-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0, 159, 227, 0.05), transparent);
    pointer-events: none;
}

#premium-gallery-banner h1 {
    font-size: 3rem !important;
    font-weight: 800 !important;
    color: #0d2e5a !important;
    margin-bottom: 10px !important;
}

#premium-gallery-banner .box {
    background: #fff !important;
    padding: 8px 15px !important;
    border-radius: 50px !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e1e9f5 !important;
}

#premium-gallery-banner .box a, 
#premium-gallery-banner .box span {
    color: #0d2e5a !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
}

.gallery-section {
    padding: 100px 0;
    background: #fff;
}

.gallery-filter-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.gallery-filter-link {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4a5568 !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 15px;
}

.gallery-filter-link:hover,
.gallery-filter-link.active {
    color: var(--primary-blue);
}

.gallery-filter-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
}

.gallery-filter-link.active::after {
    width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.gallery-item-v2 {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1/1;
    cursor: pointer;
    background: #f8fbff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.gallery-item-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item-v2:hover img {
    transform: scale(1.1);
}

.gallery-overlay-v2 {
    position: absolute;
    inset: 0;
    background: rgba(13, 46, 90, 0.9); /* Darker Brand Blue for higher text contrast */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    padding: 30px;
    text-align: center;
}

.gallery-item-v2:hover .gallery-overlay-v2 {
    opacity: 1;
}

.gallery-overlay-v2 h4 {
    color: #fff;
    font-weight: 900;
    font-size: 1.4rem;
    margin-bottom: 8px;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.gallery-overlay-v2 p {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
}

.gallery-item-v2:hover .gallery-overlay-v2 h4,
.gallery-item-v2:hover .gallery-overlay-v2 p {
    transform: translateY(0);
}

.gallery-zoom-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 14px;
    transform: scale(0.5);
    transition: all 0.4s ease;
}

.gallery-item-v2:hover .gallery-zoom-icon {
    transform: scale(1);
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-filter-nav {
        flex-wrap: wrap;
        gap: 15px;
    }
}

/* 6. Premium CTA Section (Light Version) */
#premium-cta-con {
    background: linear-gradient(135deg, #f0f7ff 0%, #e1efff 100%) !important;
    padding: 100px 0 !important;
    border-top: 1px solid #e1e9f5;
    position: relative;
    overflow: hidden;
}

#premium-cta-con::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.03;
    pointer-events: none;
}

/* 12. Contact Page Modernization */

#premium-contact-banner {
    padding: 60px 0 40px !important;
    background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%) !important;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e1e9f5;
    text-align: center;
}

#premium-contact-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0, 159, 227, 0.05), transparent);
    pointer-events: none;
}

#premium-contact-banner h1 {
    font-size: 3rem !important;
    font-weight: 800 !important;
    color: #0d2e5a !important;
    margin-bottom: 10px !important;
}

#premium-contact-banner .box {
    background: #fff !important;
    padding: 8px 15px !important;
    border-radius: 50px !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e1e9f5 !important;
}

#premium-contact-banner .box a, 
#premium-contact-banner .box span {
    color: #0d2e5a !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
}

.contact-split-section {
    padding: 100px 0 !important;
    background: #fff;
}

.contact-details-box {
    padding: 40px;
    background: #f8fbff;
    border-radius: 30px;
    height: 100%;
    border: 1px solid #e1e9f5;
}

.contact-details-box h2 {
    color: #0d2e5a !important;
    font-weight: 800;
    margin-bottom: 30px;
    font-size: 2.2rem !important;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.contact-info-item i {
    width: 60px;
    height: 60px;
    background: #fff;
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(27, 78, 140, 0.1);
    flex-shrink: 0;
}

.contact-info-item .text-content h5 {
    color: #0d2e5a;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-info-item .text-content p,
.contact-info-item .text-content a {
    color: #4a5568 !important;
    font-size: 1rem;
    line-height: 1.6;
    text-decoration: none !important;
}

.contact-form-card {
    padding: 50px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(27, 78, 140, 0.08);
    border: 1px solid #f0f7ff;
}

.contact-form-card h3 {
    color: #0d2e5a;
    font-weight: 800;
    margin-bottom: 10px;
}

.contact-form-card p {
    color: #718096;
    margin-bottom: 35px;
}

.form-premium-group {
    margin-bottom: 25px;
}

.form-premium-control {
    width: 100%;
    padding: 15px 25px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    background: #fcfdfe !important;
    font-family: 'Jost', sans-serif !important;
    color: #2d3748 !important;
    transition: all 0.3s ease !important;
}

.form-premium-control:focus {
    border-color: var(--primary-blue) !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(27, 78, 140, 0.1) !important;
    outline: none;
}

.full-width-map {
    height: 500px;
    width: 100%;
    border-top: 1px solid #eef2f7;
    margin-top: 40px;
}

.full-width-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.2) contrast(1.1);
}

@media (max-width: 991px) {
    .contact-form-card {
        margin-top: 40px;
        padding: 30px;
    }
    .contact-details-box {
        padding: 30px;
    }
}

/* --- PREMIUM DEEP BLUE FOOTER STYLING --- */

.premium-footer-con {
    background: linear-gradient(135deg, #0d2e5a 0%, #1b4e8c 100%) !important;
    padding: 100px 0 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.premium-footer-con::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.05;
    pointer-events: none;
}

.premium-footer-con .logo-content .footer-logo img {
    max-width: 180px;
    margin-bottom: 25px;
    /* filter: brightness(0) invert(1);  */
}

.premium-footer-con .logo-content .text {
    color: #e2e8f0 !important;
    font-size: 1rem !important;
    line-height: 1.7 !important;
    margin-bottom: 30px;
    max-width: 90%;
}

.premium-footer-con h3.heading {
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 30px !important;
    position: relative;
    display: inline-block;
}

.premium-footer-con h3.heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--sky-blue);
    border-radius: 5px;
}

.premium-footer-con .links ul li {
    margin-bottom: 15px !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.premium-footer-con .links ul li i {
    font-size: 0.8rem;
    color: var(--sky-blue);
    transition: transform 0.3s ease;
}

.premium-footer-con .links ul li a {
    color: #cbd5e0 !important;
    text-decoration: none !important;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.premium-footer-con .links ul li:hover a {
    color: #ffffff !important;
    padding-left: 5px;
}

.premium-footer-con .links ul li:hover i {
    transform: translateX(3px);
}

.premium-footer-con .social-icons {
    display: flex;
    gap: 15px;
}

.premium-footer-con .social-icons li a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-footer-con .social-icons li a:hover {
    background: var(--sky-blue);
    color: #fff !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 159, 227, 0.3);
    border-color: var(--sky-blue);
}

.premium-footer-con .icon h3.heading {
    margin-bottom: 30px !important;
}

.premium-footer-con .icon ul li {
    margin-bottom: 20px !important;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.premium-footer-con .icon ul li i {
    width: 35px;
    height: 35px;
    background: rgb(64 95 135);
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    text-decoration: none !important;
}

.premium-footer-con .icon ul li a {
    color: #e2e8f0 !important;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.3s ease;
    text-decoration: none !important;
}

.premium-footer-con .icon ul li:hover a {
    color: #ffffff !important;
}

.premium-footer-copyright {
    margin-top: 80px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #0a244a;
}

.premium-footer-copyright .content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.premium-footer-copyright p {
    font-size: 0.9rem !important;
    color: #a0aec0 !important;
    text-align: center;
}

.premium-footer-copyright a {
    color: #ffffff !important;
    font-weight: 700;
    transition: color 0.3s ease;
}

.premium-footer-copyright a:hover {
    color: var(--sky-blue) !important;
}

/* --- MOBILE RESPONSIVE FIXES --- */

@media (max-width: 991px) {
    .banner-con .banner_content {
        padding: 0 15px !important;
    }
    
    .banner-con .banner_wrapper .banner-image img {
        height: auto !important;
        max-width: 100% !important;
    }
    
    .banner-con .banner_wrapper .circle-text {
        left: 50% !important;
        transform: translateX(-50%) !important;
        top: -30px !important;
    }
    
    .stat-box .number {
        font-size: 3rem !important;
    }
    
    #premium-benefits-row {
        border-radius: 30px !important;
        padding: 60px 0 !important;
    }
    
    #premium-benefits-row h4 {
        font-size: 2rem !important;
        margin-bottom: 30px !important;
    }
    
    .process-step {
        min-height: auto !important;
        margin-bottom: 20px !important;
    }
    
    .heritage-badge {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        margin-top: -50px !important;
        margin-left: 20px !important;
        display: inline-block !important;
    }
    
    .vm-content {
        padding: 30px !important;
        margin-top: 30px !important;
    }
    
    .vm-content h3 {
        font-size: 1.8rem !important;
    }
    
    .contact-details-box, .contact-form-card {
        padding: 30px !important;
        margin-bottom: 30px !important;
    }
    
    .full-width-map {
        height: 350px !important;
    }
}

@media (max-width: 767px) {
    .premium-footer-con {
        padding: 60px 0 0 !important;
    }
    .premium-footer-con .logo-content {
        text-align: center;
        margin-bottom: 40px;
    }
    .premium-footer-con .logo-content .text {
        max-width: 100%;
    }
    .premium-footer-con .social-icons {
        justify-content: center;
    }
    .premium-footer-con .links, 
    .premium-footer-con .icon {
        margin-top: 40px;
    }
    .premium-footer-con h3.heading {
        margin-bottom: 20px !important;
    }
    
    /* Global Mobile Heading Stability - Force line-height */
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }

    #premium-partner-con h2,
    .testimonial_content h2,
    .heritage-content h2,
    .sub_banner_content h1 {
        font-size: 1.7rem !important;
        line-height: 1.4 !important;
        word-spacing: normal !important;
    }

    #premium-benefits-row h4 {
        font-size: 1.4rem !important;
        line-height: 1.4 !important;
    }

    .banner-con .banner_content h1 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
    }

    .banner-con .banner_wrapper .banner-image img {
        height: auto !important;
        max-height: 250px !important;
        width: auto !important;
        margin: 0 auto !important;
    }

    /* Reposition badge to avoid overlapping CTA button */
    .banner-con .banner_wrapper .circle-text {
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        margin: 20px auto 0 !important;
        transform: none !important;
        display: flex !important;
        justify-content: center;
        align-items: center;
    }

    /* Force Horizontal Scrolling for ALL tab-like lists */
    .tabs-options .nav-tabs,
    .gallery-filter-nav {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        width: 100% !important;
        padding-bottom: 10px !important;
        border-bottom: 2px solid #f0f0f0 !important;
        scrollbar-width: none !important; /* Hide scrollbar Firefox */
    }

    .tabs-options .nav-tabs::-webkit-scrollbar,
    .gallery-filter-nav::-webkit-scrollbar {
        display: none !important; /* Hide scrollbar Chrome/Safari */
    }

    .tabs-options .nav-tabs li,
    .gallery-filter-link {
        flex: 0 0 auto !important;
        margin-right: 15px !important;
        white-space: nowrap !important;
    }

    .tabs-options .nav-tabs li a {
        padding: 10px 15px !important;
        font-size: 14px !important;
        white-space: nowrap !important;
    }

    .cta-btn-group {
        flex-direction: column !important;
        gap: 12px !important;
        padding: 0 !important;
    }

    .cta-btn-group .primary_btn {
        width: 100% !important;
        justify-content: center !important;
        font-size: 14px !important;
        margin-left: 0 !important;
    }
}

/* --- MOBILE REFINEMENTS FOR TESTIMONIALS & CTA --- */
@media (max-width: 767px) {
    #premium-testimonial-con {
        padding: 60px 0 !important;
    }
    
    #premium-testimonial-con h2 {
        font-size: 2.2rem !important; /* Reduced from 56px */
        margin-bottom: 40px !important;
    }
    
    #premium-testimonial-con .testimonial-box {
        padding: 40px 25px !important;
        margin: 15px 5px !important;
    }

    #premium-cta-con {
        padding: 60px 0 !important;
    }

    #premium-cta-con h2 {
        font-size: 2.2rem !important; /* Reduced from 64px */
        margin-bottom: 25px !important;
    }

    .cta-btn-group {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .cta-btn-group .primary_btn {
        margin-left: 0 !important;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    #premium-testimonial-con h2,
    #premium-cta-con h2 {
        font-size: 1.8rem !important;
    }
}

.btn-call {
    background: var(--primary-blue) !important;
    color: #fff !important;
    font-weight: 700 !important;
    box-shadow: 0 10px 20px rgba(27, 78, 140, 0.2) !important;
}

.btn-whatsapp {
    border: 2px solid var(--primary-blue) !important;
    background: transparent !important;
    color: var(--primary-blue) !important;
    font-weight: 700 !important;
}

/* --- FOUNDER AVATAR STYLING --- */
.founder-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.founder-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #1b4e8c;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
