
*, *::before, *::after {
    box-sizing: border-box !important;
    margin: 0;
    padding: 0;
}


@font-face {
    font-family: 'b1';
    src: url('../fonts/font-2.otf');
}

@font-face {
    font-family: 'dafont';
    src: url('../fonts/dafont.ttf');
}


body {
    font-family: 'dafont', Helvetica, Arial, sans-serif;
    background-color: #101921;
    color: #0f172a;
   overflow-x: hidden;
}


.lang-switcher {
    display: flex;
    align-items: center;
    gap: 12px; 
}


::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #142247;
    border: 0px solid transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #0575C1;
    border-radius: 0px;
    border: 0px solid transparent;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #04086F;
}


.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    border-radius: 4px;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}


.flag-img {
    width: 28px;  
    height: 20px;
    object-fit: cover; 
    border-radius: 2px; 
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); 
    transition: transform 0.2s ease;
}


.lang-btn:hover .flag-img {
    transform: scale(1.1);
}


.lang-btn.active {
    
    background-color: transparent; 
}


@media (max-width: 992px) {
    .lang-switcher {
        margin-top: auto;
        width: 100%;
        border-top: 1px solid #e2e8f0;
        padding-top: 20px;
        justify-content: flex-start; 
    }
}


.site-header {
    width: 100%;
    background-color: #242731;
    border-bottom: 1px solid #0575C1;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}


.nav-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    height: 80px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo a {
    height: 65px;
    display: flex;
    align-items: center;
    max-width: 150px;
}

.logo img {
    height: 65px; 
    
    display: block;
  
}


.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    margin-left: 60px; 
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0 auto; 
}

.nav-link {
    text-decoration: none;
    color: #d6dce3;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.25s ease;
    padding: 8px 0;
    position: relative;
}

/* ეფექტი მიტანისას (ლამაზი ხაზი ქვემოთ) */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #02AEE6;
    transition: width 0.25s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #02AEE6;
}


.lang-switcher {
    display: flex;
    gap: 8px;
}

.lang-btn {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    padding: 2px 2px;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.lang-btn.active, .lang-btn:hover {
    background-color: #252d34;
    color: #C99C37;
}


.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
}

.burger-menu .bar {
    width: 100%;
    height: 2px;
    background-color: #FFF;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===================================================
   რესპონსივი (Media Queries)
   =================================================== */
@media (max-width: 992px) {
    .burger-menu {
        display: flex; 
    }

    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 300px;
        height: 100%;
        background-color: #242731;
        box-shadow: -5px 0 25px rgba(15, 23, 42, 0.1);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 40px 40px 40px;
        gap: 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        margin-left: 0;
    }

    
    .main-nav.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 25px;
        margin: 0; 
        width: 100%;
    }

    .nav-link {
        font-size: 18px;
        display: block;
        width: 100%;
    }

    .lang-switcher {
        margin-top: auto; 
        width: 100%;
        border-top: 1px solid #e2e8f0;
        padding-top: 20px;
    }

    
    .burger-menu.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .burger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}




.hero-section {
    position: relative;
    width: 100%;
    height: 90vh; 
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}


.hero-video-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}


.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out; 
}


.hero-video.active {
    opacity: 1;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(33 150 243 / 21%) 0%, rgb(5 6 45) 100%);
    z-index: 2;
}


.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}


.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.dot {
    width: 25px;
    height: 15px;
    border-radius: 3px;
   
   backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px); 
 border: 1px solid rgba(255, 255, 255, 0.2); 
    
    transition: all 0.4s ease;
}

.dot.active {
    background: #02AEE6; 
    transform: scale(1.3);
}


@media (max-width: 768px) {
    .hero-section {
        height: 50vh; 
    }
    .hero-title {
        font-size: 28px;
    }
    .hero-subtitle {
        font-size: 15px;
    }
}



/* ===================================================
   🖤 მუქი და ელეგანტური ფუტერის სტილები
   =================================================== */
.site-footer {
background: 
    
    linear-gradient(0deg, #242731 0%, rgba(36, 39, 49, 0.8) 20%, rgba(19, 28, 36, 0) 60%),

    linear-gradient(90deg, rgba(36, 39, 49, 0.9) 0%, rgba(19, 28, 36, 0.4) 30%, rgba(19, 28, 36, 0) 50%),

    linear-gradient(270deg, rgba(36, 39, 49, 0.9) 0%, rgba(19, 28, 36, 0.4) 30%, rgba(19, 28, 36, 0) 50%),
  
    url('../images/foterbg.jpg');

background-size: cover;
background-position: center;
background-repeat: no-repeat;
    font-family: 'dafont';
    cursor: pointer;
}


.footer-top-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 24px;
    overflow: hidden;
    
}

