/* --- PREMIUM LIGHT CORPORATE VARIABLES (IMPROVISED) --- */
:root {
    --bg-pure-white: #ffffff;
    --bg-light-surface: #f8fafc;
    --brand-primary: #035b96; /* Premium Royal Indigo */
    --brand-secondary: #06b6d4; /* High-End Cyber Cyan */
    --brand-dark-gradient: #312e81; /* Deep Navy for Contrast */
    --text-dark-main: #0f172a; /* Slate 900 for Premium Readability */
    --text-muted-gray: #475569; /* Slate 600 */
    --glass-light-border: rgba(79, 70, 229, 0.08);
    --font-main: "Plus Jakarta Sans", sans-serif;
    --footer-bg: #0f172a; /* Deep premium corporate base color */
    --footer-text-muted: #94a3b8;
    --footer-text-light: #f8fafc;
}

body {
    background-color: var(--bg-pure-white);
    font-family: var(--font-main);
    color: var(--text-dark-main);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* --- LIGHT BACKGROUND NETWORK PARTICLES --- */
#network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; /* Maintained layout stability */
    pointer-events: none;
}

/* --- HERO WRAPPER WITH PREMIUM INTERACTIVE TECH BACKGROUND IMAGE --- */
.hero-wrapper {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Yahan apni image ka path lagayein, aur ek sleek corporate white overlay mix kiya h taaki premium clean aesthetic maintain rahe */
    background:
        linear-gradient(
            to right,
            rgba(248, 250, 252, 0.72) 30%,
            rgba(255, 255, 255, 0.3) 100%
        ),
        url("https://i.pinimg.com/1200x/e7/f7/60/e7f7604fd68e267d73dd0f803cb11f46.jpg")
            no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

/* --- ULTRA-CLEAN WHITE GLASS NAVBAR --- */
.glass-navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-light-border);
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1050;
    box-shadow: 0 4px 30px rgba(15, 23, 42, 0.03);
}

.navbar-brand img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.03);
}

.nav-link {
    color: var(--text-dark-main) !important;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 18px !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--brand-primary) !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2.5px;
    background: linear-gradient(
        90deg,
        var(--brand-primary),
        var(--brand-secondary)
    );
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 75%;
}

/* Dynamic Active Link indicator */
.nav-link.active-premium {
    color: var(--brand-primary) !important;
}
.nav-link.active-premium::after {
    width: 75%;
}

.navbar-toggler {
    border: 1px solid var(--glass-light-border);
    background: rgba(79, 70, 229, 0.03);
    padding: 8px 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

.toggler-icon {
    color: var(--brand-primary);
    font-size: 20px;
}

/* --- HERO CONTENT ARCHITECTURE --- */
.hero-content-area {
    position: relative;
    z-index: 10;
    padding-top: 150px;
    padding-bottom: 80px;
}

.badge-waas {
    background: rgba(79, 70, 229, 0.05);
    border: 1px solid rgba(79, 70, 229, 0.15);
    color: var(--brand-primary);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.05);
    margin-bottom: 25px;
}

.badge-waas i {
    font-size: 9px;
    animation: pulseDot 1.8s infinite ease-in-out;
}

