*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Poppins' sans-serif;
}

:root{
    --bg-color:#080808;
    --second-bg-color:#131313;
    --text-color:white;
    --main-color:#00ffee;
}



html{
    font-size: 60%;
    overflow-x:hidden;
}

body{
    background: var(--bg-color);
    color: var(--text-color);

}


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 5%; /* მარცხნივ ცოტა ნაკლები padding */
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1.2rem; /* ღილაკსა და Sandro-ს შორის დაშორება */
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-color);
}

/* მობილურზე მორგება */
@media (max-width: 768px) {
    .header {
        flex-direction: row;
        justify-content: space-between;
        padding: 2rem 3%;
    }

    .header-left {
        gap: 0.8rem;
    }

    .logo {
        font-size: 1.6rem;
    }

    .theme-toggle {
        font-size: 1.6rem;
    }
}



.navbar a{
    font-size: 1.8rem;
    color:var(--text-color);
    margin-left: 4rem;
    font-weight: 500;
    transition: 0.3s ease;
    border-bottom: 3px solid transparent;
}

.navbar a:hover,
.navbar a.active{
    color: var(--main-color);
    border-bottom: 3px solid var(--main-color);
}


#menu-icon {
    font-size: 2rem;
    color: white;
    cursor: pointer;
    display: none;
    position: absolute;
    right: 20px;
}



section{
    min-height:100vh;
    padding: 10rem 12% 10rem;
}

.home{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15rem;
}

.home-content{
    display: flex;
    flex-direction: column;
    align-items: baseline;
    text-align: left;
    justify-content: center;
    margin-top: 3rem;
}

span{
    color: var(--main-color);
}

.home-content h3{
    margin-bottom: 2rem;
    margin-top: 1rem;
    font-size: 3.5rem;
}


.home-img {
    position: relative;
    top: 3rem;
    width: 700px;
    max-width: 90vw;  /* მაქსიმუმი 90% viewport-სგან */
    height: auto;     /* სიმაღლე ავტომატურად შეფარდება */
    aspect-ratio: 1 / 1; /* წრის ფორმისთვის კვადრატული შეფარდება */
    border-radius: 50%;
    box-shadow: 0 0 15px var(--main-color);
    cursor: pointer;
    overflow: hidden;
    background-color: black;
    margin: auto;
    transition:
            background-color 0.4s ease,
            box-shadow 0.4s ease,
            transform 0.4s ease,
            filter 0.4s ease;
}

.home-img:hover {
    background-color: #111;
    box-shadow:
            0 0 30px var(--main-color),
            0 0 60px var(--main-color),
            0 0 120px var(--main-color);
    transform: scale(1.05) rotateZ(1deg);
    filter: brightness(1.1);
}

.home-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition:
            box-shadow 0.4s ease,
            transform 0.4s ease;
}

.home-img img:hover {
    box-shadow:
            0 0 25px var(--main-color),
            0 0 50px var(--main-color),
            0 0 100px var(--main-color);
    transform: scale(1.05);
}

/* მცირე ეკრანებისთვის (მობილური, ტაბლეტი) */
@media (max-width: 768px) {
    .home-img {
        top: 2rem;
        max-width: 80vw;
    }
}

@media (max-width: 480px) {
    .home-img {
        top: 1.5rem;
        max-width: 70vw;
    }
}






/* გლუვი გადასვლის ანიმაცია */
#gallery-image {
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}

#gallery-image.fade-out {
    opacity: 0;
}

#gallery-image.fade-in {
    opacity: 1;
}


.home-content p{
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.8;
    max-width: 1000px;
}

.social-icons a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4.5rem;
    height: 4.5rem;
    background: transparent;
    border: 2px solid var(--main-color);
    margin: 3rem 1.5rem 3rem 0;
    transition: 0.3s ease-in-out;
}


.social-icons a:hover{
    color: var(--text-color);
    transform: scale(1.3) translateY(-5px);
    box-shadow: 0 0 25px var(--main-color);
    background-color: var(--main-color);
}


.btn {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: var(--main-color);
    border-radius: 4.5rem;
    font-size: 1.6rem;
    color: black;
    letter-spacing: 0.1rem;
    font-weight: 600;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background 0.3s ease-in-out, color 0.3s ease-in-out;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    border: 2px solid transparent;
}

/* Hover effect */
.btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 0 25px var(--main-color), 0 0 50px rgba(0, 255, 238, 0.2);
}

/* Button group styling */
.btn-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-group a:nth-of-type(2) {
    background-color: black;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    box-shadow: 0 0 0 25px transparent;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.btn-group a:nth-of-type(2):hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 0 25px var(--main-color), 0 0 50px rgba(0, 255, 238, 0.2);
    background-color: var(--main-color);
    color: black;
}

