/* Ana Stiller */
:root {
    --primary: #FF8C00;
    --secondary: #2c3e50;
    --dark: #1a1a1a;
    --darker: #141414;
    --light: #f8f9fa;
    --success: #2ecc71;
    --info: #3498db;
    --warning: #FF8C00;
    --danger: #e74c3c;
}

/* Top Header Stili */
.top-header {
    padding: 1.5rem 0;
}

.top-header .icon-box {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-header .icon-box i {
    font-size: 1.2rem;
}

.top-header .fw-500 {
    font-weight: 500;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

/* Navbar Stili */
.navbar {
    padding: 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 1.5rem 1rem !important;
    color: var(--secondary) !important;
    transition: all 0.3s ease;
}

.nav-link:hover, 
.nav-link.active {
    color: var(--primary) !important;
}

.social-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    background-color: var(--primary);
    color: white !important;
}

.btn-primary {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 991.98px) {
    .top-header {
        padding: 1rem 0;
    }
    
    .top-header .d-flex {
        flex-direction: column;
        gap: 1rem !important;
        align-items: center;
        text-align: center;
    }

    .navbar .nav-link {
        padding: 0.75rem 1rem !important;
    }

    .social-links {
        margin-top: 1rem;
        justify-content: center;
    }
}

/* Header Stili */
.header-section {
    padding: 20px 0;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

@media (max-width: 991.98px) {
    .header-section {
        position: relative;
    }
    
    body {
        padding-top: 0 !important;
    }
}

/* Hero Section Stili */
.hero-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom right, rgba(247, 183, 29, 0.05), rgba(247, 183, 29, 0.02));
}

.hero-section .display-4 {
    font-size: 2.8rem;
    line-height: 1.2;
}

.hero-section .lead {
    font-size: 1.1rem;
    color: #666;
}

.hero-section .btn-lg {
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image-wrapper {
    padding: 2rem;
}

.hero-image-wrapper .img-fluid {
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.hero-shape-1,
.hero-shape-2 {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.hero-shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--primary) 0%, rgba(247, 183, 29, 0.3) 100%);
    top: -30px;
    right: -50px;
    filter: blur(40px);
    opacity: 0.5;
    animation: pulse 4s ease-in-out infinite;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(-45deg, var(--primary) 0%, rgba(247, 183, 29, 0.2) 100%);
    bottom: -50px;
    left: -100px;
    filter: blur(50px);
    opacity: 0.4;
    animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1);
        opacity: 0.4;
    }
}

.hero-image-wrapper:hover .img-fluid {
    transform: translateY(-10px) scale(1.02);
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-section .display-4 {
        font-size: 2.2rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .hero-image-wrapper {
        padding: 1rem;
    }
}

/* Banner Stili */
.banner-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/banner-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    color: white;
}

.banner-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.banner-section p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 12px 30px;
    font-weight: 600;
}

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

/* Hizmetler Stili */
.services-section {
    padding: 80px 0;
    background: var(--light);
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.service-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Hizmet Kartları */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.service-card .card-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 aspect ratio */
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.service-card .card-img-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card .card-body {
    padding: 1.5rem;
}

.service-card .card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #333;
}

