/*==========================================
        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;
}



img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

:root{

    --primary:#0B2D5C;
    --secondary:#FFC107;
    --white:#ffffff;
    --text:#555;
    --heading:#102947;

}


/* ===========================
   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;

    font-size:14px;

    z-index:1001;

}



.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:absolute;

    top:45px;

    left:0;

    width:100%;

    padding:1px 80px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:white;

    z-index:100;

    transition:.4s;

}




 .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;

}


/* ===========================
   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%;

}

nav {
    margin-left: auto;
}

.menu-button {
    display: none;
}


/* ==========================
   ABOUT HERO
========================== */

.about-hero{
    position:relative;
    width:100%;
    height:700px;
    overflow:hidden;
}

.hero-bg{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Dark overlay only on left side */
.about-overlay{
    position:absolute;
    left:0;
    top:0;
    width:60%;
    height:100%;
    background:rgba(8,22,47,.82);
}

/* Content */
.about-content{
    position:absolute;
    top:58%;
    left:11%;
    transform:translateY(-50%);
    color:#fff;
    width:500px;
    z-index:5;
}

.breadcrumb{
    font-size:18px;
    margin-bottom:20px;
}

.breadcrumb a{
    color:#fff;
    text-decoration:none;

}

.breadcrumb span{
    color:#FFC107;
    margin:0 12px;
}

.breadcrumb strong{
    color:#FFC107;

    animation: fadeRight 2s ease;
}

.about-content h1{
    font-size:72px;
    font-weight:800;
    margin-bottom:25px;

    animation: fadeLeft 2s ease;
}

.line{
    width:90px;
    height:5px;
    background:#FFC107;
    margin-bottom:35px;

    animation: fadeLeft 7s ease;
}

.about-content p:last-child{
    font-size:26px;
    line-height:46px;
    color:#fff;

    animation: fadeRight 2s ease;
}




/*---part2--*/

/*==========================================
        ABOUT COMPANY
==========================================*/

.about-company{

    width:100%;
    padding:100px 8%;
    background:#ffffff;

}

.company-container{

    max-width:1400px;
    margin:auto;

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

}


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

.company-image{

    width:48%;
    position:relative;

}

.company-image img{

    width:100%;
    border-radius:12px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);

}


/*==========================================
        EXPERIENCE BOX
==========================================*/

.experience-box{

    position:absolute;

    bottom:3px;
    left:-10px;


    width:170px;

    background:#FFC107;

    color:#111;

    padding:25px 20px;

    text-align:center;

    border-radius:8px;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.experience-box h2{

    font-size:30px;
    font-weight:800;
    line-height:1;

}

.experience-box p{

    margin-top:8px;
    font-size:14px;
    font-weight:600;

}


/*==========================================
            RIGHT CONTENT
==========================================*/

.company-content{

    width:52%;

}

.company-content span{

    color:#FFC107;

    font-size:15px;

    font-weight:700;

    letter-spacing:2px;

}

.company-content h2{

    margin-top:15px;
    margin-bottom:20px;

    font-size:42px;

    line-height:1.3;

    color:#102947;

}

.title-line{

    width:70px;
    height:4px;

    background:#FFC107;

    margin-bottom:30px;

}

.company-content p{

    color:#666;

    font-size:17px;

    line-height:1.9;

    margin-bottom:18px;

}


/*==========================================
        FEATURE BOX
==========================================*/

.feature-box{

    margin-top:35px;

    display:grid;

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

    gap:18px;

}

.feature{

    display:flex;

    align-items:center;

    font-size:17px;

    font-weight:600;

    color:#222;

}

.feature i{

    color:#FFC107;

    margin-right:12px;

    font-size:20px;

}


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

.about-btn{

    display:inline-block;

    margin-top:40px;

    padding:15px 38px;

    background:#102947;

    color:#fff;

    border-radius:5px;

    font-size:16px;

    font-weight:600;

    transition:.35s;

}

.about-btn:hover{

    background:#FFC107;

    color:#111;

    transform:translateY(-4px);

}


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

.company-image{

    overflow:hidden;

    border-radius:12px;

}

.company-image img{

    transition:.6s;

}

.company-image:hover img{

    transform:scale(1.06);

}




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

@media(max-width:991px){

.company-container{

    flex-direction:column;

}

.company-image{

    width:100%;

}

.company-content{

    width:100%;

    margin-top:40px;

}

.experience-box{

    left:20px;

}

.company-content h2{

    font-size:34px;

}

}

@media(max-width:768px){

.about-company{

    padding:70px 20px;

}

.company-content h2{

    font-size:30px;

}

.feature-box{

    grid-template-columns:1fr;

}

.experience-box{

    width:150px;

    padding:20px;

}

.experience-box h2{

    font-size:40px;

}

}



/*part3*/

/*==========================================
        COMPANY STATISTICS
==========================================*/

.company-stats{

    width:100%;
    padding:90px 8%;
    background:#0B2D5C;

}

.stats-container{

    max-width:1300px;
    margin:auto;

    display:grid;

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

    gap:30px;

}

.stat-box{

    background:#ffffff;

    text-align:center;

    padding:45px 25px;

    border-radius:10px;

    transition:.4s;

    box-shadow:0 12px 30px rgba(0,0,0,.12);

}

.stat-box:hover{

    transform:translateY(-10px);

}

.stat-box i{

    font-size:45px;

    color:#FFC107;

    margin-bottom:18px;

}

.stat-box h2{

    font-size:42px;

    color:#0B2D5C;

    margin-bottom:10px;

}

.stat-box p{

    color:#555;

    font-size:17px;

    font-weight:600;

}

/*==========================================
            OUR TEAM
==========================================*/

.our-team{

    width:100%;
    padding:100px 8%;
    background:#f8f9fc;

}

.team-heading{

    text-align:center;
    margin-bottom:70px;

}

.team-heading span{

    color:#FFC107;
    font-size:15px;
    font-weight:700;
    letter-spacing:3px;

}

.team-heading h2{

    font-size:48px;
    color:#0B2D5C;
    margin:15px 0;

}

.team-heading p{

    width:700px;
    max-width:95%;
    margin:auto;
    color:#666;
    line-height:30px;
    font-size:17px;

}

/*==========================================
        TOP MANAGEMENT
==========================================*/

.management-team{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
    margin-bottom:80px;

}

.team-card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;

}

.team-card:hover{

    transform:translateY(-10px);

}

.team-card img{

    width:100%;
    height:420px;
    object-fit:cover;

}

.team-content{

    padding:30px;
    text-align:center;

}

.team-content h3{

    font-size:32px;
    color:#0B2D5C;
    margin-bottom:8px;

}