/* Tablet devices */
@media (max-width: 992px) {
    .btn-group {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .btn {
        padding: 0.8rem 1.8rem;
        font-size: 1.4rem;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .btn-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1.5rem;
    }

    /* Ensure buttons don't touch each other on very small screens */
    .btn-group a {
        margin-bottom: 0.5rem;
    }

    .btn-group a:last-child {
        margin-bottom: 0;
    }
}

/* Very small phones */
@media (max-width: 480px) {
    .btn-group {
        max-width: 250px;
    }

    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 1.4rem;
    }
}

/* Specific styling for 5 buttons in mobile */
@media (max-width: 768px) {
    .btn-group:has(a:nth-child(5)) {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        max-width: 400px;
    }

    .btn-group:has(a:nth-child(5)) .btn {
        width: 100%;
        padding: 0.8rem 1rem;
    }
}

@media (max-width: 480px) {
    .btn-group:has(a:nth-child(5)) {
        grid-template-columns: 1fr;
    }
}



.text-animation{
    font-size: 34px;
    font-weight: 600;
    min-width: 280px
}

.text-animation span{
    position: relative;
}


.heading {
    font-size: 8rem;
    text-align: center;
    margin: 5rem 0;
    color: #00dfff; /* რბილი ნეონური ფერი */
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    position: relative;
    cursor: default;
    text-shadow:
            0 0 10px #00dfff,
            0 0 20px #00dfff,
            0 0 30px #00dfff,
            0 0 50px #00bfff; /* რბილი ბზინვა */
    transition: all 0.5s ease;
}

.heading:hover {
    color: #ffdf00; /* მსუბუქი კონტრასტი */
    transform: scale(1.05); /* ოდნავ გაზრდა */
    text-shadow:
            0 0 15px #ffdf00,
            0 0 30px #ffdf00,
            0 0 45px #ffd700; /* რბილი ჰალო ჰოვერზე */
}


.education {
    padding: 100px 15px;
    background: var(--second-bg-color);
}

.education h2 {
    margin-bottom: 5rem;
}

.timeline-items {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.timeline-items::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    background-color: var(--main-color);
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 40px;
    width: 100%;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 30px);
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 30px);
}

.timeline-dot {
    height: 21px;
    width: 21px;
    background-color: var(--main-color);
    box-shadow:
            0 0 25px var(--main-color),
            0 0 25px var(--main-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    top:10px;
}

.timeline-date {
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin: 6px 0 15px;
}

.timeline-content {
    background-color: var(--main-color);
    border: 3px solid var(--main-color);
    padding: 30px 50px;
    border-radius: 4rem;
    box-shadow: 0 0 10px var(--main-color);
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.timeline-content:hover {
    transform: scale(1.05);
    box-shadow: 0 0 0 25px var(--main-color);
}

.timeline-content h3 {
    font-size: 20px;
    color: white;
    margin: 0 0 0 10px;
}

.timeline-content p {
    color: white;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
}

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
}

::-webkit-scrollbar-track {
    background-color: var(--main-color);
    width: 50px;
}


.services {
    background: var(--bg-color);
    color: black;
    padding: 5rem 2rem;
}

.services h2 {
    margin-bottom: 5rem;
    color: white;
    font-size: 4rem;
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* შენარჩუნებულია 2x2 */
    gap: 2.5rem;
    padding: 0 2rem;
}

.service-box {
    background-color: var(--main-color);
    height: 300px;
    border-radius: 3rem;
    border: 5px solid transparent;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
}

.service-box:hover {
    background: white;
    color: black;
    border: 5px solid var(--main-color);
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.25);
}

.service-box .service-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 3rem;
    height: 100%;
}

.service-info h4 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: inherit;
}

.service-info p {
    font-size: 1.6rem;
    font-weight: 500;
    color: inherit;
    line-height: 1.6;
}



.testimonials{
    background:var(--bg-color);
}

.testimonials-box{
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.testimonials .heading{
    margin-bottom: 5rem;
}

.testimonials-box img{
    width: 50px;
    border-radius: 50%;
    border:3px solid var(--main-color);
    box-shadow: 0 0 25px var(--main-color);
}

.wrapper{
    display: flex;
    grid-template-columns: repeat(1.3fr);
    gap: 3rem;
}


.testimonial-item{
    min-height: 550px;
    max-width: 450px;
    background-color: black;
    border: 3px solid rgba(238,238,238,0.2);
    border-radius: 2rem;
    margin: 0 2rem;
    padding: 30px 60px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    color: white;
    transition: 0.4 ease-in-out;
}

.testimonial-item:hover{
    border:3px solid var(--main-color);
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 0 50px var(--main-color);
}

.testimonial-item h2{
    font-size: 2.8rem;
}


.rating .filled {
    color: gold;
}




.contact h2 {
    margin-bottom: 3rem;
    color: white;
}

.contact form {
    display: flex;
    flex-direction: column; /* განსაზღვრავს ფორმას ვერტიკალურად */
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 5rem auto;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5); /* გამჭვირვალე ფონი */
    padding: 3rem;
    border-radius: 10px;
}

