:root{
    --primary:#FFD31D;
}

/* ================= TOP BAR ================= */
.top-bar{
    background:var(--primary);
    color:#fff;
    font-size:15px;
    padding:8px 0;
    font-weight:600;
    font-family: "Hxo",serif;
}

/* ================= HEADER ================= */
.main-header{
    position:fixed;
    top:38px;
    left:0;
    width:100%;
    z-index:999;

    background:rgba(0,0,0,0.15);
    backdrop-filter: blur(8px);

    transition:.4s ease;
    padding:12px 0;
}

/* NAV */
.navbar-nav .nav-link{
    color:#fff;
    font-weight:600;
    padding:18px 20px !important;
    font-size:18px;
    line-height:25px;
    display:flex;
    align-items:center;
    text-transform:uppercase;
    font-family:"Exo", serif;
}

/* LOGO */
.navbar-brand img{
    height:70px;
    width:175px;
    display:block;
    position:relative;
    z-index:1;
}

/* DROPDOWN */
.dropdown-menu{
    border:none;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

/* ================= SCROLL HEADER ================= */
.main-header.scrolled{
    background:var(--primary);
    top:0;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
}

.main-header.scrolled .nav-link{
    color:#fff !important;
}

.navbar-toggler{
    border-color:#000;
}

/* Bootstrap default icon remove */
.navbar-toggler-icon{
    background-image:none !important;
    width:28px;
    height:2px;
    background:#000;
    display:inline-block;
    position:relative;
}

/* top + bottom lines */
.navbar-toggler-icon::before,
.navbar-toggler-icon::after{
    content:"";
    position:absolute;
    left:0;
    width:28px;
    height:2px;
    background:#000;
}

.navbar-toggler-icon::before{
    top:-8px;
}

.navbar-toggler-icon::after{
    top:8px;
}

/* ================= HERO SLIDER FIX ================= */
.hero-section{
    position:relative;
}

/* EACH SLIDE */
.hero-slide{
    min-height:80vh;          /* 🔥 MAIN FIX */
    display:flex;
    align-items:center;
    position:relative;
    padding-top:120px;
}

/* BACKGROUNDS */
/* .hero1{
    background:url('../images/banner1.jpg') center/cover no-repeat;
}

.hero2{
    background:url('../images/banner2.jpg') center/cover no-repeat;
} */
.hero1,
.hero2{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
/* DARK OVERLAY */
.hero-slide::before{
    content:'';
    position:absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    background:rgba(0,0,0,0.6);
}


/* HERO CONTENT */
.hero-content{
    position:relative;
    color:#fff;
    max-width:700px;
}

.hero-content h1{
    font-size:60px;
    font-weight:800;
}

/* ANIMATION */
.animate-text{
    animation: fadeUp 1s ease-in-out;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* BUTTON */
.btn-main{
    background:var(--primary);
    color:#000;
    padding:14px 32px;
    font-weight:600;
    text-decoration:none;
    border-radius:5px;
    display:inline-block;
}

/* ================= BOOTSTRAP CAROUSEL FIX ================= */
.carousel,
.carousel-inner,
.carousel-item{
    height:100%;
}

/* ================= ABOUT SECTION ================= */
.section-padding{
    padding:80px 0;
}

.about-section{
    background:#fff;
}

.about-content p{
    color:#555;
    line-height:1.7;
}

.about-img img{
    border-radius:12px;
}

/* ================= MOBILE FIX ================= */
@media(max-width:991px){

.main-header{
    top:0;
    background:var(--primary) !important;
    backdrop-filter:none !important;
}

.navbar-nav .nav-link{
    color:#000 !important;
}

.hero-content h1{
    font-size:38px;
}

.hero-slide{
    min-height:100vh; /* keep full height mobile too */
    padding-top:100px;
}
}

.service-img-card{
    position:relative;
    height:320px;
    overflow:hidden;
    border-radius:12px;
}

/* IMAGE */
.service-img-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s ease;
}

/* DARK OVERLAY */
.service-img-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.30);
    z-index:1;
}

/* HOVER */
.service-img-card:hover img{
    transform:scale(1.1);
}

/* CONTENT */
.overlay{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    z-index:2;
    padding:15px;
    width:90%;
}

/* TITLE */
.overlay h4{
    font-weight:700;
    margin-bottom:8px;
}

/* PARAGRAPH */
.overlay p{
    font-size:14px;
    margin-bottom:12px;
    color:#f1f1f1;
}

/* BUTTON */
.overlay a{
    display:inline-block;
    padding:10px 20px;
    background:#FFD31D;
    color:#000;
    font-weight:600;
    text-decoration:none;
    border-radius:5px;
    transition:0.3s;
}

.overlay a:hover{
    background:#000;
    color:#fff;
}
.partner-card{
    height:120px;
    border-radius:12px;
    overflow:hidden;
    background:#fff;
    transition:all .3s ease;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.partner-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.partner-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.2);
}
.project-card{
    position:relative;
    border-radius:15px;
    overflow:hidden;

}