.team-content span{

    color:#FFC107;
    font-weight:700;
    display:block;
    margin-bottom:18px;

}

.team-content p{

    color:#666;
    line-height:30px;

}

/*==========================================
        ELECTRICIAN TITLE
==========================================*/

.electrician-heading{

    text-align:center;
    margin-bottom:50px;

}

.electrician-heading h2{

    color:#0B2D5C;
    font-size:38px;
    margin-bottom:15px;

}

/*==========================================
        ELECTRICIANS
==========================================*/

.electrician-team{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.electrician-card{

    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
    text-align:center;

}

.electrician-card:hover{

    transform:translateY(-8px);

}

.electrician-card img{

    width:100%;
    height:250px;
    object-fit:cover;

}

.electrician-card h3{

    color:#0B2D5C;
    margin-top:20px;
    font-size:24px;

}

.electrician-card span{

    display:block;
    color:#666;
    margin:10px 0 25px;
    font-size:16px;

}

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

@media(max-width:992px){

.management-team{

    grid-template-columns:1fr;

}

.electrician-team{

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

}

}

@media(max-width:768px){

.our-team{

    padding:70px 20px;

}

.team-heading h2{

    font-size:36px;

}

.team-card img{

    height:320px;

}

.electrician-heading h2{

    font-size:30px;

}

.electrician-team{

    grid-template-columns:1fr;

}

.electrician-card img{

    height:300px;

}

}


/*part4*/


/*==========================================
        WHY CHOOSE US
==========================================*/

.why-choose{

    width:100%;
    padding:80px 8%;
    background:#f8f9fc;

}

.section-title{

    position:relative;

    text-align:center;

    margin-bottom:0px;

}

.section-title span{

    color:#FFC107;
    font-size:15px;
    font-weight:700;
    letter-spacing:3px;

}

.section-title h2{

    font-size:45px;
    color:#0B2D5C;
    margin:15px 0;
    line-height: 100px;
}

.section-title p{

    width:700px;
    max-width:95%;
    margin:auto;
    color:#666;
    line-height:60px;
    padding-bottom: 5%;

}

.heading-line1{

    width:80px;

    height:4px;

    background:#FFC107;

    margin:20px auto;

    border-radius:20px;

}

/*=========================
      SWIPER
==========================*/

.chooseSwiper{

    width:100%;
    padding:20px 0 70px;

}

.chooseSwiper .swiper-slide{

    height:auto;
}

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

.choose-card{

    position:relative;
    height:550px;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.18);

}

.choose-card img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;

}

.choose-card:hover img{

    transform:scale(1.08);

}

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


.choose-nav{

    position:absolute;

    bottom:15px;

    right:0;


    display:flex;

    gap:15px;

}

.choose-overlay{

    position:absolute;

    bottom:0;

    left:0;

    width:100%;

    padding:25px 35px;

    transition:.5s;

}

.choose-overlay h3{

    color:#fff;
    font-size:30px;
    margin-bottom:15px;

}

.underline{

    width:70px;
    height:4px;
    background:#FFC107;
    border-radius:20px;
    margin-bottom:20px;

}

.choose-overlay p{

    color: #ffffff;

    max-height:0;

    opacity:0;

    overflow:hidden;

    transform:translateY(20px);

    transition:.5s;

}

/*=========================
      ARROWS
==========================*/

.choose-nav .swiper-button-next,
.choose-nav .swiper-button-prev{

    position:static;

    width:55px;

    height:55px;

    background:#FFC107;

    border-radius:50%;

    color:#fff;

    margin:0;

}

.choose-nav .swiper-button-next::after,
.choose-nav .swiper-button-prev::after{

    font-size:18px;

    font-weight:bold;

}

.choose-card:hover .choose-overlay{

    padding-bottom:40px;

}

.choose-card:hover .choose-overlay p{

    max-height:200px;

    opacity:1;

    transform:translateY(0);

}

.choose-card:hover img{

    transform:scale(1.08);

    filter:blur(3px);

}
.choose-card img{

    transition:.6s;

}

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

@media(max-width:1024px){

.choose-card{

    height:500px;

}

}

@media(max-width:768px){

.why-choose{

    padding:70px 20px;

}

.section-title h2{

    font-size:34px;

}

.section-title p{

    font-size:16px;

}

.choose-card{

    height:450px;

}

.choose-overlay{

    padding:25px;

}

.choose-overlay h3{

    font-size:24px;

}

.choose-overlay p{

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

}

.chooseSwiper .swiper-button-next,
.chooseSwiper .swiper-button-prev{

    display:none;

}

}


/*==========================================
            TESTIMONIALS
==========================================*/

.testimonials{

    width:100%;
    padding:70px 8%;
    background:#fafafa;
    position:relative;
    overflow:hidden;

}

.testimonials::before{

    content:"";

    position:absolute;

    inset:0;

    background:url("../images/pattern.jpg") center/cover no-repeat;

    opacity:.05;

}

.testimonial-heading{

    text-align:center;

    position:relative;

    z-index:1;

    margin-bottom:70px;

}

.testimonial-heading span{

    color:#FFC107;

    font-size:15px;

    font-weight:700;

    letter-spacing:3px;

}

.testimonial-heading h2{

    font-size:55px;

    color:#0B2D5C;

    margin:20px 0;

    font-weight:700;

}

.heading-line{

    width:80px;

    height:4px;

    background:#FFC107;

    margin:20px auto;

    border-radius:20px;

}

.testimonial-heading p{

    width:700px;

    max-width:95%;

    margin:auto;

    color:#666;

    font-size:18px;

    line-height:32px;

}

/*============================
      CARDS
=============================*/

.testimonial-track{

    display:grid;

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

    gap:30px;

}

.testimonial-card{

    position:relative;

    background:#fff;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

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

    transition:.4s;

    display:flex;

    flex-direction:column;

    align-items:center;

    height:540px;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(0,0,0,.15);

}

.testimonial-card img{

    width:140px;

    height:140px;

    border-radius:50%;

    object-fit:cover;

    margin-bottom:25px;

    transition:.4s;

}

.testimonial-card:hover img{

    transform:scale(1.05);

}

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

.quote{

    position:absolute;

    top:45px;

    right:35px;

    width:60px;

    height:60px;

    background:#FFC107;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    transition:.4s;

}

.testimonial-card:hover .quote{

    transform:rotate(360deg);

}

/*============================
      STARS
=============================*/

.stars{

    color:#FFC107;

    margin-bottom:20px;

}

.stars i{

    margin:0 2px;

}

/*============================
      TEXT
=============================*/

.testimonial-card p{

    color:#555;

    font-size:15px;

    line-height:23px;

    flex:1;

}

