/* Header Styles */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
 
}






.top-bar {
    background: #1a1a1a;
    padding: 8px 0;
    font-size: 14px;
}

.contact-info span {
    color: #fff;
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
    color: #e31837;
}

.social-links a {
    color: #fff;
    margin-left: 15px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #e31837;
}

.filters {
    background: #b7c9cd;
    padding: 20px;
    color: #4D897C;
    width: 350px;
    border-radius: 12px;
    text-align: center;
}

.filters .section {
    margin-bottom: 20px;
}

.filters .section p {
    text-align: center;
    color: #000;
}   

.filters .btn {
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid #fff;
    margin: 5px;
    background: transparent;
    cursor: pointer;
    color: #000000;
}

.filters .btn:hover {
    background: #4D897C;
    color: #ffffff;
}

.filters .btn.active {
    background: #4D897C;
    color: #ffffff;
}

.filters .hidden {
    display: none;
}

.filters .image-container img {
    width: 100%;
    border: 1px solid #ccc;
    margin-left: 50px;
}

.navbar {
    padding: 0px 0;
    background: #ffffff !important;
    width: 100%;
}

.navbar-brand img {
    max-height: 60px; 
    transition: all 0.3s ease;
}

p {
 
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: Arsenal;
    text-align: justify;
 
}
.navbar-nav .nav-link {
    color:rgb(0, 0, 0)  !important;
    font-weight: 500;
    padding: 10px 15px;
    margin: 0 5px;
    position: relative;
    font-size: 15px;
   text-transform: capitalize;
}
a.nav-link {
    font-family: Arsenal;
 
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color:black !important;
}

.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 0;
}

.navbar-nav .dropdown-item {
    padding: 8px 20px;
    font-size: 14px;
}

.navbar-nav .dropdown-item:hover {
    background: #f8f9fa;
    color: #e31837;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* Hero Slider Styles */
.hero-slider {
 
    position: relative;
    overflow: hidden;
}

.hero-slider .carousel-item {
    height: calc(100vh - 120px);
    min-height: 620px;
}

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

/* Hide captions since we only want images */
.hero-slider .carousel-caption {
    display: none;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
    opacity: 0.8;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-size: 20px;
}

/* Hide indicators since we don't need them */
.carousel-indicators {
    display: flex;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .top-bar {
        text-align: center;
    }
    
    .contact-info {
        margin-bottom: 10px;
    }
    
    .social-links {
        text-align: center !important;
        margin-top: 10px;
    }
    
    .social-links a {
        margin: 0 8px;
    }
    
    .navbar-nav {
        padding: 15px 0;
    }
    
    .navbar-nav .nav-link {
        padding: 8px 0;
    }
    
    .dropdown-menu {
        border: none !important;
        box-shadow: none !important;
        padding-left: 20px;
    }
}

@media (max-width: 768px) {
  
    .hero-slider .carousel-item {
        height: 50vh;
        min-height: 300px;
    }
    
    .navbar-brand img {
        max-height: 35px;
    }
    
    .contact-info span {
        display: block;
        margin: 5px 0;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



 
.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 28px !important; 
    height: 2px !important;
}