/* ===================================
   BOOTSTRAP THEME CUSTOMIZATION
   =================================== */

/* Override Bootstrap's primary color */
:root {
    --bs-primary: #0066FF;
    --bs-primary-rgb: 0, 102, 255;
    --bs-secondary: #6C757D;
    --bs-success: #10b981;
    --bs-info: #06b6d4;
    --bs-warning: #f59e0b;
    --bs-danger: #ef4444;

    /* Hero custom colors */
    --hero-gradient-1: #0066FF;
    --hero-gradient-2: #00D4AA;
    --hero-accent: #FFD700;
}

/* Custom primary button styling */
.btn-primary {
    background-color: #0066FF;
    border-color: #0066FF;
}

.btn-primary:hover {
    background-color: #0052CC;
    border-color: #0052CC;
}

/* ===================================
   ACCESSIBILITY - FOCUS STATES
   =================================== */
/* Global focus styles for keyboard navigation */
*:focus-visible {
    outline: 3px solid #00D4AA;
    outline-offset: 2px;
}

a:focus-visible {
    outline: 3px solid #00D4AA;
    outline-offset: 4px;
    box-shadow: 0 0 0 6px rgba(0, 212, 170, 0.15);
}

button:focus-visible,
.btn:focus-visible,
.btn-hero:focus-visible {
    outline: 3px solid #00D4AA;
    outline-offset: 2px;
    box-shadow: 0 0 0 6px rgba(0, 212, 170, 0.2);
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid #0066FF;
    outline-offset: 0px;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.15);
}

/* Remove default outline to use custom */
*:focus:not(:focus-visible) {
    outline: none;
}

/* Skip to Content Link (WCAG 2.4.1) */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    z-index: 10000;
    padding: 12px 24px;
    background-color: #0066FF;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 0 0 8px 0;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.4);
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
    outline: 3px solid #00D4AA;
    outline-offset: 2px;
}

.skip-to-content:hover {
    background-color: #0052CC;
    color: #ffffff;
}

/* ===================================
   SMOOTH SCROLLING
   =================================== */
/* Disabled - using Lenis for smoother scroll experience */
/* html {
    scroll-behavior: smooth;
} */

/* Offset for fixed navbar */
/* Disabled - Lenis handles offset programmatically */
/* section {
    scroll-margin-top: 70px;
} */

/* Lenis optimization */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* ===================================
   HERO SECTION - MODERN DESIGN
   =================================== */

.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0A0E27;
    padding: 120px 0 80px;
}

/* Background Image Styling */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: brightness(0.5);
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    animation: subtle-zoom 20s ease-in-out infinite alternate;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    animation: subtle-zoom 20s ease-in-out infinite alternate;
    position: absolute;
    top: 0;
    left: 0;
}

@keyframes subtle-zoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

/* Overlays */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 14, 39, 0.9) 100%);
    z-index: 2;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 170, 0.1) 100%);
    z-index: 3;
    animation: gradient-shift 15s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* Animated Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 212, 170, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 212, 170, 0.8);
    animation: float 20s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.particle:nth-child(2) {
    left: 80%;
    top: 30%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 30%;
    top: 70%;
    animation-delay: 4s;
    animation-duration: 20s;
}

.particle:nth-child(4) {
    left: 70%;
    top: 60%;
    animation-delay: 1s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    left: 50%;
    top: 40%;
    animation-delay: 3s;
    animation-duration: 22s;
}

.particle:nth-child(6) {
    left: 20%;
    top: 80%;
    animation-delay: 5s;
    animation-duration: 19s;
}

/* Professional subtle float animation */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.4;
    }
    33% {
        transform: translate(8px, -8px);
        opacity: 0.5;
    }
    66% {
        transform: translate(-6px, -12px);
        opacity: 0.45;
    }
}

/* Slower, more subtle background float */
@keyframes float-slow {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translate(10px, -10px) rotate(2deg);
        opacity: 0.4;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
}

/* Hero Badges */
.hero-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 50px;
    color: #00D4AA;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.1);
}

.hero-badge:hover {
    background: rgba(0, 212, 170, 0.1);
    border-color: rgba(0, 212, 170, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.2);
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 102, 255, 0.3);
}

.hero-title-accent {
    display: block;
    background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-text 8s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-text {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.text-highlight {
    color: #00D4AA;
    font-weight: 600;
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.hero-feature i {
    color: #00D4AA;
    font-size: 1.2rem;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-hero {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-hero::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;
}

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

.btn-hero-primary {
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
    color: #ffffff;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-color: rgba(0, 212, 170, 0.5);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(0, 212, 170, 0.1);
    border-color: rgba(0, 212, 170, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.2);
    color: #ffffff;
}

/* Hero Trust Indicators */
.hero-trust {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    max-width: 700px;
    margin: 0 auto;
}

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

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.trust-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #00D4AA);
    border-radius: 2px;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

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

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

.animate-slide-up {
    animation: slideUp 1s ease-out forwards;
    opacity: 0;
}

.animation-delay-1 {
    animation-delay: 0.2s;
}

.animation-delay-2 {
    animation-delay: 0.4s;
}

.animation-delay-3 {
    animation-delay: 0.6s;
}

.animation-delay-4 {
    animation-delay: 0.8s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

/* ===================================
   MOBILE-FIRST: HERO SECTION
   =================================== */

/* Tablet: Hero badges spacing */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-badges {
        margin-top: 20px;
    }
}

/* Mobile: Hero section */
@media (max-width: 768px) {
    .hero-modern {
        padding: 80px 0 50px;
        min-height: auto;
    }

    /* Hero Badges - Smaller for mobile */
    .hero-badges {
        margin-top: 24px;
        margin-bottom: 20px;
        gap: 8px;
    }

    .hero-badge {
        padding: 6px 14px;
        font-size: 0.75rem;
        letter-spacing: 0.3px;
    }

    .hero-badge i {
        font-size: 0.7rem;
    }

    /* Title - Mobile optimized */
    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
        line-height: 1.2;
        margin-bottom: 16px;
    }

    /* Subtitle - Better readability */
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 24px;
        padding: 0 8px;
    }

    /* CTA Buttons - Stack vertically */
    .hero-cta {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .btn-hero i {
        font-size: 0.875rem;
    }

    /* Features - Tighter spacing */
    .hero-features {
        gap: 12px;
        margin-bottom: 28px;
    }

    .hero-feature {
        font-size: 0.85rem;
        padding: 8px 12px;
    }

    .hero-feature i {
        font-size: 0.875rem;
        width: 16px;
        height: 16px;
    }

    /* Trust indicators - Compact layout */
    .hero-trust {
        gap: 16px;
        padding: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .trust-item {
        min-width: auto;
        flex: 0 1 calc(50% - 8px);
    }

    .trust-number {
        font-size: 1.5rem;
        margin-bottom: 4px;
    }

    .trust-label {
        font-size: 0.75rem;
    }

    .trust-divider {
        display: none;
    }

    /* Hide scroll indicator on mobile */
    .hero-scroll-indicator {
        display: none;
    }

    /* Particles - Smaller for mobile */
    .hero-particle {
        width: 3px;
        height: 3px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .hero-modern {
        padding: 70px 0 40px;
    }

    .hero-badges {
        margin-top: 20px;
    }

    .hero-title {
        font-size: clamp(1.5rem, 9vw, 1.95rem);
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 0.875rem;
        margin-bottom: 20px;
    }

    .hero-cta {
        gap: 10px;
        margin-bottom: 24px;
    }

    .btn-hero {
        padding: 12px 20px;
        font-size: 0.875rem;
    }

    .hero-features {
        gap: 8px;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-feature {
        width: 100%;
        justify-content: center;
    }

    .hero-trust {
        padding: 14px;
        gap: 12px;
    }

    .trust-item {
        flex: 0 1 100%;
        text-align: center;
    }
}

/* ===================================
   MOBILE-FIRST: CREDIBILITY SECTION
   =================================== */
/* Tablet breakpoint - 2 column layout */
@media (max-width: 900px) {
    .credibility-stats {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 20px;
        padding: 35px 40px;
    }

    .stat-item {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .credibility-modern {
        padding: 60px 0;
    }

    .credibility-title {
        font-size: clamp(1.5rem, 6vw, 1.95rem);
        margin-bottom: 14px;
    }

    .credibility-subtitle {
        font-size: 0.95rem;
        margin-bottom: 32px;
        padding: 0 12px;
    }

    .industry-grid {
        gap: 12px;
    }

    .industry-card {
        padding: 20px 16px;
    }

    .industry-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    .industry-name {
        font-size: 1.05rem;
        margin-bottom: 6px;
    }

    .industry-desc {
        font-size: 0.825rem;
        line-height: 1.5;
    }

    .credibility-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 28px 20px;
    }

    .stat-item {
        padding: 16px;
        gap: 14px;
    }

    .stat-icon {
        width: 48px;
        height: 48px;
        font-size: 1.15rem;
    }

    .stat-value {
        font-size: 1.15rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .credibility-modern {
        padding: 50px 0;
    }

    .credibility-title {
        font-size: clamp(1.35rem, 7vw, 1.75rem);
    }

    .industry-grid {
        gap: 10px;
    }

    .industry-card {
        padding: 18px 14px;
    }

    .industry-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .credibility-stats {
        padding: 24px 16px;
        gap: 14px;
    }

    .stat-item {
        padding: 14px;
    }

    .stat-icon {
        width: 44px;
        height: 44px;
        font-size: 1.05rem;
    }

    .stat-value {
        font-size: 1.05rem;
    }
}

/* ===================================
   MOBILE-FIRST: PROBLEM & SOLUTION
   =================================== */
@media (max-width: 768px) {
    .problem-modern {
        padding: 60px 0;
    }

    .problem-title {
        font-size: clamp(1.5rem, 6vw, 1.95rem);
        margin-bottom: 14px;
    }

    .problem-intro {
        font-size: 0.95rem;
        margin-bottom: 32px;
        padding: 0 12px;
    }

    .problem-grid {
        gap: 14px;
    }

    .problem-card {
        padding: 20px 16px;
    }

    .problem-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 14px;
    }

    .problem-icon {
        font-size: 1.25rem;
    }

    .problem-subtitle {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .problem-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .solution-section {
        padding: 40px 0;
        margin-top: 40px;
    }

    .solution-badge {
        padding: 6px 14px;
        font-size: 0.75rem;
    }

    .solution-text {
        font-size: clamp(1.35rem, 6vw, 1.75rem);
        margin-bottom: 20px;
    }

    .stack-title {
        font-size: 1.25rem;
        margin-bottom: 18px;
    }

    .stack-diagram {
        gap: 8px;
    }

    .stack-layer {
        padding: 14px 16px;
        min-height: 50px;
    }

    .stack-layer-icon {
        font-size: 1rem;
    }

    .stack-layer-name {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .problem-modern {
        padding: 50px 0;
    }

    .problem-grid {
        gap: 12px;
    }

    .problem-card {
        padding: 18px 14px;
    }

    .solution-section {
        padding: 32px 0;
        margin-top: 32px;
    }

    .stack-diagram {
        gap: 6px;
    }

    .stack-layer {
        padding: 12px 14px;
        min-height: 44px;
    }
}

/* ===================================
   CREDIBILITY BAR - MODERN DESIGN
   =================================== */

.credibility-modern {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0A0E27 0%, #1A1F3A 100%);
    overflow: hidden;
}

/* Background Effects */
.credibility-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.credibility-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 212, 170, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 170, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: pattern-drift 20s linear infinite;
}

@keyframes pattern-drift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

.credibility-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: pulse-glow 8s ease-in-out infinite;
}

.credibility-glow-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #0066FF, transparent);
    top: -200px;
    left: -100px;
}

.credibility-glow-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #00D4AA, transparent);
    bottom: -150px;
    right: -50px;
    animation-delay: 4s;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(1.1);
    }
}

/* Content */
.credibility-content {
    position: relative;
    z-index: 10;
}

/* Headline Section */
.credibility-headline {
    text-align: center;
    margin-bottom: 60px;
}

.credibility-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 50px;
    color: #00D4AA;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: badge-float 3s ease-in-out infinite;
}

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

.credibility-badge i {
    font-size: 16px;
}

.credibility-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.credibility-accent {
    background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.credibility-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Industry Cards Grid */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.industry-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 170, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 170, 0.4);
    box-shadow: 0 15px 40px rgba(0, 212, 170, 0.2);
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.industry-card:hover .industry-shine {
    left: 100%;
}

.industry-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 15px;
    font-size: 24px;
    color: #00D4AA;
    transition: all 0.4s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(0, 212, 170, 0.2);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.3);
}

