/*====================================================
                GOOGLE FONT
====================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#fff;
    overflow-x: hidden;
}

/* ===========================
   TOP BAR
=========================== */


.top-bar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:45px;

    background:#0b1d39;

    color:#fff;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 80px;

    z-index:1001;

    transition:.4s;

}



.top-left{

    display:flex;

    gap:25px;

}

.top-left span{

    display:flex;

    align-items:center;

    gap:8px;

}

.top-right{

    display:flex;

    gap:18px;

}

.top-right i{

    cursor:pointer;

    transition:.3s;

}

.top-right i:hover{

    color:#f4c542;

}

/* ===========================
   NAVBAR
=========================== */

header{

    position:fixed;

    top:45px;

    left:0;

    width:100%;

    padding:1px 80px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:#fff;

    z-index:1000;

    transition:all .4s ease;

}



 .logo{

    display:flex;

    align-items:center;

    gap:15px;

}

.logo img{
    position: relative;
    left: 10%;

    width:80px;

}

.logo h2{
    position: absolute;
    left: 10.5%;
    top:6%;

    color:#0b1d39;

    font-size:35px;

    font-weight:1000;
    letter-spacing: 5px;
}

.logo1{
    position:absolute;
    bottom: -10px;
    color:#0b1d39;

    font-size:16px;

    font-weight:500;
    letter-spacing: 0;

} 


nav ul{

    display:flex;

    list-style:none;

    gap:35px;

}

nav ul li a{

    color:black;

    text-decoration:none;

    font-size:17px;

    font-weight:500;

    transition:.3s;

}

nav ul li a:hover{

color:#f4c542;


}

nav ul li a.active {

    color: #f4c542;

}


nav ul li a.active::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 100%;

    height: 3px;

    background: #FFD54F;

}

nav {
    margin-left: auto;
}

.menu-button {
    display: none;
}

/* ===========================
   STICKY NAVBAR
=========================== */

header.sticky{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    padding:1px 80px;

    background:white;

    box-shadow:0 8px 20px rgba(0,0,0,.15);

    z-index:1000;

    transition:.4s;

}

/* ===========================
   LOGO HOVER
=========================== */

.logo img{

    transition:.4s;

}

.logo img:hover{

    transform:rotate(-5deg) scale(1.08);

}

/* ===========================
   NAV LINK EFFECT
=========================== */

nav ul li{

    position:relative;

}

nav ul li::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:#FFD54F;

    transition:.4s;

}

nav ul li:hover::after{

    width:100%;

}

/* =====================================================
        HIDE TOP BAR WHEN SCROLLING
===================================================== */

.top-bar.hide-topbar {

    transform: translateY(-100%);

    opacity: 0;

    pointer-events: none;

}





/*==========================================
            HERO SECTION
==========================================*/

.service-hero{

    position:relative;

    width:100%;

    height:95vh;

    overflow:hidden;

}

.hero-image{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    object-fit:cover;

}

/* Dark Overlay */

.hero-overlay{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:linear-gradient(
    270deg,
    rgba(6,24,55,.95) 0%,
    rgba(6,24,55,.88) 32%,
    rgba(6,24,55,.55) 55%,
    rgba(6,24,55,.18) 75%,
    rgba(6,24,55,0) 100%
    );

}

/* Hero Content */

.hero-content{

    position:absolute;

    top:58%;

    right:8%;

    left:auto;

    transform:translateY(-50%);

    width:620px;

    z-index:5;

    text-align:left;

}

.hero-subtitle{

    display:inline-block;

    color:#FFC107;

    font-size:18px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:20px;

    animation: fadeLeft 2s ease;

}

.hero-content h1{

    color:#fff;

    font-size:55px;

    line-height:78px;

    font-weight:800;

    margin-bottom:25px;

    animation: fadeRight 2s ease;

}

.hero-content h1 span{

    color:#FFC107;

}

.hero-content p{

    color:#e6e6e6;

    font-size:20px;

    line-height:36px;

    width:95%;

}

.hero-content p strong{

    color:#FFC107;

    font-weight:600;

}

/* Left Decorative Dots */

.service-hero::before{

    content:"";

    position:absolute;

    right:55px;
    left: auto;

    top:45%;

    width:6px;

    height:6px;

    background:#FFC107;

    border-radius:50%;

    box-shadow:
    0 15px #FFC107,
    0 30px #FFC107,
    15px 0 #FFC107,
    15px 15px #FFC107,
    15px 30px #FFC107,
    30px 0 #FFC107,
    30px 15px #FFC107,
    30px 30px #FFC107;

    opacity:.5;

}

/* Hero Animation */

.hero-content{

    animation:heroFade 1.2s ease;

}

@keyframes heroFade{

    from{

        opacity:0;

        transform:translate(-40px,-50%);

    }

    to{

        opacity:1;

        transform:translate(0,-50%);

    }

}

/* Image Zoom */

.hero-image{

    animation:heroZoom 12s linear infinite alternate;

}

@keyframes heroZoom{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.08);

    }

}

@keyframes fadeLeft{

    0%{

        opacity:0;
        transform:translateX(-80px);

    }

    100%{

        opacity:1;
        transform:translateX(0);

    }

}

/* Right Animation */

@keyframes fadeRight{

    0%{

        opacity:0;
        transform:translateX(80px);

    }

    100%{

        opacity:1;
        transform:translateX(0);

    }

}

/*==========================================
            RESPONSIVE
==========================================*/

@media(max-width:991px){

    .service-hero{

        height:75vh;

    }

    .hero-content{

        width:90%;

        left:5%;

    }

    .hero-content h1{

        font-size:46px;

        line-height:58px;

    }

    .hero-content p{

        font-size:17px;

        line-height:30px;

    }

}

@media(max-width:768px){

    .service-hero{

        height:70vh;

    }

    .hero-content{

        width:90%;

    }

    .hero-content h1{

        font-size:34px;

        line-height:45px;

    }

    .hero-content p{

        font-size:15px;

        line-height:26px;

    }

}

/*====================================================
                SERVICES
====================================================*/

.services{

    padding:100px 8%;

    background:#fff;

}

.service-heading{

    text-align:center;

    margin-bottom:70px;

}

.service-heading span{

    color:#FFC107;

    font-weight:700;

    letter-spacing:3px;

}

.service-heading h2{

    color:#0B2D5C;

    font-size:48px;

    margin:18px 0;

}

.heading-line{

    width:80px;

    height:4px;

    background:#FFC107;

    margin:20px auto;

    border-radius:50px;

}

.service-heading p{

    width:720px;

    max-width:95%;

    margin:auto;

    color:#666;

    line-height:32px;

}

.service-container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}



.service-card{

    position:relative;

    background:#fff;

    border-radius:20px;

    overflow:visible;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

    display:flex;

    flex-direction:column;

}



.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.service-image{

    position:relative;

    overflow:hidden;

    border-radius:20px 20px 0 0;

}

.service-image img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.5s;

}

.service-card:hover img{

    transform:scale(1.08);

}