/* გრიდი 3 სვეტისთვის */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.info-card {
            border: 1px solid #45484D;
    padding: 30px 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.01); 
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #2700D2;
    background-color: rgba(255, 255, 255, 0.03);
}


.info-icon-box {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}


.footer-svg {
    width: 24px;
    height: 24px;
    fill: #0575c1; 
}


.info-text-box h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-text-box p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 4px 0;
    color: #9ca3af;
}

.info-text-box p:last-child {
    margin-bottom: 0;
}

.info-text-box a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-text-box a:hover {
    color: #cda144;
}


.footer-bottom-bar {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    background-color: #242731; 
}

.footer-bottom-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.footer-copyright {
    color: #737373;
}

.footer-creator {
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 500;
}


.creator-highlight {
    color: #2700D2; 
    font-weight: 700;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 680px) {
    .footer-top-container {
        padding: 40px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr; 
        gap: 20px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

.maincatbg {
    position: relative;
    background: #242731; 
    min-height: 200px; 
    overflow: hidden; 
    z-index: 1;
}


.maincatbg::before,
.maincatbg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%; 
    height: 100%;
    z-index: -1;
}


.maincatbg::before {
    background: linear-gradient(135deg, #0575C1 40%, rgba(5, 117, 193, 0.8) 100%);
   
    clip-path: polygon(0 0, 100% 0, 100% 85%, 75% 90%, 50% 85%, 25% 95%, 0 85%);
    animation: fountainWave 4s ease-in-out infinite alternate;
}


.maincatbg::after {
    background: linear-gradient(135deg, #00d4ff 30%, rgba(232, 237, 245, 0) 70%);
    clip-path: polygon(0 0, 100% 0, 100% 90%, 80% 83%, 45% 93%, 20% 85%, 0 92%);
    opacity: 0.6;
    animation: fountainWave 6s ease-in-out infinite alternate-reverse;
}


@keyframes fountainWave {
    0% {
        transform: translateX(0) scaleY(1);
    }
    50% {
        transform: translateX(-25%) scaleY(1.05); 
    }
    100% {
        transform: translateX(-50%) scaleY(0.95);
    }
}
.main-categories-section {
    max-width: 1300px;
    width: 100%;
    margin: auto;
    padding: 80px 0;
   
}

.categories-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}


.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 34px;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 16px;
    color: #64748b;
}


.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 10px;
}


.category-card-item {
    position: relative;
    display: block;
    height: 250px; 
    border-radius: 5px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}


.category-card-item:hover {
    
    box-shadow: 0 12px 24px rgba(153, 163, 12, 0.15);
}


.category-card-img-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.category-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ფოტოს Zoom ეფექტი */
.category-card-item:hover .category-card-img-wrapper img {
    transform: scale(1.1);
}


.category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.55); 
    transition: background 0.3s ease;
    z-index: 2;
}


.category-card-item:hover .category-card-overlay {
    background: rgba(15, 23, 42, 0.65);
}


.category-card-center-info {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    justify-content: center; 
    align-items: center;    
    padding: 20px;
    text-align: center;
}

.category-card-center-info h3 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 8px;
}


.category-card-center-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #03A1DD; 
    transition: width 0.35s ease;
}


.category-card-item:hover .category-card-center-info h3::after {
    width: 60%; 
}


.no-categories-found {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px;
    color: #64748b;
    background: #ffffff;
    border-radius: 12px;
    border: 1px dashed #cbd5e1;
}




.contact-page-wrapper {
    padding: 60px 20px;
    
    min-height: 60vh;
}
.contact-container {
    max-width: 800px;
    margin: 0 auto;
}
.contact-page-header {
    text-align: center;
    margin-bottom: 40px;
}
.contact-page-header h2 {
    font-size: 28px;
    color: #FFF;
    margin-bottom: 10px;
}
.header-line {
    width: 60px;
    height: 3px;
    background-color: #007bff;
    margin: 0 auto;
}
.contact-form-holder {
    background: #242731;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #495057;
    font-size: 14px;
}
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #3e4041;
    border-radius: 6px;
    background: #242731;
    font-size: 15px;
    color: #fff;
    transition: border-color 0.2s;
}
.form-control:focus {
    outline: none;
    border-color: #007bff;
}
.contact-submit-btn {
    background-color: #3F51B5;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
        font-family: 'dafont';
}
.contact-submit-btn:hover {
    background-color: #007bff;
}

