

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    
    --wx-blue: #003087;
    --wx-blue-dark: #001f5b;
    --wx-blue-mid: #004ab5;
    --wx-blue-light: #e8eef7;
    --wx-red: #FF4500;
    --wx-red-dark: #cc7a29;
    --wx-red-light: #fff3ed;
    --wx-saffron: #FF9933;
    --wx-saffron-dk: #cc3700;
    --wx-hover-gold: #FFCC00;
    --wx-green: #138808;
    --wx-white: #ffffff;
    --wx-gray: #6c757d;
    --wx-light: #f4f6f9;
    --wx-border: #c8d5e8;
    --wx-text: #1a1a2e;
    --wx-text-muted: #555e6d;

    --wx-gold: #b8860b;

    
    --sh-sm: 0 2px 8px rgba(0, 48, 135, .10);
    --sh: 0 4px 18px rgba(0, 48, 135, .14);
    --sh-lg: 0 8px 32px rgba(0, 48, 135, .18);

    
    --r: 4px;
    --r-md: 8px;
    --trans: all .25s ease;
}

/* Custom Status Colors */
.bg-indigo { background-color: #6610f2 !important; }
.bg-orange { background-color: #fd7e14 !important; }

/* Brand Text Colors */
.text-wx-blue { color: var(--wx-blue) !important; }
.text-wx-saffron { color: var(--wx-saffron) !important; }
.text-wx-green { color: var(--wx-green) !important; }


*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f4f6f9;
    color: var(--wx-text);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 15px;
}

a {
    color: var(--wx-blue);
    text-decoration: none;
    transition: var(--trans);
}

a:hover {
    color: var(--wx-hover-gold);
    text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

img {
    max-width: 100%;
}


::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: #e8eef7;
}

::-webkit-scrollbar-thumb {
    background: var(--wx-blue);
    border-radius: 4px;
}








.tricolor-strip {
    height: 4px;
    background: linear-gradient(to right,
            var(--wx-red) 0%,
            var(--wx-red) 50%,
            var(--wx-blue) 50%,
            var(--wx-blue) 100%);
}


.wx-topbar {
    background: var(--wx-blue-dark);
    padding: 4px 0;
    font-size: .78rem;
    color: rgba(255, 255, 255, .75);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.wx-topbar a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    padding: 0 10px;
    border-right: 1px solid rgba(255, 255, 255, .2);
    transition: var(--trans);
}

.wx-topbar a:last-child {
    border-right: none;
}

.wx-topbar a:hover {
    color: var(--wx-red);
    text-decoration: none;
}

.wx-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
}

.wx-topbar-right .font-toggle {
    background: rgba(255, 255, 255, .15);
    border: none;
    color: #fff;
    padding: 2px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-size: .8rem;
    margin-left: 4px;
}

.wx-topbar-right .font-toggle:hover {
    background: var(--wx-red);
}


.wx-header {
    background-color: var(--wx-white) !important;
    padding: 16px 0 12px;
    border-bottom: 3px solid var(--wx-red);
}

.wx-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.wx-logo-wrap {
    flex-shrink: 0;
    position: relative;
}

.wx-logo-img {
    height: 100px;
    width: auto;
    background: transparent;
    padding: 0;
    object-fit: contain;
}

.wx-org-name {
    color: var(--wx-blue);
}

.wx-org-name .org-title {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.1;
    color: var(--wx-blue);
    text-transform: uppercase;
}

.wx-org-name .org-title span {
    color: var(--wx-red);
}

.wx-org-name .org-subtitle {
    font-size: .85rem;
    color: var(--wx-text-muted);
    letter-spacing: .3px;
    margin-top: 2px;
}

.wx-org-name .org-tagline {
    font-size: .75rem;
    color: var(--wx-blue-mid);
    font-style: italic;
    margin-top: 1px;
}

.wx-header-right {
    text-align: right;
}

