
.main-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.menu-item {
    position: relative;
}

.menu-link {
  display: block;
    padding: 32px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 14px;
}

.menu-link:hover {
    color: #007bff;
}

/* Active menu */
.menu-item.active .menu-link {
    color: #007bff;
    font-weight: 600;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 260px;
    border:none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown items */
.dropdown-menu li a {
     display: block;
    padding: 10px 10px;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
    border-bottom: 1px solid #f1eaea;
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
    color: #007bff;
}

.search-section {
    border: 1px solid lightgray;
}

.banner img {
    width: 100%;
    padding: 50px 0;
}



.sliderMain {
    width: 100%;
    overflow: hidden;
}



.slider-image-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
}

/* Image */
.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    animation: zoomEffect 8s ease-in-out infinite;
}

/* Zoom Animation */
@keyframes zoomEffect {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Overlay */
.slider-overlay {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
    max-width: 500px;
}

.slider-overlay h2 {
    font-size: 48px;
    font-weight: bold;
    animation: fadeUp 1s ease;
}

.slider-overlay p {
    font-size: 18px;
    margin-top: 10px;
    animation: fadeUp 1.5s ease;
}

/* Dark overlay */
.slider-image-wrapper::after {
    content: "";
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    /*background: rgba(0,0,0,0.4);*/
}

/* Fade text animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}





.homePageCategoryMain {
    padding: 60px 0 !important;
}


.homePageCategoryMain h4 {
    text-transform: uppercase;
    font-weight: bold;
    color: #295da9;
    margin-bottom: 20px;
}




.bradSection {
    padding: 50px 0;
}



       .brand-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.brand-card img {
    max-width: 100%;
    max-height: 60px;
    transition: 0.3s;
}

/* Hover effect */
.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.brand-card:hover img {
    filter: grayscale(0%);
}



section.w3l-about-breadcrumb {
    background: #d7d7d7;
    padding: 40px;
    margin-bottom: 20px;
}





     .solar-projects{
            padding:80px 0;
        }

        .section-title{
            text-align:center;
            margin-bottom:60px;
        }

        .section-title h2{
            font-size:42px;
            font-weight:700;
            color:#0b3d2e;
        }

        .solar-card{
            background:#fff;
            border-radius:25px;
            overflow:hidden;
            box-shadow:0 10px 30px rgba(0,0,0,0.08);
            margin-bottom:40px;
            transition:0.4s;
        }

        .solar-card:hover{
            transform:translateY(-8px);
        }

        .solar-image{
            overflow:hidden;
            height:100%;
        }

        .solar-image img{
            width:100%;
            height:100%;
            min-height:350px;
            object-fit:cover;
            transition:0.5s;
        }

        .solar-card:hover img{
            transform:scale(1.08);
        }

        .solar-content{
            padding:50px;
            display:flex;
            flex-direction:column;
            justify-content:center;
            height:100%;
        }

        .solar-badge{
            display:inline-block;
            background:#198754;
            color:#fff;
            padding:8px 18px;
            border-radius:50px;
            font-size:14px;
            margin-bottom:20px;
            width:max-content;
        }

        .solar-content h3{
            font-size:36px;
            font-weight:700;
            margin-bottom:20px;
            color:#0b3d2e;
        }

        .solar-content p{
            color:#666;
            line-height:1.9;
            margin-bottom:25px;
        }

        .project-info{
            display:flex;
            gap:30px;
            margin-bottom:30px;
            flex-wrap:wrap;
        }

        .project-info div h5{
            color:#198754;
            font-size:24px;
            font-weight:700;
            margin-bottom:5px;
        }

        .project-info div span{
            color:#666;
            font-size:14px;
            
        }

        .solar-btn{
            display:inline-block;
            padding:14px 30px;
            background:#198754;
            color:#fff;
            border-radius:50px;
            text-decoration:none;
            font-weight:600;
            transition:0.4s;
            width:max-content;
        }

        .solar-btn:hover{
            background:#0b3d2e;
            color:#fff;
        }

        @media(max-width:991px){

            .solar-projects {
                padding: 30px 0;
            }
            
            .project-info {
                margin-bottom: 10px;
            }
            
            .section-title h2 {
                font-size: 24px;
            }
            
            

            .solar-content{
                padding:20px;
            }

            .solar-content h3{
                font-size:22px;
            }

            .solar-image img{
                min-height:250px;
            }
        }
        @media(max-width:1380px){

            .menu-link {
            padding: 32px 12px;
            
            }
            
            .footer-widget h3 {
                font-size: 15px;
            }
            
            .footerContactUs p {
                font-size: 12px;
            }
            
        }






















/*media query in mobile*/
@media only screen and (max-width: 767px) {
    .middle-header {
        display: none;
    }
    .slider-overlay p {
    font-size: 13px;
    }
    .slider-overlay h2 {
    font-size: 20px;
    }
    .carousel, .carousel-inner, .carousel-item {
        height: unset;
    }
    .sliderMain {
    height: unset;
    }
    .footer-widget hr {
        display: none;
    }
.brand-card {
    margin-bottom: 10px;
}
    
    
}