.service-content{

    padding:60px 28px 35px;

    text-align:center;

    display:flex;

    flex-direction:column;

    flex:1;
    

}

.service-icon{

    position:absolute;

    left:50%;

    top:205px;          /* Adjust between 200px–210px if needed */

    transform:translateX(-50%);

    width:75px;

    height:75px;

    background:#0B2D5C;

    color:#FFC107;

    border-radius:50%;

    border:6px solid #fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    z-index:10;

    transition:.5s;

}

.service-icon{

    position:absolute;

    left:50%;

    top:200px;

    transform:translateX(-50%);

    z-index:100;

}

.service-card:hover .service-icon{

    background:#FFC107;

    color:#0B2D5C;

    transform:translateX(-50%) rotate(360deg);

}

.service-content h3{

    color:#0B2D5C;

    font-size:24px;

    margin-bottom:18px;

}

.service-content p{

    color:#666;

    line-height:30px;

    margin-bottom:30px;

    flex:1;

}

.service-content a{

    margin-top:auto;

    color:#FFC107;

    text-decoration:none;

    font-weight:600;

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:8px;

}

.service-content a i{

    margin-left:8px;

    transition:.3s;

}

.service-content a:hover i{

    transform:translateX(6px);

}

/*====================================
        BRANDS
=====================================*/

.brands{

    padding:80px 5%;

    background:#08285D;

    text-align:center;

    position:relative;

    overflow:hidden;

}


.brands-heading span{

    color:#FFC107;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.brands-heading h2{

    color:#fff;

    font-size:40px;

    margin-top:20px;

    margin-bottom:75px;

}

.brand-slider{

    overflow:hidden;

    width:100%;

    margin-top:50px;

}

.brand-track{

    display:flex;

    gap:35px;

    width:max-content;

    animation:scrollBrands 25s linear infinite;

}

.brand-card{

    width:150px;

    height:75px;

    background:#fff;

    border-radius:8px;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

}

.brand-card img{

    width:100%;

    height:85px;

    object-fit:contain;

}

@keyframes scrollBrands{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}




/*====================================================
                INDUSTRIES
====================================================*/

.industries{

    padding:100px 8%;

    background:#ffffff;

}

.industry-container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;

}

.industry-card{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    height:320px;

    cursor:pointer;

}

.industry-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.industry-overlay{

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    padding:25px;

    background:linear-gradient(

        transparent,

        rgba(0,0,0,.9)

    );

}

.industry-overlay h3{

    color:#fff;

    font-size:26px;

}

.industry-card:hover img{

    transform:scale(1.08);

}

.industry-card:hover{

    box-shadow:0 18px 45px rgba(0,0,0,.18);

}


/*====================================
          MAIN FOOTER
====================================*/

.main-footer{

    background:#071d3a;

    padding:70px 8% 25px;

    color:white;

}

.footer-container{

    display:grid;

    grid-template-columns:
    1.4fr
    1fr
    1.2fr
    1.3fr
    1.2fr;

    gap:40px;

}



.footer-column p{

    color:#d7d7d7;

    line-height:1.8;

    font-size:15px;

}

.footer-column h3{

    margin-bottom:22px;

    font-size:22px;

}

.footer-column ul{

    list-style:none;

}

.footer-column ul li{

    margin-bottom:14px;

}

.footer-column ul li a{

    color:#d7d7d7;

    text-decoration:none;

    transition:.3s;

}

.footer-column ul li a:hover{

    color:#f4ae19;

    padding-left:6px;

}

/* Social Icons */

.footer-social{

    display:flex;

    gap:12px;

    margin-top:25px;

}

.footer-social a{

    width:42px;

    height:42px;

    background:#0e2c55;

    color:white;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.3s;

}

.footer-social a:hover{

    background:#f4ae19;

    color:#102947;

}

/* Contact */

.contact-list li{

    display:flex;

    gap:14px;

    align-items:flex-start;

    color:#d7d7d7;

}

.contact-list i{

    color:#f4ae19;

    margin-top:4px;

}

/* Form */

