/* ===============================
   RESET & GLOBAL
=================================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    line-height:1.6;
    color:#222;
}

:root{
    --blue:#0b3d91;
    --dark:#081c3a;
    --orange:#f26522;
    --light:#f4f4f4;
    --white:#ffffff;
}

/* ===============================
   CONTAINER & FLEX
=================================*/
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.flex-between{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* ===============================
   TOP BAR
=================================*/
.top-bar{
    background:#2d2d2d;
    color:var(--white);
    padding:8px 0;
    font-size:14px;
}

/* ===============================
   HEADER
=================================*/
.main-header{
    background:var(--white);
    border-bottom:1px solid #eee;
}

.header-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.logo img{
    height:55px;
}

.nav-menu ul{
    display:flex;
    list-style:none;
    gap:25px;
}

.nav-menu a{
    text-decoration:none;
    color:#222;
    font-weight:600;
    font-size:14px;
    transition:0.3s ease;
}

.nav-menu a:hover{
    color:var(--blue);
}
.menu-toggle{
    display:none;
    font-size:22px;
    cursor:pointer;
}

@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    .main-header{
        position:relative;
    }

    .nav-menu{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        display:none;
        z-index:999;
    }

    .nav-menu.active{
        display:block;
    }

    .nav-menu ul{
        flex-direction:column;
        padding:20px;
    }
}
/* ===============================
   HERO SECTION
=================================*/
.hero{
    background:
        linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
        url('../images/banner.jpg') center/cover no-repeat;
    height:80vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:var(--white);
}

.hero h1{
    font-size:42px;
    margin-bottom:15px;
}

.hero p{
    font-size:18px;
}

/* ===============================
   PAGE BANNER
=================================*/
.page-banner{
    background:var(--blue);
    color:var(--white);
    padding:60px 0;
    text-align:center;
}

.page-banner h1{
    font-size:32px;
}

/* ===============================
   GENERAL SECTION
=================================*/
.section{
    padding:80px 0;
    background:var(--white);
}

.section-title{
    text-align:center;
    margin-bottom:50px;
    color:var(--blue);
    font-size:30px;
}

/* ===============================
   GRID SYSTEM
=================================*/
.grid-3{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

/* ===============================
   CARDS
=================================*/
.card{
    background:var(--white);
    padding:20px;
    text-align:center;
    border-radius:8px;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
    transition:0.3s ease;
}

.card:hover{
    transform:translateY(-6px);
}

.card img{
    width:100%;
    border-radius:8px;
    margin-bottom:15px;
}

/* ===============================
   CONTACT FORM
=================================*/
.contact-form input,
.contact-form textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:4px;
}

.contact-form button{
    background:var(--orange);
    color:var(--white);
    padding:12px 25px;
    border:none;
    border-radius:4px;
    cursor:pointer;
    transition:0.3s;
}

.contact-form button:hover{
    background:#d94e15;
}
/* =========================
   PREMIUM MODERN FOOTER
==========================*/
/* ===================================
   PROFESSIONAL CORPORATE FOOTER
===================================*/

.footer{
    background:#0b1f3f;
    color:#ffffff;
    padding:70px 0 0 0;
}

/* Top layout */
.footer-top{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:50px;
    padding-bottom:50px;
}

.footer-col h4{
    font-size:17px;
    font-weight:600;
    margin-bottom:20px;
    text-transform:uppercase;
    letter-spacing:0.5px;
    color:#ffffff;
}

.footer-col h4::after{
    content:"";
    display:block;
    width:35px;
    height:3px;
    background:#f26522;
    margin-top:8px;
}

/* Logo & description */
.footer-brand img{
    max-width:170px;
    margin-bottom:15px;
}

.footer-brand p{
    font-size:14px;
    color:#cbd5e1;
    line-height:1.8;
}

/* Links */
.footer-col ul{
    list-style:none;
    padding:0;
}

.footer-col ul li{
    margin-bottom:12px;
    font-size:14px;
    color:#cbd5e1;
}

/* Proper link styling */
.footer-col ul li a{
    color:#cbd5e1;
    transition:0.3s;
}

.footer-col ul li a:hover{
    color:#f26522;
}

/* Contact */
.footer-contact li{
    display:flex;
    align-items:flex-start;
    gap:10px;
}

.footer-contact i{
    color:#f26522;
    margin-top:4px;
    min-width:16px;
}

/* Bottom */
.footer-bottom{
    background:#06142a;
    padding:18px 0;
}

.footer-bottom-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:13px;
    color:#cbd5e1;
}

.footer-bottom .dev span{
    color:#f26522;
}