.small-line{

    width:55px;

    height:3px;

    background:#FFC107;

    margin:25px auto;

}

.testimonial-card h3{

    color:#0B2D5C;

    font-size:28px;

    margin-bottom:8px;

}

.testimonial-card span{

    color:#777;

    font-size:17px;

}

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

@media(max-width:1200px){

.testimonial-track{

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

}

}

@media(max-width:768px){

.testimonials{

    padding:70px 20px;

}

.testimonial-heading h2{

    font-size:38px;

}

.testimonial-track{

    grid-template-columns:1fr;

}

.testimonial-card{

    height:auto;

}

}

@media(max-width:480px){

.testimonial-heading h2{

    font-size:30px;

}

.testimonial-card{

    padding:30px 20px;

}

.testimonial-card img{

    width:120px;

    height:120px;

}

.quote{

    width:50px;

    height:50px;

    font-size:20px;

    right:20px;

    top:30px;

}

}


.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;

}






/*part5*/


/* ==========================================
            ANIMATIONS
========================================== */

@keyframes fadeUp{

    0%{

        opacity:0;
        transform:translateY(60px);

    }

    100%{

        opacity:1;
        transform:translateY(0);

    }

}

@keyframes fadeDown{

    0%{

        opacity:0;
        transform:translateY(-60px);

    }

    100%{

        opacity:1;
        transform:translateY(0);

    }

}

@keyframes fadeLeft{

    0%{

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

    }

    100%{

        opacity:1;
        transform:translateX(0);

    }

}

@keyframes fadeRight{

    0%{

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

    }

    100%{

        opacity:1;
        transform:translateX(0);

    }

}

@keyframes zoomIn{

    0%{

        opacity:0;
        transform:scale(.8);

    }

    100%{

        opacity:1;
        transform:scale(1);

    }

}


/* Hero */

.about-left{

    animation:fadeLeft 1s ease;

}

.about-right{

    animation:fadeRight 1.2s ease;

}

/* About Company */

.company-image{

    animation:fadeLeft 1s ease;

}

.company-content{

    animation:fadeRight 1s ease;

}

/* Statistics */

.stat-box{

    animation:zoomIn 1s ease;

}

/* Mission */

.mv-card{

    animation:fadeUp 1s ease;

}

/* Why Choose */

.why-box{

    animation:fadeUp 1s ease;

}

/* CTA */

.about-cta{

    animation:fadeUp 1s ease;

}



/* =========================================================
   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);
    }

}


/* =========================================================
   ABOUT HERO
   MOBILE VIEW - 300px TO 500px
========================================================= */

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

    /* =========================================
       MAIN HERO
    ========================================= */

    .about-hero {
        position: relative !important;

        width: 100% !important;
        height: 320px !important;

        

        overflow: hidden !important;

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


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

    .about-hero .hero-bg {
        position: absolute !important;

        top: 0 !important;
        left: 0 !important;

        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;

        /*
           Show the electrician image more clearly
           on mobile.
        */
        object-position: 72% center !important;

        z-index: 0 !important;
    }


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

    .about-hero .about-overlay {
        position: absolute !important;

        top: 0 !important;
        left: 0 !important;

        width: 100% !important;
        height: 100% !important;

        background: linear-gradient(
            to right,
            rgba(3, 25, 70, 0.94),
            rgba(3, 25, 70, 0.72),
            rgba(3, 25, 70, 0.30)
        ) !important;

        z-index: 1 !important;
    }


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

    .about-hero .about-content {

        position: relative !important;

        z-index: 2 !important;

        width: 100% !important;

        max-width: 100% !important;

        box-sizing: border-box !important;

        padding: 65px 25px 30px 20px !important;

        margin: 0 !important;

        text-align: left !important;
    }


    /* =========================================
       BREADCRUMB
    ========================================= */

    .about-hero .breadcrumb {

        display: flex !important;

        align-items: center !important;

        gap: 12px !important;

        margin: 0 0 28px 0 !important;

        padding: 0 !important;

        font-size: 15px !important;

        line-height: 20px !important;

        color: #ffffff !important;
    }


    .about-hero .breadcrumb a {
        position: relative;
        bottom: 25px;

        color: #ffffff !important;

        text-decoration: none !important;
    }


    .about-hero .breadcrumb span {
        position: relative;
        bottom: 25px;

        color: #ffb800 !important;

        font-size: 20px !important;

        font-weight: 700 !important;
    }


    .about-hero .breadcrumb strong {
        position: relative;
        bottom: 25px;


        color: #ffb800 !important;

        font-weight: 700 !important;
    }


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

    .about-hero .about-content h1 {
        position: relative;
        bottom: 25px;


        margin: 0 !important;

        padding: 0 !important;

        color: #ffffff !important;

        font-size: 30px !important;

        line-height: 1.1 !important;

        font-weight: 800 !important;

        letter-spacing: 0 !important;

        text-align: left !important;
    }


    /* =========================================
       YELLOW LINE
    ========================================= */

    .about-hero .line {
        position: relative;
        bottom: 25px;


        width: 95px !important;

        height: 5px !important;

        background: #ffb800 !important;

        margin: 25px 0 28px 0 !important;

        border-radius: 3px !important;
    }


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

    .about-hero .about-content > p:last-child {
        position: relative;
        bottom: 25px;


        max-width: 330px !important;

        margin: 0 !important;

        padding: 0 !important;

        color: #ffffff !important;

        font-size: 12px !important;

        line-height: 1.65 !important;

        font-weight: 400 !important;

        text-align: left !important;
    }

}


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

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

    .about-hero {
        height: 320px !important;

       
    }


    .about-hero .about-content {

        padding: 50px 20px 25px 20px !important;
    }


    .about-hero .breadcrumb {

        font-size: 13px !important;

        gap: 9px !important;

        margin-bottom: 22px !important;
    }


    .about-hero .breadcrumb span {

        font-size: 17px !important;
    }


    .about-hero .about-content h1 {

        font-size: 34px !important;

        line-height: 1.1 !important;
    }


    .about-hero .line {

        width: 75px !important;

        height: 4px !important;

        margin: 20px 0 22px 0 !important;
    }


    .about-hero .about-content > p:last-child {

        max-width: 285px !important;

        font-size: 14px !important;

        line-height: 1.55 !important;
    }


    .about-hero .hero-bg {

        object-position: 75% center !important;
    }

}


/* =========================================================
   361px TO 500px
========================================================= */

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

    .about-hero {
        height: 300px !important;

        
    }


    .about-hero .about-content {

        padding: 60px 25px 30px 10px !important;
    }


    .about-hero .about-content h1 {
        

        font-size: 30px !important;
    }


    .about-hero .about-content > p:last-child {

        max-width: 330px !important;

        font-size: 12px !important;

        line-height: 1.6 !important;
    }


    .about-hero .hero-bg {

        object-position: 65% center !important;
    }

}