.contact form .input-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.contact form .input-box input,
.contact form .input-box textarea {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.8rem;
    color: var(--text-color);
    background: var(--bg-color);
    border: 2px solid var(--main-color);
    border-radius: 5px;
    margin: 1rem 0;
    resize: none;
    box-sizing: border-box;
}

.contact form .input-box input:focus,
.contact form .input-box textarea:focus {
    outline: none;
    border-color: var(--highlight-color); /* ტექსტის თვალში სილამაზის ხაზის შექმნა */
    box-shadow: 0 0 5px var(--highlight-color); /* ფოკუსზე ჩრდილი */
}

.contact-form .btn {
    margin-top: 2rem;
}

.footer {
    position: relative;
    bottom: 0;
    width: 100%;
    padding: 40px 0;
    background-color: var(--second-bg-color);
}

.footer .social {
    text-align: center;
    padding-bottom: 25px;
    color: var(--main-color);
}

.footer .social a {
    font-size: 25px;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    width: 42px;
    height: 42px;
    line-height: 42px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin: 0 10px;
    transition: 0.3s ease-in-out;
}

.footer .social a:hover {
    transform: scale(1.2) translateY(-10px);
    background-color: var(--main-color);
    color: black;
    box-shadow: 0 0 25px var(--main-color);
}

.footer ul {
    margin-top: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center;
}

.footer ul li a {
    color: white;
    border-bottom: 3px solid transparent;
    transition: 0.3s ease-in-out;
}

.footer ul li a:hover {
    border-bottom: 3px solid var(--main-color);
}

.footer ul li {
    display: inline-block;
    padding: 0 15px;
}

.footer .copyright {
    margin-top: 50px;
    font-size: 25px;
    text-align: center;
    color: white;
}

.contact form .btn,
.contact form textarea {
    width: 100%;
    padding: 2.5rem;
    font-size: 1.8rem;
    color: var(--text-color);
    background: var(--bg-color);
    border: 2px solid var(--main-color);
    border-radius: 2px;
    margin: 1.5rem 0;
    resize: none;
    box-sizing: border-box; /* ეს მას გადააქცევს ელემენტს, რომ padding და border არ გადალახავდეს ელემენტის სიგანეს */
}


@media(max-width:1285px){
    html{
        font-size: 55%;
    }
    .services-container{
        padding-bottom: 7rem;
        grid-template-columns: repeat(2,1fr);
        margin: 0 5rem;
    }
}


@media(max-width:991px){
    header{
        padding: 2rem 3%;
    }
    section{
        padding: 10rem 3% 2rem;
    }
    .timeline-items::before{
        left: 7px;
    }
    .timeline-item:nth-child(odd){
        padding-right: 0;
        text-align: left;
    }
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even){
        padding-left:37px;
    }
    .timeline-dot{
        left: 0;
    }
    .services{
        grid-template-columns: repeat(1,1fr);
    }
    .contact form{
        flex-direction: column;
    }
    .footer{
        padding: 2rem 3%;
    }
}


@media(max-width:895px){
    #menu-icon{
        display: block;
    }
    .navbar{
        position: absolute;
        top: 100%;
        right: 0;
        width: 50%;
        padding: 1rem 3%;
        background: black;
        backdrop-filter: blur(20px);
        border-bottom-left-radius:2rem;
        border-left: 2px solid var(--main-color);
        display: none;
    }
    .navbar .active{
        display: block;
    }
    .navbar a{
        display: block;
    }
    .home{
        flex-direction: column-reverse;
        margin: 5rem 4rem;
    }
    .home-content h3{
        font-size: 2.6rem;
    }
    .home-content h1{
        font-size: 8rem;
        margin: 3rem;
    }

    .home-content p{
        max-width: 600px;
        margin: 0 auto;
    }
    .services{
        grid-template-columns: repeat(1.1fr);
    }
}



input[type="submit"] {
    background-color: var(--main-color); /* ლურჯი ფონი */
    color: white; /* თეთრი ტექსტი */
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition:0.3s ease;
}
.text-animation span {
    display: inline-block;
    font-family: monospace;
    font-weight: bold;
    position: relative;
    width: calc(100% + 8px);
    height: 100%;
    overflow: hidden;
    padding-right: 5px;
}


@keyframes blink {
    50% {
        border-color: transparent;
    }
}



