:root{
    --primary:#0D1B2A;
    --secondary:#1B263B;
    --accent:#E50914;
    --light:#F5F7FA;
    --white:#ffffff;
    --dark:#222222;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',sans-serif;
    line-height:1.8;
    color:#444;
    overflow-x:hidden;
    padding-top:155px;
}

a{
    text-decoration:none;
    transition:.3s;
}

img{
    max-width:100%;
}

/* Top Bar */
.top-bar{
    background:var(--primary);
    color:#fff;
    font-size:14px;
    padding:10px 0;

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:10000;
}

.top-bar-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.top-contact{
    display:flex;
    align-items:center;
    gap:16px;
}

.top-contact i,
.top-social i{
    color:#fff;
    margin-right:7px;
}

.top-contact .divider{
    width:1px;
    height:18px;
    background:rgba(255,255,255,0.45);
}

.top-social{
    display:flex;
    align-items:center;
    gap:18px;
}

.top-social a{
    color:#fff;
    font-size:15px;
}

.top-social a:hover{
    color:var(--accent);
}

/* Main Navbar */
.main-navbar{
    background:#ffffff !important;
    box-shadow:0 5px 25px rgba(13,27,42,0.10);
    padding:8px 0;

    position:fixed;
    top:42px;
    left:0;
    width:100%;
    z-index:9999;
}

.main-navbar::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:3px;
    background:var(--accent);
}

.navbar-brand{
    display:flex;
    align-items:center;
}

.navbar-brand img{
    max-height:95px;
    width:auto;
    transform:scale(1.15);
    transform-origin:left center;
}

/* Nav Links */
.navbar-nav .nav-link{
    color:var(--primary) !important;
    font-weight:800;
    text-transform:uppercase;
    font-size:14px;
    letter-spacing:.4px;
    margin:0 8px;
    position:relative;
    padding:12px 0 !important;
}

.navbar-nav .nav-link:hover{
    color:var(--accent) !important;
}

.navbar-nav .nav-link.active{
    color:var(--accent) !important;
}

.navbar-nav .nav-link.active::after{
    content:'';
    position:absolute;
    left:0;
    bottom:2px;
    width:100%;
    height:3px;
    background:var(--accent);
}

/* Dropdown */
.dropdown-menu{
    border:none;
    border-radius:0;
    box-shadow:0 12px 30px rgba(13,27,42,0.15);
    padding:12px 0;
}

.dropdown-item{
    font-weight:600;
    color:var(--primary);
    padding:10px 22px;
    font-size:14px;
}

.dropdown-item:hover{
    background:var(--primary);
    color:#fff;
}

/* Quote Button */
.btn-quote{
    background:var(--accent);
    color:#fff !important;
    border:none;
    padding:13px 24px;
    font-weight:800;
    text-transform:uppercase;
    border-radius:4px;
    font-size:14px;
    transition:.3s;
}

.btn-quote:hover{
    background:var(--primary);
    color:#fff !important;
}

.footer-cta{
    background:
    linear-gradient(rgba(13,27,42,.88), rgba(13,27,42,.88)),
    url('../images/cta-bg.jpg');
    background-size:cover;
    background-position:center;
    padding:90px 0;
    color:#fff;
}

.footer-cta h2{
    font-size:42px;
    font-weight:900;
    margin-bottom:18px;
}

.footer-cta p{
    max-width:720px;
    margin:0 auto 30px;
    font-size:18px;
    color:rgba(255,255,255,.88);
}

.footer-premium{
    background:#0D1B2A;
    color:#fff;
}

.footer-top{
    text-align:center;
    padding:60px 0 40px;
    border-bottom:1px solid rgba(255,255,255,.1);
}

.footer-logo{
    max-height:90px;
    margin-bottom:20px;
}

.footer-top h3{
    font-weight:800;
    margin-bottom:15px;
}

.footer-top p{
    max-width:700px;
    margin:auto;
    color:rgba(255,255,255,.8);
}

.footer-main{
    padding:70px 0;
}

.footer-main h4{
    color:#fff;
    margin-bottom:25px;
    font-weight:800;
    position:relative;
}

