/**
 * Ziyaretçi Arayüzü CSS
 */

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

.btn-primary {
    background-color: #163172;
    border-color: #163172;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: #0e2350 !important;
    border-color: #0e2350 !important;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: #163172;
}

a:hover {
    text-decoration: none;
}

.section-title {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 15px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #163172;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-description {
    margin-bottom: 30px;
    color: #666;
}

/* Header Styles */
/* Top Bar */
.top-bar {
    font-size: 14px;
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.top-bar .list-inline-item {
    margin-right: 15px;
}

.top-bar .list-inline-item:last-child {
    margin-right: 0;
}

.contact-info .list-inline-item {
    margin-right: 20px;
}

.contact-link {
    color: #555;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #163172;
}

.social-icons-topbar {
    display: flex;
    align-items: center;
}

.social-icons-topbar .list-inline-item {
    margin-right: 8px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: rgba(22, 49, 114, 0.1);
    color: #163172;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #163172;
    color: #fff;
    transform: translateY(-2px);
}

/* Language Switcher Styles */
.language-switcher {
    position: relative;
}

.language-selector {
    position: relative;
}

.language-btn {
    background: transparent;
    border: none;
    color: #555;
    font-weight: 500;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.language-btn:hover {
    background-color: rgba(22, 49, 114, 0.05);
    color: #163172;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 150px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
    z-index: 1000;
    display: none;
    margin-top: 5px;
    overflow: hidden;
}

.language-dropdown.show {
    display: block;
    animation: fadeInDown 0.3s ease;
}

.language-option {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background-color: #f8f9fa;
    color: #163172;
}

.language-option.active {
    background-color: #f0f0f0;
    color: #163172;
    font-weight: 600;
}

.language-name {
    display: inline-block;
}

/* Flag Icons */
.flag-icon {
    display: inline-block;
    width: 1.33em;
    height: 1em;
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat;
    position: relative;
}

.flag-icon-tr {
    background-image: url('https://flagcdn.com/w20/tr.png');
}

.flag-icon-gb, .flag-icon-en {
    background-image: url('https://flagcdn.com/w20/gb.png');
}

.flag-icon-de {
    background-image: url('https://flagcdn.com/w20/de.png');
}

.flag-icon-fr {
    background-image: url('https://flagcdn.com/w20/fr.png');
}

.flag-icon-es {
    background-image: url('https://flagcdn.com/w20/es.png');
}

.flag-icon-it {
    background-image: url('https://flagcdn.com/w20/it.png');
}

.flag-icon-ru {
    background-image: url('https://flagcdn.com/w20/ru.png');
}

.flag-icon-cn {
    background-image: url('https://flagcdn.com/w20/cn.png');
}

.flag-icon-ar {
    background-image: url('https://flagcdn.com/w20/sa.png');
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header Styles */

/* Page Header */
.page-header.bg-primary {
    background-color: #163172 !important;
}

/* Main Navigation */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

/* Bootstrap'in varsayılan dropdown ok işaretini tamamen kaldır */
.dropdown-toggle::after {
    display: none !important;
}

.navbar-scrolled {
    padding: 10px 0;
}

.logo {
    max-height: 50px;
    transition: all 0.3s ease;
}

.navbar-scrolled .logo {
    max-height: 45px;
}

.navbar-nav {
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    padding: 10px 30px;
    font-weight: 600;
    color: #333;
    position: relative;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.navbar-nav .nav-item:not(:last-child):after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 1px;
    background-color: #e0e0e0;
}

.navbar-nav .nav-link:hover {
    color: #163172;
}

.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-link.active {
    color: #163172 !important;
    font-weight: 700;
}

/* Dropdown menü için özel ikon ekle */
.navbar-nav .dropdown .nav-link:after {
    content: none; /* Font Awesome ikon kodunu kaldırdık */
    display: none;
}

/* Dropdown menü stili - eski */
.dropdown-menu {
    display: none;
}

@media (max-width: 991.98px) {
    /* Mobil Dropdown Menü */
    .dropdown-menu {
        display: none !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        float: none !important;
        position: static !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        background-color: #f8f9fa !important;
    }

    .dropdown.show .dropdown-menu {
        display: block !important;
    }

    .dropdown-item {
        padding: 10px 20px 10px 40px !important;
        margin: 0 !important;
        font-weight: normal !important;
        color: #333 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
        white-space: normal !important;
        font-size: 14px !important;
    }

    .dropdown-item:last-child {
        border-bottom: none !important;
    }
}

.contact-btn {
    font-weight: 600;
    background-color: #163172;
    border-color: #163172;
    color: #fff !important;
    box-shadow: 0 4px 10px rgba(22, 49, 114, 0.2);
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #0e2350;
    border-color: #0e2350;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(22, 49, 114, 0.3);
}

/* Slider Styles */
.slider {
    position: relative;
}

.slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.carousel-item {
    height: 600px;
    background-size: cover;
    background-position: center;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carousel-caption {
    padding: 20px;
    bottom: 50px;
    z-index: 2;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    max-width: 90%;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.carousel-caption h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Mobil cihazlar için slider caption düzenlemeleri */
@media (max-width: 767.98px) {
    .carousel-item {
        height: 400px;
    }

    .carousel-caption {
        bottom: 20px;
        padding: 15px;
    }

    .carousel-caption h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .carousel-caption p {
        font-size: 0.9rem;
        margin-bottom: 10px;
        display: -webkit-box;
        display: box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .carousel-caption .btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
    }
}

/* Çok küçük cihazlar için ek düzenlemeler */
@media (max-width: 575.98px) {
    .carousel-item {
        height: 300px;
    }

    .carousel-caption {
        bottom: 10px;
        padding: 10px;
    }

    .carousel-caption h2 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .carousel-caption p {
        font-size: 0.8rem;
        margin-bottom: 8px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .carousel-caption .btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
}

.carousel-control-prev, .carousel-control-next {
    z-index: 2;
}

/* CNC Tezgahları Sayfası */
.cnc-machines-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.cnc-machine-item {
    margin-bottom: 60px;
    transition: all 0.3s ease;
}

.cnc-machine-item:last-child {
    margin-bottom: 0;
}

.cnc-machine-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cnc-machine-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.cnc-machine-item:hover .cnc-machine-image img {
    transform: scale(1.03);
}

.cnc-machine-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.cnc-machine-content .machine-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #163172;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.cnc-machine-content .machine-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #163172;
}

.machine-description {
    color: #555;
    line-height: 1.8;
}

.machine-specs {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 15px;
    border-left: 3px solid #163172;
}

.specs-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #163172;
    margin-bottom: 10px;
}

.specs-content ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.specs-content li {
    margin-bottom: 8px;
}

.cta-box {
    margin-top: 40px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.cta-box:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

@media (max-width: 991.98px) {
    .cnc-machine-item .row {
        flex-direction: column-reverse !important;
    }

    .cnc-machine-content {
        margin-bottom: 30px;
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #ffffff;
}

.about img {
    width: 100%;
    height: auto;
}

/* Services Section */
.services .card {
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
}

.services .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.services .card-img-top {
    height: 200px;
    object-fit: cover;
}

.services .card-title {
    font-weight: 600;
    margin-bottom: 15px;
}

/* News Section */
.news {
    background-color: #ffffff;
    position: relative;
    padding-top: 70px;
}

.news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 15px;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), transparent);
}

.news .card {
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
}

.news .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.news .card-img-top {
    height: 200px;
    object-fit: cover;
}

.news .card-title {
    font-weight: 600;
    margin-bottom: 15px;
}

.news-date {
    color: #666;
}

/* References Section */
.references {
    background-color: #ffffff;
    padding: 80px 0;
}

.reference-item {
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.reference-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.reference-item img {
    max-height: 70px;
    max-width: 100%;
}

.reference-name {
    font-weight: 600;
    color: #333;
}

/* Contact CTA */
.contact-cta {
    padding: 60px 0;
}

.contact-cta h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

/* Footer Styles */
footer {
    background-color: #081526;
    background-image: linear-gradient(135deg, #081526, #050e1a);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Daire şeklindeki dekoratif öğeler kaldırıldı */

footer .container {
    position: relative;
    z-index: 2;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 18px;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #fff;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

footer a:hover {
    color: #fff;
    text-decoration: none;
    transform: translateX(5px);
}

footer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

footer .list-unstyled li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

footer .list-unstyled li:last-child {
    border-bottom: none;
}

footer .list-unstyled li:hover {
    padding-left: 5px;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #fff;
}

.social-icons a:hover {
    background-color: #fff;
    color: #081526;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-links a {
    position: relative;
    font-size: 14px;
}

.footer-links a:not(:last-child):after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
}

.icon-box {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding: 0;
    border-radius: 50%;
    z-index: 999;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.back-to-top {
    background-color: #163172;
    border-color: #163172;
}

.back-to-top:hover {
    background-color: #0e2350;
    border-color: #0e2350;
}

/* About Hero Section */
.about-hero {
    background-color: #163172;
    background-image: linear-gradient(135deg, #163172, #0e2350);
    padding: 30px 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    transform: translate(100px, -150px);
    z-index: 1;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    transform: translate(-50px, 50px);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero-title {
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    font-size: 2.2rem;
    letter-spacing: 1px;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: rgba(255, 255, 255, 0.5);
}

/* About Content */
.about-content {
    background-color: #ffffff;
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
}

.about-image-container {
    position: relative;
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
}

.about-image-container:hover .about-main-image {
    transform: scale(1.03);
}

.about-text-box {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
}

.about-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #163172;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #163172;
}

.about-subtitle {
    font-size: 1.2rem;
    color: #163172;
    margin-bottom: 25px;
    font-weight: 500;
}

.about-description {
    margin-bottom: 30px;
    line-height: 1.8;
    color: #555;
}

.about-description p {
    margin-bottom: 15px;
}

.about-features {
    margin-top: 30px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-feature-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(22, 49, 114, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #163172;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.about-feature-item:hover .feature-icon {
    background-color: #163172;
    color: #fff;
}

.feature-content h5 {
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.feature-content p {
    margin-bottom: 0;
    color: #666;
    font-size: 0.95rem;
}

.content-wrapper {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.content-wrapper:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.content {
    line-height: 1.8;
    color: #444;
}

.content h2 {
    color: #163172;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
}

.content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #163172;
}

.content h3 {
    color: #163172;
    font-weight: 600;
    margin-bottom: 15px;
}

.content p {
    margin-bottom: 20px;
}

.content ul, .content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content ul li, .content ol li {
    margin-bottom: 10px;
}

.content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.content a {
    color: #163172;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.content a:hover {
    color: #0e2350;
    text-decoration: underline;
}

.content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.content table th, .content table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}

.content table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.content table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.content blockquote {
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #163172;
    margin: 20px 0;
    font-style: italic;
}

/* About Page Styles */
.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background-color: #163172;
    color: #fff;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .section-title {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 15px;
    color: #163172;
    font-weight: 700;
}

.about-content .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #163172;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.feature-box {
    margin-bottom: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(22, 49, 114, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #163172;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background-color: #163172;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(22, 49, 114, 0.2);
}

.feature-text h5 {
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.feature-text p {
    margin-bottom: 0;
    color: #666;
}

.mission-box, .vision-box {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mission-box:hover, .vision-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-icon, .vision-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(22, 49, 114, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #163172;
    font-size: 30px;
    transition: all 0.3s ease;
}

.mission-box:hover .mission-icon, .vision-box:hover .vision-icon {
    background-color: #163172;
    color: #fff;
    transform: rotateY(180deg);
}

.mission-box h3, .vision-box h3 {
    margin-bottom: 15px;
    font-weight: 700;
    color: #163172;
}

.mission-box p, .vision-box p {
    color: #666;
    line-height: 1.8;
}

.values-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    position: relative;
    margin-top: 20px;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 15px;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), transparent);
}

.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #163172;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #163172;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.section-title {
    font-weight: 700;
    color: #163172;
    margin-bottom: 10px;
}

.section-description {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.value-card {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(22, 49, 114, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #163172;
    font-size: 24px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background-color: #163172;
    color: #fff;
    transform: rotateY(180deg);
}

.value-card h4 {
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.team-member {
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-img {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 50%;
    border: 5px solid rgba(22, 49, 114, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover .member-img {
    border-color: #163172;
}

.team-member h5 {
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.social-icons-sm {
    margin-top: 15px;
}

.social-icons-sm a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(22, 49, 114, 0.1);
    border-radius: 50%;
    margin: 0 5px;
    color: #163172;
    transition: all 0.3s ease;
}

.social-icons-sm a:hover {
    background-color: #163172;
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 767.98px) {
    .experience-badge {
        width: 100px;
        height: 100px;
        right: 10px;
        bottom: 10px;
    }

    .experience-badge .years {
        font-size: 2rem;
    }

    .experience-badge .text {
        font-size: 0.8rem;
    }

    .about-content {
        margin-top: 30px;
    }
}

/* Contact Page */
.contact-info-item {
    margin-bottom: 30px;
}

.contact-info-item i {
    font-size: 24px;
    color: #163172;
    margin-bottom: 15px;
}

.contact-info-item h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-form .form-control {
    padding: 12px 15px;
    border-radius: 0;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: #163172;
}

.map-container {
    height: 400px;
    margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 15px 0;
    }

    .carousel-item {
        height: 400px;
    }

    .carousel-caption h2 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.8rem;
    }

    .carousel-item {
        height: 300px;
    }

    .carousel-caption {
        bottom: 20px;
        padding: 15px;
        z-index: 2;
    }

    .carousel-caption h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .carousel-caption p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .about, .services, .news, .references {
        padding: 50px 0;
    }

    .contact-cta {
        padding: 40px 0;
    }

    .page-header {
        padding: 25px 0;
        margin-bottom: 40px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .content-wrapper {
        padding: 20px !important;
    }
}

/* Service Icons Section */
.service-icons {
    background-color: #ffffff;
    position: relative;
    margin-top: -30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    z-index: 10;
    padding: 40px 0 30px 0;
}

.service-icons-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 20px 0;
}

.service-icons-row .col-2 {
    width: 16.666%;
    padding: 0 10px;
    flex: 0 0 auto;
}

.service-icon-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-icon-link:hover {
    text-decoration: none;
    color: inherit;
}

.service-icon-item {
    transition: all 0.4s ease;
    padding: 25px 5px;
    cursor: pointer;
    border-radius: 10px;
    background-color: #ffffff;
}

.service-icon-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(22, 49, 114, 0.1);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 50%;
    transition: all 0.4s ease;
    color: #163172;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.service-icon:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(22, 49, 114, 0.1); /* Hafif mavi arka plan */
    border-radius: 50%;
    top: 0;
    left: 0;
    transform: scale(0);
    transition: all 0.4s ease;
    z-index: -1;
}

.service-icon-item:hover .service-icon:before {
    transform: scale(1);
}

.service-icon-item:hover .service-icon {
    color: #0d2047; /* Hover durumunda rengi daha koyu lacivert yap */
    box-shadow: 0 10px 25px rgba(22, 49, 114, 0.2); /* Gölgeyi artır */
}

/* Servis ikonlarının hover durumunda beyaz olmasını engelle */
.service-icon-link:hover .service-icon i {
    color: #0d2047 !important;
}

/* Servis ikonlarının hover durumunda beyaz olmasını kesinlikle engelle */
.service-icon i {
    color: #163172 !important;
}

.service-icon-item:hover .service-icon i {
    color: #0d2047 !important;
}

.service-icon-item h5 {
    font-size: 14px;
    font-weight: 700;
    margin-top: 15px;
    transition: all 0.3s ease;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.service-icon-item:hover h5 {
    color: #163172;
}

.btn-services {
    padding: 12px 35px;
    background-color: #163172;
    background-image: linear-gradient(135deg, #163172, #1e45a0);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    color: #ffffff;
    box-shadow: 0 8px 15px rgba(22, 49, 114, 0.2);
}

.btn-services:hover {
    background-color: #163172;
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(22, 49, 114, 0.3);
    color: #ffffff;
}

@media (max-width: 991.98px) {
    .service-icons {
        margin-top: 0;
        padding: 35px 0 25px 0;
    }

    .service-icons-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .service-icons-row .col-2 {
        width: 33.333%;
        margin-bottom: 20px;
    }

    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 28px;
    }

    .service-icon-item h5 {
        font-size: 13px;
    }
}

@media (max-width: 575.98px) {
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 24px;
    }

    .service-icons-row .col-2 {
        width: 50%;
    }

    .service-icon-item h5 {
        font-size: 12px;
    }
}

/* Haber Kartları Stili */
.news-card {
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

/* Pagination Stili */
.pagination {
    margin-bottom: 30px;
}

/* Teklif Al Modal Stili */
#quoteModal .modal-header {
    background-color: #163172 !important;
    border-bottom: none;
    border-radius: 0.3rem 0.3rem 0 0;
}

#quoteModal .modal-content {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
}

#quoteModal .form-floating label {
    color: #6c757d;
}

#quoteModal .form-control:focus {
    border-color: #163172;
    box-shadow: 0 0 0 0.25rem rgba(22, 49, 114, 0.25);
}

#quoteModal .btn-primary {
    background-color: #163172 !important;
    border-color: #163172 !important;
}

#quoteModal .btn-primary:hover {
    background-color: #0e2358 !important;
    border-color: #0e2358 !important;
}

#quoteModal .form-text {
    font-size: 0.8rem;
    color: #6c757d;
}

#quoteModal .modal-body {
    padding: 2rem;
}

.pagination .page-link {
    color: #163172;
    border-color: #e9ecef;
    font-weight: 500;
    padding: 8px 16px;
}

.pagination .page-item.active .page-link {
    background-color: #163172;
    border-color: #163172;
    color: #fff;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #e9ecef;
}

.pagination .page-link:hover {
    background-color: #e9ecef;
    color: #0e2358;
    border-color: #dee2e6;
}

.pagination .page-link:focus {
    box-shadow: 0 0 0 0.2rem rgba(22, 49, 114, 0.25);
}

.news-card .card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.news-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.news-card .card-img-top {
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.news-card .card-body {
    padding: 20px;
}

.news-card .card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
    height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-card .card-text {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    height: 67px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news-card .news-date {
    color: #163172;
    font-size: 13px;
    font-weight: 500;
}

.news-card .btn-outline-primary {
    border-color: #163172;
    color: #163172;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
}

.news-card .btn-outline-primary:hover {
    background-color: #163172;
    color: #fff;
}

@media (max-width: 767.98px) {
    .news-card .card-img-top {
        height: 180px;
    }
}

/* Kurumsal ve Misyon Bölümü */
.corporate-mission-section {
    padding: 0;
    margin: 70px 0;
    background-color: #ffffff;
}

.corporate-box {
    padding: 60px 70px 60px 50px;
    background-color: #ffffff;
    height: 100%;
    position: relative;
    border-right: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.corporate-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100px;
    background-color: #0e2358;
}

.mission-box {
    padding: 60px 50px 60px 70px;
    background-color: #0e2358;
    background-image: linear-gradient(135deg, #0e2358, #163172);
    color: #ffffff;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.corporate-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.corporate-logo {
    margin-right: 20px;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #f0f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.corporate-logo i {
    font-size: 26px;
    color: #0e2358;
}

.corporate-box h2 {
    color: #0e2358;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.mission-box h2 {
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 20px;
}

.mission-box h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background-color: #ffffff;
}

.corporate-content {
    margin-bottom: 35px;
    color: #555;
}

.corporate-content p {
    margin-bottom: 18px;
    line-height: 1.7;
    font-size: 15px;
}

.mission-content {
    margin-bottom: 35px;
    color: #ffffff;
}

.mission-content p {
    margin-bottom: 18px;
    line-height: 1.7;
    font-size: 15px;
    color: #ffffff;
}

.btn-corporate {
    display: inline-block;
    padding: 12px 35px;
    background-color: #0e2358;
    background-image: linear-gradient(135deg, #0e2358, #163172);
    color: #ffffff;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: 0 8px 15px rgba(22, 49, 114, 0.2);
}

.btn-corporate:hover {
    background-color: #163172;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(22, 49, 114, 0.3);
    text-decoration: none;
}

.btn-mission {
    display: inline-block;
    padding: 12px 35px;
    background-color: transparent;
    color: #ffffff;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
}

.btn-mission:hover {
    background-color: #ffffff;
    color: #0e2358;
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .corporate-mission-section {
        margin: 50px 0;
    }

    .corporate-box, .mission-box {
        padding: 40px 30px;
        margin-bottom: 0;
    }

    .corporate-box {
        border-bottom: 1px solid #e5e5e5;
    }

    .mission-box {
        margin-top: 0;
    }

    .corporate-box h2, .mission-box h2 {
        font-size: 22px;
    }
}

/* Blog Styles */
.blog-header {
    background-color: #163172;
    background-image: linear-gradient(135deg, #163172, #0e2350);
    padding: 60px 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    transform: translate(100px, -150px);
    z-index: 1;
}

.blog-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    transform: translate(-50px, 50px);
    z-index: 1;
}

.blog-header .container {
    position: relative;
    z-index: 2;
}

.blog-header h1 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.blog-header .meta {
    display: flex;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.blog-header .meta div {
    margin: 0 10px;
    display: flex;
    align-items: center;
}

.blog-header .meta i {
    margin-right: 5px;
}

.blog-header .breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}

.blog-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.blog-header .breadcrumb-item a:hover {
    color: #fff;
    text-decoration: none;
}

.blog-header .breadcrumb-item.active {
    color: #fff;
}

.blog-header .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: rgba(255, 255, 255, 0.5);
}

.blog-content {
    background-color: #ffffff;
    position: relative;
    padding: 60px 0;
    display: flex;
}

.blog-container {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
}

.blog-image {
    width: 100%;
    height: auto;
    display: block;
}

.blog-body {
    padding: 30px;
}

.blog-body .content {
    line-height: 1.8;
    color: #444;
}

.blog-body .content h2 {
    color: #163172;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
}

.blog-body .content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #163172;
}

.blog-body .content h3 {
    color: #163172;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-body .content p {
    margin-bottom: 20px;
}

.blog-body .content ul,
.blog-body .content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.blog-body .content ul li,
.blog-body .content ol li {
    margin-bottom: 10px;
}

.blog-body .content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.blog-body .content a {
    color: #163172;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-body .content a:hover {
    color: #0e2350;
    text-decoration: underline;
}

.blog-body .content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.blog-body .content table th,
.blog-body .content table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}

.blog-body .content table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.blog-body .content table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.blog-body .content blockquote {
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #163172;
    margin: 20px 0;
    font-style: italic;
}

.blog-share {
    display: flex;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 30px;
}

.blog-share h5 {
    margin-bottom: 0;
    margin-right: 15px;
    font-weight: 600;
}

.blog-share .social-icons {
    display: flex;
}

.blog-share .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(22, 49, 114, 0.1);
    color: #163172;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.blog-share .social-icons a:hover {
    background-color: #163172;
    color: #fff;
    transform: translateY(-3px);
}

.sidebar {
    margin-bottom: 30px;
}

.sidebar-widget {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
}

.sidebar-widget-header {
    background-color: #163172;
    padding: 15px 20px;
    color: #fff;
}

.sidebar-widget-header h5 {
    margin-bottom: 0;
    font-weight: 600;
}

.sidebar-widget-body {
    padding: 20px;
}

.sidebar-widget-body .list-group-item {
    padding: 12px 0;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #eee;
}

.sidebar-widget-body .list-group-item:last-child {
    border-bottom: none;
}

.sidebar-widget-body .list-group-item a {
    color: #444;
    transition: all 0.3s ease;
}

.sidebar-widget-body .list-group-item a:hover {
    color: #163172;
    text-decoration: none;
    padding-left: 5px;
}

.blog-content .row {
    display: flex;
    flex-wrap: wrap;
}

.blog-content .col-lg-8 {
    float: left;
}

.blog-content .col-lg-4 {
    float: left;
}

@media (max-width: 991.98px) {
    .blog-header {
        padding: 40px 0;
    }

    .blog-header h1 {
        font-size: 2rem;
    }

    .blog-body {
        padding: 20px;
    }

    .blog-content .row {
        display: block;
    }

    .blog-content .col-lg-8,
    .blog-content .col-lg-4 {
        float: none;
        width: 100%;
    }
}

/* Masaüstü ve mobil drop down çakışmalarını önleme */
@media (min-width: 992px) {
    .dropdown-menu {
        margin-top: 0 !important;
        display: block !important;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}