@media (max-width: 768px) {
    #menu-icon {
        display: block;
    }

    .navbar {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: #333;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .navbar a {
        display: block;
        padding: 10px;
    }

    .navbar.active {
        display: flex;
    }
}
#menu-icon {
    font-size: 2rem;
    color: white;
    cursor: pointer;
    display: none;
    position: absolute;
    right: 20px;
}




.skills {
    background: var(--second-bg-color);
    padding: 100px 15px;
    text-align: center;
}

.skills h2 {
    font-size: 8rem;
    color: var(--main-color);
    text-shadow: 0 0 10px var(--main-color);
    margin-bottom: 5rem;
}

.skills-subheading {
    font-size: 3rem;
    margin: 4rem 0 2rem;
    color: var(--main-color);
    text-shadow: 0 0 5px var(--main-color);
}

.skills ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: auto;
}

.skills ul li {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--main-color);
    padding: 1.5rem 3rem;
    border-radius: 8px;
    box-shadow: 0 0 10px var(--main-color);
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.skills ul li:hover {
    transform: scale(1.1);
    background: var(--main-color);
    color: black;
    box-shadow: 0 0 20px var(--main-color);
}

.skills ul li:hover i {
    color: black;
}



.certifications {
    background: var(--second-bg-color);
    padding: 100px 15px;
    text-align: center;
}

.certifications h2 {
    font-size: 8rem;
    color: var(--main-color);
    text-shadow: 0 0 10px var(--main-color);
    margin-bottom: 5rem;
}

.certifications ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: auto;
}

.certifications ul li {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--main-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px var(--main-color);
    transition: 0.3s ease-in-out;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.certifications ul li img {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    border: 2px solid var(--main-color);
    box-shadow: 0 0 10px var(--main-color);
    transition: 0.3s ease-in-out;
}

.certifications ul li:hover {
    transform: scale(1.1);
    background: var(--main-color);
    color: black;
    box-shadow: 0 0 20px var(--main-color);
}

.certifications ul li:hover img {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--main-color);
}



.projects {
    background: var(--second-bg-color);
    padding: 100px 15px;
    text-align: center;
}

.projects h2 {
    font-size: 8rem;
    color: var(--main-color);
    text-shadow: 0 0 10px var(--main-color);
    margin-bottom: 3rem;
}

.project-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

:root {
    --main-color: #00ffc3;
}

/* Projects container */
.projects {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    padding: 100px 20px;
}

/* Project Box */
.project-box {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    width: 340px;
    text-align: center;
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    box-shadow: 0 0 20px rgba(0, 255, 195, 0.2), 0 10px 50px rgba(0, 0, 0, 0.5);
    overflow: visible; /* overflow visible რათა links მუშაობდეს */
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
}

/* Scroll entrance */
.project-box.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: all 0.8s cubic-bezier(.25,.8,.25,1);
}

/* Neon border animation */
.project-box::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 28px;
    background: linear-gradient(135deg, #00ffc3, #00bfff, #ff00c8, #00ffc3);
    z-index: 0; /* pseudo-element always behind */
    animation: glow 4s linear infinite;
    pointer-events: none; /* არ უშლის კლიკებს */
}

@keyframes glow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* Particle hover effect */
.project-box::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 1%, transparent 2%) repeat;
    background-size: 5px 5px;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.3s;
}

.project-box:hover::after {
    opacity: 1;
    animation: particleMove 2s linear infinite;
}

@keyframes particleMove {
    0% { transform: translate(0,0) rotate(0deg); }
    100% { transform: translate(50px, -50px) rotate(360deg); }
}

/* Hover 3D + shadow */
.project-box:hover {
    transform: translateY(-15px) scale(1.08) rotateY(3deg) rotateX(2deg);
    box-shadow: 0 0 60px rgba(0, 255, 195, 0.6), 0 15px 70px rgba(0, 0, 0, 0.6);
}

/* Title neon glow */
.project-box h4 {
    font-size: 2.2rem;
    color: var(--main-color);
    margin-bottom: 1.2rem;
    text-shadow: 0 0 10px #00ffc3, 0 0 20px #00bfff, 0 0 30px #ff00c8;
    letter-spacing: 1px;
    position: relative;
    z-index: 2; /* text clickable */
}