/* =========================================================
   ABOUT COMPANY
   MOBILE VIEW - 300px TO 500px
========================================================= */

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

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

    .about-company {
        width: 100%;
        padding: 40px 18px;
        box-sizing: border-box;
        overflow: hidden;
    }


    /* =========================================
       CONTAINER
       IMAGE FIRST -> CONTENT SECOND
    ========================================= */

    .company-container {
        width: 100%;

        display: flex;
        flex-direction: column;

        align-items: center;

        gap: 28px;

        margin: 0 auto;
    }


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

    .company-image {
        order: 1;

        position: relative;

        width: 100%;

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

        margin: 0;
    }


    .company-image img {
        display: block;

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

        height: 240px;

        object-fit: cover;
        object-position: center;

        border-radius: 12px;

        margin: 0 auto;
    }


    /* =========================================
       EXPERIENCE BOX
       OVER THE IMAGE
    ========================================= */

    .experience-box {
        position: absolute;

        left: 0;
        bottom: 0;

        width: 125px;
        height: 90px;

        display: flex;

        flex-direction: column;

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

        box-sizing: border-box;

        background: #ffb800;

        border-radius: 0 0 0 12px;

        margin: 0;
        padding: 0;
    }


    .experience-box h2 {
        margin: 0;

        font-size: 28px;

        line-height: 32px;

        font-weight: 800;

        color: #111;
    }


    .experience-box p {
        margin: 3px 0 0 0;

        font-size: 12px;

        line-height: 16px;

        font-weight: 600;

        color: #111;

        text-align: center;
    }


    /* =========================================
       RIGHT CONTENT
    ========================================= */

    .company-content {
        order: 2;

        width: 100%;

        padding: 0;

        margin: 0;

        text-align: center;
    }


    /* =========================================
       ABOUT TRIDEV
    ========================================= */

    .company-content > span {
        display: block;

        margin: 0 0 7px 0;

        font-size: 10px;

        line-height: 14px;

        font-weight: 700;

        color: #f5a900;

        text-align: center;
    }


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

    .company-content h2 {
        max-width: 330px;

        margin: 0 auto;

        font-size: 25px;

        line-height: 30px;

        font-weight: 800;

        color: #102d50;

        text-align: center;
    }


    /* =========================================
       YELLOW LINE
    ========================================= */

    .company-content .title-line {
        width: 70px;

        height: 4px;

        margin: 15px auto 18px auto;

        background: #ffb800;

        border-radius: 3px;
    }


    /* =========================================
       PARAGRAPHS
    ========================================= */

    .company-content > p {
        max-width: 350px;

        margin: 0 auto 15px auto;

        font-size: 14px;

        line-height: 21px;

        color: #555;

        text-align: center;
    }


    /* =========================================
       FEATURES
       2 + 2
    ========================================= */

    .feature-box {
        width: 100%;

        max-width: 350px;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 15px 12px;

        margin: 22px auto 20px auto;

        padding: 0;

        box-sizing: border-box;
    }


    /* =========================================
       FEATURE
    ========================================= */

    .feature-box .feature {

        position: relative;

        left: 20px;

        display: flex;

        align-items: center;

        justify-content: flex-start;

        gap: 8px;

        margin: 0;

        padding: 0;

        font-size: 13px;

        line-height: 17px;

        font-weight: 700;

        color: #111;

        text-align: left;
    }


    /* =========================================
       CHECK ICON
    ========================================= */

    .feature-box .feature i {
        position: relative;

        left: 10px;
        
        width: 25px;

        height: 25px;

        min-width: 25px;

        display: flex;

        align-items: center;

        justify-content: center;

        color: #ffffff;

        background: #ffb800;

        border-radius: 50%;

        font-size: 12px;
    }


    /* =========================================
       READ MORE
       CENTER
    ========================================= */

    .company-content .about-btn {
        display: block;

        width: 145px;

        padding: 11px 15px;

        margin: 20px auto 0 auto;

        box-sizing: border-box;

        background: #102d50;

        color: #ffffff;

        border: none;

        border-radius: 5px;

        font-size: 13px;

        font-weight: 700;

        text-align: center;

        text-decoration: none;
    }

}


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

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

    .about-company {
        padding: 30px 15px;
    }


    .company-image img {
        height: 210px;
    }


    .experience-box {
        width: 110px;

        height: 78px;
    }


    .experience-box h2 {
        font-size: 23px;

        line-height: 27px;
    }


    .experience-box p {
        font-size: 10px;

        line-height: 14px;
    }


    .company-content h2 {
        font-size: 22px;

        line-height: 27px;
    }


    .company-content > p {
        font-size: 13px;

        line-height: 19px;
    }


    .feature-box .feature {
        font-size: 11px;

        line-height: 15px;
    }


    .feature-box .feature i {
        width: 23px;

        height: 23px;

        min-width: 23px;

        font-size: 10px;
    }

}


/* =========================================================
   COMPANY STATS - MOBILE VIEW
   300px TO 500px
========================================================= */

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

    .company-stats {
        width: 100% !important;
        padding: 30px 15px !important;
        box-sizing: border-box !important;
    }

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

        display: grid !important;

        /* 2 cards in each row */
        grid-template-columns: 1fr 1fr !important;

        gap: 15px !important;

        margin: 0 auto !important;
    }

    /* ==============================
       STAT BOX
    ============================== */

    .stat-box {
        width: 100% !important;

        min-height: 170px !important;

        padding: 20px 8px !important;

        box-sizing: border-box !important;

        display: flex !important;

        flex-direction: column !important;

        align-items: center !important;

        justify-content: center !important;

        text-align: center !important;

        border-radius: 12px !important;
    }

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

    .stat-box i {
        font-size: 32px !important;

        margin-bottom: 12px !important;
    }

    /* ==============================
       NUMBER
    ============================== */

    .stat-box h2 {
        font-size: 28px !important;

        line-height: 1.1 !important;

        margin: 0 0 8px 0 !important;
    }

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

    .stat-box p {
        font-size: 13px !important;

        line-height: 18px !important;

        margin: 0 !important;

        text-align: center !important;
    }

}