.footer-main h4::after{
    content:'';
    display:block;
    width:50px;
    height:3px;
    background:#E50914;
    margin-top:10px;
}

.footer-main p{
    color:rgba(255,255,255,.75);
}

.footer-main i{
    color:#E50914;
    margin-right:10px;
}

.footer-main ul{
    list-style:none;
    padding:0;
}

.footer-main ul li{
    margin-bottom:12px;
}

.footer-main ul li a{
    color:rgba(255,255,255,.75);
    transition:.3s;
}

.footer-main ul li a:hover{
    color:#E50914;
    padding-left:5px;
}

.footer-social{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#E50914;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.footer-social a:hover{
    background:#fff;
    color:#0D1B2A;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    padding:20px 0;
    color:rgba(255,255,255,.7);
    font-size:14px;
}

.footer-divider{
    height:6px;
    background:
    linear-gradient(
        to bottom,
        #ffffff 0%,
        #ffffff 50%,
        #E50914 50%,
        #E50914 100%
    );
}

.footer-social a i{
    color:#ffffff !important;
    margin:0;
    font-size:16px;
}

@media(max-width:768px){
    .footer-cta h2{
        font-size:32px;
    }

    .footer-main{
        padding:50px 0;
    }

    .footer-main .col-md-6{
        margin-bottom:35px;
    }

    .footer-bottom{
        text-align:center;
    }

    .footer-bottom .text-md-end{
        text-align:center !important;
        margin-top:8px;
    }
}

/* Mobile Navbar */
@media(max-width:991px){

    .main-navbar{
        top:95px;
    }

    body{
        padding-top:190px;
    }

    .top-bar-content{
        flex-direction:column;
        gap:8px;
        text-align:center;
    }

    .top-contact{
        flex-direction:column;
        gap:6px;
    }

    .top-contact .divider{
        display:none;
    }

    .navbar-brand img{
    height:95px;
    width:auto;
    transition:.3s ease;
    }

    .main-navbar.scrolled .navbar-brand img{
    height:80px;
    }

    .navbar-nav{
        margin-top:20px;
    }

    .navbar-nav .nav-link{
        padding:12px 0 !important;
    }

    .navbar-nav .nav-link.active::after{
        display:none;
    }

    .btn-quote{
        display:inline-block;
        margin-top:12px;
    }
}

.hero{
    background:
    linear-gradient(rgba(13,27,42,.75),
    rgba(13,27,42,.75)),
    url('../images/hero.jpg');
    background-size:cover;
    background-position:center;
    min-height:85vh;
    display:flex;
    align-items:center;
    color:#fff;
}

.hero h1{
    font-size:58px;
    font-weight:800;
    margin-bottom:25px;
}

.hero p{
    font-size:20px;
    margin-bottom:30px;
}

.btn-primary-custom{
    background:var(--accent);
    color:#fff;
    padding:14px 30px;
    border:none;
    border-radius:5px;
    font-weight:600;
}

.btn-primary-custom:hover{
    background:#d65c00;
    color:#fff;
}

.feature-strip{
    background:#ffffff;
    padding:28px 0;
    box-shadow:0 8px 30px rgba(13,27,42,0.08);
    position:relative;
    z-index:5;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:18px;
}

.feature-icon{
    min-width:62px;
    width:62px;
    height:62px;
    border-radius:50%;
    background:#0D1B2A;
    color:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    box-shadow:0 8px 20px rgba(13,27,42,0.25);
}

.feature-item h5{
    margin:0 0 5px;
    font-size:16px;
    font-weight:800;
    color:#0D1B2A;
    text-transform:uppercase;
}

.feature-item p{
    margin:0;
    font-size:14px;
    line-height:1.4;
    color:#333;
}

@media(max-width:991px){
    .feature-strip{
        padding:30px 0 10px;
    }

    .feature-item{
        margin-bottom:20px;
    }
}

.about-home h2{
    color:#0D1B2A;
    font-weight:800;
    font-size:38px;
    line-height:1.2;
    margin-bottom:25px;
}

.about-home p{
    font-size:16px;
    color:#444;
    line-height:1.8;
}

.about-home i{
    color:#E50914;
}

.services-home{
    position:relative;
    overflow:hidden;
}