/* Description */
.project-box p {
    color: #e2e2e2;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Button */
.project-box a {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    color: #000;
    background: var(--main-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 15px var(--main-color);
    position: relative;
    z-index: 2; /* always clickable */
}

.project-box a:hover {
    background: #fff;
    color: var(--main-color);
    transform: scale(1.2) rotateZ(-3deg);
    box-shadow: 0 0 40px var(--main-color), 0 0 60px #ff00c8;
}


/* Dropdown style */
.tech-stack {
    margin-top: 1.5rem;
    background: rgba(0, 255, 195, 0.05);
    border-radius: 20px;
    padding: 1.2rem 1.5rem;
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    box-shadow: 0 8px 25px rgba(0, 255, 195, 0.3);
    text-align: left;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tech-stack summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--main-color);
    font-size: 1.3rem;
    padding: 0.5rem 0;
    text-shadow: 0 0 8px #00ffc3, 0 0 15px #00bfff;
    outline: none;
    list-style: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.tech-stack summary:hover {
    color: #ff00c8;
    text-shadow: 0 0 12px #ff00c8, 0 0 20px #00ffc3;
}

.tech-stack[open] {
    box-shadow: 0 0 30px rgba(0, 255, 195, 0.6),
    0 0 50px rgba(255, 0, 200, 0.4);
    transform: scale(1.02);
}

.tech-stack ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
    color: #e2e2e2;
    font-size: 1rem;
    line-height: 1.7;
    list-style: square;
}

.tech-stack li {
    margin-bottom: 0.6rem;
    transition: transform 0.25s, color 0.25s, text-shadow 0.25s;
}

.tech-stack li:hover {
    transform: translateX(10px) scale(1.05);
    color: #00ffc3;
    text-shadow: 0 0 10px #00ffc3, 0 0 18px #ff00c8;
}

/* 🔹 Responsive Design */
@media (max-width: 768px) {
    .tech-stack {
        padding: 1rem;
        border-radius: 15px;
        max-width: 95%;
    }

    .tech-stack summary {
        font-size: 1.1rem;
    }

    .tech-stack ul {
        font-size: 0.95rem;
        padding-left: 1rem;
    }
}

@media (max-width: 480px) {
    .tech-stack {
        padding: 0.8rem;
        border-radius: 12px;
    }

    .tech-stack summary {
        font-size: 1rem;
        text-align: center;
    }

    .tech-stack ul {
        font-size: 0.9rem;
        padding-left: 0.8rem;
    }

    .tech-stack li {
        margin-bottom: 0.4rem;
    }
}

.tech-stack li {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    transition: transform 0.25s, color 0.25s, text-shadow 0.25s;
}

.tech-stack li i {
    font-size: 1.3rem;
}


.blog {
    background: var(--second-bg-color);
    padding: 100px 15px;
    text-align: center;
}

.blog h2 {
    font-size: 8rem;
    color: var(--main-color);
    text-shadow: 0 0 10px var(--main-color);
    margin-bottom: 1.5rem;
}

.blog p {
    font-size: 1.8rem;
    color: #ccc;
    margin-bottom: 2.5rem;
}

.blog-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.blog-card {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 15px var(--main-color);
    max-width: 400px;
    transition: 0.3s ease-in-out;
}

.blog-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--main-color);
}

.blog-card h3 {
    font-size: 2.5rem;
    color: var(--main-color);
    text-shadow: 0 0 5px var(--main-color);
    margin-bottom: 1rem;
}

.blog-card p {
    font-size: 1.6rem;
    color: #ddd;
    margin-bottom: 1.5rem;
}

.blog-card .btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: black;
    background: var(--main-color);
    border-radius: 5px;
    text-decoration: none;
    box-shadow: 0 0 15px var(--main-color);
    transition: 0.3s ease-in-out;
}

.blog-card .btn:hover {
    background: white;
    color: black;
    transform: scale(1.1);
    box-shadow: 0 0 25px var(--main-color);
}



.about {
    background: var(--second-bg-color);
    padding: 100px 15px;
    text-align: center;
}

.about h2 {
    font-size: 8rem;
    color: var(--main-color);
    text-shadow: 0 0 10px var(--main-color);
    margin-bottom: 1.5rem;
}

.about p {
    font-size: 2rem;
    color: #ddd;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 15px var(--main-color);
    transition: 0.3s ease-in-out;
}

.about p:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--main-color);
}


.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: white;
    transition: color 0.3s ease;
}

.service-box:hover .service-icon {
    color: var(--main-color);
}


.skills-category {
    margin-bottom: 3rem;
}

.skills-category-title {
    font-size: 2rem;
    color: var(--main-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px #00ffc3, 0 0 20px #00bfff;
}

/* Skills List */
.skills-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    list-style: none;
    padding: 0;
}

.skills-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem 2rem;
    border-radius: 2rem;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3), 0 0 30px rgba(255, 0, 255, 0.2);
    backdrop-filter: blur(12px);
    transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.skills-list li::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: linear-gradient(45deg, #ff0000, #00ff00, #0000ff, #ff00ff, #00ffff, #ffff00);
    background-size: 600% 600%;
    opacity: 0.1;
    filter: blur(30px);
    transition: all 0.5s ease;
    z-index: 0;
}

