@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,300;1,400;1,500&display=swap');

/* ===============================
CSS VARIABLES
=============================== */
:root {
    --nt-bg-main: #050814;
    --nt-bg-alt: #0b0f19;
    --nt-bg-soft: #0f1524;
    --nt-accent: #7f3fed;
    --nt-accent-soft: #a970ff;
    --nt-text-main: #f4f5ff;
    --nt-text-muted: #c3c7d9;
    --nt-border-soft: #252b3d;
    --nt-shadow-soft: 0 0 30px rgba(0, 0, 0, 0.7);
}

/* ===============================
GLOBAL RESET
=============================== */
* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: none;
    transition: all .2s linear;
    text-decoration: none;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    background: var(--nt-bg-main);
}

body {
    overflow-x: hidden;
    background: radial-gradient(circle at top, #141b33 0%, #050814 55%, #02030a 100%);
    color: var(--nt-text-main);
    cursor: none;
}

/* =====/* =========================
   GRAFFITI CURSOR
========================= */

.lang-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(127, 63, 237, 0.3);
    background: rgba(15, 21, 36, 0.6);
    color: #c3c7d9;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    position: relative;
    overflow: hidden;
}

.lang-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.lang-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #7f3fed, #ba42ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
    z-index: -1;
}

.lang-btn:hover {
    transform: scale(1.1);
    border-color: rgba(127, 63, 237, 0.6);
    color: #fff;
    box-shadow: 0 5px 20px rgba(127, 63, 237, 0.4);
}

.lang-btn:hover::before {
    opacity: 0.2;
}

.lang-btn:hover i {
    transform: rotate(360deg);
}

.lang-btn.active {
    background: linear-gradient(135deg, #7f3fed, #ba42ff);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 25px rgba(127, 63, 237, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 25px rgba(127, 63, 237, 0.6);
    }
    50% {
        box-shadow: 0 0 35px rgba(127, 63, 237, 0.9);
    }
}



/* Additional font fallbacks for better compatibility */
@supports not (font-feature-settings: "calt") {
    [dir="rtl"] * {
        font-family: 'Tahoma', 'Arial', sans-serif !important;
    }
}
body {
    cursor: none;
}

#graffiti-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    background: radial-gradient(circle, #7f3fed, #00e1ff);
    box-shadow:
        0 0 10px rgba(127, 63, 237, 0.8),
        0 0 30px rgba(0, 225, 255, 0.6);
    transform: translate(-50%, -50%);
}

.graffiti-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, #ba42ff, transparent);
    filter: blur(1px);
    animation: fadeOut 0.8s ease-out forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: scale(2);
    }
}
/* ===============================
PRELOADER
=============================== */
#preloader {
    position: fixed;
    inset: 0;
    background: #050814;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999999;
    transition: opacity 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    background-image: linear-gradient(rgb(186, 66, 255) 35%, rgb(0, 225, 255));
    width: 100px;
    height: 100px;
    animation: spinning 1.7s linear infinite;
    border-radius: 50px;
    filter: blur(1px);
    box-shadow: 0 -5px 20px rgb(186, 66, 255), 0 5px 20px rgb(0, 225, 255);
}

.spinner1 {
    background-color: #242424;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    filter: blur(10px);
}

@keyframes spinning {
    to { transform: rotate(360deg); }
}

/* ===============================
STARFIELD BACKGROUND
=============================== */
#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===============================
HEADER / NAVBAR
=============================== */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.2rem 2.4rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: linear-gradient(90deg, rgba(5, 8, 20, 0.96), rgba(11, 15, 30, 0.96));
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.header .logo img {
    width: 130%;
    height: 3rem;
    object-fit: contain;
}

.header .navbar ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.header .navbar ul li {
    margin: 0 1.4rem;
}

.header .navbar ul li a {
    font-size: 1.7rem;
    color: var(--nt-text-muted);
    position: relative;
}

.header .navbar ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--nt-accent);
    transition: width 0.3s ease;
}

.header .navbar ul li a:hover::after {
    width: 100%;
}

.header .navbar ul li a:hover {
    color: var(--nt-accent-soft);
    text-decoration: none;
}

.header .fa-bars {
    color: #fff;
    cursor: pointer;
    font-size: 3rem;
    display: none;
}

/* ===============================
PRO HERO SECTION
=============================== */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 3D Canvas Background */
#novaRing {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Animated Background Orbs */
.hero-bg-effects {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #7f3fed, transparent);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #00e1ff, transparent);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.hero-orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #ba42ff, transparent);
    top: 50%;
    right: -100px;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--nt-accent);
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 80%; top: 30%; animation-delay: 2s; }
.particle:nth-child(3) { left: 60%; top: 70%; animation-delay: 4s; }
.particle:nth-child(4) { left: 30%; top: 80%; animation-delay: 6s; }
.particle:nth-child(5) { left: 90%; top: 50%; animation-delay: 8s; }
.particle:nth-child(6) { left: 20%; top: 40%; animation-delay: 10s; }
.particle:nth-child(7) { left: 70%; top: 15%; animation-delay: 12s; }
.particle:nth-child(8) { left: 40%; top: 60%; animation-delay: 14s; }