.section-subtitle{
    max-width:760px;
    margin:0 auto;
    font-size:17px;
    color:#555;
    line-height:1.7;
}

.service-card{
    background:#ffffff;
    border-radius:18px;
    overflow:hidden;
    height:100%;
    box-shadow:0 12px 35px rgba(13,27,42,0.10);
    transition:all .4s ease;
    position:relative;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(13,27,42,0.18);
}

.service-card img{
    width:100%;
    height:235px;
    object-fit:cover;
}

.service-content{
    padding:30px;
    position:relative;
}

.service-icon{
    width:62px;
    height:62px;
    border-radius:50%;
    background:#0D1B2A;
    color:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:25px;
    margin-top:-62px;
    margin-bottom:20px;
    position:relative;
    border:5px solid #ffffff;
    box-shadow:0 8px 20px rgba(13,27,42,0.25);
}

.service-content h4{
    color:#0D1B2A;
    font-size:21px;
    font-weight:800;
    margin-bottom:14px;
}

.service-content p{
    color:#555;
    font-size:15px;
    line-height:1.7;
    margin-bottom:18px;
}

.service-content a{
    color:#E50914;
    font-weight:700;
    font-size:15px;
    text-transform:uppercase;
}

.service-content a i{
    margin-left:6px;
    transition:.3s;
}

.service-content a:hover i{
    margin-left:12px;
}

.industry-card{
    background:#fff;
    padding:35px 28px;
    border-radius:16px;
    height:100%;
    box-shadow:0 12px 35px rgba(13,27,42,0.08);
    transition:.4s;
}

.industry-card:hover{
    transform:translateY(-8px);
}

.industry-card i{
    font-size:42px;
    color:#E50914;
    margin-bottom:20px;
}

.industry-card h4{
    color:#0D1B2A;
    font-weight:800;
}

.why-section h2{
    color:#0D1B2A;
    font-weight:800;
    font-size:40px;
}

.why-section img{
    width:100%;
    aspect-ratio:5/5;
    object-fit:cover;
    border-radius:15px;
}

.why-list div{
    margin-bottom:14px;
    font-weight:600;
    color:#0D1B2A;
}

.why-list i{
    color:#E50914;
    margin-right:10px;
}

.service-detail-hero{
    min-height:430px;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    color:#fff;
}

.service-detail-hero h1{
    font-size:54px;
    font-weight:900;
    margin-bottom:15px;
}

.service-detail-hero p{
    max-width:620px;
    font-size:18px;
    line-height:1.7;
}

.service-list{
    list-style:none;
    padding:0;
}

.service-list li{
    margin-bottom:14px;
    font-weight:600;
    color:#0D1B2A;
}

.service-list li::before{
    content:"\f058";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    color:#E50914;
    margin-right:10px;
}

.service-benefits{
    background:#f5f7fa;
    padding:45px 0;
}

.service-benefits i{
    font-size:34px;
    color:#E50914;
    margin-bottom:12px;
}

.service-benefits p{
    margin:0;
    font-weight:700;
    color:#0D1B2A;
}

@media(max-width:768px){
    .service-detail-hero h1{
        font-size:38px;
    }
}

.commitment-section{
    background:#0D1B2A;
    padding:80px 0;
    color:#fff;
}

.commitment-box h3{
    font-size:46px;
    font-weight:900;
    color:#fff;
}

.commitment-box p{
    margin:0;
    color:#dce6f2;
}

.partner-box{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
}

.partner-box span{
    background:#fff;
    padding:18px 35px;
    border-radius:10px;
    font-weight:800;
    color:#0D1B2A;
    box-shadow:0 8px 25px rgba(13,27,42,0.08);
}

.cta-section{
    background:
    linear-gradient(rgba(13,27,42,.88), rgba(13,27,42,.88)),
    url('../images/cta-bg.jpg');
    background-size:cover;
    background-position:center;
    padding:90px 0;
    color:#fff;
}

.cta-section h2{
    font-size:42px;
    font-weight:800;
    margin-bottom:20px;
}

.cta-section p{
    max-width:720px;
    margin:0 auto 30px;
    font-size:18px;
}