.industry-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.industry-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.industry-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Stats Bar */
.credibility-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 45px 55px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Subtle gradient overlay on hover */
.credibility-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.03), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
}

.credibility-stats:hover::before {
    left: 100%;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: transparent;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00D4AA, transparent);
    transition: transform 0.4s ease;
}

.stat-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.stat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(0, 212, 170, 0.15));
    border: 1.5px solid rgba(0, 212, 170, 0.3);
    border-radius: 14px;
    font-size: 22px;
    color: #00D4AA;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.stat-item:hover .stat-icon {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.25), rgba(0, 212, 170, 0.25));
    border-color: rgba(0, 212, 170, 0.5);
    transform: rotate(-5deg) scale(1.08);
    box-shadow: 0 8px 24px rgba(0, 212, 170, 0.2);
}

.stat-icon i {
    transition: transform 0.4s ease;
}

.stat-item:hover .stat-icon i {
    transform: scale(1.1);
}

.stat-content {
    text-align: left;
    flex: 1;
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-value {
    color: #00D4AA;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

.stat-divider {
    display: none; /* Remove dividers, using grid instead */
}

/* Industry-Specific Colors (Optional Enhancement) */
.industry-card[data-industry="industrial"]:hover .industry-icon {
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.5);
    background: rgba(245, 158, 11, 0.1);
}

.industry-card[data-industry="consumer"]:hover .industry-icon {
    color: #8b5cf6;
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(139, 92, 246, 0.1);
}

.industry-card[data-industry="medical"]:hover .industry-icon {
    color: #ec4899;
    border-color: rgba(236, 72, 153, 0.5);
    background: rgba(236, 72, 153, 0.1);
}

.industry-card[data-industry="infrastructure"]:hover .industry-icon {
    color: #06b6d4;
    border-color: rgba(6, 182, 212, 0.5);
    background: rgba(6, 182, 212, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .industry-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .credibility-modern {
        padding: 60px 0;
    }

    .credibility-headline {
        margin-bottom: 40px;
    }

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

    .industry-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .industry-card {
        padding: 25px;
    }

    .credibility-stats {
        gap: 30px;
        padding: 25px 30px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

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

/* ===================================
   PROBLEM STATEMENT - MODERN DESIGN
   =================================== */

.problem-modern {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0A0E27 0%, #1A1F3A 50%, #0A0E27 100%);
    overflow: hidden;
}

/* Background Effects */
.problem-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.problem-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 102, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 25% 25%, rgba(0, 212, 170, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 102, 255, 0.05) 0%, transparent 50%);
    background-size: 40px 40px, 40px 40px, 100% 100%, 100% 100%;
}

.problem-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
}

.problem-glow-1 {
    top: 15%;
    left: -10%;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    animation: float-slow 18s ease-in-out infinite;
}

.problem-glow-2 {
    bottom: 15%;
    right: -10%;
    background: linear-gradient(135deg, #0066FF, #00D4AA);
    animation: float-slow 22s ease-in-out infinite reverse;
}

.problem-content {
    position: relative;
    z-index: 10;
}

/* Section Badge */
.problem-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 50px;
    color: #ef4444;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Title */
.problem-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.problem-accent {
    display: block;
    color: #ef4444;
    text-shadow: 0 0 30px rgba(239, 68, 68, 0.5);
}

.problem-intro {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Problem Points */
.problem-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.problem-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-left: 3px solid #0066FF;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid #0066FF;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.problem-point:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.2);
    border-color: rgba(0, 102, 255, 0.3);
    border-left-color: #00D4AA;
}

.problem-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066FF, #0052CC);
    border-radius: 10px;
    color: white;
    font-size: 18px;
}

.problem-text {
    flex: 1;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.problem-text strong {
    color: #ffffff;
    font-weight: 700;
}

/* Conclusion */
.problem-conclusion {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(239, 68, 68, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 15px;
    margin-bottom: 35px;
}

.conclusion-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.25);
    border-radius: 12px;
    color: #ef4444;
    font-size: 20px;
}

.conclusion-text {
    flex: 1;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.highlight-danger {
    color: #ef4444;
    font-weight: 700;
}

/* Solution Section */
.problem-solution {
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 212, 170, 0.05));
    border: 2px solid rgba(0, 212, 170, 0.3);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.problem-solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(0, 212, 170, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.problem-solution:hover::before {
    opacity: 1;
}

.solution-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 212, 170, 0.15);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 50px;
    color: #00D4AA;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.solution-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0066FF, #00D4AA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.solution-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Stack Visualization */
.stack-container {
    position: relative;
    z-index: 10;
}

.stack-header {
    text-align: center;
    margin-bottom: 30px;
}

.stack-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.stack-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Stack Layers */
.stack-layers {
    position: relative;
    padding: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.stack-layer {
    position: relative;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.stack-layer:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 102, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.layer-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
}

.layer-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066FF, #00D4AA);
    border-radius: 12px;
    color: white;
    font-size: 22px;
    transition: all 0.3s ease;
}

.stack-layer:hover .layer-icon {
    transform: scale(1.1) rotate(-5deg);
}

.layer-info {
    flex: 1;
}

.layer-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3px;
}