@keyframes particle-float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    25% {
        opacity: 0.8;
    }
    50% {
        transform: translateY(-100px) scale(1.5);
        opacity: 0.5;
    }
    75% {
        opacity: 0.3;
    }
}

/* Hero Content Container */
.hero-content {
    position: relative;
    text-align: center;
    z-index: 10;
    max-width: 1200px;
    padding: 0 2rem;
}

/* Animated Logo */
.hero-logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
}

.hero-logo {
    width: 180px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(127, 63, 237, 0.8));
    animation: logo-pulse 3s ease-in-out infinite;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(127, 63, 237, 0.4), transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes logo-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

/* Animated Title */
.hero-title {
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #fff;
}

.hero-title-line {
    display: block;
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: both;
}

.hero-title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-title-gradient {
    background: linear-gradient(135deg, #7f3fed 0%, #ba42ff 50%, #00e1ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(20deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typing Effect Subtitle */
.hero-subtitle-wrapper {
    min-height: 40px;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 0.6s both;
}

.hero-subtitle {
    font-size: 2rem;
    color: #c7baff;
    font-weight: 300;
}

.typed-text {
    color: var(--nt-accent-soft);
}

.cursor {
    color: var(--nt-accent);
    animation: blink 1s infinite;
}

.cursor.typing {
    animation: none;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Feature Tags */
.hero-tags {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-tag {
    padding: 0.8rem 2rem;
    background: rgba(127, 63, 237, 0.1);
    border: 1px solid rgba(127, 63, 237, 0.3);
    border-radius: 25px;
    font-size: 1.4rem;
    color: var(--nt-accent-soft);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-tag:hover {
    background: rgba(127, 63, 237, 0.2);
    border-color: var(--nt-accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(127, 63, 237, 0.3);
}

/* Location Badge */
.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: rgba(8, 12, 27, 0.6);
    border: 1px solid var(--nt-border-soft);
    border-radius: 30px;
    font-size: 1.5rem;
    color: var(--nt-text-muted);
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-location i {
    color: var(--nt-accent);
}

/* CTA Buttons */
.hero-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.hero-btn {
    position: relative;
    padding: 1.5rem 3.5rem;
    font-size: 1.6rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.hero-btn-primary {
    background: var(--nt-accent);
    color: #fff;
    border: 2px solid var(--nt-accent);
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(127, 63, 237, 0.5);
}

.hero-btn-secondary {
    background: transparent;
    color: var(--nt-text-main);
    border: 2px solid var(--nt-accent);
    position: relative;
}

.hero-btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--nt-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    border-radius: 50px;
    z-index: -1;
}

.hero-btn-secondary:hover::before {
    transform: scaleX(1);
}

.hero-btn-secondary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(127, 63, 237, 0.5);
}

.hero-btn-secondary i {
    transition: transform 0.3s ease;
}

.hero-btn-secondary:hover i {
    transform: translateX(5px);
}

/* Stats Counter */
.hero-stats {
    display: flex;
    gap: 5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.4s both;
}

.hero-stat {
    text-align: center;
    padding: 2rem 3rem;
    background: rgba(8, 12, 27, 0.6);
    border: 1px solid var(--nt-border-soft);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-5px);
    border-color: var(--nt-accent);
    box-shadow: 0 10px 30px rgba(127, 63, 237, 0.2);
}

.stat-number {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--nt-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1.4rem;
    color: var(--nt-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fadeIn 2s ease-out 2s both;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--nt-accent));
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0%, 100% {
        opacity: 0;
        height: 20px;
    }
    50% {
        opacity: 1;
        height: 50px;
    }
}

.hero-scroll span {
    font-size: 1.2rem;
    color: var(--nt-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===============================
SECTION HEADINGS
=============================== */
/* NEW CODE - USE THIS */
.heading,
.section-head h1,
.section-head-1 h4 {
    margin: 2rem auto;
    padding-top: 0;  /* Changed from 6rem to 0 */
    display: inline-block;
    font-size: 3.3rem;
    color: var(--nt-text-main);
    position: relative;
    letter-spacing: .22rem;
}

/* Decorative corner borders */
.heading::before,
.heading::after,
.section-head h1::before,
.section-head h1::after,
.section-head-1 h4::before,
.section-head-1 h4::after {
    content: '';
    position: absolute;
    height: 2.2rem;
    width: 2.2rem;
    border-top: .3rem solid var(--nt-accent);
    border-left: .3rem solid var(--nt-accent);
}

/* Top-left corner - Fixed position */
.heading::before,
.section-head h1::before,
.section-head-1 h4::before {
    top: -.5rem;     /* Changed from 5.5rem to -.5rem */
    left: -2rem;
}

/* Bottom-right corner */
.heading::after,
.section-head h1::after,
.section-head-1 h4::after {
    bottom: -.5rem;
    right: -2rem;
    transform: rotate(180deg);
}
/* ===============================
BUTTONS
=============================== */
.btn {
    outline: none;
    border-radius: 5rem;
    border: 1px solid var(--nt-accent);
    background: transparent;
    color: var(--nt-text-main);
    font-size: 1.5rem;
    cursor: pointer;
    height: 3.7rem;
    width: 16rem;
    box-shadow: 0 .3rem .8rem rgba(0, 0, 0, .6);
}

.btn:hover {
    letter-spacing: .12rem;
    background: var(--nt-accent);
    color: #fff;
    box-shadow: 0 0 18px rgba(127, 63, 237, 0.8);
}

/* ===============================
ABOUT SECTION
=============================== */
.about {
    min-height: 55vh;
    width: 100vw;
    top: -3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    line-height: 10rem;
    background: radial-gradient(circle at top, #121a34 0%, #050814 70%);
}

.about .row {
    line-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 4rem;
}

.about .row .content {
    text-align: center;
    max-width: 800px;
}

.about .row .content h3 {
    font-size: 3rem;
    color: var(--nt-text-main);
}

.about .row .content p {
    font-size: 1.8rem;
    color: var(--nt-text-muted);
    padding: 1rem 0;
}

/* ===============================
SERVICES SECTION
=============================== */
/* ========================================
   ENHANCED SERVICES SECTION
======================================== */

.services-section {
            position: relative;
            padding: 6rem 2rem;
            background: linear-gradient(180deg, #0a0a0a 0%, #16213e 50%, #0a0a0a 100%);
            overflow: hidden;
            perspective: 1500px;
        }

        /* Animated Background */
        .services-bg-effects {
            position: absolute;
            inset: 0;
            overflow: hidden;
            z-index: 1;
        }

        .services-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.3;
            animation: floatServices 12s ease-in-out infinite;
        }

        .services-orb-1 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, #6366f1, transparent);
            top: 20%;
            left: -200px;
        }

        .services-orb-2 {
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, #ec4899, transparent);
            bottom: 10%;
            right: -150px;
            animation-delay: 4s;
        }

        .services-orb-3 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, #14b8a6, transparent);
            top: 50%;
            right: 20%;
            animation-delay: 8s;
        }

        @keyframes floatServices {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(40px, -40px) scale(1.15);
            }
            66% {
                transform: translate(-40px, 40px) scale(0.95);
            }
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        /* Section Header */
        .section-head-1 {
            text-align: center;
            margin-bottom: 5rem;
            opacity: 0;
            animation: fadeInDown 1s ease-out 0.2s forwards;
            transform-style: preserve-3d;
        }

        .section-head-1 h4 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
            transform: translateZ(50px);
        }

        .section-head-1 h4 span {
            background: linear-gradient(135deg, #6366f1, #ec4899, #14b8a6);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientFlow 4s ease infinite;
        }

        @keyframes gradientFlow {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        .section-head-1 p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: #94a3b8;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* 3D Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
            transform-style: preserve-3d;
        }

        /* 3D Service Card */
        .service-item {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            opacity: 0;
            animation: slideInUp3D 0.8s ease-out forwards;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            transform-style: preserve-3d;
            transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
        }

        .service-item:nth-child(1) { animation-delay: 0.1s; }
        .service-item:nth-child(2) { animation-delay: 0.2s; }
        .service-item:nth-child(3) { animation-delay: 0.3s; }
        .service-item:nth-child(4) { animation-delay: 0.4s; }
        .service-item:nth-child(5) { animation-delay: 0.5s; }
        .service-item:nth-child(6) { animation-delay: 0.6s; }
        .service-item:nth-child(7) { animation-delay: 0.7s; }
        .service-item:nth-child(8) { animation-delay: 0.8s; }
        .service-item:nth-child(9) { animation-delay: 0.9s; }

        @keyframes slideInUp3D {
            from {
                opacity: 0;
                transform: perspective(1000px) translateY(50px) rotateX(-15deg);
            }
            to {
                opacity: 1;
                transform: perspective(1000px) translateY(0) rotateX(0deg);
            }
        }

        /* 3D Hover Effect */
        .service-item:hover {
            transform: perspective(1000px) translateY(-20px) rotateX(5deg) scale(1.05);
            border-color: rgba(99, 102, 241, 0.6);
            box-shadow: 
                0 30px 80px rgba(99, 102, 241, 0.4),
                0 0 50px rgba(99, 102, 241, 0.2) inset;
        }

        /* 3D Glow Layer */
        .service-item::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(236, 72, 153, 0.3));
            border-radius: 20px;
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: -1;
            filter: blur(20px);
            transform: translateZ(-10px);
        }

        .service-item:hover::before {
            opacity: 1;
        }

        /* Shine Effect */
        .service-item::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: rotate(45deg) translateZ(20px);
            transition: all 0.6s ease;
            opacity: 0;
        }

        .service-item:hover::after {
            left: 100%;
            opacity: 1;
        }

        /* 3D Icon Container */
        .service-item .icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            position: relative;
            transition: all 0.5s ease;
            transform: translateZ(30px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .service-item:hover .icon {
            transform: translateZ(60px) rotateY(360deg) scale(1.1);
        }

        .service-item .icon i {
            font-size: 2.5rem;
            background: linear-gradient(135deg, #6366f1, #ec4899);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: all 0.4s ease;
            filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.5));
        }

        .service-item:hover .icon i {
            filter: drop-shadow(0 0 30px rgba(99, 102, 241, 1));
        }

        /* Icon Color Variations with 3D depth */
        .feature_box_col_one {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.05));
        }

        .feature_box_col_two {
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(236, 72, 153, 0.05));
        }

        .feature_box_col_three {
            background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(20, 184, 166, 0.05));
        }

        .feature_box_col_four {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.05));
        }

        .feature_box_col_five {
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(168, 85, 247, 0.05));
        }

        .feature_box_col_six {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.05));
        }

        /* 3D Service Title */
        .service-item h6 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #e2e8f0;
            transition: all 0.3s ease;
            transform: translateZ(20px);
        }

        .service-item:hover h6 {
            color: #fff;
            transform: translateZ(40px) translateX(5px);
            text-shadow: 0 5px 20px rgba(99, 102, 241, 0.5);
        }

        /* 3D Service Description */
        .service-item p {
            font-size: 1rem;
            line-height: 1.7;
            color: #94a3b8;
            transition: all 0.3s ease;
            transform: translateZ(10px);
        }

        .service-item:hover p {
            color: #cbd5e1;
            transform: translateZ(25px);
        }

        /* 3D Accent Line */
        .service-item .accent-line {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 4px;
            background: linear-gradient(90deg, #6366f1, #ec4899);
            transition: width 0.5s ease;
            transform: translateZ(5px);
            box-shadow: 0 0 20px rgba(99, 102, 241, 0.8);
        }

        .service-item:hover .accent-line {
            width: 100%;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px) translateZ(0);
            }
            to {
                opacity: 1;
                transform: translateY(0) translateZ(0);
            }
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .services-section {
                padding: 4rem 1rem;
                perspective: 1000px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .service-item {
                padding: 2rem;
            }

            .service-item:hover {
                transform: perspective(1000px) translateY(-15px) rotateX(3deg) scale(1.03);
            }

            .section-head-1 {
                margin-bottom: 3rem;
            }
        }
