*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Satoshi', sans-serif;
}

body{
    background:#fff;
    font-family:'Satoshi', sans-serif;
    overflow-x:hidden;
}

h1,h2,h3,h4,h5,h6{
    font-family: "ChampionGothic-Middleweight";
}

/* =========================
       MAIN HEADER
========================== */


.container, .container-lg, .container-md, .container-sm, .container-xl{
    max-width: 1320px;
    padding: 0px;
}

.main-header{
    position:relative;
    background:#fff;
    z-index:999;
}

/* ── TOP BAR ── */
.top-bar{
  background:#0065CF;
  height:50px;
  overflow:hidden;
  position:relative;
  margin-left: 59px;
}

/* The 1220px centered container inside top bar */
.top-bar-container{
  width:1228px;
  margin:0 auto;
  height:107%;
  position:relative;
  display:flex;
  align-items:center;
}

/*
  White panel is FIXED width (220px) and FIXED diagonal shape.
  It is positioned absolutely within the 1220px container.
  It does NOT scale with screen — it's always exactly this size/shape.
*/
.top-bar-white{
  position:absolute;
  left:0;
  top:0;
  width:220px;
  height:100%;
  background:#ffffff;
  /* NEW */
clip-path:polygon(
  0 0,
  calc(100% - 36px) 0,
  100% 100%,
  0 100%
);
  z-index:3;
  flex-shrink:0;
}

/* Blue overflow background — fills full viewport width behind the 1220px container */
.top-bar::before{
  content:'';
  position:absolute;
  inset:0;
  background:#1565c0;
  z-index:0;
}

/* White extends to left edge of viewport when screen > 1220px */
.top-bar-white-extend{
  position:absolute;
  left:0;
  top:0;
  height:100%;
  /* starts from left edge of viewport all the way to the start of 1220px container's white panel end */
  background:#ffffff;
  z-index:2;
  /* width = (100vw - 1220px)/2 + 220px - 36px (the angled bit) */
  width:calc((100vw - 1320px) / 2 + 74px);
}

.top-bar-text{
  position:relative;
  z-index:4;
  flex:1;
  text-align:center;
  color:#fff;
  font-size:16px;
  font-weight:500;
  letter-spacing:0.2px;
  white-space:nowrap;
  padding-left:47px; /* push past white panel */
  padding-right:0px;
  font-family: 'Satoshi';
}

.top-bar-right{
  position:relative;
  z-index:4;
  display:flex;
  align-items:center;
  gap:90px;
  flex-shrink:0;
}
.top-bar-phone{
  color:#fff;font-size:18px;font-weight:700; font-family: 'Satoshi';
  display:flex;align-items:center;gap:7px;white-space:nowrap;
}
.top-bar-socials{display:flex;align-items:center;gap:12px;}
.top-bar-socials a{color:#fff;font-size:18px;text-decoration:none;transition:opacity .2s;}
.top-bar-socials a:hover{opacity:.75;}


/* =========================
       NAVBAR
========================== */

.custom-navbar{
    background:#fff;
    padding:10px 0;
}
.navbar-brand img{
    max-height:145px;
    z-index: 9;
    position: relative;
    margin-top: -61px;
}
.navbar-nav{
    gap:40px;
}
.navbar-nav .nav-link{
    padding:0 !important;
    position:relative;
    color:#696969;
    font-size:18px;
    font-weight:500;
    text-transform:capitalize;
    transition:.3s;
    text-decoration: none;
    font-family: 'Satoshi';
}
.navbar-nav .nav-link:hover{
    color:#0566D1;
}
.navbar-nav .nav-link.active{
    color:#0566D1;
    font-weight:700;
}
.navbar-nav .nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-7px;
    width:0%;
    height:2px;
    background:#0d67d9; transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.navbar-nav .nav-link:hover::after{
    width: 100%;
}

/* =========================
       MOBILE HEADER
========================== */

.mobile-header{
    display:none;
    background:#fff;
    padding:10px 15px;
    align-items:center;
    justify-content:space-between;
}

.mobile-phone{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#0d67d9;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    flex-shrink:0;
}

