/* Adana Oto Çekici - Custom Styles */
:root {
    --primary-navy: #1a237e;
    --primary-yellow: #ffd700;
    --secondary-navy: #283593;
    --light-gray: #f5f5f5;
    --dark-gray: #333;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background-color: var(--primary-navy) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--primary-yellow) !important;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-yellow) !important;
}

/* Hero Slider */
.carousel-item {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 35, 126, 0.6);
}

.carousel-caption {
    z-index: 10;
}

.carousel-caption h2 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.carousel-caption p {
    font-size: 1.3rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-yellow);
    border: none;
    color: var(--primary-navy);
    font-weight: bold;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #ffed4e;
    color: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary-yellow);
    color: var(--primary-yellow);
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-navy);
}

/* Section Titles */
.section-title {
    color: var(--primary-navy);
    font-weight: bold;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-yellow);
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card i {
    font-size: 4rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary-navy);
    font-weight: bold;
    margin-bottom: 15px;
}

/* Blog Cards */
.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 15px;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-card h4 {
    color: var(--primary-navy);
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 10px;
}

.blog-card p {
    flex-grow: 1;
}

.blog-card .btn {
    margin-top: 15px;
    align-self: flex-start;
}

/* Call to Action */
.cta-section {
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section .phone-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-yellow);
    margin: 20px 0;
}

/* Tabs Section */
.nav-tabs .nav-link {
    color: var(--primary-navy);
    font-weight: bold;
    border: none;
    border-bottom: 3px solid transparent;
}

.nav-tabs .nav-link.active {
    color: var(--primary-navy);
    background-color: transparent;
    border-bottom: 3px solid var(--primary-yellow);
}

.tab-content {
    padding: 30px;
    background: var(--white);
    border-radius: 0 0 10px 10px;
}

/* FAQ */
.accordion-button {
    background-color: var(--primary-navy);
    color: var(--white);
    font-weight: bold;
}

.accordion-button:not(.collapsed) {
    background-color: var(--secondary-navy);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(26, 35, 126, 0.25);
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card .rating {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card .testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonial-card .testimonial-author {
    margin-top: auto;
    padding-top: 15px;
    border-top: 2px solid var(--primary-yellow);
}

.testimonial-card .testimonial-author strong {
    color: var(--primary-navy);
    font-size: 1.1rem;
}

/* Sticky Buttons - SAĞ ALT */
.sticky-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sticky-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: scale(1.1);
    color: var(--white);
}

.whatsapp-btn {
    background-color: #25D366;
}

.phone-btn {
    background-color: var(--primary-navy);
}

/* Back to Top */
.back-to-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-yellow);
    color: var(--primary-navy);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background-color: #ffed4e;
    color: var(--primary-navy);
    transform: translateY(-5px);
}

/* Footer */
footer {
    background-color: var(--primary-navy);
    color: var(--white);
    padding: 40px 0 20px;
}

footer h5 {
    color: var(--primary-yellow);
    margin-bottom: 20px;
    font-weight: bold;
}

footer a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-yellow);
}

footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-navy);
}

.footer-bottom {
    background-color: rgba(0,0,0,0.2);
    padding: 15px 0;
    margin-top: 30px;
    border-top: 2px solid var(--primary-yellow);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

/* Breadcrumb */
.breadcrumb {
    background-color: var(--primary-navy);
    padding: 15px 0;
}

.breadcrumb .breadcrumb {
    background-color: transparent;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-yellow);
}

.breadcrumb-item.active {
    color: var(--primary-yellow);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--white);
}

/* Features Section */
.feature-box {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background-color: var(--light-gray);
}

.feature-box i {
    font-size: 3rem;
    color: var(--primary-yellow);
    margin-bottom: 15px;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.form-control:focus {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

/* Map Container */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

/* Content Section */
.content-section {
    padding: 60px 0;
}

.content-section.bg-light {
    background-color: var(--light-gray) !important;
}

/* Service Detail Page */
.service-detail-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
}

.price-list {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-yellow);
}

.price-list ul {
    list-style: none;
    padding: 0;
}