/* ===============================
CTA SECTION
=============================== */
/* ========================================
   ENHANCED CTA SECTION
======================================== */

.communicate {
    position: relative;
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    overflow: hidden;
    text-align: center;
}

/* Animated Background Effects */
.cta-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: floatCTA 10s ease-in-out infinite;
}

.cta-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #6366f1, transparent);
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
}

.cta-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ec4899, transparent);
    bottom: -200px;
    left: 10%;
    animation-delay: 3s;
}

.cta-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #14b8a6, transparent);
    bottom: -200px;
    right: 10%;
    animation-delay: 6s;
}

@keyframes floatCTA {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(0, 30px) scale(1.1);
    }
}

/* Particle Effects */
.cta-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.cta-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: particleRise 8s ease-in infinite;
}

.cta-particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.cta-particle:nth-child(2) {
    left: 25%;
    animation-delay: 2s;
}

.cta-particle:nth-child(3) {
    left: 40%;
    animation-delay: 4s;
}

.cta-particle:nth-child(4) {
    left: 60%;
    animation-delay: 1s;
}

.cta-particle:nth-child(5) {
    left: 75%;
    animation-delay: 3s;
}

.cta-particle:nth-child(6) {
    left: 90%;
    animation-delay: 5s;
}

@keyframes particleRise {
    0% {
        bottom: 0;
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        bottom: 100%;
        opacity: 0;
    }
}

