 @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Georgian:wght@300;400;500;600;700&display=swap');
        
        :root {
          --primary: rgb(13, 148, 136);   /* ძირითადი ბრენდ ფერი – Teal 600 */
          --primary-dark: rgb(15, 118, 110); /* უფრო მუქი მწვანე – Teal 700 */
          --secondary: rgb(45, 212, 191); /* დამატებითი ნათელი ფერი – Teal 400 */
          --light: rgb(240, 253, 250);    /* ძალიან ღია მწვანე – Teal 50 */
          --dark: rgb(19, 78, 74);        /* ღრმა ფონი – Teal 900 */
          --gray: rgb(94, 234, 212);      /* აქ ნაცრისფრის მაგივრად ოდნავ ფერმკრთალი მწვანე */
          --success: rgb(16, 185, 129);   /* წარმატების ფერი – Emerald 500 */
        }

        body {
            font-family: 'Noto Sans Georgian', sans-serif;
            min-height: 100vh;
            margin: 0;
            padding: 0;
            color: var(--dark);
        }
        
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            height: 100vh;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            position: absolute;
            transform: translateY(-45%);
            transition: transform 0.3s ease;
            width: 100%;
            max-width: 400px;
            top: 50%;
        }
        
        .modal-overlay.active .modal-content {
            transform: translateY(-50%);
        }

        .glass-effect {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 16px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }
        
        .nav-glass {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        }
        
        .card {
            transition: all 0.3s ease;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .card-image {
            height: 200px;
            object-fit: contain;
            width: 100%;
            padding: 20px;
        }
        
        .btn-primary {
            background: var(--primary);
            color: white;
            padding: 10px 20px;
            border-radius: 10px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor:pointer;
        }
        
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(14, 165, 233, 0.3);
        }
        
        .btn-secondary {
            background: rgba(255, 255, 255, 0.8);
            color: var(--primary);
            border: 1px solid var(--primary);
            padding: 10px 20px;
            border-radius: 10px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            background: var(--primary);
            color: white;
        }
        
        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 2rem;
        }
        
        .section-title:after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .language-selector {
            position: relative;
            display: inline-block;
        }
        
        .language-button {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(13, 148, 136, 0.3);
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .language-button:hover {
            background: rgba(255, 255, 255, 0.9);
            border-color: rgba(13, 148, 136, 0.5);
        }
        
        .language-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: white;
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            margin-top: 4px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 100;
        }
        
        .language-dropdown.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .language-option {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 12px;
            cursor: pointer;
            transition: background 0.2s ease;
        }
        
        .language-option:hover {
            background: rgba(13, 148, 136, 0.1);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 1rem;
            background: rgba(14, 165, 233, 0.1);
            color: var(--primary);
        }
        
        .stat-card {
            padding: 1.5rem;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.7);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        @media (max-width: 768px) {
            .card-image {
                height: 160px;
            }
            
            .stat-number {
                font-size: 1.5rem;
            }
        }
        .bg{
          position: absolute;
          position: fixed;
          left: 0;
          top: 0;
          width: 100%;
          background-image: url(/assets/1.0.0/image/bg.jpg);
          background-position: left;
          background-repeat: no-repeat;
          background-size: cover;
          z-index: -10;
        }

        #coming_soon{
            height: 500px;
            background-image: url("/assets/1.0.0/image/website.png");
            background-position: center;
            background-repeat: no-repeat;
            width: 500px;
        }