/* სტატუსების სტილი */
.alert-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}
.error-alert {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.success-alert {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}



.counters-section {
    padding: 80px 20px;
    width: 100%;
   
    background: linear-gradient(135deg, #131936 30%, #0575C1 70%);
    position: relative;
    overflow: hidden; 
    z-index: 1;
}


.counters-section.modern-animated-bg::before,
.counters-section.modern-animated-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    opacity: 0.8;
}


.counters-section.modern-animated-bg::before {
    background-image:
        radial-gradient(circle at 10% 20%, rgba(5, 117, 193, 0.4) 15%, transparent 16%),
        radial-gradient(circle at 80% 80%, rgba(232, 237, 245, 0.4) 10%, transparent 11%),
        linear-gradient(225deg, rgba(0, 212, 255, 0.1) 0%, transparent 40%);
    clip-path: polygon(0 15%, 100% 5%, 100% 85%, 0 95%);
    animation: driftShapes 12s ease-in-out infinite alternate;
}

/* ფენა 2: ნაწილაკების ნაკადი (Glow/Particle trails) */
.counters-section.modern-animated-bg::after {
    background-image:
        radial-gradient(circle at 50% 50%, #ffffff 1px, transparent 2px),
        radial-gradient(circle at 60% 30%, rgba(0, 212, 255, 0.6) 1px, transparent 2px);
    background-size: 50px 50px;
    opacity: 0.3;
    animation: streamParticles 6s linear infinite;
}


@keyframes driftShapes {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(-15%, 5%) rotate(5deg) scale(1.05);
    }
    100% {
        transform: translate(-25%, -5%) rotate(-2deg) scale(0.95);
    }
}


@keyframes streamParticles {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 100%;
    }
}


.modern-animated-bg .counter-box {
  
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.modern-animated-bg .counter-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(5, 117, 193, 0.3);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
}
.counters-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}


.counter-card {
    background: #142247;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px dashed #141414;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.counter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}


.counter-icon {
    font-size: 32px; 
    color: #FFF;  
    margin-bottom: 15px;
    display: inline-block;
}


.counter-number-wrapper {
    font-size: 42px;
    font-weight: 700;
    color: #FFF; 
    line-height: 1;
    margin-bottom: 10px;
    font-family: sans-serif; 
}

.counter-plus {
    color: #FFF; 
    margin-left: 2px;
}

/* სათაურები */
.counter-title {
    font-size: 15px;
    color: #FFF;
    margin: 0;
    font-weight: 500;
}

/* რესპონსივი */
@media (max-width: 768px) {
    .counters-section {
        padding: 50px 20px;
    }
    .counter-number-wrapper {
        font-size: 36px;
    }
}


/* ზოგადი კონტეინერები */
.about-page-wrapper {
    padding: 80px 20px;
    
    color: #334155;
    font-family: 'dafont';
}
.about-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px; 
}


.about-hero-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-subtitle {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    color: #3b82f6;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.about-hero-content h2 {
    font-size: 36px;
    color: #FFF;
    margin: 0 0 20px 0;
    font-weight: 700;
}
.about-lead {
    font-size: 18px;
    line-height: 1.6;
    color: #1e293b;
    font-weight: 500;
    margin-bottom: 20px;
}
.about-hero-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
}
.about-hero-image img {
    width: 100%;
    
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}


.about-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.meta-box {
        background: #131431;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #26436a;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}
.meta-icon {
    font-size: 28px;
    color: #FFF;
    margin-bottom: 20px;
}
.meta-box h3 {
    font-size: 22px;
    color: #FFF;
    margin: 0 0 15px 0;
}
.meta-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #515f72;
    margin: 0;
}


.section-title-wrapper {
    text-align: center;
    margin-bottom: 40px;
}
.section-title-wrapper h2 {
    font-size: 28px;
    color: #FFF;
    margin: 0 0 10px 0;
}
.title-line {
    width: 50px;
    height: 4px;
    background-color: #2700D2;
    margin: 0 auto;
    border-radius: 2px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.service-card {
    background: #131431;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #2196f38c;
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    border-color: #2700D2;
    cursor: pointer;
}
.service-icon {
    font-size: 26px;
    color: #FFF;
    margin-bottom: 15px;
}
.service-card h4 {
    font-size: 15px;
    color: #FFF;
    margin: 0;
    line-height: 1.5;
    font-weight: 600;
}


.why-us-banner {
    background: linear-gradient(135deg, #242731bc, #242731);
    color: #ffffff;
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.why-us-content h3 {
    font-size: 22px;
    margin: 0 0 15px 0;
    color: #2700D2;
    display: flex;
    align-items: center;
    gap: 10px;
}
.why-us-content p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    color: #cbd5e1;
}


@media (max-width: 992px) {
    .about-hero-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-hero-image img {
        height: 300px;
    }
    .about-meta-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 576px) {
    .why-us-banner {
        padding: 30px;
    }
}