.mobile-logo img{
    max-height:76px;
}
.mobile-toggle{
    width:42px;
    height:42px;
    border:none;
    border-radius:4px;
    background:#0d67d9;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

/* =========================
       MOBILE MENU
========================== */

.mobile-menu .navbar-nav{
    gap:14px;
    padding-top:10px;
}

.mobile-menu .nav-link{
    color:#333;
    font-size:15px;
    font-weight:500;
}
.mobile-call-btn{
    margin-top:25px;
}

/* MOBILE BTN */

.mobile-btn{
    display:none;
}

.quote-btn {
    background:#0566D1;
    color:#fff;
    padding:14px 34px;
    font-family: "ChampionGothic-Welterweight";
    text-transform:uppercase;
    font-size:22px;
    border-radius:6px;
    transition:.3s;
    align-items:center;
    gap:10px;
    text-decoration: none;
}

.quote-btn:hover{
    background:#012245;
    color:#fff;
}



/* HERO SECTION */
.hero{
    position:relative;
    background:url('images/Banner.jpg') center center/cover no-repeat;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding: 61px 15px 100px;
}
.hero-content{
    position:relative;
    z-index:2;
    max-width:800px;
}
.hero-title{
    font-family: "ChampionGothic-Middleweight";
    font-size:74px;
    line-height:90px;
    color:#fff;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:25px;
}
.hero-title span{
    background:#0566D1;
    display:block;
    color: #fff;
    width: 300px;
    height: 108px;
    font-family: "ChampionGothic-Middleweight";
}
/* RATINGS */
.rating-wrapper{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:47px;
}
.rating-box{
    background:#FFFFFF6B;
    border-radius:8px;
    padding:12px 18px;
    display:flex;
    align-items:center;
    gap:12px;
    min-width:200px;
}
.rating-box img{
    width:38px;
    background: #fff;
    border-radius: 100px;
    padding: 7px;
}
.rating-text h6{
    margin:0;
    font-size:15px;
    font-weight: 700;
    color:#fff;
}
.rating-text p{
    margin:0;
    font-size:16px;
    color:#fff;
    font-weight: 400;
}
.stars{
    color:#f5b301;
    font-size:15px;
}

/* ====== TRUST BAR ====== */

.trust-bar{
    background:url('images/bg-image.jpg');
    background-position:center center;
    background-repeat:no-repeat;
    background-size:cover;
    padding:53px 10px;
}

/* DESKTOP */

.trust-bar .trust-logos{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:30px;
}

.logos-design{
    box-shadow:
    0px 4px 8px rgba(0,0,0,0.1),
    0px 6px 20px rgba(0,0,0,0.1);

    background:#fff;
    border-radius:8px;

    width:100%;

    display:flex;
    align-items:center;
    justify-content:center;
}

.logos-design img{
    height:110px;
    width:100%;
    object-fit:contain;
    padding:15px 30px;
}



/* ===================================
        BADGE STRIP
=================================== */

.badge-strip{
    background:#0460D7;
    overflow:hidden;
    padding:18px 0;
    white-space:nowrap;
    position:relative;
}

.strip-track{
    display:flex;
    width:max-content;
    animation:scrollStrip 18s linear infinite;
}

.strip-items{
    display:flex;
    align-items:center;
}

.strip-item{
    display:flex;
    align-items:center;
    gap:12px;
    color:#fff;
    font-size:20px;
    font-weight:700;
    margin-right:80px;
    text-transform:uppercase;
    flex-shrink:0;
    font-family: 'Satoshi';
}

.strip-item img{
    width:24px;
    height:24px;
    object-fit:contain;
}

/* ANIMATION */

@keyframes scrollStrip{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}


/* =========================
   Review SECTION
========================= */

.review-section{
    background:url('images/bg-image.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding:90px 15px 122px;
    position:relative;
    overflow:hidden;
}
/* =========================
   TOP CONTENT
========================= */

.review-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#062b57;
    color:#fff;
    padding:8px 38px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:24px;
    font-weight: 'Satoshi', sans-serif;
}

.review-title{
    font-family: "ChampionGothic-Middleweight";
    font-size:54px;
    text-transform:uppercase;
    line-height:1;
    margin-bottom:20px;
    color:#000;
}

.rate-box{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin-bottom:50px;
    flex-wrap:wrap;
}
.review-section strong{
    font-size: 24px;
    line-height: 30px;
    font-family: 'BalboaW01-Bold';
    color: #000;
}

.rate-box img{
    width:22px;
    background: #fff;
    padding: 4px;
    border-radius: 100px;
    box-shadow:0px 4px 8px 0px rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
}

.rating-stars{
    color:#ff7a00;
    letter-spacing:2px;
}

/* =========================
   REVIEW CARD
========================= */

.review-card{
    background:#fff;
    border-left:1px solid #3C63AE;
    border-top:1px solid #3C63AE;
    border-right:1px solid #35C0F1;
    border-bottom:1px solid #35C0F1;
    padding:38px 30px;
    border-radius:6px;
    height:100%;
    transition:.3s;
}

.review-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
}

.quote-icon{
    font-size:58px;
    color:#38a9f3;
    line-height:1;
}

.google-icon img{
    width:60px;
    margin-top: 20px;
}

.review-text{
    font-size:20px;
    line-height:1.9;
    color:#222;
    margin-bottom:38px;
    font-weight: 500;
    font-family: 'Satoshi';
}

.review-stars{
    color:#f6b400;
    margin-top: 70px;
    margin-bottom:6px;
    letter-spacing:2px;
    font-size: 30px;
}

.review-name{
    font-size:18px;
    text-transform:uppercase;
    font-family: "ChampionGothic-Middleweight";
}

/* =========================
   CAROUSEL
========================= */

.carousel-inner{
    overflow:visible;
}

.carousel-item{
    transition:transform .7s ease-in-out;
}

/* =========================
   CUSTOM CONTROLS
========================= */

.carousel-controls{
    margin-top:55px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
}

.custom-btn{
    width:54px;
    height:54px;
    border-radius:50%;
    border:1px solid #222;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    color:#111;
    transition:.3s;
}

.custom-btn:hover{
    transform:scale(1.08);
}

.custom-btn.next{
    background:#1568d8;
    border:none;
    color:#fff;
}

.slider-lines{
    display:flex;
    align-items:center;
    gap:8px;
}

.slider-lines span{
    width:24px;
    height:3px;
    background:#444;
    display:block;
}

.slider-lines span.active{
    background:#2c7cff;
}

/*
.shape-img{
    background: url('images/shape-image.png');
    height: 160px;
    background-position: center center;
    background-size: cover;
    margin-top: -100px!important;
    z-index: 9!important;
    position: relative!important;
    background-repeat: no-repeat;
}
*/