.section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:var(--primary);
    font-weight:700;
    position:relative;
}

.section-title h2:after{
    content:'';
    width:90px;
    height:4px;
    background:var(--accent);
    display:block;
    margin:15px auto;
}

.service-box{
    background:#fff;
    padding:40px 30px;
    text-align:center;
    border-radius:12px;
    box-shadow:0 0 20px rgba(0,0,0,.08);
    margin-bottom:30px;
    transition:.4s;
}

.service-box:hover{
    transform:translateY(-8px);
}

.service-box i{
    font-size:55px;
    color:var(--accent);
    margin-bottom:20px;
}

.service-box h4{
    color:var(--primary);
    margin-bottom:15px;
}

.stats{
    background:var(--primary);
    color:#fff;
    padding:90px 0;
}

.stats h2{
    font-size:60px;
    font-weight:700;
}

.stats p{
    font-size:18px;
}

.page-header{
    background:
    linear-gradient(rgba(13,27,42,.85),
    rgba(13,27,42,.85)),
    url('../images/page-banner.jpg');
    background-size:cover;
    background-position:center;
    padding:140px 0;
    color:#fff;
    text-align:center;
}

.page-header h1{
    font-size:55px;
    font-weight:700;
}

.value-card{
    padding:35px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 0 20px rgba(0,0,0,.08);
    text-align:center;
    margin-bottom:30px;
}

.value-card i{
    font-size:50px;
    color:var(--accent);
    margin-bottom:20px;
}

.project-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 0 20px rgba(0,0,0,.08);
    margin-bottom:30px;
}

.project-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.project-content{
    padding:25px;
}

.project-content h4{
    color:var(--primary);
}

.qsafe-card{
    background:#fff;
    padding:40px;
    text-align:center;
    border-radius:12px;
    box-shadow:0 0 20px rgba(0,0,0,.08);
    margin-bottom:30px;
}

.qsafe-card h3{
    color:var(--accent);
    font-size:50px;
}

.contact-box{
    background:#fff;
    padding:40px;
    box-shadow:0 0 20px rgba(0,0,0,.08);
    border-radius:12px;
}

.contact-info{
    margin-bottom:25px;
}

.contact-info i{
    color:var(--accent);
    margin-right:10px;
}

.form-control{
    min-height:55px;
    border-radius:5px;
}

textarea.form-control{
    min-height:150px;
}

footer{
    background:var(--primary);
    color:#fff;
    padding:70px 0 20px;
}

footer h4{
    margin-bottom:20px;
}

footer ul{
    list-style:none;
    padding-left:0;
}

footer ul li{
    margin-bottom:10px;
}

footer a{
    color:#fff;
}

footer a:hover{
    color:var(--accent);
}

.whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    z-index:999;
}

.whatsapp:hover{
    color:#fff;
}

.back-to-top{
    position:fixed;
    bottom:90px;
    right:20px;
    width:50px;
    height:50px;
    background:var(--accent);
    color:#fff;
    border:none;
    border-radius:50%;
    display:none;
    z-index:999;
}

@media(max-width:991px){

.hero{
    text-align:center;
    min-height:75vh;
}

.hero h1{
    font-size:38px;
}

.page-header h1{
    font-size:38px;
}

.navbar-brand img{
    max-height:55px;
}
}
.about-hero{
    background:
    linear-gradient(rgba(13,27,42,.82), rgba(13,27,42,.82)),
    url('../images/about-hero.jpg');
    background-size:cover;
    background-position:center;
    padding:150px 0 110px;
    color:#fff;
}

.about-hero-content{
    max-width:850px;
}

.about-hero span,
.section-label{
    color:#E50914;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1px;
    display:inline-block;
    margin-bottom:12px;
}

.about-hero h1{
    font-size:52px;
    font-weight:900;
    line-height:1.15;
    margin-bottom:20px;
}

.about-hero p{
    font-size:18px;
    max-width:720px;
}

.about-company h2,
.qsafe-about h2,
.md-message h2{
    color:#0D1B2A;
    font-weight:900;
    font-size:40px;
    line-height:1.2;
    margin-bottom:22px;
}

.about-company p,
.qsafe-about p,
.md-message p{
    color:#444;
    line-height:1.8;
}