.wx-cert-badges {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.wx-cert-badge {
    background: rgba(0, 48, 135, .08);
    border: 1px solid rgba(0, 48, 135, .2);
    border-radius: var(--r);
    padding: 5px 12px;
    color: var(--wx-blue);
    font-size: .75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wx-cert-badge i {
    color: var(--wx-red);
}

.wx-reg-info {
    margin-top: 8px;
    text-align: right;
}

.wx-reg-info small {
    color: var(--wx-text-muted);
    font-size: .72rem;
    display: block;
    line-height: 1.5;
}


.wx-navbar {
    background-color: var(--wx-blue) !important;
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
    display: block;
    visibility: visible;
}

.wx-navbar .nav-container {
    display: flex;
    align-items: stretch;
}

.wx-navbar .nav-item {
    position: relative;
}

.wx-navbar .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff !important;
    padding: 10px 14px !important;
    font-weight: 600;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .6px;
    transition: var(--trans);
    border-bottom: 3px solid transparent;
    text-decoration: none !important;
    white-space: nowrap;
}

.wx-navbar .nav-link:hover,
.wx-navbar .nav-link.active {
    background-color: var(--wx-saffron) !important;
    color: #ffffff !important;
}


.nav-cta-btn {
    background: var(--wx-gold) !important;
    color: var(--wx-blue-dark) !important;
    padding: 6px 16px !important;
    border-radius: 0 !important;
    font-weight: 700 !important;
    margin-left: 15px;
    align-self: center;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 10px rgba(255, 204, 0, 0.3);
    text-transform: uppercase;
    font-size: 0.75rem;
    line-height: 1.5;
}

.nav-cta-btn:hover {
    background: var(--wx-hover-gold) !important;
    color: var(--wx-blue-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.5);
}
.dropdown-menu {
    background: #fff;
    border: 1px solid var(--wx-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    padding: 10px 0;
    margin-top: 5px !important;
    border-radius: var(--r-md);
    animation: dropdownFadeIn 0.3s ease;
}

.dropdown-item {
    color: var(--wx-blue-dark) !important;
    padding: 10px 24px;
    font-size: .85rem;
    font-weight: 500;
    transition: var(--trans);
}

.dropdown-item:hover {
    background: rgba(0, 48, 135, .05);
    color: var(--wx-red) !important;
    padding-left: 28px;
}

.dropdown-divider {
    border-top-color: rgba(255, 255, 255, .1);
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wx-navbar .nav-link i {
    font-size: .9rem;
    opacity: .8;
}


.wx-brand-mobile {
    display: none;
    align-items: center;
    text-decoration: none !important;
}

.wx-brand-mobile img {
    height: 40px;
    width: auto;
    border-radius: 4px;
}

.wx-brand-mobile span {
    color: #fff;
}

.wx-brand-mobile span span {
    color: var(--wx-red);
}

.wx-toggler {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: .85rem;
    transition: var(--trans);
    display: none;
    align-items: center;
    gap: 6px;
}

.wx-toggler:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

@media(max-width:991px) {
    .wx-brand-mobile {
        display: block;
    }
    
    .wx-toggler {
        display: flex;
    }

    .wx-navbar .nav-link {
        padding: 12px 15px;
        width: 100%;
        border-bottom: 1px solid var(--wx-border) !important;
    }

    .wx-navbar .nav-container {
        flex-direction: column;
    }
}


.wx-ticker {
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid var(--wx-border);
    overflow: hidden;
}

.wx-ticker-inner {
    display: flex;
    align-items: center;
}

.ticker-label {
    background: var(--wx-blue);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: 2px;
    white-space: nowrap;
    margin-right: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.ticker-scroll {
    overflow: hidden;
    flex: 1;
}

.ticker-scroll-inner {
    display: flex;
    white-space: nowrap;
    animation: wxTicker 35s linear infinite;
    color: var(--wx-blue-dark);
    font-weight: 600;
    font-size: .85rem;
}

.ticker-scroll-inner:hover {
    animation-play-state: paused;
}

.ticker-scroll-inner span {
    padding-right: 60px;
}

.ticker-scroll-inner span::before {
    content: '▶ ';
    color: var(--wx-blue);
}

@keyframes wxTicker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


.wx-hero {
    background: #000;
    position: relative;
    overflow: hidden;
    min-height: 550px;
    display: flex;
    align-items: center;
    padding: 0;
}

.wx-hero::before,
.wx-hero::after {
    display: none !important;
}

.wx-hero-content {
    position: relative;
    z-index: 1;
}

.wx-hero-badge {
    display: inline-block;
    background: var(--wx-red);
    color: var(--wx-blue-dark);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 4px 16px;
    border-radius: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.wx-hero h1 {
    font-family: 'Mukta', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.wx-hero h1 span {
    color: var(--wx-red);
}

.hero-text {
    position: relative;
    z-index: 10;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
}

.btn-wx-primary {
    background: var(--wx-red);
    color: var(--wx-blue-dark);
    border: none;
    padding: 8px 20px;
    border-radius: var(--r);
    font-weight: 700;
    font-size: .85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--trans);
    text-decoration: none !important;
    letter-spacing: .3px;
}

.btn-wx-primary:hover {
    background: var(--wx-red-dark);
    color: #fff;
    text-decoration: none !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 153, 51, .35);
}

.btn-wx-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .6);
    padding: 7px 20px;
    border-radius: var(--r);
    font-weight: 600;
    font-size: .85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--trans);
    text-decoration: none !important;
}

.btn-wx-outline:hover {
    background: #fff;
    color: var(--wx-blue);
    border-color: #fff;
    text-decoration: none !important;
    transform: translateY(-2px);
}


.hero-slider,
.swiper,
.swiper-wrapper,
.swiper-slide {
    height: 100%;
    width: 100%;
}

.hero-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover !important; /* Changed from 100% 100% to cover to prevent distortion */
    background-position: center !important;
    background-color: #000;
    padding: 80px 0 40px;
}

.hero-row {
    min-height: 480px;
}

@media (max-width: 991px) {
    .hero-content {
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }
    .hero-row { min-height: 400px; }
    .wx-hero { min-height: 400px; }
}

@media (max-width: 768px) {
    .hero-row { min-height: 450px !important; }
    .wx-hero { min-height: 450px !important; }
    .hero-content { padding: 40px 0; background-size: cover !important; }
    .wx-hero h1 { font-size: 1.8rem !important; }
    .wx-hero p { font-size: 0.95rem !important; }
}

@media (max-width: 480px) {
    .hero-row { min-height: 500px !important; }
    .wx-hero { min-height: 500px !important; }
    .hero-buttons .btn-wx-primary, 
    .hero-buttons .btn-wx-outline {
        padding: 10px 18px !important;
        font-size: 0.85rem !important;
        width: 100% !important;
    }
}

.hero-content::before {
    display: none !important;
}

.hero-content>.container {
    position: relative;
    z-index: 1;
}

/* Special Banner */
.special-banner .banner-wrapper {
    transition: var(--trans);
    border-color: rgba(0,0,0,0.05) !important;
}

.special-banner .banner-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-lg) !important;
}

@media (max-width: 768px) {
    .special-banner {
        padding: 2rem 0 !important;
    }
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--wx-red) !important;
    background: rgba(0, 48, 135, .7);
    width: 44px !important;
    height: 44px !important;
    border-radius: 2px;
    border: 1px solid rgba(255, 153, 51, .4);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1rem !important;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, .5) !important;
    border-radius: 2px;
}

.swiper-pagination-bullet-active {
    background: var(--wx-red) !important;
}


.wx-stats-bar {
    background: var(--wx-blue-dark);
    padding: 0;
    border-top: 3px solid var(--wx-red);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.stat-bar-item {
    padding: 18px 10px;
    text-align: center;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, .08);
    transition: var(--trans);
}

.stat-bar-item:last-child {
    border-right: none;
}

.stat-bar-item:hover {
    background: rgba(255, 153, 51, .08);
}

.stat-bar-item .num {
    font-family: 'Mukta', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--wx-red);
    line-height: 1;
}

.stat-bar-item .lbl {
    font-size: .72rem;
    color: rgba(255, 255, 255, .65);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    font-weight: 600;
}


.page-header {
    background: var(--wx-white);
    padding: 80px 0 40px;
    border-bottom: 1px solid var(--wx-border);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    display: none;
}

.page-header::after {
    display: none;
}

.page-header-content {
    position: relative;
    z-index: 2;
    color: var(--wx-blue-dark);
    text-align: center;
}

.page-header-content h1 {
    font-family: 'Mukta', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--wx-blue-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-header-content p.lead {
    color: var(--wx-text-muted);
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--wx-red);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, .65);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .4);
}

.page-banner-badge {
    display: inline-block;
    background: var(--wx-red);
    color: var(--wx-blue-dark);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 3px 14px;
    border-radius: 2px;
    text-transform: uppercase;
    margin-bottom: .8rem;
}


.wx-section-title {
    font-family: 'Mukta', sans-serif;
    font-weight: 800;
    color: var(--wx-blue);
    font-size: 1.7rem;
    position: relative;
    padding-bottom: .6rem;
    margin-bottom: 1.5rem;
}