.layer-tech {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.layer-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 212, 170, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.stack-layer:hover .layer-glow {
    opacity: 1;
}

/* Stack Connectors */
.stack-connector {
    position: relative;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0;
}

.connector-line {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #0066FF, #00D4AA);
    opacity: 0.3;
}

.connector-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #00D4AA;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 212, 170, 0.6);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

/* Stack Badge */
.stack-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.stack-badge i {
    font-size: 16px;
}

/* Layer-Specific Colors */
.stack-layer[data-layer="1"]:hover .layer-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.stack-layer[data-layer="2"]:hover .layer-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.stack-layer[data-layer="3"]:hover .layer-icon {
    background: linear-gradient(135deg, #0066FF, #0052CC);
}

.stack-layer[data-layer="4"]:hover .layer-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.stack-layer[data-layer="5"]:hover .layer-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

/* Responsive Design */
@media (max-width: 992px) {
    .problem-modern {
        padding: 60px 0;
    }

    .stack-container {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .problem-title {
        font-size: 1.8rem;
    }

    .problem-point {
        padding: 15px;
    }

    .problem-solution {
        padding: 25px;
    }

    .solution-text {
        font-size: 1.5rem;
    }

    .stack-layers {
        padding: 15px;
    }

    .stack-layer {
        padding: 15px 20px;
    }

    .stack-layer:hover {
        transform: none;
    }

    .layer-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .layer-name {
        font-size: 1rem;
    }
}

/* ===================================
   CAPABILITIES - MODERN DESIGN
   =================================== */

.capabilities-modern {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #1A1F3A 0%, #0A0E27 100%);
    overflow: hidden;
}

/* Background Effects */
.capabilities-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.capabilities-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
}

.capabilities-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(0, 212, 170, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

.container {
    position: relative;
    z-index: 10;
}

/* Section Header */
.capabilities-header {
    text-align: center;
    margin-bottom: 60px;
}

.capabilities-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 102, 255, 0.15);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 50px;
    color: #0066FF;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.capabilities-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.capabilities-accent {
    background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.capabilities-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* Capabilities Grid */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.capability-card {
    position: relative;
    padding: 35px 30px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 170, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.capability-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 170, 0.5);
    box-shadow: 0 20px 50px rgba(0, 212, 170, 0.3);
}

.capability-card:hover::before {
    opacity: 1;
}

/* Icon Wrapper */
.capability-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    z-index: 2;
}

.capability-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066FF, #00D4AA);
    border-radius: 18px;
    color: white;
    font-size: 32px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 3;
}

.capability-card:hover .capability-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 40px rgba(0, 212, 170, 0.5);
}

.capability-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.3), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(15px);
    z-index: 2;
}

.capability-card:hover .capability-glow {
    opacity: 1;
}

/* Card Content */
.capability-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.capability-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    position: relative;
    z-index: 2;
}

.capability-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.capability-list i {
    flex-shrink: 0;
    color: #00D4AA;
    font-size: 16px;
    margin-top: 2px;
    transition: transform 0.3s ease;
}

.capability-card:hover .capability-list i {
    transform: scale(1.2);
}

.capability-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 212, 170, 0.15);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 50px;
    color: #00D4AA;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

/* Capability-Specific Colors */
.capability-card[data-capability="electronics"]:hover .capability-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.capability-card[data-capability="electronics"] .capability-tag {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.capability-card[data-capability="firmware"]:hover .capability-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.capability-card[data-capability="firmware"] .capability-tag {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

.capability-card[data-capability="cloud"]:hover .capability-icon {
    background: linear-gradient(135deg, #0066FF, #0052CC);
}

.capability-card[data-capability="mobile"]:hover .capability-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.capability-card[data-capability="mobile"] .capability-tag {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    color: #8b5cf6;
}

.capability-card[data-capability="web"]:hover .capability-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.capability-card[data-capability="web"] .capability-tag {
    background: rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.3);
    color: #06b6d4;
}

.capability-card[data-capability="deployment"]:hover .capability-icon {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.capability-card[data-capability="deployment"] .capability-tag {
    background: rgba(236, 72, 153, 0.15);
    border-color: rgba(236, 72, 153, 0.3);
    color: #ec4899;
}

/* CTA Section */
.capabilities-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 40px 50px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 170, 0.1));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 212, 170, 0.3);
    border-radius: 25px;
    flex-wrap: wrap;
}

.cta-content {
    flex: 1;
    min-width: 250px;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.cta-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.btn-capability {
    display: inline-flex;
    align-items: center;
    padding: 16px 35px;
    background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

.btn-capability:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 170, 0.5);
    color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .capabilities-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .capabilities-modern {
        padding: 60px 0;
    }

    .capabilities-header {
        margin-bottom: 40px;
    }

    .capabilities-title {
        font-size: 2rem;
    }

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

    .capability-card {
        padding: 30px 25px;
    }

    .capability-card:hover {
        transform: translateY(-5px);
    }

    .capabilities-cta {
        flex-direction: column;
        padding: 30px 25px;
        text-align: center;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .btn-capability {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   SPLIDE CAROUSEL CUSTOMIZATION
   =================================== */

/* Splide Arrows */
.splide__arrow {
    background-color: #0066FF !important;
    opacity: 0.9;
  
}
.splide__arrow--prev{
    left:-5dvw!important;
}
.splide__arrow--next{
    right: -5dvw!important;
}


.splide__arrow:hover {
    opacity: 1;
}

.splide__arrow svg {
    fill: white;
}

/* Splide Pagination */
.splide__pagination__page {
    background-color: #CED4DA;
}

.splide__pagination__page.is-active {
    background-color: #0066FF;
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */
#scrollTop {
    display: none;
    z-index: 1000;
}

#scrollTop.visible {
    display: block;
}

/* ===================================
   NAVBAR SCROLL EFFECT
   =================================== */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* ===================================
   PROCESS SECTION
   =================================== */
.process-modern {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #0A0E27 0%, #1A1F3A 50%, #0A0E27 100%);
    overflow: hidden;
}

.process-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.process-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.process-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.process-glow-1 {
    top: 10%;
    left: -10%;
    background: linear-gradient(135deg, #0066FF, #00D4AA);
    animation: float-slow 25s ease-in-out infinite;
}

.process-glow-2 {
    bottom: 10%;
    right: -10%;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    animation: float-slow 30s ease-in-out infinite reverse;
}

.process-modern .container {
    z-index: 2;
}

/* Section Header */
.process-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #00D4AA;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: float 3s ease-in-out infinite;
}

.process-badge i {
    font-size: 1rem;
}

.process-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.process-title-accent {
    display: block;
    background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-text 8s ease infinite;
    background-size: 200% 200%;
}

.process-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 80px auto 60px;
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    margin-bottom: 0;
}

.process-step:not(:last-child) {
    margin-bottom: 60px;
}

/* Step Number */
.process-step-number {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066FF, #00D4AA);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.process-step:hover .process-step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.5);
}

.step-number-text {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    z-index: 2;
    position: relative;
}

.step-number-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: inherit;
    border-radius: inherit;
    filter: blur(20px);
    opacity: 0.6;
    z-index: 1;
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Step Content */
.process-step-content {
    position: relative;
    padding: 35px 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.process-step:hover .process-step-content {
    transform: translateX(10px);
    border-color: rgba(0, 212, 170, 0.5);
    box-shadow: 0 20px 50px rgba(0, 212, 170, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.process-step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 212, 170, 0.2));
    border: 2px solid rgba(0, 212, 170, 0.3);
    border-radius: 16px;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step-icon i {
    font-size: 1.75rem;
    color: #00D4AA;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover .process-step-icon {
    transform: rotate(10deg) scale(1.1);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.3), rgba(0, 212, 170, 0.3));
    border-color: rgba(0, 212, 170, 0.6);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.4);
}

.process-step:hover .process-step-icon i {
    transform: scale(1.1);
    color: #00FFD4;
}

.process-step-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.process-step-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-step-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.process-step-list li:last-child {
    margin-bottom: 0;
}

.process-step:hover .process-step-list li {
    color: rgba(255, 255, 255, 0.95);
}

.process-step-list li i {
    flex-shrink: 0;
    margin-top: 4px;
    color: #00D4AA;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.process-step:hover .process-step-list li i {
    color: #00FFD4;
    transform: scale(1.15);
}

.process-step-shine {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    transform: rotate(45deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.process-step:hover .process-step-shine {
    top: 100%;
    left: 100%;
}

/* Process Connector */
.process-connector {
    position: absolute;
    left: 49px;
    top: 100px;
    width: 2px;
    height: calc(100% - 40px);
    z-index: 0;
}

.connector-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 212, 170, 0.5) 0%,
        rgba(0, 102, 255, 0.3) 50%,
        rgba(139, 92, 246, 0.5) 100%
    );
}

.connector-pulse {
    position: absolute;
    top: 0;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #00D4AA;
    border: 2px solid rgba(0, 212, 170, 0.3);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.8);
    animation: pulse-travel 4s ease-in-out infinite;
}

