
@font-face {
    font-family: 'b1';
    src: url('../fonts/font-2.otf');
}

@font-face {
    font-family: 'dafont';
    src: url('../fonts/dafont.ttf');
}



:root {
    --primary: #141414;
    --dark: #0f172a;
    --white: #141414;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; 
    padding: 0;
       box-sizing: border-box !important;
    font-family: 'dafont', sans-serif;
    
 }

body { 
 background-image: radial-gradient( circle 476px at 54.8% 51.5%,  rgba(168,229,253,1) 0%, rgba(244,244,254,1) 42.3%, rgba(244,244,254,1) 100.2% );
color: #141144;
}

/* ჰეადერის ფონი (100%) */
.headerbg {
    width: 100%;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #dadada;

}

/* შიდა კონტეინერი (1300px) */
.header-wrapper {
    max-width: 1300px;
    height: 70px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 200px 1fr 200px; 
    align-items: center;
}

/* ლოგო */
.header-logo__link {
    max-width: 130px;
    height: 70px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 1px;
}

.header-logo__link  img{
width: 100%;
height: 100%;
}

/* ცენტრალური მენიუ */
.header-nav__list {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 35px;
}

.header-nav__link {
    text-decoration: none;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    opacity: 0.7;
    transition: var(--transition);
}

.header-nav__link:hover {
    opacity: 1;
    color: var(--primary);
}

/* მარჯვენა მხარე */
.header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.btn-login {
    padding: 10px 24px;
    background: #033AC5;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-login:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4); }

/* ბურგერ ღილაკი (დესკტოპზე დამალული) */
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger-btn__line {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
}

/* სიდებარი (გვერდითა მენიუ) */
.sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background: #ffffff;
    z-index: 1000;
    transition: var(--transition);
    padding: 30px;
    
}

.sidebar--active { left: 0; }

.sidebar__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar__title { font-size: 20px; font-weight: 700; color: var(--primary); }

.close-btn {
    background: none;
    border: none;
    color: #141414;
    font-size: 32px;
    cursor: pointer;
}

.sidebar__list { list-style: none; }

.sidebar__link {
    display: block;
    padding: 15px 0;
    color: #141414;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
            border-bottom: 1px #E8EFF8 solid;
}

.sidebar__link i {
 margin-right: 15px;
 width: 20px; 
 color: var(--primary); }

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    z-index: 999;
}

.sidebar-overlay--active { display: block; }

/* რესპონსივი */
@media (max-width: 1024px) {
    .header-nav { display: none; }
    .header-wrapper { grid-template-columns: 1fr 1fr; }
    .burger-btn { display: flex; }
    .btn-login { display: none; } 
}



/* ფუტერის ძირითადი სტილი */
.main-footer {
    background-color: #f8fafc; 
    color: #1e293b;
    margin-top: 0px;
}

.container {

    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
      margin-bottom: 20px;
}

/* ზედა სექცია - Grid სისტემით */
.footer-top {
    padding: 40px 0;
    border-top: 1px #eee solid;
    border-bottom: 1px solid #e2e8f0;
}

.footer-top__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-card__icon {
    width: 50px;
    height: 50px;
    background: #141414;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 20px;
}

.contact-card__label {
    display: block;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    color: #0f172a;
}

.contact-card__text {
    font-size: 14px;
    color: #64748b;
    margin-top: 2px;
}

/* შუა სექცია */
.footer-mid {
    padding: 30px 0;
    border-bottom: 1px solid #e2e8f0;
}

.footer-mid__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-nav__list {
    display: flex;
    list-style: none;
    gap: 25px;
}

.footer-nav__link {
    text-decoration: none;
    color: #0f172a;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.3s;
    position: relative;
}

.footer-nav__link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 25px;
    height: 3px;
    background: #2563eb;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    text-decoration: none;
    transition: 0.3s;
}

.social-icon:hover {
    background: #2563eb;
    color: white;
}

/* ქვედა სექცია */
.footer-bottom {
    padding: 20px 0;
    background: #f1f5f9;
}