/* Responsive */
@media(max-width:992px){
    .footer-top{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .footer-top{
        grid-template-columns:1fr;
    }

    .footer-bottom-inner{
        flex-direction:column;
        text-align:center;
        gap:8px;
    }
}
/* ===============================
   RESPONSIVE
=================================*/
@media(max-width:768px){

    .nav-menu{
        display:none;
    }

    .hero{
        height:60vh;
        padding:20px;
    }

    .hero h1{
        font-size:26px;
    }

    .section{
        padding:50px 0;
    }

}

/* ===============================
   HERO MAIN
=================================*/
.hero-main{
    background:url('../images/Heavy Lifting.jpg') center/cover no-repeat;
    height:85vh;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-overlay{
    background:rgba(0,0,0,0.55);
    padding:40px;
    text-align:center;
    color:#fff;
    width:100%;
}

.hero-overlay h1{
    font-size:40px;
    margin-bottom:15px;
}

.hero-overlay p{
    font-size:18px;
    margin-bottom:20px;
}

.btn-primary{
    background:#f26522;
    padding:12px 30px;
    color:#fff;
    display:inline-block;
    border-radius:4px;
    font-weight:600;
}

.btn-primary:hover{
    background:#d94e15;
}

/* ===============================
   SERVICES
=================================*/
.service-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:8px;
}

.service-card{
    text-align:center;
}

/* ===============================
   EQUIPMENT GRID
=================================*/
.light-bg{
    background:#f5f6f8;
}

.equipment-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.equipment-grid img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:8px;
    transition:0.3s;
}

.equipment-grid img:hover{
    transform:scale(1.05);
}

/* ===============================
   FEATURE SECTION
=================================*/
.feature-section{
    padding:80px 0;
}

.feature-flex{
    display:flex;
    align-items:center;
    gap:50px;
}

.feature-text{
    flex:1;
}

.feature-image{
    flex:1;
}

.feature-image img{
    width:100%;
    border-radius:10px;
}

/* Responsive */
@media(max-width:768px){
    .feature-flex{
        flex-direction:column;
    }

    .hero-overlay h1{
        font-size:26px;
    }
}
/* ================= HERO ================= */
.hero-slider{
    background:url('../images/Heavy Lifting.jpg') center/cover no-repeat;
    height:90vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
}

.hero-slider::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

.hero-content{
    position:relative;
    color:#fff;
    z-index:2;
}

.hero-content h1{
    font-size:42px;
    margin-bottom:15px;
}

.hero-content p{
    font-size:18px;
    margin-bottom:20px;
}

/* ================= ABOUT ================= */
.about-home{
    background:#ffffff;
}

.about-wrapper{
    display:flex;
    align-items:center;
    gap:60px;
}

.about-img{
    flex:1;
}

.about-img img{
    width:100%;
    border-radius:12px;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.about-content{
    flex:1;
}

.about-subtitle{
    color:#f26522;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    font-size:14px;
}

.about-content h2{
    font-size:34px;
    margin:10px 0 20px 0;
    color:#0b1f3f;
}

.about-content p{
    margin-bottom:15px;
    color:#555;
    line-height:1.7;
}

.about-points{
    list-style:none;
    padding:0;
    margin:20px 0;
}

.about-points li{
    margin-bottom:10px;
    font-weight:500;
    color:#333;
}

/* Responsive */
@media(max-width:992px){
    .about-wrapper{
        flex-direction:column;
    }

    .about-content h2{
        font-size:26px;
    }
}

/* ================= SERVICES ================= */
.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-box{
    background:#fff;
    padding:20px;
    border-radius:8px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    text-align:center;
}

.service-box img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:8px;
    margin-bottom:15px;
}

/* ================= TESTIMONIAL ================= */
.testimonial-section{
    background:#0b1f3f;
    padding:80px 0;
    color:#fff;
    text-align:center;
}

.testimonial-box{
    max-width:800px;
    margin:auto;
    font-size:18px;
}

.white{
    color:#fff !important;
}

/* ================= GALLERY ================= */
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:8px;
    transition:0.3s;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

/* ================= CTA ================= */
.contact-cta{
    background:#f26522;
    padding:50px 0;
    color:#fff;
}

.cta-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

/* ================= BUTTON ================= */
.btn-primary{
    background:#0b1f3f;
    padding:12px 30px;
    color:#fff;
    border-radius:4px;
    font-weight:600;
}

.btn-primary:hover{
    background:#081c3a;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){

    .about-flex{
        flex-direction:column;
    }

    .hero-content h1{
        font-size:26px;
    }

    .cta-flex{
        flex-direction:column;
        text-align:center;
    }

}
/* ===============================
   CONTACT PAGE
=================================*/

.contact-wrapper{
    display:flex;
    gap:50px;
}

.contact-info{
    flex:1;
    display:grid;
    gap:25px;
}