.service-card .card-text {
    color: #6c757d;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Features Section */
.features-section {
    padding: 1.5rem 0;
}

@media (max-width: 991px) {
    .features-section {
        padding-top: 0.25rem;
    }
    
    .top-header {
        padding: 0.5rem 0;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .feature-box {
        padding: 1rem !important;
    }
    
    .hero-section {
        padding: 1rem 0;
    }
}

/* iOS için özel stiller */
@supports (-webkit-touch-callout: none) {
    .features-section {
        padding-top: 0;
        margin-top: -1rem;
    }

    .top-header {
        padding: 0.25rem 0;
    }

    .navbar {
        padding: 0.25rem 0;
    }
}

/* Galeri Sayfası */
.gallery-section {
    background-color: #f8f9fa;
}

.gallery-item {
    position: relative;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    color: #fff;
}

.gallery-info h5 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.gallery-info p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Kategori Filtreleme */
.nav-pills .nav-link {
    color: #333;
    border-radius: 20px;
    padding: 8px 20px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
    background-color: #e9ecef;
}

.nav-pills .nav-link.active {
    background-color: #007bff;
    color: #fff;
}

/* SSS Sayfası */
.faq-section {
    background-color: #f8f9fa;
}

.faq-item {
    margin-bottom: 15px;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-item .card-header {
    background-color: #fff;
    border: none;
    padding: 0;
}

.faq-item .btn-link {
    color: #333;
    font-weight: 600;
    text-decoration: none;
    padding: 15px;
    position: relative;
}

.faq-item .btn-link:hover {
    color: #007bff;
}

.faq-item .btn-link i {
    transition: transform 0.3s ease;
    font-size: 14px;
    margin-top: 5px;
}

.faq-item .btn-link:not(.collapsed) i {
    transform: rotate(180deg);
}

.faq-item .card-body {
    padding: 20px;
    background-color: #fff;
    border-top: 1px solid #eee;
    line-height: 1.6;
}

/* SSS Kategori Filtreleme */
.faq-section .nav-pills {
    margin-bottom: 30px;
}

.faq-section .nav-pills .nav-link {
    color: #333;
    border-radius: 20px;
    padding: 8px 20px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.faq-section .nav-pills .nav-link:hover {
    background-color: #e9ecef;
}

.faq-section .nav-pills .nav-link.active {
    background-color: #007bff;
    color: #fff;
}

/* Erişilebilirlik */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Footer Stili */
.footer {
    position: relative;
    background-color: #f8f9fa;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1;
}

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

.footer h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer .icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: var(--primary);
}

.footer .icon-box i {
    font-size: 1.2rem;
    color: white;
}

.footer-logo {
    max-width: 200px;
    height: auto;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: #fff !important;
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--dark);
    color: #fff !important;
    transform: translateY(-3px);
}

.social-link i {
    line-height: 1;
}

.working-hours .time {
    font-weight: 500;
    min-width: 120px;
    text-align: center;
    background-color: var(--primary);
    color: white;
    padding: 10px;
    border-radius: 8px;
}

/* Copyright Bölümü */
.bg-dark {
    background-color: var(--darker) !important;
}

@media (max-width: 991.98px) {
    .footer .col-lg-4:not(:last-child) {
        margin-bottom: 2rem;
    }
    
    .footer-logo {
        max-width: 150px;
    }
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .banner-section {
        padding: 100px 0;
    }
    
    .banner-section h1 {
        font-size: 36px;
    }
    
    .banner-section p {
        font-size: 18px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
}

/* Blog Styles */
.blog-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 20px;
}

.blog-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.blog-meta span {
    margin-right: 15px;
}

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

.blog-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.blog-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #f7b71d;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Blog Kartları */
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.blog-card .card-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 aspect ratio (kare) */
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.blog-card .card-img-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card .card-body {
    padding: 1.5rem;
}

.blog-card .card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #333;
}

.blog-card .card-text {
    color: #6c757d;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Blog Detail Styles */
.blog-detail {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.blog-detail .blog-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.blog-detail .blog-meta {
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.blog-detail .blog-content {
    padding: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.blog-detail .blog-image {
    margin: 20px 0;
}

.blog-detail .blog-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.blog-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.blog-tags .tag {
    display: inline-block;
    padding: 5px 15px;
    background: #f8f9fa;
    border-radius: 20px;
    color: #666;
    margin: 0 5px 5px 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-tags .tag:hover {
    background: #f7b71d;
    color: #fff;
}

/* Sidebar Styles */
.sidebar-widget {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f7b71d;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    border-bottom: 1px solid #eee;
}

.category-list li:last-child {
    border: none;
}

.category-list li a {
    display: block;
    padding: 10px 0;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-list li a:hover,
.category-list li.active a {
    color: #f7b71d;
    padding-left: 10px;
}

.recent-posts,
.popular-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts li,
.popular-posts li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.recent-posts li:last-child,
.popular-posts li:last-child {
    margin: 0;
    padding: 0;
    border: none;
}

.recent-posts a,
.popular-posts a {
    color: #333;
    text-decoration: none;
}

.recent-posts a:hover,
.popular-posts a:hover {
    color: #f7b71d;
}

.popular-posts a {
    display: flex;
    align-items: center;
}

.popular-posts img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

.post-info {
    flex: 1;
}

.post-info h5 {
    font-size: 16px;
    margin: 0 0 5px;
}

.post-info small {
    color: #777;
}

/* Related Posts */
.related-posts {
    margin-top: 50px;
}

.related-posts h3 {
    margin-bottom: 30px;
}

/* Pagination */
.pagination {
    margin: 0;
}

.pagination .page-link {
    color: #666;
    border: none;
    margin: 0 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

.pagination .page-link:hover {
    background: #f7b71d;
    color: #fff;
}

/* Animation Styles */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 1s ease-out;
}

/* Utility Classes */
.shadow-hover {
    transition: all 0.3s ease;
}

.shadow-hover:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.rounded-lg {
    border-radius: 10px;
}

.overflow-hidden {
    overflow: hidden;
}

/* İletişim Sayfası */
.contact-info .icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.contact-info .icon-box i {
    font-size: 18px;
}

.contact-form label {
    font-weight: 500;
    color: var(--dark);
}

.contact-form .form-control {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #dee2e6;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb), 0.25);
}

.contact-form textarea.form-control {
    min-height: 120px;
}

.map {
    border-radius: 12px;
    overflow: hidden;
}

.map iframe {
    display: block;
    width: 100%;
}

/* İletişim Banner */
.contact-banner {
    padding: 30px 0;
    background: linear-gradient(rgba(var(--primary-rgb), 0.95), rgba(var(--primary-rgb), 0.95)), url('../images/pattern-paw.png') repeat;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.contact-banner h1 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-banner .lead {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    font-weight: 400;
}

/* Slider Styles */
.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    max-width: 800px;
    padding: 20px;
    z-index: 2;
}

.slider-content h2 {
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
}

.slider-content p {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-size: 1.2rem;
}

.carousel-item img {
    filter: brightness(0.85);
}

#homeSlider {
    margin-bottom: 3rem;
}

#homeSlider .carousel-item {
    height: 500px;
    background-color: #000;
}

#homeSlider .carousel-item img {
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

#homeSlider .slider-content {
    bottom: 25%;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

#homeSlider .text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#homeSlider .carousel-indicators {
    margin-bottom: 2rem;
}

#homeSlider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid #fff;
}

#homeSlider .carousel-indicators button.active {
    background-color: #FF8C00;
    border-color: #FF8C00;
}

#homeSlider .carousel-control-prev,
#homeSlider .carousel-control-next {
    width: 5%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#homeSlider:hover .carousel-control-prev,
#homeSlider:hover .carousel-control-next {
    opacity: 1;
}

@media (max-width: 768px) {
    #homeSlider .carousel-item {
        height: 300px;
    }

    #homeSlider .slider-content {
        bottom: 10%;
        padding: 1rem;
    }

    #homeSlider .slider-content h2 {
        font-size: 1.75rem;
    }

    #homeSlider .slider-content p {
        font-size: 1rem;
    }
}

