@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

:root {
    --primary-dark: #0a0e27;
    --primary-light: #1a1f3a;
    --primary-blue: #1e40af;
    --accent-orange: #ff6b35;
    --accent-cyan: #ff6b35;
    --accent-purple: #b624ff;
    --text-light: #f0f3ff;
    --text-secondary: #a8adc7;
    --text-dark: #1a1f3a;
    --bg-glass: rgba(255, 255, 255, 0.08);
    --border-glass: rgba(255, 255, 255, 0.15);
    --transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--primary-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: none;
    padding: 15px 0;
    box-shadow: none;
    transition: all 0.3s ease;
}

@keyframes slideDownHeader {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 80px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-bg {
    width: 250px;
    height: 120px;
    background-image: url('../sol-bg-2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    transition: all 0.3s ease;
}

.logo-bg:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--accent-cyan);
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.45);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffcba4, var(--accent-orange));
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 14, 39, 0.98);
    border: 1px solid var(--accent-cyan);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    min-width: 240px;
    padding: 15px 0;
    margin-top: 10px;
    animation: slideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.18);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 12px 25px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.dropdown-content a:hover {
    background: rgba(255, 107, 53, 0.06);
    color: var(--accent-cyan);
    border-left-color: var(--accent-cyan);
    padding-left: 30px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-cyan);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    margin-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    --hero-x: 0px;
    --hero-y: 0px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 0%, rgba(30, 64, 175, 0.1) 0%, transparent 60%);
    animation: gradientShift 15s ease-in-out infinite;
    transform: translateY(var(--hero-y, 0px));
    will-change: transform;
    transition: transform 0.12s linear;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
    animation: fadeInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-orange) 50%, var(--text-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    padding-bottom: 0.2em;
    letter-spacing: -2px;
    animation: slideInDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
}

.hero .highlight {
    color: var(--accent-cyan);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s both;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 16px 40px;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange), #ff8a55);
    color: white;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.7);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-orange);
    color: var(--accent-orange);
}

.btn-secondary:hover {
    background: rgba(255, 107, 53, 0.06);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.18);
    border-color: #ff9e7d;
    color: #ff9e7d;
    transform: translateY(-3px);
}

/* ===== FLOATING ORBS ===== */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-50px);
    }
}

/* ===== SECTIONS ===== */
.services-section {
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
    background: var(--primary-dark);
}

.services-section.dark {
    background: var(--primary-dark);
}

.services-section.light {
    background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 0.2em;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 0.2em;
}

/* ===== SWIPE SERVICE CARDS (Horizontal Scroll) ===== */
.services-scroll-wrapper {
    position: relative;
    margin: 0 -40px;
    padding: 20px 0;
}

/* Fade edges */
.scroll-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 10;
    pointer-events: none;
}

.scroll-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--primary-dark) 0%, transparent 100%);
}

.scroll-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--primary-dark) 0%, transparent 100%);
}

/* Horizontal scroll container */
.services-scroll {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 30px 60px;
    -webkit-overflow-scrolling: touch;
}

.services-scroll::-webkit-scrollbar {
    display: none;
}

.services-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Service Card */
.service-card {
    flex: 0 0 320px;
    min-height: 380px;
    padding: 35px 30px;
    background: linear-gradient(145deg, rgba(26, 31, 58, 0.9), rgba(10, 14, 39, 0.95));
    border: 1px solid rgba(255, 107, 53, 0.12);
    border-radius: 24px;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    scroll-snap-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 107, 53, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Animated blob background */
.card-blob {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    filter: blur(40px);
    transition: all 0.6s ease;
    pointer-events: none;
}

.service-card:hover .card-blob {
    transform: scale(1.5) translate(-20px, 20px);
    background: radial-gradient(circle, rgba(255, 107, 53, 0.25) 0%, transparent 70%);
}

/* Tag badge */
.card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-orange);
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    z-index: 2;
}

.service-card:hover .card-tag {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

/* Card icon */
.card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-cyan);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(30, 64, 175, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 18px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .card-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(30, 64, 175, 0.2));
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    color: var(--accent-orange);
}

/* Card title */
.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: #fff;
}

/* Card description */
.service-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    flex-grow: 1;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

/* Explore link */
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-top: auto;
    padding-top: 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.card-link i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.service-card:hover .card-link {
    color: var(--accent-orange);
}

.service-card:hover .card-link i {
    transform: translateX(6px);
}

/* Scroll hint */
.scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.scroll-hint:hover {
    opacity: 1;
}

.scroll-hint-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.scroll-hint-dots {
    display: flex;
    gap: 8px;
}