.skills-list li i {
    font-size: 2.5rem;
    color: #00ffff;
    transition: all 0.5s ease;
    z-index: 1;
    text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff, 0 0 20px #00ffff;
    animation: iconGlow 2s infinite alternate;
}

.skills-list li span {
    z-index: 1;
}

.skills-list li:hover {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 25px #00ffff, 0 0 50px #ff00ff, 0 0 75px #00ffff;
    transform: translateY(-15px) scale(1.08) rotate(-2deg);
}

.skills-list li:hover::before {
    opacity: 0.6;
    animation: gradientShift 4s linear infinite;
}

.skills-list li:hover i {
    transform: scale(1.6) rotate(25deg);
    color: #ffff00;
    text-shadow: 0 0 15px #ffff00, 0 0 30px #ffff00, 0 0 60px #ffff00, 0 0 100px #ffff00;
}

/* Animations */
@keyframes iconGlow {
    0% { text-shadow: 0 0 5px #00ffff; }
    100% { text-shadow: 0 0 20px #00ffff; }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Responsive */
@media screen and (max-width: 1200px) {
    .skills-list {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
    .skills-category-title {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 768px) {
    .skills-list {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
    }
    .skills-category-title {
        font-size: 1.6rem;
    }
    .skills-list li {
        padding: 1.2rem 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .skills-list {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    .skills-category-title {
        font-size: 1.4rem;
    }
    .skills-list li {
        padding: 1rem 1.2rem;
        gap: 0.8rem;
    }
    .skills-list li i {
        font-size: 2rem;
    }
}


@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes iconGlow {
    0% { text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff, 0 0 20px #00ffff; }
    50% { text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 40px #ff00ff; }
    100% { text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff, 0 0 20px #00ffff; }
}



:root {
    --bg-color: #080808;
    --second-bg-color: #131313;
    --text-color: white;
    --main-color: #00ffee;
}

.light-theme {
    --bg-color: #f4f4f4;
    --second-bg-color: #ffffff;
    --text-color: #000000;
    --main-color: #0077ff;
}
.theme-toggle {
    font-size: 2rem;
    background: transparent;
    border: none;
    color: var(--main-color);
    cursor: pointer;
    margin-left: 1rem;
    transition: 0.3s ease;
}


.theme-toggle:hover {
    transform: scale(1.2);
}

/* LIGHT MODE სტილები education-სთვის */
body.light-theme .education,
body.light-theme .education h2,
body.light-theme .education .timeline-date,
body.light-theme .education .timeline-content h3,
body.light-theme .education .timeline-content p {
    color: black;
}


:root {
    --bg-color: #080808;
    --second-bg-color: #131313;
    --text-color: white;
    --main-color: #00ffee;
}

.light-theme {
    --bg-color: #f4f4f4;
    --second-bg-color: #ffffff;
    --text-color: #000000;
    --main-color: #0077ff;
}

/* Header და ლოგო განლაგება */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-color);
}

/* Toggle ღილაკი */
.theme-toggle {
    font-size: 2rem;
    background: transparent;
    border: none;
    color: var(--main-color);
    cursor: pointer;
    margin-left: 1rem;
    transition: 0.3s ease;
}
.theme-toggle:hover {
    transform: scale(1.2);
}

/* Burger icon */
#menu-icon {
    font-size: 2rem;
    color: var(--text-color);
    cursor: pointer;
    display: block;
    z-index: 101;
}

/* FULLSCREEN NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 99;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.navbar.active {
    transform: translateY(0);
}

.navbar a {
    font-size: 2.2rem;
    color: var(--text-color);
    padding: 1rem 0;
    transition: 0.3s;
    text-align: center;
}

/* Desktop მოდისთვის */
@media (min-width: 769px) {
    #menu-icon {
        display: none;
    }

    .navbar {
        position: static;
        height: auto;
        width: auto;
        background: none;
        backdrop-filter: none;
        transform: none !important;
        flex-direction: row;
        justify-content: flex-end;
        gap: 4rem;
    }

    .navbar a {
        font-size: 1.8rem;
        margin-left: 2rem;
        padding: 0;
    }
}

/* Light mode განათლებისთვის */
body.light-theme .education,
body.light-theme .services h2,

body.light-theme .education h2,
body.light-theme .education .timeline-date,
body.light-theme .education .timeline-content h3,
body.light-theme .education .timeline-content p,
body.light-theme .blog p
{
    color: black;
}


/* Tablets და ნაკლები */
@media (max-width: 992px) {
    .certifications h2 {
        font-size: 5rem;
        margin-bottom: 3rem;
        text-shadow: 0 0 8px var(--main-color);
    }
}

/* მობილური */
@media (max-width: 768px) {
    .certifications h2 {
        font-size: 3.5rem;
        margin-bottom: 2.5rem;
        text-shadow: 0 0 6px var(--main-color);
    }
}

/* პატარა ტელეფონები */
@media (max-width: 480px) {
    .certifications h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        text-shadow: 0 0 4px var(--main-color);
    }
}



/* Tablets და ნაკლები */
@media (max-width: 992px) {
    .education h2 {
        margin-bottom: 3rem;
    }
}

/* მობილური */
@media (max-width: 768px) {
    .education h2 {
        margin-bottom: 2.5rem;
    }
}

/* პატარა ტელეფონები */
@media (max-width: 480px) {
    .education h2 {
        margin-bottom: 2rem;
    }
}


/* 🔹 Working Experience Section */
.experience-box {
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid var(--main-color);
    border-radius: 20px;
    padding: 3rem 2rem;
    width: 320px;
    max-width: 100%;
    text-align: center;
    color: white;
    box-shadow: 0 0 15px var(--main-color);
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    overflow: hidden;
}

.experience-box:hover {
    transform: translateY(-10px) scale(1.05);
    background: var(--main-color);
    box-shadow: 0 0 25px var(--main-color), 0 0 50px var(--main-color);
}

/* Title */
.experience-box h3 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: white; /* H3-ის ძირითადი ფერი */
    transition: color 0.3s ease;
}

/* Company inside h3 */
.experience-box h3 .company {
    color: var(--main-color);
    font-weight: bold;
    margin-left: 0.3rem;
    text-shadow: 0 0 8px var(--main-color);
    transition: color 0.3s ease;
}

/* Date */
.experience-box .date {
    display: block;
    font-size: 1.2rem;
    color: var(--main-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 6px var(--main-color);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Hover effects */
.experience-box:hover h3 {
    color: black; /* H3 ტექსტი */
}

.experience-box:hover h3 .company {
    color: black; /* კომპანიის ფერი ჰოვერზე */
}

.experience-box:hover .date {
    color: black;
    text-shadow: 0 0 8px white;
}

/* Description list */
.experience-details {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.4rem;
    text-align: left;
}

.experience-details li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 0.7rem;
}

.experience-details li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--main-color);
    font-weight: bold;
}

/* ------------------- */
/* RESPONSIVE STYLES */
/* ------------------- */
@media (max-width: 768px) {
    .experience-box {
        width: 90%;
        padding: 2.5rem 2rem;
    }
    .experience-box h3 {
        font-size: 2rem;
    }
    .experience-details {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .experience-box {
        width: 100%;
        padding: 2rem 1.5rem;
    }
    .experience-box h3 {
        font-size: 1.8rem;
    }
    .experience-box .date {
        font-size: 1.1rem;
    }
    .experience-details {
        font-size: 1.2rem;
    }
}

/* Tech icons container */
.experience-box .tech-icons {
    margin-top: 1.5rem;
    display: flex;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Individual icon */
.experience-box .tech-icons i {
    font-size: 2.5rem;
    transition: transform 0.3s;
    cursor: default;
}

/* Hover effect */
.experience-box:hover .tech-icons i {
    transform: scale(1.2);
}


/* 🔹 Working Experience Section */
.experience-box {
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid var(--main-color);
    border-radius: 20px;
    padding: 3rem 2rem;
    width: 320px;
    max-width: 100%;
    text-align: center;
    color: white;
    box-shadow: 0 0 15px var(--main-color);
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    overflow: hidden;
}

.experience-box:hover {
    transform: translateY(-10px) scale(1.05);
    background: var(--main-color);
    box-shadow: 0 0 25px var(--main-color), 0 0 50px var(--main-color);
}

/* Title */
.experience-box h3 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: white; /* H3-ის ძირითადი ფერი */
    transition: color 0.3s ease;
}

/* Company inside h3 */
.experience-box h3 .company {
    color: var(--main-color);
    font-weight: bold;
    margin-left: 0.3rem;
    text-shadow: 0 0 8px var(--main-color);
    transition: color 0.3s ease;
}

/* Date */
.experience-box .date {
    display: block;
    font-size: 1.4rem;
    color: #ddd;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 6px rgba(0, 255, 238, 0.5);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Description list */
.experience-details {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    font-size: 1.6rem;
    text-align: left;
    line-height: 1.6;
}

.experience-details li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 0.8rem;
    color: #eee;
    text-align: left;
}

.experience-details li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--main-color);
    font-weight: bold;
    font-size: 1.6rem;
}

/* Hover effects */
.experience-box:hover h3 {
    color: black;
}

.experience-box:hover h3 .company {
    color: black;
}

.experience-box:hover .date {
    color: black;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.experience-box:hover .experience-details li {
    color: black;
}

.experience-box:hover .experience-details li::before {
    color: black;
}

/* Tech icons container */
.experience-box .tech-icons {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Individual icon */
.experience-box .tech-icons i {
    font-size: 2.5rem;
    color: var(--main-color);
    transition: all 0.3s;
    cursor: default;
    text-shadow: 0 0 5px rgba(0, 255, 238, 0.5);
}

.experience-box:hover .tech-icons i {
    transform: scale(1.2);
    color: black;
}

/* ------------------- */
/* RESPONSIVE STYLES */
/* ------------------- */
@media (max-width: 768px) {
    .experience-box {
        width: 90%;
        padding: 2.5rem 2rem;
    }
    .experience-box h3 {
        font-size: 2.2rem;
    }
    .experience-details {
        font-size: 1.5rem;
    }
    .experience-details li {
        padding-left: 20px;
        margin-bottom: 0.7rem;
    }
}

@media (max-width: 480px) {
    .experience-box {
        width: 100%;
        padding: 2rem 1.8rem;
    }
    .experience-box h3 {
        font-size: 2rem;
    }
    .experience-box .date {
        font-size: 1.3rem;
    }
    .experience-details {
        font-size: 1.4rem;
    }
    .experience-details li {
        padding-left: 18px;
        margin-bottom: 0.6rem;
    }
    .experience-box .tech-icons i {
        font-size: 2.2rem;
    }
}


/* Experience container - გვერდიგვერდ დიზაინი Desktop-ზე */
.experience-container {
    display: flex;
    justify-content: center; /* ცენტრში განათავსებს */
    gap: 20px; /* სივრცე experience-box-ებს შორის */
    flex-wrap: wrap; /* როცა ადგილი არ არის, ქვემოთ გადადის */
}

/* Mobile-ზე ერთი ქვემოთ ერთი */
@media (max-width: 768px) {
    .experience-container {
        flex-direction: column;
        align-items: center; /* ცენტრში განათავსებს */
    }
}






/* ==================== Visitor Counter Styles ==================== */

/* ვარიანტი 1: Header-ში */
.visitor-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    font-size: 1.4rem;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(14, 239, 255, 0.3);
    transition: all 0.3s ease;
    margin-left: 20px;
}

.visitor-counter i {
    font-size: 1.6rem;
    color: var(--main-color);
}

.visitor-counter:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px var(--main-color);
    background: rgba(0, 0, 0, 0.8);
}

/* ვარიანტი 2: მხარეში Fixed */
.visitor-counter-side {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 999;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    padding: 15px;
    border: 2px solid var(--main-color);
    box-shadow: 0 0 20px rgba(14, 239, 255, 0.4);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.visitor-counter-side:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--main-color);
}

.counter-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.counter-content i {
    font-size: 2.5rem;
    color: var(--main-color);
    margin-bottom: 5px;
}

.counter-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px var(--main-color);
}