@keyframes pulseDot {
    0%,
    100% {
        opacity: 0.4;
        transform: scale(0.9);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1.5px;
    color: var(--text-dark-main);
}

.hero-title span {
    background: linear-gradient(
        135deg,
        var(--brand-primary) 0%,
        var(--brand-dark-gradient) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-color: transparent;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 17px;
    color: var(--text-muted-gray);
    line-height: 1.75;
    max-width: 590px;
    margin-top: 22px;
    margin-bottom: 38px;
}

/* --- TELECOM MODEL LIST METRICS --- */
.telecom-features-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 40px;
}

.telecom-features-list li {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark-main);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.telecom-features-list li i {
    color: var(--brand-primary);
    background: rgba(79, 70, 229, 0.08);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* --- INTERACTIVE 3D LIQUID HOVER BUTTONS --- */
.cta-container {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-premium-primary {
    background: linear-gradient(
        135deg,
        var(--brand-primary) 0%,
        var(--brand-dark-gradient) 100%
    );
    color: #ffffff !important;
    font-weight: 700;
    font-size: 15px;
    padding: 16px 36px;
    border-radius: 14px;
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 28px rgba(79, 70, 229, 0.22);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.btn-premium-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.35);
}

.btn-premium-secondary {
    background: var(--bg-pure-white);
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 34px;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
}

.btn-premium-secondary:hover {
    background: rgba(79, 70, 229, 0.03);
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(79, 70, 229, 0.1);
}

/* --- HIGH-END GLASSMORPHISM BENTO VISUAL CARD --- */
.hero-visual-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    box-shadow:
        0 30px 70px rgba(15, 23, 42, 0.06),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    z-index: 10;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-visual-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 35px 80px rgba(79, 70, 229, 0.12);
    border-color: rgba(79, 70, 229, 0.2);
}

.card-giga-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(
        135deg,
        rgba(79, 70, 229, 0.06),
        rgba(6, 182, 212, 0.12)
    );
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--brand-primary);
    margin-bottom: 30px;
}

.hero-visual-card h3 {
    color: var(--text-dark-main);
    font-size: 24px;
    font-weight: 700;
}

.hero-visual-card p {
    color: var(--text-muted-gray);
    font-size: 14.5px;
    line-height: 1.7;
}

.tech-stat-row {
    border-top: 1px solid rgba(79, 70, 229, 0.08);
    padding-top: 30px;
    margin-top: 30px;
}

.stat-box h4 {
    font-size: 30px;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.stat-box p {
    font-size: 12px;
    color: var(--text-muted-gray);
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.badge-waas-icon {
    color: var(--brand-primary) !important;
}

.highlight-text {
    color: var(--brand-primary) !important;
}

/* --- PERFECT MEDIA QUERIES FOR SMALL/MOBILE SCREENS (NO TRUNCATION) --- */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 42px;
        letter-spacing: -1px;
    }
    .hero-content-area {
        padding-top: 130px;
        padding-bottom: 60px;
    }
    .hero-visual-card {
        margin-top: 50px;
    }
    /* .hero-wrapper { 
            background: linear-gradient(to bottom, rgba(248, 250, 252, 0.95) 40%, rgba(255, 255, 255, 0.9) 100%), 
                        url('telecom-bg.jpg') no-repeat center center;
            background-size: cover;
        } */
    .navbar-collapse {
        background: var(--bg-pure-white);
        border-radius: 16px;
        padding: 20px;
        margin-top: 15px;
        border: 1px solid var(--glass-light-border);
        box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    }
    .nav-link::after {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 32px;
        line-height: 1.25;
    }
    .hero-desc {
        font-size: 15px;
        margin-bottom: 30px;
    }
    .cta-container {
        flex-direction: column;
        gap: 14px;
    }
    .btn-premium-primary,
    .btn-premium-secondary {
        width: 100%;
        justify-content: center;
        padding: 15px;
    }
    .hero-visual-card {
        padding: 25px 20px;
        border-radius: 22px;
    }
    .stat-box h4 {
        font-size: 24px;
    }
    .badge-waas {
        font-size: 11px;
        padding: 8px 16px;
        width: 100%;
        justify-content: center;
    }
    .telecom-features-list li {
        font-size: 14px;
    }
}

/* --- PREMIUM ABOUT SECTION CSS --- */
.about-section {
    position: relative;
    padding: 100px 0;
    background: var(--bg-pure-white);
    z-index: 10;
}

.about-content-badge {
    background: rgba(79, 70, 229, 0.05);
    border: 1px solid rgba(79, 70, 229, 0.15);
    color: var(--brand-primary);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    display: inline-flex;
    margin-bottom: 20px;
}

.about-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -1px;
    color: var(--text-dark-main);
    margin-bottom: 25px;
}