.scroll-hint-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.scroll-hint-dots span:nth-child(1) { animation: dotPulse 1.5s ease-in-out infinite 0s; }
.scroll-hint-dots span:nth-child(2) { animation: dotPulse 1.5s ease-in-out infinite 0.1s; }
.scroll-hint-dots span:nth-child(3) { animation: dotPulse 1.5s ease-in-out infinite 0.2s; }
.scroll-hint-dots span:nth-child(4) { animation: dotPulse 1.5s ease-in-out infinite 0.3s; }
.scroll-hint-dots span:nth-child(5) { animation: dotPulse 1.5s ease-in-out infinite 0.4s; }
.scroll-hint-dots span:nth-child(6) { animation: dotPulse 1.5s ease-in-out infinite 0.5s; }

@keyframes dotPulse {
    0%, 100% {
        background: rgba(255, 107, 53, 0.3);
        transform: scale(1);
    }
    50% {
        background: var(--accent-orange);
        transform: scale(1.3);
    }
}

/* Focus state for keyboard */
.service-card:focus {
    outline: none;
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 0 3px rgba(255, 107, 53, 0.3);
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-orange), #ff8a55);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    z-index: 999;
}

.scroll-to-top.active {
    opacity: 1;
    pointer-events: all;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 120px 40px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2a4a 50%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 30px;
    animation: fadeInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 0.2em;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 120px 40px;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-track-container {
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
    padding: 10px;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px); /* Desktop: 3 cards */
    min-width: 300px;
    box-sizing: border-box;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.08), rgba(255, 107, 53, 0.05));
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    position: relative;
    text-align: left;
    transition: var(--transition);
    height: auto;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px); /* Tablet: 2 cards */
    }
}
@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%; /* Mobile: 1 card */
    }
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-orange), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.testimonial-card .rating {
    color: var(--accent-orange);
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: block;
}

.testimonial-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active-dot {
    background: var(--accent-orange);
    transform: scale(1.2);
}

.testimonial-author {
    color: var(--accent-cyan);
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-role {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 120px 40px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-glass);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.gradient-heading {
    font-weight: 800;
    background: linear-gradient(90deg, #ffcba4 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 0.2em;
    background-clip: text;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #ffcba4 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 0.2em;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-secondary);
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer {
    background: var(--primary-dark);
    border-top: 2px solid var(--accent-cyan);
    padding: 80px 40px 30px;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--accent-orange), #ffcba4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 0.2em;
    background-clip: text;
    font-weight: 700;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--accent-cyan);
    padding-left: 8px;
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.3);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 107, 53, 0.08);
    border: 2px solid var(--accent-orange);
    border-radius: 50%;
    color: var(--accent-orange);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
    font-size: 1rem;
}

.social-icon i {
    font-size: 1.2rem;
}

.social-icon:hover {
    background: var(--accent-orange);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    border-color: var(--accent-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-glass);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--accent-orange);
    text-decoration: underline;
}

/* ===== PAGE HEADER ===== */
.page-header {
    margin-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    padding: 60px 40px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 0%, rgba(30, 64, 175, 0.1) 0%, transparent 60%);
    animation: gradientShift 15s ease-in-out infinite;
    transform: translateY(var(--hero-y, 0px));
    will-change: transform;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

.page-header h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-orange) 50%, var(--text-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    padding-bottom: 0.2em;
    letter-spacing: -2px;
    animation: slideInDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.page-header p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.8;
    animation: fadeInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
}

/* ===== SCROLL ANIMATIONS ===== */
[data-animate] {
    opacity: 0;
    animation: none;
}

[data-animate].in-view {
    animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

[data-animate="slide-up"].in-view {
    animation: slideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

[data-animate="slide-left"].in-view {
    animation: slideLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

[data-animate="slide-right"].in-view {
    animation: slideRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* ===== MEDIA & INTERACTIVE ELEMENTS ===== */
.media-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
}

.media-container video,
.media-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.feature-item {
    padding: 40px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(255, 107, 53, 0.04));
    border: 1px solid rgba(255, 107, 53, 0.18);
    border-radius: 16px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.12);
}

.feature-item-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent-cyan);
    min-height: 60px;
    display: flex;
    align-items: center;
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== UTILITY CLASSES ===== */
.text-white {
    color: white !important;
}

