/* Reset & Box Model Fix */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Font-Face Setup */
@font-face {
  font-family: 'Gotham-Light';
  src: url("../fonts/Gotham-Light.woff2") format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Gotham-Regular';
  src: url("../fonts/Gotham-Regular.woff2") format('woff2');
  font-display: swap;
}  
@font-face {
  font-family: 'Gotham-Medium';
  src: url("../fonts/Gotham-Medium.woff2") format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Gotham-Bold';
  src: url("../fonts/Gotham-Bold.woff2") format('woff2');
  font-display: swap;
}  
@font-face {
  font-family: 'Gotham-Black';
  src: url("../fonts/Gotham-Black.woff2") format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Gotham-Book';
  src: url("../fonts/Gotham-Book.woff2") format('woff2');
  font-display: swap;
}  
/* Base HTML */
html {
  font-size: clamp(14px, 1.5vw, 16px);
  /* scroll-behavior: smooth; */
  font-family: 'Gotham-Book';
}
body {
  width: 100%;
  height: 100%;
  font-family: 'Gotham-Book';
  font-size: clamp(14px, 1.5vw, 15px);
  color:#000000;
  background-color: #FFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.menu-open{
  overflow: hidden;
}
/* Typography */
p {
  margin: 0 0 1em;
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5em;
  font-weight: 700;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  color: #000000;
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover,
a:focus {
  color: var(--link-hover-color);
  outline: none;
}
/* Accessibility */
:focus-visible {
  outline: 2px dashed #888;
  outline-offset: 4px;
}
b{
  font-family: 'Montserrat-SemiBold';
}
/* Utility */
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
body:has(.open) {
  overflow: hidden;
}
/* Header Start */
.page-header{
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    z-index: 999;
    transition: all 0.5s ease;
}
.is-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    transition: all 0.9s ease;
    animation: smoothScroll 1s;
    z-index: 999;
    box-shadow: 0px 0px 10px #00000017;
    animation: smoothScroll 1s forwards;
}
@keyframes smoothScroll {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
/* TOPBAR */
.topbar{
  background:#1f5fa9;
  padding:6px 0;
  color:#fff;
  font-size:14px;
}
.topbar-flex{
  display:flex;
  justify-content:flex-end;
}
.topbar a{
  color: #fff;
  margin-left: 25px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}
.topbar a img{
  max-height: 18px;
}
.topbar-right{
  display: flex;
  align-items: center;
  gap: 15px;
}
/* NAVBAR */
.navbar{
  background:#f2f2f2;
  position:relative;
  z-index:999;
}

.nav-flex{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo img{
  height:60px;
}

/* MENU */
.nav-menu ul{
  display:flex;
  align-items:center;
}

.nav-menu ul li{
  position:relative;
  list-style:none;
}
.nested-submenu li{
  width: 100%;
}
.nav-menu ul .has-submenu .submenu li{
  width: 100%;
}
.nav-menu ul li a{
  padding:10px 7px;
  color:#000;
  font-size:14px;
  display:block;
  width:100%;
  font-family: Gotham-Medium;
}
.nav-menu ul .has-submenu .submenu li a{
  padding:10px 7px 10px 12px;
  font-family: Gotham-Book;
  transition-duration: 0.3s;
  border-bottom: 1px solid rgb(240, 240, 240);
}
.nav-menu .submenu li a:hover {
    color: rgb(31, 95, 169);
    font-family: Gotham-Medium !important;
    transition-duration: 0.3s;
}
.nav-menu .homemenu a{
  background:#1e5b52;
  color:#fff;
  border-radius:10px;
  padding:10px 14px;
}

/* SUBMENU */
.submenu{
  position:absolute;
  top:100%;
  left:0;
  width:170px;
  background:#fff;
  opacity:0;
  visibility:hidden;
  transform:translateY(15px);
  transition:.3s;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
  flex-wrap: wrap;
}

/* HOVER OPEN */
.nav-menu ul li:hover > .submenu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* NESTED MENU */
.nested-submenu{
  left:100%;
  top:0;
}

/* ARROW */
.submenu-arrow{
  font-size: 9px;
  margin-left: 0px;
  color: #585858;
}
.submenu .has-submenu .submenu-arrow{
  position: absolute;
  right: 10px;
  top: 13px;
}
/* MOBILE ICON */
.menu-toggle{
  display:none;
  font-size:26px;
  cursor:pointer;
}

/* hide mobile toggle on desktop */
.submenu-toggle{
  display:none;
}




/* Hero Section Start */
.hero_slider{
  margin: 90px 0 0 0;
  padding: 0 0 10px 0px;
}
.hero_slider_inner{
	position:relative;
}
.hero_slider .banner_content{
  position: absolute;
  top: 0%;
  left: 0%;
  right: 0;
  bottom:0px;
  text-align: left;
  margin: 0 auto;
  z-index: 10;
  color: #fff;
  display: flex;
  align-items: center;
}
/* .banner_content{
  display: flex;
} */

.hero_sec_inner{
  padding: 0 0 30px 0;
}
.banner-heading{
  font-size:50px;
  color:#fff;
  font-family: 'Gotham-Regular';
  width: 100%;
  line-height: normal;
  margin: 0 0 10px 0;
  text-shadow: 6px 6px 0px #00000042;
}
.banner-second-heading{
  font-size:30px;
  color:#fff;
  font-family: 'Gotham-Book';
  width: 100%;
  line-height: normal;
  margin: 0 0 40px 0;
  text-shadow: 4px 2px 0px #00000042;
}
.banner_content .theme-btn img {
  max-height: 12px;
  width: auto !important;
}
.banner_content .theme-btn{
    background:#1258A8;
}
.banner_content .theme-btn:hover{
  background: #114B4A;
}
.banner_products{
  display: flex;
  gap: 17px;
  align-items: center;
  width: 49%;
  position: absolute;
  bottom: 13px;
  right: 0;
  z-index: 9;
}
.banner_product_box{
  width: 32%;
  background: #fff;
  border-radius: 15px;
  padding: 13px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  box-shadow: 0px 3px 5px #00000014;
}
.banner_product_box h6{
  font-size: 14px;
  color: #000;
  font-weight: inherit;
  margin: 0 0 10px 0;
}
.banner_product_box img{
  max-height: 60px;
  width: auto !important;
}
/* Hero Section End */
.about-section h1{
  font-size:28px;
  color:#1258A8;
  font-family: 'Gotham-Bold';
}
.heading{
  font-family: 'Gotham-Regular';
  font-size: 38px;
  margin-bottom:25px;
  line-height: normal;
}

/* About Us Start */
.about-section{
  padding:60px 0 60px 0;
}
.about-flex{
  display:flex;
  align-items:center;
  gap:55px;
}
/* IMAGE CARD */
.about-img{
  padding:0px;
  border-radius:30px;
  width:43%;
}
.about-img img{
  width:100%;
}
/* CONTENT */
.about-content{
  width:55%;
}
.about-content h2{
  color:#1f5fa9;
  font-size:34px;
  font-weight:700;
  margin-bottom:10px;
}
.about-content h5{
  font-weight:500;
  margin-bottom:20px;
  font-size:16px;
}
.about-content p{
  /* line-height:1.7; */
  margin-bottom:30px;
  color:#444;
}
/* BUTTON */
.theme-btn{
  background: #114B4A;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  transition: .3s;
  display: flex;
  align-items: anchor-center;
  width: fit-content;
  line-height: normal;
  gap: 7px;
  font-size: 15px;
  font-family: 'Gotham-Book';
}
.theme-btn img{
  max-height: 12px;
}
.theme-btn:hover{
  background:#1f5fa9;
  color:#fff;
}
/* About Us End */
/* Sectors We Serve Start */
.sectors_we_serve_sec {
  padding: 60px 0px 150px 0px;
  position: relative;
  background-image: url(../images/home/weserve-bg.webp);
  background-position: top center;
  background-size: 100%;
  background-repeat: no-repeat;
}
.sectors_we_serve_sec .heading{
  color:#fff;
}
.sectors_we_serve_sec p{
  color:#fff;
}
.sectors_we_serve_inner{
  display:flex;
}
.we_serve_box{
  width:25%;
  position:relative;
}
.we_serve_box1{
  background-image: linear-gradient(to bottom, #ffffff, #f9f7f9, #f5eef0, #f2e5e5, #ecded8);
  padding: 30px 0;
}
.we_serve_box2{
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgb(218 240 242) 70%);
  padding: 30px 0;
}
.we_serve_box3{
  background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(235, 245, 218, 1) 100%);
  padding: 30px 0;
}
.we_serve_last_box{
  /* background-image:url('../images/home/we-serve.webp'); */
  background-image:url('../images/home/off-highway.png');
  background-position:center;
  background-repeat: no-repeat;
  background-size:cover;
  padding: 30px 0;
  /* background: linear-gradient(180deg,rgb(255, 255, 255) 0%, rgb(216, 234, 255) 100%); */
}
.sectors_we_serve_secnew .we_serve_last_box{
  background: linear-gradient(180deg,rgb(255, 255, 255) 0%, rgb(216, 234, 255) 100%);
}
.we_serve_box img{
  max-width: 290px;
  margin: 0 auto;
}
.weserve_img{
  min-height: 370px;
  max-height: 370px;
}
.weserve_product_img{
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  min-height: 200px;
}
.weserve_product span{
  font-family: 'Gotham-Book';
  text-align: center;
  font-size: 28px;
  line-height: normal;
  margin: -50px 0 0 0;
}
.we_serve_box h4{
  font-size:25px;
  font-family: 'Gotham-Book';
  color:#000;
  font-weight: inherit;
  text-align: center;
  margin: 20px 0 50px 0;
}
.we_serve_box:hover h4{
  color:#1359A8;
  font-family: 'Gotham-Bold';
  transition-duration:0.3s;
}
.weserve_product{
  background: #ffffffba;
  border-radius:100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 200px;
  height: 200px;
  padding: 10px;
  position: absolute;
  z-index: 9;
  top: 107%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.weserve_product img{
  width: 100%;
  max-width: 160px;
}
.explore_morebtn{
  position:absolute;
  left:50%;
  bottom:-20%;
  transform:translate(-50%, 20px);
  opacity:0;
  visibility:hidden;
  transition:0.5s ease;
  z-index:10;
  display:flex;
  justify-content:center;
}
.we_serve_box .theme-btn img{
  max-height:12px;
}
.we_serve_box:hover .explore_morebtn{
  bottom:-38%;
  transform:translate(-50%, 0);
  opacity:1;
  visibility:visible;
}
/* Sectors We Serve End */
/* Our Products Start */
.our_products_sec{
  padding: 60px 0px 20px 0px;
  background-image: url(../images/home/our-products.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
}
.our_products_inner{
  /* display: flex;
  gap: 30px; */
  margin: 40px 0 0 0;
}
.our_products_inner .item{
    width:100%;
}

.our_products_inner .our_product_box{
  background: #F8F8F8;
  width: 100%;
  padding: 10px 10px 35px 10px;
  border-radius: 20px;
}
.product_img{
  border: 1px solid #E7E7E7;
  border-radius: 20px;
  background: #fff;
  padding: 20px 0;
  min-height: 180px;
  display: flex;
  align-items: center;
  padding: 10px;
}
.product_img img{
  background: #fff;
  border-radius: 20px;
}
.product_heading{
  text-align: center;
  padding:15px 0;
  color: #1359A8;
  font-family: 'Gotham-Bold';
  font-size: 14px;
}
.proexplore_more{
  text-align: center;
  display: flex;
  justify-content: center;
}
.proexplore_more .theme-btn img {
  width: auto !important;
  max-height: 12px;
  height: auto;
}
.our_products_sec .owl-carousel .owl-dots.disabled, .our_products_sec .owl-carousel .owl-nav.disabled{
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  margin: 30px 0 0 0;
}
.our_products_sec .theme-btn {
  background: #DDDDDD;
  color: #989898;
}
.our_product_box:hover .theme-btn{
  background-color: #114B4A;
  color:#fff;
}
.our_product_box:hover .product_img{
  border-color:#1258A8;
}
.our_products_sec .owl-nav .owl-prev{
    font-size: 0px;
    width: 40px;
    height: 40px;
    background-image: url(../images/home/blue-prev.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.our_products_sec .owl-nav .owl-next{
    font-size: 0px;
    width: 40px;
    height: 40px;
    background-image: url(../images/home/blue-next.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Our Products End */
/* Core Capabilities Start */
.core_capabilities_sec{
  padding:60px 0px 0px 0px;
}
.core_capabilities_sec .nav-tabs{
  border: none;
  gap: 15px;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  top: -25px;
}
.core_capabilities_sec .nav-link{
  background: #D6E1ED;
  border: none;
  color: #000000;
  font-size: 18px;
  line-height: normal;
  border-radius: 10px;
  padding: 10px 45px;
}
.core_capabilities_sec .nav-tabs .active{
  background-color:#1258A8;
  color:#fff;
}
.core_capabilities_inner{
  background: #F6FAFF;
  padding: 60px 0 60px 0;
  position: relative;
  margin: 50px 0 0 0;
}
.core_capabilities_inner ul{
  display:flex;
  justify-content:space-between;
  /* align-items: center; */
  flex-wrap: wrap;
}
.core_capabilities_inner ul li{
  width: 48%;
}
.core_capabilities_inner ul li a{
  padding: 4px 0 4px 17px;
  background-image: url(../images/home/pointlist.png);
  background-size: 12px;
  background-position: 0px 7px;
  background-repeat: no-repeat;
  font-size: 14px;
  display: block;
}
.capabilities_img img{
  border-radius: 15px;
}
/* Core Capabilities End */

/* Counter Start  */
.stats-section{
  padding:60px 0 60px 0px;
  background:#ffffff;
}
.stats-wrapper{
  margin: auto;
  display: flex;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0px 0px 30px rgb(0 0 0 / 10%);
  border: 11px solid #f9f9f9;
  width: 88%;
}
.stat-box{
  flex: 1;
  text-align: center;
  padding:30px 10px;
  color: #fff;
}
.stat-box:nth-child(1){
  background-image: linear-gradient(to bottom, #0b51a1, #1058ac, #1560b6, #1967c1, #1d6fcc);
}
.stat-box:nth-child(2){
  background-color:#2677D4;
}
.stat-box:nth-child(3){
  background-image: linear-gradient(to bottom, #0b51a1, #1058ac, #1560b6, #1967c1, #1d6fcc);
}
.stat-box:last-child{
  background-color:#2677D4;
}
.stat-box h2{
  font-size: 38px;
  margin-bottom: 10px;
  font-family: 'Gotham-Regular';
  font-weight: inherit;
  margin: 0;
}
.stat-box p{
  font-size: 15px;
  font-family: 'Gotham-Book';
  margin: 0;
}
/* Counter End  */

/* Our Customers Start */
.our-customers-sec{
  padding: 60px 0 0px 0;
  position: relative;
}
.our-customers-sec::before{
  content:"";
  position:absolute;
  inset:0;
  background: url(../images/home/our-customers.webp);
  background-position: center;
  background-size: contain;
  height:90%;
  z-index:-1;
}
.customer-item{
  background: #fff;
  padding: 8px 10px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 00 1px 14px rgb(0 0 0 / 11%);
  margin: 10px 0 10px 0;
  min-height: 70px;
  display: flex;
  align-items: center;
}
.our-customers-sec .customer-item img{
    max-height:50px;
    width:auto !important;
    margin:auto;
}

/* Our Customers End */












.sustainability {
  padding:0px 0 0px 0;
}

/* GRID */
.sustainability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 210px 210px;
  gap: 25px;
}

/* LEFT BIG */
.s-card.large {
  grid-row: 1 / span 2;
}

/* CARD */
.sustainability-grid .s-card {
  position: relative;
  border-radius: 40px 0 0 40px;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
}

.sustainability-grid .large {
  border-radius: 0 40px 40px 0;
}

/* IMAGE */
.s-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transform: scale(1);
  transition: transform 0.7s ease;
}

/* IMAGE HOVER ZOOM */
.s-card:hover img {
  transform: scale(1.08);
}

/* OVERLAY – ALWAYS VISIBLE */
.s-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px;

  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

/* TEXT DEFAULT */
.s-overlay h3 {
  color: #fff;
  font-size: 25px;
  margin: 0;
  font-family: 'Gotham-Bold';

  transform: translateY(0) scale(1);
  transition: transform 0.4s ease;
  will-change: transform;
}

/* 🔥 TEXT HOVER EFFECT */
.s-card:hover .s-overlay h3 {
  transform: translateX(20px) scale(1.06);
}

/* OPTIONAL – OVERLAY DARKER ON HOVER */
.s-card:hover .s-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}



/* Recent News Start */
.recent_news_section {
  padding: 60px 0px;
  background-image: url(../images/home/recent-news.webp);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 42%;
}
.news_box{
  background: #fff;
  border-radius: 20px;
  border: 1px solid #E9E9E9;
  padding: 7px;
  text-align: center;
}
.news_imgbox img{
  max-height: 130px;
  object-fit: cover;
  border-radius: 14px;
}
.news_content{
  padding:15px 0px;
}
.news_box h6{
  margin: 0 0 12px 0;
  font-size: 14px;
  height: 32px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news_box p{
  font-size: 13px;
  margin: 0 0 12px 0;
  line-height: normal;
  height: 50px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.readmorebtn{
  background-color: #114B4A;
  padding: 5px 10px;
  color: #fff;
  font-size: 13px;
  border-radius: 5px;
}
.readmorebtn:hover{
  background-color: #1058ac;
  padding: 5px 10px;
  color:#fff;
}
.recent_news_section .owl-carousel .owl-dots.disabled, .recent_news_section .owl-carousel .owl-nav.disabled{
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin: 30px 0 0 0;
}
.recent_news_section .owl-nav .owl-prev{
    font-size: 0px;
    width: 34px;
    height: 34px;
    background-image: url(../images/home/recent-news-prev.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.recent_news_section .owl-nav .owl-next{
    font-size: 0px;
    width: 34px;
    height: 34px;
    background-image: url(../images/home/recent-news-next.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
/* Recent News End */

/* Footer Start */
.footer-topbar {
  background: #fff;
  padding: 12px 0;
  border-top: 3px solid #F1F4F8;
  /* border-bottom: 5px solid #fff; */
}
.footer-topbar .container {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Logo */
.footer-left img {
  max-height: 60px;
}
/* Center Contact */
.footer-center {
  display: flex;
  gap: 40px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  font-size: 15px;
  font-family: 'Gotham-Book';
}
.contact-item img{
  max-height:20px;
}
/* Button */
.contact-btn {
  background: #1258A8;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
  font-family: 'Gotham-Bold';
}
.contact-btn:hover {
  background: #114B4A;
  color:#fff;
}

.footer_main{
  background-color: #efefef;
  background-image: url(../images/home/footer-map.webp);
  background-size: 47%;
  background-position:-30px 0;
  background-repeat: no-repeat;
}
.footer_main_inner{
  display: flex;
  justify-content: end;
}
/* Map */
.footer-map {
  width: 35%;
}
.footer-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Right Side */
.footer-right {
  width: 52%;
  padding: 30px 0px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
/* Headings */
.footer-col h3 {
  font-size: 18px;
  font-weight: inherit;
  margin-bottom: 20px;
  font-family: 'Gotham-Regular';
}
/* Location */
.location-item {
  display: flex;
  gap: 15px;
  margin-bottom: 11px;
  align-items: center;
}
.location-item img{
  max-height: 24px;
}
.location-item p {
  font-size: 14px;
  margin: 0;
  color: #333;
}
.footer-col{
  width: 65%;
}
.quick-links{
  width: 35%;
}
.quick-links ul {
  list-style: none;
  padding: 0;
}
.quick-links li {
  margin-bottom: 15px;
  line-height: normal;
}
.quick-links a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: 0.3s;
  padding: 0 0 0 10px;
  background-image: url(../images/home/footer-menu.svg);
  background-size: 4px;
  background-repeat: no-repeat;
  background-position: 0 5px;
}
.quick-links a:hover {
  color: #1e5aa8;
}
/* Social Icons */
.social{
  margin-top: 25px;
  display: flex;
  align-items: center;
}
.social h3{
  margin: 0px 20px 0px 0px;
}
/* .social a {
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: 0.3s;
  padding:0px;
} */
.social a {
  transition: 0.3s;
  margin-right: 8px;
  display: inline-flex;
}
.social a img {
  max-height: 30px;
}
.social a img:hover {
  transform: scale(1.1);
  transition-duration: 0.3s;
}
/* Bottom */
.footer-bottom {
  background: #1e5aa8;
  color: #fff;
  text-align: center;
  padding: 8px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.footer-bottom img{
  max-height: 17px;
}
.footer-bottom p{
  margin:0px;
  font-size:14px;
}
/* Footer End */


/* Inner Pages Start */
/* About Us Start */
.inner-banner{
    position:relative;
    background:url('../images/banners/inner-page-banner.webp') center/cover no-repeat;
    height:200px;
    display:flex;
    align-items:center;
    margin: 109px 0 0 0;
}
.inner-banner::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    /* background:rgba(0,0,0,0.55); */
}
.breadcrumb_menu{
  background-color: #124681;
  padding: 4px 15px;
  border-radius: 25px;
  line-height: normal;
  font-size: 12px;
  font-family: 'Gotham-Light';
}
.breadcrumb_menu_page{
  background-color:transparent;
  padding: 4px 0;
  font-family: 'Gotham-Book';
}
.inner-banner-content{
  position:relative;
  color:#fff;
}
.inner-banner-content h1{
  font-size: 30px;
  margin-bottom: 20px;
  font-family: 'Gotham-Black';
  text-align: center;
}
.breadcrumb{
  font-size: 14px;
  justify-content: center;
  gap: 12px;
}
.breadcrumb a{
  color:#fff;
  text-decoration:none;
}
.breadcrumb span{
  margin:0 5px;
}
.why_choose_kdrive{
  padding: 0px 0 0px 0;
}
.kdrive_wrapper{
  display: flex;
  align-items: center;
  position: relative;
}
.kdrive_wrapper::after{
  background-color: rgb(17 88 168);
  height: 75%;
  position: absolute;
  width: 100%;
  bottom: 0px;
  left: 0px;
  right: 0px;
  content: "";
  z-index: -2;
  border-radius: 50px;
}
.kdrive_wrapper::before{
  background-color: rgb(17 88 168);
  height: 75%;
  position: absolute;
  width: 100%;
  bottom: 0px;
  left: 0px;
  right: 0px;
  content: "";
  z-index:-1;
  border-radius: 50px;
  background-image: url(../images/aboutus/about-bg.svg);
  background-size: contain;
  background-repeat: repeat;
  background-position: center;
  opacity: 0.1; /* 🔥 change opacity here */
  z-index: -1;
}
.aboutus_left{
  width: 55%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: #fff;
  padding: 160px 0 30px 40px;
}
.aboutus_right{
  width: 40%;
}
.what_we_do{
  /* background-color: #1c5fab0f; */
  margin:0px 0 0px 0;
  text-align: center;
  padding: 80px 0;
  position: relative;
}
.what_we_do::after{
  content: "";
  position: absolute;
  left:0;
  right:0;
  height:60%;
  top: 50%;
  transform: translateY(-50%);
  background-color: #1c5fab0f;
  bottom: 0;
  z-index: -1;
}
.what_we_do img{
  box-shadow: 0px 3px 6px #0000000f;
  border-radius: 40px;
}
.what_we_do_inner{
  display:flex;
  align-items: center;
  gap: 40px;
}
.what_we_do_img{
  width:50%;
}
.what_we_do_content{
  width: 50%;
  text-align: left;
}
.our_expertise {
    padding: 60px 0;
    background: linear-gradient(135deg, #0d3c73, #1258A8);
    position: relative;
    overflow: hidden;
    margin: 0 0 0px 0;
}

/* Background title */
.our_expertise::before {
  content: "EXPERTISE";
  position: absolute;
  font-size: 140px;
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 10px;
  font-family: 'Gotham-Bold';
}
.expertise_header {
  text-align: center;
  margin-bottom: 70px;
}
.expertise_header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  position: relative;
}
.expertise_header h2::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #fff;
  display: block;
  margin: 15px auto 0;
}
/* Grid */
.expertise_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
/* Card */
.expertise_card {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 30px;
  position: relative;
  transition: 0.4s;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  overflow: hidden;
}
/* Top gradient line */
.expertise_card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  top: 0;
  left: 0;
  background: #D6E1ED;
}
.expertise_card span {
  font-size: 50px;
  font-weight: 700;
  color: rgb(18 88 168 / 6%);
  position: absolute;
  top: 15px;
  right: 15px;
  font-family: 'Gotham-Bold';
}
.expertise_card h4 {
  font-size: 25px;
  color: #1258A8;
  margin-bottom: 15px;
  font-family: 'Gotham-Book';
  font-weight: inherit;
}
.expertise_card p {
  color: #000;
}
/* Hover */
.expertise_card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}
.vision_mission_section{
  padding:60px 0;
  background:linear-gradient(135deg,#f5f9ff,#eaf2fb);
  position:relative;
}
.vm_title{
  text-align:center;
  margin-bottom:80px;
}
.vm_title h2{
  font-size:42px;
  font-weight:700;
  color:#1258A8;
}
.vm_grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}
.vm_box{
  background:#fff;
  padding:60px 45px;
  border-radius:20px;
  position:relative;
  box-shadow:0 25px 60px rgba(0,0,0,0.08);
  transition:0.4s;
  overflow:hidden;
}
/* decorative background */
.vm_box::before{
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: #d7ebff;
  border-radius: 50%;
  top: -50px;
  right: -50px;
}
.vm_number img{
  position: absolute;
  top: 5%;
  right: 0%;
  max-height: 130px;
}
.vm_box h3{
  font-size: 25px;
  margin-bottom: 15px;
  color: #1258A8;
  font-family: 'Gotham-Bold';
}
.vm_box p {
  font-size: 15px;
  width: 82%;
  margin: 0;
}
.vm_box:hover{
  transform:translateY(-12px);
  box-shadow:0 35px 80px rgba(0,0,0,0.12);
}
/* Inner Pages End */


/* Responsive Start Here*/

@media(min-width:1700px){
  .footer-right {
    width: 65% !important;
  }
}

@media(min-width:1399.98px){
  .footer-right {
    width: 54%;
    padding: 30px 0px;
  }
  .footer_main{
    background-size:contain;
  }
  .nav-menu ul li a{
    padding: 10px 14px;
  }
}

@media(max-width:1199.98px){
  /* Header Start */
  .logo img {
    height: 40px;
  }
  .nav-menu ul li a {
    padding: 4px 4px;
  }
  .submenu-arrow {
    font-size: 8px;
    margin: 0 0 0 -3px;
  }
  /* Header End */
  /* Market Segments Start */
  .we_serve_box img {
    max-width: 200px;
  }
  .we_serve_box h4 {
    font-size: 21px;
    margin: 10px 0 30px 0;
  }
  .weserve_product span{
    font-size: 21px;
  }
  .weserve_product_box .theme-btn{
    width: max-content;
  }
  .owl-nav{
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin: 20px 0 0;
  }
  /* Market Segments End */
  /* Footer Start */
  .footer_main {
    background-size: 56%;
    background-position: -130px 0px;
  }
  /* Footer End */
  /* Inner Pages Start */
  .inner-banner {
    margin: 90px 0 0 0;
  }
  .kdrive_wrapper::after{
    height: 100%;
  }
  .kdrive_wrapper::before{
    height: 100%;
  }
  .aboutus_left {
    padding: 30px 0 30px 40px;
  }
}
@media (max-width: 1099.98px) {
  .footer_main {
    background-size: 60%;
    background-position: -150px 0px;
  }
}
@media(max-width:991.98px){
  .is-sticky .topbar{
    display:none;
  }
  .logo img {
    height: 50px;
  }
  /* Mobile Menu Start */
  .nav-menu .homemenu a {
    color: #1e5b52;
    background-color: transparent;
  }
  .menu-toggle{
    display:block;
    font-size: 26px;
    cursor: pointer;
    position: relative;
    z-index: 9999;
    top: 0px;
  }
  .nav-menu{
    position: fixed;
    top: 0%;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    z-index: 99;
    padding: 70px 0 0 0;
    height: 100vh;
  }
  .is-sticky .nav-menu {
    padding: 10px 0 0 0;
  }
  .nav-menu.active{
    display:block;
  }
  .nav-menu ul{
    flex-direction:column;
  }
  .nav-menu ul li{
    width:100%;
    border-bottom:1px solid #eee;
  }
  .nav-menu ul li a{
    padding:12px 15px;
    font-size: 16px;
  }
  .nav-menu .homemenu a{
    padding: 12px 15px;
  }
  .nav-menu ul .has-submenu .submenu li a{
    padding: 12px 15px;
    font-size: 15px;
  }
  .submenu{
    position:relative;
    opacity:1;
    visibility:visible;
    transform:none;
    box-shadow:none;
    display:none;
    width:100%;
  }
  .submenu-toggle{
    display: inline-block;
    float: right;
    font-size: 25px;
    cursor: pointer;
    font-family: 'Gotham-Book';
    line-height: normal;
    margin: -5px 0 0 0;
  }
  .submenu-arrow{
    display:none;
  }
  .nested-submenu{
    left:0;
  }
  /* Mobile Menu End */
  .heading{
    font-size: 25px;
    margin-bottom: 15px;
  }
  /* Hero Banner Start */
  .hero_slider {
    margin: 97px 0 0 0;
    padding: 0 0 10px 0px;
  }
  .banner-heading{
    font-size: 35px;
    text-shadow: 3px 3px 0px #00000042;
  }
  .banner-second-heading{
    font-size:25px;
  }
  .banner_products{
    width:60%;
  }
  .banner_product_box h6{
    font-size:13px;
  }
  .banner_product_box img {
    max-height: 50px;
  }
  /* Hero Banner End */
  /* About Sec Start */
  .about-section h1{
    font-size:25px;
  }
  .about-section {
    padding: 40px 0 40px 0;
  }
  .about-flex{
    gap: 20px;
  }
  .about-img {
      padding: 0px;
  }
  /* About Sec End */
  /* Market Segments Start */
  .sectors_we_serve_sec{
    padding: 30px 0px 170px 0px;
  }
  .weserve_img{
    min-height: 250px;
    max-height: 250px;
  }
 .we_serve_box h4 {
    font-size: 18px;
    margin: 10px 0 10px 0;
  }
  .weserve_product{
    width: 160px;
    height: 160px;
  }
  .we_serve_box img {
    max-width: 150px;
  }
  .we_serve_box .weserve_product img img{
    max-width: 150px;
  }
  .weserve_product_img {
    min-height: 150px;
  }
  .explore_morebtn{
    opacity:1;
    visibility: visible;
    bottom: -43%;
  }
  .we_serve_box:hover .explore_morebtn{
    bottom:0%;
    transform:translate(-50%, 0);
    opacity:1;
    visibility:visible;
  }
  /* Market Segments End */
  /* Product Portfolio Start */
  .our_products_sec{
    padding: 30px 0px 20px 0px;
  }

  .our_products_sec .owl-nav .owl-next{
    width: 30px;
    height: 30px;
  }
  .our_products_sec .owl-nav .owl-prev{
    width: 30px;
    height: 30px;
  }
  /* Product Portfolio End */
  /* Core Capabilities Start */
  .core_capabilities_sec {
    padding: 30px 0px 0px 0px;
  }
  .core_capabilities_inner{
    padding: 60px 0 30px 0;
  }
  .core_capabilities_inner ul li {
    width: 100%;
  }
  .core_capabilities_inner ul li a{
    padding: 1px 0 1px 13px;
    background-size: 10px;
    background-position: 0px 7px;
  }
  .core_capabilities_sec .nav-link{
    padding: 7px 30px;
  }
  /* Core Capabilities End */
  /* Our Customers Start */
  .our-customers-sec {
    padding: 30px 0 0px 0;
    position: relative;
  }
  /* Our Customers End */
  /* Counter Start */
  .stats-section {
    padding: 30px 0 30px 0px;
  }
  .stats-wrapper{
    width: 100%;
    border: 6px solid #f9f9f9;
  }
  .stat-box h2{
    font-size: 25px;
  }
  .stat-box p {
    font-size: 14px;
    line-height: normal;
    margin: 10px 0 0 0;
  }
  /* Counter End */
  /* Recent News Start */
    .recent_news_section {
      padding: 10px 0px 0px 0px;
      background-image: url(../images/home/recent-news.webp);
      background-size: 41%;
    }
    .recent_news_section .owl-nav .owl-next{
      width: 30px;
      height: 30px;
    }
    .recent_news_section .owl-nav .owl-prev{
      width: 30px;
      height: 30px;
    }
  /* Recent News End */
  /* Sustainability Sec Start */
  .sustainability-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 15px;
  }
  .s-card.large {
    grid-row: auto;
    height: 200px;
  }
  .sustainability-grid .s-card {
    height: 200px;
    border-radius: 30px;
  }
  /* Sustainability Sec End */
  /* Footer Start */
  /* Footer Topbar Start */
  .footer-topbar .container {
    width:100%;
  }
  .footer-center{
    gap: 20px;
  }
  .footer-left img {
    max-height: 35px;
  }
  .contact-item{
    gap: 5px;
    font-size: 14px;
  }
  .footer-topbar{
    padding: 7px 10px;
    font-size: 14px;
    line-height: normal;
  }
  .contact-item img {
    max-height: 15px;
  }
  .contact-btn{
    padding: 10px 10px;
    font-size:14px;
  }
  /* Footer Topbar End */
  .footer_main{
    background-image:none;
  }
  .footermap{
    width:100%;
  }
  .footer_main_inner {
    justify-content: flex-start;
  }
  .footer-right {
    width: 100%;
    padding: 30px 0px;
  }
  .footer-inner {
    gap: 20px;
  }
  /* Footer End */
  /* Inner Pages Start */
  .about-flex {
    flex-wrap: wrap;
  }
  .about-img{
    width: 100%;
  }
  .about-content{
    width:100%;
  }
  .aboutus_left {
    padding: 40px;
    width: 100%;
  }
  .aboutus_right{
    display:none;
  }
  .about-content p:last-child{
    margin:0px
  }
  .kdrive_wrapper::after{
    height:100%;
  }
  .what_we_do::after{
    height: 100%;
  }
  .what_we_do {
    margin: 30px 0 0px 0;
    padding: 30px 0;
  }
  .expertise_grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .vm_title {
    text-align: center;
    margin-bottom: 30px;
  }
  .vm_box{
    padding: 40px 15px;
  }
  .vm_box::before{
    top: -70px;
    right: 0px;
    width: 100%;
    height: 170px;
  }
  .vm_number img {
    left: 0;
    position: absolute;
    top: 5%;
    right: 0%;
    max-height: 80px;
    margin: 0 auto;
  }
  .vm_box h3 {
    margin: 90px 0 0 0;
    text-align: center;
  }
  .vm_box p {
    margin: 7px 0 0 0;
    width: 100%;
    text-align: center;
  }
  .vision_mission_section{
    padding: 30px 0;
  }
}


@media(max-width:767.99px){

/* Mobile Menu Start */

/* Mobile Menu End */
/* Hero Banner Start */
  .banner_product_box img {
      max-height: 35px;
  }
  .banner_products{
    gap:5px;
  }
  .theme-btn{
    font-size: 14px;
    padding: 10px 14px;
  }
  .banner_product_box img {
    max-height: 35px;
  }

/* Hero Banner End */
/* About Sec Start */
  .about-flex{
    flex-wrap: wrap;
  }
  .about-img{
    width:100%;
  }
  .about-content{
    width:100%;
  }
/* About Sec End */
/* Market Segments Start */
  .sectors_we_serve_sec {
    padding: 30px 0px 30px 0px;
    background-size: 100%;
  }
  .weserve_img {
    min-height: 300px;
    max-height: 300px;
  }
  .we_serve_box img {
    max-width: 210px;
  }
  .weserve_product span{
    margin: 0px 0 0 0;
  }
  .we_serve_box{
    width:100%;
  }
  .weserve_product{
    position: inherit;
    transform: translate(0%, -50%);
    border: 1px solid #ccc;
  }
  .explore_morebtn {
    opacity: 1;
    visibility: visible;
    bottom: 5%;
  }
  .we_serve_box .theme-btn img {
    max-height: 12px;
    width: auto !important;
  }
/* Market Segments End */
/* Product Portfolio Start */

/* Product Portfolio End */
/* Core Capabilities Start */
.core_capabilities_sec .nav-link{
  font-size:15px;
}
.capabilities_img{
  margin:20px 0px 0px 0px;
}
#nav-tab {
    flex-wrap: nowrap;        /* keep tabs in one line */
    overflow-x: auto;         /* enable horizontal scroll */
    overflow-y: hidden;
    white-space: nowrap;
    justify-content: flex-start;
}
#nav-tab::-webkit-scrollbar {
    height: 4px;              /* optional scrollbar style */
}
#nav-tab::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}
.nav-tabs .nav-link {
    flex: 0 0 auto;           /* prevent shrinking */
}
.core_capabilities_sec .nav-link {
  margin: 0 0 4px 0px;
}
/* Core Capabilities End */
/* Our Customers Start */

/* Our Customers End */
/* Counter Start */

/* Counter End */
/* Recent News Start */

/* Recent News End */
/* Sustainability Sec Start */
.s-overlay h3{
  font-size:21px;
}
/* Sustainability Sec End */
/* Footer Start */
/* Footer Topbar Start */
.footertop{
  flex-wrap: wrap;
}
.footer-left{
  display: flex;
  justify-content: center;
}
.footer-center{
  gap: 20px;
  flex-wrap: wrap;
  margin: 15px 0;
}
.footer-right1{
  display: flex;
  justify-content: center;
}
.footer-topbar {
  padding: 20px 10px;
}
/* Footer Topbar End */
/* Footer End */
/* Inner Pages Start */ 
.what_we_do_inner{
  flex-wrap: wrap;
}
.what_we_do_img {
    width: 100%;
}
.what_we_do_content {
    width: 100%;
}

}

@media(max-width:575.99px){
  /* Header Start */
  .logo img {
    height: 40px;
  }
  .topbar a{
    margin-left: 0px;
  }
  .topbar-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px;
    }
  .topbar-flex {
    padding: 3px 0;
  }
  /* Hero Section Start */
  .hero_slider {
      margin: 92px 0 0 0;
      padding: 0 0 0px 0px;
    }
  .banner-second-heading {
    font-size: 15px;
  }
  .banner-heading {
    font-size: 25px;
  }
  .banner-second-heading{
    margin: 0 0 10px 0;
  }
  .hero_slider .banner_content{
    align-items: flex-start;
  }
  .banner_products {
    width: 98%;
  }
  .banner-bg img{
    min-height: 300px;
    object-fit: cover;
    object-position: 83% 0%;
  }
  .banner_product_box h6 {
    font-size: 11px;
    width: 100%;
    text-align: center;
  }
  .banner_product_box{
    padding: 9px;
  }
  .hero_slider .banner_content {
    position: absolute;
    top: 10%;
  }
  /* Market Segment Start */
  .sectors_we_serve_sec {
    padding: 40px 0px 30px 0px;
    background-size: 160%;
  }
  /* Market Segment End */
  /* Product Portfolio Start */
  .product_img img {
    max-height: 100px;
    width: auto !important;
    margin: 0 auto;
  }
  .our_products_sec{
    background-size: 200%;
  }
  /* Product Portfolio End */
  /* Counter Start */
  .stats-wrapper {
    flex-wrap: wrap;
  }
  .stat-box{
    flex: 0 0 50%;
    max-width: 50%;
  }
  .stat-box:last-child {
    background-image: linear-gradient(to bottom, #0b51a1, #1058ac, #1560b6, #1967c1, #1d6fcc);
    background-color:none;
  }
  .stat-box:nth-child(3){
    background-color: #2677D4;
    background-image:none;
  }
  /* Counter End */
  /* Sustainability Start */
  .sustainability-grid{
    padding: 15px;
  }
  /* Sustainability End */
  /* Recent News Start */
  .recent_news_section{
    background-image: none;
  }
  .news_imgbox img{
    max-height: 240px;
  }
  /* Recent News End */
  /* Footer Topbar Start */
  .footer-center {
    gap: 10px;
    margin: 10px 0;
    justify-content: center;
  }
  /* Footer Topbar End */
  .footer-inner{
    flex-wrap: wrap;
  }
  .footer-topbar .container{
    justify-content: center;
  }
  .footer-col{
    width:100%;
  }
  .quick-links{
    width:100%;
  }
  .footer-bottom{
    padding: 12px 8px;
    gap: 6px;
    flex-wrap: wrap;
  }
  /* Inner Pages Start */
  .vm_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .vm_number img {
    max-height: 110px;
  }
  .aboutus_left {
    padding: 20px;
  }
  .kdrive_wrapper::after{
    border-radius:20px;
  }
  .what_we_do img {
    border-radius: 20px;
  }
  .expertise_grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }

}

@media(max-width:416px){
  /* Header Start */
}

