  :root {
            --primary-blue: #00d9ff;
            --neon-blue: #0066ff;
            --electric-purple: #9d4edd;
            --cyan-accent: #00f5d4;
            --dark-bg: #0a0a1a;
            --darker-bg: #050510;
            --card-bg: rgba(16, 18, 27, 0.7);
            --glass-bg: rgba(255, 255, 255, 0.05);
            --text-light: #f8f9fa;
            --text-gray: #b0b7c3;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--darker-bg);
            color: var(--text-light);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, .futuristic {
            font-family: 'Orbitron', sans-serif;
            font-weight: 600;
        }
        
        section {
            position: relative;
            padding: 100px 5%;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Particle Background */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 25px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(10, 10, 26, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 217, 255, 0.1);
        }
        
        .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-img {
    height: 50px !important; /* ზუსტად განსაზღვრე სიმაღლე */
    width: auto !important;   /* სიგანე ავტომატურად გასწორდება */
    display: inline-block;
    vertical-align: middle;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    
    /* გრადაციის ეფექტი გადაგვაქვს აქ */
    background: linear-gradient(90deg, var(--primary-blue), var(--electric-purple), var(--cyan-accent), var(--primary-blue));
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    
    /* ანიმაცია */
    animation: gradientFlow 5s linear infinite;
    display: inline-block; /* აუცილებელია გრადაციის სწორი ჩვენებისთვის */
}

/* თუ ანიმაციის Keyframes გაკლდა, ესეც დაამატე */
@keyframes gradientFlow {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

@keyframes gradientFlow {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}
        
        .nav-links {
            display: flex;
            gap: 40px;
           
        }
        
        .nav-links a {
            color: var(--text-gray);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--primary-blue);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-blue), var(--cyan-accent));
            transition: width 0.3s;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 30%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 70% 70%, rgba(157, 78, 221, 0.1) 0%, transparent 50%);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1000px;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, var(--primary-blue), var(--cyan-accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        
        .hero-subtitle {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--text-light);
            font-weight: 300;
            max-width: 800px;
            line-height: 1.6;
        }
        
        .hero-tagline {
            font-size: 1.2rem;
            color: var(--text-gray);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button {
            display: inline-block;
            padding: 18px 40px;
            background: linear-gradient(90deg, var(--neon-blue), var(--electric-purple));
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
            box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
        }
        
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 30px rgba(0, 217, 255, 0.8);
        }
        
        .cta-button::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -60%;
            width: 40%;
            height: 200%;
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(30deg);
            transition: all 0.5s;
        }
        
        .cta-button:hover::after {
            left: 120%;
        }
        
        /* Floating Data Visualizations */
        .floating-viz {
            position: absolute;
            z-index: 1;
            opacity: 0.6;
        }
        
        .viz-1 {
            top: 20%;
            left: 10%;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: radial-gradient(circle, var(--primary-blue) 0%, transparent 70%);
            animation: float 15s infinite ease-in-out;
        }
        
        .viz-2 {
            top: 60%;
            right: 15%;
            width: 150px;
            height: 150px;
            background: conic-gradient(var(--electric-purple), var(--cyan-accent), var(--neon-blue), var(--electric-purple));
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            animation: float 12s infinite ease-in-out reverse;
        }
        
        .viz-3 {
            bottom: 20%;
            left: 20%;
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, var(--cyan-accent), var(--primary-blue));
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
            animation: float 18s infinite ease-in-out;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-blue), var(--cyan-accent));
        }
        
        .section-subtitle {
            color: var(--text-gray);
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 40px 30px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 217, 255, 0.1);
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(157, 78, 221, 0.05));
            opacity: 0;
            transition: opacity 0.4s;
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 217, 255, 0.2);
            border-color: rgba(0, 217, 255, 0.3);
        }
        
        .service-card:hover::before {
            opacity: 1;
        }
        
       .service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;         /* შიგთავსის გასაცენტრებლად */
    align-items: center;   /* ვერტიკალური ცენტრი */
    justify-content: center; /* ჰორიზონტალური ცენტრი */
    
    /* მნიშვნელოვანი ცვლილება აქ: */
    margin: 0 auto 25px auto; /* auto გვერდებზე დასვამს კონტეინერს შუაში */
    
    background: rgba(0, 217, 255, 0.1);
    position: relative;
    overflow: hidden; /* თუ შიგნით რაიმე ეფექტი გაქვს */
}