.shape-img{
    width:100%;
    line-height:0;
    position:relative;
    margin-top: -100px!important;
    z-index: 9!important;
}

.shape-img img{
    width:100%;
    display:block;
}


/* =====================================
            about SECTION
====================================== */

.about-section{
    padding:140px 15px 196px;
    background: url('images/bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    margin-top: -100px;
}
/*
.about-section .gy-5 {
    --bs-gutter-y: 10rem;
}
*/

/* LEFT CONTENT */
.about-content .sub-title{
    color:#0460D7;
    font-size:16px;
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:15px;
    display:block;
    letter-spacing:1px;
}
.about-image{
    width: 100%!important;
    max-width: 100%!important;
}

.about-content h2{
    font-size:54px;
    text-transform: uppercase;
    color:#111;
    line-height:1.2;
    margin-bottom:15px;
}

.about-content p{
    font-size:16px;
    color:#666;
    line-height:1.8;
    margin-bottom:8px;
}

/* RIGHT IMAGE */
/*
.about-image{
    position:relative;
    height: 630px;
    background: url('images/work-image.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 10px;
}
*/
.about-image img{
    width:100%;
    border-radius:10px;
    object-fit:cover;
}

.shape-top{
    background: url('images/top-shape.png');
    height: 116px;
    background-position: center center;
    background-repeat: no-repeat;
    margin-top: -125px!important;
    z-index: 9!important;
    position: relative!important;
    background-size: cover;
}

.about-section .about-btn{
    margin-top: 30px;
}

.about-section .about-btn .quote-btn, .services-section .quote-btn{
    padding: 14px 74px!important;
}

.about-section .about-btn .quote-btn img, .services-section .quote-btn img{
    width: 20px;
    height: 18px;
    margin-top: -6px;
    margin-left: 5px;
}
.services-section .text-center{
    margin-top: 20px;
}
/* =========================
       TEAM CARD
    ========================== */

    .team-card{
      position:relative;
      width:100%;
      max-width:100%;
      border-radius:16px;
      overflow:hidden;
      border:2px solid #0d67d9;
      background:#fff;
    }

    .team-image{
      position:relative;
      width:100%;
      height:630px;
      overflow:hidden;
    }

    .team-image img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }

    /* =========================
       BOTTOM CONTENT
    ========================== */

    .team-overlay{
      position:absolute;
      left:0;
      bottom:0;
      width:90%;
      min-height:74px;

      background:#02264d;

      display:flex;
      align-items:center;

      padding:16px 28px;

      border-top-right-radius:150px;

      z-index:2;
      border-top: 2px solid #fff;
      border-right: 2px solid #fff;
    }

    .team-title{
      color:#fff;
      font-size:24px;
      line-height:1.1;
      text-transform:uppercase;
      letter-spacing:.5px;
      margin:0;
      font-family: "ChampionGothic-Middleweight";
    }