/* =========================================================
   OUR TEAM - MOBILE VIEW
   300px TO 500px
========================================================= */

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

    /* =====================================================
       MAIN TEAM SECTION
    ===================================================== */

    .our-team {
        width: 100% !important;
        padding: 35px 15px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }


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

    .team-heading {
        width: 100% !important;
        text-align: center !important;
        margin: 0 auto 30px auto !important;
    }

    .team-heading span {
        font-size: 10px !important;
        letter-spacing: 2px !important;
    }

    .team-heading h2 {
        font-size: 22px !important;
        line-height: 28px !important;
        margin: 8px 0 10px 0 !important;
    }

    .team-heading .heading-line {
        margin: 0 auto 12px auto !important;
    }

    .team-heading p {
        font-size: 11px !important;
        line-height: 18px !important;
        margin: 0 auto !important;
        max-width: 350px !important;
    }


    /* =====================================================
       MANAGEMENT TEAM
       ONE DOWN ONE
    ===================================================== */

    .management-team {
        width: 100% !important;

        display: flex !important;

        flex-direction: column !important;

        align-items: center !important;

        gap: 20px !important;

        margin: 0 auto 35px auto !important;
    }


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

    .team-card.manager {
        width: 100% !important;

        max-width: 380px !important;

        display: flex !important;

        flex-direction: column !important;

        align-items: center !important;

        text-align: center !important;

        margin: 0 auto !important;

        box-sizing: border-box !important;
    }


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

    .team-card.manager img {
        width: 100% !important;

        max-width: 380px !important;

        height: 210px !important;

        object-fit: cover !important;

        object-position: center !important;

        display: block !important;

        border-radius: 12px !important;
    }


    /* =====================================================
       MANAGEMENT CONTENT
    ===================================================== */

    .team-card.manager .team-content {
        width: 100% !important;

        padding: 15px 10px !important;

        box-sizing: border-box !important;

        text-align: center !important;
    }

    .team-card.manager .team-content h3 {
        font-size: 19px !important;

        line-height: 24px !important;

        margin: 0 0 5px 0 !important;
    }

    .team-card.manager .team-content span {
        display: block !important;

        font-size: 11px !important;

        line-height: 17px !important;

        margin-bottom: 7px !important;
    }

    .team-card.manager .team-content p {
        font-size: 10px !important;

        line-height: 16px !important;

        margin: 0 auto !important;

        max-width: 350px !important;
    }


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

    .electrician-heading {
        width: 100% !important;

        text-align: center !important;

        margin: 0 auto 25px auto !important;
    }

    .electrician-heading h2 {
        font-size: 20px !important;

        line-height: 26px !important;

        margin: 0 0 10px 0 !important;
    }

    .electrician-heading .heading-line {
        margin: 0 auto !important;
    }


    /* =====================================================
       ELECTRICIANS
       ONE DOWN ONE
    ===================================================== */

    .electrician-team {
        width: 100% !important;

        display: flex !important;

        flex-direction: column !important;

        align-items: center !important;

        gap: 20px !important;

        margin: 0 auto !important;
    }


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

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

        max-width: 300px !important;

        text-align: center !important;

        margin: 0 auto !important;

        box-sizing: border-box !important;
    }


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

    .electrician-card img {
        width: 100% !important;

        height: 220px !important;

        object-fit: cover !important;

        object-position: center !important;

        display: block !important;

        border-radius: 12px !important;

        margin: 0 auto !important;
    }


    /* =====================================================
       ELECTRICIAN NAME
    ===================================================== */

    .electrician-card h3 {
        font-size: 17px !important;

        line-height: 22px !important;

        margin: 10px 0 4px 0 !important;
    }


    /* =====================================================
       ELECTRICIAN ROLE
    ===================================================== */

    .electrician-card span {
        display: block !important;

        font-size: 11px !important;

        line-height: 17px !important;
    }

}


/* =========================================================
   WHY CHOOSE SECTION
   MOBILE VIEW - 300px TO 500px
========================================================= */

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

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

    .why-choose {
        width: 100%;
        padding: 40px 15px;
        overflow: hidden;
    }


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

    .why-choose .section-title {
        width: 100%;
        position: relative;
        text-align: center;
        margin-bottom: 25px;
    }

    .why-choose .section-title span {
        display: block;

        font-size: 10px;
        line-height: 14px;

        letter-spacing: 2px;

        margin-bottom: 6px;
    }

    .why-choose .section-title h2 {
        font-size: 20px;
        line-height: 26px;

        margin: 0 auto 8px auto;

        max-width: 340px;
    }

    .why-choose .section-title p {
        font-size: 12px;
        line-height: 16px;

        max-width: 300px;

        margin: 0 auto;
        margin-top: 20px;
        
    }


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

    .why-choose .heading-line {
        width: 45px;
        height: 3px;

        margin: 8px auto 10px auto;
    }


    /* =========================
       ARROW BUTTONS
    ========================= */

    .choose-nav {

        position: relative;

        width: 100%;

        display: flex;

        justify-content: flex-end;

        align-items: center;

       

        top: 10px;
    }

    .choose-nav .swiper-button-prev,
    .choose-nav .swiper-button-next {

        position: relative !important;

       

        margin: 0 !important;

       

        visibility:hidden;

        border-radius: 50%;

        background: #0b1d39;

        color: #fff;
    }




    /* =========================
       SWIPER
    ========================= */

    .chooseSwiper {

        width: 100%;

        overflow: hidden;
    }


    .chooseSwiper .swiper-wrapper {

        display: flex;

        flex-direction: column;

        gap: 20px;

        transform: none !important;
    }


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

    .chooseSwiper .swiper-slide {
        

        width: 100% !important;

        height: auto;

        margin: 0 !important;

        flex-shrink: 0;
    }


    .choose-card {

        position: relative;

        width: 100%;

        height: 230px;

        overflow: hidden;

        border-radius: 10px;

        bottom: 20px;
    }


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

    .choose-card img {

        display: block;

        width: 100%;

        height: 120%;

        object-fit: cover;

        object-position: center;
    }


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

    .choose-overlay {

        position: absolute;

        left: 0;
        bottom: 0;

        width: 100%;

        padding: 20px 15px;

        background: linear-gradient(
            transparent,
            rgba(0,0,0,0.90)
        );

        color: #fff;
    }


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

    .choose-overlay h3 {

        font-size: 17px;

        line-height: 22px;

        margin: 0 0 6px 0;
    }


    /* =========================
       UNDERLINE
    ========================= */

    .choose-overlay .underline {

        width: 35px;

        height: 2px;

        margin-bottom: 7px;

        background: #ffc107;
    }


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

    .choose-overlay p {

        font-size: 10px;

        line-height: 15px;

        margin: 0;

        max-width: 310px;
    }

}


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

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

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

    .testimonials {
        width: 100% !important;

        padding: 40px 15px !important;

        box-sizing: border-box !important;

        overflow: hidden !important;
    }


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

    .testimonial-heading {
        width: 100% !important;

        text-align: center !important;

        margin: 0 auto 25px auto !important;
    }


    .testimonial-heading span {
        display: block !important;

        font-size: 11px !important;

        letter-spacing: 2px !important;

        margin-bottom: 7px !important;
    }


    .testimonial-heading h2 {
        font-size: 25px !important;

        line-height: 32px !important;

        margin: 0 0 8px 0 !important;
    }


    /* =========================
       YELLOW LINE
    ========================= */

    .testimonial-heading .heading-line {
        width: 50px !important;

        height: 3px !important;

        margin: 10px auto 12px auto !important;
    }


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

    .testimonial-heading p {
        font-size: 12px !important;

        line-height: 19px !important;

        max-width: 330px !important;

        margin: 0 auto !important;
    }


    /* =========================
       TESTIMONIAL TRACK
    ========================= */

    .testimonial-track {

        width: 100% !important;

        display: flex !important;

        flex-direction: column !important;

        gap: 20px !important;

        align-items: center !important;

        margin: 0 !important;

        padding: 0 !important;
    }


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

    .testimonial-card {

        width: 100% !important;

        max-width: 380px !important;

        min-height: auto !important;

        box-sizing: border-box !important;

        margin: 0 !important;

        padding: 30px 20px !important;

        border-radius: 18px !important;
    }


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

    .testimonial-card img {

        width: 125px !important;

        height: 125px !important;

        object-fit: cover !important;

        border-radius: 50% !important;

        display: block !important;

        margin: 0 auto 20px auto !important;
    }


    /* =========================
       QUOTE CIRCLE
    ========================= */

    .testimonial-card .quote {

        width: 55px !important;

        height: 55px !important;

        border-radius: 50% !important;

        display: flex !important;

        align-items: center !important;

        justify-content: center !important;

        right: calc(50% - 85px) !important;

    }


    .testimonial-card .quote i {

        font-size: 20px !important;
    }


    /* =========================
       STARS
    ========================= */

    .testimonial-card .stars {

        text-align: center !important;

        margin: 5px 0 20px 0 !important;
    }


    .testimonial-card .stars i {

        font-size: 17px !important;

        margin: 0 2px !important;
    }


    /* =========================
       REVIEW TEXT
    ========================= */

    .testimonial-card > p {

        font-size: 13px !important;

        line-height: 21px !important;

        text-align: center !important;

        margin: 0 auto 15px auto !important;

        max-width: 330px !important;
    }


    /* =========================
       SMALL LINE
    ========================= */

    .testimonial-card .small-line {

        width: 40px !important;

        height: 2px !important;

        margin: 12px auto !important;
    }


    /* =========================
       CLIENT NAME
    ========================= */

    .testimonial-card h3 {

        font-size: 16px !important;

        line-height: 22px !important;

        text-align: center !important;

        margin: 8px 0 4px 0 !important;
    }


    /* =========================
       CLIENT TYPE
    ========================= */

    .testimonial-card > span {

        display: block !important;

        font-size: 11px !important;

        text-align: center !important;
    }

}


