/* ===== RESET & BASE ===== */

.hero-section,
.hero-sectionMobile,
.hero-sectionDesktopSoft,
.hero-Crmsection {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Background settings */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Responsive Dimensions */
    padding: 0 5%; /* Percentage padding screen ke hisab se adjust hogi */
}

/* Specific Images */
.hero-section {
    background-image: url('/images/WebDev.jpg');
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
    background: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #0d1b2a;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color .25s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section[id] {
    scroll-margin-top: 100px;
}

/* ===== CONTAINER ===== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BUTTONS ===== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .938rem;
    transition: all .3s ease;
    border: none;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
}

    .btn i {
        font-size: .8rem;
        transition: transform .3s;
    }

    .btn:hover i {
        transform: translateX(3px);
    }

.btn-primary {
    background: #188bf6;
    color: #fff;
}

    .btn-primary:hover {
        background: #1170cc;
        box-shadow: 0 6px 20px rgba(24,139,246,.35);
    }

.btn-accent {
    background: #188bf6;
    color: #fff;
    border-radius: 30px;
}

    .btn-accent:hover {
        background: #1170cc;
        box-shadow: 0 6px 20px rgba(24,139,246,.35);
    }

.btn-outline-light {
    border: 2px solid rgba(255,255,255,.4);
    color: #fff;
    border-radius: 30px;
    background: transparent;
}

    .btn-outline-light:hover {
        background: #fff;
        color: #0d1b2a;
        border-color: #fff;
    }

.btn-white {
    background: #fff;
    color: #0d1b2a;
    border-radius: 30px;
    font-weight: 700;
}

    .btn-white:hover {
        background: #188bf6;
        color: #fff;
        box-shadow: 0 6px 20px rgba(24,139,246,.35);
    }

.btn-coral {
    background: #e74c3c;
    color: #fff;
    border-radius: 6px;
}

    .btn-coral:hover {
        background: #c0392b;
        box-shadow: 0 6px 20px rgba(231,76,60,.35);
    }

/* ===== SECTION HELPERS ===== */

.section-tag {
    color: var(--primary-color) !important;
    border-color: rgba(24, 139, 246, 0.25) !important;
    background: rgba(24, 139, 246, 0.05) !important;
}

    .section-tag i {
        color: var(--primary-color) !important;
    }

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: #0d1b2a;
    line-height: 1.25;
}

.section-header {
    margin-bottom: 50px;
}

    .section-header.center {
        text-align: center;
    }

/* ===== TOP BAR ===== */

.top-bar {
    background: #0d1b2a;
    color: rgba(255,255,255,.75);
    font-size: .8rem;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

    .top-bar-left span {
        display: inline-flex;
        align-items: center;
        gap: 7px;
    }

    .top-bar-left i {
        color: #188bf6;
        font-size: .7rem;
    }

.top-bar-right {
    display: flex;
    gap: 14px;
    align-items: center;
}

    .top-bar-right a {
        color: rgba(255,255,255,.65);
        font-size: .85rem;
        transition: color .25s;
    }

        .top-bar-right a:hover {
            color: #188bf6;
        }

/* ===== HEADER ===== */

.header {
    background: #fff;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    transition: box-shadow .3s;
}

    .header.scrolled {
        box-shadow: 0 4px 20px rgba(0,0,0,.1);
    }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.65rem;
    font-weight: 800;
    color: #0d1b2a;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .nav-link::after {
        background: var(--primary-color) !important;
    }

    .nav-link:hover, .nav-link.active {
        color: var(--primary-color) !important;
    }

        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }

    .nav-link i {
        font-size: .55rem;
    }

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: #333;
    transition: all .25s;
}

    .search-btn:hover {
        border-color: var(--primary-color) !important;
    }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

    .mobile-toggle span {
        display: block;
        width: 24px;
        height: 2.5px;
        background: #0d1b2a;
        border-radius: 2px;
        transition: .3s;
    }

/* ===== HERO ===== */

.hero {
    background: #f5f7fa;
    padding: 40px 0 0;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    background: linear-gradient(135deg, #031533 0%, #062354 100%);
    color: #fff;
    border-radius: 35px;
    padding: 80px 80px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Dotted map background element */

.hero-map-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/tech-map.svg');
    background-size: cover;
    background-position: center;
    pointer-events: none;
    opacity: 0.85;
    z-index: 1;
}

/* Tech Accent Circle Orbits */

.hero-circle-accent {
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

    .hero-circle-accent::before {
        content: '';
        position: absolute;
        left: 75px;
        top: 75px;
        width: 450px;
        height: 450px;
        border: 1px dashed rgba(255, 255, 255, 0.08);
        border-radius: 50%;
    }

    .hero-circle-accent::after {
        content: '';
        position: absolute;
        left: 150px;
        top: 150px;
        width: 300px;
        height: 300px;
        border: 1px solid rgba(255, 255, 255, 0.04);
        border-radius: 50%;
    }

/* Pulse Glow Dot */

.tech-glow-dot {
    background: var(--primary-color) !important;
    box-shadow: 0 0 15px var(--primary-color) !important;
}

    .tech-glow-dot::after {
        border-color: rgba(24, 139, 246, 0.4) !important;
    }

@keyframes pulseGlow {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.2;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.8;
    }
}

.hero-content {
    flex: 1.1;
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 22px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.hero-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    max-width: 500px;
    line-height: 1.75;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Zotech Review Badges Wrap */

.hero-reviews-wrap {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.hero-review-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.review-brand-stars {
    display: flex;
    align-items: center;
    gap: 12px;
}

.google-brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    line-height: 1;
}

.g-letter {
    display: inline-block;
}

    .g-letter.blue {
        color: #4285F4;
    }

    .g-letter.red {
        color: #EA4335;
    }

    .g-letter.yellow {
        color: #FBBC05;
    }

    .g-letter.green {
        color: #34A853;
    }

.trustpilot-brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    color: #fff;
    gap: 4px;
    line-height: 1;
}

.trustpilot-star {
    color: #00b67a; /* Trustpilot green */
    font-size: 1.25rem;
}

.tp-text {
    font-weight: 700;
}

.review-stars-green {
    display: flex;
    gap: 4px;
    font-size: 0.9rem;
}

    .review-stars-green i {
        color: #34A853; /* Green stars! */
    }

.review-meta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

    .review-meta strong {
        color: #fff;
        margin-right: 4px;
        font-weight: 700;
    }

/* Cutout Expert Image Positioning */

.hero-image {
    flex: 0.9;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    z-index: 2;
    margin-top: auto;
    align-self: flex-end;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 460px;
    display: flex;
    align-items: flex-end;
}

    .hero-image-wrapper img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
        margin-bottom: -5px; /* sit perfectly flush at card bottom */
        filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.35));
    }

/* ===== SERVICES ===== */

.services {
    padding: 100px 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.service-card {
    background: #f8fafb;
    border-radius: 12px;
    padding: 36px 28px;
    transition: all 0.35s;
    border: 1px solid transparent;
}

    .service-card:hover {
        background: #fff;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        border-color: color-mix(in srgb, var(--primary-color) 15%, transparent);
        transform: translateY(-6px);
    }

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--primary-color) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 22px;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: #fff;
}

.service-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0d1b2a;
}

.service-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.7;
}

.service-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

    .service-link:hover {
        gap: 10px;
    }

/* ===== ABOUT ===== */

.about {
    padding: 100px 0;
    background: #fff;
}

.about-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-images {
    flex: 1;
    position: relative;
    min-height: 450px;
}

.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    width: 75%;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0,0,0,.06);
}

    .about-img-main img {
        width: 100%;
        height: 380px;
        object-fit: cover;
        display: block;
    }

.about-img-overlay {
    position: absolute;
    right: 0;
    bottom: 20px;
    width: 55%;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
    border: 8px solid #fff;
}

    .about-img-overlay img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        display: block;
    }

.about-play-btn {
    border-color: var(--primary-color) !important;
    box-shadow: 0 8px 25px rgba(24, 139, 246, 0.25) !important;
}

    .about-play-btn i {
        background: var(--primary-color) !important;
    }

    .about-play-btn:hover {
        transform: translate(-50%, -50%) scale(1.08);
        box-shadow: 0 12px 30px rgba(24,139,246,.35);
    }

        .about-play-btn:hover i {
            background: var(--primary-hover-color) !important;
        }

    .about-play-btn::after {
        border-color: rgba(24, 139, 246, 0.3) !important;
    }