.service-icon i {
    font-size: 2.2rem;
    background: linear-gradient(90deg, var(--primary-blue), var(--cyan-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block; /* რომ ხაზის სიმაღლემ არ აურიოს */
    line-height: 1;
}
        
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--text-light);
            text-align: center;
        }
        
        .service-card p {
            color: var(--text-gray);
            text-align: center;
        }
        
        /* Why Choose Us */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .why-card {
           
            text-align: center;
            padding: 40px 30px;
            background: var(--card-bg);
            border-radius: 20px;
            border: 1px solid rgba(0, 217, 255, 0.1);
            transition: all 0.4s;
        }
        
        .why-card:hover {
            border-color: rgba(0, 217, 255, 0.3);
            box-shadow: 0 15px 30px rgba(0, 217, 255, 0.1);
        }
        
        .why-icon {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, var(--primary-blue), var(--electric-purple));
            font-size: 2.5rem;
        }
        
        .why-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .why-card p {
            color: var(--text-gray);
            margin-bottom: 25px;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(90deg, var(--primary-blue), var(--cyan-accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-family: 'Orbitron', sans-serif;
        }
        
        /* Case Studies */
        .case-studies {
            position: relative;
            overflow: hidden;
        }
        
        .case-studies::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(157, 78, 221, 0.05) 0%, transparent 50%);
        }
        
        .case-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .case-card {
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(0, 217, 255, 0.1);
            transition: all 0.4s;
        }
        
        .case-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 217, 255, 0.2);
        }
        
        .case-header {
            padding: 30px;
            background: linear-gradient(90deg, rgba(0, 217, 255, 0.1), rgba(157, 78, 221, 0.1));
            text-align: center;
        }
        
        .case-metric {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            background: linear-gradient(90deg, var(--cyan-accent), var(--primary-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .case-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }
        
        .case-body {
            padding: 30px;
        }
        
        .case-body p {
            color: var(--text-gray);
            margin-bottom: 20px;
        }
        
        .client-logo {
            height: 40px;
            filter: blur(3px);
            opacity: 0.7;
            margin-top: 20px;
        }
        
        /* Pricing */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .pricing-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 40px 30px;
            border: 1px solid rgba(0, 217, 255, 0.1);
            position: relative;
            overflow: hidden;
            transition: all 0.4s;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            border-color: rgba(0, 217, 255, 0.5);
            box-shadow: 0 20px 40px rgba(0, 217, 255, 0.2);
        }
        
        .pricing-card.popular {
            border-color: rgba(0, 217, 255, 0.5);
            box-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
        }
        
        .popular-badge {
            position: absolute;
            top: 20px;
            right: -30px;
            background: linear-gradient(90deg, var(--neon-blue), var(--electric-purple));
            color: white;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .pricing-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .pricing-title {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .price {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 5px;
            background: linear-gradient(90deg, var(--primary-blue), var(--cyan-accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .pricing-period {
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        
        .pricing-features {
            margin: 30px 0;
        }
        
        .feature-item {
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--text-gray);
            display: flex;
            align-items: center;
        }
        
        .feature-item i {
            color: var(--cyan-accent);
            margin-right: 10px;
        }
        
        .pricing-button {
            display: block;
            text-align: center;
            padding: 15px;
            background: linear-gradient(90deg, var(--neon-blue), var(--electric-purple));
            color: white;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 20px;
            transition: all 0.3s;
        }
        
        .pricing-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 217, 255, 0.3);
        }
        
        /* Contact */
        .contact-section {
            background: var(--dark-bg);
            position: relative;
            overflow: hidden;
        }
        
        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 70% 30%, rgba(0, 217, 255, 0.05) 0%, transparent 50%);
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .contact-form {
            background: var(--card-bg);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(0, 217, 255, 0.1);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--text-gray);
        }
        
        .form-control {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(0, 217, 255, 0.2);
            border-radius: 10px;
            color: var(--text-light);
            font-family: 'Inter', sans-serif;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(90deg, var(--neon-blue), var(--electric-purple));
            border: none;
            border-radius: 10px;
            color: white;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .submit-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 217, 255, 0.3);
        }
        
        .contact-info {
            padding-left: 40px;
        }
        
        .contact-method {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-blue), var(--electric-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 1.5rem;
        }
        
        .contact-text h4 {
            margin-bottom: 5px;
            font-size: 1.2rem;
        }
        
        .contact-text p {
            color: var(--text-gray);
        }
        
        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 40px;
        }
        
        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 1.2rem;
            transition: all 0.3s;
        }
        
        .social-link:hover {
            background: linear-gradient(135deg, var(--primary-blue), var(--electric-purple));
            transform: translateY(-5px);
        }
        
        /* Footer */
        footer {
            background: var(--darker-bg);
            padding: 60px 5% 30px;
            border-top: 1px solid rgba(0, 217, 255, 0.1);
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(90deg, var(--primary-blue), var(--electric-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .copyright {
            text-align: center;
            color: var(--text-gray);
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .contact-info {
                padding-left: 0;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.4rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .case-grid, .pricing-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s, transform 0.8s;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--text-gray);
            font-size: 0.9rem;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .scroll-indicator::after {
            content: '';
            display: block;
            width: 1px;
            height: 50px;
            background: linear-gradient(to bottom, var(--primary-blue), transparent);
            margin-top: 10px;
            animation: scrollPulse 2s infinite;
        }
        
        @keyframes scrollPulse {
            0%, 100% { opacity: 0.2; }
            50% { opacity: 1; }
        }

        /* SUBMENU */
        /* მთავარი კონტეინერი */
.has-submenu {
    position: relative; /* რომ სუბმენიუ მასზე გასწორდეს */
}

/* სუბმენიუს საწყისი სტილი */
.submenu {
    position: absolute;
    top: 100%; /* პირდაპირ მენიუს ქვემოთ */
    left: 0;
    background: var(--card-bg); /* შენი საიტის მუქი ფონი */
    min-width: 200px;
    padding: 10px 0;
    border-radius: 12px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    backdrop-filter: blur(15px);
    display: none; /* თავიდან დამალულია */
    z-index: 1000;
}

/* სუბმენიუს შიდა ბმულები */
.submenu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: none;
    transition: background 0.3s;
}

.submenu a:hover {
    background: rgba(0, 217, 255, 0.1);
    color: var(--primary-blue);
}

/* მაუსის მიტანისას გამოჩენა */
.has-submenu:hover .submenu {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* მობილურისთვის */
@media (max-width: 992px) {
    .submenu {
        position: static; /* მობილურზე აღარ უნდა იყოს "მოტივტივე" */
        display: none; 
        background: transparent;
        border: none;
        padding-left: 20px; /* ოდნავ შეწეული რომ იყოს */
    }
    
    .has-submenu.active .submenu {
        display: block;
    }
}

/* submenu h4*/
.submenu-column h4 {
    padding-left: 10px;
    font-family: 'Google Sans Code', sans-serif; /* აქედან იცვლება ფონტი */
    font-size: 0.7rem;                       /* აქედან - ზომა */
    color: var(--primary-blue);              /* აქედან - ფერი */
    font-weight: 700;                        /* აქედან - სისქე */
    text-transform: uppercase;               /* ყველაფერი იქნება დიდი ასოებით */
    letter-spacing: 0.5px;                     /* ასოებს შორის დაშორება */
    margin-bottom: 15px;
    margin-top: 15px;                     /* ქვედა დაშორება ბმულებამდე */
}

/* whatsapp link */
/* ვაუქმებთ ხაზს და ფერის ცვლილებას ყველა საკონტაქტო ლინკისთვის */
.contact-method-link {
    text-decoration: none !important; /* ხაზის გაუქმება */
    color: inherit;                  /* მშობელი ელემენტის ფერის შენარჩუნება */
    display: block;                  /* რომ მთლიანი ბლოკი იყოს დაკლიკვადი */
}

/* თუ გინდა, რომ ტექსტი მაინც თეთრი (ან შენი დიზაინის შესაბამისი) დარჩეს */
.contact-method-link .contact-text h4, 
.contact-method-link .contact-text p {
    text-decoration: none;
    color: #ffffff; /* აქ ჩაწერე შენი ტექსტის სასურველი ფერი */
}
.contact-method-link:hover .contact-method {
    background: rgba(255, 255, 255, 0.1); /* ოდნავ განათება */
    border-radius: 10px;
    transition: 0.3s all ease;
}

/* საკონტაქტო მეთოდების ლინკები */
.contact-method-link, 
.social-link {
    text-decoration: none !important; /* ხაზის გაუქმება */
    outline: none;                   /* ჩარჩოს მოცილება დაჭერისას */
}

/* კონკრეტულად სოციალური ლინკებისთვის */
.social-links .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    color: inherit; /* ფერი დარჩეს ისეთი, როგორიც მიუთითე */
}

/* თუ გინდა, რომ მიტანისას (hover) ფერი მაინც შეიცვალოს, ოღონდ ხაზის გარეშე */
.social-link:hover {
    text-decoration: none !important;
    opacity: 0.8; /* ოდნავ გაუფერულება ეფექტისთვის */
}

 
.buttonv2 {
    display: inline-block;
    padding: 10px 22px; /* უფრო პატარა ზომა ნავიგაციისთვის */
    background: linear-gradient(90deg, var(--neon-blue), var(--electric-purple));
    color: white !important; /* რომ მენიუს ფერმა არ გადაფაროს */
    border-radius: 25px;    /* ოდნავ ნაკლებად მომრგვალებული */
    text-decoration: none !important;
    font-weight: 600;
    font-size: 0.9rem;      /* უფრო პატარა შრიფტი */
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.4);
    border: none;
    cursor: pointer;
}

.buttonv2:hover {
    transform: translateY(-2px); /* ნაკლები მოძრაობა */
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
}

/* პრიალა ეფექტი (Shine effect) */
.buttonv2::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -70%;
    width: 30%;
    height: 200%;
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(30deg);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.buttonv2:hover::after {
    left: 130%;
}

/* მობილური ვერსიისთვის (Media Query) */
@media (max-width: 768px) {
    .buttonv2 {
        display: block;      /* ბლოკური, რომ მარჟინებმა იმუშაოს */
        margin: 10px auto;   /* ცენტრში დასმა (თუ მენიუ ცენტრშია) */
        padding: 8px 18px;   /* მობილურზე კიდევ ოდნავ დაპატარავება */
        font-size: 0.85rem;
        text-align: center;
    }
}

.highlight {
    color:#00f5d4; /* ან შენი სათაურის ფერი */
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        padding: 0 15px; /* გვერდებიდან დაშორება, რომ ეკრანს არ მიეკროს */
    }
    
    .section-title {
        font-size: 2rem; /* სათაურიც ოდნავ დააპატარავე */
    }
}

/* კონტეინერი ღილაკისთვის */
.service-action {
    margin-top: 25px;
    text-align: center; /* ღილაკის გაცენტრება ბარათში */
}

/* სპეციალური კლასი პატარა ღილაკისთვის */
.btn-small {
    padding: 8px 20px !important;
    font-size: 0.85rem !important;
    min-width: 120px;
}

/* ბარათის (Service Card) სტილი რომ დაიხვეწოს */
.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* ეს უზრუნველყოფს, რომ ღილაკები ყოველთვის ერთ ხაზზე იყოს ბოლოში */
    height: 100%; /* თუ ბარათებს განსხვავებული ტექსტის რაოდენობა აქვთ */
}