/* =========================================================
   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;
    }
}





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

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

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

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

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

    .top-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 42px;
        padding: 0 30px;

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

        z-index: 1001;

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

    .top-left {
        display: flex;
        align-items: center;
        gap: 20px;
        font-size: 13px;
    }

    .top-left span {
        display: flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
    }

    .top-right {
        display: flex;
        align-items: center;
        gap: 15px;
        font-size: 14px;
    }

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


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

    header,
    header.sticky {
        position: fixed;
        left: 0;
        width: 100%;
        height: 65px;

        padding: 0 30px;

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

        background: #fff;

        z-index: 1000;

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

    header {
        top: 42px;
        box-shadow: 0 2px 8px rgba(0,0,0,.08);
    }

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


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

    .logo {
        position: static !important;

        display: flex;
        align-items: center;

        gap: 10px;

        height: 78px;
        flex-shrink: 0;
    }

    .logo img {
        position: static !important;

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

        width: 62px;
        height: 62px;

        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;

        color: #0b1d39;

        font-size: 27px;
        line-height: 24px;

        font-weight: 900;
        letter-spacing: 3px;

        white-space: nowrap;
    }

    .logo1 {
        position: static !important;

        display: block;

        color: #0b1d39;

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

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

        white-space: nowrap;
    }


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

    nav#mobileNav {
        position: static !important;

        display: block !important;

        width: auto;

        margin-left: auto;

        background: transparent;

        box-shadow: none;

        transition: none;

        z-index: auto;
    }

    nav#mobileNav ul {
        display: flex;

        flex-direction: row;

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

        gap: 22px;

        margin: 0;
        padding: 0;

        list-style: none;
    }

    nav#mobileNav ul li {
        width: auto;

        margin: 0;
        padding: 0;

        position: relative;
    }

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

        width: auto;

        padding: 8px 0;

        color: #000;

        background: transparent;

        font-size: 14px;
        font-weight: 500;

        line-height: 1.2;

        text-decoration: none;

        white-space: nowrap;
    }

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

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

    nav#mobileNav ul li::after {
        content: "";

        position: absolute;

        left: 0;
        bottom: -4px;

        width: 0;
        height: 2px;

        background: #FFD54F;

        transition: width .3s ease;
    }

    nav#mobileNav ul li:hover::after {
        width: 100%;
    }

    nav#mobileNav ul li a.active::after {
        display: none;
    }

    /* Completely hide hamburger on tablet */

    .menu-button {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }


    /* =====================================================
       ABOUT HERO
    ===================================================== */

    .about-hero {
        position: relative;

        width: 100%;

        height: 430px;

        min-height: 430px;

        overflow: hidden;

        margin: 0;
        padding: 0;
    }

    .about-hero .hero-bg {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;

        object-fit: cover;

        object-position: center;
    }

    .about-overlay {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;

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

        z-index: 1;
    }

    .about-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;
    }

    .about-content .breadcrumb {
        font-size: 13px !important;

        margin: 0 0 15px;

        line-height: 1.4;
    }

    .about-content h1 {
        font-size: 46px !important;

        line-height: 1.15 !important;

        margin: 0 0 15px !important;

        font-weight: 800;
    }

    .about-content .line {
        width: 55px;

        height: 3px;

        margin-bottom: 18px;
    }

    .about-content > p:last-child {
        width: 100%;

        max-width: 580px;

        font-size: 14px !important;

        line-height: 1.7;

        margin: 0;
    }


    /* =====================================================
       ABOUT COMPANY
    ===================================================== */

    .about-company {
        width: 100%;

        padding: 85px 7% !important;

        overflow: hidden;
    }

    .company-container {
        width: 100%;

        display: grid !important;

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

        align-items: center;

        gap: 55px !important;

        margin: 0 auto;

        padding: 0;
    }


    /* LEFT IMAGE */

    .company-image {
        width: 100%;

        position: relative;

        display: flex;

        justify-content: center;

        align-items: center;
    }

    .company-image img {
        display: block;

        width: 100% !important;

        max-width: 100%;

        height: 400px !important;

        object-fit: cover;

        object-position: center;

        border-radius: 12px;
    }


    /* EXPERIENCE BOX */

    .experience-box {
        position: absolute;

        left: 15px;

        bottom: 15px;

        min-width: 125px;

        padding: 15px 18px;

        text-align: center;

        border-radius: 8px;
    }

    .experience-box h2 {
        font-size: 32px !important;

        line-height: 1;

        margin: 0 0 5px;
    }

    .experience-box p {
        font-size: 11px !important;

        line-height: 1.3;

        margin: 0;
    }


    /* RIGHT CONTENT */

    .company-content {
        width: 100%;

        padding: 0 !important;

        margin: 0 !important;

        text-align: left;
    }

    .company-content > span {
        display: block;

        font-size: 13px !important;

        line-height: 1.4;

        letter-spacing: 1.5px;

        margin-bottom: 12px;
    }

    .company-content h2 {
        width: 100%;

        max-width: 500px;

        font-size: 35px !important;

        line-height: 1.25 !important;

        margin: 0 0 15px !important;
    }

    .company-content .title-line {
        width: 55px;

        height: 3px;

        margin-bottom: 20px;
    }

    .company-content > p {
        width: 100%;

        max-width: 520px;

        font-size: 13px !important;

        line-height: 1.75 !important;

        margin: 0 0 14px !important;
    }


    /* =====================================================
       COMPANY FEATURES
    ===================================================== */

    .feature-box {
        width: 100%;

        max-width: 520px;

        display: grid !important;

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

        gap: 14px 25px !important;

        margin: 22px 0 25px !important;
    }

    .feature {
        display: flex !important;

        align-items: center;

        gap: 8px;

        font-size: 12px !important;

        line-height: 1.4;
    }

    .feature i {
        flex-shrink: 0;

        font-size: 15px;
    }

    .about-btn {
        display: inline-flex !important;

        align-items: center;

        justify-content: center;

        width: 170px;

        height: 45px;

        padding: 0 18px;

        font-size: 12px !important;

        text-decoration: none;
    }


    /* =====================================================
       COMPANY STATISTICS
    ===================================================== */

    .company-stats {
        width: 100%;

        padding: 55px 7% !important;

        overflow: hidden;
    }

    .stats-container {
        width: 100%;

        display: grid !important;

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

        gap: 20px !important;
    }

    .stat-box {
        width: 100%;

        min-width: 0;

        padding: 25px 10px !important;

        text-align: center;
    }

    .stat-box i {
        font-size: 25px;
    }

    .stat-box h2 {
        font-size: 30px !important;

        line-height: 1.2;

        margin: 8px 0;
    }

    .stat-box p {
        font-size: 11px !important;

        line-height: 1.4;

        margin: 0;
    }


    /* =====================================================
       OUR TEAM
    ===================================================== */

    .our-team {
        width: 100%;

        padding: 80px 7% !important;

        overflow: hidden;
    }

    .team-heading {
        width: 100%;

        max-width: 750px;

        margin: 0 auto 45px;

        text-align: center;
    }

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

        letter-spacing: 1.5px;
    }

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

        line-height: 1.25 !important;

        margin: 10px 0 12px !important;
    }

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

        height: 3px;

        margin: 0 auto 15px;
    }

    .team-heading p {
        width: 100%;

        max-width: 680px;

        margin: 0 auto;

        font-size: 13px !important;

        line-height: 1.7;
    }


    /* =====================================================
       MANAGEMENT TEAM
    ===================================================== */

    .management-team {
        width: 100%;

        display: grid !important;

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

        gap: 25px !important;

        margin-bottom: 55px;
    }

    .team-card.manager {
        width: 100%;

        min-width: 0;
    }

    .team-card.manager img {
        width: 100%;

        height: 300px !important;

        object-fit: cover;

        display: block;
    }

    .team-content {
        padding: 18px !important;
    }

    .team-content h3 {
        font-size: 19px !important;

        line-height: 1.3;

        margin: 0 0 6px;
    }

    .team-content span {
        font-size: 11px !important;

        line-height: 1.4;
    }

    .team-content p {
        font-size: 11px !important;

        line-height: 1.6;

        margin-top: 10px;
    }


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

    .electrician-heading {
        width: 100%;

        text-align: center;

        margin-bottom: 30px;
    }

    .electrician-heading h2 {
        font-size: 30px !important;

        line-height: 1.3;

        margin-bottom: 12px;
    }

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

        height: 3px;

        margin: auto;
    }


    /* =====================================================
       ELECTRICIANS
    ===================================================== */

    .electrician-team {
        width: 100%;

        display: grid !important;

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

        gap: 18px !important;
    }

    .electrician-card {
        width: 100%;

        min-width: 0;

        text-align: center;
    }

    .electrician-card img {
        width: 100%;

        height: 220px !important;

        object-fit: cover;

        display: block;
    }

    .electrician-card h3 {
        font-size: 15px !important;

        line-height: 1.3;

        margin: 12px 0 5px;
    }

    .electrician-card span {
        font-size: 10px !important;

        line-height: 1.4;
    }


    /* =====================================================
       WHY CHOOSE US
    ===================================================== */

    .why-choose {
        width: 100%;

        padding: 80px 7% !important;

        overflow: hidden;
    }

    .why-choose .section-title {
        width: 100%;

        max-width: 750px;

        margin: 0 auto 35px;

        text-align: center;
    }

    .why-choose .section-title > span {
        font-size: 13px !important;

        letter-spacing: 1.5px;
    }

    .why-choose .section-title h2 {
        font-size: 34px !important;

        line-height: 1.3 !important;

        margin: 10px 0 12px !important;
    }

    .why-choose .section-title p {
        font-size: 13px !important;

        line-height: 1.7;

        margin: 0 auto;
    }


    /* SWIPER */

    .chooseSwiper {
        width: 100% !important;

        overflow: hidden !important;

        padding: 0 0 30px !important;
    }

    .chooseSwiper .swiper-wrapper {
        align-items: stretch;
    }

    .chooseSwiper .swiper-slide {
        height: auto !important;
    }

    .choose-card {
        width: 100%;

        height: 360px !important;

        position: relative;

        overflow: hidden;

        border-radius: 10px;
    }

    .choose-card img {
        width: 100%;

        height: 100% !important;

        object-fit: cover;

        display: block;
    }

    .choose-overlay {
        position: absolute;

        left: 0;
        right: 0;
        bottom: 0;

        padding: 20px !important;

        min-height: 150px;
    }

    .choose-overlay h3 {
        font-size: 17px !important;

        line-height: 1.3;

        margin: 0 0 8px;
    }

    .choose-overlay .underline {
        width: 40px;

        height: 2px;

        margin-bottom: 10px;
    }

    .choose-overlay p {
        font-size: 11px !important;

        line-height: 1.55;

        margin: 0;
    }

    .choose-nav {
        display: flex;

        align-items: center;

        justify-content: center;

        gap: 10px;

        margin-top: 20px;
    }


    /* =====================================================
       TESTIMONIALS
    ===================================================== */

    .testimonials {
        width: 100%;

        padding: 80px 7% !important;

        overflow: hidden;
    }

    .testimonial-heading {
        width: 100%;

        max-width: 750px;

        margin: 0 auto 40px;

        text-align: center;
    }

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

        letter-spacing: 1.5px;
    }

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

        line-height: 1.3 !important;

        margin: 10px 0 12px !important;
    }

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

        height: 3px;

        margin: 0 auto 15px;
    }

    .testimonial-heading p {
        font-size: 13px !important;

        line-height: 1.7;

        margin: 0 auto;
    }


    /* =====================================================
   TESTIMONIAL CARDS
   800px - 1080px
===================================================== */