.footer-bottom__wrapper {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
}

.footer-dev__brand {
    color: #2563eb;
    font-weight: 800;
}

/* რესპონსივი */
@media (max-width: 992px) {
    .footer-top__wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-mid__wrapper {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .footer-nav__list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-bottom__wrapper {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}




.hero {
    min-height: calc(100vh - 85px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
   background-image: radial-gradient( circle farthest-corner at 10% 20%,  rgba(234,249,249,0.67) 0.1%, rgba(239,249,251,0.63) 90.1% );
}

.hero::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;

    filter: blur(100px);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 0;
    animation: moveBlob 15s infinite alternate;
}

.hero::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(29, 78, 216, 0.05) 100%);
    filter: blur(80px);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    z-index: 0;
    animation: moveBlob 20s infinite alternate-reverse;
}


.hero__bg-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#e2e8f0 1.5px, transparent 1.5px);
    background-size: 40px 40px; 
    mask-image: radial-gradient(ellipse at center, black, transparent 80%);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}


.hero__wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* ანიმაცია ფონის ლაქებისთვის */
@keyframes moveBlob {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, 100px) scale(1.1); }
    66% { transform: translate(-80px, 50px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}


.hero__title {
    font-size: 4.5rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.2;
    
}

.hero__title--gradient {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__title--gradient {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__description {
    font-size: 1.2rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}


.hero__actions {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn--primary {
    background: #3b82f6;
    color: white;
}

.btn--primary:hover {
    background: #2563eb;
    transform: translateY(-3px);
}

.btn--outline {
    border: 2px solid #334155;
    color: #141414;
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #3b82f6;
}


.hero__visual {
    position: relative;
}

.code-card {
    background: rgb(15, 23, 42);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: floating 6s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

.code-card__header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.code-card__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.code-card__dot:nth-child(1) { background: #ff5f56; }
.code-card__dot:nth-child(2) { background: #ffbd2e; }
.code-card__dot:nth-child(3) { background: #27c93f; }

.code-card__body code {
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.8;
}

/* კოდის ფერები */
.code-tag { color: #c678dd; }
.code-name { color: #e06c75; }
.code-string { color: #98c379; }
.code-keyword { color: #d19a66; }

/* ანიმაციები */
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hero__blob {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 400px;
    height: 400px;
    
    filter: blur(50px);
    z-index: 1;
}




/* პროექტების სექცია */
.projects-section {
    padding: 10px 0;
background-image: radial-gradient( circle 476px at 54.8% 51.5%,  rgba(168,229,253,1) 0%, rgba(244,244,254,1) 42.3%, rgba(244,244,254,1) 100.2% );
}

.projects-header {
    text-align: center;
    margin-bottom: 60px;
}

.projects-header__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}

.projects-header__subtitle {
    color: #64748b;
    font-size: 1.1rem;
}

/* Grid სისტემა */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* ქარდის სტილი */
.project-card {
    background: #ffffff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #d7dbde;
}

.project-card:hover {
    
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* სურათის კონტეინერი */
.project-card__image-wrapper {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.project-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-card__img {
    transform: scale(1.1);
}

/* სურათზე გადაფარვის ეფექტი (Overlay) */
.project-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(37, 99, 235, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-card__overlay {
    opacity: 1;
}

.project-card__link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 30px;
    transition: 0.3s;
}

.project-card__link:hover {
    background: white;
    color: #2563eb;
}

/* ქარდის კონტენტი */
.project-card__content {
    padding: 25px;
}

.project-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.project-card__tag {
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}

.project-card__title {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 700;
}

.project-card__date {
    font-size: 0.9rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* რესპონსივი */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .projects-header__title {
        font-size: 2rem;
    }
}

.code-card__body{
color: #fff;
}

/* ავტორიზაციის გვერდის სტილი */
.auth-page {
    min-height: calc(100vh - 170px); 
    display: flex;
    align-items: center;
    justify-content: center;
     
    padding: 40px 20px;
}

.auth-container {
    width: 100%;
    max-width: 550px;
}

.auth-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.auth-card__header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-card__title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.auth-card__subtitle {
    color: #64748b;
    font-size: 0.95rem;
}

/* ფორმის ელემენტები */
.auth-form__group {
    margin-bottom: 20px;
}

.auth-form__group-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.auth-form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    margin-left: 4px;
}

.auth-form__input {
    width: 100%;
    padding: 14px 20px;
    background: #f1f5f9;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: #0f172a;
}

.auth-form__input:focus {
    outline: none;
    border-color: #3b82f6;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.auth-form__btn {
    width: 100%;
    padding: 14px;
    background: #141414;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.auth-form__btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.auth-card__footer {
    margin-top: 25px;
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
}

.auth-card__link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 700;
}

.auth-card__link:hover {
    text-decoration: underline;
}

/* მობილურისთვის */
@media (max-width: 480px) {
    .auth-card {
        padding: 25px;
    }
    .auth-form__group-inline {
        grid-template-columns: 1fr;
    }
}

.auth-alert auth-alert--success{
color: #27c93f;
}


.profile-page {
    padding: 10px 0;
   background-image: radial-gradient( circle 476px at 54.8% 51.5%,  rgba(168,229,253,1) 0%, rgba(244,244,254,1) 42.3%, rgba(244,244,254,1) 100.2% );
}
   


.profile-card {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    text-align: center;
}

.profile-card__avatar {
    font-size: 80px;
    color: #2563eb;
    margin-bottom: 15px;
}

.profile-card__name {
    font-size: 1.8rem;
    color: #0f172a;
    margin-bottom: 5px;
}

.profile-card__badge {
    display: inline-block;
    padding: 5px 15px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.profile-card__body {
    text-align: left;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.info-group {
    margin-bottom: 15px;
}

.info-group label {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 3px;
}

.info-group p {
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 600;
}

.btn-logout {
    display: inline-block;
    margin-top: 30px;
    color: #ef4444;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-logout:hover {
    opacity: 0.7;
}


.contact-page {
    padding: 10px 0;
   background-image: radial-gradient( circle 476px at 54.8% 51.5%,  rgba(168,229,253,1) 0%, rgba(244,244,254,1) 42.3%, rgba(244,244,254,1) 100.2% );
    min-height: 80vh;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    background: white;
    padding: 50px;
    border-radius: 5px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.contact-info__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.contact-info__text {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 600;
}

.contact-item i {
    color: #2563eb;
    font-size: 1.4rem;
}

/* ფორმის სპეციფიკური ელემენტები */
.auth-form__select {
    cursor: pointer;
    appearance: none; /* სტანდარტული ისრის მოცილება */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.auth-form__textarea {
    min-height: 120px;
    resize: vertical;
    padding-top: 15px;
}






.services-section {
    padding: 20px 0;
  background-image: radial-gradient( circle 476px at 54.8% 51.5%,  rgba(168,229,253,1) 0%, rgba(244,244,254,1) 42.3%, rgba(244,244,254,1) 100.2% );
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: #2563eb;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-top: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 20px;
    background: #f8fafc;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
    border-color: #b5b7ba;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: #2563eb;
}

.service-icon {
    margin: auto;
    width: 60px;
    height: 60px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.5rem;
    color: #2563eb;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.1);
}

.service-card h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 15px;
    text-align: center;
}

.service-card p {
    color: #64748b;
    line-height: 1.7;
    text-align: center;
}


.stats-section {
    padding: 80px 0;
    background: #0f172a; /* მუქი ლურჯი/შავი ფონი კონტრასტისთვის */
    color: #fff;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    transition: 0.3s;
}

.stat-icon {
    font-size: 2.5rem;
    color: #3b82f6; /* ლურჯი ფერი */
    margin-bottom: 15px;
    opacity: 0.8;
}

.stat-item h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    background: linear-gradient(to right, #fff, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    font-size: 1rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

