/* ============================================
   Nexsoft Technologies - Main Stylesheet
   Color Scheme: #1E73BE (Blue), #F4A300 (Orange), #5DADE2 (Light Blue)
   ============================================ */

:root {
    --nex-blue: #1E73BE;
    --nex-soft-orange: #F4A300;
    --nex-light-blue: #5DADE2;
    --nex-dark: #333333;
    --nex-white: #FFFFFF;
    --nex-gray-bg: #F8FAFE;
    --nex-gray-border: #E5E9F0;
    --site-bg: #FFFFFF;
    --surface-bg: #FFFFFF;
    --surface-muted: #F8FAFE;
    --text-main: #333333;
    --text-soft: #555555;
    --border-soft: #E5E9F0;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

html[data-theme='dark'] {
    --nex-dark: #EAF2FB;
    --nex-white: #0F1722;
    --nex-gray-bg: #101D2B;
    --nex-gray-border: #233446;
    --site-bg: #08111B;
    --surface-bg: #0F1722;
    --surface-muted: #101D2B;
    --text-main: #EAF2FB;
    --text-soft: #A9B7C7;
    --border-soft: #233446;
    --shadow-sm: 0 2px 14px rgba(0,0,0,0.28);
    --shadow-md: 0 18px 42px rgba(0,0,0,0.34);
    --shadow-lg: 0 28px 54px rgba(0,0,0,0.42);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--site-bg);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-soft);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Spacing */
.section-padding {
    padding: 80px 0;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--nex-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title h2 {
    margin-bottom: 1rem;
}

.highlight {
    color: var(--nex-soft-orange);
    position: relative;
}

/* Buttons */
.btn-primary {
    background: var(--nex-blue);
    color: var(--nex-white);
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #0f5a9e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 115, 190, 0.2);
}

.btn-outline {
    border: 2px solid var(--nex-blue);
    color: var(--nex-blue);
    padding: 10px 26px;
    border-radius: 40px;
    font-weight: 600;
    background: transparent;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--nex-blue);
    color: var(--nex-white);
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.875rem;
}

.btn-large {
    padding: 14px 36px;
    font-size: 1.125rem;
}

/* Header Styles */
.main-header {
    background: var(--surface-bg);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    text-decoration: none;
}

.logo-nex {
    color: var(--nex-blue);
}

.logo-soft {
    color: var(--nex-soft-orange);
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.nav-list > li {
    display: flex;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition);
    position: relative;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: var(--nex-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--nex-blue);
    transition: width 0.3s ease;
}

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

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

.theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    background: var(--surface-muted);
    color: var(--text-main);
    cursor: pointer;
    font: inherit;
    font-weight: 600;
    transition: var(--transition);
}

.theme-toggle:hover {
    transform: translateY(-1px);
    border-color: var(--nex-blue);
    box-shadow: var(--shadow-sm);
}

.theme-toggle-icon {
    color: var(--nex-soft-orange);
}

.mobile-theme-toggle-wrap {
    margin-top: 10px;
}

.mobile-theme-toggle {
    width: 100%;
    justify-content: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--nex-dark);
    transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.mobile-menu-toggle.active {
    transform: rotate(90deg);
}

.mobile-menu-toggle-icon {
    transition: transform 0.25s ease;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-bg);
    box-shadow: var(--shadow-md);
    padding: 20px;
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

body.mobile-menu-open {
    overflow: hidden;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-link {
    display: block;
    padding: 10px 0;
    font-weight: 500;
    color: var(--text-main);
    border-bottom: 1px solid var(--nex-gray-border);
    font-size: 0.8rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(30,115,190,0.85) 0%, rgba(20, 50, 90, 0.8) 100%), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2072&q=80') center/cover no-repeat;
    min-height: 86vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    color: #ffffff;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.42), rgba(30,115,190,0.68));
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    transform: translateY(-18px);
}

.hero-title {
    font-size: clamp(2.2rem, 3.8vw, 3.7rem);
    margin-bottom: 1.2rem;
    line-height: 1.15;
    font-weight: 800;
    color: #FFFFFF;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: rgba(255,255,255,0.92);
    margin-bottom: 1.8rem;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-outline {
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.24);
    font-weight: 700;
    border-width: 2px;
}

.hero-buttons .btn-outline {
    background: rgba(255,255,255,0.12);
    color: #FFFFFF;
    border-color: rgba(255,255,255,0.8);
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image svg {
    max-width: 100%;
    width: 520px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* About Preview */
.about-preview {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: center;
}

.about-preview-content {
    flex: 1;
}

.about-preview-stats {
    flex: 1;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--nex-white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--nex-blue);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
}



/* ============================================
   SECTION 2: WHY CHOOSE US - MODERN PREMIUM
   Color Scheme: #1E73BE, #F4A300, #5DADE2, #333333, #FFFFFF
   ============================================ */
.why-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(ellipse at 80% 40%, rgba(30, 115, 190, 0.05), transparent 70%);
    pointer-events: none;
}

.why-wrapper {
    display: flex;
    align-items: center;
    gap: 70px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* LEFT CONTENT */
.why-content {
    flex: 1;
}

.section-badge.dark-badge {
    display: inline-block;
    background: rgba(30, 115, 190, 0.1);
    color: #1E73BE;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(30, 115, 190, 0.2);
    margin-bottom: 20px;
}

.why-content h2 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
    color: #333333;
    letter-spacing: -0.02em;
}

.gradient-text.gradient-purple-coral {
    background: linear-gradient(125deg, #1E73BE, #F4A300, #5DADE2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-desc {
    color: #666666;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
    font-weight: 400;
}

/* FEATURES GRID MODERN */
.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.feature-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #FFFFFF;
    padding: 20px 18px;
    border-radius: 28px;
    border: 1px solid #eef2f6;
    transition: all 0.35s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.feature-item-modern:hover {
    background: #FFFFFF;
    border-color: #F4A300;
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(30, 115, 190, 0.1);
}

.icon-circle {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #1E73BE, #5DADE2);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(30, 115, 190, 0.2);
    flex-shrink: 0;
}

.icon-circle i {
    font-size: 1.5rem;
    color: #FFFFFF;
    transition: 0.2s;
}

.feature-item-modern:hover .icon-circle i {
    transform: scale(1.05);
}

.feature-item-modern h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333333;
}

.feature-item-modern p {
    font-size: 0.85rem;
    color: #666666;
    line-height: 1.45;
}

/* RIGHT STATS */
.why-stats.premium-stats {
    flex: 1;
}

.stats-card-modern {
    background: linear-gradient(135deg, #1E73BE, #5DADE2);
    border-radius: 48px;
    padding: 40px 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    box-shadow: 0 25px 45px -12px rgba(30, 115, 190, 0.3);
}

.stat-item-modern {
    text-align: center;
    padding-bottom: 16px;
    transition: 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item-modern h3 {
    font-size: 2.7rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-item-modern p {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    margin: 8px 0 6px;
}

.stat-trend {
    font-size: 0.7rem;
    background: rgba(244, 163, 0, 0.25);
    padding: 3px 10px;
    border-radius: 40px;
    color: #F4A300;
    display: inline-block;
    font-weight: 500;
}

/* ============================================
   SECTION 3: PRODUCTS - BOLD MODERN CARDS
   Color Scheme: #1E73BE, #F4A300, #5DADE2, #333333, #FFFFFF
   ============================================ */
.products-section.bold-products {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
}

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

.section-badge.dark-badge {
    display: inline-block;
    background: rgba(30, 115, 190, 0.1);
    color: #1E73BE;
    padding: 5px 18px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #333333;
    letter-spacing: -0.02em;
}

.gradient-text.gradient-amber-teal {
    background: linear-gradient(115deg, #1E73BE, #F4A300);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666666;
    max-width: 620px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 48px;
}

/* BOLD MODERN CARDS */
.product-card.bold-card {
    background: #FFFFFF;
    border-radius: 32px;
    padding: 36px 28px;
    transition: all 0.35s ease;
    border: 1px solid #eef2f6;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.product-card.bold-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 115, 190, 0.15);
    border-color: #F4A300;
}

.product-badge.neo-badge {
    position: absolute;
    top: 24px;
    right: 28px;
    background: #1E73BE;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.7rem;
    padding: 5px 14px;
    border-radius: 60px;
    letter-spacing: 0.5px;
}

.product-badge.premium {
    background: #F4A300;
    color: #333333;
}

.product-icon.neo-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1E73BE10, #5DADE210);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.3s ease;
}

.product-icon.neo-icon i {
    font-size: 2.4rem;
    color: #1E73BE;
}

.product-card.bold-card:hover .product-icon.neo-icon {
    background: linear-gradient(135deg, #1E73BE, #5DADE2);
}

.product-card.bold-card:hover .product-icon.neo-icon i {
    color: #FFFFFF;
}

.product-card.bold-card h3 {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: #333333;
}

.product-card.bold-card p {
    color: #666666;
    margin-bottom: 24px;
    line-height: 1.45;
    font-weight: 400;
}

.product-features {
    list-style: none;
    margin: 28px 0 32px;
    padding: 0;
}

.product-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #333333;
}

.product-features li i {
    color: #F4A300;
    font-size: 1rem;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1E73BE;
    color: #FFFFFF;
    padding: 12px 28px;
    border-radius: 60px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-modern:hover {
    background: #F4A300;
    color: #333333;
    gap: 12px;
    transform: translateY(-2px);
}

.btn-modern.outline {
    background: transparent;
    color: #1E73BE;
    border: 2px solid #1E73BE;
}

.btn-modern.outline:hover {
    background: #F4A300;
    border-color: #F4A300;
    color: #333333;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .why-wrapper {
        gap: 50px;
    }
    .why-content h2 {
        font-size: 2.2rem;
    }
    .stats-card-modern {
        padding: 32px 24px;
        gap: 24px;
    }
    .stat-item-modern h3 {
        font-size: 2.2rem;
    }
    .section-header h2 {
        font-size: 2.2rem;
    }
    .products-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .why-section, .products-section.bold-products {
        padding: 70px 0;
    }
    .why-wrapper {
        flex-direction: column;
    }
    .why-content {
        text-align: center;
    }
    .why-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .features-grid-modern {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .feature-item-modern {
        text-align: left;
    }
    .stats-card-modern {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .why-content h2 {
        font-size: 1.9rem;
    }
    .section-header h2 {
        font-size: 1.9rem;
    }
    .product-card.bold-card {
        padding: 30px 22px;
    }
    .product-card.bold-card h3 {
        font-size: 1.6rem;
    }
    .team-section {
        padding: 70px 0;
    }
    .team-card {
        padding: 18px;
    }
    .team-photo {
        width: 84px;
        height: 84px;
    }
}

@media (max-width: 480px) {
    .why-section, .products-section.bold-products {
        padding: 50px 0;
    }
    .feature-item-modern {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .icon-circle {
        margin-bottom: 8px;
    }
    .stat-item-modern h3 {
        font-size: 1.8rem;
    }
    .product-icon.neo-icon {
        width: 65px;
        height: 65px;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .team-card {
        margin: 0 auto;
        max-width: 320px;
    }
    .product-icon.neo-icon i {
        font-size: 1.8rem;
    }
    .btn-modern {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

/* Counter Animation */
@keyframes gentleRise {
    from { 
        opacity: 0; 
        transform: translateY(10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.stat-item-modern h3 {
    animation: gentleRise 0.5s ease-out;
}


/* ============================================
   MODERN SECTION STYLES - ADD THIS TO YOUR EXISTING CSS
   ============================================ */

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}
.trust-wrapper {
    text-align: center;
}
.trust-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--nex-blue);
    font-weight: 600;
    margin-bottom: 30px;
}
.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
}
.trust-logo {
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    padding: 8px 20px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.trust-logo i {
    color: var(--nex-soft-orange);
    font-size: 1.2rem;
}
.trust-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30,115,190,0.15);
    color: var(--nex-blue);
}
.trust-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}
.trust-stat {
    text-align: center;
}
.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--nex-blue), var(--nex-light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}
.trust-text {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--nex-blue);
    font-weight: 600;
    background: rgba(30,115,190,0.1);
    padding: 5px 15px;
    border-radius: 30px;
    margin-bottom: 15px;
}
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.gradient-text {
    background: linear-gradient(135deg, var(--nex-blue), var(--nex-light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-header p {
    color: #666;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--nex-white);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}
.service-card {
    background: var(--nex-white);
    padding: 35px 30px;
    border-radius: 24px;
    transition: all 0.4s ease;
    border: 1px solid var(--nex-gray-border);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--nex-blue), var(--nex-soft-orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--nex-blue), var(--nex-light-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}
.service-icon i {
    font-size: 2rem;
    color: var(--nex-white);
}
.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}
.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}
.service-link {
    color: var(--nex-blue);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.service-link:hover {
    color: var(--nex-soft-orange);
    letter-spacing: 0.5px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 90px 0;
    background: linear-gradient(145deg, #f3f8ff 0%, #ffffff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(30, 115, 190, 0.2);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 18px 28px rgba(30, 115, 190, 0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 40px rgba(30, 115, 190, 0.18);
}

.testimonial-card p {
    color: #3f4f6a;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.9rem;
    color: #4d637d;
}

.testimonial-meta strong {
    color: #1e3f77;
    font-weight: 700;
}

.testimonial-meta span {
    color: #6a7f9f;
    font-size: 0.85rem;
}

/* Why Choose Us Section */
.why-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}
.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 15px;
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
}
.feature-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-sm);
}
.feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--nex-blue), var(--nex-light-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-icon i {
    font-size: 1.5rem;
    color: var(--nex-white);
}
.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.feature-text p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}
.stats-card {
    background: linear-gradient(135deg, var(--nex-blue), var(--nex-light-blue));
    padding: 50px;
    border-radius: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: center;
}
.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--nex-white);
    display: block;
}
.stat-item .stat-label {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: var(--nex-white);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}
.product-card {
    background: var(--nex-white);
    border-radius: 30px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid var(--nex-gray-border);
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--nex-light-blue);
}
.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--nex-soft-orange), #ffb347);
    color: var(--nex-white);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
}
.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--nex-blue), var(--nex-light-blue));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}
.product-icon i {
    font-size: 2.5rem;
    color: var(--nex-white);
}
.product-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.product-card p {
    color: #666;
    margin-bottom: 20px;
}
.product-features {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}
.product-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}
.product-features li i {
    color: var(--nex-blue);
    font-size: 0.9rem;
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 0;
    background:
        radial-gradient(circle at top left, rgba(30, 115, 190, 0.08), transparent 22%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.portfolio-section .container {
    max-width: 1480px;
}

.portfolio-home-header {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-showcase-shell {
    position: relative;
    padding: 18px;
    border-radius: 36px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.78), rgba(244,249,255,0.95)),
        radial-gradient(circle at top left, rgba(30,115,190,0.12), transparent 34%);
    border: 1px solid rgba(30, 115, 190, 0.08);
    box-shadow: 0 26px 60px rgba(8, 30, 54, 0.08);
}

.portfolio-slider .swiper-wrapper {
    gap: 30px;
}

.portfolio-slider .swiper-slide {
    display: flex;
    justify-content: center;
}

.portfolio-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 54px rgba(7, 29, 52, 0.08);
    transition: all 0.4s ease;
    max-width: 430px;
    min-width: 360px;
    width: 100%;
    border: 1px solid rgba(17, 36, 56, 0.06);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 34px 64px rgba(7, 29, 52, 0.16);
}

.portfolio-slider .swiper-button-prev,
.portfolio-slider .swiper-button-next {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    top: 50%;
    transform: translateY(-50%);
    color: #1E73BE;
}

.portfolio-slider .swiper-button-prev {
    left: 12px;
}

.portfolio-slider .swiper-button-next {
    right: 12px;
}

.portfolio-slider .swiper-button-prev::after,
.portfolio-slider .swiper-button-next::after {
    font-size: 1rem;
    font-weight: 700;
    color: #1E73BE;
}

.portfolio-slider .swiper-button-prev:hover,
.portfolio-slider .swiper-button-next:hover {
    background: #F4A300;
    transform: translateY(-50%) scale(1.06);
}

.portfolio-slider .swiper-button-prev:hover::after,
.portfolio-slider .swiper-button-next:hover::after {
    color: #ffffff;
}

.portfolio-image {
    position: relative;
    min-height: 220px;
    padding: 26px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
}

.portfolio-image i {
    font-size: 3.4rem;
    color: white;
}

.portfolio-image-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}

.portfolio-topline {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.portfolio-topline span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.15);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.portfolio-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(5,16,29,0.22)),
        radial-gradient(circle at 85% 18%, rgba(255,255,255,0.18), transparent 22%);
}

.portfolio-image-commerce {
    background: linear-gradient(135deg, #102f4a 0%, #1E73BE 55%, #66b0ff 100%);
}

.portfolio-image-health {
    background: linear-gradient(135deg, #0f3550 0%, #0f8f9f 55%, #7ae0d6 100%);
}

.portfolio-image-estate {
    background: linear-gradient(135deg, #12263f 0%, #485fc7 52%, #8bb2ff 100%);
}

.portfolio-image-education {
    background: linear-gradient(135deg, #3f2b12 0%, #c07a18 50%, #ffd174 100%);
}

.project-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.16);
    color: rgba(255,255,255,0.92);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.portfolio-info {
    padding: 28px;
}

.portfolio-info h4 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.portfolio-info p {
    color: #5c6d7e;
    margin-bottom: 18px;
    line-height: 1.7;
}

.portfolio-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.portfolio-meta span {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #edf5ff;
    color: #27537b;
    font-size: 0.76rem;
    font-weight: 600;
}

.portfolio-points {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: grid;
    gap: 10px;
}

.portfolio-points li {
    position: relative;
    padding-left: 22px;
    color: #33485f;
    font-size: 0.94rem;
    line-height: 1.55;
}

.portfolio-points li::before {
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--nex-blue), var(--nex-soft-orange));
    box-shadow: 0 0 0 5px rgba(30, 115, 190, 0.1);
}

.portfolio-outcomes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.outcome-item {
    padding: 14px 15px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f9fcff, #eef6ff);
    border: 1px solid rgba(30, 115, 190, 0.1);
}

.outcome-item strong {
    display: block;
    margin-bottom: 4px;
    color: #102f4a;
    font-size: 1.12rem;
    line-height: 1;
}

.outcome-item span {
    color: #587089;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.portfolio-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.portfolio-footer-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.portfolio-footer-row .portfolio-stack {
    margin-bottom: 0;
}

.portfolio-stack span {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: #f4f7fb;
    color: #28435e;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #e6edf5;
}

.portfolio-link {
    color: var(--nex-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
}

.portfolio-link:hover {
    color: var(--nex-soft-orange);
}

@media (max-width: 991px) {
    .portfolio-showcase-shell {
        padding: 14px;
        border-radius: 28px;
    }

    .portfolio-outcomes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .portfolio-card {
        min-width: 0;
    }

    .portfolio-showcase-shell {
        padding: 10px;
        border-radius: 24px;
    }

    .portfolio-info {
        padding: 22px;
    }

    .portfolio-topline span,
    .project-chip,
    .portfolio-meta span,
    .portfolio-stack span {
        font-size: 0.7rem;
    }

    .portfolio-footer-row {
        align-items: flex-start;
    }
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: var(--nex-white);
}
.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}
.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 35px 25px;
    background: var(--nex-white);
    border-radius: 24px;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid var(--nex-gray-border);
}
.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--nex-light-blue);
}
.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--nex-blue), var(--nex-light-blue));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}
.step-icon {
    font-size: 2.5rem;
    color: var(--nex-blue);
    margin-bottom: 20px;
    margin-top: 15px;
}
.process-step h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.process-step p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}
.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    position: relative;
}
.testimonial-quote {
    font-size: 3rem;
    color: var(--nex-light-blue);
    opacity: 0.3;
    margin-bottom: 20px;
}
.testimonial-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}
.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.author-info strong {
    display: block;
    color: var(--nex-dark);
    font-size: 1rem;
}
.author-info span {
    font-size: 0.8rem;
    color: #666;
}
.author-rating i {
    color: #ffc107;
    font-size: 0.8rem;
}