.testimonial-track {
    width: 100% !important;

    display: grid !important;

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

    gap: 38px !important;

    overflow: visible !important;

    align-items: stretch !important;
}


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

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

    min-width: 0 !important;

    height: 670px !important;

    min-height: 670px !important;

    padding: 35px 35px 28px !important;

    display: flex !important;

    flex-direction: column !important;

    align-items: center !important;

    text-align: center !important;

    border-radius: 22px !important;

    overflow: hidden !important;

    position: relative !important;
}


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

.testimonial-card img {
    width: 170px !important;

    height: 170px !important;

    min-width: 170px !important;

    object-fit: cover !important;

    border-radius: 50% !important;

    display: block !important;

    margin: 10px auto 22px !important;
}


/* =====================================================
   QUOTE CIRCLE
===================================================== */

.testimonial-card .quote {
    position: absolute !important;

    top: 55px !important;

    right: 40px !important;

    width: 75px !important;

    height: 75px !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    border-radius: 50% !important;

    font-size: 32px !important;

    z-index: 5 !important;
}


/* =====================================================
   STARS
===================================================== */

.testimonial-card .stars {
    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 10px !important;

    margin: 5px 0 28px !important;
}

.testimonial-card .stars i {
    font-size: 21px !important;
}


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

.testimonial-card p {
    width: 100% !important;

    max-width: 330px !important;

    margin: 0 auto !important;

    font-size: 16px !important;

    line-height: 1.55 !important;

    text-align: center !important;

    color: #555 !important;
}


