body {
    margin: 0;
    font-family: Arial, sans-serif;
    padding-top: 60px; /* Headerin hündürlüyü qədər padding əlavə edin */
}

header {
    display: flex;
    align-items: start;
    background-color: #333;
    padding: 10px 20px;
    position: fixed; /* Yuxarıya sabitlə */
    top: 0;
    left: 0;
    width: 100%; /* Bütün genişliyi əhatə et */
    z-index: 1000; /* Digər elementlərin üzərində qalmasını təmin et */
}

/* Telefon ekranları üçün header sabitliyini deaktiv edin */
@media (max-width: 768px) {
    body {
        padding-top: 0; /* Headerin yuxarıda olmaması üçün paddingi sil */
    }

    header {
        position: static; /* Headerin sabit olmasını deaktiv et */
        width: auto; /* Genişliyi avtomatik tənzimləmək */
    }
}

header .logo {
    flex: 1;
}

header .logo img {
    height: 50px;
}

nav {
    display: flex;
    align-items: center;
    flex: 2;
    justify-content: center; /* Center-align nav links */
    position: relative;
}

nav .nav-links {

    list-style: none;
    display: flex;
    margin: 0;
    padding: 15px 0 0 0;
}

nav .nav-links li {
    margin-right: 20px;
    /*width:100px*/
}

nav .nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    position: relative;
}

nav .nav-links li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px; /* Position the underline 10px below the link text */
    width: 0;
    height: 2px;
    background-color: #d4af37 !important;
    transition: width 0.3s ease-in-out;
}

nav .nav-links li a:hover::after {
    width: 100%;
}

nav .nav-lang {
    display: flex;
    align-items: center;
    margin-left: auto; /* Push the language selector to the far right */
}

nav .nav-lang select {
    background-color: #333;
    padding: 5px;
    border: none!important;
    color: white;
    appearance: none;
    width: 80px;
    height: 27px;
    font-size: 14px;
}

/* Hamburger menu styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001; /* Ensure it stays in the foreground */
    position: absolute;
    top:25px;
    right: 20px; /* Position the hamburger icon to the far right */
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
}

/* Close icon styles */
.close {
    top: 25px;
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001; /* Ensure it stays in the foreground */
    position: absolute;
    right: 20px; /* Position the close icon to the far right */
}

.close .line {
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
}

.close .line.line1 {
    transform: rotate(45deg);
    position: relative;
    top: 5px;
}

.close .line.line2 {
    transform: rotate(-45deg);
    position: relative;
    top: -5px;
}
@media (max-width: 768px) {
    nav .nav-links li {
        margin-right: 20px;
        width:100px
    }
}
.search-input{
    width:100px
}
/* Responsive styles */
@media (max-width: 768px) {
    nav .nav-links {
            display: none;
            flex-direction: column;
            position: fixed;
            top: 0;
            left: 0;
            background-color: #333;
            width: 250px;
            height: 100%;
            padding-top: 60px; /* Adjust padding to account for the height of the header */
            z-index: 1000;
        }

            nav .nav-links.active {
                display: flex;
            }

            nav .nav-links li {
                margin: 0;
                padding: 15px;
                border-bottom: 1px solid #444;
            }

                nav .nav-links li:last-child {
                    border-bottom: none;
                }

        .hamburger {
            display: flex;
        }

        .close {
            display: none;
        }

        nav .nav-links.active ~ .hamburger {
            display: none;
        }

        nav .nav-links.active ~ .close {
            display: flex;
        }
    }













    /* body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    text-align: center;
    margin: 0;
    padding: 20px;
} */
    .package-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .package-card {
        background-color: #e6e7e8;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 20px;
        width: 33%; /* Desktop */
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .package-title {
        margin: 10px 0;
    }

    .package-button {
        background-color: #d4af37!important;
        color: white;
        border: none;
        border-radius: 5px;
        padding: 10px 15px;
        cursor: pointer;
        margin: 5px 0;
        display: block;
        width: 100%;
    }

    .package-card {
        margin: 0px 20px;
        width: 320px; /* Tablet */
    }

    .package-button:hover {
        color: #ffffff;
        text-decoration: none; /* Hover edəndə text-decoration: none */
    }






    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
    }

    .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 20px;
        background-color: #f5f5f5;
        border-top: 1px solid #ddd;
    }

    .footer-left, .footer-center, .footer-right {
        padding: 10px;
    }

    .footer-left {
        flex: 1 1 25%; /* 3 columns */
        order: 1;
    }

    .footer-center {
        flex: 1 1 25%; /* 3 columns */
        order: 2;
    }

    .footer-right {
        flex: 2 1 50%; /* 6 columns */
        order: 3;
    }

    .footer-left .social-media {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 10px;
    }

        .footer-left .social-media a img {
            width: 30px;
            height: 30px;
        }

    .footer-left .contact-info p {
        margin: 5px 0;
        text-align: center;
    }

    .footer-center nav ul {
        list-style: none;
        padding: 0;
        text-align: center;
    }

        .footer-center nav ul li {
            margin: 10px 0;
        }

            .footer-center nav ul li a {
                text-decoration: none;
                color: #333;
            }

                .footer-center nav ul li a:hover {
                    text-decoration: underline;
                }

    @media (max-width: 768px) {
        .footer-left, .footer-center, .footer-right {
            flex: 1 1 100%; /* 1 column each */
            order: 0;
            text-align: center;
        }
    }