.about-title span {
    background: linear-gradient(
        135deg,
        var(--brand-primary) 0%,
        var(--brand-secondary) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-color: transparent;
    -webkit-text-fill-color: transparent;
}

.about-desc {
    font-size: 16px;
    color: var(--text-muted-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Micro Grid Inside About */
.about-features-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.about-feature-card {
    background: var(--bg-light-surface);
    border: 1px solid var(--glass-light-border);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: start;
    gap: 16px;
    transition: all 0.3s ease;
}

.about-feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(79, 70, 229, 0.2);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.about-card-icon {
    width: 46px;
    height: 46px;
    background: rgba(79, 70, 229, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    font-size: 18px;
    flex-shrink: 0;
}

.about-card-info h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark-main);
    margin-bottom: 5px;
}

.about-card-info p {
    font-size: 14px;
    color: var(--text-muted-gray);
    margin: 0;
    line-height: 1.5;
}

/* Premium Image Framework */
.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img-backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        rgba(6, 182, 212, 0.12) 0%,
        transparent 70%
    );
    top: -20px;
    left: -20px;
    z-index: 1;
}

.about-premium-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
    z-index: 2;
    transition: all 0.4s ease;
}

.about-image-wrapper:hover .about-premium-img {
    transform: scale(1.01) translateY(-5px);
    box-shadow: 0 35px 70px rgba(79, 70, 229, 0.15);
}

/* Floating Metrics Badge on Image */
.floating-experience-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(79, 70, 229, 0.15);
    padding: 20px 25px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.floating-experience-badge h4 {
    font-size: 32px;
    font-weight: 800;
    color: var(--brand-primary);
    margin: 0;
}

.floating-experience-badge p {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dark-main);
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* Mobile Responsive Tweaks */
@media (max-width: 991.98px) {
    .about-section {
        padding: 70px 0;
    }
    .about-title {
        font-size: 34px;
    }
    .about-image-wrapper {
        margin-top: 50px;
    }
    .about-premium-img {
        height: 400px;
    }
    .floating-experience-badge {
        left: 20px;
        bottom: 20px;
    }
}

@media (max-width: 575.98px) {
    .about-title {
        font-size: 28px;
    }
    .about-desc {
        font-size: 14.5px;
    }
    .about-premium-img {
        height: 320px;
    }
    .floating-experience-badge {
        padding: 15px;
    }
    .floating-experience-badge h4 {
        font-size: 24px;
    }
}

/* --- PREMIUM SERVICES BENTO GRID SECTION --- */
.services-section {
    position: relative;
    padding: 100px 0;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(6, 182, 212, 0.05) 0%,
            transparent 60%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(79, 70, 229, 0.04) 0%,
            transparent 50%
        ),
        var(--bg-light-surface);
    z-index: 10;
}

.services-badge {
    background: rgba(79, 70, 229, 0.05);
    border: 1px solid rgba(79, 70, 229, 0.15);
    color: var(--brand-primary);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    display: inline-flex;
    margin-bottom: 20px;
}

.services-main-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1.2px;
    color: var(--text-dark-main);
    margin-bottom: 20px;
}

.services-main-title span {
    background: linear-gradient(
        135deg,
        var(--brand-primary) 0%,
        var(--brand-secondary) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-color: transparent;
    -webkit-text-fill-color: transparent;
}

.services-sub-desc {
    font-size: 16px;
    color: var(--text-muted-gray);
    max-width: 650px;
    margin: 0 auto 60px auto;
    line-height: 1.7;
}

/* Bento Grid Architecture */
.services-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bento-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(79, 70, 229, 0.08);
    border-radius: 24px;
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
}

/* Making specific strategic cards larger in Bento grid */
.bento-card.wide-card {
    grid-column: span 2;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 250, 252, 0.9) 100%
    );
}

.bento-card:hover {
    transform: translateY(-6px);
    border-color: rgba(79, 70, 229, 0.22);
    box-shadow: 0 25px 50px rgba(79, 70, 229, 0.08);
}

/* Card Glow Accent Lines */
.bento-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(
        180deg,
        var(--brand-primary),
        var(--brand-secondary)
    );
    transition: height 0.4s ease;
}

.bento-card:hover::before {
    height: 100%;
}

/* Icon Design */
.bento-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(79, 70, 229, 0.06);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.bento-card:hover .bento-icon-box {
    background: var(--brand-primary);
    color: #ffffff;
    transform: scale(1.05);
}

.bento-card.wide-card:hover .bento-icon-box {
    background: var(--brand-secondary);
}

