/* Custom Styles: Yellow Theme, Menu Redesign, Image Optimization - No Hover Effects */

.logo{
    width: 30px;
}

/* Mobile Call Button - Yellow Theme */
.mobile-call-button {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    z-index: 9999;
    background: #FFC107;
    color: #000;
    padding: 22px 0;
    border-radius: 0;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    text-align: center;
}

.mobile-call-button i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .mobile-call-button {
        display: block;
    }
}


.hero-section {
    position: relative;
    padding: 100px 0; /* Adjust padding to show more/less of the image */
    background-size: cover;
    background-position: center;
    
    /* This creates the 50% black overlay */
  
    
    /* Ensure the container takes up space */
    min-height: 400px;
    display: flex;
    align-items: center;
}

/* Ensure the inner content stays on top */
.inner {
    z-index: 2;
    position: relative;
    width: 100%;
}

/* Menu Redesign - Modern Yellow Theme */
.main-menu .navigation {
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-menu .navigation > li > a {
    position: relative;
    padding: 12px 20px;
    font-weight: 500;
    color: #ffffff;
    border-radius: 6px;
    font-size: 15px;
}

.main-menu .navigation > li.current > a {
    color: #000;
    background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.main-menu .navigation > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #FFA000;
    border-radius: 2px;
}

.main-menu .navigation > li.current > a::after {
    width: 60%;
}

/* Header Top - Yellow Accent */
.header-top {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-bottom: 3px solid #FFC107;
}

.header-top ul.contact-info li a {
    color: #fff;
}

/* Header Upper - Enhanced Design */
.header-upper {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 2px solid #FFC107;
}

.sticky-header .header-upper {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Button Style Enhancement */
.theme-btn.btn-style-one {
    background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

/* Image Optimization - Sharp and Proper Sizing */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: optimize-quality;
    -ms-interpolation-mode: bicubic;
}

.service-image img,
.image img,
.image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    filter: brightness(1) contrast(1.05) saturate(1.1);
}

.service-image {
    overflow: hidden;
    border-radius: 8px;
}

/* Banner Images */
.banner-section .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    image-rendering: -webkit-optimize-contrast;
    filter: brightness(0.95) contrast(1.05);
}

/* Decorative Elements Enhancement */
.shape-one img,
.shape-two img,
.shape-three img,
.shape-four img {
    opacity: 0.15;
    filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.3));
}

/* Section Backgrounds with Yellow Accents */
.sec-title .sub-title {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 213, 79, 0.1) 100%);
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
    border-left: 4px solid #FFC107;
}

/* Service Blocks Enhancement */
.service-block-one {
    border-radius: 12px;
    overflow: hidden;
}

.service-block-one .icon {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 213, 79, 0.1) 100%);
    border-radius: 50%;
    padding: 20px;
}

/* Process Blocks */
.process-block .number {
    background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
    color: #000;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

/* Testimonial Cards */
.testimonial-block-two {
    border-radius: 12px;
}

.testimonial-block-two .rating .fas.fa-star {
    color: #FFC107;
}

/* Icon Boxes Enhancement */
.icon-box {
    padding: 20px;
    border-radius: 10px;
}

.icon-box .icon {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 213, 79, 0.15) 100%);
    border-radius: 12px;
    padding: 15px;
}

/* Footer Enhancement */
.main-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 3px solid #FFC107;
}

.main-footer .widget_title {
    color: #FFC107;
    position: relative;
    padding-bottom: 15px;
}

.main-footer .widget_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #FFC107;
    border-radius: 2px;
}

/* CTA Section Enhancement */
.cta-section {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 213, 79, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, rgba(255, 213, 79, 0.05) 100%);
    z-index: 0;
}

.cta-section .content {
    position: relative;
    z-index: 1;
}

/* Scroll to Top Button */
.scroll-to-top {
    background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
    color: #000;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

/* Responsive Menu Improvements */
@media (max-width: 991px) {
    .main-menu .navigation {
        flex-direction: column;
        gap: 0;
    }
    
    .main-menu .navigation > li > a {
        width: 100%;
        text-align: left;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 193, 7, 0.1);
    }
    
    .main-menu .navigation > li.current > a {
        background: linear-gradient(90deg, #FFC107 0%, #FFD54F 100%);
        padding-left: 30px;
    }
}

/* Image Sharpening for High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Additional Decorative Elements */
.service-block-one::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFC107 0%, #FFD54F 50%, #FFC107 100%);
    opacity: 0;
}