.social-media i {
    background: none;
    /*color: #d4af37;*/
    padding: 5px;
    opacity: 0.6;
    font-size: 30px;
}
.fa-square-facebook {
    color: #1877F2!important;
}
.fa-tiktok{
    color:black;
}
.fa-instagram {
    color: #E4405F;
}
.fa-whatsapp {
    color: #25D366;
}
    .fa-whatsapp:hover {
        background: none;
        color: #25D366;
        border-top: 1px solid #25D366;
        border-bottom: 1px solid #25D366;
        padding: 5px;
        transition: color 0.3s ease;
        opacity: 1;
    }
.fa-instagram:hover {
    background: none;
    color: #E4405F;
    border-top: 1px solid #E4405F;
    border-bottom: 1px solid #E4405F;
    padding: 5px;
    transition: color 0.3s ease;
    opacity: 1;
}
.fa-square-facebook:hover {
    background: none;
    color: #1877F2;
    border-top: 1px solid #1877F2;
    border-bottom: 1px solid #1877F2;
    padding: 5px;
    transition: color 0.3s ease;
    opacity: 1;
}
.fa-tiktok:hover {
    background: none;
    color: black;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    padding: 5px;
    transition: color 0.3s ease;
    opacity: 1;
}


    .contact-info a {
        color: black;
        text-decoration: none;
    }

        .contact-info a:hover {
            /* color: rgba(255, 166, 0, 0.68);
    transition: color 0.3s ease;
    text-decoration: none; */
        }

    .footer-center a:hover {
        color: rgba(255, 166, 0, 0.68);
        text-decoration: none !important;
        padding-bottom: 5px;
        transition: color 0.3s ease;
        /* border-bottom: 1px solid rgba(255, 166, 0, 0.68); */
    }

    .product-image {
        width: 100%;
        height: auto; /* Maintain aspect ratio */
        max-height: 300px; /* Ensure it doesn't exceed 300px in height */
    }

    .container img {
        max-width: 600px;
        max-height: 500px;
        display: block;
        margin-top: 130px;
    }

    .container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .container div {
            max-width: 100%;
            transition: width 0.5s ease, height 0.5s ease;
        }

        .container img {
            width: 100%;
            height: auto;
            display: block;
        }

    .mySlides {
        display: none
    }

    .w3-left, .w3-right, .w3-badge {
        cursor: pointer
    }

    .w3-badge {
        height: 13px;
        width: 13px;
        padding: 0
    }

    .cat-card {
        border-radius: 15px !important;
    }
    /* .w3-button{
    background-color: #d4af37!important!important;
}
.w3-content {
    position: relative;
}
.w3-display-left, .w3-display-right {
    cursor: pointer;
    top: 50%;
    width: auto;
    padding: 16px;
    color: white;
    background-color: rgba(0,0,0,0.5);
}
.w3-display-left {
    left: 0;
}
.w3-display-right {
    right: 0;
}
.mySlides {
    display: none;
    height:300px;
    max-width: 100%;
} */
    @media (min-width: 768px) {
        main {
            margin-top: 100px; /* Adjust height for tablets */
        }
    }

    .grid-item img {
        border-bottom: 2px solid #d4af37!important;
        padding-bottom: 10px;
    }

    .grid-item h2 {
        font-family: sans-serif;
        font-weight: 300;
    }

    .grid-item a {
        background-color: #d4af37!important;
        color: white;
        padding: 7px 14px;
        border-radius: 10px;
    }

        .grid-item a:hover {
            background-color: #d4af37!important;
            color: white;
            padding: 7px 14px;
            border-radius: 10px;
            text-decoration: none;
        }


    .responsive-image {
        width: 100%;
        height: 300px !important;
    }


















































































    body {
        margin: 0;
        font-family: Arial, sans-serif;
    }

    .banner-slider {
        position: relative;
        overflow: hidden;
        width: 100%;
        height: 50vh;
        background-color: #000;
    }

    .banner {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.5s ease;
    }

        .banner.active {
            opacity: 1;
        }

        .banner img {
            width: 100%;
            height: 100%; /* Yüksekliği de %100 yaparak tam ekran görünüm elde ediyoruz */
            object-fit: cover; /* Resmin orantılı bir şekilde kesilmesini sağlar */
        }

    .content {
        position: absolute;
        color: white;
        z-index: 10;
        text-align: center;
        bottom: 20%;
        left: 50%;
        transform: translateX(-50%);
    }

        .content h1 {
            font-size: 2.5em;
            margin: 0;
        }

        .content p {
            font-size: 1.2em;
        }

    .award {
        margin-top: 20px;
        background-color: red;
        padding: 10px;
        display: inline-block;
    }

        .award span {
            color: white;
            font-weight: bold;
        }

    .dots {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
    }

    .dot {
        height: 12px;
        width: 12px;
        background-color: white;
        border-radius: 50%;
        display: inline-block;
        cursor: pointer;
        opacity: 0.5;
    }

        .dot.active {
            opacity: 1;
        }


    .grid-container {
        display: flex;
        flex-direction: column; /* Stack items vertically by default */
        width: 100%;
        padding: 1rem;
        gap: 1rem; /* Space between items */
    }

    .grid-item {
        /* background-color: #e0e0e0;
    border: 1px solid #b0b0b0;
    border-radius: 5px;
    padding: 1rem;
    text-align: center;
    font-size: 1rem; */
    }

    /* Responsive styles */
    @media (min-width: 768px) {
        .grid-container {
            flex-direction: row; /* Stack items horizontally on tablets and larger screens */
            flex-wrap: wrap; /* Allow wrapping if there's not enough space */
            gap: 1rem; /* Space between items */
        }

        .grid-item {
            flex: 1 1 calc(50% - 1rem); /* Two items per row */
            box-sizing: border-box;
        }
    }

    @media (min-width: 800px) {
        .grid-item {
            flex: 1 1 calc(25% - 1rem); /* Four items per row on larger screens */
        }
    }


    .grid-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 колонки на больших экранах */
        gap: 20px; /* Расстояние между блоками */
        padding: 20px;
    }

    .item {
        /* background-color: #673AB7;
    color: white;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
    }

    @media (max-width: 800px) {
        .grid-container {
            grid-template-columns: 1fr; /* 1 колонка на телефонах */
        }
    }

    .grid-container img {
        height: 300px;
        max-width: 550px !important;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    .title {
        text-align: center;
        font-size: 2em;
        margin-bottom: 20px;
    }

    .contact-form-map {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 20px;
        flex-wrap: wrap;
    }

    .contact-form {
        flex: 1;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .form-group {
        display: flex;
        gap: 10px;
    }

    .form-control {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 1em;
    }

        .form-control:focus {
            border-color: #007bff;
            outline: none;
        }

    .submit-button {
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        background-color: #28a745;
        color: white;
        font-size: 1em;
        cursor: pointer;
    }

        .submit-button:hover {
            background-color: #218838;
        }

    .map-container {
        flex: 1;
        min-width: 300px;
    }

    @media (max-width: 768px) {
        .contact-form-map {
            flex-direction: column;
        }

        .contact-form, .map-container {
            max-width: 100%;
        }
    }

    @media (min-width: 617px) {
        .carouselim,
        .carouselim2,
        .carouselim3,
        .carouselim4,
        .carouselim5,
        .carouselim6 {
            margin-block: 10vh;
            display: grid;
            row-gap: 30px;
            place-items: center;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }

        .cat-card {
            margin: 10px;
            transition: 0.5s;
            width: 240px;
            & img

{
    background: #d7d7d7;
    width: 100%;
}

}

}

@media (max-width: 617px) {
    .slider-container{
        padding:0px
    }
    .cat-card-p{
        padding: 10px!important
    }
        .slider-container .name{
            height:40px
        }
        .carouselim,
        .carouselim2,
        .carouselim3,
        .carouselim4,
        .carouselim5,
        .carouselim6 {
            margin-block: 10vh;
            display: grid;
            row-gap: 30px;
            place-items: center;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        }

    .cat-card img {
        height: 140px!important;
        width: 140px!important;
    }

    .cat-card {
        margin: 10px;
        transition: 0.5s;
        width: 140px;
        & img

{
    background: #d7d7d7;
    width: 100%;
}

}

}
.slides-wrapper {
    background-image: url('pd_bg (1).png');
    background-size: cover; /* Şəkli tam örtmək üçün */
    background-position: center; /* Mərkəzə yerləşdirmək üçün */
}


@media (max-width: 377px) {
    .slider-container {
        padding: 0px
    }

    .cat-card-p {
        padding: 10px !important
    }

    .slider-container .name {
        height: 40px
    }

    .carouselim,
    .carouselim2,
    .carouselim3,
    .carouselim4,
    .carouselim5,
    .carouselim6 {
        margin-block: 10vh;
        display: grid;
        row-gap: 30px;
        place-items: center;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .cat-card img {
        height: 120px !important;
        width: 120px !important;
    }

    .cat-card {
        margin: 10px;
        transition: 0.5s;
        width: 120px;
        & img

{
    background: #d7d7d7;
    width: 100%;
}

}
}


    .cat-card:hover {
        box-shadow: 0 0 12px 7px #f7f7f7;
        h5 {
      color: #d1a374;
    }
  }
  .cat-card-p {
    padding: 24px 15px;
    min-height: 130px;
    background: #fff;
    & p {
      color: #6f6f6f;
      font: 400 1rem/1.5 "lato", sans-serif;
    }
  }
  .cat-card-p {
    padding: 24px 15px;
    min-height: 130px;
    background: #fff;
  }
    .cat-card-p  p {
      color: #6f6f6f;
      font: 400 1rem/1.5 "lato", sans-serif;
    }
  
  .cat-card img{
    margin: 0px;
  }
  .cat-card a:hover{
    text-decoration: none;
    cursor: pointer;
  }
  
.search-container {
    position: relative;
    display: inline-block;
   width: 200px!important;
    margin: auto;
    
}
#search-bar::placeholder {
    color: white;
    
}
#search-bar {
    width: 60%;
    /* padding: 3px 10px 0px 10px; */
    border: none;
    /*margin-top: 4px;*/
    color: #ffffff;
    border-radius: 25px;
    background-color: rgb(51, 51, 51);

    font-size: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.languageSection a {
    text-decoration: none;
    color: #000; /* Normal vəziyyətdə yazının rəngi */
    padding: 5px 10px;
    font-size: 14px;
    transition: font-size 0.3s, color 0.3s;
}

    .languageSection a.active {
        color: #d4af37!important; /* Aktiv olanın yazı rəngi */
        font-size: 16px; /* Aktiv olanın yazı böyüklüyü */
    }

#search-bar:focus {
    border-color: rgb(51, 51, 51);
    box-shadow: 0 4px 8px rgba(51, 51, 51, 0.2);
    outline: none;
    color: white;
}

.results-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height:180px;
    background-color: rgb(51, 51, 51);
    border: 1px solid rgb(51, 51, 51);
    border-radius: 0 0 10px 10px;
    overflow-y: auto;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1000;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.results-container a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    height: 100%;
    border-bottom: 1px solid #f1f1f1;
    /* transition: background-color 0.3s ease, color 0.3s ease; */
}