@keyframes pulse-travel {
    0%, 100% {
        top: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Step-specific gradient variations */
.process-step[data-step="1"] .process-step-number {
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
}

.process-step[data-step="2"] .process-step-number {
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
}

.process-step[data-step="3"] .process-step-number {
    background: linear-gradient(135deg, #EC4899, #F472B6);
}

.process-step[data-step="4"] .process-step-number {
    background: linear-gradient(135deg, #F59E0B, #FBBF24);
}

.process-step[data-step="5"] .process-step-number {
    background: linear-gradient(135deg, #10B981, #34D399);
}

/* CTA Section */
.process-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 900px;
    margin: 80px auto 0;
    padding: 50px 60px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.process-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 170, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-cta:hover::before {
    opacity: 1;
}

.process-cta-content {
    flex: 1;
}

.process-cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    line-height: 1.3;
}

.process-cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.btn-process {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #0066FF, #00D4AA);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.btn-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00D4AA, #0066FF);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-process:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 212, 170, 0.4);
    color: white;
}

.btn-process:hover::before {
    opacity: 1;
}

.btn-process i {
    transition: transform 0.3s ease;
}

.btn-process:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-modern {
        padding: 80px 0;
    }

    .process-title {
        font-size: 2.25rem;
    }

    .process-subtitle {
        font-size: 1.1rem;
    }

    .process-timeline {
        margin: 60px auto 40px;
    }

    .process-step {
        grid-template-columns: 70px 1fr;
        gap: 25px;
    }

    .process-step:not(:last-child) {
        margin-bottom: 50px;
    }

    .process-step-number {
        width: 70px;
        height: 70px;
    }

    .step-number-text {
        font-size: 1.5rem;
    }

    .process-step-content {
        padding: 25px 30px;
    }

    .process-step-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .process-step-icon i {
        font-size: 1.5rem;
    }

    .process-step-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .process-step-list li {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .process-connector {
        left: 34px;
        top: 70px;
        height: calc(100% - 20px);
    }

    .process-cta {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        margin-top: 60px;
    }

    .process-cta-title {
        font-size: 1.5rem;
    }

    .process-cta-text {
        font-size: 1rem;
    }

    .btn-process {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .process-title {
        font-size: 1.75rem;
    }

    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }

    .process-step-number {
        width: 60px;
        height: 60px;
    }

    .step-number-text {
        font-size: 1.25rem;
    }

    .process-step-content {
        padding: 20px 24px;
    }

    .process-step-title {
        font-size: 1.25rem;
    }

    .process-connector {
        left: 38px;
    }
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */
.why-choose-modern {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #1A1F3A 0%, #0A0E27 50%, #1A1F3A 100%);
    overflow: hidden;
}

.why-choose-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.why-choose-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(0, 212, 170, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 102, 255, 0.05) 0%, transparent 50%);
    background-size: 100% 100%;
}

.why-choose-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.why-choose-glow-1 {
    top: 20%;
    left: 10%;
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
    animation: float-slow 20s ease-in-out infinite;
}

.why-choose-glow-2 {
    top: 50%;
    right: 10%;
    background: linear-gradient(135deg, #10B981, #34D399);
    animation: float-slow 25s ease-in-out infinite reverse;
}

.why-choose-glow-3 {
    bottom: 20%;
    left: 50%;
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
    animation: float-slow 30s ease-in-out infinite;
}

.why-choose-modern .container {
    z-index: 2;
}

/* Section Header */
.why-choose-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #F59E0B;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: float 3s ease-in-out infinite;
}

.why-choose-badge i {
    font-size: 1rem;
}

.why-choose-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.why-choose-title-accent {
    display: block;
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-text 8s ease infinite;
    background-size: 200% 200%;
}

.why-choose-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 80px auto 60px;
}

.advantage-card {
    position: relative;
    padding: 45px 35px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.advantage-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 170, 0.5);
    box-shadow: 0 30px 70px rgba(0, 212, 170, 0.25);
    background: rgba(255, 255, 255, 0.05);
}

/* Advantage Icon */
.advantage-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}

.advantage-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 212, 170, 0.2));
    border: 2px solid rgba(0, 212, 170, 0.3);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.advantage-icon i {
    font-size: 2.25rem;
    color: #00D4AA;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: inherit;
    border-radius: inherit;
    filter: blur(25px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.advantage-card:hover .advantage-icon {
    transform: rotate(-10deg) scale(1.1);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.3), rgba(0, 212, 170, 0.3));
    border-color: rgba(0, 212, 170, 0.6);
    box-shadow: 0 0 40px rgba(0, 212, 170, 0.5);
}

.advantage-card:hover .advantage-icon i {
    transform: scale(1.15);
    color: #00FFD4;
}

.advantage-card:hover .advantage-glow {
    opacity: 0.8;
}

/* Advantage-specific colors */
.advantage-card[data-advantage="unified"]:hover .advantage-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(96, 165, 250, 0.3));
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
}

.advantage-card[data-advantage="unified"]:hover .advantage-icon i {
    color: #60A5FA;
}

.advantage-card[data-advantage="production"]:hover .advantage-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(52, 211, 153, 0.3));
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.5);
}

.advantage-card[data-advantage="production"]:hover .advantage-icon i {
    color: #34D399;
}

.advantage-card[data-advantage="expertise"]:hover .advantage-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(167, 139, 250, 0.3));
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
}

.advantage-card[data-advantage="expertise"]:hover .advantage-icon i {
    color: #A78BFA;
}

/* Advantage Content */
.advantage-content {
    position: relative;
    z-index: 2;
}

.advantage-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.3;
}

.advantage-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 24px;
}

.advantage-card:hover .advantage-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Advantage Features */
.advantage-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.advantage-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-feature {
    color: rgba(255, 255, 255, 0.95);
    transform: translateX(5px);
}

.advantage-feature i {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00D4AA;
    font-size: 0.75rem;
    background: rgba(0, 212, 170, 0.15);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-feature i {
    background: rgba(0, 212, 170, 0.25);
    color: #00FFD4;
    transform: scale(1.2);
}

/* Advantage Number */
.advantage-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card:hover .advantage-number {
    color: rgba(255, 255, 255, 0.08);
    transform: scale(1.1);
}

/* Advantage Shine */
.advantage-shine {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 100%
    );
    transform: rotate(45deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.advantage-card:hover .advantage-shine {
    top: 100%;
    left: 100%;
}

/* Stats Bar */
.why-choose-stats {
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 50px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2), rgba(0, 102, 255, 0.2));
    border: 2px solid rgba(0, 212, 170, 0.3);
    border-radius: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.3), rgba(0, 102, 255, 0.3));
    border-color: rgba(0, 212, 170, 0.5);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.4);
}

.stat-icon i {
    font-size: 1.75rem;
    color: #00D4AA;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon i {
    transform: scale(1.15);
    color: #00FFD4;
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
}

/* Responsive Design */
@media (max-width: 992px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 60px auto 50px;
    }

    .why-choose-stats {
        flex-direction: column;
        padding: 40px 30px;
        gap: 30px;
    }

    .stat-item {
        width: 100%;
    }

    .stat-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .why-choose-modern {
        padding: 80px 0;
    }

    .why-choose-title {
        font-size: 2.25rem;
    }

    .why-choose-subtitle {
        font-size: 1.1rem;
    }

    .advantage-card {
        padding: 35px 28px;
    }

    .advantage-title {
        font-size: 1.5rem;
    }

    .advantage-description {
        font-size: 0.95rem;
    }

    .advantage-number {
        font-size: 3rem;
        top: 25px;
        right: 25px;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .why-choose-title {
        font-size: 1.75rem;
    }

    .advantage-icon-wrapper {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }

    .advantage-icon i {
        font-size: 1.75rem;
    }

    .advantage-title {
        font-size: 1.35rem;
    }

    .advantage-number {
        font-size: 2.5rem;
    }

    .why-choose-stats {
        padding: 30px 20px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
    }

    .stat-icon i {
        font-size: 1.5rem;
    }
}

/* ===================================
   PROJECTS/CASE STUDIES SECTION
   =================================== */
.projects-modern {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #0A0E27 0%, #1A1F3A 100%);
    overflow: hidden;
}

.projects-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.projects-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
}

.projects-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.projects-glow-1 {
    top: 20%;
    left: -15%;
    background: linear-gradient(135deg, #EC4899, #F472B6);
    animation: float-slow 28s ease-in-out infinite;
}

.projects-glow-2 {
    bottom: 20%;
    right: -15%;
    background: linear-gradient(135deg, #06B6D4, #0891B2);
    animation: float-slow 32s ease-in-out infinite reverse;
}

.projects-modern .container {
    z-index: 2;
}

/* Section Header */
.projects-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #EC4899;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: float 3s ease-in-out infinite;
}

.projects-badge i {
    font-size: 1rem;
}

.projects-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.projects-title-accent {
    display: block;
    background: linear-gradient(135deg, #EC4899 0%, #F472B6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-text 8s ease infinite;
    background-size: 200% 200%;
}

.projects-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* Project Card */
.project-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 170, 0.4);
    box-shadow: 0 25px 60px rgba(0, 212, 170, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

/* Project Card Header */
.project-card-header {
    position: relative;
    height: 0px; /* Intentionally set to 0px */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 212, 170, 0.2));
    overflow: hidden;
}

.project-card-header[data-color="green"] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.project-card-header[data-color="purple"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.project-card-header[data-color="pink"] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.project-card-header[data-color="cyan"] {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.project-card-header[data-color="violet"] {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.project-card-header[data-color="orange"] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.project-card-header[data-color="blue"] {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.project-card-icon {
    position: relative;
    z-index: 2;
    font-size: 4.5rem;
    color: rgba(255, 255, 255, 0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.project-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-card-glow {
    opacity: 1;
}

/* Project Card Body */
.project-card-body {
    padding: 35px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-card-category {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 212, 170, 0.15);
    color: #00D4AA;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.project-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin: 0;
}

.project-card-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0;
}

/* Project Specs */
.project-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.project-spec {
    text-align: center;
    padding: 14px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.project-spec:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 170, 0.3);
}

.spec-value {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.spec-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Project Flow */
.project-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    text-align: center;
}

.flow-step i {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
}

.flow-step span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
}

.flow-step-highlight i {
    color: #00D4AA;
}

.flow-step-highlight span {
    color: #00D4AA;
    font-weight: 600;
}

.flow-arrow {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
}

/* Project Features */
.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-feature {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.project-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 170, 0.3);
    color: white;
}

.project-feature i {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Project Highlights */
.project-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.project-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.project-highlights li i {
    flex-shrink: 0;
    margin-top: 2px;
    color: #00D4AA;
    font-size: 0.875rem;
}

/* Tech Stack */
.project-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tech-tag {
    padding: 5px 12px;
    background: rgba(139, 92, 246, 0.15);
    color: #A78BFA;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

/* Project Card Link */
.project-card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(0, 212, 170, 0.15));
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 12px;
    color: #00D4AA;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
}

.project-card-link:hover {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.25), rgba(0, 212, 170, 0.25));
    border-color: rgba(0, 212, 170, 0.5);
    color: #00FFD4;
    transform: translateX(5px);
}