.footer-form{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.footer-form input{

    height:48px;

    border:none;

    outline:none;

    padding:0 15px;

    border-radius:5px;

}

.footer-form button{

    height:48px;

    border:none;

    background:#f4ae19;

    color:#102947;

    font-weight:700;

    cursor:pointer;

    border-radius:5px;

    transition:.3s;

}

.footer-form button:hover{

    background:white;

}

/*==============================
      FOOTER BRAND
==============================*/

.footer-brand{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:25px;

}

.footer-brand img{
    position: relative;

    right: 8%;

    width:120px;

    height:120px;

    object-fit:contain;

}

.brand-text{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.brand-text h2{
    position: relative;

    right: 25%;

    margin:0;

    color:#ffffff;

    font-size:38px;

    font-weight:900;

    letter-spacing:4px;

    line-height:1;

    text-transform:uppercase;

}

.brand-text p{
    position: relative;

    right:24%;

    margin:6px 0 0;

    color:#f4ae19;

    font-size:11px;

    font-weight:400;

    letter-spacing:2px;

    text-transform:uppercase;

}


/*====================================
        FOOTER BOTTOM
====================================*/

.footer-bottom{

    width:100%;

    background:#05152d;

    padding:18px 8%;

}

.footer-bottom-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.copyright{

    color:#d8d8d8;

    font-size:14px;

}

.footer-policy{

    display:flex;

    align-items:center;

    gap:15px;

}

.footer-policy a{

    color:#d8d8d8;

    text-decoration:none;

    transition:.3s;

}

.footer-policy a:hover{

    color:#f4ae19;

}

.footer-policy span{

    color:#777;

}


/* =========================================================
   TOP BAR - MOBILE VIEW 300px TO 500px
========================================================= */

@media screen and (min-width: 300px) and (max-width: 500px) {

    .top-bar {
        position: relative !important;

        width: 100% !important;
        max-width: 100% !important;

        height: 38px !important;
        min-height: 38px !important;

        padding: 0 8px !important;

        display: flex !important;
        flex-direction: row !important;

        align-items: center !important;

        box-sizing: border-box !important;

        overflow: hidden !important;
    }


    /* =========================================
       LEFT - PHONE + EMAIL
    ========================================= */

    .top-left {
        width: calc(100% - 75px) !important;

        display: flex !important;
        flex-direction: row !important;

        align-items: center !important;

        justify-content: flex-start !important;

        gap: 7px !important;

        margin: 0 !important;
        padding: 0 !important;

        overflow: hidden !important;

        white-space: nowrap !important;
    }


    .top-left span {
        display: flex !important;

        align-items: center !important;

        gap: 3px !important;

        font-size: 7px !important;

        line-height: 10px !important;

        white-space: nowrap !important;

        flex-shrink: 1 !important;
    }


    .top-left i {
        font-size: 8px !important;

        flex-shrink: 0 !important;
    }


    /* =========================================
       RIGHT - SOCIAL ICONS
    ========================================= */

    .top-right {
        position: absolute !important;

        right: 8px !important;
        top: 0 !important;

        width: 65px !important;
        height: 38px !important;

        display: flex !important;

        flex-direction: row !important;

        align-items: center !important;

        justify-content: flex-end !important;

        gap: 9px !important;

        margin: 0 !important;
        padding: 0 !important;

        box-sizing: border-box !important;

        z-index: 10 !important;
    }


    .top-right i {
        display: block !important;

        font-size: 10px !important;

        flex-shrink: 0 !important;
    }

}


/* =========================================================
   SMALL PHONES - 300px TO 360px
========================================================= */

@media screen and (min-width: 300px) and (max-width: 360px) {

    .top-bar {
        height: 36px !important;
        min-height: 36px !important;

        padding: 0 6px !important;
    }


    .top-left {
        width: calc(100% - 65px) !important;

        gap: 5px !important;
    }


    .top-left span {
        font-size: 6px !important;
    }


    .top-left i {
        font-size: 7px !important;
    }


    .top-right {
        right: 6px !important;

        width: 58px !important;
        height: 36px !important;

        gap: 7px !important;
    }


    .top-right i {
        font-size: 9px !important;
    }

}

/* =========================================================
   MOBILE NAVBAR
   300px - 500px
========================================================= */

@media screen and (min-width: 300px) and (max-width: 500px) {
 header,
    header.sticky {

        position: relative;

        top: 0;
        left: 0;

        width: 100%;

        height: 72px;

        padding: 0 14px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        background: #ffffff;

        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);

        z-index: 1000;
    }


    /* =====================================================
       LOGO
       ===================================================== */

    .logo {

        position: static !important;

        display: flex;

        align-items: center;

        gap: 7px;

        height: 72px;

        flex-shrink: 0;
    }


    /* LOGO IMAGE */

    .logo img {

        position: static !important;

        left: auto !important;

        top: auto !important;

        width: 50px;

        height: 50px;

        object-fit: contain;

        margin: 0 !important;

        padding: 0 !important;

        transform: none !important;
    }


    /* COMPANY NAME */

    .logo h2 {

        position: static !important;
        

        left: auto !important;

        top: auto !important;

        bottom: auto !important;

        margin: 0 !important;

        padding: 0 !important;

        color: #0b1d39;

        font-size: 22px;

        line-height: 20px;

        font-weight: 900;

        letter-spacing: 3px;

        white-space: nowrap;
    }


    /* ELECTRICAL SERVICES */

    .logo1 {

        position: static !important;

        display: block;

        color: #0b1d39;

        font-size: 8px;

        line-height: 10px;

        font-weight: 500;

        letter-spacing: 0;

        white-space: nowrap;
    }


    /* =====================================================
       DESKTOP NAV
       ===================================================== */

    nav#mobileNav {

        position: absolute;

        top: 72px;

        right: -230px;

        width: 220px;

        background: #ffffff;

        box-shadow: -5px 8px 20px rgba(0, 0, 0, 0.20);

        display: block;

        z-index: 2500;

        transition: right 0.4s ease;
    }


    /* =====================================================
       NAV OPEN
       ===================================================== */

    nav#mobileNav.mobile-active {

        right: 0;
    }


    /* =====================================================
       NAV UL
       ===================================================== */

    nav#mobileNav ul {

        display: flex;

        flex-direction: column;

        width: 100%;

        margin: 0;

        padding: 8px 0;

        gap: 0;

        list-style: none;
    }


    /* =====================================================
       NAV LI
       ===================================================== */

    nav#mobileNav ul li {

        width: 100%;

        margin: 0;

        padding: 0;

        position: relative;
    }


    /* =====================================================
       NAV LINKS
       ===================================================== */

    nav#mobileNav ul li a {

        display: block;

        width: 100%;

        padding: 15px 20px;

        color: #0b1d39;

        background: #ffffff;

        font-size: 16px;

        font-weight: 500;

        line-height: 1.2;

        text-decoration: none;

        transition: 0.3s;
    }


    /* HOVER */

    nav#mobileNav ul li a:hover {

        background: #f7f7f7;

        color: #f4c542;
    }


    /* ACTIVE */

    nav#mobileNav ul li a.active {

        color: #f4c542;

        background: #fafafa;
    }


    /* REMOVE DESKTOP UNDERLINES */

    nav#mobileNav ul li::after {

        display: none !important;

        content: none;
    }


    nav#mobileNav ul li a.active::after {

        display: none !important;

        content: none;
    }


    /* =====================================================
       HAMBURGER BUTTON
       ===================================================== */

    .menu-button {

        display: flex !important;

        flex-direction: column;

        justify-content: center;

        align-items: center;

        gap: 5px;

        width: 40px;

        height: 40px;

        padding: 0;

        margin: 0;

        background: #ffffff;

        border: 1px solid #222222;

        border-radius: 3px;

        cursor: pointer;

        flex-shrink: 0;

        z-index: 3000;
    }


    /* HAMBURGER LINES */

    .menu-button span {

        display: block;

        width: 24px;

        height: 3px;

        background: #111111;

        border-radius: 2px;

        transition: all 0.3s ease;
    }


    /* =====================================================
       HAMBURGER → X
       ===================================================== */

    .menu-button.active span:nth-child(1) {

        transform: translateY(8px) rotate(45deg);
    }


    .menu-button.active span:nth-child(2) {

        opacity: 0;
    }


    .menu-button.active span:nth-child(3) {

        transform: translateY(-8px) rotate(-45deg);
    }

}




/* =========================================================
   SERVICES HERO - MOBILE
   300px - 500px
========================================================= */

@media screen and (min-width: 300px) and (max-width: 500px) {

    .service-hero {

        position: relative;

        width: 100%;

        height: 250px;

        overflow: hidden;

       
    }


    /* =====================================================
       HERO IMAGE
    ===================================================== */

    .service-hero .hero-image {

        position: absolute;

        top: 0;
        left: 0;

        width: 100%;
        height: 100%;

        object-fit: cover;

        object-position: 15% center;

        z-index: 1;
    }


    /* =====================================================
       DARK OVERLAY
    ===================================================== */

    .service-hero .hero-overlay {

        position: absolute;

        top: 0;
        left: 0;

        width: 100%;
        height: 100%;

        background: rgba(5, 22, 50, 0.78);

        z-index: 2;
    }


    /* =====================================================
       HERO CONTENT
    ===================================================== */

    .service-hero .hero-content {

        position: relative;

        z-index: 3;

        width: 100%;

       
        padding: 30px 22px;

        box-sizing: border-box;

        text-align: center;
    }


    /* =====================================================
       SUBTITLE
    ===================================================== */

    .service-hero .hero-subtitle {

        position: relative;

        bottom: 30px;
        left: 20px;

        display: block;

        margin-bottom: 18px;

        color: #ffbd00;

        font-size: 12px;

        font-weight: 800;

        letter-spacing: 2px;

        text-transform: uppercase;
    }


    /* =====================================================
       MAIN HEADING
    ===================================================== */

    .service-hero .hero-content h1 {
         position: relative;

        bottom: 30px;
        left: -5%;

        text-align: justify;

        color: #ffffff;

        font-size: 20px;

        line-height: 1.25;

        font-weight: 700;

        letter-spacing: -0.5px;
    }


    /* YELLOW TEXT */

    .service-hero .hero-content h1 span {

        display: inline;

        color: #ffbd00;
    }


    /* =====================================================
       DESCRIPTION
    ===================================================== */

    .service-hero .hero-content p {

         position: relative;

        bottom: 35px;
        left: 5px;
        margin: 25px auto 0;

        max-width: 400px;

        color: #ffffff;

        font-size: 10px;

        line-height: 1.7;

        font-weight: 400;
    }


    /* STRONG TEXT */

    .service-hero .hero-content p strong {

        color: #ffbd00;

        font-weight: 700;
    }

}