/* Content Container */
.cta-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

/* Title */
.communicate h3 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff, #e2e8f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.2s forwards;
    line-height: 1.2;
}

/* Description */
.communicate p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.8;
    color: #94a3b8;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.4s forwards;
}

/* Button Container */
.communicate a {
    display: inline-block;
    text-decoration: none;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

/* Enhanced Button */
.communicate .btn {
    position: relative;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Button Shine Effect */
.communicate .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.communicate .btn:hover::before {
    left: 100%;
}

/* Button Glow Ring */
.communicate .btn::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(10px);
}

.communicate .btn:hover::after {
    opacity: 1;
}

.communicate .btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.6);
}

.communicate .btn:active {
    transform: translateY(-2px) scale(1.02);
}

/* Decorative Elements */
.cta-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    animation: expandCircle 3s ease-in-out infinite;
}

.cta-circle-1 {
    width: 300px;
    height: 300px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.cta-circle-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: 15%;
    animation-delay: 1s;
}

@keyframes expandCircle {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .communicate {
        padding: 5rem 1.5rem;
    }

    .communicate h3 {
        margin-bottom: 1rem;
    }

    .communicate p {
        margin-bottom: 2rem;
    }

    .communicate .btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .cta-circle {
        display: none;
    }
}
/* ========================================
   ENHANCED TEAM SECTION
======================================== */
/* Animated Background */
.team-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.team-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: floatTeam 12s ease-in-out infinite;
}