.price-list ul li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.price-list ul li:last-child {
    border-bottom: none;
}

.price-list ul li i {
    color: var(--primary-navy);
    margin-right: 10px;
}

/* Blog Detail */
.blog-detail-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
}

.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-content h2 {
    color: var(--primary-navy);
    margin-top: 30px;
    margin-bottom: 20px;
}

.blog-content p {
    margin-bottom: 20px;
}

/* Related Posts */
.related-posts {
    background: var(--light-gray);
    padding: 40px 0;
    margin-top: 60px;
}

/* Sidebar */
.sidebar-widget {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sidebar-widget h4 {
    color: var(--primary-navy);
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-yellow);
}

.sidebar-widget h4 i {
    color: var(--primary-yellow);
    margin-right: 10px;
}

.sidebar-widget ul li {
    margin-bottom: 10px;
}

.sidebar-widget ul li a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.sidebar-widget ul li a:hover {
    color: var(--primary-navy);
    padding-left: 10px;
}

.sidebar-widget ul li a i {
    font-size: 0.8rem;
    margin-right: 8px;
    color: var(--primary-yellow);
}

.sidebar-post {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.sidebar-post:hover {
    transform: translateX(5px);
}

.sidebar-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.sidebar-post-content h6 {
    color: var(--primary-navy);
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.sidebar-post-content small {
    font-size: 0.75rem;
}

.sidebar-contact {
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
    color: var(--white);
}

.sidebar-contact h4 {
    color: var(--primary-yellow);
    border-bottom-color: var(--primary-yellow);
}

.sidebar-contact p {
    color: var(--white);
}

/* Service Image */
.service-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    height: 200px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

/* Blog Image */
.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.blog-content {
    padding: 20px;
}

.blog-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Pagination */
.pagination {
    display: flex;
    gap: 5px;
}

.pagination .page-item .page-link {
    border: 2px solid var(--primary-navy);
    color: var(--primary-navy);
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s;
    text-decoration: none;
}

.pagination .page-item.active .page-link {
    background: var(--primary-navy);
    color: var(--white);
}

.pagination .page-item .page-link:hover {
    background: var(--primary-navy);
    color: var(--white);
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #283593 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.cta-box h3 {
    color: var(--primary-yellow);
    margin-bottom: 10px;
}

.cta-box p {
    font-size: 1.1rem;
}

/* Announcement Banner - DÜZELTİLMİŞ */
.announcement-banner {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    padding: 12px 15px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.announcement-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.1) 10px,
        rgba(255,255,255,0.1) 20px
    );
    animation: stripes 20s linear infinite;
}