/* =========================================================
   OUR SERVICES - MOBILE VIEW
   300px - 500px
========================================================= */

@media screen and (min-width: 300px) and (max-width: 500px) {

    /* =====================================================
       MAIN SERVICES SECTION
    ===================================================== */

    .services {

        width: 100%;

        padding: 50px 15px 60px;

        box-sizing: border-box;

        overflow: hidden;
    }


    /* =====================================================
       SERVICES HEADING
    ===================================================== */

    .service-heading {

        width: 100%;

        text-align: center;

        margin: 0 auto 35px;

        padding: 0;
    }


    /* WHAT WE DO */

    .service-heading span {

        display: block;

        margin-bottom: 10px;

        color: #ffb800;

        font-size: 13px;

        font-weight: 700;

        letter-spacing: 3px;

        line-height: 1.3;
    }


    /* MAIN HEADING */

    .service-heading h2 {

        margin: 0;

        color: #0b2d5c;

        font-size: 30px;

        font-weight: 800;

        line-height: 1.2;

        text-align: center;
    }


    /* YELLOW LINE */

    .service-heading .heading-line {

        width: 65px;

        height: 4px;

        margin: 16px auto;

        background: #ffb800;

        border-radius: 5px;
    }


    /* DESCRIPTION */

    .service-heading p {

        width: 100%;

        max-width: 450px;

        margin: 0 auto;

        color: #555;

        font-size: 14px;

        line-height: 1.6;

        text-align: center;
    }


    /* =====================================================
       SERVICE CARDS
       2 CARDS PER ROW
    ===================================================== */

    .service-container {

        width: 100%;

        display: grid;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 20px 14px;

        margin: 0;

        padding: 0;
    }


    /* =====================================================
       INDIVIDUAL CARD
    ===================================================== */

    .service-card {

        width: 100%;

        min-width: 0;

        position: relative;

        margin: 0;

        padding: 0;

        background: #ffffff;

        border-radius: 14px;

        overflow: hidden;

        box-sizing: border-box;

        box-shadow: 0 5px 18px rgba(0, 0, 0, 0.10);
    }


    /* =====================================================
       CARD IMAGE
    ===================================================== */

    .service-image {

        width: 100%;

        height: 135px;

        overflow: hidden;
    }


    .service-image img {

        display: block;

        width: 100%;

        height: 100%;

        object-fit: cover;
    }


    /* =====================================================
       CARD CONTENT
    ===================================================== */

    .service-content {

        width: 100%;

        padding: 28px 10px 15px;

        box-sizing: border-box;

        text-align: center;
    }


    /* CARD TITLE */

    .service-content h3 {

        margin: 0 0 8px;

        color: #0b2d5c;

        font-size: 15px;

        font-weight: 700;

        line-height: 1.3;
    }


    /* CARD DESCRIPTION */

    .service-content p {

        margin: 0 0 12px;

        color: #666;

        font-size: 12px;

        line-height: 1.5;
    }


    /* =====================================================
       VIEW DETAILS
    ===================================================== */

    .service-content a {

        display: inline-flex;

        align-items: center;

        justify-content: center;

        gap: 5px;

        color: #0b2d5c;

        font-size: 12px;

        font-weight: 700;

        text-decoration: none;
    }


    .service-content a i {

        font-size: 10px;
    }


    /* =====================================================
       SERVICE ICON
    ===================================================== */

    .service-icon {

        position: absolute;

        top: 110px;

        left: 50%;

        transform: translateX(-50%);

        width: 45px;

        height: 45px;

        display: flex;

        align-items: center;

        justify-content: center;

        border-radius: 50%;

        background: #0b2d5c;

        border: 4px solid #ffffff;

        color: #ffb800;

        font-size: 18px;

        z-index: 5;

        box-sizing: border-box;
    }

}



/* =========================================================
   BRANDS SECTION
   MOBILE VIEW - 300px to 500px
========================================================= */

@media screen and (min-width: 300px) and (max-width: 500px) {

    /* =====================================================
       MAIN BRANDS SECTION
    ===================================================== */

    .brands {

        width: 100%;

        padding: 50px 15px 55px;

        box-sizing: border-box;

        background: #0b2d5c;

        overflow: hidden;
    }


    /* =====================================================
       HEADING
    ===================================================== */

    .brands-heading {

        width: 100%;

        text-align: center;

        margin: 0 auto 35px;

        padding: 0;
    }


    /* SMALL HEADING */

    .brands-heading span {

        display: block;

        margin-bottom: 10px;

        color: #ffb800;

        font-size: 13px;

        font-weight: 700;

        letter-spacing: 2.5px;

        line-height: 1.3;
    }


    /* MAIN HEADING */

    .brands-heading h2 {

        margin: 0;

        color: #ffffff;

        font-size: 30px;

        font-weight: 800;

        line-height: 1.2;

        text-align: center;
    }


    /* =====================================================
       BRAND SLIDER CONTAINER
    ===================================================== */

    .brand-slider {

        width: 100%;

        overflow: hidden;

        margin: 0;

        padding: 0;
    }


    /* =====================================================
       BRAND TRACK
       Disable desktop animation on mobile
    ===================================================== */

    .brand-track {

        width: 100%;

        display: grid;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 16px;

        transform: none !important;

        animation: none !important;

        margin: 0;

        padding: 0;
    }


    /* =====================================================
       BRAND CARD
    ===================================================== */

    .brand-card {

        width: 100%;

        height: 85px;

        min-width: 0;

        display: flex;

        align-items: center;

        justify-content: center;

        box-sizing: border-box;

        background: #ffffff;

        border-radius: 10px;

        padding: 10px;

        overflow: hidden;

        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }


    /* =====================================================
       BRAND IMAGE
    ===================================================== */

    .brand-card img {

        display: block;

        width: 100%;

        height: 100%;

        max-width: 120px;

        max-height: 55px;

        object-fit: contain;
    }


    /* =====================================================
       HIDE DUPLICATE CARDS ON MOBILE
       First 10 are the original brands.
       Remaining cards are duplicates.
    ===================================================== */

    .brand-card:nth-child(n + 11) {

        display: none;
    }

}


/* =========================================================
   INDUSTRIES SECTION - MOBILE
   300px - 500px
========================================================= */