/* industries*/


/* Industries Grid Section */
.industries-grid-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
}

/* Brick Layout */
.brick-layout {
    max-width: 1200px;
    margin: 50px auto 0;
}

.brick-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.brick-item {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(0, 217, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.brick-item:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 217, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.15);
}

.brick-large {
    flex: 2;
    min-height: 250px;
}

.brick-small {
    flex: 1;
    min-height: 250px;
}

.brick-content {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.brick-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(157, 78, 221, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.brick-item:hover::before {
    opacity: 1;
}

/* Brick Content Styling */
.brick-icon {
    font-size: 2.5rem;
    color: #00d9ff;
    margin-bottom: 20px;
}

.brick-title {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.brick-description {
    color: #b0b0c0;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.brick-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #00f5d4;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #8a8aa0;
    display: block;
}

.brick-link {
    display: inline-flex;
    align-items: center;
    color: #00d9ff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 0;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    padding-top: 20px;
    margin-top: auto;
}

.brick-link:hover {
    color: #00f5d4;
}

.brick-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.brick-link:hover i {
    transform: translateX(5px);
}

/* Alternate colors for different industries */
.brick-row:nth-child(odd) .brick-large {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.03), rgba(0, 217, 255, 0.01));
}

.brick-row:nth-child(even) .brick-large {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.03), rgba(157, 78, 221, 0.01));
}