.about-checks{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin-top:25px;
}

.about-checks div{
    font-weight:700;
    color:#0D1B2A;
}

.about-checks i{
    color:#E50914;
    margin-right:8px;
}

.premium-value{
    height:100%;
    border-bottom:4px solid #E50914;
}

.qsafe-mini{
    background:#fff;
    padding:22px 25px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(13,27,42,.08);
    font-weight:800;
    color:#0D1B2A;
}

.qsafe-mini strong{
    background:#E50914;
    color:#fff;
    width:42px;
    height:42px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-right:12px;
}

.lead-text{
    font-size:20px;
    font-weight:700;
    color:#0D1B2A !important;
    border-left:4px solid #E50914;
    padding-left:20px;
}

@media(max-width:768px){
    .about-hero h1{
        font-size:36px;
    }

    .about-checks{
        grid-template-columns:1fr;
    }

    .about-company h2,
    .qsafe-about h2,
    .md-message h2{
        font-size:32px;
    }
}

.md-message{
    position:relative;
}

.md-quote{
    border-left:4px solid #E50914;
    padding-left:20px;
    margin-bottom:30px;
    font-size:22px;
    font-weight:700;
    color:#0D1B2A;
    line-height:1.5;
}

.md-signature{
    margin-top:35px;
    padding-top:20px;
    border-top:1px solid #ddd;
}

.md-signature h5{
    margin-bottom:4px;
    font-weight:800;
    color:#0D1B2A;
}

.md-signature span{
    color:#E50914;
    font-weight:600;
}

.md-message img{
    border-radius:20px;
}

.about-stats{
    background:#0D1B2A;
    color:#fff;
    padding:70px 0;
}

.about-stats h2{
    color:#fff;
    font-size:48px;
    font-weight:900;
    margin-bottom:10px;
}

.about-stats p{
    color:rgba(255,255,255,.8);
    margin:0;
}

.hse-hero{
    background:
    linear-gradient(rgba(13,27,42,.82), rgba(13,27,42,.82)),
    url('../images/hse-hero.jpg');
    background-size:cover;
    background-position:center;
    padding:150px 0 110px;
    color:#fff;
}

.hse-hero-content{
    max-width:820px;
}

.hse-hero span{
    color:#E50914;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1px;
    display:inline-block;
    margin-bottom:12px;
}

.hse-hero h1{
    font-size:56px;
    font-weight:900;
    line-height:1.15;
    margin-bottom:20px;
}

.hse-hero p{
    font-size:18px;
    max-width:680px;
}

.hse-intro h2,
.hse-approach h3{
    color:#0D1B2A;
    font-weight:900;
}

.hse-intro p{
    color:#444;
    line-height:1.8;
}

.premium-qsafe{
    height:100%;
    text-align:left;
    border-bottom:4px solid #E50914;
}

.qsafe-letter{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#E50914;
    color:#fff;
    font-size:28px;
    font-weight:900;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.premium-qsafe h4{
    color:#0D1B2A;
    font-weight:800;
}

.approach-box{
    background:#fff;
    padding:40px;
    border-radius:16px;
    box-shadow:0 12px 35px rgba(13,27,42,0.08);
    height:100%;
}

.approach-box h3{
    margin-bottom:25px;
}

.approach-box h3 i{
    color:#E50914;
    margin-right:10px;
}

.approach-box ul{
    list-style:none;
    padding:0;
    margin:0;
}

.approach-box ul li{
    margin-bottom:14px;
    font-weight:600;
    color:#0D1B2A;
}

.approach-box ul li::before{
    content:"\f058";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    color:#E50914;
    margin-right:10px;
}

.hse-focus-card{
    background:#fff;
    padding:35px 25px;
    border-radius:16px;
    height:100%;
    box-shadow:0 12px 35px rgba(13,27,42,0.08);
    transition:.3s;
}

.hse-focus-card:hover{
    transform:translateY(-8px);
}

.hse-focus-card i{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#0D1B2A;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin:0 auto 20px;
}

.hse-focus-card h5{
    color:#0D1B2A;
    font-weight:800;
}

@media(max-width:768px){
    .hse-hero h1{
        font-size:38px;
    }
}

.contact-hero{
    background:
    linear-gradient(rgba(13,27,42,.82), rgba(13,27,42,.82)),
    url('../images/contact-hero.jpg');
    background-size:cover;
    background-position:center;
    padding:150px 0 110px;
    color:#fff;
}

.contact-hero-content{
    max-width:760px;
}

.contact-hero span{
    color:#E50914;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1px;
    display:inline-block;
    margin-bottom:12px;
}

.contact-hero h1{
    font-size:56px;
    font-weight:900;
    line-height:1.15;
    margin-bottom:20px;
}

.contact-hero p{
    font-size:18px;
    max-width:680px;
}

.contact-card{
    background:#fff;
    padding:35px 28px;
    border-radius:16px;
    height:100%;
    text-align:center;
    box-shadow:0 12px 35px rgba(13,27,42,.08);
    border-bottom:4px solid #E50914;
    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-8px);
}