@keyframes stripes {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.announcement-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.announcement-content i {
    font-size: 24px;
    color: #d32f2f;
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.announcement-text {
    font-size: 16px;
    font-weight: 600;
    color: #1a237e;
    line-height: 1.4;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Quote Form */
.quote-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.quote-form .form-control,
.quote-form .form-select {
    border: 2px solid #e0e0e0;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
    border-color: var(--primary-navy);
    box-shadow: 0 0 0 0.2rem rgba(26, 35, 126, 0.1);
}

.quote-info .info-box {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.quote-info .info-box:hover {
    background: var(--primary-navy);
    color: var(--white);
    transform: translateY(-5px);
}

.quote-info .info-box i {
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-bottom: 15px;
}

.quote-info .info-box h5 {
    margin-top: 10px;
    margin-bottom: 5px;
}

/* Quote Button (Sticky) - SOL ALT - DÜZELTİLMİŞ */
.quote-btn-sticky {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    background: var(--primary-yellow);
    color: var(--primary-navy);
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.quote-btn-sticky:hover {
    background: var(--primary-navy);
    color: var(--primary-yellow);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.quote-btn-sticky i {
    font-size: 20px;
}

/* Comments Section */
.comments-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.average-rating {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.average-rating .rating-stars {
    font-size: 1.5rem;
}

.average-rating .rating-text {
    font-size: 1.1rem;
}

.comment-item {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.comment-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-rating {
    margin-top: 5px;
    font-size: 0.9rem;
}

.comment-body p {
    margin: 0;
    line-height: 1.6;
    color: #333;
}

.comment-form-wrapper {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.star-rating {
    display: flex;
    gap: 10px;
    font-size: 2rem;
    cursor: pointer;
}

.star-rating .star {
    color: #ddd;
    transition: all 0.2s ease;
}

.star-rating .star.active,
.star-rating .star.hover {
    color: var(--primary-yellow);
    transform: scale(1.2);
}

.star-rating .star:hover {
    transform: scale(1.3);
}

/* Responsive - MOBİL DÜZELTMELER */
@media (max-width: 768px) {
    .carousel-item {
        height: 300px;
    }

    .carousel-caption h2 {
        font-size: 1.8rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section .phone-number {
        font-size: 2rem;
    }

    /* Sağ alt butonlar mobilde küçülsün */
    .sticky-buttons {
        bottom: 20px;
        right: 15px;
        gap: 10px;
    }

    .sticky-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    /* Sol alt teklif butonu mobilde küçülsün */
    .quote-btn-sticky {
        bottom: 20px;
        left: 15px;
        padding: 12px 16px;
        font-size: 14px;
    }

    .quote-btn-sticky i {
        font-size: 16px;
    }

    /* Announcement banner mobil */
    .announcement-banner {
        padding: 10px 10px;
    }
    
    .announcement-content {
        gap: 8px;
        flex-wrap: nowrap;
    }
    
    .announcement-content i {
        font-size: 18px;
        min-width: 20px;
    }
    
    .announcement-text {
        font-size: 13px;
        line-height: 1.3;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 20px;
    }

    /* Çok küçük ekranlar */
    .announcement-banner {
        padding: 8px 8px;
    }
    
    .announcement-content i {
        font-size: 16px;
        min-width: 18px;
    }
    
    .announcement-text {
        font-size: 12px;
        line-height: 1.2;
    }

    /* Butonlar daha da küçülsün */
    .sticky-buttons {
        bottom: 15px;
        right: 10px;
        gap: 8px;
    }

    .sticky-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .quote-btn-sticky {
        bottom: 15px;
        left: 10px;
        padding: 10px 14px;
        font-size: 13px;
    }

    .quote-btn-sticky i {
        font-size: 14px;
    }
}

/* ================================
   EKLEMELER – ALPER ABİ İÇİN
   ================================ */
/* ============================
   GALERİ – TEMİZ VE DÜZGÜN SİSTEM
   ============================ */

/* Her kolon arası boşluk */
.gallery-item-col {
    padding: 6px;
}

/* Varsayılan: Masaüstünde kare kart */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
    transition: .3s ease;
    width: 100%;
    aspect-ratio: 1; /* Kare */
    max-width: 260px;   /* 🔥 Masaüstünde büyüklük BURADAN ayarlanır */
    margin: 0 auto;     /* Ortalar */
}

/* Resim davranışı */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* Kırp & ortala */
    object-position: center;
    transition: transform .3s ease;
}

/* Hover efekti */
.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 576px) {

    .gallery-item-col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    /* 🎯 Kare değil – biraz yatay, hizmet kartı gibi */
    .gallery-item {
        aspect-ratio: 1.3 !important;  /* 1 yerine 1.3 → yükseklik %30 azalır */
        width: 100%;
        border-radius: 10px;
        overflow: hidden;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;  /* Kusursuz kırpma */
        object-position: center;
    }
}


/* Mobil Navbar Düzeni – Buton sağda, menü ortalı */
@media (max-width: 768px) {

    /* Buton eski yerinde: sağda */
    .navbar-toggler {
        margin-left: auto !important;
        margin-right: 0 !important;
        display: block !important;
    }

    /* Marka yazısı normal kalsın */
    .navbar-brand {
        width: auto;
        text-align: left;
        margin-bottom: 0;
    }

    /* Açılan menü ortalansın */
    .navbar-collapse {
        text-align: center;
    }

    .navbar-nav {
        margin-left: auto;
        margin-right: auto;
    }

    .navbar-nav .nav-item {
        text-align: center;
    }
}
