:root {
    /* Core Branding Colors */
    --primary: #84bcdd;
    --primary-dark: #2c7bac;
    --primary-light: #A3D4EE;
    --secondary: #00E5D4;
    --accent: #FFC107;
    --dark: #000000;
    --light: #FFFFFF;
    --bg-light: #f1f2f4;
    --bg-white: #ffffff;

    /* Text Colors */
    --text-dark: #212121;
    --text-main: #424242;
    --text-medium: #555555;
    --text-light: #757575;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-white: #ffffff;
    --heading-color: var(--text-white);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #84bcdd 0%, #6BA4C5 100%);
    --gradient-secondary: linear-gradient(90deg, #212121 0%, #424242 100%);
    --gradient-hero: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
    --gradient-cta: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
    --gradient-blue: linear-gradient(135deg, #3949ab, #5c6bc0);

    /* Layout & Spacing */
    --container-max-width: 1400px;
    --section-padding-large: 100px 0;
    --section-padding-medium: 80px 0;
    --section-padding-small: 50px 0;

    /* UI Elements */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-full: 50px;
    --shadow-soft: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-text: 0 2px 4px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

.hero-stats {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap;
}

.stat {
    text-align: center;
    min-width: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-divider {
    display: none;
}

/* ===== MODERN HERO SECTION ===== */
.hero-modern {
    background: url('/static/assets/hero.jpeg') center 40% / cover no-repeat;
    min-height: 95vh;
    padding: 180px 0 100px;

    position: relative;
}

.hero-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* .hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
} */

/* Animated Background Elements */
.hero-bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.float-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(38, 208, 206, 0.1));
    filter: blur(40px);
    animation: float 15s infinite ease-in-out;
}

.float-element.el-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.float-element.el-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: 10%;
    animation-delay: 5s;
}

.float-element.el-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 20%;
    animation-delay: 10s;
}

.float-element.el-4 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 15%;
    animation-delay: 7s;
}

@keyframes orbit {
    0% {
        transform: rotate(0deg) translateX(50px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(50px) rotate(-360deg);
    }
}

.floating-card {
    animation: orbit 20s linear infinite;
    transform-origin: center center;
}

/* Hero Content */
.hero-content {
    padding-top: 20px;
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 1.2rem 1.2rem;
    margin: 3rem 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-white);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-white);
    animation: fadeInDown 0.8s ease-out;
}

.hero-gradient-text {
    color: var(--text-white);
}

.vision {
    color: var(--text-white);
}

.hero-highlight {
    color: var(--text-white);
    position: relative;
    display: inline-block;
}

/* .hero-highlight::after {
    
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #84bcdd, transparent);
    opacity: 0.4;
    z-index: -1;
    border-radius: 4px;
} */

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.text-underline {
    position: relative;
    display: inline-block;
}

.text-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #26d0ce;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.text-underline:hover::after {
    transform: scaleX(1);
}

/* Stats Bar */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: fit-content;
}

.stat {
    text-align: center;
    min-width: 80px;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.3rem;
}

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

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-align: center;
    min-width: 250px;
}

.btn-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.btn-main-text {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

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

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

.primary-btn {
    background: #5a92b2;
    color: white;
    border: none;

}

.primary-btn:hover {
    transform: translateY(-5px);

}

.secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}

.btn-subtext {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 0.1rem;
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.wheel {
    width: 4px;
    height: 10px;
    /* background: #FF6B35; */
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

@keyframes bounce {

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

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

/* Hero Visual/Image */
.hero-visual {
    position: relative;
    z-index: 3;
}

.hero-image-container {
    position: relative;
    perspective: 1000px;
}

.hero-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(9, 183, 227, 0.547), rgb(135, 212, 226));
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

/* Floating Cards Positioning */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: float-card 6s ease-in-out infinite;
    z-index: 5;
    text-align: center;
}

.floating-card i {
    font-size: 1.8rem;
    color: #84bcdd;
}

.floating-card span {
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Card 1: Mobile-First */
.card-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

/* Card 2: Seamless Integration */
.card-2 {
    top: 65%;
    left: 8%;
    animation-delay: 1s;
    background: rgba(38, 208, 206, 0.15);
    border-color: rgba(38, 208, 206, 0.3);
}

/* Card 3: Secure */
.card-3 {
    top: 25%;
    right: 8%;
    animation-delay: 2s;
    background: rgba(138, 43, 226, 0.15);
    border-color: rgba(138, 43, 226, 0.3);
}

/* Card 4: Cloud Ready */
.card-4 {
    top: 70%;
    right: 5%;
    animation-delay: 3s;
    background: rgba(33, 150, 243, 0.15);
    border-color: rgba(33, 150, 243, 0.3);
}

/* Card 5: User Friendly */
.card-5 {
    top: 45%;
    left: 2%;
    animation-delay: 4s;
    background: rgba(247, 151, 30, 0.15);
    border-color: rgba(247, 151, 30, 0.3);
}

/* Card 6: High Speed */
.card-6 {
    top: 50%;
    right: 2%;
    animation-delay: 5s;
    background: rgba(255, 65, 108, 0.15);
    border-color: rgba(255, 65, 108, 0.3);
}

/* Floating animation */
@keyframes float-card {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-25px) rotate(5deg) scale(1.05);
    }
}