.bento-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark-main);
    margin-bottom: 14px;
}

.bento-card p {
    font-size: 14.5px;
    color: var(--text-muted-gray);
    line-height: 1.65;
    margin-bottom: 20px;
}

/* Inline tag pills inside cards */
.card-pills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.card-pill {
    font-size: 11.5px;
    font-weight: 700;
    background: rgba(15, 23, 42, 0.03);
    color: var(--text-dark-main);
    padding: 6px 12px;
    border-radius: 50px;
    border: 1px solid rgba(15, 23, 42, 0.04);
}

/* Responsive Structural Breakpoints */
@media (max-width: 1199.98px) {
    .services-bento-grid {
        gap: 20px;
    }
    .bento-card {
        padding: 28px;
    }
}

@media (max-width: 991.98px) {
    .services-main-title {
        font-size: 36px;
    }
    .services-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-card.wide-card {
        grid-column: span 2;
    }
}

@media (max-width: 767.98px) {
    .services-bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-card.wide-card {
        grid-column: span 1;
    }
    .services-section {
        padding: 70px 0;
    }
    .services-main-title {
        font-size: 30px;
    }
}

/* --- PREMIUM ULTRA-COMPACT COUNTER STRIP (BOOTSTRAP ALIGNED) --- */
.counter-strip-section {
    position: relative;
    padding: 35px 0; /* Minimal vertical padding to maintain low screen footprint */
    background: #ffffff;
    z-index: 15;
}

.counter-metric-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 5px 15px;
    transition: all 0.3s ease;
}

/* Strategic vertical dividers between Bootstrap columns on desktop */
@media (min-width: 992px) {
    .counter-col-divider {
        border-right: 1px solid rgba(79, 70, 229, 0.1);
    }
}

.counter-icon-wrapper {
    width: 44px;
    height: 44px;
    background: rgba(79, 70, 229, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--brand-primary);
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.counter-metric-box:hover .counter-icon-wrapper {
    background: var(--brand-primary);
    color: #ffffff;
    transform: scale(1.08);
}

.counter-text-layout {
    display: flex;
    flex-direction: column;
}

.counter-number {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark-main);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

/* Accent coloring for plus/percent signs */
.counter-sign-accent {
    color: var(--brand-secondary) !important;
}

.counter-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted-gray);
    letter-spacing: 0.6px;
    margin-top: 2px;
}

/* Mobile responsive padding and layout refinement */
@media (max-width: 991.98px) {
    .counter-strip-section {
        padding: 25px 0;
    }
    .counter-metric-box {
        padding: 10px 0;
    }
}

@media (max-width: 575.98px) {
    .counter-number {
        font-size: 22px;
    }
    .counter-label {
        font-size: 11px;
    }
}

/* --- PREMIUM SWIPER LOGO SLIDER SECTION --- */
.logo-slider-section {
    padding: 60px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.logo-slider-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 1.5px;
    text-align: center;
    margin-bottom: 40px;
}

.logo-swiper-outer-wrapper {
    position: relative;
    width: 100%;
}

/* Gradient shadow overlay for rich infinite feel */
.logo-swiper-outer-wrapper::before,
.logo-swiper-outer-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.logo-swiper-outer-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.logo-swiper-outer-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.logo-item-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    padding: 0 15px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-item-wrapper:hover {
    transform: scale(1.05);
}

.logo-item-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.logo-partner-swiper {
    width: 100%;
    height: 70px; /* ya jitna height chahiye slider ka */
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

@media (max-width: 767.98px) {
    .logo-slider-section {
        padding: 45px 0;
    }
    .logo-swiper-outer-wrapper::before,
    .logo-swiper-outer-wrapper::after {
        width: 50px;
    }
    .logo-item-wrapper {
        height: 45px;
    }
}

/* --- PREMIUM SUCCESS STORIES & IMPLEMENTATION CORE --- */
.success-stories-section {
    padding: 90px 0;
    background: #fafbfc;
    position: relative;
    z-index: 10;
}

.section-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-primary);
    background: rgba(79, 70, 229, 0.06);
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
}

.main-section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark-main);
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-subtitle-text {
    font-size: 16px;
    color: var(--text-muted-gray);
    margin-top: 12px;
    margin-bottom: 60px;
    max-width: 650px;
}

