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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navigation Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* Logo Styles */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.logo-icon i {
    color: white;
    font-size: 18px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transition: left 0.3s ease;
    z-index: -1;
    border-radius: 8px;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.nav-link i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.nav-link:hover i {
    transform: scale(1.1);
}

.nav-link span {
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Active State */
.nav-link.active {
    color: white;
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Mobile Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.hamburger:hover {
    background-color: rgba(102, 126, 234, 0.1);
}

.bar {
    width: 25px;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 70px;
    overflow: hidden;
}

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

.hero-bg-shapes::before,
.hero-bg-shapes::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: 1;
}
.hero-bg-shapes::before {
    width: 400px; height: 400px;
    left: -120px; top: -100px;
    background: linear-gradient(135deg, #667eea 60%, #764ba2 100%);
    animation: float1 8s ease-in-out infinite alternate;
}
.hero-bg-shapes::after {
    width: 300px; height: 300px;
    right: -100px; bottom: -80px;
    background: linear-gradient(135deg, #764ba2 60%, #667eea 100%);
    animation: float2 10s ease-in-out infinite alternate;
}

@keyframes float1 {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(40px) scale(1.1); }
}
@keyframes float2 {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-30px) scale(1.05); }
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    position: relative;
    z-index: 2;
    gap: 2.5rem;
}

.hero-left {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
}

.hero-right {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-ai-animation {
    width: 340px;
    max-width: 100%;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: fadeInUp 1.2s cubic-bezier(.23,1.01,.32,1) 0.4s both;
}

.ai-svg {
    width: 320px;
    height: 320px;
    display: block;
}

/* Animate the circuit lines and nodes */
.ai-circuit circle,
.ai-circuit line {
    opacity: 0;
    transform: scale(0.8);
    transform-origin: center;
    animation: aiAppear 1.2s cubic-bezier(.23,1.01,.32,1) forwards;
}
.ai-circuit circle:nth-child(1) { animation-delay: 0.2s; }
.ai-circuit circle:nth-child(2) { animation-delay: 0.3s; }
.ai-circuit circle:nth-child(3) { animation-delay: 0.4s; }
.ai-circuit .ai-nodes circle { animation-delay: 0.6s; }
.ai-circuit .ai-lines line { animation-delay: 0.8s; }

@keyframes aiAppear {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

/* Pulse animation for the central node */
.ai-circuit circle[cx="160"][cy="160"][r="10"] {
    animation: aiPulse 1.5s infinite alternate, aiAppear 1.2s cubic-bezier(.23,1.01,.32,1) 0.4s forwards;
    opacity: 1 !important;
}
@keyframes aiPulse {
    0% { filter: drop-shadow(0 0 0px #764ba2); }
    100% { filter: drop-shadow(0 0 16px #764ba2); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 1rem 3rem 1rem;
    background: rgba(30, 34, 90, 0.15);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.10);
    backdrop-filter: blur(2px);
    animation: fadeInUp 1s cubic-bezier(.23,1.01,.32,1) 0.2s both;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
    line-height: 1.1;
    background: linear-gradient(90deg, #667eea 40%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 32px rgba(102, 126, 234, 0.10);
}

.hero-content p {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 2.2rem;
    color: #f3f3f3;
    text-shadow: 0 2px 8px rgba(102, 126, 234, 0.10);
}

.cta-btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #667eea 60%, #764ba2 100%);
    border: none;
    border-radius: 32px;
    box-shadow: 0 4px 24px rgba(102, 126, 234, 0.18);
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.cta-btn:hover, .cta-btn:focus {
    background: linear-gradient(90deg, #764ba2 60%, #667eea 100%);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        width: 80%;
        justify-content: center;
        margin: 0 auto;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-content h1 {
        font-size: 2.1rem;
    }
    
    .hero-content {
        padding: 1.5rem 0.5rem 2rem 0.5rem;
    }
    
    .hero-bg-shapes::before {
        width: 250px; height: 250px;
        left: -60px; top: -60px;
    }
    .hero-bg-shapes::after {
        width: 180px; height: 180px;
        right: -50px; bottom: -40px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 20px;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .hero-content h1 {
        font-size: 1.3rem;
    }
    .hero-content {
        padding: 1rem 0.2rem 1.5rem 0.2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-menu {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover effects for better UX */
.nav-item {
    transition: transform 0.3s ease;
}

.nav-item:hover {
    transform: translateY(-2px);
}

/* Glass morphism effect */
.navbar {
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-inner {
        flex-direction: column;
        gap: 1.5rem;
        height: auto;
    }
    .hero-left, .hero-right {
        align-items: center;
        text-align: center;
        justify-content: center;
        width: 100%;
    }
    .hero-ai-animation {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
}
@media (max-width: 600px) {
    .hero-ai-animation {
        width: 220px;
        height: 220px;
    }
    .ai-svg {
        width: 200px;
        height: 200px;
    }
}

/* --- DARK MODE MINIMALIST NAVBAR --- */
.dark-navbar {
    background: rgba(24, 26, 42, 0.85);
    box-shadow: 0 2px 24px 0 rgba(0,0,0,0.25);
    border-bottom: 1px solid rgba(0,255,255,0.04);
    backdrop-filter: blur(12px);
    transition: background 0.3s, box-shadow 0.3s;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.minimal-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.minimal-logo svg {
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 12px 0 rgba(0,255,255,0.10);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #fff;
    background: linear-gradient(90deg, #00F0FF 30%, #7F5CFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.minimal-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.minimal-menu .nav-item {
    margin: 0 0.25rem;
}

.minimal-menu .nav-link {
    color: #e0e6f7;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 24px;
    text-decoration: none;
    transition: color 0.2s, background 0.2s, box-shadow 0.2s;
    position: relative;
    letter-spacing: 0.2px;
    background: none;
    box-shadow: none;
}

.minimal-menu .nav-link:hover, .minimal-menu .nav-link.active {
    color: #00F0FF;
    background: rgba(0,240,255,0.08);
    box-shadow: 0 2px 12px 0 rgba(0,255,255,0.10);
}

.hamburger .bar {
    background: linear-gradient(90deg, #00F0FF 30%, #7F5CFF 100%);
}

/* --- DARK HERO SECTION --- */
.dark-hero {
    background: linear-gradient(120deg, #181A2A 60%, #23244D 100%);
    min-height: 100vh;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes::before,
.hero-bg-shapes::after {
    opacity: 0.18;
    filter: blur(80px);
}
.hero-bg-shapes::before {
    background: linear-gradient(135deg, #00F0FF 60%, #7F5CFF 100%);
}
.hero-bg-shapes::after {
    background: linear-gradient(135deg, #7F5CFF 60%, #00F0FF 100%);
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    position: relative;
    z-index: 2;
    gap: 2.5rem;
}

.hero-left {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    background: rgba(24,26,42,0.7);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 32px 0 rgba(0,255,255,0.04);
    backdrop-filter: blur(2px);
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
    line-height: 1.1;
    background: linear-gradient(90deg, #00F0FF 40%, #7F5CFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 32px rgba(0,255,255,0.10);
}

.hero-content p {
    font-size: 1.15rem;
    font-weight: 400;
    opacity: 0.92;
    margin-bottom: 2.2rem;
    color: #e0e6f7;
    text-shadow: 0 2px 8px rgba(0,255,255,0.10);
}

.neon-btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #181A2A;
    background: linear-gradient(90deg, #00F0FF 60%, #7F5CFF 100%);
    border: none;
    border-radius: 32px;
    box-shadow: 0 0 16px 0 #00F0FF, 0 4px 24px rgba(0,255,255,0.10);
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background 0.3s, color 0.2s, transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.neon-btn:hover, .neon-btn:focus {
    background: linear-gradient(90deg, #7F5CFF 60%, #00F0FF 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 0 32px 0 #7F5CFF, 0 8px 32px rgba(127,92,255,0.18);
}

.hero-ai-animation {
    width: 340px;
    max-width: 100%;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: fadeInUp 1.2s cubic-bezier(.23,1.01,.32,1) 0.4s both;
}

.ai-svg {
    width: 320px;
    height: 320px;
    display: block;
    filter: drop-shadow(0 0 16px #00F0FF) drop-shadow(0 0 32px #7F5CFF);
}

/* Animate the circuit lines and nodes */
.ai-circuit circle,
.ai-circuit line {
    opacity: 0;
    transform: scale(0.8);
    transform-origin: center;
    animation: aiAppear 1.2s cubic-bezier(.23,1.01,.32,1) forwards;
}
.ai-circuit circle:nth-child(1) { animation-delay: 0.2s; }
.ai-circuit circle:nth-child(2) { animation-delay: 0.3s; }
.ai-circuit circle:nth-child(3) { animation-delay: 0.4s; }
.ai-circuit .ai-nodes circle { animation-delay: 0.6s; }
.ai-circuit .ai-lines line { animation-delay: 0.8s; }

@keyframes aiAppear {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

/* Pulse animation for the central node */
.ai-circuit circle[cx="160"][cy="160"][r="10"] {
    animation: aiPulse 1.5s infinite alternate, aiAppear 1.2s cubic-bezier(.23,1.01,.32,1) 0.4s forwards;
    opacity: 1 !important;
}
@keyframes aiPulse {
    0% { filter: drop-shadow(0 0 0px #7F5CFF); }
    100% { filter: drop-shadow(0 0 16px #00F0FF); }
}

/* Rotating animation for AI SVG main circle and circuit */
@keyframes aiRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Apply rotation to the main circuit group */
.ai-svg .ai-circuit {
    transform-origin: 160px 160px;
    animation: aiRotate 8s linear infinite;
}

/* Optionally, rotate the outer glow circle more slowly for depth */
.ai-svg > circle {
    transform-origin: 160px 160px;
    animation: aiRotate 18s linear infinite;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-inner {
        flex-direction: column;
        gap: 1.5rem;
        height: auto;
    }
    .hero-left, .hero-right {
        align-items: center;
        text-align: center;
        justify-content: center;
        width: 100%;
    }
    .hero-left {
        padding: 2rem 1rem;
    }
    .hero-ai-animation {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
}
@media (max-width: 600px) {
    .hero-ai-animation {
        width: 220px;
        height: 220px;
    }
    .ai-svg {
        width: 200px;
        height: 200px;
    }
    .hero-left {
        padding: 1.2rem 0.5rem;
    }
    .logo-text {
        font-size: 1.1rem;
    }
}

/* --- ABOUT SECTION --- */
.about-section.dark-about {
    background: linear-gradient(120deg, #181A2A 60%, #23244D 100%);
    color: #e0e6f7;
    padding: 0 0 80px 0;
    position: relative;
    z-index: 1;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 60px 2rem 0 2rem;
    flex-wrap: wrap;
}

.about-content {
    flex: 1 1 340px;
    min-width: 280px;
    padding: 2.5rem 1rem 2.5rem 0;
}

.about-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    background: linear-gradient(90deg, #00F0FF 40%, #7F5CFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.about-content p {
    font-size: 1.1rem;
    opacity: 0.92;
    margin-bottom: 1.5rem;
    color: #e0e6f7;
    line-height: 1.7;
}

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

.about-list li {
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #b6c3e6;
}

.about-icon {
    font-size: 1.3rem;
    color: #00F0FF;
    filter: drop-shadow(0 0 6px #00F0FF88);
}

.about-visual {
    flex: 1 1 220px;
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.about-svg {
    width: 220px;
    height: 220px;
    display: block;
    filter: drop-shadow(0 0 16px #00F0FF) drop-shadow(0 0 32px #7F5CFF);
}

@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        gap: 2rem;
        padding: 40px 1rem 0 1rem;
    }
    .about-content, .about-visual {
        padding: 1.5rem 0;
        min-width: 0;
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}
@media (max-width: 600px) {
    .about-svg {
        width: 140px;
        height: 140px;
    }
    .about-content h2 {
        font-size: 1.3rem;
    }
}

/* --- SERVICES SECTION --- */
.services-section.dark-services {
    background: linear-gradient(120deg, #181A2A 60%, #23244D 100%);
    color: #e0e6f7;
    padding: 0 0 80px 0;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

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

.services-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    background: linear-gradient(90deg, #00F0FF 40%, #7F5CFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    text-align: center;
}

.services-intro {
    font-size: 1.15rem;
    opacity: 0.92;
    margin-bottom: 2.5rem;
    color: #e0e6f7;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: rgba(24,26,42,0.85);
    border-radius: 20px;
    box-shadow: 0 4px 32px 0 rgba(0,255,255,0.04);
    padding: 2.2rem 1.5rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1.5px solid rgba(0,240,255,0.06);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 0 32px 0 #00F0FF, 0 8px 32px rgba(127,92,255,0.10);
    border-color: #00F0FF;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.1rem;
    color: #00F0FF;
    filter: drop-shadow(0 0 8px #00F0FF88);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: #fff;
    letter-spacing: 0.1px;
    text-align: center;
}

.service-card p {
    font-size: 1.05rem;
    color: #b6c3e6;
    text-align: center;
    opacity: 0.92;
}

@media (max-width: 900px) {
    .services-container {
        padding: 40px 1rem 0 1rem;
    }
    .services-grid {
        gap: 1.2rem;
    }
}
@media (max-width: 600px) {
    .services-section h2 {
        font-size: 1.3rem;
    }
    .service-card {
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    }
    .service-icon {
        font-size: 1.6rem;
    }
}

/* --- PORTFOLIO SECTION --- */
.portfolio-section.dark-portfolio {
    background: linear-gradient(120deg, #181A2A 60%, #23244D 100%);
    color: #e0e6f7;
    padding: 0 0 80px 0;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 2rem 0 2rem;
}

.portfolio-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    background: linear-gradient(90deg, #00F0FF 40%, #7F5CFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    text-align: center;
}

.portfolio-intro {
    font-size: 1.15rem;
    opacity: 0.92;
    margin-bottom: 2.5rem;
    color: #e0e6f7;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.2rem;
    margin-top: 2.5rem;
}

.portfolio-card {
    background: rgba(24,26,42,0.85);
    border-radius: 20px;
    box-shadow: 0 4px 32px 0 rgba(0,255,255,0.04);
    padding: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1.5px solid rgba(0,240,255,0.06);
    position: relative;
    overflow: hidden;
}

.portfolio-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 0 32px 0 #00F0FF, 0 8px 32px rgba(127,92,255,0.10);
    border-color: #00F0FF;
}

.portfolio-thumb {
    width: 100%;
    height: 0;
    padding-bottom: 60%;
    background: #23244D;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    position: relative;
}

.portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px 20px 0 0;
    border-bottom: 1.5px solid rgba(0,240,255,0.06);
}

.portfolio-info {
    padding: 1.2rem 1.2rem 0 1.2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portfolio-info h3 {
    font-size: 1.18rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
    letter-spacing: 0.1px;
    text-align: center;
}

.portfolio-info p {
    font-size: 1.02rem;
    color: #b6c3e6;
    text-align: center;
    opacity: 0.92;
    margin-bottom: 1.1rem;
}

.portfolio-btn {
    display: inline-block;
    padding: 0.7rem 1.7rem;
    font-size: 1rem;
    font-weight: 600;
    color: #181A2A;
    background: linear-gradient(90deg, #00F0FF 60%, #7F5CFF 100%);
    border: none;
    border-radius: 32px;
    box-shadow: 0 0 16px 0 #00F0FF, 0 4px 24px rgba(0,255,255,0.10);
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background 0.3s, color 0.2s, transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.portfolio-btn:hover, .portfolio-btn:focus {
    background: linear-gradient(90deg, #7F5CFF 60%, #00F0FF 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 0 32px 0 #7F5CFF, 0 8px 32px rgba(127,92,255,0.18);
}

@media (max-width: 900px) {
    .portfolio-container {
        padding: 40px 1rem 0 1rem;
    }
    .portfolio-grid {
        gap: 1.2rem;
    }
}
@media (max-width: 600px) {
    .portfolio-section h2 {
        font-size: 1.3rem;
    }
    .portfolio-card {
        padding: 0 0 0.7rem 0;
    }
    .portfolio-info {
        padding: 0.7rem 0.5rem 0 0.5rem;
    }
}

/* --- ABOUT PAGE NEW SECTIONS --- */
.about-hero {
    background: linear-gradient(120deg, #181A2A 60%, #23244D 100%);
    padding: 80px 0 40px 0;
    text-align: center;
}
.about-hero-inner h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.1rem;
    background: linear-gradient(90deg, #00F0FF 40%, #7F5CFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}
.about-mission {
    font-size: 1.2rem;
    color: #e0e6f7;
    opacity: 0.92;
    max-width: 600px;
    margin: 0 auto;
}

.about-who {
    background: linear-gradient(120deg, #181A2A 60%, #23244D 100%);
    padding: 40px 0 20px 0;
    text-align: center;
}
.about-who-inner {
    max-width: 800px;
    margin: 0 auto;
}
.about-who-inner h2 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #00F0FF 40%, #7F5CFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-who-inner p {
    font-size: 1.08rem;
    color: #b6c3e6;
    margin-bottom: 1.2rem;
}
.about-values {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.about-values li {
    background: rgba(24,26,42,0.85);
    border-radius: 16px;
    padding: 0.7rem 1.3rem;
    color: #e0e6f7;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 2px 12px 0 rgba(0,255,255,0.06);
    border: 1.5px solid rgba(0,240,255,0.06);
}
.about-value-icon {
    font-size: 1.3rem;
    color: #00F0FF;
    filter: drop-shadow(0 0 6px #00F0FF88);
}

.about-team {
    background: linear-gradient(120deg, #181A2A 60%, #23244D 100%);
    padding: 40px 0 20px 0;
    text-align: center;
}
.about-team-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.about-team-inner h2 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #00F0FF 40%, #7F5CFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    justify-content: center;
}
.team-card {
    background: rgba(24,26,42,0.85);
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(0,255,255,0.04);
    padding: 2rem 1rem 1.2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1.5px solid rgba(0,240,255,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.team-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 0 24px 0 #00F0FF, 0 8px 24px rgba(127,92,255,0.10);
    border-color: #00F0FF;
}
.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 2.5px solid #00F0FF;
    box-shadow: 0 0 12px #00F0FF44;
}
.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.team-card h3 {
    font-size: 1.13rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #fff;
    text-align: center;
}
.team-card p {
    font-size: 1.01rem;
    color: #b6c3e6;
    text-align: center;
    opacity: 0.92;
}

.about-why {
    background: linear-gradient(120deg, #181A2A 60%, #23244D 100%);
    padding: 40px 0 60px 0;
    text-align: center;
}
.about-why-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.about-why-inner h2 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #00F0FF 40%, #7F5CFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    justify-content: center;
}
.why-card {
    background: rgba(24,26,42,0.85);
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(0,255,255,0.04);
    padding: 2rem 1rem 1.2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1.5px solid rgba(0,240,255,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 0 24px 0 #00F0FF, 0 8px 24px rgba(127,92,255,0.10);
    border-color: #00F0FF;
}
.why-icon {
    font-size: 2rem;
    margin-bottom: 0.7rem;
    color: #00F0FF;
    filter: drop-shadow(0 0 8px #00F0FF88);
}
.why-card h4 {
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #fff;
    text-align: center;
}
.why-card p {
    font-size: 1.01rem;
    color: #b6c3e6;
    text-align: center;
    opacity: 0.92;
}

@media (max-width: 900px) {
    .about-hero, .about-who, .about-team, .about-why {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .team-grid, .why-grid {
        gap: 1.2rem;
    }
}
@media (max-width: 600px) {
    .about-hero-inner h1, .about-who-inner h2, .about-team-inner h2, .about-why-inner h2 {
        font-size: 1.2rem;
    }
    .team-card, .why-card {
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    }
    .team-avatar {
        width: 56px;
        height: 56px;
    }
    .about-values li {
        font-size: 0.95rem;
        padding: 0.5rem 0.7rem;
    }
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section.dark-testimonials {
    background: linear-gradient(120deg, #181A2A 60%, #23244D 100%);
    color: #e0e6f7;
    padding: 0 0 80px 0;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.testimonials-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 2rem 0 2rem;
}

.testimonials-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    background: linear-gradient(90deg, #00F0FF 40%, #7F5CFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    text-align: center;
}

.testimonials-intro {
    font-size: 1.15rem;
    opacity: 0.92;
    margin-bottom: 2.5rem;
    color: #e0e6f7;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.2rem;
    margin-top: 2.5rem;
}

.testimonial-card {
    background: rgba(24,26,42,0.85);
    border-radius: 20px;
    box-shadow: 0 4px 32px 0 rgba(0,255,255,0.04);
    padding: 2.2rem 1.5rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1.5px solid rgba(0,240,255,0.06);
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 0 32px 0 #00F0FF, 0 8px 32px rgba(127,92,255,0.10);
    border-color: #00F0FF;
}

.testimonial-quote {
    font-size: 1.08rem;
    color: #b6c3e6;
    text-align: center;
    opacity: 0.95;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    padding: 0 0.5rem;
}

.testimonial-quote:before, .testimonial-quote:after {
    content: '"';
    color: #00F0FF;
    font-size: 1.5rem;
    vertical-align: top;
    opacity: 0.7;
}
.testimonial-quote:before {
    margin-right: 0.2rem;
}
.testimonial-quote:after {
    margin-left: 0.2rem;
}

.testimonial-client {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00F0FF;
    box-shadow: 0 0 8px #00F0FF44;
}
.testimonial-name {
    font-size: 1.08rem;
    font-weight: 600;
    color: #fff;
}
.testimonial-role {
    font-size: 0.98rem;
    color: #b6c3e6;
    opacity: 0.85;
}

@media (max-width: 900px) {
    .testimonials-container {
        padding: 40px 1rem 0 1rem;
    }
    .testimonials-grid {
        gap: 1.2rem;
    }
}
@media (max-width: 600px) {
    .testimonials-section h2 {
        font-size: 1.3rem;
    }
    .testimonial-card {
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    }
    .testimonial-avatar {
        width: 36px;
        height: 36px;
    }
}

/* --- FAQS SECTION --- */
.faqs-section.dark-faqs {
    background: linear-gradient(120deg, #181A2A 60%, #23244D 100%);
    color: #e0e6f7;
    padding: 0 0 80px 0;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.faqs-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 2rem 0 2rem;
}

.faqs-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    background: linear-gradient(90deg, #00F0FF 40%, #7F5CFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    text-align: center;
}

.faqs-intro {
    font-size: 1.15rem;
    opacity: 0.92;
    margin-bottom: 2.5rem;
    color: #e0e6f7;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faqs-accordion {
    margin-top: 2.5rem;
}
.faq-item {
    margin-bottom: 1.2rem;
    border-radius: 16px;
    background: rgba(24,26,42,0.85);
    box-shadow: 0 2px 12px 0 rgba(0,255,255,0.06);
    border: 1.5px solid rgba(0,240,255,0.06);
    overflow: hidden;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item:hover {
    box-shadow: 0 0 24px 0 #00F0FF, 0 8px 24px rgba(127,92,255,0.10);
    border-color: #00F0FF;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: #00F0FF;
    font-size: 1.13rem;
    font-weight: 600;
    text-align: left;
    padding: 1.1rem 1.5rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    position: relative;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
}
.faq-question:after {
    content: '\25BC';
    color: #7F5CFF;
    font-size: 1.1rem;
    margin-left: auto;
    transition: transform 0.3s;
}
.faq-question.active:after {
    transform: rotate(180deg);
}
.faq-answer {
    background: none;
    color: #b6c3e6;
    font-size: 1.05rem;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(.23,1.01,.32,1), padding 0.3s;
    padding: 0 1.5rem 0 1.5rem;
}
.faq-answer.open {
    padding: 0 1.5rem 1.1rem 1.5rem;
    max-height: 500px;
    transition: max-height 0.4s cubic-bezier(.23,1.01,.32,1), padding 0.3s;
}

@media (max-width: 900px) {
    .faqs-container {
        padding: 40px 1rem 0 1rem;
    }
}
@media (max-width: 600px) {
    .faqs-section h2 {
        font-size: 1.3rem;
    }
    .faq-question {
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }
    .faq-answer {
        font-size: 0.98rem;
        padding: 0 1rem 0.8rem 1rem;
    }
}

/* --- CONTACT SECTION --- */
.contact-section.dark-contact {
    background: linear-gradient(120deg, #181A2A 60%, #23244D 100%);
    color: #e0e6f7;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-bg-anim {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}
.contact-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.18;
    filter: blur(60px);
    animation-timing-function: ease-in-out;
}
.shape1 {
    width: 420px; height: 420px;
    left: -120px; top: -100px;
    background: linear-gradient(135deg, #00F0FF 60%, #7F5CFF 100%);
    animation: contactFloat1 8s infinite alternate;
}
.shape2 {
    width: 320px; height: 320px;
    right: -100px; bottom: -80px;
    background: linear-gradient(135deg, #7F5CFF 60%, #00F0FF 100%);
    animation: contactFloat2 10s infinite alternate;
}
.shape3 {
    width: 180px; height: 180px;
    left: 50%; top: 60%;
    background: linear-gradient(135deg, #00F0FF 60%, #7F5CFF 100%);
    transform: translate(-50%, -50%);
    animation: contactFloat3 12s infinite alternate;
}
@keyframes contactFloat1 {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(40px) scale(1.1); }
}
@keyframes contactFloat2 {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-30px) scale(1.05); }
}
@keyframes contactFloat3 {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(20px) scale(1.08); }
}

.contact-container {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 60px auto 0 auto;
    background: rgba(24,26,42,0.92);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,255,255,0.10);
    padding: 3.5rem 2.5rem 2.5rem 2.5rem;
    text-align: center;
    backdrop-filter: blur(2px);
    opacity: 0;
    animation: contactFadeInUp 1.1s cubic-bezier(.23,1.01,.32,1) 0.2s forwards;
}
.contact-container h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
    background: linear-gradient(90deg, #00F0FF 40%, #7F5CFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: contactFadeInUp 1s cubic-bezier(.23,1.01,.32,1) 0.5s forwards;
}
.contact-intro {
    font-size: 1.1rem;
    color: #b6c3e6;
    margin-bottom: 2.2rem;
    opacity: 0;
    animation: contactFadeInUp 1s cubic-bezier(.23,1.01,.32,1) 0.7s forwards;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    animation: contactFadeInUp 1s cubic-bezier(.23,1.01,.32,1) 0.9s forwards;
}
.form-group {
    position: relative;
    margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.1rem 1.2rem 0.7rem 1.2rem;
    background: none;
    border: none;
    border-radius: 16px;
    color: #fff;
    font-size: 1.08rem;
    font-family: inherit;
    outline: none;
    box-shadow: 0 2px 12px 0 rgba(0,255,255,0.06);
    border: 2px solid rgba(0,240,255,0.13);
    transition: border 0.3s, box-shadow 0.3s;
    resize: none;
    z-index: 1;
}
.form-group input:focus,
.form-group textarea:focus {
    border: 2px solid #00F0FF;
    box-shadow: 0 0 16px #00F0FF44;
}
.form-group label {
    position: absolute;
    left: 1.2rem;
    top: 1.1rem;
    color: #b6c3e6;
    font-size: 1.08rem;
    pointer-events: none;
    background: none;
    transition: all 0.25s cubic-bezier(.23,1.01,.32,1);
    z-index: 2;
}
.form-group.focused label,
.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.7rem;
    left: 1rem;
    font-size: 0.93rem;
    color: #00F0FF;
    background: #181A2A;
    padding: 0 0.4rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px 0 rgba(0,255,255,0.04);
}
.form-anim-border {
    display: none;
}
.contact-btn {
    margin-top: 0.5rem;
    padding: 0.95rem 2.5rem;
    font-size: 1.13rem;
    font-weight: 700;
    color: #181A2A;
    background: linear-gradient(90deg, #00F0FF 60%, #7F5CFF 100%);
    border: none;
    border-radius: 32px;
    box-shadow: 0 0 16px 0 #00F0FF, 0 4px 24px rgba(0,255,255,0.10);
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background 0.3s, color 0.2s, transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.contact-btn:hover, .contact-btn:focus {
    background: linear-gradient(90deg, #7F5CFF 60%, #00F0FF 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 0 32px 0 #7F5CFF, 0 8px 32px rgba(127,92,255,0.18);
}
@media (max-width: 900px) {
    .contact-container {
        max-width: 98vw;
        padding: 2.5rem 1rem 1.5rem 1rem;
        margin-top: 40px;
    }
}
@media (max-width: 600px) {
    .contact-container {
        padding: 2rem 0.5rem 1.5rem 0.5rem;
        margin-top: 24px;
    }
    .contact-container h2 {
        font-size: 1.3rem;
    }
    .form-group input, .form-group textarea {
        font-size: 1rem;
        padding: 0.9rem 0.7rem 0.5rem 0.7rem;
    }
    .form-group label {
        font-size: 1rem;
        left: 0.7rem;
        top: 0.9rem;
    }
    .form-group.focused label,
    .form-group input:focus + label,
    .form-group textarea:focus + label,
    .form-group input:not(:placeholder-shown) + label,
    .form-group textarea:not(:placeholder-shown) + label {
        top: -0.6rem;
        left: 0.5rem;
        font-size: 0.85rem;
    }
}

@keyframes contactFadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* --- CAREER SECTION --- */
.career-section.dark-career {
    background: linear-gradient(120deg, #181A2A 60%, #23244D 100%);
    color: #e0e6f7;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    padding: 0 0 80px 0;
}
.career-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 2rem 0 2rem;
    position: relative;
    z-index: 2;
}
.career-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    background: linear-gradient(90deg, #00F0FF 40%, #7F5CFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    text-align: center;
}
.career-intro {
    font-size: 1.15rem;
    opacity: 0.92;
    margin-bottom: 2.5rem;
    color: #e0e6f7;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.career-openings {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.2rem;
    margin-bottom: 3.5rem;
}
.career-job {
    background: rgba(24,26,42,0.85);
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(0,255,255,0.04);
    padding: 2rem 1.2rem 1.2rem 1.2rem;
    border: 1.5px solid rgba(0,240,255,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}
.career-job:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 0 24px 0 #00F0FF, 0 8px 24px rgba(127,92,255,0.10);
    border-color: #00F0FF;
}
.career-job h3 {
    font-size: 1.18rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
    letter-spacing: 0.1px;
    text-align: left;
}
.career-badge {
    display: inline-block;
    background: linear-gradient(90deg, #00F0FF 60%, #7F5CFF 100%);
    color: #181A2A;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 12px;
    padding: 0.2rem 0.8rem;
    margin-left: 0.7rem;
    letter-spacing: 0.5px;
    box-shadow: 0 0 8px #00F0FF44;
}
.career-job p {
    font-size: 1.02rem;
    color: #b6c3e6;
    margin-bottom: 0.7rem;
}
.career-job ul {
    list-style: disc inside;
    color: #b6c3e6;
    font-size: 0.98rem;
    margin: 0 0 0 1rem;
    padding: 0;
}
.career-apply {
    background: rgba(24,26,42,0.92);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,255,255,0.10);
    padding: 2.5rem 2rem 2rem 2rem;
    text-align: center;
    margin-top: 2.5rem;
}
.career-apply h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    background: linear-gradient(90deg, #00F0FF 40%, #7F5CFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.career-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}
.career-form .form-group {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto 0.5rem auto;
}
.career-form input,
.career-form textarea {
    width: 100%;
    padding: 1.1rem 1.2rem 0.7rem 1.2rem;
    background: none;
    border: none;
    border-radius: 16px;
    color: #fff;
    font-size: 1.08rem;
    font-family: inherit;
    outline: none;
    box-shadow: 0 2px 12px 0 rgba(0,255,255,0.06);
    border: 2px solid rgba(0,240,255,0.13);
    transition: border 0.3s, box-shadow 0.3s;
    resize: none;
    z-index: 1;
}
.career-form input:focus,
.career-form textarea:focus {
    border: 2px solid #00F0FF;
    box-shadow: 0 0 16px #00F0FF44;
}
.career-form label {
    position: absolute;
    left: 1.2rem;
    top: 1.1rem;
    color: #b6c3e6;
    font-size: 1.08rem;
    pointer-events: none;
    background: none;
    transition: all 0.25s cubic-bezier(.23,1.01,.32,1);
    z-index: 2;
}
.career-form .form-group.focused label,
.career-form input:focus + label,
.career-form textarea:focus + label,
.career-form input:not(:placeholder-shown) + label,
.career-form textarea:not(:placeholder-shown) + label {
    top: -0.7rem;
    left: 1rem;
    font-size: 0.93rem;
    color: #00F0FF;
    background: #181A2A;
    padding: 0 0.4rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px 0 rgba(0,255,255,0.04);
}
.career-btn {
    margin-top: 0.5rem;
    padding: 0.95rem 2.5rem;
    font-size: 1.13rem;
    font-weight: 700;
    color: #181A2A;
    background: linear-gradient(90deg, #00F0FF 60%, #7F5CFF 100%);
    border: none;
    border-radius: 32px;
    box-shadow: 0 0 16px 0 #00F0FF, 0 4px 24px rgba(0,255,255,0.10);
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background 0.3s, color 0.2s, transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.career-btn:hover, .career-btn:focus {
    background: linear-gradient(90deg, #7F5CFF 60%, #00F0FF 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 0 32px 0 #7F5CFF, 0 8px 32px rgba(127,92,255,0.18);
}
@media (max-width: 1100px) {
    .career-openings {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 700px) {
    .career-openings {
        grid-template-columns: 1fr;
    }
    .career-container {
        padding: 40px 1rem 0 1rem;
    }
    .career-apply {
        padding: 1.5rem 0.5rem 1rem 0.5rem;
    }
}
@media (max-width: 600px) {
    .career-section h2 {
        font-size: 1.3rem;
    }
    .career-job h3 {
        font-size: 1rem;
    }
    .career-form input, .career-form textarea {
        font-size: 1rem;
        padding: 0.9rem 0.7rem 0.5rem 0.7rem;
    }
    .career-form label {
        font-size: 1rem;
        left: 0.7rem;
        top: 0.9rem;
    }
    .career-form .form-group.focused label,
    .career-form input:focus + label,
    .career-form textarea:focus + label,
    .career-form input:not(:placeholder-shown) + label,
    .career-form textarea:not(:placeholder-shown) + label {
        top: -0.6rem;
        left: 0.5rem;
        font-size: 0.85rem;
    }
} 

/* --- CUSTOM HERO LEFT CONTENT --- */
.hero-headline {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.1rem;
    background: linear-gradient(90deg, #00F0FF 30%, #7F5CFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 32px rgba(0,255,255,0.10);
}
.hero-subheading {
    font-size: 1.25rem;
    font-weight: 500;
    color: #b6c3e6;
    margin-bottom: 1.7rem;
    line-height: 1.5;
    opacity: 0.92;
    text-shadow: 0 2px 8px rgba(0,255,255,0.10);
}
.hero-values {
    list-style: none;
    padding: 0;
    margin: 0 0 2.2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.hero-values li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.08rem;
    color: #e0e6f7;
    background: rgba(24,26,42,0.55);
    border-radius: 12px;
    padding: 0.55rem 1.1rem;
    box-shadow: 0 2px 12px 0 rgba(0,255,255,0.06);
    border: 1.5px solid rgba(0,240,255,0.06);
    font-weight: 500;
    letter-spacing: 0.1px;
    transition: background 0.2s, color 0.2s;
}
.hero-values li i {
    font-size: 1.25rem;
    color: #00F0FF;
    filter: drop-shadow(0 0 6px #00F0FF88);
    min-width: 1.5em;
    text-align: center;
}
@media (max-width: 900px) {
    .hero-headline {
        font-size: 2rem;
    }
    .hero-values li {
        font-size: 0.98rem;
        padding: 0.45rem 0.7rem;
    }
}
@media (max-width: 600px) {
    .hero-headline {
        font-size: 1.3rem;
    }
    .hero-subheading {
        font-size: 1rem;
    }
    .hero-values li {
        font-size: 0.92rem;
        padding: 0.35rem 0.5rem;
    }
}

/* --- POWER CORE SVG EFFECTS --- */
.power-core-svg .core-glow {
    opacity: 0.7;
    filter: blur(8px) brightness(1.2);
    animation: coreGlowPulse 2.2s infinite alternate cubic-bezier(.4,0,.2,1);
}
@keyframes coreGlowPulse {
    0% { opacity: 0.7; filter: blur(8px) brightness(1.2); }
    100% { opacity: 1; filter: blur(18px) brightness(1.5); }
}
.power-core-svg .core-outline {
    filter: drop-shadow(0 0 16px #00F0FF88);
}
.power-core-svg .core-pulse {
    filter: blur(2px);
    opacity: 0.7;
    animation: corePulse 1.4s infinite alternate cubic-bezier(.4,0,.2,1);
}
@keyframes corePulse {
    0% { opacity: 0.7; r: 14; }
    100% { opacity: 0.3; r: 22; }
}
.power-core-svg .core-ray {
    stroke: #00F0FF;
    stroke-width: 2.5;
    stroke-linecap: round;
    opacity: 0.7;
    filter: drop-shadow(0 0 8px #00F0FF88);
    animation: rayPulse 2.2s infinite alternate cubic-bezier(.4,0,.2,1);
}
.power-core-svg .core-ray-thin {
    stroke: #7F5CFF;
    stroke-width: 1.2;
    opacity: 0.5;
    filter: drop-shadow(0 0 4px #7F5CFF88);
    animation-delay: 0.7s;
}
@keyframes rayPulse {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}
.power-core-svg .node-pulse {
    fill: url(#aiGradient);
    opacity: 0.18;
    animation: nodePulse 1.6s infinite cubic-bezier(.4,0,.2,1);
    transform-box: fill-box;
    transform-origin: center;
}
.power-core-svg .ai-nodes .node-pulse:nth-child(1) { animation-delay: 0s; }
.power-core-svg .ai-nodes .node-pulse:nth-child(3) { animation-delay: 0.2s; }
.power-core-svg .ai-nodes .node-pulse:nth-child(5) { animation-delay: 0.4s; }
.power-core-svg .ai-nodes .node-pulse:nth-child(7) { animation-delay: 0.6s; }
.power-core-svg .ai-nodes .node-pulse:nth-child(9) { animation-delay: 0.8s; }
.power-core-svg .ai-nodes .node-pulse:nth-child(11) { animation-delay: 1.0s; }
.power-core-svg .ai-nodes .node-pulse:nth-child(13) { animation-delay: 1.2s; }
.power-core-svg .ai-nodes .node-pulse:nth-child(15) { animation-delay: 1.4s; }
@keyframes nodePulse {
    0% { opacity: 0.18; r: 10; }
    70% { opacity: 0.32; r: 18; }
    100% { opacity: 0; r: 22; }
}
.power-core-svg .node-dot {
    filter: drop-shadow(0 0 8px #00F0FF88);
    animation: nodeDotGlow 1.6s infinite alternate cubic-bezier(.4,0,.2,1);
}
@keyframes nodeDotGlow {
    0% { filter: drop-shadow(0 0 8px #00F0FF88); }
    100% { filter: drop-shadow(0 0 18px #7F5CFF); }
}

/* --- FOOTER SECTION --- */
.footer {
    background: linear-gradient(120deg, #181A2A 60%, #23244D 100%);
    color: #e0e6f7;
    padding: 32px 0 18px 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 -4px 32px 0 rgba(0,255,255,0.04);
    font-size: 1rem;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.footer-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(90deg, #00F0FF 40%, #7F5CFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}
.footer-copy {
    font-size: 0.98rem;
    color: #b6c3e6;
    opacity: 0.85;
}
.footer-right {
    display: flex;
    gap: 1.1rem;
}
.footer-social {
    color: #00F0FF;
    font-size: 1.25rem;
    transition: color 0.2s, transform 0.2s;
    text-decoration: none;
}
.footer-social:hover {
    color: #7F5CFF;
    transform: translateY(-2px) scale(1.15);
}
@media (max-width: 700px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
        padding: 0 1rem;
    }
    .footer-right {
        gap: 0.8rem;
    }
    .footer-logo-text {
        font-size: 1.1rem;
    }
}

/* --- TECHNOLOGIES/LANGUAGES SECTION --- */
.tech-section {
    margin-top: 3.5rem;
    padding: 2.5rem 0 1.5rem 0;
    background: linear-gradient(120deg, #181A2A 60%, #23244D 100%);
    border-radius: 18px;
    box-shadow: 0 2px 24px 0 rgba(0,255,255,0.04);
    text-align: center;
}
.tech-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.7rem;
    background: linear-gradient(90deg, #00F0FF 40%, #7F5CFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}
.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem 1.2rem;
    max-width: 900px;
    margin: 0 auto;
}
.tech-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #e0e6f7;
    background: rgba(24,26,42,0.85);
    border-radius: 14px;
    padding: 0.7rem 1.3rem;
    box-shadow: 0 2px 12px 0 rgba(0,255,255,0.06);
    border: 1.5px solid rgba(0,240,255,0.06);
    transition: transform 0.18s, box-shadow 0.18s;
    min-width: 56px;
    min-height: 56px;
}
@media (max-width: 900px) {
    .tech-grid {
        gap: 0.8rem 0.8rem;
    }
    .tech-item {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
        min-width: 44px;
        min-height: 44px;
    }
}
@media (max-width: 600px) {
    .tech-grid {
        gap: 0.5rem 0.5rem;
    }
    .tech-item {
        font-size: 1rem;
        padding: 0.4rem 0.7rem;
        min-width: 36px;
        min-height: 36px;
    }
}
@media (max-width: 480px) {
    .tech-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.3rem 0.3rem;
    }
    .tech-item {
        font-size: 0.95rem;
        padding: 0.3rem 0.5rem;
        min-width: 28px;
        min-height: 28px;
    }
}
.tech-item i {
    font-size: 1.5rem;
    color: #00F0FF;
    filter: drop-shadow(0 0 6px #00F0FF88);
}
.tech-item:hover {
    transform: translateY(-2px) scale(1.07);
    box-shadow: 0 0 18px 0 #00F0FF, 0 4px 18px rgba(127,92,255,0.10);
    border-color: #00F0FF;
}
@media (max-width: 900px) {
    .tech-grid {
        gap: 1.1rem 1.5rem;
    }
}
@media (max-width: 600px) {
    .tech-title {
        font-size: 1.1rem;
    }
    .tech-grid {
        flex-direction: column;
        gap: 0.7rem;
    }
    .tech-item {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }
    .tech-item i {
        font-size: 1.1rem;
    }
}

.nav-img-logo {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    object-fit: cover;
    box-shadow: 0 2px 8px #00F0FF44;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    padding: 2px;
}

/* Loading Overlay Styles */
#loading-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center; /* Center horizontally */
  transition: opacity 0.4s;
}
.loading-circle-container {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-circle {
  width: 64px;
  height: 64px;
  border: 8px solid #7F5CFF;
  border-top: 8px solid #00F0FF;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  box-shadow: 0 0 32px #7F5CFF44;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@media (max-width: 600px) {
  .loading-circle-container {
    width: 100vw;
    height: 200px;
    align-items: center;
    justify-content: center;
  }
  #loading-overlay {
    justify-content: center;
  }
}

.footer-tagline {
  font-size: 1.05rem;
  color: #7F5CFF;
  font-weight: 500;
  margin-bottom: 0.2rem;
  letter-spacing: 0.2px;
}
.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem 0;
  justify-content: center;
}
.footer-links li a {
  color: #b6c3e6;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links li a:hover {
  color: #00F0FF;
}
.footer-newsletter {
  display: flex;
  align-items: center;
  background: rgba(24,26,42,0.85);
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(0,255,255,0.06);
  padding: 0.2rem 0.5rem 0.2rem 1rem;
  border: 1.5px solid rgba(0,240,255,0.06);
}
.footer-newsletter input[type="email"] {
  background: none;
  border: none;
  outline: none;
  color: #e0e6f7;
  font-size: 1rem;
  padding: 0.7rem 0.7rem 0.7rem 0;
  width: 180px;
}
.footer-newsletter button {
  background: linear-gradient(90deg, #00F0FF 60%, #7F5CFF 100%);
  border: none;
  color: #181A2A;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-left: 0.5rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px #00F0FF33;
}
.footer-newsletter button:hover {
  background: linear-gradient(90deg, #7F5CFF 60%, #00F0FF 100%);
  color: #fff;
  transform: scale(1.08);
}
.footer-top {
  background: none;
  border: 2px solid #00F0FF;
  color: #00F0FF;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-left: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s, transform 0.2s;
}
.footer-top:hover {
  background: #00F0FF;
  color: #181A2A;
  border-color: #7F5CFF;
  transform: translateY(-2px) scale(1.12);
}
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .footer-right {
    margin-top: 0.7rem;
  }
}
@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;
  }
  .footer-newsletter input[type="email"] {
    width: 120px;
    font-size: 0.95rem;
  }
}

.footer-socials-row {
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  margin-top: 1.1rem;
}

.footer-img-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 8px #00F0FF44;
  display: block;
  margin-bottom: 0.5rem;
}

@media (max-width: 480px) {
  .hero {
    padding-top: 60px;
    min-height: 90vh;
  }
  .hero-inner {
    flex-direction: column;
    gap: 1rem;
    padding: 0 0.2rem;
  }
  .hero-content {
    padding: 0.7rem 0.1rem 1.2rem 0.1rem;
    margin-top: 100px;
  }
  .hero-ai-animation {
    width: 150px;
    height: 150px;
    margin: 0 auto;
  }
  .ai-svg {
    width: 140px;
    height: 140px;
  }
  .footer-container {
    padding: 0 0.2rem;
  }
  .footer-img-logo {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 375px) {
  .hero-content h1 {
    font-size: 1.05rem;
  }
  .hero-subheading {
    font-size: 0.85rem;
  }
  .footer-logo-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 50px 0 20px 0;
  }
  .about-hero-inner h1 {
    font-size: 1.2rem;
  }
  .about-mission {
    font-size: 0.95rem;
    padding: 0 0.2rem;
  }
  .about-who, .about-team, .about-why {
    padding: 20px 0 10px 0;
  }
  .about-who-inner h2, .about-team-inner h2, .about-why-inner h2 {
    font-size: 1.05rem;
  }
  .about-who-inner p, .about-team-inner p, .about-why-inner p {
    font-size: 0.92rem;
    padding: 0 0.2rem;
  }
  .about-values {
    gap: 0.5rem;
  }
  .about-values li {
    font-size: 0.92rem;
    padding: 0.3rem 0.5rem;
  }
  .about-svg {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 375px) {
  .about-hero-inner h1 {
    font-size: 0.95rem;
  }
  .about-who-inner h2, .about-team-inner h2, .about-why-inner h2 {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 0 0 40px 0;
  }
  .services-container {
    padding: 24px 0.2rem 0 0.2rem;
  }
  .services-section h2 {
    font-size: 1.1rem;
    padding: 0 0.2rem;
  }
  .services-intro {
    font-size: 0.95rem;
    padding: 0 0.2rem;
  }
  .services-grid {
    gap: 0.7rem;
  }
  .service-card {
    padding: 0.7rem 0.2rem 1rem 0.2rem;
    font-size: 0.95rem;
  }
  .service-icon {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
  }

  .about-hero-inner h1 {
    margin-top: 40px;
  }

  .services-container h2 {
    margin-top: 50px;
  }

  .portfolio-container h2 {
    margin-top: 40px;
  }

  .testimonials-container h2 {
    margin-top: 40px;
  }

  .faqs-container h2 {
    margin-top: 40px;
  }

  .career-container h2 {
    margin-top: 40px;
  }
}
@media (max-width: 375px) {
  .services-section h2 {
    font-size: 0.9rem;
  }
  .service-card {
    font-size: 0.85rem;
    padding: 0.5rem 0.1rem 0.7rem 0.1rem;
  }
}