.results-container a:last-child {
    border-bottom: none;
}

.results-container a:hover {
    background-color: rgb(51, 51, 51);
    color: #ffffff;
    transition: rgb(51, 51, 51) 0.3s ease;
    border-bottom: none;
   
    text-decoration: none;
}
.results-container .no-results {
    padding: 12px 20px;
    color: #ffffff; /* Mətnin rəngi qırmızı */
    text-align: center;
    font-size: 20px;
}
.links-a-pakets .package-title {
    color: black !important;
}
.section-space-bottom-100 {
    padding-bottom: 100px;
}




/*.carousel-wrapper {
    width: 80%;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 1s ease-in-out;
}
*/
.item {
    width: 20%;
    box-sizing: border-box;
    background-color: #2196F3;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    border: 2px solid #ffffff;
}
.slayder-11 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    padding: 0 35px;
    background: rgb(228, 220, 220);
}

.wrapper {
    max-width: 1100px;
    width: 100%;
    position: relative;

}

    .wrapper i {
        height: 50px;
        width: 50px;
        background: rgb(118, 233, 118);
        text-align: center;
        line-height: 50px;
        border-radius: 50%;
        cursor: pointer;
        position: absolute;
        top: 50%;
        font-size: 1.25 rem;
        transform: translateY(-50%);
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
    }

        .wrapper i:first-child {
            left: -22px;
        }

        .wrapper i:last-child {
            right: -22px;
        }

    .wrapper .carousel {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: calc((100% / 6) - 12px);
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: 0;
    }

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel :where(.card, .img) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.carousel.no-transition {
    scroll-behavior: auto;
}