@keyframes playPulse {
    0% {
        transform: scale(1);
        opacity: .6;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* About - legacy single image support */

.about-image {
    flex: 1;
    position: relative;
}

.about-experience-badge {
    background: var(--primary-color) !important;
    box-shadow: 0 8px 30px rgba(24, 139, 246, 0.35) !important;
}

.exp-number {
    font-family: 'Plus Jakarta Sans',sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

    .exp-number span {
        font-size: 1.2rem;
    }

.exp-text {
    font-size: .72rem;
    line-height: 1.3;
    margin-top: 2px;
}

.about-content {
    flex: 1;
}

.about-text {
    color: #555;
    margin-bottom: 24px;
    line-height: 1.75;
}

.about-checklist {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .about-checklist li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: .95rem;
        font-weight: 500;
    }

    .about-checklist i {
        color: var(--primary-color) !important;
    }

/* ===== EXPERIENCE / PROGRESS BARS ===== */

.experience {
    padding: 100px 0;
    background: #f5f7fa;
    position: relative;
    overflow: hidden;
}

    .experience::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, #ddd 1px, transparent 1px);
        background-size: 24px 24px;
        opacity: 0.15;
    }

/* Background elements for high-fidelity Zotech simulation */

.experience-network-bg {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 480px;
    height: 480px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.experience-globe-bg {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 580px;
    height: 580px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.75;
}

.experience-inner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.experience-left {
    flex: 1;
}

.experience-number {
    color: var(--primary-color) !important;
}

.experience-subtitle {
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 16px;
}

.experience-heading {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0d1b2a;
    line-height: 1.25;
}

.experience-right {
    flex: 1;
}

    .experience-right h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 30px;
        color: #0d1b2a;
    }

.progress-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.progress-item {
    margin-bottom: 48px;
}

.progress-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

    .progress-label span {
        color: var(--primary-color) !important;
    }

.progress-bar-bg {
    background: rgba(24, 139, 246, 0.05) !important;
    border-color: rgba(24, 139, 246, 0.15) !important;
}

.progress-bar-fill {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover-color)) !important;
}

    .progress-bar-fill.animated { /* width set via inline style or JS */
    }

/* ===== COUNTERS ===== */

.counters {
    padding: 70px 0;
    background: linear-gradient(135deg, #0d1b2a, #1b3a5c);
    color: #fff;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.counter-icon {
    background: rgba(24, 139, 246, 0.1) !important;
    color: var(--primary-color) !important;
}

.counter-number {
    font-family: 'Plus Jakarta Sans',sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
}

.counter-suffix {
    color: var(--primary-color) !important;
}

.counter-label {
    font-size: .9rem;
    color: rgba(255,255,255,.7);
}

/* ===== WHY US ===== */

.why-us {
    padding: 100px 0;
    background: #fff;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: #f8fafb;
    border-radius: 14px;
    padding: 40px 30px;
    text-align: center;
    transition: all .35s;
    border: 1px solid #eef1f5;
}

    .why-card:hover {
        border-color: rgba(24, 139, 246, 0.2) !important;
    }

.why-icon {
    background: rgba(24, 139, 246, 0.1) !important;
    color: var(--primary-color) !important;
}

.why-card:hover .why-icon {
    background: var(--primary-color) !important;
    color: #fff !important;
}

.why-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card p {
    font-size: .9rem;
    color: #666;
}

/* ===== PORTFOLIO / PROJECTS ===== */

.projects {
    padding: 100px 0;
    background: #f5f7fa;
}

.portfolio {
    padding: 100px 0;
    background: #fff;
}

.projects-filter, .portfolio-filter {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid #ddd;
    background: transparent;
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    color: #555;
}

    .filter-btn.active, .filter-btn:hover {
        background: var(--primary-color) !important;
        border-color: var(--primary-color) !important;
        color: #fff !important;
    }

.projects-grid, .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.project-card, .portfolio-card {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
    transition: transform .35s;
    position: relative;
}

    .project-card:hover, .portfolio-card:hover {
        transform: translateY(-6px);
    }

.project-img, .portfolio-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

    .project-img img, .portfolio-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s;
    }

.project-card:hover .project-img img, .portfolio-card:hover .portfolio-img img {
    transform: scale(1.08);
}

.project-overlay, .portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,27,42,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .35s;
}

.project-card:hover .project-overlay, .portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.project-link, .portfolio-link-icon {
    background: var(--primary-color) !important;
}

/* Portfolio card: blue circle icon overlapping photo/info boundary */

.portfolio-card {
    position: relative;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transition: transform .35s, box-shadow .35s;
    text-align: center;
}

    .portfolio-card:hover {
        box-shadow: 0 16px 40px rgba(24, 139, 246, 0.12) !important;
    }

.portfolio-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

    .portfolio-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s;
    }

.portfolio-card:hover .portfolio-img img {
    transform: scale(1.06);
}

.portfolio-info {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: #fff;
    border-radius: 20px;
    padding: 45px 24px 25px;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: all .35s;
}

.portfolio-circle-icon {
    background: var(--primary-color) !important;
    box-shadow: 0 6px 20px rgba(24, 139, 246, 0.25) !important;
}

.portfolio-card:hover .portfolio-circle-icon {
    background: var(--primary-hover-color) !important;
}

.portfolio-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0d1b2a;
}

    .portfolio-info h3 a {
        color: #0d1b2a;
        transition: color .25s;
    }

        .portfolio-info h3 a:hover {
            color: var(--primary-color) !important;
        }

.portfolio-info p {
    font-size: .88rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.project-info {
    padding: 22px 24px;
}

.project-cat {
    color: var(--primary-color) !important;
}

.project-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 6px;
}

    .project-info h3 a:hover {
        color: var(--primary-color) !important;
    }

/* ===== TESTIMONIALS ===== */

.testimonials {
    padding: 100px 0;
    background: #fff;
}

.testimonials-slider {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
}

.testimonial-card {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeSlide .5s ease;
}

    .testimonial-card.active {
        display: flex;
    }

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-quote {
    color: var(--primary-color) !important;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .testimonial-author img {
        border-color: var(--primary-color) !important;
    }

    .testimonial-author h4 {
        font-size: 1rem;
        font-weight: 700;
    }

    .testimonial-author span {
        font-size: .82rem;
        color: #888;
    }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ccc;
    background: transparent;
    cursor: pointer;
    transition: .25s;
}

    .dot.active {
        background: var(--primary-color) !important;
        border-color: var(--primary-color) !important;
    }

/* ===== CTA BANNER ===== */

.cta-banner {
    background: linear-gradient(135deg, var(--primary-hover-color), var(--primary-color)) !important;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-content h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.cta-content p {
    color: rgba(255,255,255,.85);
    max-width: 560px;
}

/* ===== BLOG ===== */

.blog {
    padding: 100px 0;
    background: #f5f7fa;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
    transition: transform .35s;
}

    .blog-card:hover {
        transform: translateY(-6px);
    }

.blog-img {
    position: relative;
    height: 210px;
    overflow: hidden;
}

    .blog-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s;
    }

.blog-card:hover .blog-img img {
    transform: scale(1.06);
}

.blog-date {
    background: var(--primary-color) !important;
}

.blog-body {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 18px;
    font-size: .8rem;
    color: #999;
    margin-bottom: 12px;
}

    .blog-meta span {
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    .blog-meta i {
        color: var(--primary-color) !important;
    }

.blog-body h3 {
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 14px;
}

    .blog-body h3 a:hover {
        color: var(--primary-color) !important;
    }

.read-more {
    color: var(--primary-color) !important;
}

    .read-more:hover {
        gap: 10px;
    }

/* ===== FOOTER ===== */

.footer {
    background: #0d1b2a;
    color: rgba(255,255,255,.72);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

    .footer-logo span {
        font-family: 'Plus Jakarta Sans',sans-serif;
        font-size: 1.5rem;
        font-weight: 800;
        color: #fff;
    }

.footer-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    border-radius: 0;
}

.footer-about p {
    font-size: .9rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

    .footer-socials a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,.15);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .85rem;
        color: rgba(255,255,255,.65);
        transition: all .25s;
    }

        .footer-socials a:hover {
            background: var(--primary-color) !important;
            border-color: var(--primary-color) !important;
        }

.footer-col h4 {
    font-family: 'Plus Jakarta Sans',sans-serif;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

    .footer-col h4::after {
        background: var(--primary-color) !important;
    }

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-col ul a {
        font-size: .9rem;
        transition: all .2s;
    }

        .footer-col ul a:hover {
            color: var(--primary-color) !important;
        }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .88rem;
}