/* Master Grid Card Layout */
.case-study-master-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-study-master-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.05);
    border-color: rgba(79, 70, 229, 0.15);
}

/* Internal Architecture Badging */
.airport-location-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.meta-icon-pill {
    width: 40px;
    height: 40px;
    background: rgba(15, 82, 186, 0.06);
    color: #0f52ba;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.location-title-text {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark-main);
}

.location-title-text span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted-gray);
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Modular Sub-Blocks Framework */
.operational-grid-box {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: background 0.3s ease;
}

.operational-grid-box:hover {
    background: #f1f5f9;
}

.box-header-layout {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.box-header-layout i {
    color: var(--brand-primary);
    font-size: 16px;
}

.box-header-layout h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark-main);
    margin: 0;
}

.operational-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.operational-list li {
    font-size: 13px;
    color: #475569;
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.operational-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
    font-weight: 700;
}

/* Commercial Snapshot Block */
.commercial-matrix-pill {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px;
    padding: 30px;
    color: #ffffff;
    margin-top: 30px;
}

.matrix-metric-item h5 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 6px;
}

.matrix-metric-item .price-tag {
    font-size: 24px;
    font-weight: 800;
    color: #38bdf8;
}

.matrix-metric-item .price-subtext {
    font-size: 12px;
    color: #cbd5e1;
}

@media (max-width: 991.98px) {
    .success-stories-section {
        padding: 60px 0;
    }
    .main-section-title {
        font-size: 28px;
    }
    .case-study-master-card {
        padding: 25px;
    }
}

/* --- PREMIUM PROJECT EXECUTION GALLERY SECTION (THEME ALIGNED) --- */
.execution-gallery-section {
    position: relative;
    padding: 100px 0;
    background: var(--bg-light-surface);
    z-index: 10;
}

.gallery-section-badge {
    background: rgba(79, 70, 229, 0.05);
    border: 1px solid rgba(79, 70, 229, 0.15);
    color: var(--brand-primary);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    display: inline-flex;
    margin-bottom: 20px;
}

.gallery-main-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1.2px;
    color: var(--text-dark-main);
    margin-bottom: 20px;
}

.gallery-main-title span {
    background: linear-gradient(
        135deg,
        var(--brand-primary) 0%,
        var(--brand-secondary) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-color: transparent;
    -webkit-text-fill-color: transparent;
}

.gallery-sub-desc {
    font-size: 16px;
    color: var(--text-muted-gray);
    max-width: 650px;
    margin: 0 auto 50px auto;
    line-height: 1.7;
}

/* Bootstrap Nav Pill Buttons Customization */
.gallery-nav-wrapper {
    margin-bottom: 45px;
}

.gallery-nav-wrapper .nav-pills {
    border: 1px solid var(--glass-light-border);
    background: var(--bg-pure-white);
    padding: 6px;
    border-radius: 16px;
    display: inline-flex;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
}

.gallery-nav-wrapper .nav-link {
    color: var(--text-muted-gray) !important;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px !important;
    border-radius: 12px;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-nav-wrapper .nav-link:hover {
    color: var(--brand-secondary) !important;
    background: #e3f1f3;
}

.gallery-nav-wrapper .nav-link::after {
    display: none !important; /* Disabling top navbar line effect */
}

.gallery-nav-wrapper .nav-link.active {
    color: #ffffff !important;
    background: linear-gradient(
        135deg,
        var(--brand-primary) 0%,
        var(--brand-dark-gradient) 100%
    ) !important;
    box-shadow: 0 10px 25px rgba(3, 91, 150, 0.2);
}

/* Swiper Framework Inside Tabs */
.gallery-slider-outer {
    position: relative;
    padding-bottom: 50px;
}

/* Premium Image Grid Card styling */
.gallery-premium-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 250px;
    background: var(--bg-light-surface);
    border: 1px solid var(--glass-light-border);
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.03);
    cursor: pointer;
    display: block;
}

.gallery-premium-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Glassmorphic Fluid Hover Overlay */
.gallery-card-fluid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(3, 91, 150, 0.9) 0%,
        rgba(6, 182, 212, 0.3) 100%
    );
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    z-index: 2;
    padding: 20px;
    text-align: center;
}