.wx-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--wx-red), var(--wx-blue));
}

.wx-section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

.wx-section-badge {
    display: inline-block;
    border-left: 3px solid var(--wx-red);
    background: var(--wx-blue-light);
    color: var(--wx-blue);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 12px;
    text-transform: uppercase;
    margin-bottom: .8rem;
}


.wx-main {
    background: #f4f6f9;
    padding: 2rem 0;
}

.wx-sidebar {
    position: sticky;
    top: 70px;
}


.wx-card {
    background: #fff;
    border: 1px solid var(--wx-border);
    border-radius: var(--r);
    overflow: hidden;
    transition: var(--trans);
    display: flex;
    flex-direction: column;
}

.wx-card:hover {
    box-shadow: var(--sh);
    border-color: var(--wx-blue);
    transform: translateY(-2px);
}

.wx-card-header {
    background: var(--wx-blue);
    color: #fff;
    padding: 10px 16px;
    font-weight: 700;
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: .3px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--wx-red);
}

.wx-card-header i {
    color: var(--wx-red);
}

.wx-card-body {
    padding: 1.25rem;
}


.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--wx-border);
}

.quick-link-item {
    background: #fff;
    padding: 1.5rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .7rem;
    transition: var(--trans);
    cursor: pointer;
    text-decoration: none !important;
    color: var(--wx-text);
    border: none;
}

.quick-link-item:hover {
    background: var(--wx-blue-light);
    text-decoration: none !important;
    color: var(--wx-blue);
}

.quick-link-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--wx-blue-light);
    color: var(--wx-blue);
    border: 2px solid var(--wx-border);
    transition: var(--trans);
}

.quick-link-item:hover .quick-link-icon {
    background: var(--wx-blue);
    color: #fff;
    border-color: var(--wx-blue);
}

.quick-link-label {
    font-size: .8rem;
    font-weight: 600;
    color: inherit;
    line-height: 1.3;
}


.wx-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wx-news-item {
    padding: 10px 0;
    border-bottom: 1px dashed var(--wx-border);
    display: flex;
    gap: 10px;
    min-height: 0;
}

.wx-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.wx-news-badge {
    background: var(--wx-red);
    color: var(--wx-blue-dark);
    font-size: .65rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    height: fit-content;
    margin-top: 3px;
    flex-shrink: 0;
}

.wx-news-badge.new {
    background: #c62828;
    color: #fff;
}

.wx-news-badge.tender {
    background: var(--wx-green);
    color: #fff;
}

.wx-news-text a {
    color: var(--wx-text);
    font-size: .88rem;
    font-weight: 500;
    transition: var(--trans);
    word-break: break-word;
    overflow-wrap: break-word;
}

.wx-news-text a:hover {
    color: var(--wx-blue);
    text-decoration: underline !important;
}

.wx-news-date {
    font-size: .72rem;
    color: var(--wx-gray);
    margin-top: 2px;
}


.service-card {
    background: #fff;
    border: 1px solid var(--wx-border);
    border-radius: var(--r);
    padding: 1.5rem;
    height: 100%;
    transition: var(--trans);
    border-top: 3px solid var(--wx-blue);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-card:hover {
    box-shadow: var(--sh);
    border-top-color: var(--wx-red);
    transform: translateY(-3px);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background: var(--wx-blue-light);
    color: var(--wx-blue);
    margin-bottom: 1rem;
    border: 1px solid var(--wx-border);
}

.service-card:hover .service-icon {
    background: var(--wx-blue);
    color: #fff;
}

.service-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--wx-blue);
    margin-bottom: .6rem;
}

.service-card p {
    color: var(--wx-text-muted);
    font-size: .88rem;
    line-height: 1.65;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}


.project-card {
    background: #fff;
    border: 1px solid var(--wx-border);
    border-radius: var(--r);
    overflow: hidden;
    transition: var(--trans);
    height: 100%;
}

.project-card:hover {
    box-shadow: var(--sh);
    border-color: var(--wx-blue);
    transform: translateY(-2px);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--trans);
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-cat-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--wx-blue);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 4px 12px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.project-content {
    padding: 1.2rem;
}

.project-content h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--wx-blue);
    margin-bottom: .6rem;
}

.project-content p {
    color: var(--wx-text-muted);
    font-size: .85rem;
    margin-bottom: .8rem;
}

.project-meta {
    font-size: .8rem;
    color: var(--wx-gray);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.project-meta i {
    color: var(--wx-red);
    margin-right: 4px;
}

.project-tags {
    margin-top: .8rem;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.project-tags .badge {
    background: var(--wx-blue-light) !important;
    color: var(--wx-blue) !important;
    font-size: .72rem;
    font-weight: 600;
    border-radius: 2px;
}


.testimonial-card {
    background: #fff;
    border: 1px solid var(--wx-border);
    border-radius: var(--r);
    padding: 1.5rem;
    height: 100%;
    transition: var(--trans);
    border-left: 4px solid var(--wx-blue);
}

.testimonial-card:hover {
    box-shadow: var(--sh);
    transform: translateY(-2px);
}

.testimonial-content p {
    color: var(--wx-text);
    font-size: .9rem;
    font-style: italic;
    line-height: 1.8;
}

.rating i {
    color: var(--wx-red);
    font-size: .85rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--wx-border);
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--wx-blue);
    object-fit: cover;
}

.testimonial-author h6 {
    margin: 0;
    font-weight: 700;
    color: var(--wx-blue);
    font-size: .88rem;
}

.testimonial-author p {
    margin: 0;
    font-size: .78rem;
    color: var(--wx-gray);
}


.contact-option-card {
    background: #fff;
    border: 1px solid var(--wx-border);
    border-radius: var(--r);
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    transition: var(--trans);
    border-top: 3px solid var(--wx-blue);
}

.contact-option-card:hover {
    box-shadow: var(--sh);
    border-top-color: var(--wx-red);
    transform: translateY(-3px);
}

.contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    background: var(--wx-blue-light);
    color: var(--wx-blue);
    border: 2px solid var(--wx-border);
    transition: var(--trans);
}

.contact-option-card:hover .contact-icon {
    background: var(--wx-blue);
    color: #fff;
    border-color: var(--wx-blue);
}

.contact-option-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--wx-blue);
    margin-bottom: .4rem;
}

.contact-option-card p {
    color: var(--wx-text-muted);
    font-size: .88rem;
    margin-bottom: .2rem;
}