@media screen and (min-width: 300px) and (max-width: 500px) {

    /* SECTION */

    .industries {
        width: 100%;
        padding: 55px 15px 65px;
        box-sizing: border-box;
        background: #ffffff;
    }


    /* =====================================================
       HEADING
    ===================================================== */

    .industries .service-heading {
        width: 100%;
        margin: 0 auto 40px;
        text-align: center;
    }


    /* OUR EXPERTISE */

    .industries .service-heading span {
        display: block;

        font-size: 13px;
        font-weight: 700;

        letter-spacing: 3px;

        color: #f5b400;

        margin-bottom: 12px;
    }


    /* MAIN HEADING */

    .industries .service-heading h2 {
        margin: 0;

        font-size: 32px;
        line-height: 1.2;

        font-weight: 800;

        color: #0b2d63;
    }


    /* YELLOW LINE */

    .industries .heading-line {
        width: 65px;
        height: 4px;

        margin: 18px auto;

        background: #f5b400;
    }


    /* DESCRIPTION */

    .industries .service-heading p {
        width: 100%;

        margin: 0 auto;

        padding: 0 5px;

        box-sizing: border-box;

        font-size: 15px;
        line-height: 1.6;

        color: #555;

        text-align: center;
    }


    /* =====================================================
       INDUSTRY CARDS
       1 CARD PER ROW
    ===================================================== */

    .industry-container {
        width: 100%;

        display: grid;

        grid-template-columns: 1fr;

        gap: 22px;

        margin: 0 auto;
    }


    /* =====================================================
       CARD
    ===================================================== */

    .industry-card {
        position: relative;

        width: 100%;

        height: 260px;

        overflow: hidden;

        border-radius: 16px;

        background: #0b2d63;

        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }


    /* =====================================================
       IMAGE
    ===================================================== */

    .industry-card img {
        width: 100%;
        height: 100%;

        display: block;

        object-fit: cover;
    }


    /* =====================================================
       OVERLAY
    ===================================================== */

    .industry-overlay {
        position: absolute;

        left: 0;
        bottom: 0;

        width: 100%;

        min-height: 45%;

        padding: 60px 20px 20px;

        box-sizing: border-box;

        display: flex;

        align-items: flex-end;

        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.35),
            transparent
        );
    }


    /* =====================================================
       CARD TITLE
    ===================================================== */

    .industry-overlay h3 {
        margin: 0;

        color: #ffffff;

        font-size: 23px;

        line-height: 1.2;

        font-weight: 700;
    }

}


/* =========================================================
   FOOTER - MOBILE VIEW 300px TO 500px
========================================================= */

@media screen and (min-width: 300px) and (max-width: 500px) {

    .main-footer {
        width: 100%;
        padding: 30px 30px;
        box-sizing: border-box;
    }

    .footer-container {
        width: 100%;
        max-width: 390px;
        margin: 0 auto;

        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px 25px;

        box-sizing: border-box;
    }


    /* =========================================
       ALL FOOTER COLUMNS
    ========================================= */

    .footer-column {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }


    /* =========================================
       COMPANY INFORMATION
    ========================================= */

    .footer-column:first-child {
        text-align: left;
    }

    .footer-brand {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 15px;
    }

    .footer-brand img {
        width: 38px;
        height: 50px;
    }

    .brand-text h2 {
        font-size: 22px;
        line-height: 20px;
        margin: 0;
    }

    .brand-text p {
        font-size: 7px;
        margin: 3px 0 0;
    }

    .footer-column:first-child > p {
        font-size: 12px;
        line-height: 18px;
        margin: 0;
        max-width: 180px;
    }


    /* =========================================
       SOCIAL ICONS
    ========================================= */

    .footer-social {
        display: flex;
        align-items: center;
        gap: 9px;
        margin-top: 15px;
    }

    .footer-social a {
        width: 30px;
        height: 30px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 50%;
    }

    .footer-social i {
        font-size: 13px;
    }


    /* =========================================
       HEADINGS
    ========================================= */

    .footer-column h3 {

        position: relative;
        font-size: 22px;
        line-height: 20px;

        margin: 0 0 15px 0;

        white-space: nowrap;
        top: 10px;
        left: 10px;
    }


    /* =========================================
       QUICK LINKS
    ========================================= */

    .footer-column:nth-child(2) ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .footer-column:nth-child(2) li {
        margin-bottom: 10px;
    }

    .footer-column:nth-child(2) a {
        position: relative;
        font-size: 15px;
        text-decoration: none;
        top: 10px;
        left: 50px;
    }


    /* =========================================
       OUR SERVICES
    ========================================= */

    .footer-column:nth-child(3) {
        grid-column: 1;
    }

    .footer-column:nth-child(3) ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .footer-column:nth-child(3) li {
        margin-bottom: 10px;
    }

    .footer-column:nth-child(3) a {
        position: relative;
        font-size: 12px;
        line-height: 17px;
        text-decoration: none;
        top: 10px;
        left: 18px;
    }


    /* =========================================
       CONTACT INFO
    ========================================= */

    .footer-column:nth-child(4) {
        grid-column: 2;
    }

    .contact-list {
        position: relative;
        margin: 0;
        padding: 0;
        list-style: none;
        margin-top: 35px;
        left: 10px;
    }

    .contact-list li {
        display: flex;
        align-items: flex-start;

        gap: 8px;

        font-size: 11px;
        line-height: 17px;

        margin-bottom: 12px;
        
    }

    .contact-list i {
        min-width: 15px;
        font-size: 12px;
        margin-top: 2px;
    }


    /* =========================================
       GET A FREE QUOTE
       5TH COLUMN - CENTER
    ========================================= */

    .footer-column:nth-child(5) {
        grid-column: 1 / 3;

        width: 100%;
        max-width: 280px;

        justify-self: center;

        text-align: center;

        margin-top: 5px;
    }

    .footer-column:nth-child(5) h3 {
        text-align: center;
        font-size: 17px;
        margin-bottom: 15px;
    }


    /* =========================================
       QUOTE FORM
    ========================================= */

    .footer-form {
        width: 100%;
    }

    .footer-form input {
        width: 100%;
        height: 42px;

        margin-bottom: 10px;

        padding: 0 12px;

        box-sizing: border-box;

        font-size: 12px;
    }

    .footer-form button {
        width: 100%;
        height: 44px;

        font-size: 13px;
        font-weight: 700;

        border: none;
        border-radius: 5px;
    }

}


/* =========================================================
   SMALL PHONES 300px - 360px
========================================================= */

@media screen and (min-width: 300px) and (max-width: 360px) {

    .main-footer {
        padding: 25px 15px;
    }

    .footer-container {
        gap: 27px 18px;
    }

    .footer-column:first-child > p {
        font-size: 11px;
        line-height: 16px;
    }

    .footer-column h3 {
        font-size: 15px;
    }

    .footer-column:nth-child(2) a,
    .footer-column:nth-child(3) a {
        font-size: 11px;
    }

    .contact-list li {
        font-size: 10px;
        line-height: 15px;
    }

}


/* =========================================================
   361px - 500px
========================================================= */

