:root {
    --dark-bg: #1e2a30;
    --light-bg: #ffffff;
    --primary-color: #1c2b33;
    --accent-color: #4fc4ff;
    --text-light: #ffffff;
    --text-dark: #111111;
    --text-muted: #6c757d;
    --font-primary: 'Roboto', sans-serif;
    --header-height: 80px;
    --radius: 40px;
    --primary-color-slider: #ffffff;
    --btn-bg-slider: #ffffff;
    --btn-text-slider: #111;
    --overlay-bg-slider: rgba(0, 0, 0, 0.55);
    --font-primary-slider: 'Inter', sans-serif;
    --transition: 0.6s ease;
    --siteprimarycolor: #2f1b19;
}

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

html,
body {
    font-family: var(--font-primary);
    overflow-x: hidden;
    width: 100%;
}

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


/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}


.btn-custom {
    background-color: var(--dark-bg);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: var(--radius);
    border: none;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}




.service-btn-custom {
    background: var(--light-bg);
    color: black;
    padding: 10px 22px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
}



/* ================= RESPONSIVE ================= */
.mobile-toggle {
    display: none;
}

@media (max-width: 992px) {
    .nav {
        display: none;
    }

    .mobile-toggle {
        display: inline-flex;
    }

    .btn-custom {
        display: none;
    }


}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}




.hero-slider {
    position: relative;
    height: 73vh;
    overflow: hidden;
    font-family: var(--font-primary);
}

.slider {
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-bg-slider);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    color: var(--primary-color-slider);
    top: 50%;
    transform: translateY(-50%);
    margin-left: 10%;
}

.tagline {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
    text-transform: uppercase;
}

.slide-content h1 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 20px;
}

.slide-content p {
    max-width: 600px;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-custom-slider {
    display: inline-block;
    background: var(--btn-bg-slider);
    color: var(--btn-text-slider);
    padding: 14px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
}

/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    z-index: 3;
}

.nav-arrow.prev {
    left: 30px;
}

.nav-arrow.next {
    right: 30px;
}

.nav-arrow i {
    color: #111;
}

/* Pagination */
.pagination {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.6;
}

.dot.active {
    background: #fff;
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .slide-content {
        margin-left: 0;
        text-align: center;
    }

    .pagination {
        display: none;
    }

    .nav-arrow {
        width: 42px;
        height: 42px;
    }
}

/* ============================================
   ABOUT SECTION V2 - MODERN REDESIGN
   ============================================ */