.contact-form-card {
    background: #fff;
    border: 1px solid var(--wx-border);
    border-radius: var(--r);
    padding: 2rem;
    border-top: 4px solid var(--wx-blue);
}

.contact-form-card .form-label,
.contact-form .form-label {
    font-weight: 600;
    font-size: .85rem;
    color: var(--wx-blue);
    margin-bottom: 4px;
}

.contact-form-card .form-control,
.contact-form .form-control,
.contact-form-card .form-select {
    border: 1px solid var(--wx-border);
    border-radius: var(--r);
    padding: 10px 14px;
    font-size: .9rem;
    background: #fafbfc;
    transition: var(--trans);
}

.contact-form-card .form-control:focus,
.contact-form .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--wx-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 48, 135, .1);
}


.blog-card {
    background: #fff;
    border: 1px solid var(--wx-border);
    border-radius: var(--r);
    overflow: hidden;
    transition: var(--trans);
    height: 100%;
}

.blog-card:hover {
    box-shadow: var(--sh);
    border-color: var(--wx-blue);
    transform: translateY(-2px);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--trans);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 0;
    left: 0;
}

.blog-content {
    padding: 1.2rem;
}

.blog-title {
    font-size: .92rem;
    font-weight: 700;
    color: var(--wx-blue);
    margin-bottom: .6rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--wx-text-muted);
    font-size: .85rem;
    line-height: 1.6;
    margin-bottom: .8rem;
}

.blog-meta {
    font-size: .78rem;
    color: var(--wx-gray);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.featured-post {
    background: #fff;
    border: 1px solid var(--wx-border);
    border-radius: var(--r);
    overflow: hidden;
}

.featured-image {
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--trans);
    display: block;
}

.featured-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content .post-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--wx-blue);
    margin-bottom: .8rem;
}

.featured-content .post-excerpt {
    color: var(--wx-text-muted);
    margin-bottom: 1.2rem;
    font-size: .92rem;
}

.featured-content .post-meta {
    font-size: .82rem;
    color: var(--wx-gray);
    margin-bottom: 1.2rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.sidebar-widget {
    background: #fff;
    border: 1px solid var(--wx-border);
    border-radius: var(--r);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.widget-title {
    background: var(--wx-blue);
    color: #fff;
    padding: 10px 14px;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 0;
    border-bottom: 2px solid var(--wx-red);
}

.widget-body {
    padding: 1rem;
}

.search-box {
    display: flex;
}

.search-box input {
    border-radius: var(--r) 0 0 var(--r);
    border: 1px solid var(--wx-border);
    border-right: none;
    padding: 8px 14px;
    font-size: .88rem;
}

.search-box button {
    border-radius: 0 var(--r) var(--r) 0;
    background: var(--wx-blue);
    border: 1px solid var(--wx-blue);
    color: #fff;
    padding: 8px 14px;
}

.recent-posts {
    list-style: none;
    padding: 0;
}

.recent-posts li {
    padding: 8px 0;
    border-bottom: 1px solid var(--wx-border);
}

.recent-posts li:last-child {
    border-bottom: none;
}

.recent-posts a {
    color: var(--wx-text);
    font-size: .85rem;
    font-weight: 500;
}

.recent-posts a:hover {
    color: var(--wx-blue);
}

.recent-posts small {
    color: var(--wx-gray);
    font-size: .75rem;
    display: block;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: .6rem;
}

.category-list a {
    color: var(--wx-text);
    font-size: .88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-list a:hover {
    color: var(--wx-blue);
}

.tag-cloud .badge {
    background: var(--wx-blue-light) !important;
    color: var(--wx-blue) !important;
    border: 1px solid var(--wx-border);
    border-radius: 2px;
    padding: .35rem .7rem;
    margin: .25rem;
    font-size: .75rem;
    cursor: pointer;
    transition: var(--trans);
}

.tag-cloud .badge:hover {
    background: var(--wx-blue) !important;
    color: #fff !important;
}


.newsletter {
    background: var(--wx-blue-dark);
    padding: 3.5rem 0;
    border-top: 3px solid var(--wx-red);
}

.newsletter h3 {
    font-family: 'Mukta', sans-serif;
    color: #fff;
}

.newsletter p {
    color: rgba(255, 255, 255, .7);
}

.newsletter-form .input-group input {
    border-radius: var(--r) 0 0 var(--r);
    border: none;
    padding: 12px 18px;
    background: #fff;
}

.newsletter-form .input-group button {
    border-radius: 0 var(--r) var(--r) 0;
    background: var(--wx-red);
    border: none;
    color: var(--wx-blue-dark);
    font-weight: 700;
    padding: 12px 24px;
}


.category-filters {
    text-align: center;
    margin-bottom: 2rem;
}

.category-filters button {
    margin: .3rem;
    border-radius: 2px;
    padding: .45rem 1.2rem;
    font-weight: 600;
    font-size: .82rem;
    transition: var(--trans);
}


.faq-search {
    background: var(--wx-blue-light);
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--wx-border);
}

.faq-search h3 {
    color: var(--wx-blue);
    font-weight: 700;
}

.faq-search .input-group input {
    border-radius: var(--r) 0 0 var(--r);
    border: 1px solid var(--wx-border);
    border-right: none;
    padding: 12px 18px;
    font-size: .95rem;
}

.faq-search .input-group input:focus {
    border-color: var(--wx-blue);
    outline: none;
    box-shadow: none;
}

.faq-search .input-group button {
    border-radius: 0 var(--r) var(--r) 0;
    background: var(--wx-blue);
    border: 1px solid var(--wx-blue);
    color: #fff;
    padding: 12px 20px;
}

.category-card {
    background: #fff;
    border: 1px solid var(--wx-border);
    border-radius: var(--r);
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    transition: var(--trans);
    border-top: 3px solid var(--wx-blue);
}

.category-card:hover {
    box-shadow: var(--sh);
    border-top-color: var(--wx-red);
    transform: translateY(-2px);
}

.category-icon {
    margin-bottom: .8rem;
    font-size: 1.8rem;
    color: var(--wx-blue);
}

.category-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--wx-blue);
    margin-bottom: .5rem;
}

.category-card p {
    color: var(--wx-text-muted);
    font-size: .85rem;
}

.accordion-item {
    border: 1px solid var(--wx-border) !important;
    border-radius: var(--r) !important;
    margin-bottom: .5rem !important;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--wx-blue);
    background: #fafbfc !important;
    padding: 1rem 1.25rem;
    font-size: .9rem;
}

