* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "ArchyEDT-Bold", sans-serif;

}

body {
    background-color: #17282f;
    margin: 0;
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    margin: 0 auto;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #17282f; /* Dark background */
    padding: 20px 40px;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.274);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.logo-space {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px; /* Increased the height of the logo */
}

.nav-links {
    list-style: none;
}

.nav-links li {
    display: inline;
    margin-left: 30px;
    position: relative;
}

.nav-links a {
    color: #f4f5ef; /* Light color for the text */
    text-decoration: none;
    font-size: 25px;
    font-weight: bold;
    padding-bottom: 5px; /* Adds space for the hover line */
    display: inline-block;
}

.nav-links a:hover {
    color: #b69d74; /* Color change on hover */
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    background: #5f4b42; /* Gold line color */
    transition: width 0.3s;
    bottom: 0;
    left: 0;
}

.nav-links a:hover::after {
    width: 100%; /* Expands the hover line on hover */
}


.services-page {
    margin-top: 60px; /* Adjusted for fixed navbar */
    padding: 40px 20px;
    text-align: center;
    background-color: #A6C4E0;
}

.services-intro {
    margin-bottom: 40px;
}

.services-intro h1 {
    font-size: 36px;
    color: #17282f;
    margin-bottom: 20px;
}

.services-intro p {
    font-size: 18px;
    color: #496c98;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    justify-items: center;
}

.service-item {
    background-color: #EAF1F7;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.service-item h2 {
    font-size: 24px;
    color: #17282f;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 16px;
    color: #38587E;
    line-height: 1.6;
}

.kontaqti{
    color: #28323c;
    
}
footer {
    background-color: #17282f; /* Dark background */
    color: #ECF0F1; /* Light text color */
    text-align: center;
    padding: 20px;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-content {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 20px;
    flex-direction: row;
}

.footer-map {
    flex: 1;
    min-width: 300px; /* Ensures the map doesn't get too small */
}

.footer-info {
    flex: 1;
    text-align: left;
}

.footer-info p {
    margin-bottom: 10px;
}

iframe {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    footer {
        flex-direction: column;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-map {
        width: 100%;
        margin-bottom: 20px;
    }
}

.Toma{
    color: #b69d74;
}
.Toma:hover{
    color: #5f4b42;
}



.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    grid-template-rows: repeat(2, auto);  /* 2 rows */
    gap: 20px; /* Space between the boxes */
    justify-items: center;
}

.service-item {
    background: #EAF1F7;
    color: #17282f;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
    padding: 20px;
}

.service-button {
    background-color: #496c98; /* Button color */
    color: #fff; /* Text color */
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    position: absolute;
    bottom: 20px; /* Position the button at the bottom */
    left: 50%;
    transform: translateX(-50%); /* Center the button */
    transition: background-color 0.3s, transform 0.3s;
}

.service-button:hover {
    background-color: #38587E; /* Darker shade on hover */
    transform: translateX(-50%) scale(1.05); /* Slightly scale up */
}

#loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #17282f; /* Background color */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
    opacity: 1;
    visibility: visible;
}

#load {
    position: relative;
    width: 600px;
    height: 36px;
    overflow: visible;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}

#load div {
    position: absolute;
    width: 40px;
    height: 73px;
    opacity: 0;
    font-family: Helvetica, Arial, sans-serif;
    animation: move 2s linear infinite;
    color: #b69d74;
}

#load div:nth-child(2) { animation-delay: 0.2s; }
#load div:nth-child(3) { animation-delay: 0.4s; }
#load div:nth-child(4) { animation-delay: 0.6s; }
#load div:nth-child(5) { animation-delay: 0.8s; }
#load div:nth-child(6) { animation-delay: 1s; }
#load div:nth-child(7) { animation-delay: 1.2s; }

@keyframes move {
    0% { left: 0; opacity: 0; }
    35% { left: 41%; transform: rotate(0deg); opacity: 1; }
    65% { left: 59%; transform: rotate(0deg); opacity: 1; }
    100% { left: 100%; transform: rotate(-180deg); opacity: 0; }
}

/* Hide the main content initially */
#main-content {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.flag-link {
    display: inline-block;
    margin-left: 20px;
    position: relative;
}