.about-section-v2 {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-section-v2::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(11, 110, 253, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-wrapper-v2 {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* ============================================
   LEFT COLUMN: IMAGE + ADDITIONAL CONTENT
   ============================================ */

.about-left-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.about-image-container:hover .about-hero-image {
    transform: scale(1.05);
}

/* Overlay Badge */
.about-overlay-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-content h3 {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0;
    line-height: 1;
}

.badge-content p {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 8px 0 0;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   STATS CARDS (BELOW IMAGE)
   ============================================ */

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.stat-card {
    background: linear-gradient(135deg, #0b6efd 0%, #0858d1 100%);
    padding: 20px 18px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(11, 110, 253, 0.2);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(11, 110, 253, 0.3);
}

.stat-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 22px;
    color: #ffffff;
}

.stat-info h4 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px;
    line-height: 1;
}

.stat-info p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

/* ============================================
   FEATURES LIST (BELOW STATS)
   ============================================ */

.about-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-item i {
    font-size: 18px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.feature-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

/* ============================================
   CONTACT CTA (BELOW FEATURES)
   ============================================ */

.about-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2c3e50 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-icon i {
    font-size: 20px;
    color: #ffffff;
}

.phone-info span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.phone-info strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.btn-about-cta {
    background: linear-gradient(135deg, var(--accent-color) 0%, #0858d1 100%);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(11, 110, 253, 0.3);
    white-space: nowrap;
}

.btn-about-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 110, 253, 0.4);
    color: #ffffff;
}

/* ============================================
   RIGHT COLUMN: CONTENT CARD (TEXT ONLY)
   ============================================ */

.about-content-section {
    position: relative;
}

.about-content-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.about-header {
    margin-bottom: 30px;
}

.about-header .section-label {
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.about-header h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0;
}

/* Description */
.about-description {
    margin-bottom: 0;
}

.about-description p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-description p:last-child {
    margin-bottom: 0;
}

.about-description b {
    color: var(--text-dark);
    font-weight: 600;
}

/* ============================================
   LEGACY ABOUT SECTION (Restored for aboutus.html)
   ============================================ */
.about-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-main-image {
    transform: scale(1.05);
}

/* About Content (Legacy Page) */
.about-content {
    padding-left: 30px;
}

.about-content .section-label {
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.about-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 25px;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Responsive adjustment for About Us page */
@media (max-width: 991px) {
    .about-section {
        padding: 60px 0;
    }

    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }
}

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

@media (max-width: 1024px) {
    .about-wrapper-v2 {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    /* Use display: contents to unwrap the left column so its children 
       become direct flex items of the wrapper. This allows interleaving 
       them with .about-content-section */
    .about-left-column {
        display: contents;
    }

    /* Mobile order sequence: 
       1. Image
       2. Content Text 
       3. Features LIST
       4. CTA 
    */
    .about-image-container {
        order: 1;
        margin-bottom: 20px;
    }

    .about-content-section {
        order: 2;
    }

    .about-features {
        order: 3;
    }

    .about-cta {
        order: 4;
    }

    .about-content-card {
        padding: 40px 35px;
    }
}

@media (max-width: 768px) {
    .about-section-v2 {
        padding: 60px 0;
    }

    .about-content-card {
        padding: 35px 25px;
    }

    .about-header h2 {
        font-size: 24px;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .about-cta {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 18px;
    }

    .cta-phone {
        justify-content: center;
    }

    .btn-about-cta {
        width: 100%;
        text-align: center;
    }

    .about-overlay-badge {
        bottom: 20px;
        right: 20px;
        padding: 20px 25px;
    }

    .badge-content h3 {
        font-size: 36px;
    }

    .about-left-column {
        gap: 18px;
    }
}

@media (max-width: 480px) {
    .about-description p {
        font-size: 14px;
    }

    .stat-card {
        padding: 18px 15px;
    }

    .stat-info h4 {
        font-size: 20px;
    }

    .feature-item {
        padding: 10px 14px;
    }

    .feature-item span {
        font-size: 13px;
    }

    .phone-info strong {
        font-size: 15px;
    }

    .nexa-counter-row {
        display: none;
        visibility: hidden;
    }

    .about-wrapper-v2 {
        margin-top: -180px;
    }
}


.services-section {

    padding-bottom: 100px;
}

.section-heading {
    margin-bottom: 60px;
}

.section-label {
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 8px;
}

.section-heading h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 300;
}

/* Row Border */
.services-row {
    border: 1px solid #eee;
}

/* Items */
.service-item {
    border-right: 1px solid #eee;
}

.service-item:last-child {
    border-right: none;
}

/* Service Box */
.service-box {
    padding: 45px 30px;
    height: 100%;
    background: var(--light-bg);
}

.service-icon {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-box p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.service-link {
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.service-link i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* Image Item */
.image-item {
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(50%);
}

/* ZOOM EFFECT */
.image-item:hover img {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 991px) {
    .service-item {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .service-item:last-child {
        border-bottom: none;
    }
}


.cta-section {
    position: relative;
    padding: 80px 0;
}

.cta-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;

}

.cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-inner h2 {
    color: var(--text-light);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
    max-width: 740px;
}

/* Button */
.cta-btn {
    background: var(--light-bg);
    color: var(--text-dark);
    padding: 14px 28px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-btn {
        margin-top: 20px;
    }
}


.consultancy-section {
    padding: 120px 0;
}

.consultancy-content .section-label {
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--accent-color);
    display: inline-block;
    margin-bottom: 14px;
}

.consultancy-content h2 {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 40px;
}

/* Features */
.consultancy-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #f1f3f5;
    display: grid;
    place-items: center;
    font-size: 22px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-text h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.feature-text p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* Actions */
.consultancy-actions {
    margin-top: 40px;
}

/* Images */
.consultancy-images {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.image-back img {
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
}

.image-front {
    position: absolute;
    left: 0;
    bottom: -40px;
}

.image-front img {
    width: 100%;
    max-width: 320px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 991px) {
    .consultancy-images {
        margin-top: 60px;
        justify-content: center;
    }

    .image-front {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 20px;
    }

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

    .consultancy-feature {
        justify-content: center;
        text-align: left;
    }
}

.site-footer {
    background: #1f2b31;
    color: #ffffff;
}

/* MAIN AREA */
.footer-main {
    padding: 90px 0 70px;
}

.footer-col {
    margin-bottom: 40px;
}

/* Brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand img {
    max-height: 75px;
    width: auto;
}

.brand-text {
    font-size: 14px;
    opacity: 0.8;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #b9c3c9;
    margin-bottom: 25px;
}

/* Social */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #2b3941;
    border-radius: 6px;
    display: grid;
    place-items: center;
    color: #fff;
    text-decoration: none;
}

/* Headings */
.footer-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 35px;
    position: relative;
}

.footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 45px;
    height: 2px;
    background: #ffffff;
}

/* Links */
/* Links */
.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b9c3c9;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-links i {
    font-size: 12px;
    margin-top: 5px;
    /* Align icon with first line of text */
    flex-shrink: 0;
}

/* Contact */
.footer-contact .contact-row {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
    align-items: flex-start;
    /* Aligns icon with the top line of text */
}

.icon-box {
    width: 44px;
    height: 44px;
    background: #2b3941;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-align: center;
}

.icon-box i {
    font-size: 14px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 44px;
}

.footer-contact strong {
    font-size: 15px;
}

.footer-contact span {
    display: block;
    font-size: 14px;
    color: #b9c3c9;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

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

.footer-bottom p {
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links a {
    color: #fff;
    margin-left: 20px;
    font-size: 14px;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-links {
        flex-direction: column;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-bottom-links a {
        margin: 0 10px;
    }
}

/* Ensure the logo and toggle button stay on one line on mobile */
.main-header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*   padding: 10px 15px; */
}

.nav-item {
    font-size: 14px;
}

/* Fix mobile menu appearance */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #ffffff;
        /* Solid white background for mobile menu */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-item {
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;


    }
}

/* Ensure the dropdown menu is visible */
.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 13px;
}

/* --- Navigation Styles --- */
.nexa-top-bar {
    background: #0a192f;
    color: #ffffff;
    font-size: 13px;
    padding: 8px 0;
    font-family: 'Inter', sans-serif;
}

.nexa-top-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nexa-contact-links a,
.nexa-meta-links a {
    color: #ffffff;
    text-decoration: none;
    margin-right: 20px;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.nexa-nav-wrapper {
    background: #ffffff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    font-family: 'Inter', sans-serif;
}

.nexa-main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling */
.nexa-logo-red {
    font-size: 28px;
    font-weight: 800;
    color: #e31e24;
    /* Red color from your logo image */
    display: block;
    line-height: 1;
}

.nexa-logo-sub {
    font-size: 12px;
    font-weight: 600;
    color: #0a192f;
    text-transform: uppercase;
}

.nexa-logo a {
    text-decoration: none;
}

/* Menu Links */
.nexa-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
}

.nexa-menu>li>a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nexa-menu>li>a:hover,
.nexa-menu>li>a.active {
    color: #0066ff;
}

/* Dropdown Logic */
.nexa-dropdown {
    position: relative;
}

.nexa-arrow {
    font-size: 10px;
    margin-left: 4px;
}

.nexa-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    width: 220px;
    list-style: none;
    padding: 15px 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

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

.nexa-submenu li a {
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    color: #4a5568;
    font-size: 14px;
}

.nexa-submenu li a:hover {
    background: #f8faff;
    color: #0066ff;
}

/* Get Quote Button matching your screenshot */
.nexa-btn-quote {
    background: #1f2937;
    /* Dark charcoal color from your image */
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: transform 0.2s;
}

.nexa-btn-quote:hover {
    background: #0a192f;
    transform: scale(1.05);
}

/* Mobile Menu Toggle */
.nexa-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nexa-hamburger span {
    width: 25px;
    height: 3px;
    background: #0a192f;
    border-radius: 3px;
}

/* --- Mobile Responsive --- */
@media (max-width: 1024px) {
    .nexa-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #ffffff;
        flex-direction: column;
        padding: 40px;
        transition: 0.4s;
        z-index: 999;
    }

    .nexa-menu.active {
        left: 0;
    }

    .nexa-hamburger {
        display: flex;
    }

    .nexa-top-bar {
        display: none;
    }

    .nexa-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        transform: none;
        display: none;
    }

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


}




/* Hero Section Layout */
.nexa-hero {
    padding: 100px 20px;
    background-color: #f8faff;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 85vh;
}



.nexa-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 0px;
    align-items: center;
}