.footer-contact i {
    color: var(--primary-color) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 50px;
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: .82rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

    .footer-bottom-links a {
        font-size: .82rem;
        transition: color .25s;
    }

        .footer-bottom-links a:hover {
            color: var(--primary-color) !important;
        }

/* ===== BACK TO TOP ===== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #188bf6;
    color: #fff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(24,139,246,.35);
}

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top:hover {
        background: #1170cc;
    }

/* ===== RESPONSIVE: 1024px ===== */

@media (max-width: 1024px) {
    .ctfrm_contact-grid {
        gap: 40px;
    }

    .ctfrm_main-title {
        font-size: 38px;
    }
}

/* ===== RESPONSIVE: 768px ===== */

@media (max-width: 768px) {
    .top-bar-left {
        gap: 14px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 10px 30px rgba(0,0,0,.1);
        padding: 20px;
        z-index: 999;
    }

        .main-nav.open {
            display: block;
        }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        padding: 14px 0;
    }

        .nav-link::after {
            bottom: 8px;
        }

    .mobile-toggle {
        display: flex;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-bottom: 40px;
    }

    .hero-text {
        margin: 0 auto 32px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-reviews {
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 320px;
        margin: 0 auto;
    }

    .about-inner {
        flex-direction: column;
    }

    .about-images {
        min-height: 350px;
        width: 100%;
    }

    .about-img-main {
        width: 80%;
    }

    .about-img-overlay {
        width: 50%;
    }

    .experience-inner {
        flex-direction: column;
        gap: 30px;
    }

    .experience-number {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .services-grid, .why-us-grid, .projects-grid, .portfolio-grid, .blog-grid {
        grid-template-columns: 1fr;
    }

    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-content {
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   14. BRANDING VARIABLES & GLOBAL OVERRIDES
   ========================================================================== */

:root {
    --primary-color: #188bf6;
    --primary-hover-color: #1170cc;
    --heading-font: 'Plus Jakarta Sans', sans-serif;
    --text-font: 'Inter', sans-serif;
}

/* Dynamic theme overrides targeting main elements to react to HSL Hue rotation */

.btn-primary, .btn-accent, .back-to-top {
    background: var(--primary-color) !important;
}

    .btn-primary:hover, .btn-accent:hover, .back-to-top:hover {
        background: var(--primary-hover-color) !important;
    }

.top-bar-left i, .top-bar-right a:hover, .search-btn:hover {
    color: var(--primary-color) !important;
}

/* ==========================================================================
   15. FLOATING DASHBOARD & PORTAL LAYOUT
   ========================================================================== */

    .floating-dashboard-btn:hover {
        transform: scale(1.08) rotate(45deg);
        background: var(--primary-color);
        border-color: var(--primary-color);
    }

.floating-btn-tooltip {
    position: absolute;
    left: 70px;
    background: #0d1b2a;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    pointer-events: none;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.floating-dashboard-btn:hover .floating-btn-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Dashboard modal viewport structure */

.dashboard-portal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

    .dashboard-portal.open {
        opacity: 1;
        visibility: visible;
    }

.dashboard-portal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 21, 51, 0.6);
    backdrop-filter: blur(8px);
}

.dashboard-portal-container {
    position: relative;
    width: 92%;
    max-width: 1280px;
    height: 85vh;
    background: #f7fafc;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    z-index: 10002;
    transform: scale(0.95) translateY(15px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.dashboard-portal.open .dashboard-portal-container {
    transform: scale(1) translateY(0);
}

/* Sidebar panel */

.dashboard-sidebar {
    width: 280px;
    background: #0d1b2a;
    color: #fff;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-header {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-brand-text {
    font-family: var(--heading-font);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.sidebar-menu {
    flex: 1;
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow-y: auto;
}

.menu-item {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 18px;
    border-radius: 8px;
    font-family: var(--text-font);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    transition: all 0.25s ease;
}

    .menu-item i {
        font-size: 1rem;
        width: 20px;
        transition: transform 0.25s;
    }

    .menu-item:hover {
        background: rgba(255, 255, 255, 0.04);
        color: #fff;
    }

    .menu-item.active {
        background: var(--primary-color);
        color: #fff;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(24, 139, 246, 0.3);
    }

        .menu-item.active i {
            transform: scale(1.08);
        }

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.close-portal-btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Main workspace panel */

.dashboard-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.dashboard-header {
    background: #fff;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eef2f6;
}

.header-title-wrap h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0d1b2a;
}

.header-subtitle {
    font-size: 0.82rem;
    color: #718096;
    margin-top: 2px;
}

.header-user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-info {
    text-align: right;
}

.profile-name {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #0d1b2a;
}

.profile-role {
    display: block;
    font-size: 0.72rem;
    color: var(--primary-color);
    font-weight: 600;
}

.profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ebf8ff;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 2px solid rgba(24, 139, 246, 0.15);
}

.dashboard-body {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
}

.tab-panel {
    display: none;
    animation: tabFadeIn 0.35s ease;
}

    .tab-panel.active {
        display: block;
    }

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   16. DASHBOARD WIDGETS & GRID SYSTEM
   ========================================================================== */

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

    .dashboard-grid.two-cols {
        grid-template-columns: repeat(2, 1fr);
    }

.dashboard-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
    overflow: hidden;
}

    .dashboard-card.full-width {
        grid-column: span 2;
    }

    .dashboard-card .card-header {
        background: #f8fafc;
        padding: 16px 20px;
        display: flex;
        align-items: center;
        gap: 12px;
        border-bottom: 1px solid #edf2f7;
    }

.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: #f2f4f6;
    color: #000000;
    margin-bottom: 24px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dashboard-card .card-header h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0d1b2a;
}

.dashboard-card .card-body {
    padding: 20px;
}

/* Form configurations */

.form-group {
    margin-bottom: 16px;
}

    .form-group label {
        display: block;
        font-size: 0.82rem;
        font-weight: 600;
        color: #4a5568;
        margin-bottom: 6px;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group select {
        width: 100%;
        padding: 10px 14px;
        border-radius: 6px;
        border: 1px solid #cbd5e0;
        font-family: var(--text-font);
        font-size: 0.88rem;
        color: #2d3748;
        outline: none;
        transition: border-color 0.2s;
    }

        .form-group input[type="text"]:focus,
        .form-group input[type="email"]:focus,
        .form-group select:focus {
            border-color: var(--primary-color);
        }

/* Custom Swatches */

.slider-val-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .slider-val-wrap input[type="range"] {
        flex: 1;
        height: 6px;
        border-radius: 3px;
        outline: none;
        -webkit-appearance: none;
        background: #e2e8f0;
    }

        .slider-val-wrap input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--primary-color);
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0,0,0,0.25);
            transition: background 0.15s;
        }

.slider-display-val {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 100px;
}

.palette-swatch-preview {
    margin-top: 10px;
    height: 10px;
    border-radius: 5px;
    background: var(--primary-color);
    transition: background 0.2s;
}

/* Toggle Switches */

.toggle-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.toggle-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 500;
    color: #4a5568;
    cursor: pointer;
}

    .toggle-label input {
        display: none;
    }

.toggle-slider {
    position: relative;
    width: 44px;
    height: 22px;
    background: #cbd5e0;
    border-radius: 11px;
    transition: background 0.3s;
}

    .toggle-slider::before {
        content: '';
        position: absolute;
        width: 16px;
        height: 16px;
        left: 3px;
        bottom: 3px;
        background: #fff;
        border-radius: 50%;
        transition: transform 0.3s;
        box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    }

.toggle-label input:checked + .toggle-slider {
    background: var(--primary-color);
}

    .toggle-label input:checked + .toggle-slider::before {
        transform: translateX(22px);
    }

/* Card help texts */

.card-help-text {
    font-size: 0.8rem;
    color: #718096;
    margin-bottom: 12px;
}

/* Demo importer console styles */

.demo-import-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .demo-import-box p {
        font-size: 0.82rem;
        color: #4a5568;
    }

.import-progress-wrap {
    margin-top: 8px;
}

.import-console {
    margin-top: 10px;
    background: #0f172a;
    border-radius: 8px;
    padding: 12px;
    height: 80px;
    overflow-y: auto;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.75rem;
    color: #38bdf8;
    border: 1px solid #1e293b;
}

.console-line {
    margin-bottom: 4px;
}

    .console-line.success {
        color: #4ade80;
    }

    .console-line.error {
        color: #f87171;
    }

/* ==========================================================================
   17. CLIENT WORKSPACE & ESTIMATORS
   ========================================================================== */

.client-intro h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0d1b2a;
}

.client-intro p {
    font-size: 0.85rem;
    color: #718096;
    margin-top: 4px;
}

.stats-ribbon {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 20px 0 24px;
}

.stat-bubble {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
    text-align: center;
}

.stat-val {
    display: block;
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-lbl {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.project-channel-item {
    padding: 16px 0;
    border-bottom: 1px solid #edf2f7;
}

    .project-channel-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .project-channel-item h4 {
        font-size: 0.9rem;
        font-weight: 700;
        color: #0d1b2a;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .project-channel-item p {
        font-size: 0.78rem;
        color: #718096;
        margin-top: 4px;
    }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background-color: rgba(57, 184, 253, 0.1);
    color: #006591;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    text-transform: uppercase;
}

.badge-success {
    background: #c6f6d5;
    color: #22543d;
}

.badge-warning {
    background: #feebc8;
    color: #744210;
}

.channel-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

    .channel-progress .progress-bar-bg {
        flex: 1;
        margin: 0;
    }

.progress-percent {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Checkbox options grid */

.checkbox-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 6px;
}

.check-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #4a5568;
    cursor: pointer;
    font-weight: 500;
}

    .check-option input {
        accent-color: var(--primary-color);
    }

/* Quote Box & Proposal Styles */