.project-card-link i:last-child {
    transition: transform 0.3s ease;
}

.project-card-link:hover i:last-child {
    transform: translateX(5px);
}

/* Project Card Link Placeholder (for cards without links) */
.project-card-link-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin-top: auto;
}

/* Splide Carousel Customization */
.projects-modern .splide__track {
    padding: 20px 0 40px;
}

.projects-modern .splide__arrow {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.projects-modern .splide__arrow:hover {
    background: rgba(0, 212, 170, 0.2);
    border-color: rgba(0, 212, 170, 0.5);
    transform: scale(1.1);
}

.projects-modern .splide__arrow svg {
    fill: rgba(255, 255, 255, 0.8);
}

.projects-modern .splide__arrow:hover svg {
    fill: #00FFD4;
}

.projects-modern .splide__pagination__page {
    background: rgba(255, 255, 255, 0.2);
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.projects-modern .splide__pagination__page.is-active {
    background: linear-gradient(135deg, #0066FF, #00D4AA);
    transform: scale(1.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .projects-modern {
        padding: 80px 0;
    }

    .projects-title {
        font-size: 2.25rem;
    }

    .projects-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .project-card-header {
        display: none;
    }

    .project-card-icon {
        font-size: 3.5rem;
    }

    .project-card-body {
        padding: 28px 24px;
        gap: 16px;
    }

    .project-card-title {
        font-size: 1.4rem;
    }

    .project-card-description {
        font-size: 0.95rem;
    }

    .project-specs {
        gap: 8px;
    }

    .project-spec {
        padding: 12px 8px;
    }

    .spec-value {
        font-size: 0.95rem;
    }

    .project-flow {
        padding: 12px;
        gap: 6px;
    }

    .flow-step i {
        font-size: 1.1rem;
    }

    .flow-step span {
        font-size: 0.7rem;
    }

    .flow-arrow {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .projects-title {
        font-size: 1.75rem;
    }

    .project-card-body {
        padding: 24px 20px;
    }

    .project-specs {
        grid-template-columns: 1fr;
    }

    .project-flow {
        flex-direction: column;
        gap: 12px;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .project-card-link {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

/* ===================================
   TRUST SIGNALS SECTION
   =================================== */
.trust-modern {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0A0E27 0%, #1A1F3A 50%, #0A0E27 100%);
    overflow: hidden;
}

.trust-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.trust-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
}

.trust-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(0, 212, 170, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 102, 255, 0.06) 0%, transparent 50%);
    background-size: 100% 100%;
}

.trust-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
}

.trust-glow-1 {
    top: 10%;
    left: -5%;
    background: linear-gradient(135deg, #0066FF, #00D4AA);
    animation: float-slow 20s ease-in-out infinite;
}

.trust-glow-2 {
    bottom: 10%;
    right: -5%;
    background: linear-gradient(135deg, #00D4AA, #0066FF);
    animation: float-slow 24s ease-in-out infinite reverse;
}

.trust-modern .container {
    z-index: 2;
}

/* Trust Header */
.trust-header {
    text-align: center;
    margin-bottom: 80px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #00D4AA;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: float 3s ease-in-out infinite;
}

.trust-badge i {
    font-size: 1rem;
}

.trust-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.trust-accent {
    display: inline-block;
    background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-text 8s ease infinite;
    background-size: 200% 200%;
}

.trust-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Trust Stats Grid */
.trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-stat-card {
    position: relative;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.trust-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066FF, #00D4AA);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trust-stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 212, 170, 0.3);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
}

.trust-stat-card:hover::before {
    opacity: 1;
}

/* Stat Icon */
.trust-stat-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.trust-stat-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(0, 212, 170, 0.15));
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 20px;
    color: #00D4AA;
    font-size: 2rem;
    z-index: 2;
    transition: all 0.4s ease;
}

.trust-stat-card:hover .trust-stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.25), rgba(0, 212, 170, 0.25));
    border-color: rgba(0, 212, 170, 0.5);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

.trust-stat-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.3), transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.trust-stat-card:hover .trust-stat-glow {
    opacity: 1;
}

/* Stat Content */
.trust-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    line-height: 1;
}

.trust-stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.trust-stat-detail {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Specific stat card colors */
.trust-stat-card[data-stat="projects"]:hover .trust-stat-icon {
    color: #3B82F6;
    border-color: rgba(59, 130, 246, 0.5);
}

.trust-stat-card[data-stat="medical"]:hover .trust-stat-icon {
    color: #EF4444;
    border-color: rgba(239, 68, 68, 0.5);
}

.trust-stat-card[data-stat="standards"]:hover .trust-stat-icon {
    color: #10B981;
    border-color: rgba(16, 185, 129, 0.5);
}

.trust-stat-card[data-stat="experience"]:hover .trust-stat-icon {
    color: #F59E0B;
    border-color: rgba(245, 158, 11, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
    .trust-modern {
        padding: 80px 0;
    }

    .trust-header {
        margin-bottom: 60px;
    }

    .trust-title {
        font-size: 2.5rem;
    }

    .trust-subtitle {
        font-size: 1.1rem;
    }

    .trust-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 24px;
    }

    .trust-stat-card {
        padding: 32px 24px;
    }

    .trust-stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .trust-modern {
        padding: 60px 0;
    }

    .trust-title {
        font-size: 2rem;
    }

    .trust-accent {
        display: block;
    }

    .trust-subtitle {
        font-size: 1rem;
    }

    .trust-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trust-stat-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .trust-stat-icon {
        font-size: 1.75rem;
    }

    .trust-stat-number {
        font-size: 2.25rem;
    }

    .trust-stat-label {
        font-size: 1rem;
    }

    .trust-stat-detail {
        font-size: 0.9rem;
    }
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-modern {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #1A1F3A 0%, #0A0E27 50%, #1A1F3A 100%);
    overflow: hidden;
}

.faq-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.faq-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    background-size: 100% 100%;
}

.faq-glow {
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.15;
}

.faq-glow-1 {
    top: 15%;
    left: -10%;
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
    animation: float-slow 22s ease-in-out infinite;
}

.faq-glow-2 {
    bottom: 15%;
    right: -10%;
    background: linear-gradient(135deg, #F59E0B, #FBBF24);
    animation: float-slow 26s ease-in-out infinite reverse;
}

.faq-modern .container {
    z-index: 2;
}

/* Section Header */
.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #A78BFA;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: float 3s ease-in-out infinite;
}

.faq-badge i {
    font-size: 1rem;
}

.faq-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.faq-title-accent {
    display: block;
    background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-text 8s ease infinite;
    background-size: 200% 200%;
}

.faq-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* FAQ Accordion */
.faq-accordion-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-modern {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 60px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.faq-question:not(.collapsed) {
    background: rgba(139, 92, 246, 0.1);
}

.faq-question:hover {
    background: rgba(139, 92, 246, 0.08);
}

.faq-question:focus {
    outline: 3px solid #00D4AA;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(0, 212, 170, 0.2);
}

/* FAQ Icon */
.faq-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(167, 139, 250, 0.2));
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon i {
    font-size: 1.25rem;
    color: #A78BFA;
    transition: all 0.3s ease;
}

.faq-question:not(.collapsed) .faq-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(167, 139, 250, 0.3));
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.4);
    transform: scale(1.05);
}

.faq-question:not(.collapsed) .faq-icon i {
    color: #C4B5FD;
    transform: scale(1.1);
}

/* FAQ Question Text */
.faq-question-text {
    flex: 1;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    line-height: 1.4;
}

/* FAQ Toggle Icon */
.faq-toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-toggle i {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.faq-question:not(.collapsed) .faq-toggle {
    background: rgba(139, 92, 246, 0.2);
    transform: rotate(180deg);
}

.faq-question:not(.collapsed) .faq-toggle i {
    color: #A78BFA;
}

/* FAQ Answer */
.faq-answer {
    padding: 0 28px 28px 92px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* FAQ CTA */
.faq-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 40px 50px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(245, 158, 11, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-cta:hover::before {
    opacity: 1;
}

.faq-cta-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.faq-cta-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
    line-height: 1.3;
}

.faq-cta-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.btn-faq {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.btn-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #A78BFA, #8B5CF6);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-faq:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.4);
    color: white;
}

.btn-faq:hover::before {
    opacity: 1;
}

.btn-faq i {
    transition: transform 0.3s ease;
}

.btn-faq:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-modern {
        padding: 80px 0;
    }

    .faq-title {
        font-size: 2.25rem;
    }

    .faq-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 20px 24px;
        gap: 12px;
    }

    .faq-icon {
        width: 42px;
        height: 42px;
    }

    .faq-icon i {
        font-size: 1.1rem;
    }

    .faq-question-text {
        font-size: 1.1rem;
    }

    .faq-answer {
        padding: 0 24px 24px 78px;
        font-size: 1rem;
    }

    .faq-cta {
        flex-direction: column;
        text-align: center;
        padding: 35px 30px;
        gap: 24px;
    }

    .faq-cta-title {
        font-size: 1.5rem;
    }

    .faq-cta-text {
        font-size: 1rem;
    }

    .btn-faq {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 1.75rem;
    }

    .faq-question {
        padding: 18px 20px;
        gap: 10px;
    }

    .faq-icon {
        width: 38px;
        height: 38px;
    }

    .faq-icon i {
        font-size: 1rem;
    }

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

    .faq-toggle {
        width: 28px;
        height: 28px;
    }

    .faq-answer {
        padding: 0 20px 20px 20px;
        font-size: 0.95rem;
    }

    .faq-cta {
        padding: 30px 20px;
    }
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-modern {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #0A0E27 0%, #1A1F3A 100%);
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.contact-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.4;
}

.contact-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.contact-glow-1 {
    top: 20%;
    left: -10%;
    background: linear-gradient(135deg, #0066FF, #00D4AA);
    animation: float-slow 24s ease-in-out infinite;
}

.contact-glow-2 {
    bottom: 20%;
    right: -10%;
    background: linear-gradient(135deg, #EC4899, #F472B6);
    animation: float-slow 28s ease-in-out infinite reverse;
}

.contact-modern .container {
    z-index: 2;
}

/* Section Header */
.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #00D4AA;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: float 3s ease-in-out infinite;
}

.contact-badge i {
    font-size: 1rem;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.contact-title-accent {
    display: block;
    background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-text 8s ease infinite;
    background-size: 200% 200%;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 80px;
    line-height: 1.6;
}

/* Contact Info Section */
.contact-info-wrapper {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    height: 100%;
}

.contact-info-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.3;
}

.contact-info-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 212, 170, 0.3);
    transform: translateX(5px);
}