/* Breadcrumb Stili */
.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item.active {
    color: var(--primary);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--primary);
}

/* Mobil görünüm için header düzenlemeleri */
@media (max-width: 768px) {
    .top-header .d-flex.gap-3 {
        display: none !important;
    }
    
    .top-header .col-lg-2 {
        margin: 0 !important;
    }
    
    .navbar {
        padding: 5px 0 !important;
        border-top: 1px solid rgba(0,0,0,0.1);
    }
    
    :root {
        --header-height: 110px;
    }
    
    .top-header {
        padding: 15px 0 0 !important;
        border-bottom: none !important;
    }

    .top-header .navbar-brand {
        display: block;
        margin: 0 auto;
        padding: 0;
    }

    .top-header .navbar-brand img {
        height: 80px !important;
        width: auto;
    }

    .navbar-toggler {
        padding: 4px 8px;
        font-size: 1rem;
    }

    /* Slider ve hero section'ı gizle */
    #homeSlider,
    .carousel,
    .hero-section {
        display: none !important;
        height: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    /* Ana içerik düzenlemeleri */
    main {
        padding-top: var(--header-height) !important;
        margin-top: 0 !important;
    }

    .fixed-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: #fff !important;
        z-index: 1030 !important;
    }

    /* Safari için özel düzenlemeler */
    @supports (-webkit-touch-callout: none) {
        body {
            margin: 0 !important;
            padding: 0 !important;
            position: relative !important;
        }

        .fixed-header {
            position: fixed !important;
            -webkit-transform: translateZ(0) !important;
            transform: translateZ(0) !important;
        }

        main {
            position: relative !important;
            z-index: 1 !important;
            background: #fff !important;
            margin-top: 0 !important;
            padding-top: var(--header-height) !important;
        }

        .services-section {
            margin-top: 0 !important;
            padding-top: 1rem !important;
        }
    }
}

.carousel-indicators [data-bs-target] {
    background-color: #FF8C00;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 4px;
}

.carousel-indicators .active {
    background-color: #FF8C00;
    opacity: 1;
}
