.navbar-area .navbar-brand{
    width: 180px;
    padding: 0;
    margin: 0;
}

.navbar-area .navbar-brand > img{
    -webkit-filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.5));
    filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.5));
}

.sidebar-logo {
    width: 180px;
}

.f-about .logo {
    width: 180px;
}

@media screen and (max-width: 768px) {
    .f-about {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

.validation-error {
    color: var(--error);
    font-size: .9rem;
    margin-bottom: .5rem;
}

/* Hero Slider Styles */
.hero-slider-section {
    padding: 0;
    position: relative;
    margin-top: 0;
}

.heroSwiper {
    width: 100%;
    height: 100vh;
    min-height: 600px;
}

.heroSwiper .swiper-slide {
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 600px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-slider-section .header-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.heroSwiper .swiper-pagination {
    bottom: 40px;
    z-index: 3;
}

.heroSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.heroSwiper .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 30px;
    border-radius: 6px;
}

@media screen and (max-width: 991px) {
    .heroSwiper {
        height: 70vh;
        min-height: 500px;
    }
    
    .heroSwiper .swiper-slide {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .heroSwiper {
        height: 60vh;
        min-height: 400px;
    }
    
    .heroSwiper .swiper-slide {
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-slider-section .header-content {
        padding: 30px 15px;
    }
}

/* Contact Section Enhancements */
.contact-section {
    padding: 80px 0;
}

.contact-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-item:hover {
    background: var(--accent-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-4);
}

.contact-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-content h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

/* Products Section Styling */
.pricing-style-fourteen .pricing-header .icon {
    background: var(--gradient-1);
}

.pricing-style-fourteen .pricing-list li i {
    color: var(--primary);
}

/* Sidebar Menu */
.sidebar-menu ul {
    list-style: none;
    padding: 0;
}

.sidebar-menu ul li {
    margin-bottom: 15px;
}

.sidebar-menu ul li a {
    color: var(--dark-1);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
}

.sidebar-menu ul li a:hover {
    color: var(--primary);
    padding-left: 10px;
}

/* Regulation Section Styles */
#regulation .list-group-item {
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

#regulation .list-group-item:hover {
    background-color: var(--accent-light);
    border-color: var(--primary);
    transform: translateX(5px);
}

#regulation .list-group-item a {
    display: block;
    width: 100%;
    transition: color 0.3s ease;
}

#regulation .list-group-item a:hover {
    color: var(--primary) !important;
}

.service-box-wrapper {
    row-gap: 1rem;
}