.quote-result-box {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.quote-total-wrap {
    text-align: center;
    padding: 10px 0 20px;
    border-bottom: 1px dashed #e2e8f0;
}

.quote-lbl {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #718096;
}

.quote-price {
    display: block;
    font-family: var(--heading-font);
    font-size: 2.2rem;
    font-weight: 800;
    color: #2b6cb0;
    margin-top: 4px;
}

.breakdown-list {
    margin: 18px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: #4a5568;
}

    .breakdown-item.highlight {
        font-weight: 700;
        color: var(--primary-color);
    }

.full-width {
    width: 100%;
}

/* ==========================================================================
   18. NEON SECURITY SHIELD VAULT & TECH CHATS
   ========================================================================== */

.security-toggles-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sec-toggle-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #edf2f7;
}

    .sec-toggle-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

.sec-info h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0d1b2a;
}

.sec-info p {
    font-size: 0.72rem;
    color: #718096;
    margin-top: 2px;
    line-height: 1.4;
}

.toggle-label-sec {
    position: relative;
    cursor: pointer;
}

    .toggle-label-sec input {
        display: none;
    }

.toggle-slider-sec {
    display: block;
    width: 44px;
    height: 22px;
    background: #e2e8f0;
    border-radius: 11px;
    position: relative;
    transition: background 0.3s;
}

    .toggle-slider-sec::before {
        content: '';
        position: absolute;
        width: 16px;
        height: 16px;
        left: 3px;
        bottom: 3px;
        background: #fff;
        border-radius: 50%;
        transition: transform 0.3s;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

.toggle-label-sec input:checked + .toggle-slider-sec {
    background: #38a169;
}

    .toggle-label-sec input:checked + .toggle-slider-sec::before {
        transform: translateX(22px);
    }

/* Circular HUD Vault Shield */

.sec-shield-meter-wrap {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.sec-shield-outer {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: conic-gradient(#38a169 99.8%, #e2e8f0 0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 20px rgba(56, 161, 105, 0.25);
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

.sec-shield-inner {
    width: 116px;
    height: 116px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sec-shield-percent {
    font-family: var(--heading-font);
    font-size: 1.45rem;
    font-weight: 800;
    color: #38a169;
    line-height: 1;
}

.sec-shield-lbl {
    font-size: 0.65rem;
    font-weight: 700;
    color: #718096;
    letter-spacing: 1px;
    margin-top: 4px;
}

.hud-console-log {
    margin-top: 18px;
    background: #0d1b2a;
    border-radius: 8px;
    padding: 12px;
    height: 90px;
    overflow-y: auto;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.72rem;
    line-height: 1.5;
}

.log-line {
    margin-bottom: 4px;
}

    .log-line.success {
        color: #48bb78;
    }

    .log-line.info {
        color: #3182ce;
    }

    .log-line.warning {
        color: #dd6b20;
    }

    .log-line.error {
        color: #e53e3e;
    }

/* Support tech live chat styles */

.chat-wrapper {
    display: flex;
    flex-direction: column;
    height: 380px;
}

.chat-history {
    flex: 1;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 18px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.chat-bubble {
    max-width: 78%;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .chat-bubble.bot {
        background: #fff;
        border: 1px solid #e2e8f0;
        align-self: flex-start;
        border-bottom-left-radius: 2px;
    }

    .chat-bubble.user {
        background: var(--primary-color);
        color: #fff;
        align-self: flex-end;
        border-bottom-right-radius: 2px;
    }

.bubble-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #718096;
}

.chat-bubble.user .bubble-header {
    color: rgba(255, 255, 255, 0.75);
}

.chat-time {
    margin-left: auto;
    font-weight: 500;
}

.bubble-content {
    font-size: 0.85rem;
    line-height: 1.45;
}

.chat-suggested-prompts {
    display: flex;
    gap: 10px;
    margin: 12px 0;
    overflow-x: auto;
    padding-bottom: 2px;
}

.suggested-btn {
    background: #ebf8ff;
    border: 1px solid rgba(24, 139, 246, 0.15);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-family: var(--text-font);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

    .suggested-btn:hover {
        background: var(--primary-color);
        color: #fff;
        box-shadow: 0 4px 10px rgba(24, 139, 246, 0.15);
    }

.chat-input-bar {
    display: flex;
    gap: 10px;
}

    .chat-input-bar input {
        flex: 1;
        padding: 12px 16px;
        border-radius: 8px;
        border: 1px solid #cbd5e0;
        outline: none;
        font-family: var(--text-font);
        font-size: 0.88rem;
        color: #2d3748;
    }

        .chat-input-bar input:focus {
            border-color: var(--primary-color);
        }

.chat-send-btn {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(24, 139, 246, 0.2);
    transition: background 0.2s;
}

    .chat-send-btn:hover {
        background: var(--primary-hover-color);
    }

/* ==========================================================================
   19. PORTAL DARK MODE STYLING
   ========================================================================== */

.dashboard-portal.portal-dark .dashboard-portal-container {
    background: #0f172a;
    border-color: rgba(255, 255, 255, 0.08);
}

.dashboard-portal.portal-dark .dashboard-header {
    background: #1e293b;
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.dashboard-portal.portal-dark .header-title-wrap h2 {
    color: #fff;
}

.dashboard-portal.portal-dark .header-subtitle {
    color: #94a3b8;
}

.dashboard-portal.portal-dark .profile-name {
    color: #fff;
}

.dashboard-portal.portal-dark .dashboard-card {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.05);
}

    .dashboard-portal.portal-dark .dashboard-card .card-header {
        background: #1e293b;
        border-bottom-color: rgba(255, 255, 255, 0.05);
    }

        .dashboard-portal.portal-dark .dashboard-card .card-header h3 {
            color: #fff;
        }

.dashboard-portal.portal-dark .form-group label {
    color: #94a3b8;
}

.dashboard-portal.portal-dark .form-group input[type="text"],
.dashboard-portal.portal-dark .form-group input[type="email"],
.dashboard-portal.portal-dark .form-group select {
    background: #0f172a;
    border-color: rgba(255, 255, 255, 0.1);
    color: #f1f5f9;
}

.dashboard-portal.portal-dark .toggle-label {
    color: #94a3b8;
}

.dashboard-portal.portal-dark .card-help-text {
    color: #64748b;
}

.dashboard-portal.portal-dark .client-intro h3 {
    color: #fff;
}

.dashboard-portal.portal-dark .client-intro p {
    color: #94a3b8;
}

.dashboard-portal.portal-dark .stat-bubble {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.05);
}

.dashboard-portal.portal-dark .stat-lbl {
    color: #64748b;
}

.dashboard-portal.portal-dark .project-channel-item {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

    .dashboard-portal.portal-dark .project-channel-item h4 {
        color: #fff;
    }

    .dashboard-portal.portal-dark .project-channel-item p {
        color: #94a3b8;
    }

.dashboard-portal.portal-dark .check-option {
    color: #94a3b8;
}

.dashboard-portal.portal-dark .quote-total-wrap {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.dashboard-portal.portal-dark .quote-lbl {
    color: #94a3b8;
}

.dashboard-portal.portal-dark .quote-price {
    color: #63b3ed;
}

.dashboard-portal.portal-dark .breakdown-item {
    color: #94a3b8;
}

.dashboard-portal.portal-dark .chat-history {
    background: #0f172a;
    border-color: rgba(255, 255, 255, 0.08);
}

.dashboard-portal.portal-dark .chat-bubble.bot {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.05);
    color: #f1f5f9;
}

.dashboard-portal.portal-dark .chat-input-bar input {
    background: #0f172a;
    border-color: rgba(255, 255, 255, 0.1);
    color: #f1f5f9;
}

.dashboard-portal.portal-dark .sec-toggle-item {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.dashboard-portal.portal-dark .sec-info h4 {
    color: #fff;
}

.dashboard-portal.portal-dark .sec-info p {
    color: #94a3b8;
}

.dashboard-portal.portal-dark .sec-shield-inner {
    background: #1e293b;
}

/* ==========================================================================
   20. STATEMENT OF WORK MODAL STYLES
   ========================================================================== */

.sow-modal {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

    .sow-modal.open {
        opacity: 1;
        visibility: visible;
    }

    .sow-modal::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(3, 21, 51, 0.7);
        backdrop-filter: blur(5px);
    }

.sow-modal-content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 760px;
    max-height: 82vh;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    z-index: 12002;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    animation: sowPop 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes sowPop {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.sow-modal-header {
    background: #0d1b2a;
    color: #fff;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .sow-modal-header h3 {
        font-size: 1.15rem;
        font-weight: 700;
        font-family: var(--heading-font);
    }

.sow-modal-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.15s;
}

    .sow-modal-close:hover {
        color: #fff;
    }

.sow-modal-body {
    padding: 30px;
    overflow-y: auto;
    font-size: 0.88rem;
    line-height: 1.65;
    color: #2d3748;
}

.sow-header-info {
    border-bottom: 2px solid #edf2f7;
    padding-bottom: 18px;
    margin-bottom: 20px;
}

.sow-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0d1b2a;
    font-family: var(--heading-font);
}

.sow-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 14px;
    font-size: 0.8rem;
    color: #718096;
}

    .sow-meta-grid strong {
        color: #2d3748;
    }

.sow-section-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #0d1b2a;
    margin: 22px 0 10px;
    font-family: var(--heading-font);
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 6px;
}

.sow-table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0;
    font-size: 0.82rem;
}

    .sow-table th, .sow-table td {
        padding: 10px 12px;
        text-align: left;
        border-bottom: 1px solid #e2e8f0;
    }

    .sow-table th {
        background: #f7fafc;
        color: #4a5568;
        font-weight: 700;
    }

    .sow-table td.amount {
        text-align: right;
        font-weight: 600;
        color: #2d3748;
    }

    .sow-table tr.total-row td {
        border-top: 2px solid #cbd5e0;
        border-bottom: 2px double #cbd5e0;
        font-weight: 800;
        font-size: 0.95rem;
        color: var(--primary-color);
    }

.sow-notes {
    font-size: 0.78rem;
    color: #718096;
    background: #ebf8ff;
    padding: 14px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin-top: 20px;
}

.sow-modal-footer {
    padding: 18px 24px;
    background: #f7fafc;
    border-top: 1px solid #edf2f7;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

@media print {
    body * {
        visibility: hidden;
    }

    .sow-modal, .sow-modal-content, .sow-modal-body, .sow-modal-body * {
        visibility: visible;
    }

    .sow-modal {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: auto;
    }

    .sow-modal-content {
        border: none;
        box-shadow: none;
        max-height: none;
        overflow: visible;
    }

    .sow-modal-footer, .sow-modal-header, .floating-dashboard-btn {
        display: none !important;
    }
}

/* Responsive Dashboard Portal */

@media (max-width: 991px) {

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        background: #f8f9fa;
        margin-top: 10px;
    }

    .dropdown.active .submenu {
        display: block;
    }
}

.expertise-section {
    font-family: 'Inter', sans-serif;
    background-color: #f7f9fb;
    color: #191c1e;
    line-height: 1.5;
    padding: 80px 16px;
    max-width: 1280px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .expertise-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Hero Section */

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: #39b8fd;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

h1 {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #191c1e;
    margin: 24px 0;
}

.hero-description {
    font-size: 18px;
    color: #45464d;
    max-width: 36rem;
    margin-bottom: 24px;
}

/* Progress Card */

.progress-card {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0px 4px 20px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(198, 198, 205, 0.3);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 12px;
}

.progress-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #006591;
}

.progress-track {
    height: 12px;
    width: 100%;
    background-color: #e6e8ea;
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #39b8fd;
    box-shadow: 0 0 12px rgba(57, 184, 253, 0.4);
    border-radius: 9999px;
    transition: width 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.progress-footer {
    padding-top: 8px;
    border-top: 1px solid rgba(198, 198, 205, 0.2);
}

.progress-note {
    font-size: 14px;
    color: #45464d;
    font-style: italic;
}

/* Expertise Grid */

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.card {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0px 4px 20px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(198, 198, 205, 0.5);
    transition: all 0.3s ease;
}

    .card:hover {
        border-color: #39b8fd;
    }

        .card:hover .card-icon {
            background-color: #39b8fd;
            color: #ffffff;
        }

    .card h3 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 12px;
        color: #191c1e;
    }

    .card p {
        font-size: 16px;
        color: #45464d;
        line-height: 1.6;
        margin-bottom: 24px;
    }

.card-link {
    display: flex;
    align-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    color: #006591;
    text-transform: uppercase;
    cursor: pointer;
    transition: gap 0.2s ease;
    gap: 4px;
}

.card:hover .card-link {
    gap: 8px;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    transition: all 0.3s ease;
}

/**==============ABOUT SECTION CSS=====================**/

.abt-approach-section {
    background-color: #fbf9f8;
    font-family: 'Inter', sans-serif;
    color: #1b1c1c;
    line-height: 1.6;
    padding-top: 120px;
    padding-bottom: 120px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

/* Typography */

.abt-small-heading {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #005eb3;
    text-transform: uppercase;
    display: block;
    margin-bottom: 24px;
}

.abt-main-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #002235;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.abt-body-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #42474d;
    max-width: 600px;
    margin-bottom: 32px;
}

/* Layout Structure */

.abt-approach-container {
    max-width: 1280px;
    width: 100%;
    margin-left: 64px;
    margin-right: 64px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

/* Feature Cards */

.abt-features-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width: 640px) {
    .abt-features-grid {
        grid-template-columns: 1fr;
    }
}

.abt-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background-color: #f0eded;
    border-radius: 8px;
    border-left: 4px solid #005eb3;
}

.abt-feature-icon {
    color: #005eb3;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.abt-feature-title {
    font-weight: 700;
    color: #002235;
    font-size: 16px;
}

.abt-feature-desc {
    font-size: 14px;
    color: #42474d;
}

/* Contact Card */

.abt-cta-card {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0px 4px 20px rgba(19, 56, 79, 0.08);
    display: flex;
    flex-direction: column;
    gap: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .abt-cta-card:hover {
        transform: translateY(-4px);
        box-shadow: 0px 8px 30px rgba(19, 56, 79, 0.12);
    }

.abt-cta-card-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    color: #002235;
    margin-bottom: 16px;
}

.abt-cta-card-text {
    color: #42474d;
    margin-bottom: 24px;
}

/* Buttons */

.abt-btn-primary {
    background-color: #206DC5;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

    .abt-btn-primary:hover {
        background-color: #1a59a1;
        transform: translateY(-2px);
    }

/* Contact Details */

.abt-contact-divider {
    border-top: 1px solid #c2c7cd;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.abt-contact-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #72787d;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.abt-contact-email {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #13384f;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .abt-contact-email:hover {
        color: #005eb3;
    }

.abt-phone-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.abt-phone-icon-wrapper {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    background-color: #d5e3ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .abt-phone-icon-wrapper .abt-feature-icon {
        color: #005eb3;
    }

.abt-phone-label {
    font-size: 12px;
    font-weight: 700;
    color: #72787d;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.abt-phone-number {
    font-weight: 600;
    color: #002235;
}

/* Animations */

.abt-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

    .abt-reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/**==============ABOUT ENDS HERE======================***/

/**==========WHY CHOOSE US SECTION STARTS HERE===========***/

.wcu-why-choose-us-section {
    background-color: #fbf9f8;
    font-family: 'Inter', sans-serif;
    color: #1b1c1c;
    line-height: 1.6;
    padding: 120px 64px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
    .hmcta-section {
        padding: 60px 20px;
    }

    .hmcta-box {
        padding: 60px 24px;
    }

    .hmcta-title {
        font-size: 32px;
    }

    .hmcta-subtext {
        font-size: 16px;
    }

    .hmcta-button {
        width: 100%;
        padding: 16px 24px;
    }
}

.wcu-why-choose-us {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    width: 100%;
}

.wcu-content-column {
    display: flex;
    flex-direction: column;
}

.wcu-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #005eb3;
    margin-bottom: 16px;
    display: block;
}

.wcu-main-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #002235;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.wcu-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #42474d;
    margin-bottom: 40px;
    max-width: 560px;
}

.wcu-features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.wcu-feature-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0px 4px 20px rgba(19, 56, 79, 0.08);
    transition: all 0.3s ease-in-out;
}

    .wcu-feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0px 8px 30px rgba(19, 56, 79, 0.12);
    }