/* Make sure hero image placeholder has enough space */
.hero-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(38, 208, 206, 0.08), rgba(255, 107, 53, 0.08));
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* Responsive adjustments */


/* CTA Section */
.web-cta {
    padding: var(--section-padding-large);
    background: var(--gradient-cta);
    text-align: center;
}

.web-cta h2 {
    color: var(--text-white);
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 900;
}

.web-cta p {
    color: #bbb;
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #84bcdd;
    font-size: 16px;
    margin: 0 10px;
}

.cta-btn.primary {
    background: var(--primary);
    color: var(--text-white);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--primary);
}

.cta-btn.primary:hover {
    background: transparent;
    color: #84bcdd;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(132, 188, 221, 0.3);
}

.cta-btn.secondary:hover {
    background: #84bcdd;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(132, 188, 221, 0.3);
}



@media (max-width: 480px) {
    .floating-card {
        min-width: 80px;
        padding: 0.5rem 0.7rem;
    }

    /* Even more spacing for very small screens */
    .card-1 {
        top: 5%;
        left: 3%;
    }

    .card-2 {
        top: 80%;
        left: 3%;
    }

    .card-3 {
        top: 10%;
        right: 3%;
    }

    .card-4 {
        top: 85%;
        right: 3%;
    }

    .card-5 {
        top: 40%;
        left: 1%;
    }

    .card-6 {
        top: 60%;
        right: 1%;
    }
}

/* Wave Separator */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 4;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
}

.hero-wave path {
    fill: #ffffff;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: var(--section-padding-medium);
    background: var(--bg-light);
}

.services-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2980;
    /* Fix: changed from white to dark blue */
}

.section-subtitle {
    text-align: center;
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    border-top: 5px solid var(--primary);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FF6B35, #26d0ce);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35, #FF8E53);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #26d0ce, #2af598);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #8a2be2, #9370db);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
}