.project-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.project-content{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:20px;
    background:linear-gradient(transparent, rgba(0,0,0,.85));
}

.project-content h5{
    color:#fff;
    margin:0;
}

/* Tabs Style */
.nav-tabs .nav-link{
    color:#000;
    font-weight:600;
}

.nav-tabs .nav-link.active{
    background:#ffc107;
    color:#000;
}



.brand-item{
    background:#fff;
    border:1px solid #eee;
    border-radius:12px;
    padding:20px;
    height:100px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.brand-item img{
    max-width:100%;
    max-height:60px;
    object-fit:contain;
    filter: grayscale(100%);
    transition:.3s;
}

.brand-item:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.1);
}

.brand-item:hover img{
    filter: grayscale(0%);
}





.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:#bbb;
    text-decoration:none;
    font-size:14px;
    transition:.3s;
}

.footer-links a:hover{
    color:#ffc107;
    padding-left:5px;
}

.social-icon{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#222;
    color:#fff;
    transition:.3s;
    text-decoration:none;
}

.social-icon:hover{
    background:#ffc107;
    color:#000;
}





/*service*/
.service-details{
    background:#fff;
}

.service-tag{
    display:inline-block;
    color:#FFD31D;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.service-title{
    font-size:42px;
    font-weight:800;
    color:#111;
    margin-bottom:20px;
}

.service-text{
    color:#666;
    line-height:1.8;
    margin-bottom:15px;
}

.feature-list{
    margin-top:30px;
}

.feature-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:25px;
}

.feature-item i{
    color:#FFD31D;
    font-size:22px;
    margin-top:5px;
    min-width:25px;
}

.feature-item h5{
    font-size:20px;
    font-weight:700;
    margin-bottom:5px;
    color:#111;
}

.feature-item p{
    margin:0;
    color:#666;
    line-height:1.7;
}

.btn-service{
    display:inline-block;
    background:#FFD31D;
    color:#000;
    padding:14px 35px;
    border-radius:6px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-service:hover{
    background:#000;
    color:#fff;
}

.service-image img{
    width:100%;
    object-fit:cover;
}

@media(max-width:768px){

    .service-title{
        font-size:30px;
    }

}




.page-header{
    position:relative;
    background:url('../images/150801.jpg') center center/cover no-repeat;
    min-height:450px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;
    overflow:hidden;
}

/* Dark Overlay */
.page-header-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.page-header-content{
    position:relative;
    z-index:2;
}

.page-header-content h1{
    color:#fff;
    font-size:60px;
    font-weight:800;
    margin-bottom:20px;
    text-transform:capitalize;
}

.breadcrumb-custom{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;

    list-style:none;
    padding:0;
    margin:0;
}

.breadcrumb-custom li{
    color:#fff;
    font-size:16px;
}

.breadcrumb-custom a{
    color:#FFD31D;
    text-decoration:none;
    font-weight:600;
}

.breadcrumb-custom i{
    color:#FFD31D;
}

/* Mobile */
@media(max-width:768px){

    .page-header{
        min-height:350px;
    }

    .page-header-content h1{
        font-size:34px;
    }

    .breadcrumb-custom li{
        font-size:14px;
    }

}



/* INDUSTRIES */

.industries-section{
    background:#f8f9fa;
    position:relative;
}

.section-tag{
    color:#FFD31D;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-title{
    font-size:42px;
    font-weight:800;
    margin-bottom:15px;
}

.section-desc{
    max-width:700px;
    margin:auto;
    color:#666;
}

.industry-card{
    position:relative;
    overflow:hidden;
    border-radius:15px;
    height:350px;
}

.industry-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.industry-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:25px;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.95)
    );
}

.industry-overlay h4{
    color:#fff;
    margin:0;
    font-size:22px;
    font-weight:700;
}

.industry-card:hover img{
    transform:scale(1.08);
}

/* Owl Dots */

.industries-carousel .owl-dots{
    margin-top:30px;
    text-align:center;
}

.industries-carousel .owl-dot span{
    width:12px;
    height:12px;
    margin:5px;
    background:#ddd !important;
    display:block;
    border-radius:50%;
}

.industries-carousel .owl-dot.active span{
    background:#FFD31D !important;
}

@media(max-width:768px){

.section-title{
    font-size:30px;
}

.industry-card{
    height:280px;
}

}




.projects-page{
    background:#f8f9fa;
}

.project-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.project-card:hover{
    transform:translateY(-8px);
}

.project-img{
    position:relative;
    overflow:hidden;
}

.project-img img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:.5s;
}

.project-card:hover img{
    transform:scale(1.1);
}

.project-status{
    position:absolute;
    top:15px;
    right:15px;
    padding:6px 15px;
    border-radius:30px;
    color:#fff;
    font-size:13px;
    font-weight:600;
}

.completed{
    background:#28a745;
}

.pending{
    background:#dc3545;
}

.project-content{
    padding:25px;
}

.project-content h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
    color:white;
}