.wcu-feature-icon {
    width: 48px;
    height: 48px;
    background-color: #F8FAFC;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #005eb3;
    flex-shrink: 0;
}

.wcu-feature-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #002235;
    margin: 0 0 8px 0;
}

.wcu-feature-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #42474d;
    margin: 0;
}

.wcu-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.wcu-stat-box {
    background-color: #002235;
    padding: 32px;
    border-radius: 0.5rem;
    color: #ffffff;
}

    .wcu-stat-box.alt {
        background-color: #005eb3;
    }

.wcu-stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
}

.wcu-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.4;
}

.wcu-visual-column {
    position: relative;
}

.wcu-main-image-wrapper {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0px 4px 20px rgba(19, 56, 79, 0.08);
    aspect-ratio: 4/5;
    background-color: #e4e2e1;
}

    .wcu-main-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.wcu-floating-verification {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #ffffff;
    padding: 24px;
    border-radius: 0.5rem;
    box-shadow: 0px 4px 20px rgba(19, 56, 79, 0.08);
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 200px;
    z-index: 10;
}

.wcu-verification-icon {
    background-color: #E6F0F9;
    padding: 12px;
    border-radius: 50%;
    color: #005eb3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wcu-verification-text-title {
    font-weight: 700;
    color: #002235;
    font-size: 14px;
    margin-bottom: 2px;
}

.wcu-verification-text-subtitle {
    font-size: 12px;
    color: #42474d;
}

/* Animation Classes */

.wcu-reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

    .wcu-reveal-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }

/**==========WHY CHOOSE US SECTION ENDS HERE==============**/

/**==========FOURTH SECTION STARTS HERE=====================**/