.brick-row:nth-child(odd) .brick-small {
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.03), rgba(0, 245, 212, 0.01));
}

.brick-row:nth-child(even) .brick-small {
    background: linear-gradient(135deg, rgba(255, 111, 97, 0.03), rgba(255, 111, 97, 0.01));
}

/* Color variations for different industries */
.brick-item:nth-child(1) .brick-icon { color: #00d9ff; }
.brick-item:nth-child(2) .brick-icon { color: #9d4edd; }
.brick-item:nth-child(3) .brick-icon { color: #00f5d4; }
.brick-item:nth-child(4) .brick-icon { color: #ff6f61; }
.brick-item:nth-child(5) .brick-icon { color: #ffd166; }
.brick-item:nth-child(6) .brick-icon { color: #06d6a0; }
.brick-item:nth-child(7) .brick-icon { color: #118ab2; }
.brick-item:nth-child(8) .brick-icon { color: #ef476f; }
.brick-item:nth-child(9) .brick-icon { color: #8ac926; }
.brick-item:nth-child(10) .brick-icon { color: #7209b7; }

/* How We Work Section */
.how-we-work-section {
    padding: 100px 0;
    background: rgba(5, 5, 16, 0.7);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 217, 255, 0.3);
    box-shadow: 0 10px 20px rgba(0, 217, 255, 0.1);
}

.step-number {
    font-size: 3rem;
    font-weight: bold;
    color: rgba(0, 217, 255, 0.2);
    margin-bottom: 20px;
}

.process-step h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.process-step p {
    color: #b0b0c0;
    line-height: 1.6;
}



/* Responsive Design */
@media (max-width: 992px) {
    .brick-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .brick-large,
    .brick-small {
        flex: none;
        width: 100%;
        min-height: 300px;
    }
    
    .brick-content {
        padding: 30px;
    }
    
    .brick-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .industries-grid-section,
    .how-we-work-section,
    .case-studies-section {
        padding: 60px 0;
    }
    
    .brick-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-value {
        font-size: 1.8rem;
    }
    
    .case-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .brick-content {
        padding: 20px;
    }
    
    .brick-title {
        font-size: 1.3rem;
    }
    
    .brick-description {
        font-size: 0.95rem;
    }
}

/* Global: Service hero mobile padding fix */
@media (max-width: 560px){
  .service-hero .container{
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .service-hero-content{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .service-hero .breadcrumbs{
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media (max-width: 560px){
  .service-hero-grid,
  .service-hero-inner{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .service-hero h1,
  .service-hero p{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/*pricing addition*/
/* Calculator Specific Styles */
.calculator-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .calculator-container {
        grid-template-columns: 1fr !important;
    }
    
    .price-summary {
        position: static !important;
        margin-top: 40px;
    }
}

.service-option {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s;
    cursor: pointer;
}

.service-option:hover {
    border-color: rgba(0, 217, 255, 0.3);
    background: rgba(0, 217, 255, 0.05);
    transform: translateY(-2px);
}

.service-option.selected {
    border-color: var(--primary-blue);
    background: rgba(0, 217, 255, 0.08);
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.1);
}

.price-tag {
    background: linear-gradient(90deg, var(--neon-blue), var(--electric-purple));
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    color: var(--text-light);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.qty-btn:hover {
    background: rgba(0, 217, 255, 0.2);
    transform: scale(1.1);
}

.qty-display {
    width: 40px;
    text-align: center;
    color: var(--text-light);
    font-weight: 600;
}

.price-summary {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    position: sticky;
    top: 100px;
    height: fit-content;
}

#selected-services {
    margin-bottom: 25px;
    max-height: 300px;
    overflow-y: auto;
}

.selected-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.selected-item:last-child {
    border-bottom: none;
}

.selected-item-name {
    color: var(--text-light);
    font-size: 0.9rem;
}

.selected-item-price {
    color: var(--cyan-accent);
    font-weight: 600;
}

.remove-item {
    color: #ff6b6b;
    cursor: pointer;
    margin-left: 10px;
    font-size: 0.9rem;
}

.notice-box {
    margin-top: 60px;
    padding: 25px;
    background: rgba(157, 78, 221, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(157, 78, 221, 0.2);
}

@media (max-width: 768px) {
    .service-option {
        padding: 15px;
    }
    
    .service-option > div {
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .price-tag {
        margin-top: 10px;
        margin-left: 0 !important;
    }
}