.flag-img {
    width: 40px;  
    height: auto;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: border 0.3s, transform 0.3s;
    
}

.flag-link:hover .flag-img {
    border-color: #b69d74;
    transform: scale(1.1); 
}
@media (min-width:950px) and (max-width:1200px){
    .logo-space{
        height: 40px;
    }
    .nav-links a {
        font-size: 20px;
        padding-bottom: 3px; 
    }
    .flag-img{
        width: 25px;
    }
    .flag-link{
        margin-left: 10px;
    }
    .nav-links li {
        margin-left: 15px;
    }
}

@media (min-width:0px) and (max-width:950px){
     
    @media (max-width: 768px) {
        .nav-links {
            display: none;
            flex-direction: column;
            background-color: #17282f;
            position: absolute;
            top: 60px;
            right: 20px;
            width: 200px;
            border-radius: 5px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        }

        .nav-links.active {
            display: flex;
        }

        .nav-links li {
            margin: 10px 0;
        }

        .burger {
            display: flex;
        }
    }
}
/* 583*/
body {
    margin: 0;
    font-family: "ArchyEDT-Bold", sans-serif;
    background-color: #17282f;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #17282f;
    padding: 20px 40px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.274);
}

.logo-space {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #f4f5ef;
    font-size: 25px;
    font-weight: bold;
    padding-bottom: 5px;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #b69d74;
}

.flag-img {
    height: 25px;
    border-radius: 5px;
    transition: transform 0.3s, border 0.3s;
}

.flag-link:hover .flag-img {
    transform: scale(1.1);
    border: 2px solid #b69d74;
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #f4f5ef;
    margin: 3px 0;
    transition: all 0.3s ease-in-out;
}
/* Responsive Styles */
@media (max-width: 950px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #17282f;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        border-radius: 5px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        padding-left: 20px;
    }
.flag-cont{
    display: flex;
}
.flag-img{
    width: 30px;
    height: auto;
}
    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .burger {
        display: flex;
    }

    .burger.active div:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
    }

    .burger.active div:nth-child(2) {
        opacity: 0;
    }

    .burger.active div:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
    }

    .nav-links.active {
        animation: slideIn 0.3s forwards;
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}
@media (min-width:950px) and (max-width:1200px){
    .logo-space{
        height: 40px;
    }
    .nav-links a {
        font-size: 20px;
        padding-bottom: 3px; 
    }
    .flag-img{
        width: 25px;
    }
    .flag-link{
        margin-left: 10px;
    }
    .nav-links li {
        margin-left: 15px;
    }
}

@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }

    .footer-logo img {
        margin-top: 20px;
    }
}
@media (max-width: 1200px) {
    .services-intro h1 {
        font-size: 32px;
    }

    .services-intro p {
        font-size: 16px;
    }

    .service-item h2 {
        font-size: 22px;
    }

    .service-item p {
        font-size: 14px;
    }
    .service-item img {
        height: 155px;
    }
}

@media (max-width: 768px) {
    .services-intro h1 {
        font-size: 28px;
    }

    .services-intro p {
        font-size: 14px;
    }

    .service-item h2 {
        font-size: 20px;
    }

    .service-item p {
        font-size: 12px;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .service-item img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .services-intro h1 {
        font-size: 24px;
    }

    .services-intro p {
        font-size: 12px;
    }

    .service-item h2 {
        font-size: 18px;
    }

    .service-item p {
        font-size: 12px;
    }

    .service-item img {
        height: 120px;
    }
}

@media (max-width: 768px) {
    footer {
        flex-direction: column;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-map {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        margin-top: 10px;
        display: flex;
        flex-direction: column;
    }

    .nav-links li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .hero img {
        height: 60vh;
    }

    .appointment-form {
        left: 50%;
        width: 90%;
        transform: translate(-50%, -50%);
    }

    .service-container {
        flex-direction: column;
    }

    .services-wrapper {
        width: 100%;
         
    }

    .service {
        min-width: 100%;
        margin-right: 15px;
    }

    .lawyer-info {
        flex-direction: column;
    }

    
    
    .lawyer-info-container {
        flex-direction: column;
        align-items: center;
    }
}


.analytics {
    background-color: #17282f;
    color: #f4f5ef;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.993);
    position: relative;
    overflow: hidden;
}

.analytics-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.stat {
    flex: 1 1 200px;
    padding: 20px;
    background-color: #5f4b42;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.stat h3 {
    font-size: 48px;
    margin-bottom: 10px;
}

.stat p {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #b69d74;
}

.stat:hover {
    transform: translateY(-10px);
}

.analytics.in-view .analytics-container {
    opacity: 1;
    transform: translateY(0);
}

.Toma{
    color: #b69d74;
}
.Toma:hover{
    color: #5f4b42;
}

#loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #17282f;  
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
    opacity: 1;
    visibility: visible;
}

#load {
    position: relative;
    width: 600px;
    height: 36px;
    overflow: visible;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}