.contact-method-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 212, 170, 0.2));
    border: 2px solid rgba(0, 212, 170, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method-icon i {
    font-size: 1.25rem;
    color: #00D4AA;
}

.contact-method:hover .contact-method-icon {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.3), rgba(0, 212, 170, 0.3));
    border-color: rgba(0, 212, 170, 0.5);
    box-shadow: 0 0 25px rgba(0, 212, 170, 0.4);
}

.contact-method-content {
    flex: 1;
}

.contact-method-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-method-value {
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method-value:hover {
    color: #00D4AA;
}

/* Contact Benefits */
.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px;
    background: rgba(0, 212, 170, 0.05);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 16px;
}

.contact-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.contact-benefit i {
    flex-shrink: 0;
    color: #00D4AA;
    font-size: 1rem;
}

/* Contact Form */
.contact-form-wrapper {
    padding: 45px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.form-label-modern {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.form-label-modern i {
    color: #00D4AA;
    font-size: 0.875rem;
}

.form-input-modern {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input-modern::placeholder {
    color: rgba(255, 255, 255, 0.85);
}

.form-input-modern:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 170, 0.5);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.form-select-modern {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300D4AA' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px;
    padding-right: 45px;
    cursor: pointer;
}

.form-select-modern option {
    background: #1A1F3A;
    color: white;
}

.form-textarea-modern {
    resize: vertical;
    min-height: 140px;
    font-family: inherit;
}

/* Form Error States (WCAG 3.3.1 & 3.3.2) */
.form-error {
    display: none;
    margin-top: 6px;
    padding: 8px 12px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: #ff6b6b;
    font-size: 0.875rem;
    font-weight: 500;
}

.form-error.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-input-modern.error,
.form-select-modern.error,
.form-textarea-modern.error {
    border-color: rgba(239, 68, 68, 0.6);
    background: rgba(239, 68, 68, 0.05);
}

.form-input-modern.error:focus,
.form-select-modern.error:focus,
.form-textarea-modern.error:focus {
    border-color: rgba(239, 68, 68, 0.8);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

/* Submit Button */
.btn-contact {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #0066FF, #00D4AA);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.btn-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00D4AA, #0066FF);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 212, 170, 0.4);
}

.btn-contact:hover::before {
    opacity: 1;
}

.btn-contact i {
    transition: transform 0.3s ease;
}

.btn-contact:hover i {
    transform: translateX(5px);
}

.btn-contact:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-status {
    min-height: 24px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-modern .row {
        flex-direction: column-reverse;
    }

    .contact-info-wrapper {
        padding: 35px;
    }

    .contact-form-wrapper {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .contact-modern {
        padding: 80px 0;
    }

    .contact-title {
        font-size: 2.25rem;
    }

    .contact-subtitle {
        font-size: 1.1rem;
        margin-bottom: 60px;
    }

    .contact-info-wrapper {
        padding: 30px 25px;
    }

    .contact-info-title {
        font-size: 1.5rem;
    }

    .contact-info-text {
        font-size: 1rem;
    }

    .contact-method {
        padding: 16px;
    }

    .contact-method-icon {
        width: 42px;
        height: 42px;
    }

    .contact-method-icon i {
        font-size: 1.1rem;
    }

    .contact-form-wrapper {
        padding: 30px 25px;
    }

    .contact-form {
        gap: 24px;
    }

    .btn-contact {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 1.75rem;
    }

    .contact-info-wrapper {
        padding: 25px 20px;
    }

    .contact-method {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .contact-method-icon {
        width: 48px;
        height: 48px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .form-input-modern {
        padding: 12px 16px;
    }

    .btn-contact {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

/* ===================================
   NAVIGATION BAR
   =================================== */
.navbar-modern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.3s ease;
}

.navbar-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.navbar-blur {
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar-modern.scrolled .navbar-blur {
    opacity: 1;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    transition: padding 0.3s ease;
}

.navbar-modern.scrolled .navbar-content {
    padding: 16px 0;
}

/* Brand */
.navbar-brand-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-logo {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(135deg, #0066FF, #00D4AA); */
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    img{
        width: 42px;
        height: 42px;
        object-fit: cover;
        border-radius: 10px;
    }
}

.navbar-logo-image {
    width: 42px !important;
    height: 42px !important;
    object-fit: contain !important;
    background: transparent !important;
    border-radius: 0 !important;
    animation: logoFloat 3s ease-in-out infinite, logoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(0, 102, 255, 0.3));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(5deg);
    }
}

@keyframes logoPulse {
    0%, 100% {
        filter: drop-shadow(0 2px 8px rgba(0, 102, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 4px 16px rgba(0, 212, 170, 0.5));
    }
}

@keyframes logoSpin {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.navbar-logo i {
    font-size: 1.25rem;
    color: white;
}

.navbar-brand-modern:hover .navbar-logo {
    transform: scale(1.05);
}

.navbar-brand-modern:hover .navbar-logo-image {
    animation: logoSpin 0.8s cubic-bezier(0.4, 0, 0.2, 1), logoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 5px 20px rgba(0, 212, 170, 0.6)) drop-shadow(0 0 30px rgba(0, 102, 255, 0.4));
    transform: scale(1.1);
}

.navbar-brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0066FF, #00D4AA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile Toggle - Animated Hamburger */
.navbar-toggler-modern {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 10000;
}

.navbar-toggler-modern:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 170, 0.3);
    transform: scale(1.05);
}

/* Hamburger icon lines */
.toggler-icon {
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Active state - Transform to X */
.navbar-toggler-modern.active {
    background: rgba(0, 212, 170, 0.15);
    border-color: rgba(0, 212, 170, 0.4);
}

.navbar-toggler-modern.active .toggler-icon:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: #00D4AA;
}

.navbar-toggler-modern.active .toggler-icon:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar-toggler-modern.active .toggler-icon:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: #00D4AA;
}

/* Navigation Links */
.navbar-nav-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item-modern {
    position: relative;
}

.nav-link-modern {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link-modern i {
    font-size: 0.875rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.nav-link-modern:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link-modern:hover i {
    opacity: 1;
    transform: translateX(0);
}

.nav-link-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: linear-gradient(90deg, #0066FF, #00D4AA);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link-modern:hover::after {
    transform: scaleX(1);
}

/* CTA Button */
.nav-item-cta {
    margin-left: 16px;
}

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #0066FF, #00D4AA);
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.nav-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00D4AA, #0066FF);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4);
    color: white;
}

.nav-cta-btn:hover::before {
    opacity: 1;
}

.nav-cta-btn span,
.nav-cta-btn i {
    position: relative;
    z-index: 1;
}

.nav-cta-btn i {
    transition: transform 0.3s ease;
}

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

/* Make navbar visible on desktop only */
@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
}

/* Responsive - Mobile */
@media (max-width: 991px) {
    .navbar-toggler-modern {
        display: flex;
    }

    /* Hide navbar branding when mobile menu is open */
    .navbar-modern.menu-open .navbar-brand-modern {
        opacity: 1;
        
        /* pointer-events: none; */
    }

    .navbar-collapse {
        margin-top: 20px;
        display: none;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 212, 170, 0.5) rgba(255, 255, 255, 0.1);
    }

    .navbar-collapse::-webkit-scrollbar {
        width: 6px;
    }

    .navbar-collapse::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
    }

    .navbar-collapse::-webkit-scrollbar-thumb {
        background: rgba(0, 212, 170, 0.5);
        border-radius: 10px;
    }

    .navbar-collapse::-webkit-scrollbar-thumb:hover {
        background: rgba(0, 212, 170, 0.7);
    }

    .navbar-collapse.show {
        display: flex !important;
    }

    .navbar-nav-modern {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 20px 0;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 12px;
        margin-top: 20px;
        width: 100%;
    }

    .nav-link-modern {
        justify-content: flex-start;
    }

    .nav-link-modern i {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-item-cta {
        margin-left: 0;
        margin-top: 8px;
    }

    .nav-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   MOBILE MENU OVERLAY (AWARD-WINNING)
   =================================== */
/* Mobile menu overlay - hidden by default */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active state */
.mobile-menu-overlay.active {
    pointer-events: all;
    opacity: 1;
}

/* Backdrop with blur */
.mobile-menu-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

/* Menu content container */
.mobile-menu-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 100px 24px 40px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 212, 170, 0.5) rgba(255, 255, 255, 0.1);
}

.mobile-menu-content::-webkit-scrollbar {
    width: 8px;
}

.mobile-menu-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.mobile-menu-content::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 170, 0.5);
    border-radius: 10px;
}

.mobile-menu-content::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 170, 0.7);
}