.accordion-button:not(.collapsed) {
    color: #fff !important;
    background: var(--wx-blue) !important;
}

.accordion-button:not(.collapsed)::after {
    filter: invert(1);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    color: var(--wx-text-muted);
    line-height: 1.8;
    padding: .9rem 1.25rem 1.2rem;
    font-size: .9rem;
}

.submit-question-card {
    background: #fff;
    border: 1px solid var(--wx-border);
    border-radius: var(--r);
    padding: 2rem;
    border-top: 4px solid var(--wx-red);
}

.submit-question-card h3 {
    color: var(--wx-blue);
}


.cta-section {
    background: transparent;
    padding: 4rem 0;
    border-top: 3px solid var(--wx-red);
}

.cta-section h2 {
    color: var(--wx-blue);
}

.cta-section p.lead {
    color: var(--wx-text-muted);
}


.mission-card .card,
.vision-card .card,
.transformation-card .card {
    border-radius: var(--r) !important;
    border: 1px solid var(--wx-border) !important;
    transition: var(--trans) !important;
    height: 100% !important;
}

.mission-card .card { border-top: 3px solid var(--wx-blue) !important; }
.vision-card .card { border-top: 3px solid var(--wx-green) !important; }
.transformation-card .card { border-top: 3px solid var(--wx-saffron) !important; }

.mission-card .card:hover,
.vision-card .card:hover,
.transformation-card .card:hover {
    box-shadow: var(--sh) !important;
    transform: translateY(-5px) !important;
}

.value-card {
    background: #fff;
    border: 1px solid var(--wx-border);
    border-radius: var(--r);
    padding: 1.5rem;
    height: 100%;
    transition: var(--trans);
    border-top: 3px solid var(--wx-blue);
}

.value-card:hover {
    box-shadow: var(--sh);
    transform: translateY(-2px);
}

.value-card h4 {
    color: var(--wx-blue);
    font-weight: 700;
    margin-bottom: .5rem;
}

.value-card p {
    color: var(--wx-text-muted);
    font-size: .88rem;
}

.corporate-card {
    background: #fff;
    border: 1px solid var(--wx-border);
    border-radius: var(--r);
    padding: 1.5rem;
    border-left: 4px solid var(--wx-red);
    height: 100%;
    transition: var(--trans);
}

.corporate-card:hover {
    box-shadow: var(--sh);
    transform: translateY(-2px);
}

.corporate-card h4 {
    color: var(--wx-blue);
    font-weight: 700;
    margin-bottom: .8rem;
}

.corporate-card ul {
    list-style: none;
    padding: 0;
}

.corporate-card ul li {
    padding: 5px 0;
    border-bottom: 1px solid var(--wx-border);
    font-size: .88rem;
}

.corporate-card ul li:last-child {
    border-bottom: none;
}

.service-capability-card {
    background: #fff;
    border: 1px solid var(--wx-border);
    border-radius: var(--r);
    padding: 1.5rem;
    border-left: 4px solid var(--wx-blue);
    height: 100%;
    transition: var(--trans);
}

.service-capability-card:hover {
    box-shadow: var(--sh);
    transform: translateY(-2px);
}

.service-capability-card h4 {
    color: var(--wx-blue);
    font-weight: 700;
    margin-bottom: .8rem;
}

.service-capability-card ul {
    list-style: none;
    padding: 0;
}

.service-capability-card ul li {
    padding: 6px 0;
    border-bottom: 1px solid var(--wx-border);
    font-size: .88rem;
}

.service-capability-card ul li:last-child {
    border-bottom: none;
}


.footer {
    background: var(--wx-blue-dark);
    padding: 2.5rem 0 0;
    border-top: 3px solid var(--wx-red);
    color: rgba(255, 255, 255, .7);
}

.footer-top-strip {
    background: var(--wx-blue);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    margin-bottom: 2rem;
    text-align: center;
    font-size: .8rem;
    color: rgba(255, 255, 255, .6);
}

.footer-about p {
    font-size: .88rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.footer h5 {
    color: #fff;
    font-weight: 700;
    font-size: .88rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 1rem;
    padding-bottom: .6rem;
    border-bottom: 2px solid var(--wx-red);
    display: inline-block;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    display: block;
    padding: 4px 0;
    font-size: .88rem;
    transition: var(--trans);
}

.footer-links a:hover {
    color: var(--wx-red);
    padding-left: 6px;
    text-decoration: none !important;
}

.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    padding: 6px 0;
    font-size: .85rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact li i {
    color: var(--wx-red);
    margin-top: 3px;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: var(--r);
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    text-decoration: none !important;
    transition: var(--trans);
    border: 1px solid rgba(255, 255, 255, .15);
    font-size: .95rem;
}

.social-links a:hover {
    background: var(--wx-red);
    color: var(--wx-blue-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 2rem;
    padding: 1.2rem 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: var(--wx-blue-dark);
}

.footer-bottom p {
    color: rgba(255, 255, 255, .45);
    font-size: .82rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.2rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    font-size: .78rem;
    transition: var(--trans);
}

.footer-bottom-links a:hover {
    color: var(--wx-red);
}

.footer-logo {
    height: 34px;
    width: auto;
    border-radius: 4px;
}

.logo-img {
    height: 68px;
    width: auto;
    border-radius: 50%;
    border: 3px solid var(--wx-red);
    background: #fff;
    padding: 3px;
}

.logo span {
    font-family: 'Mukta', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
}

.logo span span {
    color: var(--wx-red);
}


.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--wx-blue);
    color: #fff;
    border: none;
    border-radius: 2px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: var(--trans);
    cursor: pointer;
    box-shadow: var(--sh);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--wx-red);
    color: var(--wx-blue-dark);
    transform: translateY(-2px);
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 52px;
    height: 52px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 900;
    box-shadow: var(--sh);
    transition: var(--trans);
    text-decoration: none !important;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}


.notification-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9000;
    width: 340px;
    max-width: calc(100vw - 30px);
}

.wx-alert {
    border-radius: var(--r);
    border: 1px solid;
    margin-bottom: 1rem;
    box-shadow: var(--sh);
    animation: slideIn .3s ease;
}

.wx-alert-success {
    background: #e8f5e9;
    border-color: #81c784;
    color: #1b5e20;
}

.wx-alert-error {
    background: #fce4ec;
    border-color: #e91e63;
    color: #880e4f;
}

.wx-alert-info {
    background: var(--wx-blue-light);
    border-color: var(--wx-blue);
    color: var(--wx-blue-dark);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}