.team-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #6366f1, transparent);
    top: 10%;
    left: -200px;
}

.team-orb-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #ec4899, transparent);
    bottom: 10%;
    right: -150px;
    animation-delay: 4s;
}

@keyframes floatTeam {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(40px, -40px) scale(1.1);
    }
}
.team {
    position: relative;
    padding: 7rem 2rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    overflow: hidden;
    display: flex;           /* Add this */
    flex-direction: column;  /* Add this */
    align-items: center;     /* Add this */
}
/* Heading */
.team .heading {
    position: relative;
    z-index: 10;
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #fff, #6366f1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: fadeInDown 1s ease-out 0.2s forwards;
    
}

.team .heading::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 100%;
    text-align: center;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.8s both;
    
}

/* Team Row */
.team .row {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* Team Card */
.team .card {
    position: relative;
    width: 350px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 24px;
    padding: 2rem;
    overflow: hidden;
    opacity: 0;
    animation: slideInUp 1s ease-out forwards;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.team .card:nth-child(1) {
    animation-delay: 0.3s;
}

.team .card:nth-child(2) {
    animation-delay: 0.5s;
}

/* Card Glow Effect */
.team .card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.team .card:hover::before {
    opacity: 1;
}

.team .card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 30px 80px rgba(99, 102, 241, 0.4);
}

/* Shine Effect */
.team .card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.team .card:hover::after {
    left: 100%;
    opacity: 1;
}

/* Image Container */
.team .card .image {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
}

.team .card .image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.team .card:hover .image::before {
    opacity: 1;
}

.team .card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team .card:hover .image img {
    transform: scale(1.1);
}

/* Info Section */
.team .card .info {
    text-align: center;
}

.team .card .info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #e2e8f0;
    transition: all 0.3s ease;
}

.team .card:hover .info h3 {
    background: linear-gradient(135deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team .card .info span {
    display: block;
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Social Icons */
.team .card .icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.team .card .icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #a5b4fc;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team .card .icons a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.team .card .icons a:hover {
    transform: translateY(-5px) scale(1.1);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5);
}

.team .card .icons a:hover::before {
    opacity: 1;
}

/* Specific Icon Colors */
.team .card .icons a.fa-envelope:hover {
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.5);
}

.team .card .icons a.fa-whatsapp:hover {
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.5);
}

.team .card .icons a.fa-instagram:hover {
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.5);
}

.team .card .icons a.fa-linkedin:hover {
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
}

/* Accent Line */
.team .card .accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    transition: width 0.5s ease;
}

.team .card:hover .accent-line {
    width: 100%;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .team {
        padding: 5rem 1rem;
    }

    .team .heading {
        margin-bottom: 3rem;
    }

    .team .row {
        gap: 2rem;
    }

    .team .card {
        width: 100%;
        max-width: 350px;
    }

    .team .card .image {
        height: 250px;
    }
}
/* ===============================
CONTACT SECTION
=============================== */
/* ========================================
   ENHANCED CONTACT SECTION
======================================== */

/* Contact Section Header */
.contact {
    position: relative;
    padding: 5rem 2rem 2rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
    overflow: hidden;
}

/* Animated Background */
.contact-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.contact-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: floatContact 10s ease-in-out infinite;
}

.contact-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #6366f1, transparent);
    top: -200px;
    right: -200px;
}

.contact-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ec4899, transparent);
    bottom: -150px;
    left: -150px;
    animation-delay: 3s;
}