.contact-card i{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#0D1B2A;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin:0 auto 20px;
}

.contact-card h4{
    color:#0D1B2A;
    font-weight:800;
    margin-bottom:12px;
}

.contact-card p{
    margin:0;
    color:#555;
}

.contact-side{
    background:#0D1B2A;
    color:#fff;
    padding:45px;
    border-radius:18px;
    height:100%;
}

.contact-side h2{
    font-weight:900;
    margin-bottom:20px;
}

.contact-side p{
    color:rgba(255,255,255,.78);
}

.contact-side-item{
    display:flex;
    gap:18px;
    margin-top:28px;
}

.contact-side-item i{
    width:52px;
    height:52px;
    min-width:52px;
    border-radius:50%;
    background:#E50914;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.contact-side-item h5{
    font-weight:800;
    margin-bottom:5px;
}

.quote-form-box{
    background:#fff;
    padding:45px;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(13,27,42,.08);
}

.quote-form-box h3{
    color:#0D1B2A;
    font-weight:900;
    margin-bottom:10px;
}

.quote-form-box p{
    color:#555;
    margin-bottom:25px;
}

.quote-form-box .form-control{
    border:1px solid #ddd;
    min-height:56px;
    padding:12px 16px;
}

.quote-form-box textarea.form-control{
    min-height:160px;
}

.quote-form-box .form-control:focus{
    border-color:#E50914;
    box-shadow:none;
}

.contact-map iframe{
    width:100%;
    height:420px;
    border:0;
    display:block;
}

@media(max-width:768px){
    .contact-hero h1{
        font-size:38px;
    }

    .contact-side,
    .quote-form-box{
        padding:30px;
    }
}

/* Services Page */
.services-hero{
    background:
    linear-gradient(
        to right,
        rgba(13,27,42,.88) 0%,
        rgba(13,27,42,.72) 40%,
        rgba(13,27,42,.25) 100%
    ),
    url('../images/services-hero.jpg');
    background-size:cover;
    background-position:center;
    padding:150px 0 110px;
    color:#fff;
}

.services-hero-content{
    max-width:850px;
}

.services-hero span{
    color:#E50914;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1px;
    display:inline-block;
    margin-bottom:12px;
}

.services-hero h1{
    font-size:54px;
    font-weight:900;
    line-height:1.15;
    margin-bottom:20px;
}

.services-hero p{
    font-size:18px;
    max-width:720px;
}

.services-intro h2{
    color:#0D1B2A;
    font-size:40px;
    font-weight:900;
    line-height:1.2;
    margin-bottom:22px;
}

.services-intro p{
    color:#444;
    line-height:1.8;
}

.services-intro-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin-top:25px;
}

.services-intro-list div{
    font-weight:700;
    color:#0D1B2A;
}

.services-intro-list i{
    color:#E50914;
    margin-right:8px;
}

.service-page-card ul{
    list-style:none;
    padding:0;
    margin:0 0 20px;
}

.service-page-card ul li{
    font-size:14px;
    color:#0D1B2A;
    font-weight:600;
    margin-bottom:8px;
}

.service-page-card ul li::before{
    content:"\f058";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    color:#E50914;
    margin-right:8px;
}