/* Content Styles */
.nexa-content {
    flex: 2;
}

.nexa-badge {
    display: inline-block;
    background: #e0efff;
    color: #4fc4ff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nexa-title {
    font-size: 49px;
    line-height: 1.3;
    color: var(--dark-bg);
    margin-bottom: 24px;
    font-weight: 800;
}

.nexa-highlight {
    color: #0066ff;
    border-right: 3px solid #0066ff;
    /* Cursor effect */
    padding-right: 5px;
}

.nexa-description {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 35px;
    max-width: 540px;
    line-height: 1.6;
}

/* Button Styles */
.nexa-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.nexa-btn-fill {
    background: var(--dark-bg);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nexa-btn-line {
    border: 2px solid #cbd5e0;
    color: #0a192f;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.nexa-btn-fill:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

/* Trust Bar */
.nexa-trust-bar {
    display: flex;
    gap: 30px;
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
}

.nexa-stat {
    font-size: 14px;
    color: #718096;
}

.nexa-stat strong {
    display: block;
    color: #0a192f;
    font-size: 18px;
}

/* Visual Elements */
.nexa-visual-wrapper {
    flex: 1;
    position: relative;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nexa-main-blob {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #0066ff22 0%, #0066ff05 100%);
    border-radius: 50%;
    filter: blur(40px);
}

.nexa-floating-card {
    position: absolute;
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    color: #0a192f;
    animation: nexaFloat 5s infinite ease-in-out;
}

.nexa-icon-box {
    width: 40px;
    height: 40px;
    background: #f0f7ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.banner-card-head {
    bottom: -20%;
    left: -30%;
    animation-delay: 1s;
}

.card-top {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.card-mid {
    top: 45%;
    left: -25%;
    animation-delay: 1s;
}

.card-btm {
    bottom: 15%;
    right: 15%;
    animation-delay: 2s;
}

@keyframes nexaFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .nexa-container {
        flex-direction: column;
        text-align: center;
    }

    .nexa-title {
        font-size: 24px;
    }

    .nexa-description {
        margin: 0 auto 30px;
    }

    .nexa-actions,
    .nexa-trust-bar {
        justify-content: center;
    }

    .nexa-visual-wrapper {
        display: none;
    }
  
  .nexa-hero {
    padding: 40px 20px;
    min-height: 0vh;
}

    /* Hide complex visual on mobile for speed */
}


/* Services Section Styles */
.nexa-services {
    padding: 70px 20px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

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

.nexa-services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.nexa-subtitle {
    color: #0066ff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.nexa-section-title {
    font-size: 36px;
    color: #0a192f;
    font-weight: 800;
    margin-bottom: 20px;
}

.nexa-section-desc {
    color: #718096;
    font-size: 18px;
    line-height: 1.6;
}

/* Grid System */
.nexa-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Individual Card Styles */
.nexa-service-card {
    /*   background: #f8faff;  */
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #eef2f6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    top: 0;
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);

}

.nexa-service-card:hover {
    background: #ffffff;
    border-color: #0066ff;
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.1);
    top: -10px;

}

.nexa-icon-circle {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.nexa-service-card:hover .nexa-icon-circle {
    transform: rotateY(180deg);
}

.nexa-service-card h3 {
    font-size: 22px;
    color: #0a192f;
    margin-bottom: 15px;
    font-weight: 700;
}

.nexa-service-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.nexa-card-link {
    text-decoration: none;
    color: #0066ff;
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.nexa-card-link:hover {
    text-decoration: underline;
}

/* Scroll Animation Classes */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .nexa-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .nexa-services-grid {
        grid-template-columns: 1fr;
    }

    .nexa-section-title {
        font-size: 28px;
    }

    .nexa-service-card {
        padding: 30px;
    }

    .nexa-icon-circle {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        transition: transform 0.3s ease;
    }




}

/* Info Section Styles */
.nexa-info {
    padding: 100px 20px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.nexa-info-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Left Visual Side */
.nexa-info-visual {
    flex: 1;
    position: relative;
}

.nexa-placeholder-img {
    width: 100%;
    height: 500px;
    background: #e2e8f0;
    /* Placeholder color */
    background-size: 40px 40px;
    border-radius: 24px;
    position: relative;
    z-index: 2;
    background-image: url(assets/Images/nexateam.webp);
}

.nexa-experience-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #0066ff;
    color: #ffffff;
    padding: 30px;
    border-radius: 16px;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.3);
}

.nexa-exp-number {
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
}

.nexa-exp-text {
    font-size: 14px;
    font-weight: 500;
    margin-top: 5px;
}

/* Right Content Side */
.nexa-info-content {
    flex: 1;
}

.nexa-badge-alt {
    color: #0066ff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.nexa-info-title {
    font-size: 40px;
    color: #0a192f;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.nexa-info-text {
    color: #4a5568;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Checklist */
.nexa-check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.nexa-check-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #4a5568;
    font-size: 16px;
}

.nexa-check-icon {
    width: 24px;
    height: 24px;
    background: #e0efff;
    color: #0066ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* Counter Row */
.nexa-counter-row {
    display: flex;
    gap: 40px;
    border-top: 1px solid #eef2f6;
    padding-top: 35px;
}

.nexa-counter-num {
    font-size: 32px;
    font-weight: 800;
    color: #0a192f;
}

.nexa-plus {
    color: #0066ff;
    font-size: 24px;
    font-weight: 800;
}

.nexa-counter-item p {
    color: #718096;
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
}

/* Animation triggers */
[data-reveal="left"] {
    opacity: 0;
    transform: translateX(-50px);
    transition: 1s ease;
}

[data-reveal="right"] {
    opacity: 0;
    transform: translateX(50px);
    transition: 1s ease;
}

.revealed {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* Responsive */
@media (max-width: 992px) {
    .nexa-info-flex {
        flex-direction: column;
        gap: 60px;
    }

    .nexa-info-visual {
        width: 100%;
        order: 2;
    }

    .nexa-info-content {
        order: 1;
        text-align: center;
    }

    .nexa-check-list li {
        text-align: left;
    }

    .nexa-counter-row {
        justify-content: center;
    }

    .nexa-experience-card {
        right: 10px;
        bottom: -20px;
    }
}

/* --- Common Styles --- */
.nexa-testimonials,
.nexa-contact {
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
    background: #ffffff;
}

.nexa-section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* --- Testimonials Styling --- */
.nexa-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.nexa-testimonial-card {
    background: #f8faff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #eef2f6;
    transition: transform 0.3s ease;
}

.nexa-testimonial-card.highlight {
    border: 2px solid #0066ff;
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.08);
}

.nexa-quote-icon {
    font-size: 50px;
    color: #0066ff;
    font-family: serif;
    line-height: 1;
    margin-bottom: 10px;
}

.nexa-testimonial-text {
    color: #4a5568;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
}

.nexa-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nexa-user-avatar {
    width: 45px;
    height: 45px;
    background: #0066ff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.nexa-user-name {
    color: #0a192f;
    margin: 0;
    font-size: 16px;
}

.nexa-user-role {
    color: #718096;
    font-size: 13px;
    margin: 0;
}

/* --- Contact Section Styling --- */
.nexa-contact {
    background-color: #f8faff;
}

.nexa-contact-flex {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.nexa-contact-info,
.nexa-contact-form-container {
    flex: 1;
}

.nexa-contact-methods {
    margin-top: 40px;
}

.nexa-method-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.nexa-method-icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-size: 20px;
}

.nexa-method-item strong {
    display: block;
    color: #0a192f;
    margin-bottom: 4px;
}

.nexa-method-item p {
    color: #718096;
    margin: 0;
    font-size: 15px;
}

/* Form Styling */
.nexa-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.nexa-form-group {
    margin-bottom: 20px;
}

.nexa-form-group label {
    display: block;
    font-weight: 600;
    color: #0a192f;
    margin-bottom: 8px;
    font-size: 14px;
}

.nexa-form-group input,
.nexa-form-group select,
.nexa-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fcfdfe;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
}

.nexa-form-group input:focus {
    border-color: #0066ff;
    outline: none;
}

/* Responsive */
@media (max-width: 992px) {
    .nexa-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .nexa-contact-flex {
        flex-direction: column;
        gap: 50px;
    }
}

/* --- Horizontal CTA Styles --- */
.nexa-cta-horizontal {
    padding: 60px 20px;
    background-color: #ffffff;
    /* White section background to make the blue box pop */
    font-family: 'Inter', sans-serif;
}

.nexa-cta-wrapper {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg) 100%);
    border-radius: 24px;
    /* Matching your card radius */
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
}