/* Navigation */
.mobile-menu-nav {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* Menu list */
.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

/* Menu items - initially hidden for staggered animation */
.mobile-menu-item {
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: calc(var(--item-index) * 0.08s);
}

.mobile-menu-overlay.active .mobile-menu-item {
    opacity: 1;
    transform: translateY(0);
}

/* Menu links */
.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mobile-menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.1), transparent);
    transition: left 0.6s ease;
}

.mobile-menu-link:active {
    transform: scale(0.98);
}

.mobile-menu-link:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 212, 170, 0.3);
    transform: translateX(4px);
}

.mobile-menu-link:hover::before {
    left: 100%;
}

/* Menu icon */
.mobile-menu-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(0, 212, 170, 0.15));
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 14px;
    transition: all 0.4s ease;
}

.mobile-menu-icon i {
    font-size: 1.5rem;
    color: #00D4AA;
    transition: transform 0.4s ease;
}

.mobile-menu-link:hover .mobile-menu-icon {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.25), rgba(0, 212, 170, 0.25));
    border-color: rgba(0, 212, 170, 0.4);
    transform: rotate(-5deg) scale(1.05);
}

.mobile-menu-link:hover .mobile-menu-icon i {
    transform: scale(1.1);
}

/* Menu text */
.mobile-menu-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

.mobile-menu-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

/* Menu arrow */
.mobile-menu-arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: all 0.4s ease;
}

.mobile-menu-arrow i {
    font-size: 1rem;
    color: #00D4AA;
}

.mobile-menu-link:hover .mobile-menu-arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* Mobile menu CTA section */
.mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: calc(var(--item-index) * 0.08s);
}

.mobile-menu-overlay.active .mobile-menu-cta {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Button */
.mobile-menu-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px 32px;
    background: linear-gradient(135deg, #0066FF, #00D4AA);
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 212, 170, 0.3);
    position: relative;
    overflow: hidden;
}

.mobile-menu-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-menu-cta-btn:hover::before {
    opacity: 1;
}

.mobile-menu-cta-btn:active {
    transform: scale(0.98);
}

.mobile-menu-cta-btn i {
    font-size: 1rem;
    transition: transform 0.4s ease;
}

.mobile-menu-cta-btn:hover i {
    transform: translateX(4px);
}

/* Contact link */
.mobile-menu-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-menu-contact:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 212, 170, 0.3);
    color: #00D4AA;
}

.mobile-menu-contact i {
    font-size: 1rem;
    color: #00D4AA;
}

/* Hide on desktop */
@media (min-width: 992px) {
    .mobile-menu-overlay {
        display: none;
    }
}

/* ===================================
   MOBILE-FIRST: CAPABILITIES SECTION
   =================================== */

/* Tablet: Icon as background */
@media (max-width: 1024px) and (min-width: 769px) {
    .capability-card {
        position: relative;
        overflow: hidden;
    }

    .capability-icon-wrapper {
        position: absolute;
        top: -30px;
        right: -30px;
        width: 180px;
        height: 180px;
        margin-bottom: 0;
        opacity: 0.1;
        z-index: 0;
    }

    .capability-icon {
        width: 100%;
        height: 100%;
        font-size: 4.5rem;
        border-radius: 28px;
    }

    .capability-card:hover .capability-icon {
        transform: scale(1.05) rotate(-3deg);
    }

    /* Ensure content appears above background icon */
    .capability-title,
    .capability-list,
    .capability-tag {
        position: relative;
        z-index: 1;
    }
}