.text-center {
    text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }

    .nav-menu {
        gap: 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .services-section {
        padding: 80px 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* Mobile swipe cards */
    .services-scroll-wrapper {
        margin: 0 -20px;
    }

    .services-scroll {
        padding: 20px 30px;
        gap: 20px;
    }

    .service-card {
        flex: 0 0 280px;
        min-height: 340px;
        padding: 28px 24px;
    }

    .card-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .scroll-fade {
        width: 40px;
    }

    .scroll-hint-text {
        font-size: 0.75rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        gap: 10px;
        border-bottom: 1px solid var(--border-glass);
    }

    .nav-menu.active {
        display: flex;
    }

    .dropdown-content {
        position: static;
        background: transparent;
        border: none;
        backdrop-filter: none;
        padding: 10px 0 10px 20px;
        margin: 0;
        box-shadow: none;
        display: none;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .stats-grid {
        gap: 30px;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .footer-content {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero-content {
        padding: 0 20px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }

    .page-header {
        min-height: 40vh;
        padding: 40px 20px;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }
}

/* ===== LOGO GRID ===== */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
    padding: 40px 0;
    margin-top: 20px;
}

@media (max-width: 1024px) {
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: all 0.3s ease;
    text-align: center;
    color: var(--text-light);
    width: 100%;
}

.logo-item:hover {
    opacity: 1;
    transform: translateY(-5px);
    color: var(--accent-orange);
}

.logo-item i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.logo-item span {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Text-based Logos */
.logo-text {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 800;
    font-size: 1.6rem !important;
}


/* Innovation Grid Styles */
.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    padding: 30px 0;
}

.inn-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
}

.inn-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-orange), var(--accent-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.inn-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.inn-card:hover::before {
    opacity: 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.card-icon {
    font-size: 2rem;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    transition: all 0.4s ease;
}

.inn-card:hover .card-icon {
    background: var(--accent-orange);
    color: #fff;
    transform: rotateY(180deg);
}

.tech-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.inn-card:hover .tech-badge {
    background: rgba(255, 107, 53, 0.15);
    color: var(--accent-orange);
    border-color: var(--accent-orange);
}

.inn-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-light);
    font-weight: 700;
}

.inn-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Feature the first card in the grid layout */
@media (min-width: 992px) {
    .inn-card.main-feature {
        grid-column: span 2;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(20, 25, 50, 0.6) 100%);
    }
    
    .inn-card.main-feature h3 {
        font-size: 1.8rem;
    }
    
    .inn-card.main-feature p {
        font-size: 1.05rem;
        max-width: 90%;
    }
}

.card-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.inn-card:hover .card-glow {
    opacity: 1;
}


/* Roadmap Section Styles */
.roadmap-container {
    padding: 60px 0;
    margin-bottom: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.roadmap-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
}

.roadmap-intro {
    flex: 1;
    min-width: 300px;
    position: sticky;
    top: 100px;
}

.roadmap-intro h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    padding-bottom: 0.2em;
    -webkit-text-fill-color: transparent;
}

.roadmap-intro p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.roadmap-timeline {
    flex: 1.5;
    min-width: 300px;
    position: relative;
    padding-left: 30px;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 20px;
    width: 3px;
    background: linear-gradient(180deg, 
        var(--accent-orange) 0%, 
        var(--accent-purple) 50%, 
        var(--accent-cyan) 100%);
    border-radius: 3px;
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    padding-bottom: 50px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -39px; /* -30px padding - 9px center adjustments */
    top: 5px;
    width: 20px;
    height: 20px;
    background: var(--primary-dark);
    border: 3px solid var(--accent-orange);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.2);
}

.timeline-item:nth-child(2n) .timeline-marker {
    border-color: var(--accent-purple);
    box-shadow: 0 0 10px rgba(182, 36, 255, 0.2);
}

.timeline-item:nth-child(3n) .timeline-marker {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.2);
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.3);
    background: #fff;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .roadmap-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .roadmap-intro {
        position: static;
        width: 100%;
    }
    
    .roadmap-timeline {
        width: 100%;
        padding-left: 20px;
    }
    
    .timeline-marker {
        left: -29px;
    }
}

.logo-item img {
    filter: grayscale(100%) brightness(500%) contrast(0%);
    width: 60px;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
    margin-bottom: 10px;
}

.logo-item:hover img {
    filter: none;
    transform: scale(1.1);
}

/* ============================================================
   COMPREHENSIVE RESPONSIVE ADDITIONS
   Breakpoints: 1024px (tablet), 768px (mobile), 480px (small)
   ============================================================ */

/* ----- NAVBAR LOGO SIZE ----- */
@media (max-width: 768px) {
    .logo-bg {
        width: 170px;
        height: 82px;
    }
}

@media (max-width: 480px) {
    .logo-bg {
        width: 140px;
        height: 68px;
    }
}

/* ----- STATS SECTION PADDING ----- */
@media (max-width: 768px) {
    .stats-section {
        padding: 70px 20px;
    }
    .stat-item {
        padding: 20px;
    }
    .stat-item h3 {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 50px 16px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .stat-item h3 {
        font-size: 2.2rem;
    }
    .stat-item p {
        font-size: 0.95rem;
    }
}

/* ----- TESTIMONIALS SECTION PADDING ----- */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 70px 20px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 50px 16px;
    }
    .testimonial-card {
        padding: 28px 20px;
    }
}