.project-content p{
    color:white;
    margin-bottom:20px;
}

.project-btn{
    display:inline-block;
    background:#FFD31D;
    color:#000;
    text-decoration:none;
    padding:12px 25px;
    border-radius:5px;
    font-weight:600;
    transition:.3s;
}

.project-btn:hover{
    background:#000;
    color:#fff;
}

@media(max-width:991px){

.project-img img{
    height:220px;
}

}




.gallery-section{
    background:#f8f9fa;
}

.gallery-item{
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.gallery-item img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:.6s;
}

.gallery-item.large img{
    height:420px;
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;
    transition:.4s;
}

.gallery-overlay h5{
    color:#fff;
    font-size:24px;
    font-weight:700;
    transform:translateY(20px);
    transition:.4s;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-item:hover .gallery-overlay h5{
    transform:translateY(0);
}

@media(max-width:991px){

.gallery-item img,
.gallery-item.large img{
    height:250px;
}

.gallery-overlay h5{
    font-size:18px;
}

}



.about-company{
    background:#fff;
}

.about-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.10);
}

.sub-title{
    color:#FFD31D;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    display:block;
    margin-bottom:10px;
}

.section-title h2{
    font-size:48px;
    font-weight:700;
    color:#222;
    margin-bottom:20px;
}

.about-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:15px;
}

.about-btn{
    display:inline-block;
    margin-top:10px;
    padding:14px 30px;
    background:#FFD31D;
    color:#000;
    text-decoration:none;
    font-weight:600;
    border-radius:6px;
    transition:.3s;
}

.about-btn:hover{
    background:#000;
    color:#fff;
}

/* Mobile Responsive */
@media(max-width:991px){

.section-title h2{
    font-size:34px;
}

.about-content{
    text-align:left;
}

.about-image{
    text-align:center;
}

}

@media(max-width:576px){

.section-title h2{
    font-size:28px;
}

.about-content p{
    font-size:15px;
    line-height:1.8;
}

.about-btn{
    width:100%;
    text-align:center;
}

}



.contact-form-box{
    background:#fff;
    padding:40px;
    border-radius:15px;
}

.contact-form-box h2{
    font-weight:700;
}

.contact-form-box .form-control{
    height:55px;
    border-radius:8px;
}

.contact-form-box textarea.form-control{
    height:auto;
}

.contact-info-card{
    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.contact-info-card:hover{
    transform:translateY(-8px);
}

.contact-info-card .icon{
    width:70px;
    height:70px;
    background:#FFD31D;
    color:#000;
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:20px;
}

.contact-info-card h5{
    font-weight:700;
    margin-bottom:10px;
}

.contact-image img{
    width:100%;
    height:100%;
    min-height:550px;
    object-fit:cover;
}

.map-box{
    border-radius:15px;
    overflow:hidden;
}

@media(max-width:991px){

.contact-image img{
    min-height:300px;
}

.contact-form-box{
    padding:25px;
}

}



.mission-vision-section{
    background:#f8f9fa;
}

.mv-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.mv-card:hover{
    transform:translateY(-10px);
}

.mv-image{
    width:100%;
    height:280px;
    object-fit:cover;
}

.mv-content{
    padding:30px;
}

.icon-box{
    width:70px;
    height:70px;
    background:#FFD31D;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:#000;
    margin-bottom:20px;
}

.mv-content h3{
    font-size:30px;
    font-weight:700;
    margin-bottom:15px;
}

.mv-content p{
    color:#666;
    line-height:1.8;
}

.mv-content ul{
    list-style:none;
    padding:0;
    margin-top:20px;
}

.mv-content ul li{
    margin-bottom:12px;
    padding-left:25px;
    position:relative;
}

.mv-content ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#FFD31D;
    font-weight:700;
}

@media(max-width:991px){

    .mv-image{
        height:220px;
    }

    .mv-content{
        padding:20px;
    }

    .mv-content h3{
        font-size:24px;
    }
}




.team-section{
    background:#f8f9fa;
}

.team-subtitle{
    color:#FFD31D;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.team-title{
    font-size:42px;
    font-weight:700;
    margin:10px 0;
}

.team-desc{
    max-width:700px;
    margin:auto;
    color:#666;
}

.team-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.team-card:hover{
    transform:translateY(-10px);
}

.team-img{
    overflow:hidden;
}

.team-img img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.5s;
}

.team-card:hover .team-img img{
    transform:scale(1.08);
}

.team-content{
    padding:25px;
    text-align:center;
}

.team-content h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:5px;
}

.team-content span{
    color:#FFD31D;
    font-weight:600;
    display:block;
    margin-bottom:15px;
}

.team-social{
    display:flex;
    justify-content:center;
    gap:10px;
}

.team-social a{
    width:40px;
    height:40px;
    background:#FFD31D;
    color:#000;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s;
}

.team-social a:hover{
    background:#000;
    color:#fff;
}

@media(max-width:991px){

    .team-title{
        font-size:30px;
    }

    .team-img img{
        height:280px;
    }

}