.projects-table thead th {
    background: var(--wx-blue);
    color: #fff;
    border: none;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.projects-table tbody tr:hover {
    background: var(--wx-blue-light);
}

.wx-table {
    border: 1px solid var(--wx-border);
}

.wx-table th {
    background: var(--wx-blue);
    color: #fff;
    font-size: .82rem;
}


.plan-card {
    background: #fff;
    border: 1px solid var(--wx-border);
    border-radius: var(--r);
    padding: 2rem;
    height: 100%;
    transition: var(--trans);
    text-align: center;
    border-top: 3px solid var(--wx-blue);
}

.plan-card:hover {
    box-shadow: var(--sh);
    border-top-color: var(--wx-saffron);
    transform: translateY(-4px);
}

.plan-card.featured {
    border-top-color: var(--wx-saffron);
    box-shadow: var(--sh);
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--wx-blue);
}

.plan-price .currency {
    vertical-align: super;
    font-size: 1.3rem;
}

.plan-price .period {
    color: var(--wx-gray);
    font-size: .88rem;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.plan-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--wx-border);
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: var(--wx-green);
}


.hero-section {
    min-height: 100vh;
    position: relative;
    background: var(--wx-blue);
}


.about-preview {
    padding: 3rem 0;
}

.about-content h2 {
    color: var(--wx-blue);
    margin-bottom: 1.2rem;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    font-weight: 500;
    padding: 5px 0;
}

.feature-point i {
    color: var(--wx-green);
    flex-shrink: 0;
}


.btn-primary {
    background: var(--wx-blue);
    border: none;
    border-radius: var(--r);
    font-weight: 600;
    transition: var(--trans);
}

.btn-primary:hover {
    background: var(--wx-blue-mid);
    transform: translateY(-1px);
}

.btn-outline-primary {
    border-color: var(--wx-blue);
    color: var(--wx-blue);
    border-radius: var(--r);
    font-weight: 600;
    transition: var(--trans);
}

.btn-outline-primary:hover {
    background: var(--wx-blue);
    color: #fff;
}

.btn-success {
    border-radius: var(--r);
    background: var(--wx-green);
    border: none;
    font-weight: 600;
}

.badge.bg-primary {
    background: var(--wx-blue) !important;
}

.badge.bg-success {
    background: var(--wx-green) !important;
}

.badge.bg-warning {
    background: var(--wx-saffron) !important;
    color: var(--wx-blue-dark) !important;
}

.text-primary {
    color: var(--wx-blue) !important;
}

.text-muted {
    color: var(--wx-text-muted) !important;
}

.bg-light {
    background: #f4f6f9 !important;
}

.bg-primary {
    background: var(--wx-blue) !important;
}

.section-badge {
    display: inline-block;
    border-left: 3px solid var(--wx-saffron);
    background: var(--wx-blue-light);
    color: var(--wx-blue);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 12px;
    text-transform: uppercase;
    margin-bottom: .8rem;
}


@media (max-width:991px) {
    .wx-org-name .org-title {
        font-size: 1.4rem;
    }

    .wx-logo-img {
        height: 80px;
    }

    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-header {
        padding: 50px 0 30px;
    }

    .page-header-content h1 {
        font-size: 2rem !important;
    }

    .page-header-content p.lead {
        font-size: 0.95rem !important;
    }
}

@media (max-width:768px) {
    .wx-hero h1 {
        font-size: 1.8rem;
    }

    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-bar-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .wx-header {
        padding: 12px 0;
    }

    .wx-cert-badges {
        justify-content: flex-start;
        margin-top: .5rem;
    }

    .wx-header-right {
        text-align: left;
    }

    .wx-reg-info {
        text-align: left;
    }

    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: .5rem;
    }
}

@media (max-width:576px) {
    .wx-org-name .org-title {
        font-size: 1.2rem;
    }

    .wx-hero h1 {
        font-size: 1.5rem;
    }

    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wx-topbar .wx-topbar-right {
        display: none;
    }
}




html,
body {
    min-width: 320px;
    overflow-x: hidden;
}


section,
.section,
.wx-section,
.stats-bar,
.quick-links-section,
.news-board-section,
.about-preview,
.services-preview,
.testimonials-section,
.blog-section,
.cta-section,
.portal-main-layout,
.page-header {
    display: block !important;
    width: 100% !important;
    min-width: 0;
    box-sizing: border-box;
    position: relative;
    overflow: visible;
}


.row {
    flex-wrap: wrap !important;
}


.wx-navbar {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000;
    width: 100%;
    background-color: var(--wx-blue) !important;
    transition: box-shadow .3s ease;
}

.wx-navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .45) !important;
}


.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .container {
        padding: 0 25px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}




.service-card,
.project-card,
.blog-card,
.plan-card,
.category-card,
.contact-card {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    height: auto !important;
}


.testimonial-card {
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid var(--wx-border);
    border-top: 3px solid var(--wx-blue);
    border-radius: var(--r-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--sh-sm);
}

.testimonial-content p {
    font-size: .9rem;
    color: var(--wx-text-muted);
    line-height: 1.7;
    margin-bottom: .8rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 1rem;
    padding-top: .8rem;
    border-top: 1px solid var(--wx-border);
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--wx-saffron);
}

.testimonial-author h6 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--wx-blue);
    margin: 0;
}

.testimonial-author p {
    font-size: .78rem;
    color: var(--wx-gray);
    margin: 0;
}


.rating i {
    color: var(--wx-saffron) !important;
    font-size: .85rem;
}


.news-board,
.news-board-card,
.news-item {
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}


.portal-main-layout .col-lg-8,
.portal-main-layout .col-lg-4 {
    box-sizing: border-box;
}


.section-heading {
    margin-bottom: 2rem;
}


.quick-link-tile {
    width: 100%;
    box-sizing: border-box;
}


.footer {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}



    position: fixed;
    bottom: 160px;
    right: 24px;
    z-index: 9998;
    width: 48px;
    height: 48px;
    background: var(--wx-blue);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 18px rgba(0, 48, 135, .45);
    transition: opacity .3s ease, transform .3s ease, background .2s;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
#scrollToTop:hover {
    background: var(--wx-saffron);
    color: var(--wx-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 22px rgba(255, 153, 51, .5);
}


#scrollToTop::before {
    content: 'Back to Top';
    position: absolute;
    right: 58px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 31, 91, .92);
    color: #fff;
    font-size: .72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s ease;
}
#scrollToTop:hover::before {
    opacity: 1;
}