/* ----- CTA SECTION ----- */
@media (max-width: 768px) {
    .cta-section {
        padding: 70px 24px;
    }
    .cta-section h2 {
        font-size: 2rem;
    }
    .cta-section p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 50px 16px;
    }
    .cta-section h2 {
        font-size: 1.6rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
    }
}

/* ----- FOOTER PADDING & COLUMNS ----- */
@media (max-width: 768px) {
    footer {
        padding: 60px 20px 24px;
        margin-top: 60px;
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    .footer-bottom {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 48px 16px 20px;
        margin-top: 40px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .social-links {
        flex-wrap: wrap;
    }
}

/* ----- SERVICES SECTION — extra small ----- */
@media (max-width: 480px) {
    .services-section {
        padding: 50px 16px;
    }
    .section-header {
        margin-bottom: 30px;
    }
    .section-header p {
        font-size: 0.95rem;
    }
    .btn {
        font-size: 0.9rem;
        padding: 12px 24px;
    }
}

/* ----- INNOVATION / INN-CARD GRID ----- */
@media (max-width: 768px) {
    .innovation-grid {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .innovation-grid {
        grid-template-columns: 1fr !important;
    }
    .inn-card {
        padding: 24px 20px;
    }
    .inn-card.main-feature {
        grid-column: span 1 !important;
    }
}

/* ----- ROADMAP / TIMELINE EXTRA SMALL ----- */
@media (max-width: 480px) {
    .timeline-item {
        padding-left: 16px;
    }
}

/* ----- ABOUT PAGE GRIDS ----- */
@media (max-width: 768px) {
    .about-grid,
    .values-grid,
    .team-grid,
    .location-grid,
    .hub-grid,
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ----- CAREERS PAGE ----- */
@media (max-width: 768px) {
    .jobs-grid,
    .job-grid,
    .positions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ----- CONTACT / RFP FORMS ----- */
@media (max-width: 768px) {
    .contact-grid,
    .form-row,
    .form-two-col {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 20px;
    }
}

/* ----- DETAIL / BENEFIT / FEATURE GRIDS (service & consulting pages) ----- */
@media (max-width: 768px) {
    .detail-grid,
    .benefit-grid,
    .process-grid,
    .tech-grid,
    .feature-grid,
    .approach-grid,
    .outcomes-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .detail-card,
    .benefit-card,
    .process-card,
    .tech-card,
    .feature-card {
        padding: 24px 20px;
    }
}

/* ----- PAGE HEADER VERTICAL CENTERING FIX ----- */
@media (max-width: 768px) {
    .page-header {
        margin-top: 72px;
    }
}

/* ----- FAQ SECTION ----- */
@media (max-width: 768px) {
    .faq-grid,
    .faq-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ----- GENERAL SECTION PADDING TABLET ----- */
@media (max-width: 1024px) {
    .stats-section,
    .testimonials-section,
    .cta-section {
        padding-left: 32px;
        padding-right: 32px;
    }
    footer {
        padding-left: 32px;
        padding-right: 32px;
    }
}

/* ============================================================
   PAGE-SPECIFIC INLINE-GRID OVERRIDES
   (consulting + careers pages — classes override inline styles)
   ============================================================ */

/* ----- CONSULTING: INTRO 2-COL (1fr 1fr → 1fr) ----- */
@media (max-width: 1024px) {
    .consulting-intro-grid {
        gap: 50px !important;
    }
}

@media (max-width: 768px) {
    .consulting-intro-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

/* ----- CONSULTING: PROCESS ROWS (70px 1fr auto → 60px 1fr → 1fr) ----- */
@media (max-width: 1024px) {
    .process-rows-container > div {
        gap: 28px !important;
    }
    .process-rows-container > div > div:last-child {
        min-width: 150px !important;
    }
}

@media (max-width: 768px) {
    .process-rows-container > div {
        grid-template-columns: 56px 1fr !important;
        gap: 16px !important;
        padding: 28px 16px !important;
    }
    .process-rows-container > div > div:last-child {
        grid-column: 2 / 3;
        min-width: unset !important;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .process-rows-container > div {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        padding: 24px 12px !important;
    }
    .process-rows-container > div > div:first-child {
        font-size: 2rem !important;
    }
}

/* ----- CONSULTING: PHASE BOARD (3-col → 1-col; remove rtl) ----- */
@media (max-width: 768px) {
    .phase-board > div:first-child,
    .phase-board > div:nth-child(3) {
        grid-template-columns: 1fr !important;
        direction: ltr !important;
    }
}

/* ----- CAREERS: CULTURE SPLIT (1fr 1fr → 1fr) ----- */
@media (max-width: 768px) {
    .culture-split-grid {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
    }
}