.service-card:nth-child(5) .service-icon {
    background: linear-gradient(135deg, #2196f3, #21cbf3);
}

.service-card:nth-child(6) .service-icon {
    background: linear-gradient(135deg, #f7971e, #ffd200);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a2980;
}

.service-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-note {
    font-size: 0.9rem;
    color: #666;
    background: #f8f9fa;
    padding: 0.8rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 3px solid #26d0ce;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed #eee;
}

.service-features span {
    background: #eef7ff;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #1a2980;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.service-features i {

    font-size: 0.8rem;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.process-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a2980;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #a0a0be;
    color: #302b63;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a2980;
}

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

/* ===== TECHNOLOGY SECTION ===== */
/* ===== TECHNOLOGY SECTION ===== */
.tech-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.tech-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.tech-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a2980;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tech-category {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tech-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #FF6B35, #26d0ce);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-category:hover::before {
    opacity: 1;
}

.tech-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #e2e8f0;
}

.tech-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.8rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.tech-category h3 {
    color: #1a2980;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0;
}

.tech-category h3 i {
    color: #FF6B35;
    font-size: 1.3rem;
}

.tech-count {
    background: #eef7ff;
    color: #1a2980;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    border: 1px solid #dbeafe;
}

.tech-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-category li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.8rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.tech-category li:hover {
    background: white;
    transform: translateX(5px);
    border-color: #dbeafe;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tech-icon {
    font-size: 1.8rem;
    width: 40px;
    text-align: center;
    flex-shrink: 0;
}

/* Specific colors for each technology */
.fa-react {
    color: #61dafb;
}

.fa-vuejs {
    color: #42b883;
}

.fa-angular {
    color: #dd0031;
}

.fa-node-js {
    color: #339933;
}

.fa-python {
    color: #3776ab;
}

.fa-laravel {
    color: #ff2d20;
}

.fa-java {
    color: #007396;
}

.fa-aws {
    color: #ff9900;
}

.fa-microsoft {
    color: #0078d4;
}

.fa-docker {
    color: #2496ed;
}

.custom-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.tech-name {
    flex: 1;
    font-weight: 600;
    color: #334155;
    font-size: 1rem;
}

.tech-level {
    background: linear-gradient(135deg, #26d0ce, #1a2980);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Adjust level colors based on expertise */
.tech-category li:nth-child(1) .tech-level {
    background: linear-gradient(135deg, #10b981, #059669);
}

/* Expert */
.tech-category li:nth-child(2) .tech-level {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

/* Advanced */
.tech-category li:nth-child(3) .tech-level {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Intermediate */
.tech-category li:nth-child(4) .tech-level {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

/* Beginner */

/* Responsive Design */

@media (max-width: 1100px) {
    .tech-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 5rem 0;
    background: #f9fafc;
}

.faq-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a2980;
}

.faq-list {
    margin-top: 2rem;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a2980;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #84bcdd;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
    text-align: center;
    padding: 6rem 1rem;
    background: linear-gradient(110deg, #2c7bac96 20%, #84bcdd 100%);
    color: white;
}

.final-cta .container {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    color: black;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-primary {
    background: #123e58;
    color: white;
    border: 2px solid #84bcdd;
}

.btn-primary:hover {
    background: #84bcdd;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-large {
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
}

.cta-note {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Responsive Design */



/* Container for all sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Text Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* CTA Section */
.web-cta {
    padding: var(--section-padding-large);
    background: var(--gradient-cta);
    text-align: center;
}

.web-cta h2 {
    color: var(--text-white);
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 900;
}

.web-cta p {
    color: #ffffff;
    opacity: 0.9;
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #84bcdd;
    font-size: 16px;
    margin: 0 10px;
}

.cta-btn.primary {
    background: var(--primary);
    color: var(--text-white);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--primary);
}

.cta-btn.primary:hover {
    background: transparent;
    color: #84bcdd;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(132, 188, 221, 0.3);
}

.cta-btn.secondary:hover {
    background: #84bcdd;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(132, 188, 221, 0.3);
}

@media (max-width: 768px) {
    .hero-modern {
        background: url('/static/assets/Snapchat-1933929992.jpeg') no-repeat center 40%;
        background-size: cover;
        min-height: 95vh;
        padding: 180px 0 100px;
        text-align: center;
        position: relative;
    }

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

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

    .hero-stats {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        margin: 1.5rem auto;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .hero-btn {
        min-width: fit-content;
        max-width: 90%;
        margin: 0 auto;
        padding: 1.2rem 2rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-image-placeholder {
        height: 300px;
    }

    /* Reposition cards for mobile */
    .floating-card {
        min-width: 90px;
        padding: 0.6rem 0.8rem;
    }

    .card-1 {
        top: 10%;
        left: 5%;
    }

    .card-2 {
        top: 75%;
        left: 5%;
    }

    .card-3 {
        top: 15%;
        right: 5%;
    }

    .card-4 {
        top: 80%;
        right: 5%;
    }

    .card-5 {
        top: 45%;
        left: 2%;
    }

    .card-6 {
        top: 55%;
        right: 2%;
    }

    .floating-card i {
        font-size: 1.3rem;
    }

    .floating-card span {
        font-size: 0.75rem;
        white-space: normal;
        line-height: 1.1;
    }

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

    .tech-section h2 {
        font-size: 2.3rem;
    }

    .tech-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tech-category {
        padding: 1.5rem;
    }

    .tech-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .tech-count {
        align-self: flex-start;
    }

    .tech-category li {
        padding: 0.8rem;
    }

    .tech-icon {
        font-size: 1.5rem;
        width: 35px;
    }

    .custom-icon {
        width: 28px;
        height: 28px;
    }

    .tech-name {
        font-size: 0.95rem;
    }

    .tech-level {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .btn-large {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }

    .web-cta h2 {
        font-size: 36px;
    }

    .cta-btn {
        display: block;
        margin: 15px auto;
        width: 90%;
        max-width: 300px;
    }
}