/* Scroll to Top Button */
#scrollToTop {
    position: fixed;
    bottom: 170px;
    right: 28px;
    width: 46px;
    height: 46px;
    background: var(--wx-blue);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9996;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(0, 48, 135, 0.3);
}

#scrollToTop.visible {
    opacity: 1;
    visibility: visible;
}

#scrollToTop:hover {
    background: var(--wx-gold);
    color: var(--wx-blue-dark);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
}


.fab-stack {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9997;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}


.fab-btn {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    cursor: pointer;
    text-decoration: none !important;
    border: none;
    transition: transform .25s ease, box-shadow .25s ease;
    animation: fabPop .5s ease both;
}

@keyframes fabPop {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}


.fab-whatsapp {
    background: #25d366;
    box-shadow: 0 4px 18px rgba(37, 211, 102, .55);
    animation-delay: .1s;
}

.fab-whatsapp:hover {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 6px 28px rgba(37, 211, 102, .7);
    color: #fff;
}


.fab-whatsapp::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2.5px solid #25d366;
    animation: fabPulse 2s ease-out infinite;
}

@keyframes fabPulse {
    0% {
        transform: scale(1);
        opacity: .8;
    }

    70% {
        transform: scale(1.55);
        opacity: 0;
    }

    100% {
        transform: scale(1.55);
        opacity: 0;
    }
}


.fab-email {
    background: var(--wx-blue);
    box-shadow: 0 4px 18px rgba(0, 48, 135, .5);
    animation-delay: .2s;
}

.fab-email:hover {
    transform: scale(1.12) rotate(5deg);
    box-shadow: 0 6px 28px rgba(0, 48, 135, .65);
    background: var(--wx-saffron);
    color: var(--wx-blue-dark);
}


.fab-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 64px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 31, 91, .92);
    color: #fff;
    font-size: .72rem;
    font-weight: 600;
    font-family: 'Noto Sans', sans-serif;
    padding: 5px 12px;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s ease, transform .2s ease;
    transform: translateY(-50%) translateX(6px);
}

.fab-whatsapp::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2.5px solid #25d366;
    animation: fabPulse 2s ease-out infinite;
}


.fab-email::before {
    display: none;
}

.fab-btn:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}


.fab-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: var(--wx-saffron);
    color: var(--wx-blue-dark);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: .6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    animation: badgePop 1s ease infinite alternate;
}


.wx-hero .hero-slider {
    position: relative;
    z-index: 1;
    width: 100%;
}

.wx-hero .heroSwiper {
    width: 100%;
}

.wx-hero .hero-content {
    min-height: 480px;
    display: flex;
    align-items: center;
    position: relative;
}

.wx-hero .hero-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 31, 91, .85) 0%, rgba(0, 48, 135, .75) 100%);
}

.wx-hero .hero-content .container {
    position: relative;
    z-index: 1;
}

.wx-hero .hero-text {
    padding: 3rem 0;
}

.wx-hero h1 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wx-hero .lead {
    color: rgba(255, 255, 255, .85);
    font-size: 1rem;
    margin-bottom: 1.8rem;
}

.wx-hero .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--wx-saffron);
}

.wx-hero .swiper-button-next,
.wx-hero .swiper-button-prev {
    color: var(--wx-saffron);
}


.section-badge {
    display: inline-block;
    background: var(--wx-saffron);
    color: var(--wx-blue-dark);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 3px;
    margin-bottom: .75rem;
}


.wx-stats-bar {
    background: var(--wx-blue);
    padding: 0;
    border-bottom: 3px solid var(--wx-saffron);
}

.stat-bar-item {
    padding: 1.4rem 1rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .1);
    transition: background .2s;
}

.stat-bar-item:last-child {
    border-right: none;
}

.stat-bar-item:hover {
    background: rgba(255, 255, 255, .07);
}

.stat-bar-item .num {
    font-family: 'Mukta', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--wx-saffron);
    line-height: 1;
    margin-bottom: .25rem;
}

.stat-bar-item .lbl {
    font-size: .78rem;
    color: rgba(255, 255, 255, .75);
    text-transform: uppercase;
    letter-spacing: .8px;
    font-weight: 600;
}


.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
}

.quick-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 8px;
    border: 1px solid var(--wx-border);
    border-radius: var(--r-md);
    background: var(--wx-light);
    text-decoration: none !important;
    color: var(--wx-blue);
    font-size: .78rem;
    font-weight: 600;
    text-align: center;
    transition: var(--trans);
    cursor: pointer;
}

.quick-link-item:hover {
    background: var(--wx-blue);
    color: #fff;
    border-color: var(--wx-blue);
    transform: translateY(-2px);
    box-shadow: var(--sh);
}

.quick-link-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--wx-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--trans);
}

.quick-link-item:hover .quick-link-icon {
    background: var(--wx-saffron);
    color: var(--wx-blue-dark);
}

.quick-link-label {
    font-size: .72rem;
    font-weight: 700;
    line-height: 1.2;
    color: inherit;
}

@media (max-width: 1199px) {
    .quick-links-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .quick-links-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 479px) {
    .quick-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


.wx-main {
    padding: 2rem 0;
    background: var(--wx-light);
}


.wx-card {
    background: #fff;
    border: 1px solid var(--wx-border);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--sh-sm);
}

.wx-card-header {
    background: var(--wx-blue);
    color: #fff;
    padding: .7rem 1.2rem;
    font-size: .88rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: .3px;
    border-bottom: 2px solid var(--wx-saffron);
}

.wx-card-header i {
    color: var(--wx-saffron);
    font-size: 1rem;
}

.wx-card-body {
    padding: 1.2rem;
}


.wx-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wx-news-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: .7rem 0;
    border-bottom: 1px solid var(--wx-border);
}

.wx-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.wx-news-badge {
    display: inline-block;
    background: var(--wx-blue-light);
    color: var(--wx-blue);
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 3px;
    white-space: nowrap;
    border: 1px solid var(--wx-border);
    margin-top: 2px;
    flex-shrink: 0;
}

.wx-news-badge.new {
    background: #e8f5e9;
    color: var(--wx-green);
    border-color: #c8e6c9;
}

.wx-news-badge.tender {
    background: #fff3e0;
    color: #e65100;
    border-color: #ffcc80;
}

.wx-news-text a {
    font-size: .85rem;
    font-weight: 600;
    color: var(--wx-blue);
    line-height: 1.4;
    text-decoration: none;
}

