  :root {
            --accent: #00f2ff; /* Kiber mavi */
            --bg: #05070a;
            --card-bg: rgba(255, 255, 255, 0.03);
            --border: rgba(255, 255, 255, 0.08);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg);
            color: #ffffff;
            overflow-x: hidden;
        }

        .glow {
            position: fixed; width: 40vw; height: 40vw;
            background: radial-gradient(circle, rgba(0, 242, 255, 0.05) 0%, transparent 70%);
            z-index: -1; pointer-events: none;
        }

        header {
            display: flex; justify-content: space-between; align-items: center;
            padding: 15px 10%;
            position: fixed; width: 100%; top: 0;
            backdrop-filter: blur(20px); z-index: 1000; border-bottom: 1px solid var(--border);
        }

        .logo-img {
            height: 100px;
            width: auto;
            display: block;
        }

        nav a { color: #8a8f98; text-decoration: none; margin-left: 25px; font-size: 0.9rem; font-weight: 600; transition: 0.3s; }
        nav a:hover { color: var(--accent); }

        .hero {
            height: 100vh; display: flex; flex-direction: column;
            justify-content: center; align-items: center; text-align: center;
            background: radial-gradient(circle at bottom, #10141d 0%, var(--bg) 100%);
        }
        .hero h1 { 
            font-family: 'Space Grotesk', sans-serif; font-size: clamp(3rem, 8vw, 5.5rem); 
            line-height: 1.1; margin-bottom: 20px; font-weight: 800;
        }
        .hero p { color: #8a8f98; max-width: 650px; font-size: 1.2rem; margin-bottom: 40px; }

        section { padding: 100px 10%; }
        .tag { color: var(--accent); text-transform: uppercase; letter-spacing: 3px; font-size: 0.8rem; font-weight: 700; display: block; margin-bottom: 15px; }
        h2 { font-size: 3rem; font-family: 'Space Grotesk', sans-serif; margin-bottom: 60px; }

        /* --- DÜYMƏ STİLİ --- */
        .more-container {
            display: flex;
            justify-content: center;
            margin-top: 50px;
        }

        .btn-more {
            padding: 15px 35px;
            background: transparent;
            color: var(--accent);
            border: 1px solid var(--accent);
            border-radius: 50px;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-more:hover {
            background: var(--accent);
            color: #000;
            box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
            transform: translateY(-3px);
        }

        .btn-more i {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .btn-more:hover i {
            transform: translateX(5px);
        }

        .fire-text{
            font-size:20px; font-weight:200; text-transform:uppercase;
            letter-spacing:5px; color:#fff; animation: burn 1.5s infinite alternate;
        }

        @keyframes burn{
            0%{ text-shadow: 0 0 5px #fff, 0 0 10px #0e5559, 0 0 20px #006d83, 0 0 30px #7fdbd8, 0 0 40px #06eafb; }
            100%{ text-shadow: 0 0 5px #fff, 0 0 15px #ffffff, 0 0 25px #ffffff, 0 0 35px #ffffff, 0 0 50px #fff5f5; }
        }

        .service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 100px; }
        .service-detail:nth-child(even) { direction: rtl; }
        .service-detail:nth-child(even) .text-box { direction: ltr; }
        .text-box h3 { font-size: 2.2rem; margin-bottom: 20px; color: var(--accent); }
        .text-box p { color: #8a8f98; font-size: 1.1rem; line-height: 1.8; margin-bottom: 25px; }
        .feature-list { list-style: none; }
        .feature-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 12px; color: #d1d5db; }
        .feature-list i { color: var(--accent); font-size: 0.9rem; }
        .image-placeholder {
            background: linear-gradient(45deg, #111, #1a1d24);
            aspect-ratio: 16/10; border-radius: 24px; border: 1px solid var(--border);
            display: flex; align-items: center; justify-content: center;
        }
        .image-placeholder i { font-size: 5rem; opacity: 0.2; color: var(--accent); }

        .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
        .team-card {
            background: var(--card-bg); border: 1px solid var(--border);
            padding: 40px 20px; border-radius: 24px; text-align: center; transition: 0.4s;
        }
        .team-card:hover { border-color: var(--accent); transform: translateY(-10px); }
        .team-img {
            width: 120px; height: 120px; border-radius: 50%;
            background: #111; margin: 0 auto 20px; border: 2px solid var(--accent); object-fit: cover;
        }
        .team-card h4 { font-size: 1.2rem; margin-bottom: 8px; font-family: 'Space Grotesk', sans-serif; }
        .team-card span { color: var(--accent); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; }

        /* --- CAROUSEL STİLLƏRİ --- */
        .partners-carousel {
            width: 100%;
            overflow: hidden;
            padding: 40px 0;
            position: relative;
            display: flex;
        }

        .partners-track {
            display: flex;
            width: calc(250px * 8); /* 4 orijinal + 4 dublikat loqo */
            animation: scroll 20s linear infinite;
            align-items: center;
            gap: 80px;
        }

        .partners-track img {
            height: 45px;
            width: auto;
            filter: grayscale(1);
            opacity: 0.5;
            transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Siçan üzərinə gələndə BÜTÜN loqolar canlansın */
        .partners-track:hover img {
            filter: grayscale(0);
            opacity: 1;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-250px * 4)); }
        }

        /* --- Detallı Footer Stili --- */
        .main-footer {
            background: #080a0f;
            border-top: 1px solid var(--border);
            padding: 80px 10% 30px;
            color: #8a8f98;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-col h4 {
            color: #fff;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 30px;
            height: 2px;
            background: var(--accent);
        }

        .footer-about img {
            height: 80px;
            margin-bottom: 20px;
            filter: brightness(1.2);
        }

        .footer-about p {
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 12px;
        }

        .footer-links ul li a {
            color: #8a8f98;
            text-decoration: none;
            transition: 0.3s;
            font-size: 0.95rem;
        }

        .footer-links ul li a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

        .footer-contact li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .footer-contact i {
            color: var(--accent);
        }

        .newsletter p {
            font-size: 0.9rem;
            margin-bottom: 20px;
        }

        .subscribe-form {
            display: flex;
            gap: 10px;
        }

        .subscribe-form input {
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--border);
            padding: 12px 15px;
            border-radius: 8px;
            color: #fff;
            flex: 1;
            outline: none;
        }

        .subscribe-form button {
            background: var(--accent);
            border: none;
            padding: 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.3s;
        }

        .subscribe-form button:hover {
            opacity: 0.8;
            transform: translateY(-2px);
        }

        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            width: 35px;
            height: 35px;
            background: rgba(255,255,255,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: #fff;
            text-decoration: none;
            transition: 0.3s;
        }

        .social-icons a:hover {
            background: var(--accent);
            color: #000;
        }

        @media (max-width: 1024px) {
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 600px) {
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
        }

        @media (max-width: 968px) {
            header { padding: 15px 5%; }
            .service-detail { grid-template-columns: 1fr; gap: 40px; }
            .service-detail:nth-child(even) { direction: ltr; }
            .hero h1 { font-size: 3.5rem; }
            footer { flex-direction: column; gap: 30px; text-align: center; }
            nav { display: none; }
        }