@media screen and (min-width: 361px) and (max-width: 500px) {

    .footer-container {
        max-width: 420px;
        gap: 32px 28px;
    }

    .footer-column:first-child > p {
        font-size: 13px;
        line-height: 19px;
    }

    .footer-column:nth-child(2) a,
    .footer-column:nth-child(3) a {
        font-size: 13px;
    }

    .contact-list li {
        font-size: 12px;
        line-height: 18px;
    }

}


/* =========================================================
   FOOTER BOTTOM - MOBILE VIEW
========================================================= */

@media screen and (min-width: 300px) and (max-width: 500px) {

    .footer-bottom {
        width: 100%;
        padding: 15px 10px;
        box-sizing: border-box;
    }

    .footer-bottom-container {
        width: 100%;

        display: flex;
        flex-direction: column;

        align-items: center;
        justify-content: center;

        gap: 10px;

        text-align: center;
    }

    /* Copyright */

    .copyright {
        width: 100%;

        font-size: 11px;
        line-height: 16px;

        text-align: center;
    }

    /* Privacy + Terms */

    .footer-policy {
        width: 100%;

        display: flex;

        align-items: center;
        justify-content: center;

        gap: 10px;

        font-size: 11px;
        line-height: 16px;

        text-align: center;
    }

    .footer-policy a {
        font-size: 11px;

        text-decoration: none;

        white-space: nowrap;
    }

    .footer-policy span {
        font-size: 11px;
    }
}



/* =========================================================
   SERVICES PAGE RESPONSIVE
   800px - 1080px
========================================================= */

@media screen and (min-width: 800px) and (max-width: 1080px) {

    /* =====================================================
       GLOBAL
    ===================================================== */

    * {
        box-sizing: border-box;
    }

    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }


    /* =====================================================
       TOP BAR
    ===================================================== */

    .top-bar {
        position: fixed !important;

        top: 0;
        left: 0;

        width: 100%;
        height: 40px;

        padding: 0 25px !important;

        display: flex;
        align-items: center;
        justify-content: space-between;

        z-index: 1001;

        transition:
            transform .4s ease,
            opacity .4s ease;
    }

    .top-left {
        display: flex;

        align-items: center;

        gap: 18px;

        font-size: 12px;
    }

    .top-left span {
        display: flex;

        align-items: center;

        gap: 6px;

        white-space: nowrap;
    }

    .top-right {
        display: flex;

        align-items: center;

        gap: 14px;

        font-size: 13px;
    }

    .top-bar.hide-topbar {
        transform: translateY(-100%);
        opacity: 0;

        pointer-events: none;
    }


    /* =====================================================
       NAVBAR
    ===================================================== */

    header,
    header.sticky {
        position: fixed !important;

        left: 0;

        width: 100%;

        height: 65px;

        padding: 0 25px !important;

        display: flex;

        align-items: center;

        justify-content: space-between;

        background: #fff;

        z-index: 1000;

        transition:
            top .4s ease,
            box-shadow .4s ease;
    }

    header {
        top: 40px;
    }

    header.sticky {
        top: 0;

        box-shadow:
            0 8px 20px rgba(0,0,0,.15);
    }


    /* =====================================================
       LOGO
    ===================================================== */

    .logo {
        position: static !important;

        display: flex !important;

        align-items: center;

        gap: 8px;

        height: 76px;

        flex-shrink: 0;
    }

    .logo img {
        position: static !important;

        left: auto !important;
        top: auto !important;

        width: 58px !important;
        height: 58px !important;

        object-fit: contain;

        margin: 0 !important;

        padding: 0 !important;

        transform: none !important;
    }

    .logo h2 {
        position: static !important;

        left: auto !important;
        top: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        font-size: 25px !important;

        line-height: 23px;

        letter-spacing: 3px;

        white-space: nowrap;
    }

    .logo1 {
        position: static !important;

        display: block;

        font-size: 10px !important;

        line-height: 13px;

        letter-spacing: 0;

        white-space: nowrap;
    }


    /* =====================================================
       NAVIGATION
       NO HAMBURGER
    ===================================================== */

    nav#mobileNav {
        position: static !important;

        display: block !important;

        width: auto !important;

        margin-left: auto;

        background: transparent !important;

        box-shadow: none !important;

        transition: none !important;
    }

    nav#mobileNav ul {
        display: flex !important;

        flex-direction: row !important;

        align-items: center;

        justify-content: flex-end;

        gap: 17px !important;

        margin: 0 !important;

        padding: 0 !important;

        list-style: none;
    }

    nav#mobileNav ul li {
        width: auto !important;

        margin: 0 !important;

        padding: 0 !important;
    }

    nav#mobileNav ul li a {
        display: inline-block;

        padding: 7px 0 !important;

        font-size: 13px !important;

        line-height: 1.2;

        white-space: nowrap;

        color: #000;

        background: transparent !important;
    }

    nav#mobileNav ul li a:hover {
        color: #f4c542;
    }

    nav#mobileNav ul li a.active {
        color: #f4c542;
    }

    nav#mobileNav ul li::after {
        bottom: -3px;

        height: 2px;
    }

    .menu-button {
        display: none !important;

        visibility: hidden !important;

        pointer-events: none !important;
    }


    /* =====================================================
       SERVICE HERO
    ===================================================== */

    .service-hero {
        position: relative;

        width: 100%;

        height: 430px;

        min-height: 430px;

        overflow: hidden;

        margin: 0;

        padding: 0;
    }

    .service-hero .hero-image {
        position: absolute;

        inset: 0;

        width: 100%;

        height: 100%;

        object-fit: cover;

        object-position: center;
    }

    .service-hero .hero-overlay {
        position: absolute;

        inset: 0;

        width: 100%;

        height: 100%;

        background: rgba(5, 24, 55, .58);

        z-index: 1;
    }

    .service-hero .hero-content {
        position: relative;

        z-index: 2;

        width: 100%;

        height: 100%;

        padding: 0 7%;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        text-align: left;
    }

    .hero-subtitle {
        font-size: 14px !important;

        line-height: 1.4;

        letter-spacing: 1.5px;

        margin-bottom: 12px;
    }

    .service-hero .hero-content h1 {
        width: 100%;

        max-width: 650px;

        font-size: 35px !important;

        line-height: 1.15 !important;

        margin: 0 0 18px !important;
    }

    .service-hero .hero-content h1 span {
        display: block;
    }

    .service-hero .hero-content p {
        width: 100%;

        max-width: 600px;

        font-size: 14px !important;

        line-height: 1.7;

        margin: 0;
    }


    /* =====================================================
       OUR SERVICES SECTION
    ===================================================== */

    .services {
        width: 100%;

        padding: 80px 7% !important;

        overflow: hidden;
    }

    .service-heading {
        width: 100%;

        max-width: 750px;

        margin: 0 auto 45px;

        text-align: center;
    }

    .service-heading > span {
        font-size: 13px !important;

        letter-spacing: 1.5px;

        line-height: 1.4;
    }

    .service-heading h2 {
        font-size: 36px !important;

        line-height: 1.25 !important;

        margin: 10px 0 12px !important;
    }

    .service-heading .heading-line {
        width: 50px;

        height: 3px;

        margin: 0 auto 15px;
    }

    .service-heading p {
        width: 100%;

        max-width: 650px;

        margin: 0 auto;

        font-size: 13px !important;

        line-height: 1.7;
    }


    /* =====================================================
       SERVICE CARDS
       2 COLUMNS
    ===================================================== */

    .service-container {
        width: 100%;

        display: grid !important;

        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        gap: 28px !important;

        align-items: stretch;
    }

    .service-card {
        width: 100% !important;

        min-width: 0 !important;

        position: relative;

        overflow: hidden;

        border-radius: 12px;
    }

    .service-image {
        width: 100%;

        height: 220px !important;

        overflow: hidden;
    }

    .service-image img {
        width: 100%;

        height: 100%;

        object-fit: cover;

        display: block;
    }

    .service-content {
        width: 100%;

        padding: 22px !important;
    }

    .service-content h3 {
        font-size: 20px !important;

        line-height: 1.3;

        margin: 0 0 10px;
    }

    .service-content p {
        font-size: 12px !important;

        line-height: 1.65;

        margin: 0 0 15px;
    }

    .service-content a {
        font-size: 12px !important;

        line-height: 1.4;
    }

    .service-icon {
        width: 48px !important;

        height: 48px !important;

        display: flex;

        align-items: center;

        justify-content: center;

        font-size: 18px !important;
    }


    /* =====================================================
       TRUSTED BRANDS
    ===================================================== */

    .brands {
        width: 100%;

        padding: 75px 0 !important;

        overflow: hidden;
    }

    .brands-heading {
        width: 100%;

        padding: 0 7%;

        text-align: center;

        margin-bottom: 35px;
    }

    .brands-heading span {
        font-size: 13px !important;

        letter-spacing: 1.5px;
    }

    .brands-heading h2 {
        font-size: 35px !important;

        line-height: 1.25 !important;

        margin: 10px 0 0 !important;
    }

    .brand-slider {
        width: 100%;

        overflow: hidden;
    }

    .brand-track {
        display: flex !important;

        align-items: center;

        gap: 20px !important;

        width: max-content;
    }

    .brand-card {
        width: 160px !important;

        height: 100px !important;

        flex: 0 0 160px !important;

        display: flex;

        align-items: center;

        justify-content: center;

        padding: 15px !important;
    }

    .brand-card img {
        width: 100%;

        height: 100%;

        max-width: 120px;

        max-height: 70px;

        object-fit: contain;
    }


    /* =====================================================
       INDUSTRIES
    ===================================================== */

    .industries {
        width: 100%;

        padding: 80px 7% !important;

        overflow: hidden;
    }

    .industries .service-heading {
        margin-bottom: 45px;
    }

    .industries .service-heading h2 {
        font-size: 36px !important;

        line-height: 1.25 !important;
    }

    .industries .service-heading p {
        max-width: 650px;

        font-size: 13px !important;

        line-height: 1.7;
    }


    /* =====================================================
       INDUSTRY CARDS
       2 COLUMNS
    ===================================================== */

    .industry-container {
        width: 100%;

        display: grid !important;

        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        gap: 25px !important;
    }

    .industry-card {
        width: 100% !important;

        min-width: 0 !important;

        height: 230px !important;

        position: relative;

        overflow: hidden;

        border-radius: 12px;
    }

    .industry-card img {
        width: 100%;

        height: 100%;

        object-fit: cover;

        display: block;
    }

    .industry-overlay {
        position: absolute;

        left: 0;

        right: 0;

        bottom: 0;

        padding: 18px !important;

        min-height: 75px;

        display: flex;

        align-items: flex-end;
    }

    .industry-overlay h3 {
        font-size: 18px !important;

        line-height: 1.3;

        margin: 0;
    }


   /* =====================================================
   FOOTER - 800px TO 1080px
===================================================== */