@keyframes floatContact {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* Heading */
/* Heading */
.contact .heading {
    position: relative;
    z-index: 10;
    display: block;
    width: 100%;
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin: 0 auto 3rem auto;
    padding-top: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #fff, #6366f1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: fadeInDown 1s ease-out 0.2s forwards;
}

.contact .heading::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.8s both;
}

/* Contact Container */
.contact-in {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem 6rem;
    background: linear-gradient(180deg, #1a1a2e 0%, #0a0a0a 100%);
    z-index: 10;
}

/* Map Container */
.contact-map {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.4s forwards;
    transition: all 0.4s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-map:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.5);
}

.contact-map iframe {
    width: 100%;
    height: 500px;
    border: none;
    filter: grayscale(20%) contrast(1.2);
}

/* Form Container */
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: slideInRight 1s ease-out 0.6s forwards;
    transition: all 0.4s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-form::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.contact-form:hover::before {
    opacity: 1;
}

.contact-form:hover {
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}

/* Form Elements */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-txt,
.contact-form-phone,
.contact-form-email {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    color: #e2e8f0;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form-txt:focus,
.contact-form-phone:focus,
.contact-form-email:focus,
.contact-form-txtarea:focus {
    outline: none;
    border-color: rgba(99, 102, 241, 0.6);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

.contact-form-txt::placeholder,
.contact-form-phone::placeholder,
.contact-form-email::placeholder,
.contact-form-txtarea::placeholder {
    color: #94a3b8;
}

.contact-form-txtarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    color: #e2e8f0;
    font-size: 1rem;
    font-family: inherit;
    min-height: 150px;
    resize: vertical;
    transition: all 0.3s ease;
}

/* Submit Button */
.contact-form-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

/* Button Shine Effect */
.contact-form-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.contact-form-btn:hover::before {
    left: 100%;
}

.contact-form-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.contact-form-btn:active {
    transform: translateY(-1px);
}

/* Input Animation */
.contact-form input,
.contact-form textarea {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.contact-form input:nth-child(1) {
    animation-delay: 0.7s;
}

.contact-form input:nth-child(2) {
    animation-delay: 0.8s;
}

.contact-form input:nth-child(3) {
    animation-delay: 0.9s;
}

.contact-form textarea {
    animation-delay: 1s;
}

.contact-form-btn {
    animation-delay: 1.1s;
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .contact-in {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem 4rem;
    }

    .contact-map iframe {
        height: 400px;
    }

    .contact-form {
        padding: 2rem;
    }

    .contact {
        padding: 4rem 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .contact-map iframe {
        height: 300px;
    }

    .contact-form-txtarea {
        min-height: 120px;
    }
}
/* ===============================
FOOTER
=============================== */
/* ========================================
   ENHANCED FOOTER SECTION
======================================== */
/* ===============================
FOOTER – NOVA TECH
=============================== */

.footer {
    position: relative;
    background: linear-gradient(180deg, #050814 0%, #02030a 100%);
    padding: 6rem 2rem 2rem;
    overflow: hidden;
}

.footer-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.footer-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    animation: floatFooter 14s ease-in-out infinite;
}

.footer-orb-1 {
    background: radial-gradient(circle, #7f3fed, transparent);
    top: -200px;
    left: -150px;
}

.footer-orb-2 {
    background: radial-gradient(circle, #00e1ff, transparent);
    bottom: -200px;
    right: -150px;
    animation-delay: 5s;
}

@keyframes floatFooter {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(40px); }
}

.footer-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 4rem;
    position: relative;
    z-index: 10;
}

.footer-col h4 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #7f3fed, #00e1ff);
    border-radius: 3px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    font-size: 1.4rem;
    color: #c3c7d9;
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #c3c7d9;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #7f3fed;
    padding-left: 6px;
}

.footer-col.brand img {
    width: 160px;
    margin-bottom: 1.5rem;
}

.footer-col.brand p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #c3c7d9;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-contact i {
    color: #7f3fed;
}

.footer-social {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(127, 63, 237, 0.15);
    color: #fff;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #7f3fed;
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(127, 63, 237, 0.6);
}

.footer-bottom {
    margin-top: 4rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    font-size: 1.3rem;
    color: #94a3b8;
}

/* Mobile */
@media (max-width: 768px) {
    .footer {
        padding: 4rem 1.5rem 2rem;
    }

    .footer-col.brand img {
        margin: auto;
    }

    .footer-col.brand p {
        text-align: center;
    }
}

/* ===============================
BACK TO TOP BUTTON
=============================== */
.back-to-top {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 5rem;
    height: 5rem;
    background: var(--nt-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.5rem;
    z-index: 99;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(127, 63, 237, 0.4);
}

.back-to-top:hover {
    background: var(--nt-accent-soft);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(127, 63, 237, 0.6);
}
/* Enhanced Background Effects */
.hero-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #6366f1, transparent);
    top: -250px;
    left: -250px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ec4899, transparent);
    bottom: -200px;
    right: -200px;
    animation-delay: 2s;
}