.process-card{
    background:#fff;
    padding:35px 28px;
    border-radius:16px;
    height:100%;
    position:relative;
    box-shadow:0 12px 35px rgba(13,27,42,.08);
    border-bottom:4px solid #E50914;
    transition:.3s;
}

.process-card:hover{
    transform:translateY(-8px);
}

.process-card span{
    position:absolute;
    top:22px;
    right:25px;
    font-size:38px;
    font-weight:900;
    color:rgba(13,27,42,.08);
}

.process-card i{
    width:68px;
    height:68px;
    border-radius:50%;
    background:#0D1B2A;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:22px;
}

.process-card h4{
    color:#0D1B2A;
    font-weight:800;
    margin-bottom:12px;
}

.process-card p{
    color:#555;
    margin:0;
    line-height:1.7;
}

.service-industry-box{
    background:#fff;
    padding:30px 18px;
    border-radius:14px;
    box-shadow:0 10px 28px rgba(13,27,42,.08);
    transition:.3s;
    height:100%;
}

.service-industry-box:hover{
    transform:translateY(-6px);
}

.service-industry-box i{
    font-size:36px;
    color:#E50914;
    margin-bottom:15px;
}

.service-industry-box h5{
    color:#0D1B2A;
    font-weight:800;
    margin:0;
}

@media(max-width:768px){
    .services-hero h1{
        font-size:38px;
    }

    .services-intro h2{
        font-size:32px;
    }

    .services-intro-list{
        grid-template-columns:1fr;
    }
}

.hero-highlight{
    background:#0D1B2A;
    padding:22px 0;
}

.hero-highlight-box{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:25px;
}

.hero-highlight span{
    color:#E50914;
    font-weight:800;
    text-transform:uppercase;
    font-size:13px;
    letter-spacing:.6px;
}

.hero-highlight h4{
    color:#fff;
    margin:5px 0 0;
    font-weight:800;
}

.hero-highlight a{
    color:#fff;
    font-weight:800;
    white-space:nowrap;
}

.hero-highlight a:hover{
    color:#E50914;
}

@media(max-width:768px){
    .hero-highlight-box{
        flex-direction:column;
        align-items:flex-start;
    }
}

/* Featured Project on Homepage */
.featured-project-home{
    background:#ffffff;
    position:relative;
}

.featured-project-home h2{
    color:#0D1B2A;
    font-size:42px;
    font-weight:900;
    line-height:1.2;
    margin-bottom:22px;
}

.featured-project-home p{
    color:#444;
    line-height:1.8;
}

.featured-project-image{
    position:relative;
}

.featured-project-image img{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:18px;
}