.counter-label {
    font-size: 1.2rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ანიმაციები */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes glow {
    0% { box-shadow: 0 0 5px var(--main-color); }
    50% { box-shadow: 0 0 20px var(--main-color); }
    100% { box-shadow: 0 0 5px var(--main-color); }
}

.counter-animate {
    animation: pulse 0.5s ease, glow 1s ease;
}

/* მობილურისთვის */
@media (max-width: 768px) {
    .visitor-counter {
        font-size: 1.2rem;
        padding: 6px 12px;
        margin-left: 10px;
    }

    .visitor-counter-side {
        bottom: 80px;
        right: 10px;
        padding: 10px;
    }

    .counter-number {
        font-size: 1.8rem;
    }

    .counter-label {
        font-size: 1rem;
    }
}


/* 🔹 FIX: Responsive Heading for all sections */
.heading {
    font-size: 6rem; /* დაწყება 6rem-დან */
    text-align: center;
    margin: 3rem 0 4rem;
    color: var(--main-color);
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    position: relative;
    cursor: default;
    text-shadow: 0 0 10px var(--main-color);
    transition: all 0.3s ease;
    line-height: 1.2;
    word-wrap: break-word;
    padding: 0 1rem; /* გვერდებზე padding */
}

/* Desktop - მხოლოდ დიდ ეკრანებზე უფრო დიდი */
@media (min-width: 1200px) {
    .heading {
        font-size: 8rem;
        margin: 5rem 0;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .heading {
        font-size: 5rem;
        margin: 3rem 0;
        letter-spacing: 0.2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .heading {
        font-size: 3.8rem;
        margin: 2.5rem 0;
        letter-spacing: 0.15rem;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .heading {
        font-size: 3rem;
        margin: 2rem 0;
        letter-spacing: 0.1rem;
        padding: 0 0.5rem;
    }
}