.lcs-portfolio-section {
    font-family: 'Inter', sans-serif;
    color: #1b1c1c;
    line-height: 1.6;
    overflow-x: hidden;
    padding: 120px 0;
    background-color: #fbf9f8;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1, h2, h3, .lcs-heading-font {
    font-family: 'Montserrat', sans-serif;
}

.lcs-container {
    max-width: 1280px;
    width: 100%;
    padding: 0 64px;
    margin: 0 auto;
}

.lcs-header-block {
    max-width: 800px;
    margin-bottom: 80px;
    text-align: left;
}

.lcs-small-heading {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #005eb3;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.lcs-main-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #002235;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.lcs-intro-text {
    font-size: 18px;
    color: #42474d;
    max-width: 700px;
}

.lcs-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 400px);
    gap: 24px;
    width: 100%;
}

.lcs-project-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0px 4px 20px rgba(19, 56, 79, 0.08);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

    .lcs-project-card:hover {
        transform: translateY(-8px);
        box-shadow: 0px 10px 30px rgba(19, 56, 79, 0.12);
    }

.lcs-card-image-wrapper {
    position: relative;
    flex: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.lcs-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lcs-project-card:hover .lcs-card-image {
    transform: scale(1.05);
}

.lcs-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 34, 53, 0.9) 0%, rgba(0, 34, 53, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    opacity: 1;
    transition: background 0.3s ease;
}

.lcs-project-category {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #005eb3;
    text-transform: uppercase;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.95);
    padding: 4px 12px;
    width: fit-content;
    border-radius: 2px;
}

.lcs-project-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.lcs-project-action {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.8;
    transition: opacity 0.3s ease, gap 0.3s ease;
}

.lcs-project-card:hover .lcs-project-action {
    opacity: 1;
    gap: 12px;
}

/* Bento Layout Specifics */

.lcs-card-1 {
    grid-column: span 7;
}

.lcs-card-2 {
    grid-column: span 5;
}

.lcs-card-3 {
    grid-column: span 5;
}

.lcs-card-4 {
    grid-column: span 7;
}

/**==========FOURTH SECTION ENDS HERE=======================**/

/**=========FIFTH SECTION STARTS HERE======================**/

.dtd-process-section {
    background-color: #fbf9f8;
    color: #1b1c1c;
    font-family: 'Inter', sans-serif;
    padding-top: 120px;
    padding-bottom: 120px;
    overflow: hidden;
}

.dtd-process-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 64px;
}

.dtd-process-header {
    text-align: center;
    margin-bottom: 80px;
}

.dtd-process-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
    color: #005eb3;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.dtd-process-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #002235;
    max-width: 800px;
    margin: 0 auto;
}

.dtd-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

@media (min-width: 1025px) {
    .dtd-process-grid::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 10%;
        right: 10%;
        height: 2px;
        background: repeating-linear-gradient(to right, #c2c7cd 0, #c2c7cd 4px, transparent 4px, transparent 12px);
        z-index: 1;
    }
}

.dtd-process-card {
    background-color: #ffffff;
    padding: 48px 32px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0px 4px 20px rgba(19, 56, 79, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    .dtd-process-card:hover {
        transform: translateY(-8px);
        box-shadow: 0px 8px 30px rgba(19, 56, 79, 0.12);
    }

.dtd-step-number {
/*    background-color: #d5e3ff;
*/   
    color: #004689;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.dtd-step-icon {
    width: 56px;
    height: 56px;
    background-color: #13384f;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #ffffff;
}

.dtd-step-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    color: #002235;
    margin-bottom: 16px;
    margin-top: 0;
}

.dtd-step-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #42474d;
    margin: 0;
}

.dtd-process-card:hover .material-symbols-outlined {
    font-variation-settings: 'FILL' 1;
    transform: scale(1.1);
}

/**=========FIFTH SECTION ENDS HERE========================**/

/**===========SIXTH SECTION STARTS HERE===================**/

/* CSS confined to unique prefixed classes */

.ctfrm_contact-page-container {
    --ctfrm-primary-blue: #13384f;
    --ctfrm-secondary-blue: #005eb3;
    --ctfrm-surface-bg: #fbf9f8;
    --ctfrm-card-bg: #ffffff;
    --ctfrm-text-main: #1b1c1c;
    --ctfrm-text-muted: #42474d;
    --ctfrm-outline-color: #c2c7cd;
    --ctfrm-success-color: #10b981;
    --ctfrm-font-headline: 'Montserrat', sans-serif;
    --ctfrm-font-body: 'Inter', sans-serif;
    --ctfrm-radius-sm: 0.125rem;
    --ctfrm-radius-md: 0.25rem;
    --ctfrm-radius-lg: 0.5rem;
    --ctfrm-shadow-subtle: 0px 4px 20px rgba(19, 56, 79, 0.08);
    --ctfrm-shadow-elevated: 0px 12px 30px rgba(19, 56, 79, 0.12);
    --ctfrm-container-width: 1280px;
    font-family: var(--ctfrm-font-body);
    background-color: var(--ctfrm-surface-bg);
    color: var(--ctfrm-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

    .ctfrm_contact-page-container * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

.ctfrm_contact-grid {
    max-width: var(--ctfrm-container-width);
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

/* LEFT PANEL: INFORMATION */

.ctfrm_info-panel {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ctfrm_category-label {
    font-family: var(--ctfrm-font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--ctfrm-secondary-blue);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.ctfrm_main-title {
    font-family: var(--ctfrm-font-headline);
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ctfrm-primary-blue);
}

.ctfrm_contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.ctfrm_contact-detail-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ctfrm_icon-container {
    width: 48px;
    height: 48px;
    background-color: #d5e3ff;
    color: var(--ctfrm-secondary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--ctfrm-radius-lg);
    flex-shrink: 0;
}

.ctfrm_detail-text-group h4 {
    font-family: var(--ctfrm-font-headline);
    font-size: 16px;
    font-weight: 700;
    color: var(--ctfrm-primary-blue);
}

.ctfrm_detail-text-group p {
    font-size: 16px;
    color: var(--ctfrm-text-muted);
}

.ctfrm_atmospheric-image-wrapper {
    margin-top: 12px;
    border-radius: var(--ctfrm-radius-lg);
    overflow: hidden;
    height: 240px;
    box-shadow: var(--ctfrm-shadow-subtle);
}

.ctfrm_atmospheric-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RIGHT PANEL: FORM */

.ctfrm_form-panel {
    background-color: var(--ctfrm-card-bg);
    padding: 64px;
    border-radius: var(--ctfrm-radius-lg);
    box-shadow: var(--ctfrm-shadow-subtle);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

    .ctfrm_form-panel:hover {
        box-shadow: var(--ctfrm-shadow-elevated);
    }

.ctfrm_form-title {
    font-family: var(--ctfrm-font-headline);
    font-size: 28px;
    font-weight: 600;
    color: var(--ctfrm-primary-blue);
    margin-bottom: 40px;
}

.ctfrm_input-group {
    margin-bottom: 24px;
}

    .ctfrm_input-group label {
        display: block;
        font-family: var(--ctfrm-font-body);
        font-size: 14px;
        font-weight: 700;
        color: var(--ctfrm-text-muted);
        margin-bottom: 10px;
    }

.ctfrm_form-input {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--ctfrm-font-body);
    font-size: 16px;
    border: 1px solid var(--ctfrm-outline-color);
    border-radius: var(--ctfrm-radius-md);
    background-color: #fafafa;
    transition: all 0.2s ease;
    outline: none;
}

    .ctfrm_form-input:focus {
        border-color: var(--ctfrm-secondary-blue);
        background-color: #fff;
        box-shadow: 0 0 0 4px rgba(0, 94, 179, 0.1);
    }

textarea.ctfrm_form-input {
    min-height: 140px;
    resize: none;
}

.ctfrm_submit-button {
    width: 100%;
    padding: 18px;
    background-color: var(--ctfrm-secondary-blue);
    color: var(--ctfrm-card-bg);
    border: none;
    border-radius: var(--ctfrm-radius-md);
    font-family: var(--ctfrm-font-headline);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

    .ctfrm_submit-button:hover {
        background-color: #004a8d;
        transform: translateY(-2px);
    }

    .ctfrm_submit-button:active {
        transform: translateY(0);
    }

/* RESPONSIVE DESIGN */

@media (max-width: 850px) {
    .ctfrm_contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .ctfrm_contact-page-container {
        padding: 60px 24px;
    }

    .ctfrm_form-panel {
        padding: 40px;
    }

    .ctfrm_info-panel {
        text-align: center;
    }

    .ctfrm_contact-detail-row {
        justify-content: center;
    }
}

.ctfrm_material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/**===========SIXTH SECTION ENDS HERE=====================**/

/**===========SEVENTH SECTION STARTS HERE=================**/

/* Precision Enterprise - Final CTA Boxed (Scoped Component) */

.hmcta-section {
    width: 100%;
    padding: 120px 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    background-color: #ffffff;
    position: relative;
}

    /* Subtle background pattern on the base section */

    .hmcta-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(circle at 2px 2px, #e4e2e1 1px, transparent 0);
        background-size: 40px 40px;
        opacity: 0.3;
        pointer-events: none;
    }

.hmcta-box {
    max-width: 1100px;
    width: 100%;
    background-color: #f4f7f9;
    border: 1px solid #dcd9d9;
    border-radius: 0.5rem;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px -15px rgba(0, 34, 53, 0.08);
    overflow: hidden;
    box-sizing: border-box;
}

.hmcta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.hmcta-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #005eb3;
    margin-bottom: 24px;
    display: block;
    text-transform: uppercase;
}

.hmcta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #13384f;
    margin-bottom: 32px;
    text-transform: uppercase;
    margin-top: 0;
}

.hmcta-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #1b1c1c;
    margin-bottom: 48px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hmcta-button-wrapper {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.hmcta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background-color: #206DC5;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.125rem;
    box-shadow: 0px 4px 20px rgba(32, 109, 197, 0.15);
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: none;
}

    .hmcta-button:hover {
        background-color: #1a59a1;
        transform: translateY(-2px);
        box-shadow: 0px 6px 24px rgba(32, 109, 197, 0.25);
    }

    .hmcta-button:active {
        transform: translateY(0);
        opacity: 0.9;
    }

    .hmcta-button .material-symbols-outlined {
        margin-left: 8px;
        font-size: 20px;
    }

/* Decorative Element: Floating Gradient Blur confined to box */

.hmcta-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    z-index: 1;
    pointer-events: none;
    transition: transform 0.1s ease-out;
}

/* Responsive Overrides */

/**===========SEVENTH SECTION ENDS HERE===================**/

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 10rem !important;
    width: auto;
    object-fit: contain;
    border-radius: 0;
}

.nav-list li {
    position: relative;
}

/* Dropdown Menu */

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s ease;
    z-index: 999;
}

    .submenu li a {
        display: block;
        padding: 12px 20px;
        color: #333;
        text-decoration: none;
        transition: .3s;
    }

        .submenu li a:hover {
            background: #f5f7ff;
            color: #0d6efd;
        }