/*-------services section-------*/
.services-section{
    padding:70px 15px 103px;
    background:url('images/bg-image.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position:relative;
    overflow:hidden;
    z-index: 8;
}

.section-title{
    font-family: "ChampionGothic-Middleweight";
    font-size:54px;
    text-transform:uppercase;
    line-height:1;
    margin-bottom:20px;
    position:relative;
    z-index:2;
    letter-spacing:1px;
    color: #000;
}
.section-title span, h2 span{
    color:#1e73e8;
    font-family: "ChampionGothic-Middleweight";
}
.service-card{
    position:relative;
    margin-bottom:60px;
    z-index:2;
}
.service-image{
    width:100%;
    height:340px;
    object-fit:cover;
    border-radius:6px;
    display:block;
    border-bottom:4px solid #1e73e8;
}
.service-content{
    position:absolute;
    left:18px;
    right:18px;
    bottom:-18px;
    background:#fff;
    border-radius:40px;
    padding:12px 18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    border-bottom:4px solid #0566D1;
}
.service-left{
    display:flex;
    align-items:center;
    gap:20px;
}

.icon-circle{
    width:42px;
    height:42px;
    min-width:42px;
    border-radius:50%;
    background:#1e73e8;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
}
.service-title{
    padding-top: 10px;
}
.service-title a{
    margin:0;
    font-size:23px;
    text-transform:uppercase;
    color:#000;
    line-height:1.2;
    font-family: "ChampionGothic-Middleweight";
    text-decoration: none;
}
.arrow-btn{
    width:34px;
    height:34px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#111;
    font-size:18px;
    transition:0.3s;
}
.service-card:hover .arrow-btn{
    transform:translateX(4px);
}

/*----shape bottom---*/
.shape-bottom{
    background: url('images/bottom-shape.png');
    height: 116px;
    background-position: center center;
    background-repeat: no-repeat;
    margin-top: -48px;
    z-index: 9!important;
    position: relative!important;
    background-size: cover;
}


/*------Choose section------*/
.choose-section{
    position:relative;
    overflow:hidden;
    padding:130px 15px 150px;
    background:url('images/bg.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -90px;
}

.main-title{
    font-family: "ChampionGothic-Middleweight";
    font-size:54px;
    line-height:1;
    text-transform:uppercase;
    color:#000;
    margin-bottom:50px;
    position:relative;
    z-index:2;
    letter-spacing:1px;
}

.main-title span{
    color:#156eea;
}

/* Right Boxes */
/* Right Boxes */

.feature-box{
    position:relative;
    display:flex;
    align-items:center;
    min-height:129px;
    background:#000;
    border-radius:4px;
    overflow:hidden;
    margin-bottom:18px;
    padding-left:40px;
    z-index:1;
}

/* BLUE BACKGROUND */

.feature-box::after{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:134px;
    height:100%;
    background:#0566D1;
    clip-path:polygon(0 0, 52% 0, 116% 106%, 0% 109%)
}

/* SHAPE IMAGE */

.feature-box::before{
    content:"";
    position:absolute;
    left:0;
    top:0;

    width:213px;
    height:100%;

    background:url("images/choose-img.svg");
    background-repeat:no-repeat;
    background-position:right center;
    background-size:100% 100%;

    z-index:2;
}

.icon-wrapper{
    position:relative;
    width:72px;
    height:72px;
    background:#fff;
    border-radius:4px;
    margin-left:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:2;
    flex-shrink:0;
}
.icon-wrapper i{
    font-size:30px;
    color:#000;
}

.feature-title{
    position:relative;
    z-index:2;
    color:#fff;
    font-family: "ChampionGothic-Middleweight";
    text-transform:uppercase;
    font-size:28px;
    line-height:1.1;
    margin-left:28px;
    letter-spacing:0.5px;
}

.choose-section .g-5{
    --bs-gutter-x: 7rem;
}


/* =========================
       Materials SECTION
========================== */

.materials-section{
    position:relative;
    overflow:hidden;
    padding:110px 15px 80px;
    background:url('images/bg-image.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -100px;
}


/* =========================
       DESCRIPTION
========================== */

.section-description{
    max-width: 90%;
    margin:0 auto 38px;
    color:#000;
    font-size:16px;
    line-height:1.9;
    font-weight:500;
    font-family: 'Satoshi';
}

/* =========================
       LOGO CARDS
========================== */

.brand-card{
    background:#fff;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
    height: 100%!important;
}

.brand-card:hover{
    transform:translateY(-4px);
}
.brand-card img{
    max-width:100%;
    object-fit:contain;
}
.logo-row{
    --bs-gutter-x: 68px;
    --bs-gutter-y: 30px;
}


/*-----Process section----*/
.process-section{
    padding:60px 15px;
    position:relative;
    overflow:hidden;
}
.process-section .row.align-items-stretch{
    align-items:flex-start !important;
}
.accordion-wrapper{
    margin-top: 46px;
}
.accordion-left span{
    font-family: "ChampionGothic-Middleweight";
    font-size:24px;
    line-height:33px;
    text-transform:uppercase;
    letter-spacing:1px;
    color: #fff;
    text-align: left;
}

.accordion-btn.active .accordion-left span{
    color: #000;
}
.main-title span{
    color:#1264d9;
}
.accordion-item-custom{
    border:none;
    margin-bottom:14px;
    overflow:hidden;
    border-radius:6px;
    padding: 15px!important;
    background: #000;
}
.accordion-btn{
    width:100%;
    color:#fff;
    border:none;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0px;
    font-family: "ChampionGothic-Middleweight";
    text-transform:uppercase;
    font-size:26px;
    letter-spacing:.5px;
    transition:.3s;
    background: #000;
    padding-left: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.accordion-btn.active{
    background:#fff;
    padding: 12px!important;
}
.accordion-left{
    display:flex;
    align-items:center;
    gap:30px;
}

.icon-box{
    width:42px;
    height:42px;
    background:#fff;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    border-radius:2px;
    flex-shrink:0;
}

.arrow-circle{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#1565d8;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    flex-shrink:0;
}
.accordion-item-custom.active .up-circle{
    color: #000!important;
    padding: 0px!important;
    background: transparent!important;
    width:auto!important;
    height:auto!important;
}

.accordion-content{
    color:#fff;
    max-height:0;
    overflow:hidden;
}
.accordion-content p{
    padding:0 0 20px;
    margin:0;
    font-size:18px;
    line-height:26px;
}

.accordion-item-custom.active .accordion-content{
    max-height:200px;
    padding-top:15px;
}
.accordion-item-custom.active{
    background: #0460D7;
}
.image-card{
    background:#fff;
    padding:10px;
    border-radius:6px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    height:100%;
}

.image-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:8px;
    min-height:550px;
}


/*-------Gallery section------*/
.gallery-section{
    position:relative;
    padding:70px 15px 90px;
    overflow:hidden;
    background: url('images/gallery-section-image.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#08264a;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:11px;
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:24px;
}

/* =========================
       Carousel Layout
========================== */

.custom-gallery-carousel{
    position:relative;
    margin-top: 45px;
}
.gallery-slide{
    display:grid;
    grid-template-columns:1fr 2fr 1fr;
    gap:16px;
    align-items:stretch;
}
.side-column{
    display:grid;
    gap:16px;
}
.gallery-card{
    overflow:hidden;
    border-radius:8px;
    background:#ddd;
    position:relative;
}
.gallery-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.4s ease;
}

.gallery-card:hover img{
    transform:scale(1.05);
}
.small-card{
    height:312px;
}
.center-card{
    height:647px;
}

/* =========================
       Carousel Buttons
========================== */

.carousel-controls{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:16px;
    margin-top:40px;
}

.carousel-btn{
    width:56px!important;
    height:56px;
    border-radius:50%;
    display:flex !important;
    align-items:center;
    justify-content:center;
    font-size:22px;
    transition:all .3s ease;
    opacity:1 !important;
    box-shadow:none;
    padding:0;
}

/* LEFT BUTTON */
.carousel-control-prev.carousel-btn{
    background:#fff;
    border:1.5px solid #111;
    color:#111;
}

/* RIGHT BUTTON */
.carousel-control-next.carousel-btn{
    background:#1565d8;
    border:1.5px solid #1565d8;
    color:#fff;
}
.carousel-btn:hover{
    transform:translateY(-2px);
}

/* Remove Bootstrap default icon */
.carousel-control-prev-icon,
.carousel-control-next-icon{
    display:none;
}

/* Bootstrap Override */
.carousel-control-prev,
.carousel-control-next{
    position:static;
    width:auto;
    opacity:1;
}

/*------service-area-section-----*/
.service-area-section{
    position:relative;
    overflow:hidden;
    padding:100px 15px 100px;
    background: linear-gradient(to bottom, #9EC1E8, #D9E7F6);
    margin-top: -80px;
}

.service-wrapper{
    position:relative;
    z-index:2;
}

/* LOCATION BUTTONS */

.location-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin-bottom: 45px;
    margin-top: 45px;
}

.location-btn{
    height:54px;
    border-top:1.5px solid #3C63AE;
    border-left:1.5px solid #3C63AE;
    border-right:1.5px solid #35C0F1;
    border-bottom:1.5px solid #35C0F1;
    background:#fff;
    border-radius:6px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    color:#111;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    transition:.3s;
    font-family: 'Satoshi';
}

.location-btn:hover{
    background:#1565d8;
    color:#fff;
}

.location-btn i{
    color:#1da1ff;
    font-size:20px;
}

.location-btn:hover i{
    color:#fff;
}

/* MAP */

.map-wrapper{
    position:relative;
}

.map-card{
    overflow:hidden;
    border-radius:8px;
    background:#fff;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    height:100%;
}

.map-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    min-height:520px;
    display:block;
}

/* DOT DESIGN */
.dots-top{
    position:absolute;
    top:20px;
    right:0px;
    width:400px;
    height:470px;
    background-image:url('images/dots.svg');
    opacity:1;
    z-index:0;
}

.dots-bottom{
    position:absolute;
    bottom:20px;
    left:0px;
    width:320px;
    height:390px;
    background-image:url('images/bottom-dot.png');
    opacity:.8;
    z-index:0;
}

/*----blue top shape----*/
.blue-top-shape{
    background: url('images/blue-top-shape.png');
    height: 136px;
    background-position: center; center;
    background-repeat: no-repeat;
    z-index: 9!important;
    position: relative!important;
    background-size: cover;
    margin-top: -68px;
}

/*----blue top shape----*/
.blue-bottom-shape{
    background: url('images/bottom-blue-shape.png');
    height: 116px;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 9!important;
    position: relative!important;
    background-size: cover;
    margin-top: -75px;
}


/*----FAQ Section----*/
.faq-section{
    position:relative;
    padding:72px 0 83px;
    overflow:hidden;
}

.faq-wrapper{
    position:relative;
    z-index:2;
}


/* =========================
       FAQ ACCORDION
========================== */

.faq-accordion{
    display:flex;
    flex-direction:column;
    gap:16px;
}
.faq-item{
    border-radius:6px;
    overflow:hidden;
    background:#012245;
    transition:.3s;
}
.faq-item.active{
    background:#0363CD;
}
.faq-item.active .faq-btn{
    padding-bottom: 20px;
}
.faq-btn{
    width:100%;
    border:none;
    background:transparent;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:34px 34px;
    text-align:left;
    cursor:pointer;
}
.faq-question{
    font-family: "ChampionGothic-Middleweight";
    text-transform:uppercase;
    font-size:24px;
    line-height:1.2;
    letter-spacing:.5px;
    margin:0;
}

 /* icon */
.faq-icon{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#0363CD;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    font-size:18px;
    transition:.3s;
}
.faq-item.active .faq-icon{
    background:#0b57c0;
    transform:rotate(45deg);
}

/* answer */
.faq-content{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-item.active .faq-content{
    max-height:300px;
}

.faq-answer{
    color:#fff;
    font-size:16px;
    line-height:25px;
    padding:0 34px 34px;
    max-width:95%;
    margin:0;
    font-family: 'Satoshi';
    font-weight: 500;
}


/* =========================
       FOOTER
========================== */

.main-footer{
    position:relative;
    overflow:hidden;
    background:url('images/footer-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding:70px 15px 12px;
    color:#fff;
}
.footer-wrapper{
    position:relative;
    z-index:2;
}

/* =========================
       LOGO AREA
========================== */

.footer-logo{
    margin-bottom:22px;
}

.footer-logo img{
    max-width:318px;
}
.footer-description{
    max-width:310px;
    color:#fff;
    font-size:16px;
    line-height:1.7;
    font-family: "ChampionGothic-Middleweight";
}

/* =========================
       TITLES
========================== */

.footer-title{
    font-family: "ChampionGothic-Middleweight";
    text-transform:uppercase;
    font-size:22px;
    letter-spacing:1px;
    margin-bottom:28px;
}

/* =========================
       LINKS
========================== */

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    font-size:18px;
    transition:.3s;
}

.footer-links a:hover{
    color:#0d6efd;
    padding-left:4px;
}

/* =========================
       CONTACT BAR
========================== */

.footer-contact-box{
    margin-top:30px;
    border:1.5px solid #0d6efd;
    border-radius:8px;
    padding:22px 45px;
}
.footer-contact-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
    flex-wrap:wrap;
}

/* left info */

.footer-contact-info{
    display:flex;
    align-items:center;
    gap:28px;
    flex-wrap:wrap;
}

.info-item{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-size:14px;
    font-weight:600;
}

.info-icon{
    width:25px;
    height:25px;
    border-radius:50%;
    background:#0566D1;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    flex-shrink:0;
}

/* social */

.footer-social{
    display:flex;
    align-items:center;
    gap:12px;
}

.social-icon{
    width:50px;
    height:50px;
    border-radius:50%;
    border:1.5px solid #0d6efd;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:17px;
    transition:.3s;
}
.social-icon:hover{
    background:#0d6efd;
    color:#fff;
    transform:translateY(-2px);
}

/* =========================
       BOTTOM
========================== */

.footer-bottom{
    margin-top:20px;
}
.copyright{
    color:#9CA3AF;
    font-size:12px;
}

.footer-credit{
    text-align:right;
    justify-content: right;
}

.footer-credit p{
    font-size: 12px;
    font-weight: 500;
    font-family: 'Satoshi';
    color: #9CA3AF;
    margin-top: 10px;
}
.footer-credit img{
    max-width:110px;
}



/* ==================================================
                   Media Query
================================================== */





/* ==================================================
                    1601px
================================================== */

@media (min-width:2100px){
    .shape-img{
        background: #f4f4f4;
    }
}



/* ==================================================
                    1200px
================================================== */

@media (max-width:1200px){


    .header{
        gap:25px;
    }

    .navbar ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    .header-right{
        flex-wrap:wrap;
        justify-content:center;
    }

    .review-title{
        font-size:48px;
    }

}

/* ==================================================
                    1199px
================================================== */

@media (max-width:1199px){

    /* TOP BAR */

    .top-bar{
        height:auto;
        padding:10px 0;
        margin:0 !important;
    }

    .top-bar-container{
        width:100%;
        max-width:100%;
        padding:0 20px;
        flex-wrap:wrap;
        justify-content:center;
        gap:10px;
    }

    .top-bar-white,
    .top-bar-white-extend{
        display:none;
    }

    .top-bar-text{
        width:100%;
        padding:0;
        text-align:center;
        white-space:normal;
        font-size:12px;
    }

    .top-bar-right{
        width:100%;
        justify-content:center;
        gap:15px;
    }

    .custom-navbar{
        padding:0 15px !important;
    }

    .navbar-brand img{
        margin:0 !important;
    }

    /* GENERAL */

    .main-title{
        font-size:48px;
    }

    .feature-title{
        font-size:22px;
    }

    .accordion-btn{
        font-size:22px;
    }

    .image-card img{
        min-height:560px;
    }

    .map-card img{
        min-height:470px;
    }

    .faq-question{
        font-size:24px;
    }

    .footer-title{
        font-size:24px;
    }

}

/* ==================================================
                    992px
================================================== */

@media (max-width:992px){

    .review-title{
        font-size:40px;
    }

    .review-card{
        margin-bottom:24px;
    }

}

/* ==================================================
                    991px
================================================== */

@media (max-width:991px){

    /* HEADER */

    .desktop-header{
        display:none;
    }

    .mobile-header{
        display:flex;
    }

    .header{
        padding:15px 20px;
    }

    .logo{
        width:170px;
    }

    .menu-toggle{
        display:block;
    }

    .header-right{
        display:none;
    }

    /* NAVBAR */

    .navbar{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        align-items:flex-start;
        padding:0;
        max-height:0;
        overflow:hidden;
        transition:.4s ease;
        box-shadow:0 10px 20px rgba(0,0,0,.08);
        z-index:999;
    }

    .navbar.active{
        max-height:600px;
        padding:20px;
    }

    .navbar ul{
        flex-direction:column;
        align-items:flex-start;
        width:100%;
        gap:20px;
    }

    .navbar ul li{
        width:100%;
    }

    .navbar ul li a{
        display:block;
        width:100%;
        font-size:15px;
    }

    /* MOBILE BUTTON */

    .mobile-btn{
        display:block;
        width:100%;
        margin-top:20px;
    }

    .mobile-btn .quote-btn{
        width:100% !important;
        justify-content:center;
    }

    /* HERO */

    .hero{
        min-height:600px;
    }

    .hero-title{
        font-size:52px;
        line-height:60px;
    }

    /* ABOUT */

    .about-section{
        padding:85px 15px;
    }

    .about-content{
        margin-bottom:50px;
    }

    .about-content h2{
        font-size:40px;
    }

    /* TITLES */

    .section-title{
        font-size:42px;
    }

    .main-title{
        font-size:42px;
    }

    /* SERVICES */

    .services-section{
        padding:20px 15px 46px;
    }

    .service-title{
        font-size:15px;
    }

    /* CHOOSE */

    .choose-section{
        padding:130px 15px 115px;
    }

    .left-content{
        text-align:center;
        margin-bottom:50px;
    }

    .feature-title{
        font-size:20px;
    }

    /* MATERIAL */

    .materials-section{
        padding:105px 15px 85px;
    }

    .section-description{
        margin-bottom:40px;
    }

    /* PROCESS */

    .process-section{
        padding:40px 15px;
    }

    .image-wrapper{
        margin-top:35px;
    }

    .image-card img{
        min-height:450px;
    }

    /* SERVICE AREA */

    .service-area-section{
        padding:125px 15px 90px;
    }

    .map-card img{
        min-height:420px;
    }

    /* FAQ */

    .faq-section{
        padding:70px 15px;
    }

    .faq-question{
        font-size:21px;
    }

    /* FOOTER */

    .main-footer{
        padding:60px 15px 25px;
    }

    .footer-column{
        margin-bottom:35px;
    }

    .footer-contact-inner{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-social{
        margin-top:10px;
    }

    .footer-credit{
        text-align:left;
        margin-top:15px;
    }

    /* GALLERY */

    .center-card{
        height:403px;
    }

}

/* ==================================================
                    768px
================================================== */

@media (max-width:768px){
    .shape-img{
        margin-top: -31px!important;
    }
    .about-section{
        margin-top: -31px!important;
    }
    .materials-section{
        margin-top: -49px!important;
    }
        .choose-section .g-5 {
        --bs-gutter-y: 0rem;
    }

    .header{
        padding:20px;
    }

    .navbar ul{
        gap:18px;
    }

    .quote-btn{
        width:100% !important;
        padding:15px 22px;
        text-align:center;
        display:inline-block;
    }

    /* REVIEW */

    .review-section{
        padding:70px 15px 90px;
    }

    .review-title{
        font-size:32px;
        line-height:1.2;
    }

    /* TRUST BAR */

    .trust-bar .trust-logos{
        flex-wrap:wrap;
    }

    .trust-bar .container{
        margin:10px;
        margin-left: 0px;
    }

    /* HERO */

    .hero-title span{
        width:222px;
        height:82px;
    }

    /* TEAM */

    .team-image{
        height:520px;
    }

    .team-overlay{
        width:92%;
        min-height:68px;
        padding:14px 22px;
    }

    .team-title{
        font-size:22px;
    }
    .team-card{
        max-width: 100%!important;
    }
    .small-card{
    height:190px;
}
.mobile-menu{
    width:320px !important;
    max-width:320px;
}
}

/* ==================================================
                    767px
================================================== */

@media (max-width:767px){

    /* TOP BAR */

    .top-bar{
        padding:12px 0;
    }
    .about-section .gy-5 {
    --bs-gutter-y: 1rem;
}

    .top-bar-container{
        padding:0 15px;
        flex-direction:column;
        gap:8px;
    }

    .top-bar-text{
        font-size:11px;
        line-height:1.5;
    }

    .top-bar-right{
        flex-direction:column;
        gap:8px;
    }

    .top-bar-phone{
        font-size:12px;
    }

    .top-bar-socials{
        gap:10px;
    }

    .top-bar-socials a{
        font-size:14px;
    }

    /* MOBILE HEADER */

    .mobile-logo img{
        max-height:46px;
    }

    .mobile-phone,
    .mobile-toggle{
        width:40px;
        height:40px;
    }

    /* HERO */

    .hero{
        min-height:550px;
    }

    .hero-title span{
        width:216px;
        height:75px;
    }

    .rating-box,
    .hero-btn{
        width:100%;
    }

    .hero-btn{
        justify-content:center;
    }

    /* ABOUT */

    .about-content h2{
        font-size:32px;
    }

    .about-content p{
        font-size:15px;
    }

    .about-image{
        height:390px;
    }

    /* TITLES */

    .section-title{
        font-size:34px;
        line-height:1.15;
    }

    .main-title{
        font-size:34px;
    }

    /* SERVICES */
/*
    .services-section{
        padding:0;
    }*/

    .services-section .text-center{
        margin-bottom:40px;
    }

    .service-content{
        left:12px;
        right:12px;
        padding:10px 14px;
    }

    .service-title{
        font-size:14px;
    }

    .icon-circle{
        width:36px;
        height:36px;
        min-width:36px;
        font-size:15px;
    }

    /* BUTTON */

    .quote-btn{
        width:100% !important;
        padding:13px 30px;
        text-align:center;
        display:inline-block;
    }

    /* CHOOSE */

    .choose-section{
        padding:115px 15px 75px;
    }

    .choose-section .g-5{
        --bs-gutter-y:0rem;
    }

    .feature-box{
        min-height:78px;
        padding-left:18px;
    }

    .feature-box::before{
        width:171px;
    }

    .feature-title{
        font-size:16px;
        margin-left:18px;
    }

    .icon-wrapper{
        width:58px;
        height:58px;
        margin-left:12px;
    }

    .icon-wrapper i{
        font-size:24px;
    }

    /* MATERIALS */

    .materials-section{
        padding:65px 15px 75px;
        margin-top:-23px!important;
    }

    .section-description{
        font-size:13px;
        line-height:1.8;
    }

    .brand-card{
        height:75px;
    }

    .brand-card img{
        max-height:48px;
    }

    /* PROCESS */

    .accordion-btn{
        font-size:18px;
        padding:3px 7px 5px;
    }

    .accordion-left{
        gap:26px;
    }

    .accordion-left span{
        font-size:15px;
        line-height:22px;
    }

    .icon-box{
        width:36px;
        height:36px;
        font-size:16px;
    }

    .icon-box img{
        width:42px;
    }

    .arrow-circle{
        width:30px;
        height:30px;
        font-size:15px;
    }

    .accordion-content p{
        font-size:14px;
    }

    .image-card img{
        min-height:340px;
    }

    /* SERVICE AREA */

    .location-grid{
        grid-template-columns:1fr;
    }

    .map-card img{
        min-height:320px;
    }

    .service-area-section{
        padding:100px 15px 61px;
    }

    .location-btn{
        height:50px;
        font-size:13px;
    }

    /* FAQ */

    .faq-section{
        padding:40px 15px 70px;
    }

    .faq-btn{
        padding:20px 18px;
        gap:14px;
    }

    .faq-question{
        font-size:17px;
    }

    .faq-answer{
        padding:0 18px 20px;
        font-size:13px;
        line-height:1.8;
    }

    .faq-icon{
        width:30px;
        height:30px;
        font-size:15px;
    }

    /* FOOTER */

    .footer-title{
        font-size:22px;
        margin-bottom:20px;
    }

    .footer-contact-box{
        padding:20px;
    }

    .footer-contact-info{
        flex-direction:column;
        align-items:flex-start;
        gap:16px;
    }

    .footer-social{
        flex-wrap:wrap;
    }

    .footer-logo img{
        max-width:210px;
    }

    .copyright{
        text-align:center;
    }

    .footer-credit{
        justify-content:center;
    }

    /* SHAPES */

    .shape-img{
        background:transparent;
        margin-top:-30px !important;
    }


    .shape-bottom{
        height:105px;
    }

    .blue-top-shape{
        height:118px;
    }

    .blue-bottom-shape{
        margin-top:-63px;
    }

    /* LOGOS */

    .logo-row{
        --bs-gutter-x:20px;
        --bs-gutter-y:20px;
    }

    .trust-bar{
        padding:40px 15px;
    }

    .trust-bar .container{
        margin:0;
    }

    .logos-design img{
        height:85px;
        padding:12px 18px;
    }

    /* GALLERY */

    .gallery-section{
        padding:70px 15px 55px;
    }

    .small-card{
        height:92px;
    }

    .center-card{
        height:200px;
    }

    /* REVIEW CAROUSEL */

    .review-title{
        font-size:34px;
        line-height:1.1;
    }

    .review-text{
        font-size:17px;
        line-height:1.7;
    }

    .review-stars{
        margin-top:30px;
        font-size:24px;
    }

    .review-card{
        padding:30px 22px;
    }

    .carousel-controls{
        margin-top:40px;
        gap:14px;
    }

    .custom-btn{
        width:48px;
        height:48px;
        font-size:16px;
    }

    .slider-lines span{
        width:18px;
    }

    .google-icon img{
        width:50px;
    }

    .quote-icon img{
        width:40px;
    }

    #reviewCarousel .carousel-item .row{
        display:flex;
        flex-wrap:nowrap;
        overflow:hidden;
        gap:0 !important;
    }

    #reviewCarousel .carousel-item .col-lg-4,
    #reviewCarousel .carousel-item .col-md-6{
        flex:0 0 100%;
        max-width:100%;
    }

    #reviewCarousel .carousel-item .col-lg-4{
        display:none;
    }

    #reviewCarousel .carousel-item.active .col-lg-4:first-child{
        display:block;
    }
    .feature-box::after{
        width: 97px;
        clip-path: polygon(0 0, 59% 0, 116% 106%, 0% 109%);
    }

}