#load div {
    position: absolute;
    width: 40px;
    height: 73px;
    opacity: 0;
    font-family: Helvetica, Arial, sans-serif;
    animation: move 2s linear infinite;
    color: #b69d74;
}

#load div:nth-child(2) { animation-delay: 0.2s; }
#load div:nth-child(3) { animation-delay: 0.4s; }
#load div:nth-child(4) { animation-delay: 0.6s; }
#load div:nth-child(5) { animation-delay: 0.8s; }
#load div:nth-child(6) { animation-delay: 1s; }
#load div:nth-child(7) { animation-delay: 1.2s; }

@keyframes move {
    0% { left: 0; opacity: 0; }
    35% { left: 41%; transform: rotate(0deg); opacity: 1; }
    65% { left: 59%; transform: rotate(0deg); opacity: 1; }
    100% { left: 100%; transform: rotate(-180deg); opacity: 0; }
}

#main-content {
    opacity: 0;
    transition: opacity 0.5s ease;
}


.flag-link {
    display: inline-block;
    margin-left: 20px;
    position: relative;
}

.flag-img {
    width: auto;  
    height: auto;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: border 0.3s, transform 0.3s;
    
}
 

.flag-link:hover .flag-img {
    border-color: #b69d74;
    transform: scale(1.1); 
}


@media (min-width:950px) and (max-width:1200px){
    .logo-space{
        height: 40px;
    }
    .nav-links a {
        font-size: 20px;
        padding-bottom: 3px; 
    }
    .flag-img{
        width: 25px;
    }
    .flag-link{
        margin-left: 10px;
    }
    .nav-links li {
        margin-left: 15px;
    }
}

@media (min-width:0px) and (max-width:950px){
     
    @media (max-width: 768px) {
        .nav-links {
            display: none;
            flex-direction: column;
            background-color: #17282f;
            position: absolute;
            top: 60px;
            right: 20px;
            width: 200px;
            border-radius: 5px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        }

        .nav-links.active {
            display: flex;
        }

        .nav-links li {
            margin: 10px 0;
        }

        .burger {
            display: flex;
        }
    }
}
/* 583*/
body {
    margin: 0;
    font-family: "ArchyEDT-Bold", sans-serif;
    background-color: #17282f;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #17282f;
    padding: 20px 40px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.274);
}

.logo-space {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #f4f5ef;
    font-size: 25px;
    font-weight: bold;
    padding-bottom: 5px;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #b69d74;
}

.flag-img {
    height: 25px;
    border-radius: 5px;
    transition: transform 0.3s, border 0.3s;
}

.flag-link:hover .flag-img {
    transform: scale(1.1);
    border: 2px solid #b69d74;
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #f4f5ef;
    margin: 3px 0;
    transition: all 0.3s ease-in-out;
}

/* Responsive Styles */
@media (max-width: 950px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #17282f;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        border-radius: 5px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        padding-left: 20px;
    }
.flag-cont{
    display: flex;
}
.flag-img{
    width: 30px;
    height: auto;
}
    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .burger {
        display: flex;
    }

    .burger.active div:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
    }

    .burger.active div:nth-child(2) {
        opacity: 0;
    }

    .burger.active div:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
    }

    .nav-links.active {
        animation: slideIn 0.3s forwards;
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }

    .footer-logo img {
        margin-top: 15px;
         width: 290px;
    }
    
}