.hero-orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #14b8a6, transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

/* Enhanced Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.particle {
    position: absolute;
    background: white;
    border-radius: 50%;
    pointer-events: none;
}

.particle:nth-child(1) {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 10%;
    animation: particleFloat 6s ease-in-out infinite, particlePulse 2s ease-in-out infinite;
}

.particle:nth-child(2) {
    width: 3px;
    height: 3px;
    top: 40%;
    left: 80%;
    animation: particleFloat 8s ease-in-out infinite, particlePulse 3s ease-in-out infinite;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    width: 5px;
    height: 5px;
    top: 60%;
    left: 30%;
    animation: particleFloat 7s ease-in-out infinite, particlePulse 2.5s ease-in-out infinite;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    width: 2px;
    height: 2px;
    top: 80%;
    left: 70%;
    animation: particleFloat 9s ease-in-out infinite, particlePulse 3.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.particle:nth-child(5) {
    width: 4px;
    height: 4px;
    top: 30%;
    left: 50%;
    animation: particleFloat 6.5s ease-in-out infinite, particlePulse 2s ease-in-out infinite;
    animation-delay: 1.5s;
}

.particle:nth-child(6) {
    width: 3px;
    height: 3px;
    top: 70%;
    left: 20%;
    animation: particleFloat 8.5s ease-in-out infinite, particlePulse 4s ease-in-out infinite;
    animation-delay: 2.5s;
}

.particle:nth-child(7) {
    width: 5px;
    height: 5px;
    top: 15%;
    left: 90%;
    animation: particleFloat 7.5s ease-in-out infinite, particlePulse 3s ease-in-out infinite;
    animation-delay: 3s;
}

.particle:nth-child(8) {
    width: 4px;
    height: 4px;
    top: 85%;
    left: 60%;
    animation: particleFloat 6s ease-in-out infinite, particlePulse 2.5s ease-in-out infinite;
    animation-delay: 3.5s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(30px, -30px);
    }
    50% {
        transform: translate(-20px, -60px);
    }
    75% {
        transform: translate(40px, -40px);
    }
}

@keyframes particlePulse {
    0%, 100% {
        opacity: 0.3;
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
}
/* ========================================
   ENHANCED ABOUT SECTION
======================================== */

.about {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    overflow: hidden;

    /* OPTIONAL: uncomment if you want full section vertical balance */
    /* min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center; */
}

/* ================= BACKGROUND EFFECTS ================= */

.about-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    opacity: 0.4;
}

.about-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: floatOrb 10s ease-in-out infinite;
}

.about-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #6366f1, transparent);
    top: 10%;
    right: -200px;
}

.about-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #14b8a6, transparent);
    bottom: 10%;
    left: -150px;
    animation-delay: 3s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.about-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    from { transform: translateY(0); }
    to { transform: translateY(50px); }
}

/* ================= HEADING ================= */

.about .heading {
    position: relative;
    z-index: 10;
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0;
    animation: fadeInDown 1s ease-out 0.2s forwards;
}

.about .heading::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.8s both;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 100px; }
}

/* ================= CONTENT CONTAINER ================= */

.about .row {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    justify-content: center;
}

/* ================= MAIN CARD ================= */

.about .content {
    max-width: 900px;
    width: 100%;
    padding: 3rem;

    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 24px;

    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: slideInUp 1s ease-out 0.4s forwards;
    transition: all 0.4s ease;
}

.about .content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(99, 102, 241, 0.1),
        rgba(236, 72, 153, 0.1)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.about .content:hover::before {
    opacity: 1;
}

.about .content:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow: 0 25px 60px rgba(99, 102, 241, 0.25);
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================= TEXT ================= */

.about .content h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about .content p {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.8;
    color: #cbd5e1;
    text-align: justify;
}

.about .content p::first-letter {
    font-size: 2em;
    font-weight: 700;
    color: #6366f1;
    float: left;
    margin-right: 8px;
}
.about-features { position: relative; z-index: 10; max-width: 1200px; margin: 4rem auto 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; padding: 0 2rem; } .feature-card { background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(20px); border: 1px solid rgba(99, 102, 241, 0.2); border-radius: 16px; padding: 2rem; text-align: center; position: relative; overflow: hidden; opacity: 0; animation: fadeInUp 1s ease-out forwards; transition: all 0.3s ease; } .feature-card:nth-child(1) { animation-delay: 0.6s; } .feature-card:nth-child(2) { animation-delay: 0.8s; } .feature-card:nth-child(3) { animation-delay: 1s; } @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } .feature-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(45deg, transparent, rgba(99, 102, 241, 0.1), transparent); transform: rotate(45deg); transition: all 0.6s ease; } .feature-card:hover::before { left: 100%; } .feature-card:hover { transform: translateY(-10px); border-color: rgba(99, 102, 241, 0.5); box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3); } .feature-icon { font-size: 3rem; margin-bottom: 1rem; background: linear-gradient(135deg, #6366f1, #ec4899); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: iconPulse 2s ease-in-out infinite; } @keyframes iconPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } } .feature-card h4 { font-size: 1.3rem; font-weight: 600; margin-bottom: 0.5rem; color: #e2e8f0; } .feature-card p { font-size: 0.95rem; color: #94a3b8; line-height: 1.6; }
#novaRing {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo */
.hero-logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    animation: scaleIn 1s ease-out 0.2s both;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-logo {
    width: 120px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.logo-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4), transparent);
    border-radius: 50%;
    filter: blur(30px);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}