/* =====================================================
   SMALL LINE
===================================================== */

.testimonial-card .small-line {
    width: 70px !important;

    height: 3px !important;

    margin: auto auto 18px !important;
}


/* =====================================================
   CLIENT NAME
===================================================== */

.testimonial-card h3 {
    width: 100% !important;

    margin: 0 0 5px !important;

    padding: 0 !important;

    font-size: 25px !important;

    line-height: 1.25 !important;

    font-weight: 700 !important;

    text-align: center !important;

    color: #0b376f !important;
}


/* =====================================================
   CLIENT TYPE
===================================================== */

.testimonial-card span {
    display: block !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 0 !important;

    font-size: 14px !important;

    line-height: 1.4 !important;

    text-align: center !important;
}


     /* =====================================================
   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 MOBILE WIDTH / ZOOM-OUT FIX
   TOUCH DEVICES ONLY
   KEEPS MOBILE CONTENT FITTED TO SCREEN
========================================================= */

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

    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

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

        overflow-x: hidden !important;
    }


    /* =========================================
       IMPORTANT - PREVENT ANY ELEMENT
       FROM CREATING RIGHT-SIDE SPACE
    ========================================= */

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


    /* =========================================
       MAIN PAGE ELEMENTS
    ========================================= */

    body > *,
    main,
    section,
    header,
    footer,
    nav,
    div {
        max-width: 100% !important;
    }


    /* =========================================
       IMAGES
    ========================================= */

    img {
        max-width: 100% !important;
    }


    /* =========================================
       HEADER
    ========================================= */

    header,
    header.sticky {
        width: 100% !important;
        max-width: 100% !important;

        left: 0 !important;
        right: 0 !important;
    }


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

    .top-bar {
        width: 100% !important;
        max-width: 100% !important;

        left: 0 !important;
        right: 0 !important;
    }


    /* =========================================
       HERO SECTIONS
    ========================================= */

    .about-hero,
    .contact-hero,
    .projects-hero,
    .service-hero {
        width: 100% !important;
        max-width: 100% !important;

        margin-left: 0 !important;
        margin-right: 0 !important;
    }


    /* =========================================
       MAIN SECTIONS
    ========================================= */

    .about,
    .about-section,
    .services,
    .industries,
    .projects,
    .contact-section,
    .map-section,
    .main-footer {
        width: 100% !important;
        max-width: 100% !important;

        margin-left: 0 !important;
        margin-right: 0 !important;
    }


    /* =========================================
       COMMON CONTAINERS
    ========================================= */

    .container,
    .about .container,
    .services .container,
    .contact-container,
    .footer-container,
    .service-container,
    .industry-container {
        width: 100% !important;
        max-width: 100% !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }


    /* =========================================
       PREVENT TEXT FROM MAKING PAGE WIDER
    ========================================= */

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    a,
    span {
        max-width: 100% !important;

        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
    }


    /* =========================================
       FORMS
    ========================================= */

    input,
    textarea,
    select,
    button {
        max-width: 100% !important;
    }


    /* =========================================
       MOBILE NAV
       HIDDEN UNTIL MENU BUTTON IS CLICKED
    ========================================= */

    nav#mobileNav {
        position: fixed !important;

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

        width: 220px !important;
        max-width: 220px !important;

        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;

        z-index: 9999 !important;

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


    /* =========================================
       SHOW ONLY AFTER HAMBURGER CLICK
    ========================================= */

    nav#mobileNav.mobile-active {
        right: 0 !important;

        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;

        width: 220px !important;
        max-width: 220px !important;
    }


    /* =========================================
       HAMBURGER ALWAYS VISIBLE
    ========================================= */

    .menu-button {
        display: flex !important;

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

        pointer-events: auto !important;
    }
}