/* Mobile: Icon as background */
@media (max-width: 768px) {
    .capabilities-modern {
        padding: 60px 0;
    }

    .capabilities-title {
        font-size: clamp(1.5rem, 6vw, 1.95rem);
        margin-bottom: 14px;
    }

    .capabilities-subtitle {
        font-size: 0.95rem;
        margin-bottom: 32px;
        padding: 0 12px;
    }

    .capabilities-grid {
        gap: 14px;
    }

    .capability-card {
        padding: 24px 18px;
        position: relative;
        overflow: hidden;
    }

    /* Icon wrapper as background on mobile */
    .capability-icon-wrapper {
        position: absolute;
        top: -20px;
        right: -20px;
        width: 140px;
        height: 140px;
        margin-bottom: 0;
        opacity: 0.08;
        z-index: 0;
    }

    .capability-icon {
        width: 100%;
        height: 100%;
        font-size: 3.5rem;
        border-radius: 24px;
    }

    .capability-card:hover .capability-icon {
        transform: scale(1.05) rotate(-5deg);
    }

    /* Ensure content appears above background icon */
    .capability-title,
    .capability-list,
    .capability-tag {
        position: relative;
        z-index: 1;
    }

    .capability-title {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }

    .capability-list {
        gap: 8px;
    }

    .capability-list li {
        font-size: 0.825rem;
    }

    .capability-list i {
        font-size: 0.7rem;
    }

    .capabilities-cta {
        margin-top: 32px;
        padding: 28px 20px;
    }

    .cta-title {
        font-size: 1.25rem;
        margin-bottom: 14px;
    }

    .cta-text {
        font-size: 0.875rem;
        margin-bottom: 20px;
    }

    .btn-cta {
        padding: 13px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .capabilities-modern {
        padding: 50px 0;
    }

    .capabilities-grid {
        gap: 12px;
    }

    .capability-card {
        padding: 20px 16px;
        position: relative;
        overflow: hidden;
    }

    .mobile-menu-overlay.active .mobile-menu-cta{
        display: none;
    }

    /* Smaller background icon for small phones */
    .capability-icon-wrapper {
        position: absolute;
        top: -15px;
        right: -15px;
        width: 110px;
        height: 110px;
        margin-bottom: 0;
        opacity: 0.06;
        z-index: 0;
    }

    .capability-icon {
        width: 100%;
        height: 100%;
        font-size: 2.8rem;
        border-radius: 20px;
    }

    .capabilities-cta {
        padding: 24px 18px;
    }
}

/* ===================================
   MOBILE-FIRST: PROCESS SECTION
   =================================== */
@media (max-width: 768px) {
    .process-modern {
        padding: 60px 0;
    }

    .process-title {
        font-size: clamp(1.5rem, 6vw, 1.95rem);
        margin-bottom: 14px;
    }

    .process-subtitle {
        font-size: 0.95rem;
        margin-bottom: 32px;
        padding: 0 12px;
    }

    .process-steps {
        gap: 20px;
    }

    .process-step {
        padding: 24px 18px;
    }

    .process-step-number {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        margin-bottom: 14px;
    }

    .process-step-title {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }

    .process-step-desc {
        font-size: 0.85rem;
        margin-bottom: 14px;
    }

    .process-step-list li {
        font-size: 0.8rem;
        padding-left: 18px;
    }

    .process-step-list i {
        font-size: 0.65rem;
    }

    .process-cta {
        margin-top: 32px;
        padding: 24px 18px;
    }

    .process-cta-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .process-cta-text {
        font-size: 0.875rem;
        margin-bottom: 18px;
    }
}

@media (max-width: 480px) {
    .process-modern {
        padding: 50px 0;
    }

    .process-steps {
        gap: 16px;
    }

    .process-step {
        padding: 20px 16px;
    }
}

/* ===================================
   MOBILE-FIRST: WHY CHOOSE US
   =================================== */
@media (max-width: 768px) {
    .why-choose-modern {
        padding: 60px 0;
    }

    .why-choose-title {
        font-size: clamp(1.5rem, 6vw, 1.95rem);
        margin-bottom: 14px;
    }

    .why-choose-subtitle {
        font-size: 0.95rem;
        margin-bottom: 32px;
        padding: 0 12px;
    }

    .advantages-grid {
        gap: 14px;
    }

    .advantage-card {
        padding: 24px 18px;
    }

    .advantage-number {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        margin-bottom: 14px;
    }

    .advantage-title {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }

    .advantage-desc {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .why-choose-modern {
        padding: 50px 0;
    }

    .advantages-grid {
        gap: 12px;
    }

    .advantage-card {
        padding: 20px 16px;
    }
}

/* ===================================
   MOBILE-FIRST: PROJECTS SECTION
   =================================== */

/* Tablet: Optimized project cards */
@media (max-width: 1024px) and (min-width: 769px) {
    .project-card-body {
        padding: 28px 24px;
        gap: 16px;
    }

    .project-card-title {
        font-size: 1.35rem;
    }

    .project-card-description {
        font-size: 0.95rem;
        line-height: 1.65;
        /* Limit to 4 lines on tablet */
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .project-specs {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .project-spec {
        padding: 12px 10px;
    }
}

/* Mobile: Compact project cards */
@media (max-width: 768px) {
    .projects-modern {
        padding: 60px 0;
    }

    .projects-title {
        font-size: clamp(1.5rem, 6vw, 1.95rem);
        margin-bottom: 14px;
    }

    .projects-subtitle {
        font-size: 0.95rem;
        margin-bottom: 32px;
        padding: 0 12px;
    }

    /* Compact card design */
    .project-card {
        padding: 20px;
    }

    .project-card-body {
        padding: 24px 20px;
        gap: 14px;
    }

    .project-card-header {
        height: 0px;
    }

    .project-card-icon {
        font-size: 3rem;
    }

    .project-card-category {
        font-size: 0.7rem;
        padding: 5px 11px;
    }

    .project-card-title {
        font-size: 1.15rem;
        line-height: 1.35;
    }

    .project-card-description {
        font-size: 0.875rem;
        line-height: 1.6;
        /* Limit to 3 lines for better digestibility */
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Project specs: 2 columns instead of 3 */
    .project-specs {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .project-spec {
        padding: 10px 8px;
    }

    .spec-value {
        font-size: 0.9rem;
    }

    .spec-label {
        font-size: 0.7rem;
    }

    /* Compact flow section */
    .project-flow {
        padding: 12px;
        gap: 6px;
    }

    .flow-step-icon {
        font-size: 1rem;
    }

    .flow-step-label {
        font-size: 0.7rem;
    }

    .flow-arrow {
        font-size: 0.7rem;
    }

    /* Legacy classes (if used) */
    .project-card-image {
        height: 180px;
        margin-bottom: 16px;
    }

    .project-card-desc {
        font-size: 0.85rem;
        margin-bottom: 14px;
    }

    .project-tags {
        gap: 6px;
    }

    .project-tag {
        padding: 5px 10px;
        font-size: 0.7rem;
    }

    /* Splide carousel adjustments */
    .splide__arrow {
        width: 36px;
        height: 36px;
    }

    .splide__arrow svg {
        width: 14px;
        height: 14px;
    }

    .splide__pagination__page {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .projects-modern {
        padding: 50px 0;
    }

    .project-card {
        padding: 16px;
    }

    .project-card-body {
        padding: 20px 16px;
        gap: 12px;
    }

    .project-card-icon {
        font-size: 2.5rem;
    }

    .project-card-title {
        font-size: 1.05rem;
    }

    .project-card-description {
        font-size: 0.825rem;
        line-height: 1.55;
        -webkit-line-clamp: 2;
    }

    /* Hide third spec on small phones */
    .project-spec:nth-child(3) {
        display: none;
    }

    .project-specs {
        grid-template-columns: 1fr 1fr;
    }

    .project-flow {
        padding: 10px;
    }

    .project-card-image {
        height: 160px;
    }
}

/* ===================================
   MOBILE-FIRST: TRUST SECTION
   =================================== */
@media (max-width: 768px) {
    .trust-modern {
        padding: 60px 0;
    }

    .trust-title {
        font-size: clamp(1.5rem, 6vw, 1.95rem);
        margin-bottom: 14px;
    }

    .trust-subtitle {
        font-size: 0.95rem;
        margin-bottom: 32px;
        padding: 0 12px;
    }

    .trust-stats-grid {
        gap: 14px;
    }

    .trust-stat-card {
        padding: 24px 18px;
    }

    .trust-stat-icon {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
        margin-bottom: 14px;
    }

    .trust-stat-number {
        font-size: 1.75rem;
        margin-bottom: 6px;
    }

    .trust-stat-label {
        font-size: 0.825rem;
    }

    .trust-stat-desc {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .trust-modern {
        padding: 50px 0;
    }

    .trust-stats-grid {
        gap: 12px;
    }

    .trust-stat-card {
        padding: 20px 16px;
    }
}

/* ===================================
   MOBILE-FIRST: FAQ SECTION
   =================================== */
@media (max-width: 768px) {
    .faq-modern {
        padding: 60px 0;
    }

    .faq-title {
        font-size: clamp(1.5rem, 6vw, 1.95rem);
        margin-bottom: 14px;
    }

    .faq-subtitle {
        font-size: 0.95rem;
        margin-bottom: 32px;
        padding: 0 12px;
    }

    .faq-item {
        margin-bottom: 10px;
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 0.95rem;
    }

    .faq-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .faq-toggle {
        width: 28px;
        height: 28px;
    }

    .faq-toggle i {
        font-size: 0.75rem;
    }

    .faq-answer {
        padding: 16px 18px;
        font-size: 0.875rem;
    }

    .faq-cta {
        margin-top: 32px;
        padding: 24px 18px;
    }

    .faq-cta-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .faq-cta-text {
        font-size: 0.875rem;
        margin-bottom: 18px;
    }
}

@media (max-width: 480px) {
    .faq-modern {
        padding: 50px 0;
    }

    .faq-question {
        padding: 14px 16px;
    }

    .faq-answer {
        padding: 14px 16px;
    }
}

/* ===================================
   MOBILE-FIRST: CONTACT SECTION
   =================================== */
@media (max-width: 768px) {
    .contact-modern {
        padding: 60px 0;
    }

    .contact-badge {
        padding: 6px 14px;
        font-size: 0.75rem;
    }

    .contact-title {
        font-size: clamp(1.5rem, 6vw, 1.95rem);
        margin-bottom: 14px;
    }

    .contact-subtitle {
        font-size: 0.95rem;
        margin-bottom: 32px;
        padding: 0 12px;
    }

    .contact-info-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .contact-info-text {
        font-size: 0.875rem;
        margin-bottom: 24px;
    }

    .contact-method {
        padding: 16px;
    }

    .contact-method-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .contact-method-label {
        font-size: 0.75rem;
    }

    .contact-method-value {
        font-size: 0.95rem;
    }

    .contact-benefit {
        font-size: 0.85rem;
        gap: 10px;
    }

    .contact-benefit i {
        font-size: 0.875rem;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
        margin-top: 32px;
    }

    .form-label-modern {
        font-size: 0.875rem;
    }

    .form-input-modern {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .btn-contact {
        padding: 15px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-modern {
        padding: 50px 0;
    }

    .contact-form-wrapper {
        padding: 24px 18px;
    }

    .form-input-modern {
        padding: 11px 14px;
        font-size: 0.875rem;
    }
}

/* ===================================
   MOBILE-FIRST: FOOTER SECTION
   =================================== */
@media (max-width: 768px) {
    .footer-modern {
        padding: 50px 0 0;
    }

    .footer-brand {
        margin-bottom: 32px;
        text-align: center;
    }

    .footer-logo {
        font-size: 1.25rem;
    }

    .footer-tagline {
        font-size: 0.85rem;
    }

    .footer-description {
        font-size: 0.85rem;
    }

    .footer-social {
        justify-content: center;
        gap: 10px;
    }

    .footer-social-link {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    .footer-section {
        margin-bottom: 28px;
        text-align: center;
    }

    .footer-section-title {
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .footer-link {
        font-size: 0.85rem;
        padding: 6px 0;
    }

    .footer-cta-text {
        font-size: 0.875rem;
    }

    .footer-cta-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-legal-links {
        font-size: 0.75rem;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .footer-copyright {
        font-size: 0.75rem;
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .footer-modern {
        padding: 40px 0 0;
    }

    .footer-section {
        margin-bottom: 24px;
    }
}

/* ===================================
   FOOTER
   =================================== */
.footer-modern {
    position: relative;
    padding: 80px 0 0;
    background: linear-gradient(180deg, #0A0E27 0%, #050816 100%);
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
}

.footer-glow {
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: linear-gradient(135deg, #0066FF, #00D4AA);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.1;
}

.footer-modern .container {
    position: relative;
    z-index: 2;
}

/* Footer Main */
.footer-main {
    padding-bottom: 60px;
}

/* Brand Section */
.footer-brand {
    max-width: 350px;
}

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

.footer-logo i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066FF, #00D4AA);
    border-radius: 8px;
    font-size: 1.25rem;
    color: white;
}

.footer-logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background: transparent !important;
    border: none;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.footer-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: #00D4AA;
    margin-bottom: 12px;
}

.footer-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 28px;
}

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

.footer-social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social-link:hover {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 212, 170, 0.2));
    border-color: rgba(0, 212, 170, 0.5);
    color: #00D4AA;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 212, 170, 0.3);
}

/* Footer Sections */
.footer-section-title {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-section-title i {
    color: #00D4AA;
    font-size: 0.875rem;
}

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

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

.footer-link {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0066FF, #00D4AA);
    bottom: -2px;
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #00D4AA;
    padding-left: 8px;
}

.footer-link:hover::before {
    width: 100%;
}

/* Footer CTA */
.footer-cta {
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 212, 170, 0.05);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 12px;
}

.footer-cta-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #0066FF, #00D4AA);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-cta-btn:hover {
    transform: translateX(5px);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 212, 170, 0.3);
}

.footer-cta-btn i {
    transition: transform 0.3s ease;
}

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

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

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

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: #00D4AA;
}

.footer-divider {
    color: rgba(255, 255, 255, 0.3);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
}

.footer-copyright p {
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-modern {
        padding: 60px 0 0;
    }

    .footer-main {
        padding-bottom: 40px;
    }

    .footer-brand {
        max-width: 100%;
        margin-bottom: 40px;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-legal-links {
        gap: 12px;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .navbar,
    .btn,
    #scrollTop,
    .hero-particles,
    .hero-scroll-indicator {
        display: none !important;
    }
}