.wx-news-text a:hover {
    color: var(--wx-saffron);
    text-decoration: underline;
}

.wx-news-date {
    font-size: .72rem;
    color: var(--wx-gray);
    margin-top: 2px;
}


.wx-sidebar {
    position: sticky;
    top: 75px;
}


.wx-section-title {
    font-family: 'Mukta', sans-serif;
    font-weight: 700;
    color: var(--wx-blue);
    margin-bottom: .5rem;
}


.feature-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
    color: var(--wx-text-muted);
    padding: .35rem 0;
}

.feature-point i {
    color: var(--wx-green);
    font-size: 1rem;
    flex-shrink: 0;
}


.service-card {
    background: var(--wx-light);
    border: 1px solid var(--wx-border);
    border-top: 3px solid var(--wx-blue);
    border-radius: var(--r-md);
    padding: 1.4rem 1.2rem;
    height: 100%;
    transition: var(--trans);
    box-sizing: border-box;
}

.service-card:hover {
    border-top-color: var(--wx-saffron);
    box-shadow: var(--sh);
    transform: translateY(-3px);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--wx-blue);
    color: #fff;
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card:hover .service-icon {
    background: var(--wx-saffron);
    color: var(--wx-blue-dark);
}

.service-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--wx-blue);
    margin-bottom: .5rem;
}

.service-card p {
    font-size: .85rem;
    color: var(--wx-text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}


.testimonials-preview {
    background: var(--wx-light);
    padding: 3rem 0;
}

.testimonials-preview .testimonial-card {
    background: #fff;
    border: 1px solid var(--wx-border);
    border-top: 3px solid var(--wx-blue);
    border-radius: var(--r-md);
    padding: 1.5rem;
    height: 100%;
    box-shadow: var(--sh-sm);
    transition: var(--trans);
}

.testimonials-preview .testimonial-card:hover {
    border-top-color: var(--wx-saffron);
    box-shadow: var(--sh);
    transform: translateY(-3px);
}


.footer {
    background: var(--wx-blue-dark);
    color: rgba(255, 255, 255, .8);
    padding: 3rem 0 0;
    font-size: .88rem;
    margin-top: 0;
}

.footer h6,
.footer-heading {
    color: var(--wx-saffron);
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: .8rem;
    padding-bottom: .4rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: .4rem;
}

.footer ul li a {
    color: rgba(255, 255, 255, .7);
    font-size: .83rem;
    text-decoration: none;
    transition: var(--trans);
}

.footer ul li a::before {
    content: '▶ ';
    font-size: .5rem;
    color: var(--wx-saffron);
    margin-right: 4px;
    vertical-align: middle;
}

.footer ul li a:hover {
    color: var(--wx-saffron);
    text-decoration: none;
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: .7rem;
    font-size: .82rem;
    color: rgba(255, 255, 255, .75);
}

.footer-contact-item i {
    color: var(--wx-saffron);
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
    transition: var(--trans);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--wx-saffron);
    border-color: var(--wx-saffron);
    color: var(--wx-blue-dark);
    text-decoration: none;
}

.footer-bottom {
    background: rgba(0, 0, 0, .25);
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 1rem 0;
    margin-top: 2rem;
}

.footer-bottom-links {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, .5);
    font-size: .78rem;
    text-decoration: none;
    transition: var(--trans);
}

.footer-bottom-links a:hover {
    color: var(--wx-saffron);
    text-decoration: underline;
}


@media (max-width: 991px) {
    .wx-navbar {
        padding: 10px 0;
        min-height: 65px;
        background-color: var(--wx-blue) !important;
        display: flex;
        align-items: center;
    }
    
    .wx-navbar #siteNavbarContent {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 10px 0;
        background: var(--wx-blue-dark);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        border-top: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .wx-navbar .nav-link {
        padding: 12px 15px;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, .05);
        display: flex;
        align-items: center;
    }

    .wx-navbar .nav-cta-btn {
        margin: 10px 15px;
        text-align: center;
        width: auto;
    }

    .wx-toggler {
        display: block !important;
        z-index: 1001;
    }
    
    .wx-brand-mobile {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .display-5 {
        font-size: 2.2rem;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    .display-1 {
        font-size: 3rem;
    }

    .wx-hero h1 {
        font-size: 1.8rem !important;
    }

    .page-header {
        padding: 80px 0 40px !important;
    }

    .page-header-content h1 {
        font-size: 1.6rem !important;
    }
    
    .grid-responsive {
        grid-template-columns: 1fr !important;
    }
}

.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

@media (max-width: 480px) {
    .grid-auto {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
}
/* Service Portal Components */
.btn-wx-primary {
    background-color: var(--wx-blue);
    color: var(--wx-white);
    border: none;
    padding: 8px 20px !important;
    font-size: .85rem !important;
    font-weight: 700;
    transition: var(--trans);
    border-radius: 0;
}

.btn-wx-primary:hover {
    background-color: var(--wx-blue-dark);
    color: var(--wx-white);
    transform: translateY(-2px);
    box-shadow: var(--sh);
}

.btn-wx-outline {
    background-color: transparent;
    color: var(--wx-blue);
    border: 2px solid var(--wx-blue);
    padding: 7px 20px !important;
    font-size: .85rem !important;
    font-weight: 700;
    transition: var(--trans);
    border-radius: 0;
}

.btn-wx-outline:hover {
    background-color: var(--wx-blue);
    color: var(--wx-white);
}





/* ==========================================================================
   PERFECT GLOBAL PRELOADER (PREMIUM)
   ========================================================================== */
#wx-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loader-container {
    text-align: center;
    position: relative;
    padding: 40px;
}

/* New Global Loader */
.loader, .loader:before {
	display: inline-block;
	border: 20px double transparent;
	border-top-color: var(--wx-blue);
	border-radius: 50%;
  box-sizing: border-box;
}
.loader {
	padding: 8px;
  animation: wifiLoading 1s ease-in infinite;
}
.loader:before {
	content: '';
	width: 0; height: 0;
}
@keyframes wifiLoading {
  0% { border-style: none}
  100% { border-style: double}
}

/* Body State */
body.loaded #wx-preloader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body.loaded {
    overflow-y: auto !important;
}

/* Remove button loaders to keep only one global loader as requested */
.btn-loader .btn-spinner {
    display: none !important;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .premium-loader {
        width: 100px;
        height: 100px;
    }
    .loader-brand {
        width: 55px;
        height: 55px;
    }
    .loader-brand img {
        width: 35px;
    }
    .status-text {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }
}