/* Desktop Hover */

.dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile Responsive */


/* ============================================================
   ADL SERVICES SECTION — adl-svc-*
   Single source of truth — no duplicates anywhere
   Responsive: 3col (1200px+) | 2col (768–1024px) | 1col (<560px)
============================================================ */

/* ── Section wrapper ── */
.adl-svc-section {
    background: #f5f7fb;
    padding: 90px 0 80px;
}

.adl-svc-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Section header ── */
.adl-svc-hd {
    text-align: center;
    margin-bottom: 52px;
}

.adl-svc-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #188bf6;
    background: rgba(24,139,246,.08);
    border: 1px solid rgba(24,139,246,.2);
    border-radius: 30px;
    padding: 5px 18px;
    margin-bottom: 14px;
}

.adl-svc-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #0d1b2a;
    line-height: 1.2;
    margin: 0 0 12px;
}

.adl-svc-sub {
    font-size: 1rem;
    color: #667788;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ── Grid ── */
.adl-svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

/* ── Card ── */
.adl-svc-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1.5px solid #e8edf4;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

    /* top blue line on hover */
    .adl-svc-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #188bf6, #0a5fd4);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.32s ease;
        z-index: 2;
    }

    .adl-svc-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 18px 50px rgba(24,139,246,.13);
        border-color: rgba(24,139,246,.25);
        text-decoration: none;
        color: inherit;
    }

        .adl-svc-card:hover::after {
            transform: scaleX(1);
        }

/* ── Card image area ── */
.adl-svc-img-wrap {
    position: relative;
    width: 100%;
    height: 190px;
    overflow: hidden;
    flex-shrink: 0;
}

.adl-svc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.adl-svc-card:hover .adl-svc-img {
    transform: scale(1.06);
}

/* icon badge on top of image */
.adl-svc-img-overlay {
    position: absolute;
    bottom: 14px;
    left: 20px;
    width: 48px;
    height: 48px;
    background: #188bf6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    box-shadow: 0 4px 16px rgba(24,139,246,.45);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    z-index: 1;
}

.adl-svc-card:hover .adl-svc-img-overlay {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(24,139,246,.6);
}

/* ── Card body ── */
.adl-svc-body {
    padding: 18px 22px 0;
    flex: 1;
}

    .adl-svc-body h3 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 1.08rem;
        font-weight: 700;
        color: #0d1b2a;
        margin: 0 0 8px;
        line-height: 1.35;
    }

    .adl-svc-body p {
        font-size: 0.86rem;
        color: #667788;
        line-height: 1.7;
        margin: 0 0 12px;
    }

    .adl-svc-body ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

        .adl-svc-body ul li {
            font-size: 0.81rem;
            color: #555;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }

            .adl-svc-body ul li::before {
                content: '';
                width: 5px;
                height: 5px;
                border-radius: 50%;
                background: #188bf6;
                flex-shrink: 0;
            }

/* ── Card footer CTA ── */
.adl-svc-foot {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px 18px;
    margin-top: 14px;
    border-top: 1px solid #f0f4f8;
    font-size: 0.84rem;
    font-weight: 600;
    color: #188bf6;
    transition: gap 0.22s ease;
}

    .adl-svc-foot .fa-arrow-right {
        font-size: 0.78rem;
        transition: transform 0.22s ease;
    }

.adl-svc-card:hover .adl-svc-foot {
    gap: 12px;
}

    .adl-svc-card:hover .adl-svc-foot .fa-arrow-right {
        transform: translateX(4px);
    }


/* ============================================================
   RESPONSIVE
============================================================ */

/* Tablet: 2 columns */
@media (max-width: 1024px) {
    .adl-svc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .adl-svc-title {
        font-size: 2.1rem;
    }
}

/* Large mobile */
@media (max-width: 767px) {
    .adl-svc-section {
        padding: 64px 0 56px;
    }

    .adl-svc-title {
        font-size: 1.85rem;
    }

    .adl-svc-sub {
        font-size: 0.9rem;
    }

    .adl-svc-grid {
        gap: 18px;
    }

    .adl-svc-img-wrap {
        height: 170px;
    }
}

/* Small mobile: 1 column */
@media (max-width: 560px) {
    .adl-svc-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .adl-svc-title {
        font-size: 1.65rem;
    }

    .adl-svc-img-wrap {
        height: 200px;
    }

    .adl-svc-body {
        padding: 14px 18px 0;
    }

    .adl-svc-foot {
        padding: 12px 18px 16px;
    }
}

@media (max-width: 380px) {
    .adl-svc-title {
        font-size: 1.45rem;
    }
}


/* ============================================================
   SVC-HOME SERVICES SECTION  —  svc-home-*
   Used on Index / Homepage services cards grid
============================================================ */

.svc-home-section {
    background: #f5f7fb;
    padding: 90px 0 80px;
}

.svc-home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.svc-home-header {
    text-align: center;
    margin-bottom: 52px;
}

.svc-home-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #188bf6;
    background: rgba(24,139,246,.08);
    border: 1px solid rgba(24,139,246,.2);
    border-radius: 30px;
    padding: 5px 18px;
    margin-bottom: 14px;
}

.svc-home-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #0d1b2a;
    line-height: 1.2;
    margin: 0 0 12px;
}

.svc-home-subtitle {
    font-size: 1rem;
    color: #667788;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Grid */
.svc-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

/* Card */
.svc-home-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1.5px solid #e8edf4;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

    .svc-home-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #188bf6, #0a5fd4);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.32s ease;
        z-index: 2;
    }

    .svc-home-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 18px 50px rgba(24,139,246,.13);
        border-color: rgba(24,139,246,.25);
        text-decoration: none;
        color: inherit;
    }

        .svc-home-card:hover::after {
            transform: scaleX(1);
        }

/* Card Icon */
.svc-home-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(24,139,246,.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #188bf6;
    margin: 22px 22px 0;
    transition: background 0.28s ease, color 0.28s ease;
}

.svc-home-card:hover .svc-home-card-icon {
    background: #188bf6;
    color: #fff;
}

/* Card Body */
.svc-home-card-body {
    padding: 16px 22px 0;
    flex: 1;
}

    .svc-home-card-body h3 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 1.08rem;
        font-weight: 700;
        color: #0d1b2a;
        margin: 0 0 8px;
        line-height: 1.35;
    }

    .svc-home-card-body p {
        font-size: 0.86rem;
        color: #667788;
        line-height: 1.7;
        margin: 0 0 12px;
    }

/* List */
.svc-home-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .svc-home-list li {
        font-size: 0.81rem;
        color: #555;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .svc-home-list li::before {
            content: '';
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #188bf6;
            flex-shrink: 0;
        }