.carousel.dragging .card {
    cursor: grab;
    user-select: none;
}

.carousel .card {
    scroll-snap-align: start;
    height: 340px;
    list-style: none;
    background: #fff;
    border-radius: 8px;
    display: flex;
    cursor: pointer;
    width: 50%;
    padding-bottom: 15px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.card .img {
    background: green;
    width: 145px;
    height: 145px;
    border-radius: 50%;
}

    .card .img img {
        width: 140px;
        height: 140px;
        object-fit: cover;
        border-radius: 50%;
        border: 4px solid #fff;
    }

.card h2 {
    font-weight: 500;
    font-size: 1.56rem;
    margin: 30px 0 5px;
}

.card span {
    color: black
    font-size: 1.31rem;
}

@media screen and (max-width: 900px) {
    .wrapper .carousel {
        grid-auto-columns: calc((100% / 4));
    }
}

@media screen and (max-width: 600px) {
    .wrapper .carousel {
        grid-auto-columns: calc((100% / 3) );
        
    }
    .dropdown {
        display: none; /* Başlangıçta gizli */
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #333;
        padding: 10px;
        z-index: 999;
        border:none!important
    }
}
@media screen and (max-width: 460px) {
    .wrapper .carousel {
        grid-auto-columns: calc((100% /2 ) );
    }
}
.fa-angle-left {
    background-color: black;
}
ng-pluralize /* Üst dropdown elementi */
.dropdown {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    position: relative;
}

.dropdown-item {
    position: relative; /* Submenu-nun ana elementi ilə mövqelənməsini təmin edir */
}

/* Submenu başlanğıcda gizlidir */


/*        .submenu li a:hover {
            background-color: #ddd;
        }
.item-drop-down:hover {
    background-color: black;
}*/

/* Hover zamanı submenu göstərilir */
.dropdown-item:hover .submenu {
    display: block;
}
.dropdown-item:hover .dropdown-item {
    display: block;
}
.dropdown-item:hover .submenu {
   background:none;
   color:black;
   display:block!important
}

/* Ana menü hover ile dropdown görünür */
.hover-div {
    position: relative;
    cursor: pointer;
}

/*.dropdown {
    display: none;*/ /* Başlangıçta gizli */
    /*position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    padding: 10px;
    border: 1px solid #ccc;
    z-index: 999;
}*/
.dropdown {
    display: none; /* Başlangıçta gizli */
    position: absolute;
    top: 90%;
    left: 0;
    background-color: #333;
    padding: 7px;
    border: 1px solid #ccc;
    z-index: 999;
    width:270px!important;
    cursor:pointer;
    /* Yükseklik sınırı ve kaydırma */
height:auto;
}

.hover-div:hover .dropdown {
    display: block !important; /* Hover ile görünür */
}

/* Her dropdown item için submenu */
.dropdown-item {
    position: relative;
}

.submenu {
    display: none;
    
}

/* Her dropdown-item hover edilince submenu açılır */
.dropdown-item:hover .submenu {
    display: block;
}

.dropdown li, .submenu li {
    list-style: none;
    margin: 5px 0;
}

.dropdown a, .submenu a {
    text-decoration: none;
}

    .dropdown a:hover, .submenu a:hover {
    }
.a-link-img {
    background-color: #F3E5AB;
}
@media (min-width: 992px) {

 
    /* Submenu'yu sola hizala */
    .submenu {
        left: 0;
        top:0;/* Burada submenu sol tarafta açılacak */
        background-color: #7c7c7c !important;
        width: 100%!important; /* Genişlik ihtiyaca göre ayarlanabilir */
    }

        .submenu li {
            background: none !important;
            width: 100%;
            margin-left:15px
        }
    .dropdown-item:hover .submenu {
       position:absolute;
       top:0;
       left:100%
    }
}
@media (max-width:991px){
    .dropdown {
        height: 270px;
        overflow-y: auto
    }
    .dropdown-item:hover .submenu {
        position: relative;
        
    }
}
/* Hover ile dropdown görünür */
.hover-div:hover .dropdown {
    display: block !important;
}