.info-box{
    background:#fff;
    padding:25px;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.info-box i{
    font-size:22px;
    color:#f26522;
    margin-bottom:10px;
}

.info-box h4{
    margin-bottom:8px;
    color:#0b1f3f;
}

.contact-form-box{
    flex:1;
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.contact-form-box h3{
    margin-bottom:20px;
    color:#0b1f3f;
}

.form-row{
    display:flex;
    gap:20px;
    margin-bottom:15px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:5px;
}

.map-section{
    margin-top:40px;
}

/* Responsive */
@media(max-width:992px){
    .contact-wrapper{
        flex-direction:column;
    }

    .form-row{
        flex-direction:column;
    }
}
/* ================= ABOUT PAGE ================= */

.about-grid{
    display:flex;
    gap:60px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:12px;
}

.about-content{
    flex:1;
}

.mission-box{
    background:#f5f6f8;
    padding:20px;
    border-left:4px solid #f26522;
    margin-top:20px;
    border-radius:6px;
}

@media(max-width:992px){
    .about-grid{
        flex-direction:column;
    }
}
/* ================= SERVICES PAGE ================= */

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.service-card{
    background:#fff;
    padding:20px;
    border-radius:8px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.service-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:8px;
    margin-bottom:15px;
}
/* ================= EQUIPMENT PAGE ================= */

.equipment-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
}

.equipment-grid img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:8px;
    transition:0.3s;
}

.equipment-grid img:hover{
    transform:scale(1.05);
}
.project-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.project-box img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:8px;
}
/* ================= DOWNLOAD PAGE ================= */
.download-box{
    background:#fff;
    padding:25px;
    margin-bottom:20px;
    border-radius:8px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}
/* ================= CAREER PAGE ================= */
.career-list{
    margin-top:20px;
}

.career-list li{
    margin-bottom:10px;
}

/* ================= DHV PROFESSIONAL CORPORATE ================= */

.dhv-corporate{
    padding:100px 0 0 0;
    background:#ffffff;
}

/* Intro */
.corp-intro{
    text-align:center;
    max-width:800px;
    margin:0 auto 70px auto;
}

.corp-intro h2{
    font-size:34px;
    margin-bottom:20px;
}

.corp-intro p{
    font-size:17px;
    color:#666;
    line-height:1.8;
}

/* Core Grid */
.corp-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:40px;
    margin-bottom:100px;
}

.corp-box{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
    transition:0.3s;
}

.corp-box:hover{
    transform:translateY(-8px);
}

.corp-box img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.corp-box h3{
    padding:20px 20px 10px;
    font-size:20px;
}

.corp-box p{
    padding:0 20px 25px;
    color:#666;
    font-size:15px;
}

/* Highlight Band */
.corp-highlight{
    background:#0b1f3f;
    color:#fff;
    padding:70px 0;
    margin-bottom:100px;
}

.highlight-inner{
    text-align:center;
    max-width:800px;
    margin:auto;
}

.highlight-inner h3{
    font-size:28px;
    margin-bottom:15px;
}

/* Why Section */
.why-section{
    margin-bottom:80px;
}

.why-section h2{
    text-align:center;
    margin-bottom:50px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.why-item{
    background:#f7f9fb;
    padding:30px;
    border-radius:8px;
}

.why-item h4{
    margin-bottom:15px;
}

/* CTA */
.corp-cta{
    text-align:center;
    padding:60px 0 100px;
}

.btn-primary{
    display:inline-block;
    background:#f26522;
    color:#fff;
    padding:14px 30px;
    text-decoration:none;
    border-radius:5px;
    transition:0.3s;
}

.btn-primary:hover{
    background:#d94e15;
}

/* Mobile */
@media(max-width:768px){

    .corp-intro h2{
        font-size:26px;
    }

    .corp-highlight{
        padding:50px 0;
    }

}
/* ================= PREMIUM ABOUT IMAGES ================= */

.about-premium-wrapper{
    display:flex;
    align-items:center;
    gap:60px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:12px;
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.about-text{
    flex:1;
}

.about-points{
    list-style:none;
    margin-top:20px;
}

.about-points li{
    margin-bottom:10px;
}

/* Image Strip Background */

.about-image-strip{
    height:350px;
    background:url('../images/Heavy Lifting.jpg') center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.strip-overlay{
    background:rgba(0,0,0,0.55);
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-align:center;
}

.strip-overlay h3{
    font-size:28px;
}

/* Gallery */

.about-gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.about-gallery-grid img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:10px;
    transition:0.3s;
}

.about-gallery-grid img:hover{
    transform:scale(1.05);
}

/* Responsive */

@media(max-width:992px){
    .about-premium-wrapper{
        flex-direction:column;
    }
}

/* ================= PROJECT PAGE ================= */

.projects-intro{
    text-align:center;
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.project-card{
    position:relative;
    overflow:hidden;
    border-radius:10px;
}

.project-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    transition:0.4s;
}

.project-card:hover img{
    transform:scale(1.1);
}

.project-overlay{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    background:linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color:#fff;
    padding:20px;
}

.project-overlay h4{
    margin-bottom:8px;
}

.project-overlay p{
    font-size:14px;
}