.footer-container {
    width: 100% !important;

    padding: 10px 0% !important;

    display: grid !important;

    /* 6 equal columns */
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;

    column-gap: 25px !important;

    row-gap: 50px !important;

    align-items: start !important;

    overflow: visible !important;
}


/* =====================================================
   FIRST ROW - 3 COLUMNS
===================================================== */

/* COMPANY */

.footer-column:nth-child(1) {
    grid-column: 1 / 3 !important;

    grid-row: 1 !important;

    width: 100% !important;

    min-width: 0 !important;
}


/* QUICK LINKS */

.footer-column:nth-child(2) {
    grid-column: 3 / 5 !important;

    grid-row: 1 !important;

    width: 100% !important;

    min-width: 0 !important;
}


/* OUR SERVICES */

.footer-column:nth-child(3) {
    grid-column: 5 / 7 !important;

    grid-row: 1 !important;

    width: 100% !important;

    min-width: 0 !important;
}


/* =====================================================
   SECOND ROW
   EXACT CENTER
===================================================== */

/* CONTACT INFO */

.footer-column:nth-child(4) {
    grid-column: 2 / 4 !important;

    grid-row: 2 !important;

    width: 100% !important;

    min-width: 0 !important;

    justify-self: stretch !important;

    margin: 0 !important;
}


/* FREE QUOTE */

.footer-column:nth-child(5) {
    grid-column: 4 / 6 !important;

    grid-row: 2 !important;

    width: 100% !important;

    min-width: 0 !important;

    justify-self: stretch !important;

    margin: 0 !important;
}


/* =====================================================
   COMPANY BRAND
===================================================== */

.footer-brand {
    display: flex !important;

    align-items: center !important;

    gap: 8px !important;

    width: 100% !important;
}

.footer-brand img {
    width: 50px !important;

    height: 50px !important;

    flex-shrink: 0 !important;

    object-fit: contain !important;
}

.footer-brand .brand-text {
    min-width: 0 !important;
}

.footer-brand .brand-text h2 {
    font-size: 27px !important;

    line-height: 1 !important;

    letter-spacing: 3px !important;

    white-space: nowrap !important;

    margin: 0 !important;
}

.footer-brand .brand-text p {
    font-size: 8px !important;

    line-height: 1 !important;

    letter-spacing: 2px !important;

    white-space: nowrap !important;

    margin: 6px 0 0 !important;
}


/* =====================================================
   COMPANY DESCRIPTION
===================================================== */

.footer-column:nth-child(1) > p {
    width: 100% !important;

    max-width: 280px !important;

    margin: 28px 0 0 !important;

    font-size: 12px !important;

    line-height: 1.7 !important;
}


/* =====================================================
   HEADINGS
===================================================== */

.footer-column h3 {
    font-size: 20px !important;

    line-height: 1.3 !important;

    margin: 0 0 20px !important;
}


/* =====================================================
   LINKS
===================================================== */

.footer-column ul {
    position: relative;
    
    margin: 0 !important;

    padding: 0 !important;
}

.footer-column ul li {
    font-size: 14px !important;

    line-height: 1.6 !important;

    margin-bottom: 11px !important;
}


/* =====================================================
   CONTACT INFO
===================================================== */