/* CTA Section */
.cta-section {
    padding: 0;
    margin: 40px 0;
}
.cta-wrapper {
    background: linear-gradient(135deg, var(--nex-blue), var(--nex-light-blue));
    border-radius: 40px;
    padding: 70px 50px;
    text-align: center;
}
.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-outline-light {
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}
.btn-outline-light:hover {
    background: white;
    color: var(--nex-blue);
    transform: translateY(-2px);
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: var(--nex-white);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}
.blog-card {
    background: var(--nex-white);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--nex-gray-border);
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.blog-image {
    background: linear-gradient(135deg, var(--nex-blue), var(--nex-light-blue));
    padding: 50px;
    text-align: center;
}
.blog-image i {
    font-size: 3rem;
    color: white;
}
.blog-content {
    padding: 25px;
}
.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.75rem;
}
.blog-date, .blog-category {
    color: #888;
}
.blog-category {
    color: var(--nex-blue);
    font-weight: 600;
}
.blog-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.blog-content p {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 15px;
}
.read-more {
    color: var(--nex-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.85rem;
}
.read-more:hover {
    color: var(--nex-soft-orange);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: white;
    border-radius: 40px;
    overflow: hidden;
    padding: 50px;
    box-shadow: var(--shadow-md);
}
.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.contact-info p {
    color: #666;
    margin-bottom: 30px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.contact-detail {
    display: flex;
    align-items: center;
    gap: 18px;
}
.contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--nex-blue), var(--nex-light-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-icon i {
    font-size: 1.3rem;
    color: white;
}
.contact-detail strong {
    display: block;
    font-size: 0.85rem;
    color: var(--nex-dark);
}
.contact-detail span {
    font-size: 0.85rem;
    color: #666;
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid var(--nex-gray-border);
    border-radius: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--nex-blue);
    box-shadow: 0 0 0 3px rgba(30,115,190,0.1);
}

/* ============================================
   NEW SECTIONS: TECHNOLOGIES & FAQ
   ============================================ */

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion {
    margin-top: 50px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(30, 115, 190, 0.1);
}

.faq-item.active {
    box-shadow: 0 12px 32px rgba(30, 115, 190, 0.15);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(30, 115, 190, 0.05);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    margin: 0;
}

.faq-question i {
    font-size: 1.2rem;
    color: #1E73BE;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(248, 250, 255, 0.5);
}

.faq-answer div {
    padding: 0 30px 25px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    margin: 15px 0 0;
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Loading Animation */
body.loaded {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Enhancements */
@media (max-width: 1200px) {
    .technologies-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .technologies-section {
        padding: 80px 0;
    }

    .tech-items {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    .faq-question {
        padding: 20px 25px;
    }

    .faq-answer div {
        padding: 0 25px 20px;
    }
}

@media (max-width: 768px) {
    .technologies-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tech-category {
        padding: 30px 20px;
    }

    .tech-items {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 15px;
    }

    .tech-item {
        padding: 15px 10px;
    }

    .tech-item img {
        width: 30px;
        height: 30px;
    }

    .tech-item i {
        font-size: 1.5rem;
    }

    .tech-item span {
        font-size: 0.7rem;
    }

    .faq-section {
        padding: 80px 0;
    }

    .faq-question h4 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .tech-items {
        grid-template-columns: repeat(3, 1fr);
    }

    .tech-item {
        padding: 12px 8px;
    }

    .tech-item span {
        font-size: 0.65rem;
    }
}

/* Industries Section */
.industries-section {
    padding: 80px 0;
    background: var(--nex-white);
}
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.industry-item {
    background: white;
    padding: 12px 28px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--nex-gray-border);
    transition: all 0.3s ease;
    cursor: pointer;
}
.industry-item i {
    color: var(--nex-blue);
    font-size: 1rem;
}
.industry-item:hover {
    background: linear-gradient(135deg, var(--nex-blue), var(--nex-light-blue));
    color: white;
    transform: translateY(-3px);
}
.industry-item:hover i {
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .trust-logos {
        gap: 15px;
    }
    .trust-logo {
        font-size: 0.8rem;
        padding: 5px 15px;
    }
    .trust-stats {
        gap: 30px;
    }
    .stats-card {
        padding: 30px;
        gap: 25px;
    }
    .process-steps {
        flex-direction: column;
    }
    .cta-wrapper {
        padding: 50px 25px;
    }
    .cta-content h2 {
        font-size: 1.8rem;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .trust-stat .trust-number {
        font-size: 1.8rem;
    }
    .stats-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .product-card {
        padding: 25px;
    }
    .product-card h3 {
        font-size: 1.5rem;
    }
}


        /* ============================================
   TESTIMONIALS SECTION - MARBLE LUXURY CARDS
   ============================================ */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(145deg, #fef9f0 0%, #fff7ed 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.testimonials-header {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-section .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b20, #f9731620);
    color: #f97316;
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.testimonials-section .section-header h2 {
    font-size: 2.6rem;
    margin-bottom: 16px;
    color: #1e293b;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.gradient-text.gradient-rose-gold {
    background: linear-gradient(135deg, #f97316, #f59e0b, #ec489a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonials-section .section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Swiper Slider Styles */
.testimonials-slider {
    overflow: hidden;
    padding: 20px 10px 40px;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    height: auto;
    display: flex;
}

/* Marble Luxury Card */
.testimonial-card.marble-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 40px 32px;
    margin: 10px;
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    background: linear-gradient(135deg, #ffffff, #fffaf5);
}

.testimonial-card.marble-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 50px -15px rgba(249, 115, 22, 0.25);
    border-color: rgba(249, 115, 22, 0.3);
}

.testimonial-quote {
    margin-bottom: 24px;
}

.testimonial-quote i {
    font-size: 2.8rem;
    color: #f97316;
    opacity: 0.5;
}

.testimonial-card.marble-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 28px;
    font-style: normal;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(249, 115, 22, 0.15);
    padding-top: 24px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #f97316, #f59e0b);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-info strong {
    display: block;
    font-size: 1rem;
    color: #1e293b;
    margin-bottom: 4px;
}

.author-info span {
    font-size: 0.8rem;
    color: #f97316;
    font-weight: 500;
}

.author-rating i {
    color: #fbbf24;
    font-size: 0.85rem;
    margin: 0 1px;
}

.swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background: #f97316;
    width: 28px;
    border-radius: 10px;
}

/* ============================================
   CTA SECTION - PREMIUM ANIMATED GLOW
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1E73BE 0%, #5DADE2 100%);
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

/* Animated gradient background overlay */
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(244, 163, 0, 0.15), transparent 60%);
    animation: rotateGlow 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Animated floating particles */
.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 40%, rgba(244, 163, 0, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: floatParticles 15s linear infinite;
    pointer-events: none;
}

@keyframes floatParticles {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

.cta-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-badge {
    display: inline-block;
    background: rgba(244, 163, 0, 0.2);
    backdrop-filter: blur(12px);
    color: #F4A300;
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    border: 1px solid rgba(244, 163, 0, 0.4);
    animation: pulseGlow 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(244, 163, 0, 0.25);
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0px rgba(244, 163, 0, 0.25);
        border-color: rgba(244, 163, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 20px rgba(244, 163, 0, 0.6);
        border-color: rgba(244, 163, 0, 0.8);
    }
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    animation: shimmerText 3s ease-in-out infinite;
    background: linear-gradient(135deg, #FFFFFF, #F4A300);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
}

@keyframes shimmerText {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 44px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #F4A300;
    color: #FFFFFF;
    padding: 16px 42px;
    border-radius: 60px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 8px 25px rgba(244, 163, 0, 0.4);
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-cta-primary:hover::before {
    left: 100%;
}

.btn-cta-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 35px rgba(244, 163, 0, 0.5);
    gap: 18px;
    background: #FFB347;
}

.btn-cta-primary:active {
    transform: translateY(-1px);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
    padding: 16px 38px;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    overflow: hidden;
}

.btn-cta-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(244, 163, 0, 0.25);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-cta-outline:hover::before {
    width: 300px;
    height: 300px;
}

.btn-cta-outline:hover {
    border-color: #F4A300;
    background: rgba(244, 163, 0, 0.15);
    gap: 16px;
    transform: translateY(-2px);
    color: #FFFFFF;
}

.btn-cta-primary i,
.btn-cta-outline i {
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover i,
.btn-cta-outline:hover i {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .btn-cta-primary,
    .btn-cta-outline {
        width: 80%;
        justify-content: center;
        padding: 14px 28px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-badge {
        font-size: 0.65rem;
        padding: 5px 18px;
    }
    
    .btn-cta-primary,
    .btn-cta-outline {
        width: 90%;
        font-size: 0.9rem;
    }
}

/* Optional: Add smooth scroll reveal animation */
@keyframes smoothReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-wrapper[data-aos="zoom-in"] {
    animation: smoothReveal 0.7s ease-out forwards;
}


/* ============================================
   CONTACT SECTION - SPLIT LAYOUT GLASS CARD
   ============================================ */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    position: relative;
}

.contact-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.contact-home-header {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.contact-section .section-badge {
    display: inline-block;
    background: rgba(30, 115, 190, 0.1);
    color: #1E73BE;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(30, 115, 190, 0.2);
}

.contact-section .section-header h2 {
    font-size: 2.6rem;
    margin-bottom: 16px;
    color: #333333;
    font-weight: 800;
}

.gradient-text.gradient-teal-coral {
    background: linear-gradient(135deg, #1E73BE, #F4A300);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-section .section-header p {
    font-size: 1.1rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.75;
}

.contact-premium-shell {
    position: relative;
    padding: 18px;
    border-radius: 38px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.82), rgba(245,249,255,0.96)),
        radial-gradient(circle at top left, rgba(30,115,190,0.12), transparent 36%);
    border: 1px solid rgba(30, 115, 190, 0.08);
    box-shadow: 0 28px 70px rgba(10, 30, 52, 0.08);
}

.contact-wrapper {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    background: #FFFFFF;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(17, 36, 56, 0.05);
}

.contact-wrapper:hover {
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

/* Contact Info Side - Using #1E73BE as primary */
.contact-info {
    flex: 1;
    background: linear-gradient(135deg, #1E73BE 0%, #5DADE2 100%);
    padding: 52px 44px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 163, 0, 0.1), transparent 70%);
    animation: rotateSlow 25s linear infinite;
    pointer-events: none;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.info-header {
    position: relative;
    z-index: 2;
}

.contact-kicker {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.info-header h3 {
    font-size: 2.15rem;
    margin-bottom: 16px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.15;
}

.info-header p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
    line-height: 1.6;
    font-size: 1rem;
}

.contact-value-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.contact-value-item {
    padding: 18px 18px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
}

.contact-value-item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
}

.contact-value-item span {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 34px;
    position: relative;
    z-index: 2;
}

.contact-benefits {
    list-style: none;
    margin: 0 0 34px;
    padding: 0;
    display: grid;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.contact-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.96rem;
    line-height: 1.55;
}

.contact-benefits i {
    color: #ffd16c;
    margin-top: 3px;
}

.contact-detail {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.contact-detail:hover {
    transform: translateX(8px);
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-detail:hover .contact-icon {
    background: #F4A300;
    border-color: #F4A300;
}

.contact-icon i {
    font-size: 1.4rem;
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.contact-detail:hover .contact-icon i {
    color: #FFFFFF;
}

.contact-detail strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #FFFFFF;
    letter-spacing: 0.3px;
}

.contact-detail span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.social-links {
    display: flex;
    gap: 14px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-links a:hover {
    background: #F4A300;
    transform: translateY(-4px);
    border-color: #F4A300;
}

/* Contact Form Side */
.contact-form {
    flex: 1;
    padding: 52px 44px;
    background: #FFFFFF;
}

.form-intro {
    margin-bottom: 28px;
}

.form-intro-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: #edf5ff;
    color: #1E73BE;
    border: 1px solid rgba(30, 115, 190, 0.12);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.form-intro h3 {
    font-size: 1.85rem;
    color: #1b2735;
    margin-bottom: 12px;
    line-height: 1.15;
}

.form-intro p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 520px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1.5px solid #e8edf2;
    border-radius: 20px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #FFFFFF;
    font-family: inherit;
    color: #333333;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1E73BE;
    box-shadow: 0 0 0 4px rgba(30, 115, 190, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1E73BE, #5DADE2);
    color: #FFFFFF;
    padding: 16px 36px;
    border-radius: 60px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #F4A300, #FFB347);
    transform: translateY(-2px);
    gap: 16px;
    box-shadow: 0 8px 20px rgba(244, 163, 0, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Animations for AOS */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

[data-aos="fade-right"] {
    animation: fadeInRight 0.6s ease forwards;
}

[data-aos="fade-left"] {
    animation: fadeInLeft 0.6s ease forwards;
}

/* ============================================
   RESPONSIVE UPDATES
   ============================================ */
@media (max-width: 992px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-section .section-header h2 {
        font-size: 2.2rem;
    }

    .contact-premium-shell {
        padding: 14px;
        border-radius: 28px;
    }
    
    .contact-wrapper {
        flex-direction: column;
        border-radius: 28px;
    }
    
    .contact-info, 
    .contact-form {
        padding: 40px 32px;
    }
    
    .info-header h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section .section-header h2 {
        font-size: 1.9rem;
    }
    
    .contact-section .section-header p {
        font-size: 1rem;
        padding: 0 16px;
    }

    .contact-premium-shell {
        padding: 10px;
        border-radius: 24px;
    }
    
    .contact-info,
    .contact-form {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .info-header h3 {
        font-size: 1.6rem;
    }
    
    .info-header p {
        font-size: 0.9rem;
        margin-bottom: 32px;
    }

    .form-intro h3 {
        font-size: 1.55rem;
    }

    .contact-value-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        gap: 24px;
        margin-bottom: 32px;
    }
    
    .contact-detail {
        gap: 14px;
    }
    
    .contact-icon {
        width: 44px;
        height: 44px;
    }
    
    .contact-icon i {
        font-size: 1.2rem;
    }
    
    .btn-submit {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-section .section-header h2 {
        font-size: 1.6rem;
    }
    
    .contact-section .section-badge {
        font-size: 0.7rem;
        padding: 5px 16px;
    }
    
    .contact-info,
    .contact-form {
        padding: 28px 20px;
    }
    
    .info-header h3 {
        font-size: 1.4rem;
    }
    
    .contact-detail {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .btn-submit {
        font-size: 0.9rem;
        padding: 12px 24px;
    }
}


/* Portfolio Slider */
.portfolio-slider {
    padding-bottom: 50px;
}

.portfolio-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    color: var(--nex-white);
}

.portfolio-info h4 {
    margin: 0;
}

.portfolio-info p {
    margin: 5px 0 0;
    font-size: 0.875rem;
    color: #ccc;
}

/* Testimonials */
.testimonials-slider {
    padding-bottom: 50px;
}

.testimonial-card {
    background: var(--nex-white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    position: relative;
    text-align: center;
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--nex-light-blue);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
}

.testimonial-card p {
    font-size: 1.125rem;
    font-style: italic;
    margin: 20px 0;
}

.testimonial-author strong {
    display: block;
    color: var(--nex-dark);
}

.testimonial-author span {
    font-size: 0.875rem;
    color: #666;
}


/* ============================================
   Footer Styles - Reduced font sizes, no dots, enhanced hover
   ============================================ */

.main-footer {
    background: #1a2634;
    color: #e0e0e0;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}

.footer-col h4 {
    color: var(--nex-white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--nex-soft-orange);
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    display: inline-block;
}

.footer-desc {
    color: #aaa;
    font-size: 0.7rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Footer Links - NO DOTS */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.7rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-links a i {
    font-size: 0.6rem;
    color: var(--nex-soft-orange);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--nex-white);
    transform: translateX(3px);
}

.footer-links a:hover i {
    color: var(--nex-white);
    transform: translateX(2px);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.social-links a {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 0.8rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--nex-soft-orange);
    color: var(--nex-white);
    transform: translateY(-2px);
}

/* Contact Info Row-wise Layout */
.footer-contact-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-row-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: all 0.3s ease;
}

.contact-row-item i {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nex-soft-orange);
    font-size: 0.75rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-row-item:hover i {
    background: var(--nex-soft-orange);
    color: var(--nex-white);
    transform: scale(1.05);
}

.contact-row-item div {
    flex: 1;
}

.contact-row-item strong {
    display: block;
    color: var(--nex-white);
    font-size: 0.65rem;
    margin-bottom: 2px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-row-item span {
    color: #aaa;
    font-size: 0.65rem;
    line-height: 1.4;
    display: block;
}

/* Production Ready Section */
.production-ready {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 14px 20px;
    margin: 25px 0 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.production-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.production-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    color: #aaa;
    transition: all 0.3s ease;
}

.production-item i {
    font-size: 0.7rem;
    color: var(--nex-soft-orange);
}

.production-item:hover {
    color: var(--nex-white);
    transform: translateY(-2px);
}

.production-item:hover i {
    color: var(--nex-white);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 15px;
}

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

.footer-bottom p {
    color: #888;
    font-size: 0.65rem;
    margin: 0;
}

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

.footer-bottom-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.6rem;
    transition: color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-bottom-links a:hover {
    color: var(--nex-soft-orange);
}

/* ============================================
   Dropdown Menu Styles - Reduced gap, tighter spacing
   ============================================ */

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: inherit;
    letter-spacing: 0.3px;
    color: var(--text-main);
    appearance: none;
    -webkit-appearance: none;
    vertical-align: middle;
}

.dropdown-icon {
    font-size: 9px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--nex-white);
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 6px 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.25s ease;
    z-index: 1000;
    border: 1px solid var(--nex-gray-border);
}

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

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    text-decoration: none;
    color: var(--nex-dark);
    transition: all 0.2s ease;
    position: relative;
}

.dropdown-item i {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nex-gray-bg);
    border-radius: 5px;
    color: var(--nex-blue);
    font-size: 0.75rem;
    transition: all 0.2s ease;
}

.dropdown-item strong {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--nex-dark);
}

.dropdown-item span {
    display: none;
}

.dropdown-item:hover {
    background: var(--nex-gray-bg);
    padding-left: 18px;
}

.dropdown-item:hover i {
    transform: scale(1.05);
    background: var(--nex-blue);
    color: var(--nex-white);
}

/* Dropdown Animation */
.dropdown-menu .dropdown-item {
    opacity: 0;
    transform: translateX(-3px);
    animation: dropdownItemFadeIn 0.2s ease forwards;
}

.dropdown-menu .dropdown-item:nth-child(1) { animation-delay: 0.02s; }
.dropdown-menu .dropdown-item:nth-child(2) { animation-delay: 0.04s; }
.dropdown-menu .dropdown-item:nth-child(3) { animation-delay: 0.06s; }
.dropdown-menu .dropdown-item:nth-child(4) { animation-delay: 0.08s; }
.dropdown-menu .dropdown-item:nth-child(5) { animation-delay: 0.1s; }
.dropdown-menu .dropdown-item:nth-child(6) { animation-delay: 0.12s; }
.dropdown-menu .dropdown-item:nth-child(7) { animation-delay: 0.14s; }
.dropdown-menu .dropdown-item:nth-child(8) { animation-delay: 0.16s; }

@keyframes dropdownItemFadeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.dropdown:last-child .dropdown-menu {
    left: auto;
    right: 0;
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mobile-dropdown-toggle i {
    transition: transform 0.3s ease;
    font-size: 0.7rem;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 12px;
    list-style: none;
    margin: 0;
    background: rgba(0, 0, 0, 0.02);
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 450px;
    transition: max-height 0.4s ease-in;
}

.mobile-dropdown-menu li a {
    display: block;
    padding: 6px 0 6px 14px;
    color: var(--nex-dark);
    text-decoration: none;
    font-size: 0.7rem;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
}

.mobile-dropdown-menu li a:hover {
    color: var(--nex-blue);
    border-left-color: var(--nex-blue);
    padding-left: 18px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
}

@media (max-width: 1024px) {
    .dropdown-menu {
        min-width: 220px;
    }
    .dropdown-item strong {
        font-size: 0.68rem;
    }
    .nav-list {
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .main-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
    }

    body {
        padding-top: 74px;
    }

    .header-container {
        gap: 10px;
        padding: 14px 16px;
    }

    .main-nav {
        display: none;
    }

    .header-actions {
        gap: 8px;
        margin-left: auto;
    }

    .theme-toggle {
        padding: 8px 10px;
        min-width: 42px;
        justify-content: center;
    }

    .theme-toggle-label {
        display: none;
    }

    .header-actions .btn-small {
        padding: 8px 12px;
        font-size: 0.78rem;
        line-height: 1.1;
        border-radius: 999px;
        white-space: nowrap;
    }

    .mobile-menu-toggle {
        display: block;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: var(--surface-muted);
        border: 1px solid var(--border-soft);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.15rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .footer-brand-col,
    .footer-contact-col {
        grid-column: span 2;
    }

    .footer-brand-col {
        margin-bottom: 4px;
    }

    .footer-contact-col .footer-contact-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .footer-contact-col .contact-row-item {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 16px;
        padding: 12px;
    }

    .footer-contact-col .contact-row-item span {
        display: block;
    }
    .production-grid {
        gap: 15px;
        justify-content: flex-start;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .about-preview {
        flex-direction: column;
    }
    .why-choose-us {
        flex-direction: column;
    }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .dropdown-menu {
        display: none;
    }
    .mobile-dropdown-menu {
        display: block;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
    .footer-col h4 {
        font-size: 0.76rem;
    }
    .footer-links a {
        font-size: 0.68rem;
    }
    .footer-brand-col,
    .footer-contact-col {
        grid-column: span 2;
    }
    .footer-contact-col .footer-contact-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .production-ready {
        padding: 10px 14px;
    }
    .production-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .contact-row-item {
        gap: 8px;
    }
    .contact-row-item i {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
    }
    .container {
        padding: 0 16px;
    }
    .section-padding {
        padding: 45px 0;
    }
}

/* Animation for Production Items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.production-item {
    animation: fadeInUp 0.35s ease forwards;
    opacity: 0;
}

.production-item:nth-child(1) { animation-delay: 0.05s; }
.production-item:nth-child(2) { animation-delay: 0.1s; }
.production-item:nth-child(3) { animation-delay: 0.15s; }
.production-item:nth-child(4) { animation-delay: 0.2s; }
.production-item:nth-child(5) { animation-delay: 0.25s; }
.production-item:nth-child(6) { animation-delay: 0.3s; }


/* company trusted clients section */
/* ============================================
   CLIENTS SECTION - AUTO-SCROLLING LOGOS
   ============================================ */
.clients-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.clients-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.clients-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.clients-section .section-badge {
    display: inline-block;
    background: rgba(30, 115, 190, 0.1);
    color: #1E73BE;
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.clients-section .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #333333;
    font-weight: 800;
}

.clients-section .section-header p {
    font-size: 1.1rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

/* Client Slider */
.clients-slider {
    overflow: hidden;
    padding: 20px 10px 50px;
}

.clients-slider .swiper-wrapper {
    display: flex;
    align-items: center;
}

.clients-slider .swiper-slide {
    height: auto;
    display: flex;
}

/* Client Card */
.client-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 30px 20px;
    margin: 10px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid #eef2f6;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    cursor: pointer;
}

.client-card:hover {
    transform: translateY(-8px);
    border-color: #F4A300;
    box-shadow: 0 20px 35px -12px rgba(30, 115, 190, 0.2);
}

.client-logo {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #f8fafc;
    border-radius: 16px;
    padding: 15px;
    transition: all 0.3s ease;
}

.client-logo img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(0);
    transition: all 0.3s ease;
}

.client-card:hover .client-logo {
    background: linear-gradient(135deg, rgba(30, 115, 190, 0.05), rgba(244, 163, 0, 0.05));
}

.client-card:hover .client-logo img {
    transform: scale(1.05);
}

.client-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 5px;
}

.client-info p {
    font-size: 0.8rem;
    color: #666666;
    margin: 0;
}

/* Swiper Navigation Styling */
.clients-slider .swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.clients-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.clients-slider .swiper-pagination-bullet-active {
    background: #F4A300;
    width: 28px;
    border-radius: 10px;
    opacity: 1;
}

.clients-slider .swiper-button-next,
.clients-slider .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
}

.clients-slider .swiper-button-prev {
    left: 12px;
}

.clients-slider .swiper-button-next {
    right: 12px;
}

.clients-slider .swiper-button-next::after,
.clients-slider .swiper-button-prev::after {
    font-size: 1.2rem;
    color: #1E73BE;
}

.clients-slider .swiper-button-next:hover,
.clients-slider .swiper-button-prev:hover {
    background: #F4A300;
    transform: scale(1.1);
}

.clients-slider .swiper-button-next:hover::after,
.clients-slider .swiper-button-prev:hover::after {
    color: #FFFFFF;
}

/* Responsive */
@media (max-width: 992px) {
    .clients-section {
        padding: 60px 0;
    }
    .clients-section .section-header h2 {
        font-size: 2rem;
    }
    .client-card {
        padding: 25px 15px;
    }
    .client-logo {
        height: 80px;
    }
    .client-logo img {
        max-height: 55px;
    }
}

@media (max-width: 768px) {
    .clients-section {
        padding: 50px 0;
    }
    .clients-section .section-header h2 {
        font-size: 1.8rem;
    }
    .clients-slider .swiper-button-next,
    .clients-slider .swiper-button-prev {
        display: none;
    }
    .client-card {
        padding: 20px 12px;
    }
    .client-logo {
        height: 70px;
    }
    .client-logo img {
        max-height: 45px;
    }
    .client-info h4 {
        font-size: 1rem;
    }
    .client-info p {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .clients-section .section-header h2 {
        font-size: 1.5rem;
    }
    .client-card {
        padding: 15px 10px;
    }
    .client-logo {
        height: 60px;
    }
    .client-logo img {
        max-height: 40px;
    }
    .client-info h4 {
        font-size: 0.9rem;
    }
}

/* ============================================
   About Page Styles
   ============================================ */

.about-hero-section {
    background: linear-gradient(135deg, rgba(30,115,190,0.85) 0%, rgba(20, 50, 90, 0.8) 100%), url('https://images.unsplash.com/photo-1488590528505-98d2b5aba04b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    min-height: 86vh;
    display: flex;
    align-items: center;
    position: relative;
    color: #ffffff;
    overflow: hidden;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 29, 52, 0.7);
    backdrop-filter: blur(1px);
    z-index: 1;
}

.about-hero-shell {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 36px;
    align-items: center;
}

.about-hero-copy {
    max-width: 720px;
}

.about-hero-tag {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.84);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-title-3d {
    color: #ffffff;
    font-size: clamp(2.2rem, 3.8vw, 3.7rem);
    font-weight: 800;
    margin-bottom: 18px;
    transform: translateZ(50px);
    line-height: 1.15;
}

.hero-subtitle-3d {
    color: rgba(255,255,255,0.92);
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    max-width: 560px;
    margin: 0 0 30px;
    transform: translateZ(30px);
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    transform: translateZ(40px);
}

.about-hero-primary-btn {
    font-size: 1rem;
    padding: 0.9rem 1.6rem;
    background: #F4A300;
    color: #333333;
}

.about-hero-primary-btn:hover {
    background: #ffb51f;
    color: #1e2630;
}

.about-hero-secondary-btn {
    border-color: rgba(255,255,255,0.5);
    color: #ffffff;
}

.about-hero-secondary-btn:hover {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
}

.about-hero-metrics {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.about-hero-metric {
    padding: 18px 16px;
    border-radius: 20px;
    background: rgba(10, 29, 52, 0.42);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 40px rgba(6, 18, 33, 0.25);
    backdrop-filter: blur(8px);
}

.about-hero-metric strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 1.45rem;
    font-weight: 800;
}

.about-hero-metric span {
    color: rgba(255,255,255,0.72);
    font-size: 0.92rem;
}

.about-hero-panel {
    padding: 30px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(9, 22, 40, 0.8) 0%, rgba(12, 33, 58, 0.76) 100%);
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: 0 24px 60px rgba(4, 14, 28, 0.34);
    backdrop-filter: blur(12px);
}

.about-panel-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #8fc8ff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-hero-panel h3 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 1.55rem;
}

.about-hero-panel p {
    color: rgba(255,255,255,0.82);
    margin-bottom: 18px;
}

.about-panel-points {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: grid;
    gap: 12px;
}

.about-panel-points li {
    position: relative;
    padding-left: 28px;
    color: rgba(255,255,255,0.88);
}

.about-panel-points li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F4A300, #ffd36c);
    box-shadow: 0 0 0 6px rgba(244, 163, 0, 0.14);
}

.about-panel-foot {
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.64);
    font-size: 0.94rem;
}

/* Software-themed Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.code-element {
    position: absolute;
    color: rgba(244, 162, 0, 0.3);
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    animation: floatCode 8s ease-in-out infinite;
    opacity: 0.6;
}

.code-element span {
    background: rgba(30, 115, 190, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    border: 1px solid rgba(244, 162, 0, 0.2);
    display: inline-block;
}

.element-1 { top: 20%; left: 10%; animation-delay: 0s; }
.element-2 { top: 40%; right: 15%; animation-delay: 2s; }
.element-3 { top: 60%; left: 20%; animation-delay: 4s; }
.element-4 { top: 30%; right: 25%; animation-delay: 1s; }
.element-5 { top: 70%; left: 30%; animation-delay: 3s; }
.element-6 { top: 50%; right: 10%; animation-delay: 5s; }
.element-7 { top: 25%; left: 40%; animation-delay: 1.5s; }
.element-8 { top: 75%; right: 30%; animation-delay: 6s; }

.binary-rain {
    position: absolute;
    color: rgba(93, 173, 226, 0.4);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: bold;
    animation: binaryFall 6s linear infinite;
    white-space: nowrap;
    opacity: 0.7;
}

.rain-1 { top: -10%; left: 5%; animation-delay: 0s; }
.rain-2 { top: -10%; left: 50%; animation-delay: 2s; }
.rain-3 { top: -10%; right: 5%; animation-delay: 4s; }

@keyframes floatCode {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) rotate(5deg) scale(1.1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-40px) rotate(-5deg) scale(0.9);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-20px) rotate(3deg) scale(1.05);
        opacity: 0.6;
    }
}

@keyframes binaryFall {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Enhanced Hero Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-40px) translateX(-10px);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-20px) translateX(5px);
        opacity: 0.7;
    }
}

@keyframes geometricFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.2;
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-60px) translateX(-20px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) translateX(10px) rotate(270deg);
        opacity: 0.5;
    }
}

@keyframes binaryFall {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Mouse Follow Effect */
.mouse-follow {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(244, 162, 0, 0.3) 0%, rgba(30, 115, 190, 0.3) 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: multiply;
}

/* 3D Hero Content */
.hero-content-3d {
    transform-style: preserve-3d;
    animation: contentFloat 6s ease-in-out infinite;
}

.hero-title-3d {
    animation: title3D 8s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(244, 163, 0, 0.5);
}

.hero-subtitle-3d {
    animation: subtitle3D 10s ease-in-out infinite;
}

.hero-button-3d {
    animation: button3D 7s ease-in-out infinite;
}

@keyframes contentFloat {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg);
    }
    50% {
        transform: translateY(-10px) rotateX(2deg);
    }
}

@keyframes title3D {
    0%, 100% {
        transform: translateZ(50px) rotateY(0deg);
        text-shadow: 0 0 20px rgba(244, 163, 0, 0.5);
    }
    50% {
        transform: translateZ(60px) rotateY(2deg);
        text-shadow: 0 0 30px rgba(244, 163, 0, 0.8);
    }
}

@keyframes subtitle3D {
    0%, 100% {
        transform: translateZ(30px) rotateX(0deg);
    }
    50% {
        transform: translateZ(35px) rotateX(1deg);
    }
}

@keyframes button3D {
    0%, 100% {
        transform: translateZ(40px) scale(1);
        box-shadow: 0 10px 30px rgba(244, 163, 0, 0.3);
    }
    50% {
        transform: translateZ(45px) scale(1.05);
        box-shadow: 0 15px 40px rgba(244, 163, 0, 0.5);
    }
}

.company-overview {
    background: var(--nex-white);
}

.about-overview-header {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.about-overview-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 32px;
}

.about-overview-story,
.about-overview-highlight {
    border-radius: 24px;
    padding: 28px;
    border: 1px solid #e5edf7;
    box-shadow: 0 16px 40px rgba(8, 30, 56, 0.06);
}

.about-overview-story {
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.about-overview-story .section-tag {
    margin-bottom: 14px;
}

.about-overview-story h3 {
    margin-bottom: 12px;
    color: #12314e;
}

.about-overview-highlight {
    background: linear-gradient(135deg, #12314e 0%, #1E73BE 100%);
    color: #ffffff;
}

.about-overview-highlight strong {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.about-overview-highlight p {
    color: rgba(255,255,255,0.82);
    margin: 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

/* ============================================
   PORTFOLIO PAGE STYLES
   ============================================ */

/* Portfolio Hero Section */
.portfolio-hero-section {
    background: linear-gradient(135deg, #1E73BE 0%, #5DADE2 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Portfolio Filters */
.project-filters {
    padding: 60px 0;
    background: #f8f9fa;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #1E73BE;
    background: transparent;
    color: #1E73BE;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
    background: #1E73BE;
    color: white;
}

/* Featured Projects */
.featured-projects {
    padding: 80px 0;
    background: white;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.project-image {
    height: 200px;
    background: linear-gradient(135deg, #1E73BE, #5DADE2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.project-content {
    padding: 25px;
}

.project-content h3 {
    font-size: 1.4rem;
    color: #333333;
    margin-bottom: 10px;
}

.project-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.tech-stack {
    margin-bottom: 20px;
}

.tech-tag {
    display: inline-block;
    background: #f0f0f0;
    color: #333;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-right: 8px;
    margin-bottom: 5px;
}

.view-details-btn {
    display: inline-block;
    background: #1E73BE;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.view-details-btn:hover {
    background: #F4A300;
    color: #333333;
}

/* Case Studies */
.case-studies {
    padding: 80px 0;
    background: #f8f9fa;
}

.case-study-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.case-study-header {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 30px;
    margin-bottom: 30px;
    align-items: start;
}

.case-study-meta {
    background: #f0f8ff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #1E73BE;
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.case-section {
    margin-bottom: 30px;
}

.case-section h4 {
    color: #F4A300;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-item {
    background: #e3f2fd;
    color: #1E73BE;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.result-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.result-item .impact-number {
    font-size: 2rem;
    font-weight: bold;
    color: #1E73BE;
    margin-bottom: 10px;
}

/* All Projects Grid */
.all-projects {
    padding: 80px 0;
    background: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.project-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.project-item .project-content {
    padding: 20px;
}

.project-item h4 {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 8px;
}

.project-item p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.tag {
    background: #f0f0f0;
    color: #333;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
}

/* Impact Section */
.impact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1E73BE 0%, #5DADE2 100%);
    color: white;
}

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

.impact-item {
    text-align: center;
}

.impact-number {
    font-size: 3rem;
    font-weight: bold;
    color: #F4A300;
    margin-bottom: 10px;
}

.impact-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    color: #666;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1E73BE, #5DADE2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 15px;
}

.testimonial-author div strong {
    display: block;
    font-weight: bold;
    color: #333333;
}

.testimonial-author div span {
    color: #666;
    font-size: 0.9rem;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.process-step {
    text-align: center;
    padding: 35px 25px;
    background: white;
    border-radius: 24px;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid #eef2f6;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #F4A300;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1E73BE, #5DADE2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(30, 115, 190, 0.2);
}

.process-step h3 {
    font-size: 1.3rem;
    color: #333333;
    margin-bottom: 15px;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* Portfolio CTA */
.portfolio-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    color: white;
    text-align: center;
}

.portfolio-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.portfolio-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-secondary {
    border: 2px solid #F4A300;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-secondary:hover {
    background: #F4A300;
    color: #333333;
}

/* Responsive Portfolio Styles */
@media (max-width: 992px) {
    .case-study-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .case-study-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

@media (max-width: 768px) {
    .featured-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .filter-buttons {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-hero-section {
        padding: 80px 0;
    }

    .portfolio-hero-section h1 {
        font-size: 2rem;
    }

    .case-study-card {
        padding: 25px;
    }

    .testimonial-card {
        padding: 20px;
    }
}
}

.overview-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--nex-soft-orange);
}

.overview-box h3 {
    color: var(--nex-blue);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.overview-box p {
    color: var(--nex-dark);
    font-size: 0.9rem;
    line-height: 1.6;
}

.mv-v-section {
    background: #f8fbff;
}

.mv-v-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.mv-v-card {
    background: var(--nex-white);
    border: 1px solid #eef2f7;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.mv-v-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--nex-soft-orange);
}

.mv-v-card h3 {
    color: var(--nex-blue);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.mv-v-card p {
    color: var(--nex-dark);
    line-height: 1.6;
}

.journey-section {
    background: var(--nex-white);
}

.journey-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.journey-item {
    background: var(--nex-white);
    border: 1px solid #eef2f7;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.journey-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--nex-soft-orange);
}

.journey-item::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 24px;
    width: 8px;
    height: 8px;
    background: var(--nex-soft-orange);
    border-radius: 50%;
}

.journey-year {
    color: var(--nex-blue);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.journey-title {
    color: var(--nex-dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.journey-desc {
    color: #666;
    line-height: 1.6;
}

.services-section {
    background: #f8fbff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--nex-white);
    border: 1px solid #eef2f7;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--nex-soft-orange);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--nex-blue), var(--nex-light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--nex-white);
    font-size: 1.5rem;
}

.service-card h4 {
    color: var(--nex-blue);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--nex-dark);
    line-height: 1.6;
}

.industries-section {
    background: var(--nex-white);
}

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

.industry-card {
    background: var(--nex-white);
    border: 1px solid #eef2f7;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--nex-soft-orange);
}

.industry-icon {
    width: 50px;
    height: 50px;
    background: rgba(30,115,190,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--nex-blue);
    font-size: 1.3rem;
}

.industry-card h4 {
    color: var(--nex-blue);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.industry-card p {
    color: var(--nex-dark);
    font-size: 0.85rem;
    line-height: 1.5;
}

.tech-stack-section {
    background: #f8fbff;
}

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

.tech-item {
    background: var(--nex-white);
    border: 1px solid #eef2f7;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: var(--nex-soft-orange);
}

.tech-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.tech-item h5 {
    color: var(--nex-blue);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.tech-item p {
    color: var(--nex-dark);
    font-size: 0.75rem;
}

.why-choose-section {
    background: var(--nex-white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.why-choose-card {
    background: var(--nex-white);
    border: 1px solid #eef2f7;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--nex-soft-orange);
}

.why-choose-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--nex-blue), var(--nex-light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--nex-white);
    font-size: 1.5rem;
}

.why-choose-card h4 {
    color: var(--nex-blue);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-choose-card p {
    color: var(--nex-dark);
    line-height: 1.6;
}

.team-section {
    background: #eef7ff;
}

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

.team-card {
    background: var(--nex-white);
    border: 1px solid #e9eff7;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--nex-soft-orange);
}

.team-card h4 {
    color: var(--nex-blue);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.team-card p {
    color: var(--nex-dark);
    font-size: 0.85rem;
    line-height: 1.5;
}

.achievements-section {
    background: var(--nex-white);
}

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

.achievement-card {
    background: #eef7ff;
    border: 1px solid #e9eff7;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--nex-soft-orange);
}

.achievement-card h3 {
    color: var(--nex-blue);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.achievement-card p {
    color: var(--nex-dark);
    font-weight: 600;
}

.testimonials-section {
    background: #f3f8ff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
}

.testimonial-card {
    background: var(--nex-white);
    border: 1px solid #e9eff7;
    border-radius: 12px;
    padding: 18px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--nex-soft-orange);
}

.partners-section {
    background: var(--nex-white);
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.partner-badge {
    background: #eef7ff;
    color: var(--nex-blue);
    border: 1px solid #e9eff7;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.partner-badge:hover {
    transform: translateY(-2px);
    background: var(--nex-soft-orange);
    color: var(--nex-white);
    border-color: var(--nex-soft-orange);
}

.culture-section {
    background: #f7fbff;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.culture-item {
    background: var(--nex-white);
    padding: 14px;
    border: 1px solid #e6eef9;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.culture-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: var(--nex-soft-orange);
}

.about-cta-section {
    background: linear-gradient(120deg, var(--nex-blue), #4fa0d4);
    color: var(--nex-white);
    padding: 60px 0;
    text-align: center;
}

/* Responsive for About Page */
@media (max-width: 768px) {
    .about-hero-section {
        min-height: 60vh;
        padding: 80px 0;
    }

    .about-hero-shell,
    .about-overview-intro {
        grid-template-columns: 1fr;
    }

    .about-hero-panel {
        padding: 24px;
    }

    .about-hero-metrics {
        grid-template-columns: 1fr;
    }
    
    .overview-grid,
    .mv-v-grid,
    .services-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .team-grid,
    .achievements-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}



/* Contact us page css code from here  */
 .contact-hero {
        background:
            radial-gradient(circle at top left, rgba(244, 163, 0, 0.18), transparent 35%),
            linear-gradient(135deg, #0e2238 0%, #15456e 55%, #1E73BE 100%);
        color: var(--nex-white);
        padding: 110px 0 90px;
        position: relative;
        overflow: hidden;
    }

    .contact-hero-shell {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
        gap: 34px;
        align-items: center;
    }

    .contact-hero-inner {
        max-width: 760px;
    }

    .contact-hero-glow {
        position: absolute;
        border-radius: 50%;
        filter: blur(10px);
        pointer-events: none;
        z-index: 1;
    }

    .contact-hero-glow-one {
        width: 280px;
        height: 280px;
        top: -80px;
        left: -60px;
        background: rgba(244, 163, 0, 0.16);
    }

    .contact-hero-glow-two {
        width: 240px;
        height: 240px;
        right: 6%;
        bottom: -70px;
        background: rgba(255, 255, 255, 0.08);
    }

    .contact-kicker,
    .section-tag {
        display: inline-block;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        font-size: 0.78rem;
        font-weight: 700;
    }

    .contact-kicker {
        color: rgba(255, 255, 255, 0.78);
        margin-bottom: 16px;
    }

    .contact-hero h1 {
        font-size: clamp(2.2rem, 3.8vw, 3.7rem);
        margin-bottom: 20px;
        line-height: 1.15;
    }

    .contact-hero p {
        color: rgba(255, 255, 255, 0.86);
        font-size: clamp(1rem, 1.8vw, 1.25rem);
        max-width: 560px;
        line-height: 1.7;
    }

    .contact-hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 28px;
    }

    .contact-hero-primary {
        background: #F4A300;
        color: #17324e;
    }

    .contact-hero-primary:hover {
        background: #ffb51f;
        color: #17324e;
    }

    .contact-hero-secondary {
        border-color: rgba(255, 255, 255, 0.45);
        color: #ffffff;
    }

    .contact-hero-secondary:hover {
        background: rgba(255, 255, 255, 0.12);
        color: #ffffff;
    }

    .contact-hero-points {
        display: grid;
        gap: 12px;
        margin-top: 28px;
        max-width: 620px;
    }

    .contact-hero-point {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 16px 38px rgba(6, 18, 33, 0.16);
        backdrop-filter: blur(8px);
    }

    .contact-hero-point i {
        color: #F4A300;
        font-size: 1rem;
    }

    .contact-hero-point span {
        color: rgba(255, 255, 255, 0.88);
        font-weight: 500;
    }

    .contact-hero-panel {
        padding: 32px;
        border-radius: 30px;
        background: linear-gradient(180deg, rgba(9, 22, 40, 0.78) 0%, rgba(12, 33, 58, 0.72) 100%);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 24px 60px rgba(4, 14, 28, 0.28);
        backdrop-filter: blur(12px);
    }

    .contact-panel-tag {
        display: inline-block;
        margin-bottom: 14px;
        color: #8fc8ff;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .contact-hero-panel h3 {
        margin-bottom: 14px;
        color: #ffffff;
        font-size: 1.6rem;
    }

    .contact-hero-panel p {
        margin-bottom: 22px;
        color: rgba(255, 255, 255, 0.82);
        font-size: 1rem;
        max-width: none;
    }

    .contact-hero-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .contact-hero-stat {
        padding: 18px 16px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.08);
        text-align: left;
    }

    .contact-hero-stat strong {
        display: block;
        margin-bottom: 6px;
        color: #ffffff;
        font-size: 1.4rem;
        font-weight: 800;
    }

    .contact-hero-stat span {
        color: rgba(255, 255, 255, 0.72);
        font-size: 0.9rem;
    }

    .contact-main-section,
    .trust-strip,
    .map-section,
    .faq-section,
    .contact-cta-section {
        padding: 88px 0;
    }

    .contact-main-section {
        background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    }

    .contact-main-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.9fr);
        gap: 32px;
        align-items: start;
    }

    .contact-form-card,
    .info-card,
    .quick-contact-card,
    .trust-card,
    .faq-item,
    .contact-cta-card {
        background: var(--nex-white);
        border-radius: 28px;
        box-shadow: var(--shadow-md);
    }

    .contact-form-card,
    .info-card,
    .quick-contact-card {
        padding: 36px;
    }

    .contact-side-panel {
        display: grid;
        gap: 24px;
    }

    .section-copy {
        margin-bottom: 28px;
    }

    .centered-copy {
        text-align: center;
        max-width: 720px;
        margin: 0 auto 40px;
    }

    .section-copy h2 {
        margin-bottom: 12px;
    }

    .contact-form-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .form-group-full {
        grid-column: 1 / -1;
    }

    .form-group label {
        font-weight: 600;
        color: #18334f;
    }

    .form-group label span {
        color: #6d7f90;
        font-weight: 500;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        border: 1px solid var(--nex-gray-border);
        background: #f9fbfd;
        border-radius: 18px;
        padding: 14px 16px;
        font: inherit;
        transition: var(--transition);
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--nex-blue);
        background: #fff;
        box-shadow: 0 0 0 4px rgba(30, 115, 190, 0.12);
    }

    .field-error {
        color: #d93025;
        font-size: 0.88rem;
    }

    .form-alert {
        border-radius: 18px;
        padding: 14px 16px;
        margin-bottom: 20px;
        font-weight: 500;
    }

    .success-alert {
        background: #eaf8ef;
        color: #20643d;
        border: 1px solid #b9e2c6;
    }

    .error-alert {
        background: #fff2f2;
        color: #9f2a2a;
        border: 1px solid #f3c1c1;
    }

    .form-actions {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 16px;
        margin-top: 4px;
    }

    .form-note {
        margin: 0;
        color: #617384;
    }

    .contact-info-list {
        display: grid;
        gap: 20px;
    }

    .contact-info-item {
        display: grid;
        grid-template-columns: 54px 1fr;
        gap: 16px;
        align-items: start;
    }

    .contact-info-icon {
        width: 54px;
        height: 54px;
        border-radius: 16px;
        display: grid;
        place-items: center;
        background: rgba(30, 115, 190, 0.1);
        color: var(--nex-blue);
        font-size: 1.1rem;
    }

    .contact-info-item strong {
        display: block;
        margin-bottom: 4px;
        color: #18334f;
    }

    .contact-info-item a,
    .contact-info-item span {
        color: #5c6d7d;
    }

    .quick-contact-card {
        background: linear-gradient(135deg, #163755 0%, #1E73BE 100%);
        color: var(--nex-white);
    }

    .quick-contact-card p,
    .quick-contact-card .section-tag {
        color: rgba(255, 255, 255, 0.84);
    }

    .quick-contact-actions {
        display: grid;
        gap: 14px;
        margin-top: 22px;
    }

    .quick-action {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.12);
        color: var(--nex-white);
        font-weight: 600;
    }

    .quick-action:hover {
        background: rgba(255, 255, 255, 0.18);
        transform: translateY(-2px);
    }

    .whatsapp-action {
        background: rgba(37, 211, 102, 0.18);
    }

    .trust-strip {
        background: #f5f8fc;
    }

    .trust-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 22px;
    }

    .trust-card {
        padding: 28px;
    }

    .trust-card i {
        font-size: 1.6rem;
        color: var(--nex-soft-orange);
        margin-bottom: 18px;
    }

    .trust-card h3 {
        margin-bottom: 10px;
        font-size: 1.15rem;
    }

.map-frame {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 430px;
    background: #dbe7f1;
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 430px;
}

    .faq-grid {
        display: grid;
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: 36px;
        align-items: start;
    }

    .faq-list {
        display: grid;
        gap: 16px;
    }

    .faq-item {
        padding: 22px 24px;
    }

    .faq-item summary {
        cursor: pointer;
        list-style: none;
        font-weight: 700;
        color: #18334f;
        position: relative;
        padding-right: 28px;
    }

    .faq-item summary::-webkit-details-marker {
        display: none;
    }

    .faq-item summary::after {
        content: '+';
        position: absolute;
        right: 0;
        top: -2px;
        font-size: 1.3rem;
        color: var(--nex-blue);
    }

    .faq-item[open] summary::after {
        content: '-';
    }

    .faq-item p {
        margin: 14px 0 0;
    }

    .contact-cta-card {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 24px;
        padding: 40px;
        background: linear-gradient(135deg, #0f2d47 0%, #15456e 50%, #f4a300 160%);
        color: var(--nex-white);
    }

    .contact-cta-card p,
    .contact-cta-card .section-tag {
        color: rgba(255, 255, 255, 0.84);
    }

    .contact-cta-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
    }

    .contact-cta-card .btn-outline {
        border-color: rgba(255, 255, 255, 0.5);
        color: var(--nex-white);
    }

    .contact-cta-card .btn-outline:hover {
        background: var(--nex-white);
        color: #123452;
    }

    @media (max-width: 1024px) {
        .contact-hero-shell,
        .contact-main-grid,
        .faq-grid,
        .trust-grid {
            grid-template-columns: 1fr;
        }

        .contact-cta-card {
            flex-direction: column;
            align-items: flex-start;
        }
    }

    @media (max-width: 768px) {
        .contact-main-section,
        .trust-strip,
        .map-section,
        .faq-section,
        .contact-cta-section {
            padding: 68px 0;
        }

        .contact-hero {
            padding: 96px 0 72px;
        }

        .contact-hero-actions {
            flex-direction: column;
            align-items: stretch;
        }

        .contact-hero-primary,
        .contact-hero-secondary {
            width: 100%;
            text-align: center;
        }

        .contact-hero-panel {
            padding: 24px;
        }

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

        .contact-form-grid {
            grid-template-columns: 1fr;
        }

        .contact-form-card,
        .info-card,
        .quick-contact-card,
        .contact-cta-card {
            padding: 24px;
        }

        .map-frame {
            min-height: 320px;
        }

        .map-frame iframe {
            height: 320px;
        }
    }

html[data-theme='dark'] body,
html[data-theme='dark'] main,
html[data-theme='dark'] section {
    background-color: transparent;
}

html[data-theme='dark'] .main-header,
html[data-theme='dark'] .mobile-menu,
html[data-theme='dark'] .dropdown-menu,
html[data-theme='dark'] .main-footer,
html[data-theme='dark'] .footer-bottom,
html[data-theme='dark'] .overview-box,
html[data-theme='dark'] .mv-v-card,
html[data-theme='dark'] .journey-item,
html[data-theme='dark'] .service-card,
html[data-theme='dark'] .industry-card,
html[data-theme='dark'] .tech-item,
html[data-theme='dark'] .why-choose-card,
html[data-theme='dark'] .team-card,
html[data-theme='dark'] .achievement-card,
html[data-theme='dark'] .testimonial-card,
html[data-theme='dark'] .partner-badge,
html[data-theme='dark'] .culture-item,
html[data-theme='dark'] .contact-form-card,
html[data-theme='dark'] .info-card,
html[data-theme='dark'] .quick-contact-card,
html[data-theme='dark'] .trust-card,
html[data-theme='dark'] .faq-item,
html[data-theme='dark'] .contact-cta-card,
html[data-theme='dark'] .project-card,
html[data-theme='dark'] .project-item,
html[data-theme='dark'] .case-study-card,
html[data-theme='dark'] .process-step,
html[data-theme='dark'] .result-item {
    background: var(--surface-bg) !important;
    color: var(--text-main) !important;
    border-color: var(--border-soft) !important;
}

html[data-theme='dark'] .project-filters,
html[data-theme='dark'] .testimonials,
html[data-theme='dark'] .trust-strip,
html[data-theme='dark'] .case-studies,
html[data-theme='dark'] .contact-main-section,
html[data-theme='dark'] .culture-section,
html[data-theme='dark'] .testimonials-section {
    background: var(--surface-muted) !important;
}

html[data-theme='dark'] .company-overview,
html[data-theme='dark'] .partners-section,
html[data-theme='dark'] .featured-projects,
html[data-theme='dark'] .all-projects,
html[data-theme='dark'] .process-section {
    background: var(--site-bg) !important;
}

html[data-theme='dark'] p,
html[data-theme='dark'] .footer-desc,
html[data-theme='dark'] .portfolio-info p,
html[data-theme='dark'] .project-content p,
html[data-theme='dark'] .case-study-meta,
html[data-theme='dark'] .testimonial-content p,
html[data-theme='dark'] .contact-info-item a,
html[data-theme='dark'] .contact-info-item span,
html[data-theme='dark'] .form-note {
    color: var(--text-soft) !important;
}

html[data-theme='dark'] h1,
html[data-theme='dark'] h2,
html[data-theme='dark'] h3,
html[data-theme='dark'] h4,
html[data-theme='dark'] h5,
html[data-theme='dark'] h6,
html[data-theme='dark'] .nav-link,
html[data-theme='dark'] .mobile-nav-link,
html[data-theme='dark'] .dropdown-item,
html[data-theme='dark'] .footer-links a,
html[data-theme='dark'] .portfolio-info h4,
html[data-theme='dark'] .project-content h3,
html[data-theme='dark'] .project-item h4,
html[data-theme='dark'] .case-study-header h3,
html[data-theme='dark'] .process-step h3,
html[data-theme='dark'] .contact-info-item strong {
    color: var(--text-main) !important;
}

html[data-theme='dark'] .btn-outline {
    border-color: var(--border-soft);
    color: var(--text-main);
}

html[data-theme='dark'] .btn-outline:hover {
    background: var(--nex-blue);
    color: #ffffff;
}

html[data-theme='dark'] input,
html[data-theme='dark'] textarea,
html[data-theme='dark'] select {
    background: var(--surface-muted) !important;
    color: var(--text-main) !important;
    border-color: var(--border-soft) !important;
}

html[data-theme='dark'] input::placeholder,
html[data-theme='dark'] textarea::placeholder {
    color: #7f92a6;
}

html[data-theme='dark'] .dropdown-menu,
html[data-theme='dark'] .mobile-dropdown-menu {
    box-shadow: var(--shadow-md);
}

html[data-theme='dark'] .tech-tag,
html[data-theme='dark'] .tag,
html[data-theme='dark'] .tech-item,
html[data-theme='dark'] .case-study-meta,
html[data-theme='dark'] .contact-info-icon,
html[data-theme='dark'] .service-icon,
html[data-theme='dark'] .industry-icon,
html[data-theme='dark'] .why-choose-icon {
    background: var(--surface-muted) !important;
    color: var(--nex-light-blue) !important;
}

html[data-theme='dark'] .nav-link::after {
    background: var(--nex-soft-orange);
}

html[data-theme='dark'] .footer-bottom-links a,
html[data-theme='dark'] .social-links a {
    color: var(--text-soft);
}

html[data-theme='dark'] .footer-bottom-links a:hover,
html[data-theme='dark'] .social-links a:hover {
    color: var(--nex-soft-orange);
}

html[data-theme='dark'] .dropdown-item strong,
html[data-theme='dark'] .dropdown-item span,
html[data-theme='dark'] .mobile-dropdown-menu li a {
    color: var(--text-main) !important;
}

html[data-theme='dark'] .dropdown-item i {
    background: var(--surface-muted) !important;
    color: var(--nex-light-blue) !important;
}

html[data-theme='dark'] .dropdown-item:hover {
    background: var(--surface-muted) !important;
}

html[data-theme='dark'] .hero-section,
html[data-theme='dark'] .about-hero-section,
html[data-theme='dark'] .contact-hero,
html[data-theme='dark'] .portfolio-hero-section,
html[data-theme='dark'] .impact-section,
html[data-theme='dark'] .portfolio-cta,
html[data-theme='dark'] .about-cta-section {
    color: #ffffff !important;
}

html[data-theme='dark'] .hero-section h1,
html[data-theme='dark'] .hero-section h2,
html[data-theme='dark'] .hero-section h3,
html[data-theme='dark'] .hero-section p,
html[data-theme='dark'] .hero-section a,
html[data-theme='dark'] .about-hero-section h1,
html[data-theme='dark'] .about-hero-section h2,
html[data-theme='dark'] .about-hero-section h3,
html[data-theme='dark'] .about-hero-section p,
html[data-theme='dark'] .about-hero-section a,
html[data-theme='dark'] .about-hero-section li,
html[data-theme='dark'] .contact-hero h1,
html[data-theme='dark'] .contact-hero h2,
html[data-theme='dark'] .contact-hero h3,
html[data-theme='dark'] .contact-hero p,
html[data-theme='dark'] .contact-hero a,
html[data-theme='dark'] .contact-hero span,
html[data-theme='dark'] .portfolio-hero-section h1,
html[data-theme='dark'] .portfolio-hero-section h2,
html[data-theme='dark'] .portfolio-hero-section h3,
html[data-theme='dark'] .portfolio-hero-section p,
html[data-theme='dark'] .portfolio-hero-section a,
html[data-theme='dark'] .portfolio-hero-section span,
html[data-theme='dark'] .impact-section h1,
html[data-theme='dark'] .impact-section h2,
html[data-theme='dark'] .impact-section h3,
html[data-theme='dark'] .impact-section p,
html[data-theme='dark'] .impact-section span,
html[data-theme='dark'] .about-cta-section h1,
html[data-theme='dark'] .about-cta-section h2,
html[data-theme='dark'] .about-cta-section p,
html[data-theme='dark'] .portfolio-cta h1,
html[data-theme='dark'] .portfolio-cta h2,
html[data-theme='dark'] .portfolio-cta p,
html[data-theme='dark'] .portfolio-cta a {
    color: inherit !important;
}

html[data-theme='dark'] .hero-section .highlight,
html[data-theme='dark'] .about-hero-section .highlight,
html[data-theme='dark'] .contact-hero .highlight,
html[data-theme='dark'] .portfolio-hero-section .gradient-text,
html[data-theme='dark'] .impact-number,
html[data-theme='dark'] .about-panel-label,
html[data-theme='dark'] .contact-panel-tag {
    color: var(--nex-soft-orange) !important;
}

html[data-theme='dark'] .portfolio-hero-section .gradient-text {
    background: linear-gradient(135deg, #ffd56b 0%, #F4A300 52%, #7fd0ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}

html[data-theme='dark'] .contact-hero .contact-hero-point span,
html[data-theme='dark'] .contact-hero .contact-hero-stat span,
html[data-theme='dark'] .contact-hero .contact-hero-panel p,
html[data-theme='dark'] .about-hero-section .about-hero-metric span,
html[data-theme='dark'] .about-hero-section .about-panel-foot span,
html[data-theme='dark'] .portfolio-hero-section .hero-description,
html[data-theme='dark'] .portfolio-hero-section .scroll-text {
    color: rgba(255, 255, 255, 0.78) !important;
}

html[data-theme='dark'] .contact-hero .contact-hero-primary,
html[data-theme='dark'] .portfolio-hero-section .hero-btn-main,
html[data-theme='dark'] .about-hero-section .about-hero-primary-btn,
html[data-theme='dark'] .portfolio-cta .btn-primary {
    color: #12283d !important;
}

html[data-theme='dark'] .contact-hero .contact-hero-secondary,
html[data-theme='dark'] .about-hero-section .about-hero-secondary-btn,
html[data-theme='dark'] .portfolio-hero-section .hero-btn-secondary {
    color: #ffffff !important;
}

html[data-theme='dark'] .services-section,
html[data-theme='dark'] .products-section,
html[data-theme='dark'] .portfolio-section,
html[data-theme='dark'] .clients-section,
html[data-theme='dark'] .contact-section,
html[data-theme='dark'] .industries-section,
html[data-theme='dark'] .testimonials-section,
html[data-theme='dark'] .why-section,
html[data-theme='dark'] .products-section.bold-products {
    background: var(--surface-muted) !important;
}

html[data-theme='dark'] .section-header h2,
html[data-theme='dark'] .section-header p,
html[data-theme='dark'] .section-subtitle,
html[data-theme='dark'] .why-desc,
html[data-theme='dark'] .feature-item-modern h4,
html[data-theme='dark'] .feature-item-modern p,
html[data-theme='dark'] .product-card h3,
html[data-theme='dark'] .product-card p,
html[data-theme='dark'] .product-features li,
html[data-theme='dark'] .portfolio-info h4,
html[data-theme='dark'] .portfolio-info p,
html[data-theme='dark'] .client-info h4,
html[data-theme='dark'] .client-info p,
html[data-theme='dark'] .contact-section .section-header h2,
html[data-theme='dark'] .contact-section .section-header p,
html[data-theme='dark'] .industry-item span,
html[data-theme='dark'] .footer-col h4,
html[data-theme='dark'] .footer-links a,
html[data-theme='dark'] .footer-bottom p,
html[data-theme='dark'] .footer-contact-row strong,
html[data-theme='dark'] .footer-contact-row span {
    color: var(--text-main) !important;
}

html[data-theme='dark'] .section-header p,
html[data-theme='dark'] .section-subtitle,
html[data-theme='dark'] .why-desc,
html[data-theme='dark'] .feature-item-modern p,
html[data-theme='dark'] .product-card p,
html[data-theme='dark'] .portfolio-info p,
html[data-theme='dark'] .client-info p,
html[data-theme='dark'] .contact-section .section-header p,
html[data-theme='dark'] .footer-desc,
html[data-theme='dark'] .footer-contact-row span,
html[data-theme='dark'] .footer-bottom p {
    color: var(--text-soft) !important;
}

html[data-theme='dark'] .service-card,
html[data-theme='dark'] .product-card,
html[data-theme='dark'] .portfolio-card,
html[data-theme='dark'] .client-card,
html[data-theme='dark'] .contact-wrapper,
html[data-theme='dark'] .industry-item,
html[data-theme='dark'] .feature-item-modern,
html[data-theme='dark'] .stats-card-modern,
html[data-theme='dark'] .stat-item-modern {
    background: var(--surface-bg) !important;
    border-color: var(--border-soft) !important;
    box-shadow: var(--shadow-md) !important;
}

html[data-theme='dark'] .client-logo,
html[data-theme='dark'] .portfolio-slider .swiper-button-prev,
html[data-theme='dark'] .portfolio-slider .swiper-button-next,
html[data-theme='dark'] .clients-slider .swiper-button-next,
html[data-theme='dark'] .clients-slider .swiper-button-prev {
    background: var(--surface-bg) !important;
    border-color: var(--border-soft) !important;
}

html[data-theme='dark'] .portfolio-slider .swiper-button-prev::after,
html[data-theme='dark'] .portfolio-slider .swiper-button-next::after,
html[data-theme='dark'] .clients-slider .swiper-button-next::after,
html[data-theme='dark'] .clients-slider .swiper-button-prev::after {
    color: var(--text-main) !important;
}

html[data-theme='dark'] .contact-wrapper {
    background: var(--surface-bg) !important;
}

html[data-theme='dark'] .main-footer {
    background: #09131e !important;
    color: var(--text-main) !important;
}

html[data-theme='dark'] .footer-links a:hover,
html[data-theme='dark'] .footer-bottom-links a:hover {
    color: var(--nex-soft-orange) !important;
}

html[data-theme='dark'] .portfolio-meta span,
html[data-theme='dark'] .portfolio-stack span {
    background: var(--surface-muted) !important;
    color: var(--text-main) !important;
    border-color: var(--border-soft) !important;
}

html[data-theme='dark'] .portfolio-points li {
    color: var(--text-main) !important;
}

html[data-theme='dark'] .portfolio-showcase-shell {
    background:
        linear-gradient(180deg, rgba(17, 24, 34, 0.94), rgba(11, 18, 27, 0.98)),
        radial-gradient(circle at top left, rgba(30, 115, 190, 0.22), transparent 34%) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.28) !important;
}

html[data-theme='dark'] .portfolio-topline span {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #f5f9ff !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

html[data-theme='dark'] .outcome-item {
    background: linear-gradient(180deg, rgba(19, 34, 49, 0.96), rgba(13, 24, 37, 0.96)) !important;
    border-color: rgba(94, 165, 231, 0.18) !important;
}

html[data-theme='dark'] .outcome-item strong {
    color: #f4f8fd !important;
}

html[data-theme='dark'] .outcome-item span {
    color: var(--text-muted) !important;
}

html[data-theme='dark'] .contact-premium-shell {
    background:
        linear-gradient(180deg, rgba(17, 24, 34, 0.94), rgba(11, 18, 27, 0.98)),
        radial-gradient(circle at top left, rgba(30, 115, 190, 0.22), transparent 36%) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.28) !important;
}

html[data-theme='dark'] .contact-section .contact-form {
    background: var(--surface-bg) !important;
}

html[data-theme='dark'] .form-intro h3 {
    color: var(--text-main) !important;
}

html[data-theme='dark'] .contact-section .contact-form .form-intro h3 {
    color: #EAF2FB !important;
}

html[data-theme='dark'] .form-intro p {
    color: var(--text-soft) !important;
}

html[data-theme='dark'] .form-intro-badge {
    background: var(--surface-muted) !important;
    color: var(--nex-soft-orange) !important;
    border-color: var(--border-soft) !important;
}

html[data-theme='dark'] .clients-section .section-header h2,
html[data-theme='dark'] .clients-section .section-header p,
html[data-theme='dark'] .contact-section .section-header h2,
html[data-theme='dark'] .contact-section .section-header p,
html[data-theme='dark'] .industries-section .section-header h2,
html[data-theme='dark'] .industries-section .section-header p {
    color: inherit !important;
}

html[data-theme='dark'] .mv-v-section,
html[data-theme='dark'] .journey-section,
html[data-theme='dark'] .tech-stack-section,
html[data-theme='dark'] .why-choose-section,
html[data-theme='dark'] .team-section,
html[data-theme='dark'] .achievements-section,
html[data-theme='dark'] .map-section,
html[data-theme='dark'] .faq-section {
    background: var(--surface-muted) !important;
}

html[data-theme='dark'] .mv-v-section .section-header h2,
html[data-theme='dark'] .mv-v-section .section-header p,
html[data-theme='dark'] .journey-section .section-header h2,
html[data-theme='dark'] .journey-section .section-header p,
html[data-theme='dark'] .tech-stack-section .section-header h2,
html[data-theme='dark'] .tech-stack-section .section-header p,
html[data-theme='dark'] .why-choose-section .section-header h2,
html[data-theme='dark'] .why-choose-section .section-header p,
html[data-theme='dark'] .team-section .section-header h2,
html[data-theme='dark'] .team-section .section-header p,
html[data-theme='dark'] .achievements-section .section-header h2,
html[data-theme='dark'] .achievements-section .section-header p,
html[data-theme='dark'] .map-section .section-copy h2,
html[data-theme='dark'] .map-section .section-copy p,
html[data-theme='dark'] .faq-section .section-copy h2,
html[data-theme='dark'] .faq-section .section-copy p {
    color: var(--text-main) !important;
}

html[data-theme='dark'] .mv-v-card h3,
html[data-theme='dark'] .mv-v-card p,
html[data-theme='dark'] .mv-v-card li,
html[data-theme='dark'] .journey-item .journey-title,
html[data-theme='dark'] .journey-item .journey-desc,
html[data-theme='dark'] .tech-item h5,
html[data-theme='dark'] .tech-item p,
html[data-theme='dark'] .why-choose-card h4,
html[data-theme='dark'] .why-choose-card p,
html[data-theme='dark'] .team-card h4,
html[data-theme='dark'] .team-card p,
html[data-theme='dark'] .achievement-card h3,
html[data-theme='dark'] .achievement-card p {
    color: var(--text-main) !important;
}

html[data-theme='dark'] .mv-v-card p,
html[data-theme='dark'] .mv-v-card li,
html[data-theme='dark'] .journey-item .journey-desc,
html[data-theme='dark'] .tech-item p,
html[data-theme='dark'] .why-choose-card p,
html[data-theme='dark'] .team-card p,
html[data-theme='dark'] .achievement-card p,
html[data-theme='dark'] .map-section .section-copy p,
html[data-theme='dark'] .faq-section .section-copy p {
    color: var(--text-soft) !important;
}

html[data-theme='dark'] .journey-item,
html[data-theme='dark'] .mv-v-card,
html[data-theme='dark'] .tech-item,
html[data-theme='dark'] .why-choose-card,
html[data-theme='dark'] .team-card,
html[data-theme='dark'] .achievement-card,
html[data-theme='dark'] .faq-item {
    background: var(--surface-bg) !important;
    border-color: var(--border-soft) !important;
}

html[data-theme='dark'] .case-study-card .case-section h4,
html[data-theme='dark'] .case-study-card .case-section p,
html[data-theme='dark'] .case-study-card .result-item div,
html[data-theme='dark'] .case-study-card .tech-item {
    color: var(--text-main) !important;
}

html[data-theme='dark'] .case-study-card .case-section p,
html[data-theme='dark'] .case-study-card .result-item div:last-child {
    color: var(--text-soft) !important;
}

html[data-theme='dark'] .case-study-card .case-section,
html[data-theme='dark'] .case-study-card .result-item {
    background: var(--surface-muted) !important;
    border-color: var(--border-soft) !important;
}

/* ============================================
   Portfolio Page Refresh
   ============================================ */

.portfolio-hero-section {
    background:
        radial-gradient(circle at top left, rgba(244, 163, 0, 0.22), transparent 22%),
        radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.12), transparent 18%),
        linear-gradient(135deg, #081d31 0%, #10385b 48%, #1E73BE 100%) !important;
    min-height: 92vh !important;
    padding: 130px 0 90px !important;
}

.portfolio-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(3, 12, 23, 0.2), rgba(3, 12, 23, 0.58)),
        repeating-linear-gradient(
            90deg,
            rgba(255,255,255,0.02) 0,
            rgba(255,255,255,0.02) 1px,
            transparent 1px,
            transparent 90px
        );
    z-index: 0;
}

.portfolio-hero-section .hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 920px;
}

.portfolio-hero-section .hero-content {
    max-width: 820px;
    margin: 0 auto;
}

.portfolio-hero-section .hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.portfolio-hero-section .badge-text {
    display: inline-block;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.84);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.portfolio-hero-section .hero-title {
    margin-bottom: 20px;
    line-height: 0.96;
}

.portfolio-hero-section .title-line {
    display: block;
    font-size: clamp(2.2rem, 3.8vw, 3.7rem);
    font-weight: 800;
    color: #ffffff;
}

.portfolio-hero-section .title-line + .title-line {
    margin-top: 10px;
}

.portfolio-hero-section .gradient-text {
    background: linear-gradient(135deg, #ffd56b 0%, #F4A300 52%, #7fd0ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.portfolio-hero-section .hero-description {
    max-width: 560px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,0.86);
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.7;
}

.portfolio-hero-section .hero-cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.portfolio-hero-section .hero-btn-main,
.portfolio-hero-section .hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 24px;
    border-radius: 16px;
    font-weight: 700;
    box-shadow: 0 16px 40px rgba(2, 10, 19, 0.24);
}

.portfolio-hero-section .hero-btn-main {
    background: #F4A300;
    color: #112438;
}

.portfolio-hero-section .hero-btn-main:hover {
    background: #ffb51f;
    transform: translateY(-2px);
}

.portfolio-hero-section .hero-btn-secondary {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.2);
}

.portfolio-hero-section .hero-btn-secondary:hover {
    background: rgba(255,255,255,0.14);
    color: #ffffff;
}

.portfolio-hero-section .scroll-indicator {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.75);
}

.portfolio-hero-section .scroll-mouse {
    width: 26px;
    height: 44px;
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 18px;
    display: grid;
    place-items: start center;
    padding-top: 8px;
}

.portfolio-hero-section .scroll-wheel {
    width: 4px;
    height: 10px;
    border-radius: 999px;
    background: #F4A300;
    animation: scrollWheel 1.4s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.45; }
}

.hero-bg-elements .bg-shape,
.portfolio-hero-section .particle {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-elements .bg-shape {
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(4px);
}

.shape-1,
.shape-4 {
    width: 180px;
    height: 180px;
    border-radius: 36px;
    transform: rotate(20deg);
}

.shape-2,
.shape-5 {
    width: 90px;
    height: 90px;
    border-radius: 50%;
}

.shape-3 {
    width: 130px;
    height: 130px;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.shape-1 { top: 12%; left: 8%; }
.shape-2 { top: 22%; right: 12%; }
.shape-3 { bottom: 18%; left: 16%; }
.shape-4 { bottom: 16%; right: 18%; }
.shape-5 { top: 52%; right: 28%; }

.project-filters {
    position: sticky;
    top: 72px;
    z-index: 15;
    padding: 28px 0 !important;
    background: rgba(248, 249, 250, 0.88) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(17, 36, 56, 0.06);
}

.filter-buttons {
    margin-bottom: 0 !important;
}

.filter-btn {
    padding: 12px 20px !important;
    border-radius: 999px !important;
    border-width: 1px !important;
    font-size: 0.94rem;
    box-shadow: 0 10px 24px rgba(12, 32, 52, 0.04);
}

.featured-projects,
.case-studies,
.all-projects,
.impact-section,
.testimonials,
.process-section,
.portfolio-cta {
    position: relative;
}

.featured-projects .section-header,
.case-studies .section-header,
.all-projects .section-header,
.impact-section .section-header,
.testimonials .section-header,
.process-section .section-header {
    margin-bottom: 56px !important;
}

.featured-projects .section-header h2,
.case-studies .section-header h2,
.all-projects .section-header h2,
.impact-section .section-header h2,
.testimonials .section-header h2,
.process-section .section-header h2,
.portfolio-cta h2 {
    font-size: clamp(2rem, 4vw, 3.2rem) !important;
    margin-bottom: 14px !important;
    letter-spacing: -0.03em;
}

.featured-projects .section-header p,
.case-studies .section-header p,
.all-projects .section-header p,
.impact-section .section-header p,
.testimonials .section-header p,
.process-section .section-header p,
.portfolio-cta p {
    max-width: 720px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    line-height: 1.75;
}

.featured-grid,
.projects-grid,
.testimonials-grid,
.process-steps {
    gap: 24px !important;
}

.project-card,
.project-item {
    border-radius: 26px !important;
    border: 1px solid #e8eef6;
    box-shadow: 0 18px 45px rgba(7, 26, 47, 0.08) !important;
}

.project-card:hover,
.project-item:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 26px 60px rgba(7, 26, 47, 0.14) !important;
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(3, 9, 18, 0.18));
}

.project-content {
    padding: 28px !important;
}

.project-content h3,
.project-item h4 {
    letter-spacing: -0.02em;
}

.tech-tag,
.tag,
.tech-item {
    border-radius: 999px !important;
    border: 1px solid rgba(17, 36, 56, 0.06);
}

.view-details-btn {
    border-radius: 14px !important;
    padding: 12px 18px !important;
}

.case-study-card {
    border-radius: 30px !important;
    border: 1px solid #e7edf5;
    box-shadow: 0 20px 50px rgba(10, 31, 54, 0.08) !important;
}

.case-study-header h3 {
    font-size: clamp(1.7rem, 3vw, 2.4rem) !important;
    line-height: 1.05;
}

.case-study-meta {
    border-left: none !important;
    border-radius: 20px !important;
    background: linear-gradient(180deg, #f6fbff 0%, #edf6ff 100%) !important;
    box-shadow: inset 0 0 0 1px rgba(30, 115, 190, 0.08);
}

.case-section {
    padding: 18px 20px;
    border-radius: 20px;
    background: #fbfdff;
    border: 1px solid #edf2f8;
}

.case-section h4 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.results-grid {
    gap: 14px !important;
}

.result-item {
    border-radius: 18px !important;
    background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%) !important;
    border: 1px solid #e8eef6;
}

.impact-section {
    background:
        radial-gradient(circle at top right, rgba(244, 163, 0, 0.18), transparent 26%),
        linear-gradient(135deg, #0d2f4a 0%, #1E73BE 100%) !important;
}

.impact-item {
    padding: 24px 20px;
    border-radius: 24px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 18px 40px rgba(2, 11, 22, 0.15);
    backdrop-filter: blur(6px);
}

.impact-number {
    letter-spacing: -0.04em;
}

.testimonials {
    background: linear-gradient(180deg, #f6f9fc 0%, #eef4fb 100%) !important;
}

.testimonial-card {
    border-radius: 26px !important;
    border: 1px solid #e6edf6;
    box-shadow: 0 18px 45px rgba(7, 26, 47, 0.08) !important;
}

.testimonial-content p {
    font-size: 1rem;
}

.author-avatar {
    box-shadow: 0 10px 24px rgba(17, 36, 56, 0.12);
}

.process-step {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.process-step:nth-child(1) .step-icon { background: linear-gradient(135deg, #1E73BE, #5DADE2) !important; }
.process-step:nth-child(2) .step-icon { background: linear-gradient(135deg, #F4A300, #ff7b3d) !important; }
.process-step:nth-child(3) .step-icon { background: linear-gradient(135deg, #4e9ef8, #1E73BE) !important; }
.process-step:nth-child(4) .step-icon { background: linear-gradient(135deg, #25b86d, #1e9c5c) !important; }

.portfolio-cta {
    background:
        radial-gradient(circle at 20% 20%, rgba(244, 163, 0, 0.16), transparent 20%),
        linear-gradient(135deg, #091d31 0%, #111f2d 100%) !important;
}

.portfolio-cta .btn-primary {
    background: #F4A300 !important;
    color: #12283d !important;
    border-radius: 14px !important;
    padding: 1rem 2rem !important;
}

.portfolio-cta .btn-secondary {
    border-color: rgba(255,255,255,0.36) !important;
    border-radius: 14px !important;
}

@media (max-width: 992px) {
    .project-filters {
        top: 64px;
    }
}

@media (max-width: 768px) {
    .portfolio-hero-section {
        min-height: auto !important;
        padding: 110px 0 72px !important;
    }

    .portfolio-hero-section .hero-cta,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .portfolio-hero-section .hero-btn-main,
    .portfolio-hero-section .hero-btn-secondary,
    .portfolio-cta .btn-primary,
    .portfolio-cta .btn-secondary {
        justify-content: center;
        width: 100%;
    }

    .featured-grid,
    .projects-grid,
    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }

    .project-content,
    .case-study-card,
    .testimonial-card {
        padding-left: 22px !important;
        padding-right: 22px !important;
    }
}



/* ERP css style code starts from here */
    .erp-page {
        background:
            radial-gradient(circle at top left, rgba(93, 173, 226, 0.14), transparent 32%),
            radial-gradient(circle at top right, rgba(244, 163, 0, 0.12), transparent 28%),
            linear-gradient(180deg, var(--site-bg) 0%, var(--surface-muted) 100%);
    }

    .erp-page section {
        position: relative;
    }

    .erp-hero {
        padding: 92px 0 72px;
        overflow: hidden;
        background:
            radial-gradient(circle at 10% 20%, rgba(93, 173, 226, 0.2), transparent 22%),
            radial-gradient(circle at 85% 12%, rgba(244, 163, 0, 0.15), transparent 20%),
            linear-gradient(135deg, rgba(30, 115, 190, 0.08), rgba(93, 173, 226, 0.03) 48%, rgba(244, 163, 0, 0.08));
    }

    .erp-hero-shell {
        display: grid;
        grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
        gap: 40px;
        align-items: center;
    }

    .erp-kicker {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 16px;
        border-radius: 999px;
        background: rgba(30, 115, 190, 0.1);
        color: var(--nex-blue);
        font-size: 0.9rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .erp-hero h1 {
        font-size: clamp(2.6rem, 5vw, 4.8rem);
        line-height: 1.04;
        margin-bottom: 20px;
        color: var(--text-main);
        max-width: 12ch;
    }

    .erp-hero p {
        font-size: 1.08rem;
        max-width: 620px;
        margin-bottom: 28px;
    }

    .erp-hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-bottom: 30px;
    }

    .erp-hero-points {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .erp-point {
        padding: 18px 16px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.7);
        border: 1px solid rgba(30, 115, 190, 0.12);
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow-sm);
    }

    .erp-point strong {
        display: block;
        font-size: 1.15rem;
        color: var(--text-main);
        margin-bottom: 4px;
    }

    .erp-point span {
        color: var(--text-soft);
        font-size: 0.95rem;
    }

    .erp-hero-panel {
        position: relative;
        padding: 26px;
        border-radius: 30px;
        background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 254, 0.88));
        border: 1px solid rgba(30, 115, 190, 0.12);
        box-shadow: var(--shadow-lg);
    }

    .erp-panel-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        margin-bottom: 24px;
    }

    .erp-panel-top strong,
    .erp-panel-card h3,
    .erp-timeline-card h3,
    .erp-section-card h3,
    .erp-feature-card h3,
    .erp-summary-card h3,
    .erp-cta-card h2 {
        color: var(--text-main);
    }

    .erp-panel-chip {
        padding: 8px 12px;
        border-radius: 999px;
        background: rgba(30, 115, 190, 0.08);
        color: var(--nex-blue);
        font-weight: 700;
        font-size: 0.88rem;
    }

    .erp-panel-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .erp-panel-card {
        padding: 18px;
        border-radius: 22px;
        background: var(--surface-bg);
        border: 1px solid var(--border-soft);
        box-shadow: var(--shadow-sm);
    }

    .erp-panel-card span {
        display: inline-flex;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        background: linear-gradient(135deg, var(--nex-blue), var(--nex-light-blue));
        color: #fff;
        margin-bottom: 14px;
        font-size: 1rem;
    }

    .erp-panel-card p,
    .erp-timeline-card p,
    .erp-summary-card p,
    .erp-cta-card p {
        margin-bottom: 0;
    }

    .erp-section,
    .erp-overview,
    .erp-cta {
        padding: 88px 0;
    }

    .erp-overview-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
        gap: 30px;
        align-items: stretch;
    }

    .erp-summary-card,
    .erp-timeline-card {
        padding: 32px;
        border-radius: 28px;
        background: var(--surface-bg);
        border: 1px solid var(--border-soft);
        box-shadow: var(--shadow-md);
        height: 100%;
    }

    .erp-summary-list,
    .erp-feature-list,
    .erp-timeline-list {
        list-style: none;
        padding: 0;
        margin: 22px 0 0;
    }

    .erp-summary-list li,
    .erp-feature-list li,
    .erp-timeline-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        padding: 13px 0;
        border-bottom: 1px solid var(--border-soft);
        color: var(--text-soft);
    }

    .erp-summary-list li:last-child,
    .erp-feature-list li:last-child,
    .erp-timeline-list li:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .erp-summary-list i,
    .erp-feature-list i,
    .erp-timeline-list i {
        color: var(--nex-soft-orange);
        margin-top: 4px;
    }

    .erp-section.alt {
        background: var(--surface-muted);
    }

    .erp-section-shell {
        display: grid;
        grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
        gap: 28px;
        align-items: start;
    }

    .erp-section-card {
        position: sticky;
        top: 108px;
        padding: 30px;
        border-radius: 28px;
        background: linear-gradient(160deg, rgba(30, 115, 190, 0.08), rgba(93, 173, 226, 0.02));
        border: 1px solid rgba(30, 115, 190, 0.12);
        box-shadow: var(--shadow-sm);
    }

    .erp-section-card .section-tag {
        margin-bottom: 16px;
    }

    .erp-section-card p {
        margin-bottom: 18px;
    }

    .erp-section-highlight {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 16px;
        border-radius: 18px;
        background: var(--surface-bg);
        border: 1px solid var(--border-soft);
        color: var(--text-main);
        font-weight: 600;
    }

    .erp-feature-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .erp-feature-card {
        padding: 26px;
        border-radius: 26px;
        background: var(--surface-bg);
        border: 1px solid var(--border-soft);
        box-shadow: var(--shadow-sm);
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        height: 100%;
    }

    .erp-feature-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(30, 115, 190, 0.3);
    }

    .erp-feature-icon {
        display: inline-flex;
        width: 54px;
        height: 54px;
        align-items: center;
        justify-content: center;
        border-radius: 18px;
        background: linear-gradient(135deg, var(--nex-blue), var(--nex-light-blue));
        color: #fff;
        font-size: 1.1rem;
        margin-bottom: 18px;
        box-shadow: 0 14px 26px rgba(30, 115, 190, 0.18);
    }

    .erp-feature-card p {
        margin-bottom: 16px;
    }

    .erp-feature-eyebrow {
        display: inline-block;
        margin-bottom: 10px;
        padding: 7px 12px;
        border-radius: 999px;
        background: rgba(244, 163, 0, 0.12);
        color: #b87400;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .erp-feature-list strong {
        color: var(--text-main);
        display: block;
        margin-bottom: 2px;
        font-size: 0.98rem;
    }

    .erp-cta-card {
        position: relative;
        overflow: hidden;
        padding: 44px;
        border-radius: 32px;
        background: linear-gradient(135deg, var(--nex-blue), #155e9f 52%, #0c4b82);
        box-shadow: var(--shadow-lg);
        color: #fff;
        text-align: center;
    }

    .erp-cta-card::before,
    .erp-cta-card::after {
        content: "";
        position: absolute;
        border-radius: 999px;
        opacity: 0.22;
        pointer-events: none;
    }

    .erp-cta-card::before {
        width: 260px;
        height: 260px;
        background: rgba(255, 255, 255, 0.22);
        top: -110px;
        right: -90px;
    }

    .erp-cta-card::after {
        width: 190px;
        height: 190px;
        background: rgba(244, 163, 0, 0.26);
        bottom: -100px;
        left: -50px;
    }

    .erp-cta-card .section-tag,
    .erp-cta-card h2,
    .erp-cta-card p {
        position: relative;
        color: #fff;
    }

    .erp-cta-actions {
        position: relative;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 28px;
    }

    .erp-cta-actions .btn-outline {
        border-color: rgba(255, 255, 255, 0.6);
        color: #fff;
    }

    .erp-cta-actions .btn-outline:hover {
        background: #fff;
        color: var(--nex-blue);
    }

    html[data-theme='dark'] .erp-kicker {
        background: rgba(93, 173, 226, 0.15);
        color: #9ed4ff;
    }

    html[data-theme='dark'] .erp-point,
    html[data-theme='dark'] .erp-hero-panel {
        background: rgba(15, 23, 34, 0.82);
        border-color: rgba(93, 173, 226, 0.16);
    }

    html[data-theme='dark'] .erp-feature-eyebrow {
        color: #ffd27d;
        background: rgba(244, 163, 0, 0.16);
    }

    html[data-theme='dark'] .erp-section-card {
        background: linear-gradient(160deg, rgba(16, 29, 43, 0.96), rgba(8, 17, 27, 0.96));
        border-color: rgba(93, 173, 226, 0.14);
    }

    @media (max-width: 1080px) {
        .erp-hero-shell,
        .erp-overview-grid,
        .erp-section-shell {
            grid-template-columns: 1fr;
        }

        .erp-section-card {
            position: static;
        }
    }

    @media (max-width: 768px) {
        .erp-hero,
        .erp-section,
        .erp-overview,
        .erp-cta {
            padding: 72px 0;
        }

        .erp-panel-grid,
        .erp-feature-grid,
        .erp-hero-points {
            grid-template-columns: 1fr;
        }

        .erp-summary-card,
        .erp-timeline-card,
        .erp-section-card,
        .erp-feature-card,
        .erp-cta-card,
        .erp-hero-panel {
            padding: 24px;
            border-radius: 24px;
        }

        .erp-hero h1 {
            max-width: none;
        }
    }

    @media (max-width: 560px) {
        .erp-hero-actions,
        .erp-cta-actions {
            flex-direction: column;
            align-items: stretch;
        }

        .erp-hero-actions a,
        .erp-cta-actions a {
            width: 100%;
            text-align: center;
        }

        .erp-kicker {
            font-size: 0.76rem;
            letter-spacing: 0.06em;
        }
    }


    /* crm page css code start from here */
     .crm-page {
        background:
            radial-gradient(circle at top left, rgba(30, 115, 190, 0.12), transparent 30%),
            radial-gradient(circle at top right, rgba(244, 163, 0, 0.1), transparent 26%),
            linear-gradient(180deg, var(--site-bg) 0%, var(--surface-muted) 100%);
    }

    .crm-page section {
        position: relative;
    }

    .crm-hero {
        min-height: calc(100vh - 84px);
        padding: 74px 0 52px;
        display: flex;
        align-items: center;
        overflow: hidden;
        background:
            radial-gradient(circle at 14% 18%, rgba(30, 115, 190, 0.18), transparent 24%),
            radial-gradient(circle at 82% 16%, rgba(244, 163, 0, 0.14), transparent 22%),
            linear-gradient(135deg, rgba(30, 115, 190, 0.08), rgba(93, 173, 226, 0.03) 55%, rgba(244, 163, 0, 0.08));
    }

    .crm-hero::before,
    .crm-hero::after {
        content: "";
        position: absolute;
        border-radius: 999px;
        pointer-events: none;
    }

    .crm-hero::before {
        width: 280px;
        height: 280px;
        left: -90px;
        top: 40px;
        background: rgba(93, 173, 226, 0.16);
        filter: blur(12px);
        animation: crmFloatGlow 11s ease-in-out infinite;
    }

    .crm-hero::after {
        width: 230px;
        height: 230px;
        right: -70px;
        bottom: 30px;
        background: rgba(244, 163, 0, 0.14);
        filter: blur(12px);
        animation: crmFloatGlow 12s ease-in-out infinite reverse;
    }

    .crm-hero .container {
        width: 100%;
    }

    .crm-hero-shell {
        display: grid;
        grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
        gap: 34px;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .crm-hero-copy {
        animation: crmFadeUp 0.75s ease both;
    }

    .crm-kicker {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 16px;
        border-radius: 999px;
        background: rgba(30, 115, 190, 0.1);
        color: var(--nex-blue);
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-bottom: 18px;
    }

    .crm-hero h1 {
        font-size: clamp(2.2rem, 3.8vw, 3.7rem);
        line-height: 1.15;
        margin-bottom: 16px;
        color: var(--text-main);
        max-width: 12.5ch;
    }

    .crm-hero p {
        font-size: clamp(1rem, 1.8vw, 1.25rem);
        line-height: 1.7;
        max-width: 580px;
        margin-bottom: 22px;
    }

    .crm-hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-bottom: 22px;
    }

    .crm-flow {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
    }

    .crm-flow-step {
        padding: 14px 14px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(30, 115, 190, 0.12);
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow-sm);
        animation: crmFadeUp 0.8s ease both;
    }

    .crm-flow-step strong {
        display: block;
        color: var(--text-main);
        margin-bottom: 4px;
        font-size: 0.98rem;
    }

    .crm-flow-step span {
        color: var(--text-soft);
        font-size: 0.88rem;
        line-height: 1.55;
    }

    .crm-hero-panel {
        position: relative;
        padding: 24px;
        border-radius: 30px;
        background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 254, 0.9));
        border: 1px solid rgba(30, 115, 190, 0.12);
        box-shadow: var(--shadow-lg);
        animation: crmPanelFloat 6s ease-in-out infinite, crmFadeRight 0.8s ease both;
    }

    .crm-panel-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        margin-bottom: 18px;
    }

    .crm-panel-top strong,
    .crm-section-card h2,
    .crm-feature-card h3,
    .crm-summary-card h2,
    .crm-summary-card h3,
    .crm-cta-card h2 {
        color: var(--text-main);
    }

    .crm-panel-chip {
        padding: 8px 12px;
        border-radius: 999px;
        background: rgba(30, 115, 190, 0.08);
        color: var(--nex-blue);
        font-weight: 700;
        font-size: 0.88rem;
    }

    .crm-dashboard-grid,
    .crm-feature-grid,
    .crm-nav-grid {
        display: grid;
        gap: 16px;
    }

    .crm-dashboard-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .crm-panel-card,
    .crm-summary-card,
    .crm-nav-card,
    .crm-section-card,
    .crm-feature-card {
        background: var(--surface-bg);
        border: 1px solid var(--border-soft);
        box-shadow: var(--shadow-sm);
    }

    .crm-panel-card {
        padding: 16px;
        border-radius: 22px;
    }

    .crm-panel-card .crm-panel-icon,
    .crm-feature-icon,
    .crm-nav-card i {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        background: linear-gradient(135deg, var(--nex-blue), var(--nex-light-blue));
    }

    .crm-panel-card .crm-panel-icon {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        margin-bottom: 12px;
    }

    .crm-panel-value {
        display: block;
        font-size: 1.5rem;
        font-weight: 800;
        line-height: 1.1;
        color: var(--text-main);
        margin-bottom: 6px;
    }

    .crm-panel-card p,
    .crm-panel-card small {
        margin: 0;
        color: var(--text-soft);
    }

    .crm-overview,
    .crm-section,
    .crm-cta {
        padding: 88px 0;
    }

    .crm-overview-grid,
    .crm-section-shell {
        display: grid;
        gap: 28px;
    }

    .crm-overview-grid {
        grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
        align-items: start;
    }

    .crm-summary-card {
        padding: 28px;
        border-radius: 28px;
    }

    .crm-summary-list,
    .crm-feature-list,
    .crm-status-list,
    .crm-pipeline-list {
        list-style: none;
        padding: 0;
        margin: 22px 0 0;
    }

    .crm-summary-list li,
    .crm-feature-list li,
    .crm-status-list li,
    .crm-pipeline-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        padding: 13px 0;
        border-bottom: 1px solid var(--border-soft);
        color: var(--text-soft);
    }

    .crm-summary-list li:last-child,
    .crm-feature-list li:last-child,
    .crm-status-list li:last-child,
    .crm-pipeline-list li:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .crm-summary-list i,
    .crm-feature-list i,
    .crm-status-list i,
    .crm-pipeline-list i {
        color: var(--nex-soft-orange);
        margin-top: 4px;
    }

    .crm-nav-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .crm-nav-card {
        padding: 20px;
        border-radius: 24px;
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .crm-nav-card:hover,
    .crm-feature-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(30, 115, 190, 0.28);
    }

    .crm-nav-card i {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        margin-bottom: 14px;
        font-size: 1rem;
    }

    .crm-nav-card h3 {
        margin-bottom: 8px;
        color: var(--text-main);
    }

    .crm-nav-card p {
        margin-bottom: 8px;
    }

    .crm-nav-card span {
        display: inline-block;
        padding: 7px 12px;
        border-radius: 999px;
        background: rgba(244, 163, 0, 0.12);
        color: #b87400;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .crm-section.alt {
        background: var(--surface-muted);
    }

    .crm-section-shell {
        grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
        align-items: start;
    }

    .crm-section-card {
        position: sticky;
        top: 108px;
        padding: 30px;
        border-radius: 28px;
        background: linear-gradient(160deg, rgba(30, 115, 190, 0.08), rgba(93, 173, 226, 0.02));
        border: 1px solid rgba(30, 115, 190, 0.12);
        box-shadow: var(--shadow-sm);
    }

    .crm-section-card .section-tag {
        margin-bottom: 16px;
    }

    .crm-section-card p {
        margin-bottom: 18px;
    }

    .crm-highlight {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 16px;
        border-radius: 18px;
        background: var(--surface-bg);
        border: 1px solid var(--border-soft);
        color: var(--text-main);
        font-weight: 600;
    }

    .crm-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .crm-feature-card {
        padding: 26px;
        border-radius: 26px;
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        height: 100%;
    }

    .crm-feature-icon {
        width: 54px;
        height: 54px;
        border-radius: 18px;
        font-size: 1.1rem;
        margin-bottom: 18px;
        box-shadow: 0 14px 26px rgba(30, 115, 190, 0.18);
    }

    .crm-feature-tag {
        display: inline-block;
        margin-bottom: 10px;
        padding: 7px 12px;
        border-radius: 999px;
        background: rgba(244, 163, 0, 0.12);
        color: #b87400;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .crm-feature-list strong,
    .crm-status-list strong,
    .crm-pipeline-list strong {
        color: var(--text-main);
        display: block;
        margin-bottom: 2px;
        font-size: 0.98rem;
    }

    .crm-status-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 16px;
    }

    .crm-status-pill {
        padding: 9px 14px;
        border-radius: 999px;
        font-size: 0.84rem;
        font-weight: 700;
        letter-spacing: 0.03em;
    }

    .crm-status-new { background: rgba(93, 173, 226, 0.14); color: #1e73be; }
    .crm-status-contacted { background: rgba(255, 193, 7, 0.18); color: #9a6a00; }
    .crm-status-qualified { background: rgba(40, 167, 69, 0.15); color: #247a39; }
    .crm-status-converted { background: rgba(128, 90, 213, 0.14); color: #5d3aa8; }
    .crm-status-pending { background: rgba(244, 163, 0, 0.16); color: #9a6500; }
    .crm-status-confirmed { background: rgba(30, 115, 190, 0.14); color: #1e73be; }
    .crm-status-completed { background: rgba(40, 167, 69, 0.15); color: #247a39; }
    .crm-status-paid { background: rgba(111, 66, 193, 0.14); color: #5a32a3; }

    .crm-cta-card {
        padding: 44px;
        border-radius: 32px;
        background: linear-gradient(135deg, var(--nex-blue), #155e9f 52%, #0c4b82);
        box-shadow: var(--shadow-lg);
        color: #fff;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .crm-cta-card::before,
    .crm-cta-card::after {
        content: "";
        position: absolute;
        border-radius: 999px;
        opacity: 0.22;
        pointer-events: none;
    }

    .crm-cta-card::before {
        width: 260px;
        height: 260px;
        background: rgba(255,255,255,0.22);
        top: -110px;
        right: -90px;
    }

    .crm-cta-card::after {
        width: 190px;
        height: 190px;
        background: rgba(244, 163, 0, 0.24);
        bottom: -100px;
        left: -50px;
    }

    .crm-cta-card .section-tag,
    .crm-cta-card h2,
    .crm-cta-card p {
        color: #fff;
        position: relative;
    }

    .crm-cta-actions {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 28px;
        position: relative;
    }

    .crm-cta-actions .btn-outline {
        border-color: rgba(255, 255, 255, 0.6);
        color: #fff;
    }

    .crm-cta-actions .btn-outline:hover {
        background: #fff;
        color: var(--nex-blue);
    }

    html[data-theme='dark'] .crm-kicker {
        background: rgba(93, 173, 226, 0.15);
        color: #9ed4ff;
    }

    html[data-theme='dark'] .crm-flow-step,
    html[data-theme='dark'] .crm-hero-panel {
        background: rgba(15, 23, 34, 0.82);
        border-color: rgba(93, 173, 226, 0.16);
    }

    html[data-theme='dark'] .crm-feature-tag,
    html[data-theme='dark'] .crm-nav-card span {
        color: #ffd27d;
        background: rgba(244, 163, 0, 0.16);
    }

    html[data-theme='dark'] .crm-section-card {
        background: linear-gradient(160deg, rgba(16, 29, 43, 0.96), rgba(8, 17, 27, 0.96));
        border-color: rgba(93, 173, 226, 0.14);
    }

    @media (max-width: 1080px) {
        .crm-hero-shell,
        .crm-overview-grid,
        .crm-section-shell {
            grid-template-columns: 1fr;
        }

        .crm-section-card {
            position: static;
        }

        .crm-hero {
            min-height: auto;
        }
    }

    @media (max-width: 768px) {
        .crm-hero,
        .crm-overview,
        .crm-section,
        .crm-cta {
            padding: 72px 0;
        }

        .crm-flow,
        .crm-dashboard-grid,
        .crm-nav-grid,
        .crm-feature-grid {
            grid-template-columns: 1fr;
        }

        .crm-hero-panel,
        .crm-summary-card,
        .crm-nav-card,
        .crm-section-card,
        .crm-feature-card,
        .crm-cta-card {
            padding: 24px;
            border-radius: 24px;
        }

        .crm-hero h1 {
            max-width: none;
        }
    }

    @media (max-width: 560px) {
        .crm-hero-actions,
        .crm-cta-actions {
            flex-direction: column;
            align-items: stretch;
        }

        .crm-hero-actions a,
        .crm-cta-actions a {
            width: 100%;
            text-align: center;
        }
    }

    @keyframes crmFadeUp {
        from { opacity: 0; transform: translateY(18px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes crmFadeRight {
        from { opacity: 0; transform: translateX(24px); }
        to { opacity: 1; transform: translateX(0); }
    }

    @keyframes crmPanelFloat {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    @keyframes crmFloatGlow {
        0%, 100% { transform: translate3d(0, 0, 0); }
        50% { transform: translate3d(0, -16px, 0); }
    }


    /* css code starts from here web.blade.php */
     .web-service-hero {
        position: relative;
        overflow: hidden;
        padding: 110px 0 88px;
        background:
            radial-gradient(circle at top left, rgba(244, 163, 0, 0.18), transparent 28%),
            radial-gradient(circle at bottom right, rgba(93, 173, 226, 0.18), transparent 32%),
            linear-gradient(135deg, rgba(16, 34, 54, 0.97) 0%, rgba(30, 115, 190, 0.9) 100%);
        color: #ffffff;
    }

    .web-service-hero-shell,
    .web-service-services-grid,
    .web-service-process-note,
    .web-service-why-grid,
    .web-service-cta-card {
        position: relative;
        z-index: 2;
    }

    .web-service-hero-shell {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
        gap: 40px;
        align-items: center;
    }

    .web-service-kicker {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 8px 16px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.18);
        font-size: 0.82rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 18px;
    }

    .web-service-hero h1 {
        font-size: clamp(2.4rem, 4.2vw, 4rem);
        margin-bottom: 18px;
        color: #ffffff;
    }

    .web-service-hero p,
    .web-service-panel p,
    .web-service-panel li,
    .web-service-metric span {
        color: rgba(255, 255, 255, 0.84);
    }

    .web-service-hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 28px;
    }

    .web-service-primary-btn {
        background: #F4A300;
        color: #16314b;
    }

    .web-service-primary-btn:hover {
        background: #ffb51f;
        color: #16314b;
    }

    .web-service-secondary-btn {
        border-color: rgba(255, 255, 255, 0.44);
        color: #ffffff;
    }

    .web-service-secondary-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
    }

    .web-service-metrics {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        margin-top: 28px;
    }

    .web-service-metric,
    .web-service-panel,
    .web-service-services-grid .service-card,
    .web-service-why-grid .trust-card,
    .web-service-process-note,
    .web-service-tech-card {
        border: 1px solid var(--border-soft);
        box-shadow: var(--shadow-md);
    }

    .web-service-metric {
        padding: 18px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(14px);
    }

    .web-service-metric strong {
        display: block;
        font-size: 1.4rem;
        color: #ffffff;
        margin-bottom: 4px;
    }

    .web-service-panel {
        padding: 30px;
        border-radius: 28px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(18px);
    }

    .web-service-panel h3 {
        color: #ffffff;
        margin-bottom: 12px;
    }

    .web-service-panel ul {
        list-style: none;
        display: grid;
        gap: 12px;
        margin-top: 18px;
    }

    .web-service-panel li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
    }

    .web-service-panel li i {
        color: #F4A300;
        margin-top: 4px;
    }

    .web-service-services {
        background: var(--surface-muted);
    }

    .web-service-services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 24px;
    }

    .web-service-services-grid .service-card {
        height: 100%;
        background: var(--surface-bg);
        border-radius: 26px;
        padding: 28px;
    }

    .web-service-services-grid .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .web-service-tech {
        background: var(--site-bg);
    }

    .web-service-tech-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
        gap: 18px;
    }

    .web-service-tech-card {
        background: var(--surface-bg);
        border-radius: 22px;
        padding: 22px 18px;
        text-align: center;
    }

    .web-service-tech-card i {
        font-size: 1.8rem;
        margin-bottom: 12px;
        color: var(--nex-blue);
    }

    .web-service-tech-card span {
        display: block;
        font-weight: 700;
        color: var(--text-main);
    }

    .web-service-tech-card small {
        color: var(--text-soft);
    }

    .web-service-process-note {
        margin-top: 28px;
        padding: 24px 28px;
        border-radius: 24px;
        background: linear-gradient(135deg, rgba(30, 115, 190, 0.08), rgba(244, 163, 0, 0.08));
    }

    .web-service-process-note strong {
        color: var(--text-main);
    }

    .web-service-why {
        background: var(--surface-muted);
    }

    .web-service-why-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 22px;
    }

    .web-service-why-grid .trust-card {
        background: var(--surface-bg);
    }

    .web-service-cta {
        padding: 88px 0;
        background: var(--site-bg);
    }

    .web-service-cta-card {
        display: flex;
        justify-content: space-between;
        gap: 24px;
        align-items: center;
        padding: 42px;
        border-radius: 32px;
        background:
            radial-gradient(circle at top right, rgba(244, 163, 0, 0.18), transparent 22%),
            linear-gradient(135deg, #133a60 0%, #1E73BE 100%);
        box-shadow: var(--shadow-lg);
    }

    .web-service-cta-card h2,
    .web-service-cta-card p,
    .web-service-cta-card .section-tag {
        color: #ffffff;
    }

    .web-service-cta-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
    }

    .web-service-cta-actions .btn-primary {
        background: #F4A300;
        color: #17324e;
    }

    .web-service-cta-actions .btn-primary:hover {
        background: #ffb51f;
        color: #17324e;
    }

    .web-service-cta-actions .btn-outline {
        border-color: rgba(255, 255, 255, 0.48);
        color: #ffffff;
    }

    .web-service-cta-actions .btn-outline:hover {
        background: #ffffff;
        color: #17324e;
    }

    @media (max-width: 992px) {
        .web-service-hero-shell,
        .web-service-cta-card {
            grid-template-columns: 1fr;
            flex-direction: column;
            align-items: flex-start;
        }

        .web-service-metrics {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .web-service-hero {
            padding: 92px 0 68px;
        }

        .web-service-hero-actions,
        .web-service-cta-actions {
            flex-direction: column;
            align-items: stretch;
        }

        .web-service-hero-actions a,
        .web-service-cta-actions a {
            width: 100%;
            text-align: center;
        }

        .web-service-panel,
        .web-service-cta-card {
            padding: 24px;
        }
    }


    /* web-app.blade.php css code starts from here  */
     .web-app-hero {
        position: relative;
        overflow: hidden;
        padding: 112px 0 90px;
        background:
            radial-gradient(circle at top left, rgba(93, 173, 226, 0.22), transparent 26%),
            radial-gradient(circle at bottom right, rgba(244, 163, 0, 0.16), transparent 28%),
            linear-gradient(135deg, #102234 0%, #194b78 55%, #1E73BE 100%);
        color: #ffffff;
    }

    .web-app-hero-shell,
    .web-app-solution-grid,
    .web-app-benefit-grid,
    .web-app-cta-card {
        position: relative;
        z-index: 2;
    }

    .web-app-hero-shell {
        display: grid;
        grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
        gap: 40px;
        align-items: center;
    }

    .web-app-kicker {
        display: inline-block;
        padding: 8px 16px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.18);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-size: 0.82rem;
        margin-bottom: 18px;
    }

    .web-app-hero h1 {
        color: #ffffff;
        font-size: clamp(2.4rem, 4.1vw, 3.95rem);
        margin-bottom: 18px;
    }

    .web-app-hero p,
    .web-app-hero-panel p,
    .web-app-hero-panel li,
    .web-app-highlight span {
        color: rgba(255, 255, 255, 0.84);
    }

    .web-app-hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 28px;
    }

    .web-app-primary-btn {
        background: #F4A300;
        color: #16314b;
    }

    .web-app-primary-btn:hover {
        background: #ffb51f;
        color: #16314b;
    }

    .web-app-secondary-btn {
        border-color: rgba(255, 255, 255, 0.42);
        color: #ffffff;
    }

    .web-app-secondary-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
    }

    .web-app-highlights {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        margin-top: 30px;
    }

    .web-app-highlight,
    .web-app-hero-panel,
    .web-app-solution-card,
    .web-app-benefit-card,
    .web-app-stack-card,
    .web-app-cta-card {
        border: 1px solid var(--border-soft);
        box-shadow: var(--shadow-md);
    }

    .web-app-highlight {
        padding: 18px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(14px);
    }

    .web-app-highlight strong {
        display: block;
        margin-bottom: 4px;
        color: #ffffff;
        font-size: 1.2rem;
    }

    .web-app-hero-panel {
        padding: 30px;
        border-radius: 28px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(18px);
    }

    .web-app-hero-panel h3 {
        color: #ffffff;
        margin-bottom: 12px;
    }

    .web-app-hero-panel ul {
        list-style: none;
        display: grid;
        gap: 12px;
        margin-top: 18px;
    }

    .web-app-hero-panel li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
    }

    .web-app-hero-panel i {
        color: #F4A300;
        margin-top: 4px;
    }

    .web-app-solutions,
    .web-app-benefits {
        background: var(--surface-muted);
    }

    .web-app-solution-grid,
    .web-app-benefit-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 24px;
    }

    .web-app-solution-card,
    .web-app-benefit-card,
    .web-app-stack-card {
        background: var(--surface-bg);
        border-radius: 26px;
        padding: 28px;
        height: 100%;
    }

    .web-app-solution-card h3,
    .web-app-benefit-card h3 {
        font-size: 1.18rem;
        margin-bottom: 10px;
    }

    .web-app-stack-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
        gap: 18px;
    }

    .web-app-stack-card {
        text-align: center;
        padding: 24px 18px;
    }

    .web-app-stack-card i {
        font-size: 1.9rem;
        margin-bottom: 12px;
        color: var(--nex-blue);
    }

    .web-app-stack-card span {
        display: block;
        font-weight: 700;
        color: var(--text-main);
    }

    .web-app-stack-card small {
        color: var(--text-soft);
    }

    .web-app-process-note {
        margin-top: 28px;
        padding: 24px 28px;
        border-radius: 24px;
        background: linear-gradient(135deg, rgba(30, 115, 190, 0.08), rgba(244, 163, 0, 0.08));
        border: 1px solid var(--border-soft);
        box-shadow: var(--shadow-md);
    }

    .web-app-process-note strong {
        color: var(--text-main);
    }

    .web-app-cta {
        padding: 88px 0;
        background: var(--site-bg);
    }

    .web-app-cta-card {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 24px;
        padding: 42px;
        border-radius: 32px;
        background:
            radial-gradient(circle at top right, rgba(244, 163, 0, 0.2), transparent 22%),
            linear-gradient(135deg, #12395c 0%, #1E73BE 100%);
    }

    .web-app-cta-card h2,
    .web-app-cta-card p,
    .web-app-cta-card .section-tag {
        color: #ffffff;
    }

    .web-app-cta-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
    }

    .web-app-cta-actions .btn-primary {
        background: #F4A300;
        color: #17324e;
    }

    .web-app-cta-actions .btn-primary:hover {
        background: #ffb51f;
        color: #17324e;
    }

    .web-app-cta-actions .btn-outline {
        border-color: rgba(255, 255, 255, 0.48);
        color: #ffffff;
    }

    .web-app-cta-actions .btn-outline:hover {
        background: #ffffff;
        color: #17324e;
    }

    @media (max-width: 992px) {
        .web-app-hero-shell {
            grid-template-columns: 1fr;
        }

        .web-app-highlights {
            grid-template-columns: 1fr;
        }

        .web-app-cta-card {
            flex-direction: column;
            align-items: flex-start;
        }
    }

    @media (max-width: 768px) {
        .web-app-hero {
            padding: 92px 0 70px;
        }

        .web-app-hero-actions,
        .web-app-cta-actions {
            flex-direction: column;
            align-items: stretch;
        }

        .web-app-hero-actions a,
        .web-app-cta-actions a {
            width: 100%;
            text-align: center;
        }

        .web-app-hero-panel,
        .web-app-cta-card {
            padding: 24px;
        }
    }


    /* industries dropdown link css code starts from here */
      .ecommerce-hero {
        background: linear-gradient(135deg, #5a2d8c 0%, #7b3fa0 55%, #e67e22 100%);
        padding: 80px 0 60px;
        text-align: center;
        color: #ffffff;
        position: relative;
        overflow: hidden;
    }

    [data-theme="dark"] .ecommerce-hero {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 55%, #5a2d8c 100%);
    }

    .ecommerce-hero h1 {
        font-size: 3rem;
        margin-bottom: 16px;
        color: #ffffff;
    }

    .ecommerce-hero p {
        font-size: 1.2rem;
        opacity: 0.9;
        max-width: 700px;
        margin: 0 auto;
    }

    .ecommerce-hero-glow {
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.3;
        z-index: 0;
    }

    .ecommerce-hero-glow-one {
        top: -100px;
        left: -100px;
        background: #e67e22;
    }

    .ecommerce-hero-glow-two {
        bottom: -100px;
        right: -100px;
        background: #7b3fa0;
    }

    .ecommerce-kicker {
        display: inline-block;
        padding: 8px 16px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 30px;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .ecommerce-section {
        padding: 80px 0;
    }

    .ecommerce-section-alt {
        background: #f8fafc;
        transition: background 0.3s ease;
    }

    [data-theme="dark"] .ecommerce-section-alt {
        background: #0f172a;
    }

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

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

    .section-tag {
        display: inline-block;
        padding: 6px 14px;
        background: rgba(230, 126, 34, 0.1);
        color: #e67e22;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        margin-bottom: 16px;
    }

    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 12px;
        color: #1e293b;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .section-header h2 {
        color: #f1f5f9;
    }

    .section-header p {
        color: #64748b;
        max-width: 600px;
        margin: 0 auto;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .section-header p {
        color: #94a3b8;
    }

    /* Solutions Grid */
    .solutions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .solution-card {
        background: #ffffff;
        border-radius: 20px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    }

    [data-theme="dark"] .solution-card {
        background: #1e293b;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .solution-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    }

    .solution-card i {
        font-size: 2.5rem;
        color: #e67e22;
        margin-bottom: 20px;
    }

    .solution-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
        color: #1e293b;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .solution-card h3 {
        color: #f1f5f9;
    }

    .solution-card p {
        color: #64748b;
        line-height: 1.6;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .solution-card p {
        color: #94a3b8;
    }

    /* Benefits Grid */
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .benefit-card {
        background: #ffffff;
        border-radius: 20px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, background 0.3s ease;
    }

    [data-theme="dark"] .benefit-card {
        background: #1e293b;
    }

    .benefit-card:hover {
        transform: translateY(-5px);
    }

    .benefit-card i {
        font-size: 2rem;
        color: #e67e22;
        margin-bottom: 16px;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
        color: #1e293b;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .benefit-card h3 {
        color: #f1f5f9;
    }

    .benefit-card p {
        color: #64748b;
        font-size: 0.9rem;
        line-height: 1.5;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .benefit-card p {
        color: #94a3b8;
    }

    /* Technology Stack */
    .tech-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 20px;
    }

    .tech-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, background 0.3s ease;
    }

    [data-theme="dark"] .tech-card {
        background: #1e293b;
    }

    .tech-card:hover {
        transform: translateY(-3px);
    }

    .tech-card i {
        font-size: 2rem;
        color: #e67e22;
        margin-bottom: 10px;
    }

    .tech-card span {
        display: block;
        font-weight: 600;
        color: #1e293b;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .tech-card span {
        color: #f1f5f9;
    }

    .tech-card small {
        color: #64748b;
        font-size: 0.7rem;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .tech-card small {
        color: #94a3b8;
    }

    /* Process Steps */
    .process-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 30px;
    }

    .process-step {
        text-align: center;
    }

    .step-number {
        width: 50px;
        height: 50px;
        background: #e67e22;
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        font-weight: bold;
        margin: 0 auto 20px;
    }

    .process-step h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
        color: #1e293b;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .process-step h3 {
        color: #f1f5f9;
    }

    .process-step p {
        color: #64748b;
        font-size: 0.9rem;
        line-height: 1.5;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .process-step p {
        color: #94a3b8;
    }

    /* Stats Section */
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        text-align: center;
    }

    .stat-card {
        padding: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: #e67e22;
        margin-bottom: 10px;
    }

    .stat-label {
        color: #64748b;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .stat-label {
        color: #94a3b8;
    }

    /* Features Section */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .feature-card {
        display: flex;
        gap: 15px;
        padding: 20px;
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, background 0.3s ease;
    }

    [data-theme="dark"] .feature-card {
        background: #1e293b;
    }

    .feature-card:hover {
        transform: translateX(5px);
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        background: rgba(230, 126, 34, 0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .feature-icon i {
        font-size: 1.5rem;
        color: #e67e22;
    }

    .feature-content h3 {
        font-size: 1rem;
        margin-bottom: 5px;
        color: #1e293b;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .feature-content h3 {
        color: #f1f5f9;
    }

    .feature-content p {
        color: #64748b;
        font-size: 0.85rem;
        line-height: 1.4;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .feature-content p {
        color: #94a3b8;
    }

    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, #e67e22 0%, #5a2d8c 100%);
        padding: 60px 0;
        text-align: center;
        color: #ffffff;
    }

    .cta-section h2 {
        font-size: 2rem;
        margin-bottom: 16px;
        color: #ffffff;
    }

    .cta-section p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        opacity: 0.9;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .btn-primary {
        background: #F4A300;
        color: #16314b;
        padding: 12px 28px;
        border-radius: 40px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .btn-primary:hover {
        background: #ffb51f;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(244, 163, 0, 0.3);
    }

    .btn-outline {
        border: 2px solid #ffffff;
        color: #ffffff;
        padding: 12px 28px;
        border-radius: 40px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .btn-outline:hover {
        background: #ffffff;
        color: #e67e22;
    }

    @media (max-width: 768px) {
        .ecommerce-hero h1 {
            font-size: 2rem;
        }
        .section-header h2 {
            font-size: 1.5rem;
        }
        .solutions-grid, .benefits-grid, .tech-grid, .features-grid {
            gap: 20px;
        }
        .stat-number {
            font-size: 2rem;
        }
        .feature-card {
            flex-direction: column;
            text-align: center;
        }
        .feature-icon {
            margin: 0 auto;
        }
    }


    /* industries education page css code start from here */
      .education-hero {
        background: linear-gradient(135deg, #1a3c5c 0%, #2c5f8a 55%, #4a90e2 100%);
        padding: 80px 0 60px;
        text-align: center;
        color: #ffffff;
        position: relative;
        overflow: hidden;
    }

    [data-theme="dark"] .education-hero {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 55%, #2c5f8a 100%);
    }

    .education-hero h1 {
        font-size: 3rem;
        margin-bottom: 16px;
        color: #ffffff;
    }

    .education-hero p {
        font-size: 1.2rem;
        opacity: 0.9;
        max-width: 700px;
        margin: 0 auto;
    }

    .education-hero-glow {
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.3;
        z-index: 0;
    }

    .education-hero-glow-one {
        top: -100px;
        left: -100px;
        background: #4a90e2;
    }

    .education-hero-glow-two {
        bottom: -100px;
        right: -100px;
        background: #f39c12;
    }

    .education-kicker {
        display: inline-block;
        padding: 8px 16px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 30px;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .education-section {
        padding: 80px 0;
    }

    .education-section-alt {
        background: #f8fafc;
        transition: background 0.3s ease;
    }

    [data-theme="dark"] .education-section-alt {
        background: #0f172a;
    }

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

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

    .section-tag {
        display: inline-block;
        padding: 6px 14px;
        background: rgba(74, 144, 226, 0.1);
        color: #4a90e2;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        margin-bottom: 16px;
    }

    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 12px;
        color: #1e293b;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .section-header h2 {
        color: #f1f5f9;
    }

    .section-header p {
        color: #64748b;
        max-width: 600px;
        margin: 0 auto;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .section-header p {
        color: #94a3b8;
    }

    /* Solutions Grid */
    .solutions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .solution-card {
        background: #ffffff;
        border-radius: 20px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    }

    [data-theme="dark"] .solution-card {
        background: #1e293b;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .solution-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    }

    .solution-card i {
        font-size: 2.5rem;
        color: #4a90e2;
        margin-bottom: 20px;
    }

    .solution-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
        color: #1e293b;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .solution-card h3 {
        color: #f1f5f9;
    }

    .solution-card p {
        color: #64748b;
        line-height: 1.6;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .solution-card p {
        color: #94a3b8;
    }

    /* Benefits Grid */
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .benefit-card {
        background: #ffffff;
        border-radius: 20px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, background 0.3s ease;
    }

    [data-theme="dark"] .benefit-card {
        background: #1e293b;
    }

    .benefit-card:hover {
        transform: translateY(-5px);
    }

    .benefit-card i {
        font-size: 2rem;
        color: #4a90e2;
        margin-bottom: 16px;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
        color: #1e293b;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .benefit-card h3 {
        color: #f1f5f9;
    }

    .benefit-card p {
        color: #64748b;
        font-size: 0.9rem;
        line-height: 1.5;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .benefit-card p {
        color: #94a3b8;
    }

    /* Technology Stack */
    .tech-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 20px;
    }

    .tech-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, background 0.3s ease;
    }

    [data-theme="dark"] .tech-card {
        background: #1e293b;
    }

    .tech-card:hover {
        transform: translateY(-3px);
    }

    .tech-card i {
        font-size: 2rem;
        color: #4a90e2;
        margin-bottom: 10px;
    }

    .tech-card span {
        display: block;
        font-weight: 600;
        color: #1e293b;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .tech-card span {
        color: #f1f5f9;
    }

    .tech-card small {
        color: #64748b;
        font-size: 0.7rem;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .tech-card small {
        color: #94a3b8;
    }

    /* Process Steps */
    .process-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 30px;
    }

    .process-step {
        text-align: center;
    }

    .step-number {
        width: 50px;
        height: 50px;
        background: #4a90e2;
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        font-weight: bold;
        margin: 0 auto 20px;
    }

    .process-step h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
        color: #1e293b;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .process-step h3 {
        color: #f1f5f9;
    }

    .process-step p {
        color: #64748b;
        font-size: 0.9rem;
        line-height: 1.5;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .process-step p {
        color: #94a3b8;
    }

    /* Stats Section */
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        text-align: center;
    }

    .stat-card {
        padding: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: #4a90e2;
        margin-bottom: 10px;
    }

    .stat-label {
        color: #64748b;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .stat-label {
        color: #94a3b8;
    }

    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, #4a90e2 0%, #2c5f8a 100%);
        padding: 60px 0;
        text-align: center;
        color: #ffffff;
    }

    .cta-section h2 {
        font-size: 2rem;
        margin-bottom: 16px;
        color: #ffffff;
    }

    .cta-section p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        opacity: 0.9;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .btn-primary {
        background: #F4A300;
        color: #16314b;
        padding: 12px 28px;
        border-radius: 40px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .btn-primary:hover {
        background: #ffb51f;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(244, 163, 0, 0.3);
    }

    .btn-outline {
        border: 2px solid #ffffff;
        color: #ffffff;
        padding: 12px 28px;
        border-radius: 40px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .btn-outline:hover {
        background: #ffffff;
        color: #4a90e2;
    }

    @media (max-width: 768px) {
        .education-hero h1 {
            font-size: 2rem;
        }
        .section-header h2 {
            font-size: 1.5rem;
        }
        .solutions-grid, .benefits-grid, .tech-grid {
            gap: 20px;
        }
        .stat-number {
            font-size: 2rem;
        }
    }


    /* health care css code starts from here */
      .healthcare-hero {
        background: linear-gradient(135deg, #0b3b3f 0%, #1a6b6b 55%, #2a9d8f 100%);
        padding: 80px 0 60px;
        text-align: center;
        color: #ffffff;
        position: relative;
        overflow: hidden;
    }

    [data-theme="dark"] .healthcare-hero {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 55%, #2a9d8f 100%);
    }

    .healthcare-hero h1 {
        font-size: 3rem;
        margin-bottom: 16px;
        color: #ffffff;
    }

    .healthcare-hero p {
        font-size: 1.2rem;
        opacity: 0.9;
        max-width: 700px;
        margin: 0 auto;
    }

    .healthcare-hero-glow {
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.3;
        z-index: 0;
    }

    .healthcare-hero-glow-one {
        top: -100px;
        left: -100px;
        background: #2a9d8f;
    }

    .healthcare-hero-glow-two {
        bottom: -100px;
        right: -100px;
        background: #e9c46a;
    }

    .healthcare-kicker {
        display: inline-block;
        padding: 8px 16px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 30px;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .healthcare-section {
        padding: 80px 0;
    }

    .healthcare-section-alt {
        background: #f8fafc;
        transition: background 0.3s ease;
    }

    [data-theme="dark"] .healthcare-section-alt {
        background: #0f172a;
    }

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

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

    .section-tag {
        display: inline-block;
        padding: 6px 14px;
        background: rgba(42, 157, 143, 0.1);
        color: #2a9d8f;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        margin-bottom: 16px;
    }

    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 12px;
        color: #1e293b;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .section-header h2 {
        color: #f1f5f9;
    }

    .section-header p {
        color: #64748b;
        max-width: 600px;
        margin: 0 auto;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .section-header p {
        color: #94a3b8;
    }

    /* Solutions Grid */
    .solutions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .solution-card {
        background: #ffffff;
        border-radius: 20px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    }

    [data-theme="dark"] .solution-card {
        background: #1e293b;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .solution-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    }

    .solution-card i {
        font-size: 2.5rem;
        color: #2a9d8f;
        margin-bottom: 20px;
    }

    .solution-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
        color: #1e293b;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .solution-card h3 {
        color: #f1f5f9;
    }

    .solution-card p {
        color: #64748b;
        line-height: 1.6;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .solution-card p {
        color: #94a3b8;
    }

    /* Benefits Grid */
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .benefit-card {
        background: #ffffff;
        border-radius: 20px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, background 0.3s ease;
    }

    [data-theme="dark"] .benefit-card {
        background: #1e293b;
    }

    .benefit-card:hover {
        transform: translateY(-5px);
    }

    .benefit-card i {
        font-size: 2rem;
        color: #2a9d8f;
        margin-bottom: 16px;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
        color: #1e293b;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .benefit-card h3 {
        color: #f1f5f9;
    }

    .benefit-card p {
        color: #64748b;
        font-size: 0.9rem;
        line-height: 1.5;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .benefit-card p {
        color: #94a3b8;
    }

    /* Technology Stack */
    .tech-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 20px;
    }

    .tech-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, background 0.3s ease;
    }

    [data-theme="dark"] .tech-card {
        background: #1e293b;
    }

    .tech-card:hover {
        transform: translateY(-3px);
    }

    .tech-card i {
        font-size: 2rem;
        color: #2a9d8f;
        margin-bottom: 10px;
    }

    .tech-card span {
        display: block;
        font-weight: 600;
        color: #1e293b;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .tech-card span {
        color: #f1f5f9;
    }

    .tech-card small {
        color: #64748b;
        font-size: 0.7rem;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .tech-card small {
        color: #94a3b8;
    }

    /* Process Steps */
    .process-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 30px;
    }

    .process-step {
        text-align: center;
    }

    .step-number {
        width: 50px;
        height: 50px;
        background: #2a9d8f;
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        font-weight: bold;
        margin: 0 auto 20px;
    }

    .process-step h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
        color: #1e293b;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .process-step h3 {
        color: #f1f5f9;
    }

    .process-step p {
        color: #64748b;
        font-size: 0.9rem;
        line-height: 1.5;
        transition: color 0.3s ease;
    }

    [data-theme="dark"] .process-step p {
        color: #94a3b8;
    }

    /* CTA Section */
    /* .cta-section {
        background: linear-gradient(135deg, #2a9d8f 0%, #1a6b6b 100%);
        padding: 60px 0;
        text-align: center;
        color: #ffffff;
    } */

    .cta-section h2 {
        font-size: 2rem;
        margin-bottom: 16px;
        color: #ffffff;
    }

    .cta-section p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        opacity: 0.9;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .btn-primary {
        background: #F4A300;
        color: #16314b;
        padding: 12px 28px;
        border-radius: 40px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .btn-primary:hover {
        background: #ffb51f;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(244, 163, 0, 0.3);
    }

    .btn-outline {
        border: 2px solid #ffffff;
        color: #ffffff;
        padding: 12px 28px;
        border-radius: 40px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .btn-outline:hover {
        background: #ffffff;
        color: #2a9d8f;
    }

    @media (max-width: 768px) {
        .healthcare-hero h1 {
            font-size: 2rem;
        }
        .section-header h2 {
            font-size: 1.5rem;
        }
        .solutions-grid, .benefits-grid, .tech-grid {
            gap: 20px;
        }
    }
    