.nexa-cta-content {
    flex: 1.2;
    position: relative;
    z-index: 2;
}

.nexa-cta-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.nexa-cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.6;
    max-width: 500px;
}

.nexa-cta-action {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

/* White Button to pop against Blue Background */
.nexa-btn-white {
    background: #ffffff;
    color: #0066ff;
    padding: 18px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.nexa-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background: #f8faff;
}

.nexa-cta-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Decorative background shape to match Hero visuals */
.nexa-cta-shape {
    position: absolute;
    right: -50px;
    top: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

/* Reveal Animation */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive Breakpoints --- */
@media (max-width: 992px) {
    .nexa-cta-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 50px 30px;
    }

    .nexa-cta-title {
        font-size: 28px;
    }

    .nexa-cta-text {
        margin: 0 auto;
    }

    .nexa-btn-white {
        width: 100%;
    }
}

/* Section styling */
.stats-section {
    /* Dark background color similar to image */
    background-color: #12151c;
    padding: 80px 20px;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Container to align items horizontally */
.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    /* Allows stacking on smaller screens */
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

/* Individual stat item styling */
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 200px;
    /* Grow, shrink, basis */
}

/* The white circle for icons */
.icon-circle {
    background-color: #ffffff;
    color: #12151c;
    /* Makes the SVG icon dark */
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Styling the number and the '+' */
.stat-number-wrap {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 15px;
}

/* Styling the label text */
.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    opacity: 0.9;
    margin: 0;
}

/* Responsive adjustments for tablet/mobile */
@media (max-width: 768px) {
    .stats-container {
        /* Stack items vertically on smaller screens */
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }


}

.link-decoration {
    text-decoration: none;
    color: inherit;
}

.card-head h6 {
    color: black;
}