.footer-column:nth-child(4) .contact-list li {
    display: flex !important;

    align-items: flex-start !important;

    gap: 8px !important;

    font-size: 13px !important;

    line-height: 1.6 !important;

    margin-bottom: 12px !important;
}


/* =====================================================
   SOCIAL ICONS
===================================================== */

.footer-social {
    display: flex !important;

    gap: 10px !important;

    margin-top: 25px !important;
}

.footer-social a {
    width: 38px !important;

    height: 38px !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;
}


/* =====================================================
   FREE QUOTE
===================================================== */

.footer-form {
    width: 100% !important;

    max-width: 260px !important;
}

.footer-form input {
    width: 100% !important;

    height: 42px !important;

    padding: 0 12px !important;

    margin-bottom: 12px !important;

    font-size: 12px !important;

    box-sizing: border-box !important;
}

.footer-form button {
    width: 100% !important;

    height: 42px !important;

    font-size: 12px !important;
}


   

    /* =====================================================
       FOOTER BOTTOM
    ===================================================== */

    .footer-bottom {
        width: 100%;

        padding: 18px 5% !important;
    }

    .footer-bottom-container {
        width: 100%;

        display: flex;

        align-items: center;

        justify-content: space-between;

        gap: 20px;
    }

    .copyright {
        font-size: 10px;
    }

    .footer-policy {
        display: flex;

        align-items: center;

        gap: 8px;

        font-size: 10px;
    }

}


/* =========================================================
   FINAL MOBILE NAV FIX
   300px - 1080px TOUCH DEVICES
   MENU MUST BE HIDDEN UNTIL ☰ IS CLICKED
========================================================= */

@media screen and (hover: none) and (pointer: coarse) and (max-width: 1080px) {

    /* =========================================
       NAV HIDDEN BY DEFAULT
       ========================================= */

    nav#mobileNav {
        position: fixed !important;

        top: 72px !important;
        right: -240px !important;
        left: auto !important;

        width: 220px !important;
        height: auto !important;

        display: block !important;

        margin: 0 !important;
        padding: 0 !important;

        background: #ffffff !important;

        box-shadow: -5px 8px 20px rgba(0,0,0,0.20) !important;

        z-index: 9999 !important;

        opacity: 0 !important;
        visibility: hidden !important;

        pointer-events: none !important;

        transform: translateX(0) !important;

        transition:
            right 0.35s ease,
            opacity 0.2s ease,
            visibility 0.2s ease !important;
    }


    /* =========================================
       ONLY SHOW AFTER ☰ IS CLICKED
       ========================================= */

    nav#mobileNav.mobile-active {
        position: fixed !important;

        top: 72px !important;
        right: 0 !important;
        left: auto !important;

        width: 220px !important;

        display: block !important;

        opacity: 1 !important;
        visibility: visible !important;

        pointer-events: auto !important;

        z-index: 9999 !important;
    }


    /* =========================================
       MENU LIST
       ========================================= */

    nav#mobileNav ul {
        display: flex !important;

        flex-direction: column !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 8px 0 !important;

        gap: 0 !important;

        list-style: none !important;
    }


    /* =========================================
       MENU ITEMS
       ========================================= */

    nav#mobileNav ul li {
        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        position: relative !important;
    }


    /* =========================================
       MENU LINKS
       ========================================= */

    nav#mobileNav ul li a {
        display: block !important;

        width: 100% !important;

        box-sizing: border-box !important;

        padding: 15px 20px !important;

        color: #0b1d39 !important;

        background: #ffffff !important;

        font-size: 16px !important;

        font-weight: 500 !important;

        line-height: 1.2 !important;

        text-decoration: none !important;

        white-space: nowrap !important;
    }


    /* =========================================
       ACTIVE LINK
       ========================================= */

    nav#mobileNav ul li a.active {
        color: #f4c542 !important;

        background: #fafafa !important;
    }


    /* =========================================
       REMOVE DESKTOP UNDERLINES
       ========================================= */

    nav#mobileNav ul li::after,
    nav#mobileNav ul li a::after,
    nav#mobileNav ul li a.active::after {
        display: none !important;

        content: none !important;
    }


    /* =========================================
       HAMBURGER
       ========================================= */

    .menu-button {
        display: flex !important;

        visibility: visible !important;

        opacity: 1 !important;

        pointer-events: auto !important;

        z-index: 10000 !important;
    }

}

/* =========================================================
   TABLET / DESKTOP VIEW
   800px - 1080px
   SHOW NAVIGATION HEADINGS
   HIDE HAMBURGER
========================================================= */

@media screen and (min-width: 800px) and (max-width: 1080px) {

    /* =========================================
       SHOW HOME / ABOUT / SERVICES / CONTACT
    ========================================= */

    nav#mobileNav {

        position: static !important;

        top: auto !important;
        right: auto !important;
        left: auto !important;

        width: auto !important;
        height: auto !important;

        display: block !important;

        margin-left: auto !important;
        padding: 0 !important;

        background: transparent !important;

        box-shadow: none !important;

        opacity: 1 !important;
        visibility: visible !important;

        pointer-events: auto !important;

        transform: none !important;

        transition: none !important;

        z-index: 1000 !important;
    }


    /* =========================================
       NAVIGATION ROW
    ========================================= */

    nav#mobileNav ul {

        display: flex !important;

        flex-direction: row !important;

        align-items: center !important;

        justify-content: flex-end !important;

        width: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        gap: 25px !important;

        list-style: none !important;
    }


    /* =========================================
       NAV ITEMS
    ========================================= */

    nav#mobileNav ul li {

        width: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        position: relative !important;
    }


    /* =========================================
       NAV LINKS
    ========================================= */

    nav#mobileNav ul li a {

        display: inline-block !important;

        width: auto !important;

        padding: 8px 0 !important;

        color: #000000 !important;

        background: transparent !important;

        font-size: 14px !important;

        font-weight: 500 !important;

        line-height: 1.2 !important;

        text-decoration: none !important;

        white-space: nowrap !important;
    }


    /* =========================================
       HOVER
    ========================================= */

    nav#mobileNav ul li a:hover {

        color: #f4c542 !important;

        background: transparent !important;
    }


    /* =========================================
       ACTIVE PAGE
    ========================================= */

    nav#mobileNav ul li a.active {

        color: #f4c542 !important;

        background: transparent !important;
    }


    /* =========================================
       HAMBURGER MUST NOT SHOW
    ========================================= */

    .menu-button {

        display: none !important;

        visibility: hidden !important;

        opacity: 0 !important;

        pointer-events: none !important;
    }

}



/* =========================================================
   FINAL FIX - REMOVE RIGHT SIDE SPACE WHEN ZOOMING OUT
========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Main sections */
.service-hero,
.services,
.brands,
.industries,
.main-footer,
.footer-bottom {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* Prevent images from making page wider */
img {
    max-width: 100%;
}

/* Prevent containers from exceeding screen */
.service-container,
.industry-container,
.footer-container,
.footer-bottom-container {
    max-width: 100%;
}