/* ===============================
ABOUT FEATURES ANIMATION
=============================== */

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
    position: relative;
    z-index: 5;
}

/* Card initial state (off-screen right) */
.feature-card {
    opacity: 0;
    transform: translateX(80px);
    animation: aboutSlideRTL 0.9s ease-out forwards,
               aboutFloatLR 6s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(127, 63, 237, 0.25);
    border-radius: 22px;
    padding: 3rem;
}

/* Stagger animation */
.feature-card:nth-child(1) { animation-delay: 0.1s, 1s; }
.feature-card:nth-child(2) { animation-delay: 0.3s, 1.2s; }
.feature-card:nth-child(3) { animation-delay: 0.5s, 1.4s; }

/* Appear Right → Left */
@keyframes aboutSlideRTL {
    from {
        opacity: 0;
        transform: translateX(80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Soft Left ↔ Right movement */
@keyframes aboutFloatLR {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(14px);
    }
}

/* Title */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title-line {
    display: block;
    color: #ffffff;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.hero-title-gradient {
    background: linear-gradient(135deg, #6366f1, #ec4899, #14b8a6);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideInRight 0.8s ease-out 0.6s both, gradientShift 5s ease infinite;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Subtitle */
.hero-subtitle-wrapper {
    min-height: 60px;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 0.8s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #94a3b8;
    font-weight: 300;
}

.typed-text {
    color: #e2e8f0;
}

.cursor {
    display: inline-block;
    margin-left: 3px;
    animation: blink 1s infinite;
    color: #6366f1;
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

/* Tags */
.hero-tags {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-tag {
    padding: 0.6rem 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    color: #a5b4fc;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: tagFloat 3s ease-in-out infinite;
}

.hero-tag:nth-child(1) {
    animation-delay: 0s;
}

.hero-tag:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-tag:nth-child(3) {
    animation-delay: 1s;
}

@keyframes tagFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.hero-tag:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.6);
    color: #c7d2fe;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-tags {
        gap: 0.5rem;
    }

    .hero-tag {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}
/* Tablets */
@media (max-width: 991px) {
    html {
        font-size: 55%;
    }

    .header {
        padding: 1rem 2rem;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .hero-stats {
        gap: 3rem;
    }

    .about .row {
        padding: 0 2rem;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    html {
        font-size: 50%;
    }

    .header .fa-bars {
        display: block;
    }

    .header .navbar {
        position: fixed;
        top: 6.5rem;
        left: -100%;
        width: 100%;
        background: rgba(5, 8, 20, 0.98);
        backdrop-filter: blur(10px);
        border-top: 1px solid var(--nt-border-soft);
        padding: 2rem 0;
        transition: left 0.4s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    }

    .header .navbar.active {
        left: 0;
    }

    .header .navbar ul {
        flex-direction: column;
        gap: 2rem;
    }

    .header .navbar ul li {
        margin: 0;
    }

    .header .navbar ul li a {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-logo {
        width: 140px;
    }

    .hero-subtitle {
        font-size: 1.6rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-stats {
        gap: 2rem;
    }

    .hero-stat {
        padding: 1.5rem 2rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .about .row .content h3 {
        font-size: 2.5rem;
    }

    .about .row .content p {
        font-size: 1.6rem;
    }

    .contact-in {
        flex-direction: column;
        padding: 2rem;
    }

    .footer-links,
    .footer-contact {
        text-align: center;
        margin-bottom: 3rem;
    }

    .social-links {
        justify-content: center;
    }

    .back-to-top {
        width: 4.5rem;
        height: 4.5rem;
        bottom: 2rem;
        right: 2rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 450px) {
    html {
        font-size: 45%;
    }

    .header .logo img {
        height: 2.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-logo {
        width: 120px;
    }

    .hero-tags {
        flex-direction: column;
    }

    .hero-tag {
        width: 100%;
        max-width: 250px;
    }

    .team .card {
        width: 100%;
    }
}