.featured-badge{
    position:absolute;
    left:25px;
    bottom:25px;
    background:#E50914;
    color:#fff;
    padding:14px 24px;
    border-radius:6px;
    font-weight:800;
    text-transform:uppercase;
    font-size:13px;
    letter-spacing:.5px;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.featured-project-points{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin-top:25px;
}

.featured-project-points div{
    background:#F5F7FA;
    padding:16px 18px;
    border-radius:10px;
    font-weight:700;
    color:#0D1B2A;
    border-left:4px solid #E50914;
}

.featured-project-points i{
    color:#E50914;
    margin-right:8px;
}

@media(max-width:768px){

    .featured-project-home h2{
        font-size:32px;
    }

    .featured-project-image img{
        height:380px;
    }

    .featured-project-points{
        grid-template-columns:1fr;
    }

}

/* Project Detail Page */
.project-detail-hero{
    background-size:cover;
    background-position:center;
    padding:150px 0 110px;
    color:#fff;
}

.project-detail-hero span{
    color:#E50914;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1px;
    display:inline-block;
    margin-bottom:12px;
}

.project-detail-hero h1{
    font-size:54px;
    font-weight:900;
    line-height:1.15;
    max-width:900px;
    margin-bottom:20px;
}

.project-detail-hero p{
    max-width:720px;
    font-size:18px;
}

.project-info-box{
    background:#0D1B2A;
    color:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(13,27,42,.15);
}

.project-info-box h4{
    font-weight:900;
    margin-bottom:25px;
}

.project-info-box p{
    color:rgba(255,255,255,.85);
    margin-bottom:12px;
}

.project-scope-card{
    background:#fff;
    padding:35px 28px;
    border-radius:16px;
    height:100%;
    box-shadow:0 12px 35px rgba(13,27,42,.08);
    border-bottom:4px solid #E50914;
    transition:.3s;
}

.project-scope-card:hover{
    transform:translateY(-8px);
}

.project-scope-card i{
    width:68px;
    height:68px;
    border-radius:50%;
    background:#0D1B2A;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:22px;
}

.project-scope-card h4{
    color:#0D1B2A;
    font-weight:800;
    margin-bottom:12px;
}

.project-scope-card p{
    color:#555;
    margin:0;
}

.technical-list{
    list-style:none;
    padding:0;
    margin-top:25px;
}

.technical-list li{
    margin-bottom:12px;
    font-weight:700;
    color:#0D1B2A;
}

.technical-list li::before{
    content:"\f058";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    color:#E50914;
    margin-right:10px;
}

.project-category{
    display:inline-block;
    color:#E50914;
    font-weight:800;
    text-transform:uppercase;
    font-size:13px;
    margin-bottom:12px;
}

.project-highlights{
    list-style:none;
    padding:0;
    margin:0 0 20px;
}

.project-highlights li{
    font-size:14px;
    font-weight:600;
    color:#0D1B2A;
    margin-bottom:8px;
}

.project-highlights li::before{
    content:"\f058";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    color:#E50914;
    margin-right:8px;
}

.major-project{
    border-bottom:4px solid #E50914;
}

@media(max-width:768px){
    .project-detail-hero h1{
        font-size:36px;
    }
}

/* Projects Page */
.projects-hero{
    background:
    linear-gradient(
        to right,
        rgba(13,27,42,.88) 0%,
        rgba(13,27,42,.70) 45%,
        rgba(13,27,42,.25) 100%
    ),
    url('../images/projects/adsorption-chiller-hero.jpg');
    background-size:cover;
    background-position:center;
    padding:150px 0 110px;
    color:#fff;
}

.projects-hero-content{
    max-width:850px;
}

.projects-hero span{
    color:#E50914;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1px;
    display:inline-block;
    margin-bottom:12px;
}

.projects-hero h1{
    font-size:54px;
    font-weight:900;
    line-height:1.15;
    margin-bottom:20px;
}

.projects-hero p{
    max-width:720px;
    font-size:18px;
}

.featured-project-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(13,27,42,.12);
    border-bottom:5px solid #E50914;
}

.featured-project-img img{
    width:100%;
    height:620px;
    object-fit:cover;
}

.featured-project-content{
    padding:55px;
}

.featured-project-content h3{
    color:#0D1B2A;
    font-size:38px;
    font-weight:900;
    line-height:1.2;
    margin-bottom:20px;
}

.featured-project-content p{
    color:#555;
    line-height:1.8;
}

.featured-project-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:25px;
}

.featured-project-grid div{
    background:#F5F7FA;
    padding:16px;
    border-radius:10px;
    border-left:4px solid #E50914;
    font-weight:700;
    color:#0D1B2A;
}

.featured-project-grid i{
    color:#E50914;
    margin-right:8px;
}

.premium-project-card{
    height:100%;
    border-bottom:4px solid #E50914;
}

.premium-project-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.project-category{
    display:inline-block;
    color:#E50914;
    font-weight:800;
    text-transform:uppercase;
    font-size:13px;
    margin-bottom:12px;
    letter-spacing:.4px;
}

.project-highlights{
    list-style:none;
    padding:0;
    margin:0 0 20px;
}

.project-highlights li{
    font-size:14px;
    font-weight:600;
    color:#0D1B2A;
    margin-bottom:8px;
}

.project-highlights li::before{
    content:"\f058";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    color:#E50914;
    margin-right:8px;
}

@media(max-width:768px){
    .projects-hero h1{
        font-size:38px;
    }

    .featured-project-img img{
        height:380px;
    }

    .featured-project-content{
        padding:30px;
    }

    .featured-project-content h3{
        font-size:30px;
    }

    .featured-project-grid{
        grid-template-columns:1fr;
    }
}