.gallery-zoom-icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.gallery-card-fluid-overlay p {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.05s;
}

.gallery-premium-card:hover img {
    transform: scale(1.08);
}

.gallery-premium-card:hover .gallery-card-fluid-overlay {
    opacity: 1;
}

.gallery-premium-card:hover .gallery-zoom-icon,
.gallery-premium-card:hover .gallery-card-fluid-overlay p {
    transform: translateY(0);
}

/* Pagination Dot Colors Overriding to Primary theme */
.gallery-slider-outer .swiper-pagination-bullet {
    background: var(--text-muted-gray);
    opacity: 0.3;
}

.gallery-slider-outer .swiper-pagination-bullet-active {
    background: var(--brand-primary) !important;
    width: 24px !important;
    border-radius: 4px !important;
    opacity: 1 !important;
}

/* Mobile Responsive Adapters */
@media (max-width: 991.98px) {
    .gallery-main-title {
        font-size: 36px;
    }
    .gallery-nav-wrapper .nav-pills {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    .gallery-nav-wrapper .nav-link {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .execution-gallery-section {
        padding: 70px 0;
    }
    .gallery-main-title {
        font-size: 30px;
    }
    .gallery-premium-card {
        height: 200px;
    }
}

.premium-corporate-footer {
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.95) 0%,
        #090d16 100%
    );
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 10;
    padding-top: 80px;
    padding-bottom: 30px;
    color: var(--footer-text-light);
    font-family:
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        sans-serif;
    overflow: hidden;
}

/* Subtle abstract background glow for premium aesthetic */
.premium-corporate-footer::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(6, 182, 212, 0.05) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.footer-brand-img {
    max-height: 50px;
    object-fit: contain;
    border-radius: 6px;
}

.footer-brand-pitch {
    color: var(--footer-text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.compliance-tag {
    font-size: 12px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 6px 12px;
    border-radius: 20px;
    color: var(--footer-text-light);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.compliance-tag i {
    color: var(--brand-secondary);
}

.footer-block-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    position: relative;
    color: var(--footer-text-light);
}

.footer-block-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--brand-primary),
        var(--brand-secondary)
    );
}

.footer-links-list,
.footer-contact-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list li a {
    color: var(--footer-text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links-list li a i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.footer-links-list li a:hover {
    color: var(--footer-text-light);
    transform: translateX(4px);
}

.footer-links-list li a:hover i {
    transform: scale(1.2);
    color: var(--brand-secondary);
}

.footer-operational-desc {
    color: var(--footer-text-muted);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.footer-contact-details-list li {
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--footer-text-muted);
}

.footer-contact-details-list li a {
    color: var(--footer-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-details-list li a:hover {
    color: var(--footer-text-light);
}

.contact-icon-wrapper {
    color: var(--brand-secondary);
    font-size: 15px;
    margin-top: 2px;
}

.contact-text-node {
    line-height: 1.4;
}

/* Premium Social Icons Floating Layout */
.social-anchor-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    color: var(--footer-text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.social-anchor-link:hover {
    background: linear-gradient(
        135deg,
        var(--brand-primary),
        var(--brand-secondary)
    );
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.25);
    border-color: transparent;
}

.footer-divider-line {
    border: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--glass-border) 50%,
        transparent
    );
    margin-top: 50px;
    margin-bottom: 25px;
}

.footer-copyright-node {
    font-size: 13px;
    color: var(--footer-text-muted);
}

.footer-copyright-node strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.footer-legal-anchors a {
    color: var(--footer-text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-legal-anchors a:hover {
    color: var(--footer-text-light);
}

/* Fully Fluid Mobile Responsive Optimization */
@media (max-width: 991.98px) {
    .premium-corporate-footer {
        padding-top: 60px;
    }
    .footer-block-title {
        margin-bottom: 20px;
    }
}
@media (max-width: 767.98px) {
    .footer-legal-anchors {
        display: flex !important;
        flex-direction: column;
        gap: 10px !important;
        align-items: center;
        margin-top: 15px;
    }
}