/* ==================================================
                    576px
================================================== */

@media (max-width:576px){

    .topbar{
        display:none;
    }

    .header{
        padding:14px 15px;
    }

    .logo{
        width:150px;
    }

    .review-title{
        font-size:26px;
    }

    .review-card{
        padding:28px 22px;
    }

    .custom-btn{
        width:48px;
        height:48px;
    }

    .slider-lines span{
        width:16px;
    }

    .quote-btn{
        width:100% !important;
        padding:14px 20px;
        text-align:center;
        display:inline-block;
    }

    .team-card{
        border-radius:12px;
    }

    .team-image{
        height:430px;
    }

    .team-overlay{
        width:95%;
        min-height:62px;
        padding:12px 18px;
        border-top-right-radius:55px;
    }

    .team-title{
        font-size:18px;
    }

}

/* ==================================================
                    480px
================================================== */

@media (max-width:480px){

    .main-title{
        font-size:28px;
    }

    .section-title{
        font-size:26px;
    }

    .feature-box{
        min-height:72px;
    }

    .feature-title{
        font-size:14px;
    }

    .icon-wrapper{
        width:50px;
        height:50px;
    }

    .icon-wrapper i{
        font-size:20px;
    }

    .mini-badge{
        font-size:10px;
    }

    .brand-card{
        height:75px;
        padding:15px;
    }

    .brand-card img{
        max-height:42px;
    }

    .accordion-btn{
        font-size:15px;
    }

    .map-card img{
        min-height:260px;
    }

    .faq-question{
        font-size:15px;
    }

    .main-footer{
        padding:50px 15px 20px;
    }

    .footer-title{
        font-size:20px;
    }

    .footer-links a,
    .footer-description{
        font-size:14px;
    }

    .social-icon{
        width:38px;
        height:38px;
        font-size:15px;
    }

}

/* ==================================================
                    420px
================================================== */

@media (max-width:420px){

    .team-image{
        height:360px;
    }

    .team-title{
        font-size:16px;
    }

}

@media(min-width:1100px) {
    .navbar-brand img {
        left: -65px;
    }
}