/* Card Footer CTA */
.svc-home-card-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px 18px;
    margin-top: 14px;
    border-top: 1px solid #f0f4f8;
    font-size: 0.84rem;
    font-weight: 600;
    color: #188bf6;
    transition: gap 0.22s ease;
}

    .svc-home-card-footer .fa-arrow-right {
        font-size: 0.78rem;
        transition: transform 0.22s ease;
    }

.svc-home-card:hover .svc-home-card-footer {
    gap: 12px;
}

    .svc-home-card:hover .svc-home-card-footer .fa-arrow-right {
        transform: translateX(4px);
    }

/* Responsive */
@media (max-width: 1024px) {
    .svc-home-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .svc-home-title {
        font-size: 2.1rem;
    }
}

@media (max-width: 767px) {
    .svc-home-section {
        padding: 64px 0 56px;
    }

    .svc-home-title {
        font-size: 1.85rem;
    }

    .svc-home-subtitle {
        font-size: 0.9rem;
    }

    .svc-home-grid {
        gap: 18px;
    }
}

@media (max-width: 560px) {
    .svc-home-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .svc-home-title {
        font-size: 1.65rem;
    }

    .svc-home-card-body {
        padding: 14px 18px 0;
    }

    .svc-home-card-footer {
        padding: 12px 18px 16px;
    }
}


/* ==========================================================================
   GLOBAL RESPONSIVE RESET & VARIABLES
   ========================================================================== */
:root {
    --primary-color: #0066cc;
    --text-dark: #222222;
    --text-light: #555555;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

section {
    padding: 60px 20px;
    box-sizing: border-box;
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   SECOND ABOUT SECTION (.abt-approach-section)
   ========================================================================== */
.abt-approach-section {
    background: var(--bg-light);
}

.abt-approach-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.abt-small-heading {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.abt-main-headline {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.abt-body-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 30px;
}

.abt-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.abt-feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.abt-feature-icon {
    color: var(--primary-color);
    font-size: 32px;
}

.abt-feature-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}

.abt-feature-desc {
    font-size: 14px;
    color: var(--text-light);
}

/* CTA Card */
.abt-cta-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.abt-cta-card-heading {
    font-size: 22px;
    margin-bottom: 15px;
}

.abt-cta-card-text {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.abt-btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.abt-contact-divider {
    margin: 25px 0;
    padding-top: 25px;
    border-top: 1px solid #eeeeee;
}

.abt-contact-label, .abt-phone-label {
    display: block;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
}

.abt-contact-email {
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    word-break: break-all;
}

.abt-phone-row {
    display: flex;
    gap: 15px;
    align-items: center;
}

.abt-phone-number {
    font-weight: 700;
    font-size: 18px;
}

/* ==========================================================================
   THIRD SECTION (.wcu-why-choose-us-section)
   ========================================================================== */
.wcu-why-choose-us-section {
    background: var(--white);
}

.wcu-why-choose-us {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.wcu-eyebrow {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.wcu-main-heading {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
    margin-bottom: 20px;
}

.wcu-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 30px;
}

.wcu-features-list {
    margin-bottom: 30px;
}

.wcu-feature-card {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.wcu-feature-icon {
    background: #e6f0fa;
    color: var(--primary-color);
    padding: 12px;
    border-radius: 8px;
    height: fit-content;
}

.wcu-feature-title {
    font-size: 18px;
    margin-bottom: 5px;
}

.wcu-feature-description {
    font-size: 14px;
    color: var(--text-light);
}

.wcu-stats-row {
    display: flex;
    gap: 30px;
}

.wcu-stat-box {
    flex: 1;
}

.wcu-stat-value {
    display: block;
    font-size: 36px;
    font-weight: 800;
   /* color: var(--primary-color);*/
}

.wcu-stat-label {
    font-size: 14px;
    /*color: var(--text-light);*/
}

.wcu-visual-column {
    position: relative;
}

.wcu-main-image-wrapper img {
    border-radius: 12px;
    width: 100%;
    object-fit: cover;
}

/* ==========================================================================
   FOURTH SECTION (.lcs-portfolio-section) - BENTO GRID
   ========================================================================== */
.lcs-portfolio-section {
    background: var(--bg-light);
}

.lcs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.lcs-header-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.lcs-small-heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
}

.lcs-main-heading {
    font-size: clamp(28px, 4vw, 38px);
    margin: 10px 0 15px 0;
}

.lcs-intro-text {
    color: var(--text-light);
    font-size: 15px;
}
/* Bento Grid Layout */
.lcs-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.lcs-project-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    height: 350px;
}

.lcs-card-1 {
    grid-column: span 7;
}

.lcs-card-2 {
    grid-column: span 5;
}

.lcs-card-3 {
    grid-column: span 5;
}

.lcs-card-4 {
    grid-column: span 7;
}

.lcs-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.lcs-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.lcs-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 20%, rgba(0,0,0,0.2));
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.lcs-project-category {
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.lcs-project-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.lcs-project-action {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.lcs-project-card:hover .lcs-card-image {
    transform: scale(1.05);
}

/* ==========================================================================
   FIFTH SECTION (.dtd-process-section)
   ========================================================================== */
.dtd-process-section {
    background: var(--white);
}

.dtd-process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.dtd-process-header {
    text-align: center;
    margin-bottom: 5px;
}

.dtd-process-eyebrow {
    font-weight: 700;
    color: var(--primary-color);
}

.dtd-process-title {
    font-size: clamp(26px, 4vw, 36px);
    margin-bottom: 40px;
}

.dtd-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.dtd-process-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 12px;
    position: relative;
}

.dtd-step-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: 800;
}

.dtd-step-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.dtd-step-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.dtd-step-description {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* ==========================================================================
   SIXTH SECTION (.ctfrm_contact-page-container)
   ========================================================================== */
.ctfrm_contact-page-container {
    background: var(--bg-light);
    padding: 80px 24px;
}

.ctfrm_contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Make enqf-card fill the grid column on homepage */
.ctfrm_form-container .enqf-card {
    max-width: 100%;
    margin-left: 0;
}

.ctfrm_category-label {
    font-weight: 700;
    color: var(--primary-color);
}

.ctfrm_main-title {
    font-size: clamp(28px, 4vw, 40px);
    margin: 10px 0 30px 0;
    line-height: 1.2;
}

.ctfrm_contact-details-list {
    margin-bottom: 30px;
}

.ctfrm_contact-detail-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
}

.ctfrm_icon-container {
    background: var(--white);
    padding: 15px;
    border-radius: 50%;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.ctfrm_detail-text-group h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
}

.ctfrm_detail-text-group p {
    margin: 0;
    color: var(--text-light);
}

.ctfrm_atmospheric-image-wrapper img {
    border-radius: 12px;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Contact Form */
.ctfrm_form-panel {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.ctfrm_form-title {
    margin-bottom: 25px;
    font-size: 24px;
}

.ctfrm_input-group {
    margin-bottom: 20px;
}

    .ctfrm_input-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        font-size: 14px;
    }

.ctfrm_form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dddddd;
    border-radius: 6px;
    box-sizing: border-box;
    font-family: inherit;
}

textarea.ctfrm_form-input {
    height: 120px;
    resize: vertical;
}

.ctfrm_submit-button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

/* ==========================================================================
   SEVENTH SECTION (.hmcta-section)
   ========================================================================== */
.hmcta-section {
    background: var(--white);
}

.hmcta-box {
    background: var(--text-dark);
    color: var(--white);
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hmcta-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hmcta-label {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1px;
}

.hmcta-title {
    font-size: clamp(26px, 4vw, 42px);
    margin: 15px 0;
    line-height: 1.2;
}

.hmcta-subtext {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hmcta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

    .hmcta-button:hover {
        transform: translateY(-3px);
    }


/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (BREAKPOINTS)
   ========================================================================== */

/* Tablet Devices (Under 992px) */
@media (max-width: 992px) {
    .abt-approach-container {
        grid-template-columns: 1fr; /* Stack Left/Right vertically */
    }

    .wcu-why-choose-us {
        grid-template-columns: 1fr;
    }

    .wcu-visual-column {
        order: -1; /* Image features first on smaller screens */
    }

    .ctfrm_contact-grid {
        grid-template-columns: 1fr;
    }

    .lcs-card-1, .lcs-card-2, .lcs-card-3, .lcs-card-4 {
        grid-column: span 6; /* 2 Column grid for bento box on tablets */
    }
}

/* Mobile Devices (Under 600px) */
@media (max-width: 600px) {
    section {
        padding: 40px 15px; /* Reduce extra padding on mobile */
    }

    .wcu-stats-row {
        flex-direction: column; /* Stack stats boxes */
        gap: 15px;
    }

    .lcs-bento-grid {
        grid-template-columns: 1fr; /* 1 Card per row on mobile */
    }

    .lcs-card-1, .lcs-card-2, .lcs-card-3, .lcs-card-4 {
        grid-column: span 12;
    }

    .lcs-project-card {
        height: 280px; /* Adjust card height for mobile preview */
    }

    .ctfrm_form-panel {
        padding: 25px 20px; /* Compact form padding */
    }

    .hmcta-box {
        padding: 40px 20px;
    }
}