/**=======================================================================
* A Customized  CSS File for websites made with love from
* LWEGATECH Team of developers
* ===========================================================================**/
:root {
	--kpy-font: "Glacial", sans-serif;
	--kpy-font-2: "Montserrat", sans-serif;
	--kpy-font-3: "Playfair Display", serif;
	--kpy-base: #12a652;
	--kpy-base-rgb: 2, 107, 75;
	--kpy-base-dark: #0a713a;
	--kpy-base-dark-rgb: 10, 113, 58;
    --kpy-gold: #fcb900;
	--kpy-yellow: #f1fc1e;
	--kpy-yellow-rgb: 241, 252, 30;
	--kpy-white: #ffffff;
	--kpy-white-rgb: 255, 255, 255;
	--kpy-black: #000;
	--kpy-black-rgb: 51, 51, 51;
	--kpy-primary: #417e17;
	--kpy-primary-rgb: 254, 9, 0;
	--kpy-font-size: 16px;
	--jbba-blue: #2c6fb7;
	--jbba-blue-dark: #0056b3;
    --jbba-light-gray: #f8f9fa;
    --jbba-gray: #6c757d;
  }
  
html,
body{
	font-family: var(--kpy-font-2);
  	font-optical-sizing: auto;
  	font-style: normal;
	font-size: 16px;
	font-weight: normal;
	min-height: 100vh;
}

/*
::selection {background:#2c6fb7;color:#FFF;text-shadow:none;}
::-webkit-selection {background:#2c6fb7; color:#FFF;text-shadow:none;}
::-moz-selection {background:#2c6fb7;color:#FFF;text-shadow:none;}
h1, h2, h3, h4, h5, h6 {font-family: "Glacial", sans-serif;font-weight: bold;}
 .btn-primary{background-color: #2c6fb7;border-color: #29AB87;} 
.btn-primary:hover{background-color: #2c6fb7;border-color: #3c6e71;}
.btn-outline-primary{color: #2c6fb7;border-color: #29AB87;}
*/ 

/** ================================
Menu & Top (Revised)
=========================================**/

/** Top Bar **/
.top-bar {
    background-color: #1f4e80;
    color: #dbdce5;
    font-size: 14px;
    border-bottom: 1px solid #333;
    height: 40px;
    transition: opacity 0.3s ease, height 0.3s ease, visibility 0.3s ease;
    z-index: 1010;
}

.top-bar a {
    color: #ffffff;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: #00aaff;
}

.logo-column {
    min-height: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    z-index: 1030;
    background-color: #fff;
    transition: height 0.3s ease, min-height 0.3s ease;
}

.logo {
    margin: 0 auto;
    height: 100%;
    width: 100%;
    position: relative;
    background-color: #fff;
    transition: height 0.3s ease;
}

.logo img {
    height: 70px;
    align-self: center;
    transition: height 0.3s ease;
}

/** Navbar **/
nav {
    margin: 0;
    padding: 0;
    height: 60px;
    background-color: #f0f1f7; /* Initial background color */
    color: #000000; /* Initial text color black */
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease, height 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 1015;
}

/* Force nav links and dropdowns to be black by default */

.navbar-nav{
    line-height: 45px !important;
}

nav .nav-link,
nav .nav-link.dropdown-toggle,
.navbar-nav .nav-link,
.dropdown-menu .dropdown-item {
    color: #000000 !important;
    transition: color 0.3s ease;
}

/* Dropdown toggle arrow color and position */
nav .nav-link.dropdown-toggle::after {
    color: #000000;
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
    position: relative;
    top: 0;
}

/* Nav links hover before scroll */
nav .nav-link:hover,
nav .nav-link.dropdown-toggle:hover,
.dropdown-menu .dropdown-item:hover {
    color: #2c6fb7 !important;
    background-color: transparent !important;
}

/* Dropdown menu default background and border */
.dropdown-menu {
    background-color: #f0f1f7 !important; /* Match menu bar default background */
    width: 250px;
    border: 1px solid #2c6fb7 !important;
    border-radius: 0 0 8px 8px !important;
    margin-top: -2px !important;
    color: #000000 !important;
    width: auto;
    z-index: 1050 !important;
    
}

/* Dropdown items default text color */
.dropdown-menu .dropdown-item {
    color: #000000 !important;
    padding: 12px 20px !important;
    font-size: 15px !important;
    transition: all 0.2s ease;
    line-height: 1.2;
}

/* Dropdown items hover color */
.dropdown-menu .dropdown-item:hover {
    color: #2c6fb7 !important;
    background-color: transparent !important;
}

/* Override Bootstrap's default link colors inside nav */
nav .nav-link:focus,
nav .nav-link:active {
    color: #000000 !important;
}

/** Sticky Header - Revised **/
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #2c6fb7 !important;
    box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.1);
    z-index: 1020;
    height: 60px !important;
    min-height: 60px !important;
    transition: background-color 0.3s ease;
}

.sticky-header nav {
    background-color: #2c6fb7 !important;
    color: #ffffff !important;
    height: 60px !important;
    align-items: center;
}

/* Sticky header nav links text color */
.sticky-header nav .nav-link,
.sticky-header nav .nav-link.dropdown-toggle,
.sticky-header .navbar-nav .nav-link,
.sticky-header .dropdown-menu .dropdown-item {
    color: #ffffff !important;
}

/* Sticky header dropdown toggle arrow */
.sticky-header .nav-link.dropdown-toggle::after {
    color: #ffffff;
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
    position: relative;
    top: 0;
}

/* Sticky header nav links hover */
.sticky-header nav .nav-link:hover,
.sticky-header nav .nav-link.dropdown-toggle:hover,
.sticky-header .dropdown-menu .dropdown-item:hover {
    color: #f9b03d !important;
    background-color: transparent !important;
}

/* Sticky header .row adjustments */
.sticky-header .row {
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    height: 100%;
}

.sticky-header .logo-column {
    min-height: 60px !important;
    height: 60px !important;
    background-color: #fff;
}

.sticky-header .logo {
    height: 60px;
}

.sticky-header .logo img {
    height: 60px;
}

.sticky-header .top-bar {
    display: none !important;
    height: 0;
    visibility: hidden;
}

/** Sticky header dropdown menu background and border */
.sticky-header .dropdown-menu {
    top: 60px !important;
    background-color: #2c6fb7 !important; /* Match sticky menu bar background */
    width: 300px;
    border-top: 3px solid #F9B03D !important;
    border: 1px solid #2c6fb7 !important;
    color: #ffffff !important;
    border-radius: 0 0 8px 8px !important;
    z-index: 1050 !important;
}

.sticky-header .dropdown-item {
    color: #ffffff !important;
    padding: 12px 20px !important;
    font-size: 15px !important;
    transition: all 0.2s ease;
}

.sticky-header .dropdown-item:hover {
    background-color: #f9b03d !important;
    color: #2c6fb7 !important;
}

/** Desktop: Show dropdown on hover **/
@media (min-width: 769px) {
    .navbar-nav > .dropdown:hover > .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transition: opacity 0.3s ease;
    }
    .navbar-nav > .dropdown > .dropdown-menu {
        display: none;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    }
    /* Ensure dropdown stays above sticky header */
    .dropdown-menu {
        z-index: 1050 !important;
    }
}

/** Mobile Adjustments - Revised **/
@media (max-width: 768px) {
    .menu-section {
        min-height: 90px;
    }

    .logo-column {
        min-height: 60px;
        height: 60px;
    }

    .logo img {
        height: 70px;
    }

    .sticky-header {
        height: 50px !important;
        min-height: 50px !important;
    }

    .sticky-header .logo-column {
        min-height: 40px !important;
        height: 40px !important;
    }

    .sticky-header .logo img {
        height: 50px;
    }

    .sticky-header nav {
        height: 50px !important;
    }

    .sticky-header .dropdown-menu {
        top: 50px !important;
        background-color: #2c6fb7 !important;
        border: none !important;
    }

    .navbar-collapse {
        background: #2c6fb7;
        padding: 15px;
    }
    
    .dropdown-menu {
        width: 100% !important;
        border: none !important;
    }
    
    .dropdown-item {
        font-size: 16px !important;
        padding: 10px 15px !important;
    }
}

/** Desktop Navbar Alignment Fix **/
@media (min-width: 769px) {
    
    .top-bar{
        display:none;
    }
    .sticky-header .navbar-nav {
        height: 60px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sticky-header .nav-link {
        line-height: 60px !important;
        padding: 0 20px;
    }
}

/* Hover Effects */
.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #F9B03D;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before {
    width: 70%;
}

/* Sticky State Hover */
.sticky-header .nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border-radius: 4px;
    transform: translate(-50%, -50%);
}

.sticky-header .nav-link:hover::after {
    width: 100%;
    height: 100%;
}

/* Dropdown toggle arrow color and position for sticky */
.sticky-header .nav-link.dropdown-toggle::after {
    color: #ffffff;
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
    position: relative;
    top: 0;
}

/* Dropdown Fixes */
.dropdown-menu {
    border-radius: 0 0 8px 8px !important;
    margin-top: -2px !important;
    z-index: 1050 !important;
}

/* Mobile Toggler Alignment */
.navbar-toggler {
    margin-left: auto;
    margin-right: 15px;
}


/** ============================================================
SLIDES - Ken Burns
==============================================================**/
.btn-one {  position: relative;  display: inline-block;  overflow: hidden;  padding-left: 30px;  padding-right: 30px;  background-color: transparent;  color: var(--abc-black);  font-size: 18px;
	line-height: 60px;  font-weight: 500;  text-transform: capitalize;  border-radius: 0px;  -webkit-transition: all 0.3s linear;  -o-transition: all 0.3s linear;  transition: all 0.3s linear;  z-index: 2;}
  .btn-one:before {  position: absolute;  top: 110px;  left: -50px;  right: -50px;  height: 170px;
	content: "";  background: var(--abc-primary);  -webkit-transform: translateY(-50px);  transform: translateY(-50px);  border-radius: 50%;  transition-duration: 800ms;  z-index: 1;}
  .btn-one:hover:before {  top: 0%;  left: -70px;  right: -70px;}
  .btn-one:after {  content: "";  position: absolute;  top: 0px;left: 0px;  bottom: 0px;  right: 0px;
	border-radius: 0px;  background-color: #ffffff;  opacity: 1;  transform: scaleX(1.0);  transition-duration: 800ms;  z-index: -1;}
  .btn-one:hover:after {  transform: scaleX(0);  transition-duration: 1500ms;}
  .btn-one .txt {  position: relative;  z-index: 1;}
  .btn-one:hover,.btn-one:focus {  color: #ffffff;}
  .btn-one i {  position: relative;  display: inline-block;  padding-left: 5px;  font-size: 12px;  font-weight: 700;}
  .btn-btn {  color: var(--abc-white);  background: var(--abc-primary);  border-radius: 0px;  padding: 11px 24px;  display: inline-block;  box-shadow: inset 0 0 0 0 var(--abc-black);  -webkit-transition: ease-out 0.4s;  -moz-transition: ease-out 0.4s;  transition: ease-out 0.4s;}
  .btn-btn:hover {  color: var(--abc-white);  box-shadow: inset 400px 0 0 0 var(--abc-black);}
  .main-slider {position: relative;display: block;z-index: 10;}
  .slider-buttom-box {position: absolute;right: 20px;bottom: 20px;z-index: 11;}
  .slider-buttom-box a {position: relative;display: flex;align-items: center;justify-content: space-between;width: 230px;height: 50px;background-color: var(--abc-primary);padding: 0 20px;color: #ffffff;font-weight: 500;transition: all 200ms linear;transition-delay: 0.1s;}
  .slider-buttom-box a:hover {background-color: var(--abc-primary);}
  .slider-buttom-box a+a {  margin-top: 10px;}
  .slider-buttom-box a.box-link {  background-color: var(--abc-primary);}
  .slider-buttom-box a.box-link:hover {  background-color: var(--abc-primary);}
  .main-slider .swiper-slide {  position: relative; height:500px;}
  .main-slider .container {  position: relative;  padding-top: 90px;  padding-bottom: 100px; z-index: 30;}
  .main-slider .image-layer {position: absolute;top: 0;left: 0;right: 0;bottom: 0;  background-repeat: no-repeat;  background-size: cover;  background-position: center;  -webkit-transform: scale(1);  transform: scale(1);  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;  transition: transform 7000ms ease, opacity 1500ms ease-in;  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;	z-index: 1;}
  .main-slider .swiper-slide-active .image-layer {  -webkit-transform: scale(1.15);  transform: scale(1.15);}
  .main-slider .image-layer:before {  position: absolute;  top: 0px;  right: 0;  bottom: 0;
  width: 80%;  content: "";  z-index: -1;  background: rgb(26, 28, 35);  background: linear-gradient(to bottom, rgba(2, 28, 58, 0.15) 10%, rgb(47, 175, 25, 0.1), rgb(48, 175, 25,0.05));width: 100%;}
  .main-slider .main-slider-content {position: absolute;  display: block; width: 100%;padding: 50px;max-width: 700px;margin-top: 100px;}
  .main-slider .main-slider-content__inner {  position: relative;  display: block;  overflow: hidden;}
  .main-slider .main-slider-content .big-title {  position: relative;  display: block;  opacity: 0;
	-webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
	-ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
	transform: perspective(400px) rotateY(0deg) translateY(-80px);
	-webkit-transform-origin: top;
	-ms-transform-origin: top;
	transform-origin: top;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 1000ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	z-index: 10;
  }
  .main-slider .swiper-slide-active .main-slider-content .big-title {
	opacity: 1;
	-webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
	-ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
	transform: perspective(400px) rotateY(0deg) translateY(0px);
	-webkit-transition-delay: 1000ms;
	-moz-transition-delay: 1000ms;
	-ms-transition-delay: 1000ms;
	-o-transition-delay: 1000ms;
	transition-delay: 1000ms;
  }
  .main-slider .main-slider-content .big-title h2 {color: #000;  font-weight: 700;  font-size: 40px;  line-height: 1.2em;display: inline;background-color: #fff;font-family: "Oswald", helvetica, sans-serif;}
  .main-slider .main-slider-content .big-title h2 span{background-color: #2EB217;color: #fff;padding: 5px;}
  .main-slider .main-slider-content .text {  position: relative;  display: block;  width: 100%;  margin-top: 16px;  opacity: 0;
	-webkit-transform: perspective(400px) rotateY(0deg) translateX(80px);
	-ms-transform: perspective(400px) rotateY(0deg) translateX(80px);
	transform: perspective(400px) rotateY(0deg) translateX(80px);
	-webkit-transform-origin: bottom;
	-ms-transform-origin: bottom;
	transform-origin: bottom;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 1000ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	z-index: 10;
  }
  
  .main-slider .swiper-slide-active .main-slider-content .text {
	opacity: 1;
	-webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
	-ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
	transform: perspective(400px) rotateY(0deg) translateX(0px);
	-webkit-transition-delay: 1000ms;
	-moz-transition-delay: 1000ms;
	-ms-transition-delay: 1000ms;
	-o-transition-delay: 1000ms;
	transition-delay: 1000ms;
  }
  
  .main-slider .main-slider-content .text p {  color: #ede7e2;  line-height: 28px;  font-weight: 400;
	font-size: 16px;}
  .main-slider .main-slider-content .btns-box {  position: relative;  display: block;  line-height: 0;  opacity: 0;
	-webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
	-ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
	transform: perspective(400px) rotateY(0deg) translateY(80px);
	-webkit-transform-origin: top;
	-ms-transform-origin: top;
	transform-origin: top;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 1000ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	z-index: 10;
  }
  
  .main-slider .main-slider-content .btns-box a {
	background: var(--abc-primary);
  }
  
  .main-slider .swiper-slide-active .main-slider-content .btns-box {
	opacity: 1;
	-webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
	-ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
	transform: perspective(400px) rotateY(0deg) translateY(0px);
	-webkit-transition-delay: 1500ms;
	-moz-transition-delay: 1500ms;
	-ms-transition-delay: 1500ms;
	-o-transition-delay: 1500ms;
	transition-delay: 1500ms;
  }
  .main-slider__nav {  position: absolute;  right: 270px;  bottom: 60px;  transform: translateY(0%) translateX(0);  display: flex;  flex-direction: row;  justify-content: space-between;  align-items: center;  z-index: 100;  width: 140px;}
  
  .main-slider__nav .swiper-button-next,
  .main-slider__nav .swiper-button-prev {  position: relative;  top: auto;  left: auto;  right: auto;  bottom: auto;  width: 60px;  height: 60px;  display: flex;  justify-content: center;  align-items: center;  font-size: 24px;  color: var(--abc-black);  background-color: rgba(255, 255, 255, 0.4);  border-radius: 0;  margin: 0;  text-align: center;  transition: all 500ms ease;  z-index: 100;}
  .main-slider__nav .swiper-button-next:hover,.main-slider__nav .swiper-button-prev:hover {  color: #ffffff;  background-color: var(--abc-primary);}
  .main-slider__nav .swiper-button-next::after,.main-slider__nav .swiper-button-prev::after {  display: none;}
@media (max-width: 767.98px) {
    .move-up-sm {
        margin-top: -2rem; 
    }
}
/** =================================================================
* HOME PAGE
* ===================================================================**/
.home-intro-top{background:#0073a4;color:#fff;font-size: 30px;min-height: 150px;}
.home-intro-top p{height: 100%;line-height: 1.4;justify-content: center;}
.home-intro-mid{background:#fff;padding-top:60px;padding-bottom: 30px;}
.home-intro-mid .container{width: 80%;margin-bottom: -80px; background: #fff !important;position: relative;padding-bottom: 20px;border-radius: 15px;}
.home-intro-mid p{line-height: 1.6;}
.home-intro-mid h2{font-weight: bold;font-size: 40px;color: #29AB87;}
.home-intro-mid h5{font-weight: bold;margin-bottom:0;color:#000;font-size: 16px;}
.home-intro-mid img{border-radius: 15px;}
.home-intro-serv{padding-top:100px;padding-bottom: 50px;background-color: #29AB87;}
.home-intro-serv .container{height: 100%;position: relative;z-index: 5;}
.home-intro-serv h1{color:#fff;}
.home-intro-serv .intro{width: 60%; color: #eee;}
.home-intro-serv .card{height: 330px ;}
.home-intro-serv a{text-decoration: none;}
.home-intro-serv .bra{background-color: #389279; color: #E8F6F3;border-color: #389279;transition: 0.5s;}
.home-intro-serv .bra i{font-size: 50px;background-color: #b6c328;padding: 15px;border-radius: 50%;height: 100px;width: 100px;margin-bottom: 50px;}
.home-intro-serv .bra:hover{transform: translate(0, -10px) !important;background-color: #b6c328; transition: 0.3s all;}
.home-intro-serv .pri{background-color: #228d70; color: #E8F6F3;border-color: #228d70;transition: 0.3s;}
.home-intro-serv .pri:hover{transform: translate(0, -10px) !important;background-color: #28b9c3; transition: 0.5s ease-out;}
.home-intro-serv .pri i{font-size: 50px;background-color: #28b9c3;padding: 15px;border-radius: 50%;height: 100px;width: 100px;margin-bottom: 50px;}
.home-intro-serv .pac{background-color: #1d785f; color: #E8F6F3;border-color: #1d785f;transition: 0.3s;}
.home-intro-serv .pac:hover{transform: translate(0, -10px) !important;background-color: #28c361; transition: 0.5s ease-out;}
.home-intro-serv .pac i{font-size: 50px;background-color: #28c361;padding: 15px;border-radius: 50%;height: 100px;width: 100px;margin-bottom: 50px;}

.home-intro-bottom{padding-top:30px;padding-bottom: 30px;background-color: rgba(0, 100, 143, 0.05);}
.home-intro-bottom .photo img{height: 350px;width: 100%;object-fit: cover; border-radius: 10px;}
.home-intro-bottom .text{background-color: #Fff;border-radius: 10px;margin-left: -80px;margin-top:80px}
.home-intro-bottom .text h4{background-color: #003262;color: #fff;padding: 10px;}
.home-intro-bottom .text h2, .home-intro-bottom p{padding:0 15px 15px 15px;font-weight: 400;}
.home-intro-bottom .text h2{font-weight: 800;font-size: 28px;}
.home-caction{background: rgba(41, 171, 134, 0.05);min-height: 400px;padding-top:60px;padding-bottom: 40px;font-size: 18px;font-weight: 300;}
.home-caction .iwhy{border-radius: 15px;}
.home-caction h3{font-size: 35px; margin-top:2.5rem;font-weight: 800;color:#3c6e71}
.home-caction h4{margin-bottom: 0;font-size: 20px;}
.home-caction .eco{background-color: #0c4078;color:#fff;font-size: 12px;border-radius: 15px;margin-bottom: 15px;}
.home-caction .eco img{width: 80px;height: 80px;border-radius: 50%;position: relative;margin-left: -20px;}
.home-caction .qua{border:1px solid #389279;font-size: 12px;border-radius: 15px;margin-bottom: 15px;}
.home-caction .qua img{width: 80px;height: 80px;border-radius: 50%;position: relative;margin-right: -25px;align-self: center;}
.home-caction .cus{background-color: #3c6e71;color:#fff;font-size: 12px;border-radius: 15px;margin-bottom: 10px;}
.home-caction .cus img{width: 80px;height: 80px;border-radius: 50%;position: relative;margin-left: -20px;}

/*===================================================================
*SERVICE SECTION
*==================================================================**/
/* Service Cards */
.Service_cards {
    background-color: #222628;
}

/* Card Borders and Hover Effects */
.service-card {
    position: relative;
    background-color: #222628;
}
 a {
    text-decoration: none;
}
   
.card-title {
    font-weight: 600;
    margin-right: 20px;
    padding-right:20px;
}
.card-text{
    font-weight: 300;
}
/* Rectangular Border: Static (Commented for future reference) */
/*
.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid #ecedf1;
    border-radius: 0;
    z-index: 3;
}
*/

/* Rounded Border: Hover Effect */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #ecedf1;
    border-radius: 0 150px 0 50px;
    z-index: 2;
    transition: border-radius 0.3s ease;
}

.service-card:hover::after {
    border-radius: 0 50px 0 50px;
}

.service-card:hover .card-body {
    transform: translateY(-10px);
    transition: transform 0.3s ease;
}

/* Image Bottom-Left Radius */
.card-img-bottom {
    height: 120px;
    object-fit: cover;
    width: calc(100% - 2rem);
    background-color: #222628;
    border-radius: 0 0 0 70px;
}

/* Second Div Positioning */
.secondDiv .container {
    margin-top: -100px;
    z-index: 1;
}

@media (max-width: 768px) {
    .card-img-bottom {
        height: 100px;
    }

    .secondDiv .container {
        margin-top: -60px;
    }
}
.intro-text {
  color: #2c6fb7;
  text-transform: uppercase;
  font-size: 40px;
  width: 50%;
  font-weight: 800;
}
.intro-btn{
   background-color:#2c6fb7; 
   color:#fff;
   text-decoration:none;
}
.intro-btn:hover {
    background-color:#fff ; /* darker shade for hover, optional */
    border-color: #2c6fb7;
    background-color:#fff ; 
}
/** =================================================================
* Partner section
* ===================================================================**/

/* Partner Item */
.partner-item {
    transition: transform 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px); /* Subtle lift */
}

/* Partner Image Wrapper */
.partner-img-wrapper {
    position: relative;
    display: block;
    width: 250px;
    height: 250px;
    margin-left: auto;
    margin-right: auto;
}
/* Hover Effect - Adjusted to avoid cropping */
.partner-img-wrapper:hover .partner-img {
    transform: scale(1.1); /* Increased scale for visibility, no cropping */
}

/* Overlay Effect */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 110, 253, 0.2);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease; /* Added transform transition */
}

/* Ensure overlay scales with image */
.partner-img-wrapper:hover .overlay {
    opacity: 1;
    transform: scale(1.1); /* Matches image scale */
}

 .accordion-button::after {
  background-image: none !important;
  content: "+";
  font-weight: bold;
  margin-left: auto;
  width: auto;
  height: auto;
  transform: none !important;
}

.accordion-button:not(.collapsed)::after {
  content: "−"; /* Minus sign when expanded */
}

/* Optional: Add smooth transition */
.accordion-collapse {
  transition: all 0.3s ease;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .partner-img-wrapper {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 576px) {
    .partner-img-wrapper {
        width: 140px;
        height: 140px;
    }
}
.partner-name-section {
    background-image: url('../images/backimg2.png'); 
    background-size: cover;
    background-repeat: no-repeat; 
    height: auto;
    width: 100%; 
}
.partner-img{
    width: 100%; 
   /*height: 100%;*/
   transform: translateY(20%); 
}
.partner-name{
    color:#011429;
    font-size:40px;
    font-weight:900;
}
.inner-partner-name{
    font-size: 40px;
    font-weight: 800;
    text-transform:  uppercase;
}
.inner-partner-role{
    color:gold;
    font-size:20px;
    font-weight:400;
    text-transform:  uppercase;
}
.partner-role{
    color:#2c6fb7;
}
.partner-socials{
    color:#2c6fb7;
}
.partner-contact{
    color:#2c6fb7;
}
.partner-bio{
    font-size: 14px; line-height: 1.5;
    
}
.partner-bio-head {font-size: 30px; color:#2c6fb7;
    font-weight:600;
}
.leadership-team-section {
    max-width: 1320px;
    margin: 0 auto;
    /*padding: 30px;*/
}


.leadership-team-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.leadership-team-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: block;
}
.leadership-team-card {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer; 
}

.leadership-team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #2c6fb7, transparent);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
    pointer-events: none; 
}

.leadership-team-card:hover::before {
    opacity: 1;
}


.leadership-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: transparent;
    z-index: 2;
    transition: color 0.6s ease;
}

.leadership-team-socials ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.leadership-team-socials li a {
    font-size: 20px;
    transition: color 0.3s ease;
}

.leadership-team-socials li a:hover {
    color: #fff;
}

.leadership-team-name {
    color: #fff;
    margin-bottom: 20px;
}

.leadership-team-name a {
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.leadership-team-name a:hover {
    color: #fff;
}

.leadership-team-job {
    display: inline-block;
    padding: 5px 15px;
    font-size: 14px;
    color: #fff;
    background: transparent;
    border: 0.5px solid #d1d0d0;
    border-radius: 50px;
    text-align: center;
    transition: background 0.3s ease, color 0.3s ease;
    margin-bottom: 20px;
}

.leadership-team-job:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/*scroll effect
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
}

.fade-up.animate {
  animation: fadeUp 0.8s ease-out forwards;
}
*/
/** =================================================================
* SERVICE PAGE
* ===================================================================**/
.bg-jbba-blue { background-color: var(--jbba-blue) !important; }
.text-jbba-blue { color: var(--jbba-blue) !important; }
.border-jbba-blue { border-color: var(--jbba-blue) !important; }
.btn-jbba-blue {
  background-color: var(--jbba-blue) !important;
  border-color: var(--jbba-blue) !important;
  color: #fff !important;
}
.btn-jbba-blue:hover,
.btn-jbba-blue:focus {
  background-color: #245a9a !important;
  border-color: #245a9a !important;
  color: #fff !important;
}
.list-group-item.active,
.list-group-item.active:focus,
.list-group-item.active:hover {
  background-color: var(--jbba-blue) !important;
  border-color: var(--jbba-blue) !important;
  color: #fff !important;
}
.service-divider {
  height: 3px;
  width: 60px;
  background: var(--jbba-blue);
  margin: 1.5rem 0;
}
.service-hero-banner {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.service-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--jbba-blue);
  opacity: 0.6;
  z-index: 1;
}
.service-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.service-hero-content h1,
.service-hero-content p {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
/* List Group Improvements */
.list-group {
  background-color: #f8f9fa;
  border-radius: 0.5rem;
  padding: 0.5rem;
}
.list-group-item {
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 0.75rem 1.25rem;
  transition: all 0.2s ease;
}
.list-group-item:last-child {
  margin-bottom: 0;
}
.list-group-item h5 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.list-group-item h5::after {
  content: "→";
  margin-left: auto;
  opacity: 0;
  transition: all 0.2s ease;
  color: var(--jbba-blue);
}
.list-group-item:hover h5::after,
.list-group-item.active h5::after {
  opacity: 1;
  transform: translateX(3px);
}
.list-group-item.active h5::after {
  color: #fff;
}
/* Consultation Banner */
.image-consult {
  position: relative;
  height: 250px;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-top: 2rem;
}
.image-consult-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}
.image-consult-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  color: #fff;
}
.image-consult-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.image-consult-content p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.secondServicecol .service-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 2rem;
  display: block;
}
.secondServicecol .service-title {
  color: #212529;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.secondServicecol .service-text {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.service-feature-title {
  font-weight: 600;
  color: var(--jbba-blue);
  margin: 1.8rem 0 0.8rem;
}
.service-feature-list {
  padding-left: 1.5rem;
}
.service-feature-list li {
  margin-bottom: 0.8rem;
  position: relative;
}
.service-feature-list li::before {
  content: "•";
  color: var(--jbba-blue);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
@media (max-width: 768px) {
  .service-hero-banner { height: 180px; }
  .service-hero-content h1 { font-size: 1.4rem; }
  .service-hero-content p { font-size: 1rem; }
  .image-consult { height: 200px; }
  .image-consult-content h3 { font-size: 1.25rem; }
  .secondServicecol .service-img { max-height: 220px; }
  .secondServicecol .service-title { font-size: 1.5rem; }
}


/** =================================================================
* OTHER PAGE
* ===================================================================**/

.partnershow-headerwrap .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 1, 0.3)), url('assets/images/courtroom.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}

.header-wrap{min-height: 400px;height: 100%;display: flex; align-items: center;color: #3c6e71}
.header-wrap h1 {color: #3c6e71;border-bottom: solid 0px #ffffff;font-size: 65px;}
.header-wrap nav{height: 20px;justify-content:center;background-color: transparent;font-size: 12px;text-align: center;color:#3c6e71;}
.header-wrap nav a{color:#3c6e71;padding: 0 3px;}
.header-wrap .breadcrumb-item + .breadcrumb-item::before {color: #389279;}
.header-wrap .breadcrumb-item.active {color: #389279;}
.about-mv{background-color: #29AB87;color: #F1F1F1;padding-top: 50px;padding-bottom: 50px;height: 200px;}
.about-mv h2 {font-weight: 800;font-size: 40px;}
.about-mv i{font-size: 40px;margin-right:5px;}
.about-mv .d-flex{border: 1px solid #F1F1F1;border-radius: 10px;height: 100%;}
.about-vm{margin-top: -50px;color: #fff;}
.about-vm .vi{background-color: #389279;padding: 25px;height: 100%;border-radius: 15px;}
.about-vm .vi i{font-size: 45px;width: 80px;height: 80px;background-color: #3c6e71;border-radius: 50%; padding: 10px 16px;position: relative;margin-bottom:25px;}
.about-vm .mi{background-color: #3c6e71;padding: 25px;border: 0;height: 100%;border-radius: 15px;}
.about-vm .mi i{font-size: 45px;width: 80px;height: 80px;background-color: #389279;border-radius: 50%; padding: 10px 16px;position: relative;margin-bottom:25px;}
.about-values{padding-top: 50px;padding-bottom: 50px;}
.about-values .container{width:80%;}
.about-values img{border-radius: 15px;}
.about-values p{display: flex;border: 1px solid #3c6e71;padding: 5px;border-radius: 15px;}
.about-values i{font-size: 40px;align-self: center;margin-left: -20px;color: #3c6e71;}
.about-values strong{display: contents;}
.about-why{padding-top: 50px;padding-bottom: 50px;}
.about-why .container{width:70%;margin:0 auto;}
.service-page{padding-top: 50px;padding-bottom: 50px;}
.service-page ul{margin: 0;padding: 0;list-style: none;}
.service-page li{margin-bottom: 8px;}
.service-page li::before{font-family: "bootstrap-icons";content: "\F270";color: #00648F;margin-right:5px;}
.service-page img{height: 400px;border-radius: 10px;box-shadow: 2px 1px 4px rgba(0, 0, 0, 0.2);object-fit: cover;
	width: 100%;object-position: center;}
.contact-page{padding-top: 50px;padding-bottom: 50px;}
.contact-page .card{border-radius: 15px;}
.ccontacts{background-color: #3c6e71;color: #fff;padding: 15px;border-radius: 15px 0 0 15px;}
.cform{background-color: #f9f9f3;padding: 15px; border-radius: 0 15px 15px 0;}
.cform input{border-color: #29AB87;}
.contact-page i{font-size: 35px;color: #fefbea;}

/** =================================================================
* ABOUT US
* ===================================================================**/

    .aboutus-hero {
        background-color: #2c6fb7;
        color: white;
        padding-bottom: 50px;
        height: 600px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }

    .aboutus-hero-top i {
        position: relative;
        padding-left: 25px; 
    }

    }
    .hero-image-container {
        position: relative;
        width: 100%;
        max-width: 600px;
        transform: translateY(10%); 
        z-index: 2;
        bottom: 0;
        right: 0;
    }

    .aboutus-hero-img {
        width: 100%;
        max-width: 450px;
        height: 600px;
        border-radius: 12px;
        object-fit: cover;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        
    }
    
    .about-columntop{
        border-top: 1px solid #c2c4c7;
    }
    
        /* Sticky Image Effect */
    .sticky-image {
      position: sticky;
      top: 20px; /* Adjust this value to control the distance from the top of the viewport */
      align-self: flex-start; /* Ensures the image aligns properly within the row */
      max-height: 80vh; /* Prevents the image from being too tall */
      object-fit: cover; /* Ensures the image scales nicely within its container */
    }
    
    /* Optional: Add some spacing for better aesthetics */
    .mission-section {
      margin-top: 50px; /* Adds some space above the section */
      margin-bottom: 40px;
    }
    
    .mission-vision{
        background: #fff;
        padding: 30px;
        border-radius: 5px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        font-size: 1.1rem;
        transition: all 0.3s ease;
        min-height: 120px;
        display: flex;
        align-items: center;
        border-left: 4px solid #1a3e6f;
    }
    
    .mission-vision:hover{
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    }
    
    .mission-vision h2{
        margin: 0 0 10px 0;
        color: #1a3e6f;
        font-size: 1.4rem;
    }
    
    .mission-vision p{
        margin: 0;
        color: #555;
        font-size: 1rem;
        line-height: 1.5
    }
    
    .aboutus-hero-outer{
        height: 700px;
    }
    .aboutus-hero-outer-partner{
        height: 700px;
    }
    
    @media (max-width: 767.98px) {
     .aboutus-hero-outer{
        height: 950px;
    }
    .aboutus-hero-outer-partner{
        height: 1200px;
    }
}
    .inner-text{
        font-weight: 300;
    }
    .mission-text {
    display: flex;         
    flex-direction: column; 
    align-items: flex-start; 
    justify-content: left; 
    font-weight:bolder;
    font-size: 7.5px;     
}
.mission-section {
    padding-top: 3rem;
}
.mission-section-img {
    border-right: 1px solid #c2c4c7;
    padding-right: 2rem;
}
.mission-text h1 {
    font-size: 3rem;
    line-height: 1.2;
}
.mission-text h1 span {
    display: inline-block;
    margin-top: 0.5rem;
}
.mission-btn {
    background: #2c6fb7;
    color: #fff;
    padding: 0.75rem 2rem;
    border: none;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    border-radius: 10px;
}
.mission-btn:hover {
    background:#fff ;
    color: #2c6fb7;
}
.core-values-content {
    border-top: 1px solid #c2c4c7;
    padding: 20px;
}

.core-values-content h4 {
    color: #333;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.core-values-content h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #c2c4c7;
}

.core-values-content li {
    font-size: 1rem;
    color: #555;
}
    @media (min-width: 768px) {
        .aboutus-hero {
            padding-bottom: 100px;
        }
        .hero-image-container {
            position: absolute;
            right: 0;
            width: 50%;
            margin-top: 0; /* Remove extra space on desktop */
        }
    }
    


/** =================================================================
* CONTACT US
* ===================================================================**/
 
  /* Hero Banner Styling */
    .contact-hero-banner {
        position: relative;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        color: #fff;
        text-align: center;
    }

    .contact-hero-banner h1 {
        font-size: 3rem;
        font-weight: 700;
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
        margin-bottom: 0.5rem;
    }

    .contact-hero-banner p.lead {
        font-size: 1.4rem;
        font-weight: 500;
        text-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    }

    /* Contact Section */
    .contact-section {
        background-color: var(--jbba-light-gray);
        padding: 3rem 0 5rem;
    }

    .contact-wrapper {
        background-color: #fff;
        border-radius: 1rem;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
        overflow: hidden;
        max-width: 1100px;
        margin: 0 auto;
    }

    /* Intro Text */
    .contact-intro {
        max-width: 700px;
        margin: 0 auto 2.5rem;
        color: var(--jbba-gray);
    }

    .contact-intro h2 {
        color: var(--jbba-blue);
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .contact-intro p {
        font-size: 1.15rem;
        line-height: 1.6;
    }

    /* Contact Options Buttons */
    .contact-options {
        text-align: center;
        margin-bottom: 3rem;
    }

    .contact-options .btn {
        margin: 0 0.5rem 0.75rem;
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
        border-radius: 0.5rem;
        transition: background-color 0.3s ease, border-color 0.3s ease;
    }

    .contact-options .btn-outline-primary {
        border-color: var(--jbba-blue);
        color: var(--jbba-blue);
    }

    .contact-options .btn-outline-primary:hover {
        background-color: var(--jbba-blue);
        color: #fff;
        border-color: var(--jbba-blue-dark);
    }

    .contact-options .btn-outline-success {
        border-color: #25d366;
        color: #25d366;
    }

    .contact-options .btn-outline-success:hover {
        background-color: #25d366;
        color: #fff;
        border-color: #1ebe57;
    }

    /* Contact Info */
    .contact-info {
        padding: 2.5rem 2.5rem 2.5rem 3rem;
        border-right: 1px solid #e9ecef;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .contact-info h3 {
        color: var(--jbba-blue);
        margin-bottom: 1.75rem;
        font-weight: 700;
    }

    .contact-info .contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1.5rem;
        color: var(--jbba-gray);
        font-size: 1.1rem;
    }

    .contact-info .contact-item i {
        font-size: 1.5rem;
        color: var(--jbba-blue);
        margin-right: 1rem;
        flex-shrink: 0;
        margin-top: 3px;
    }

    /* Contact Form */
    .contact-form {
        padding: 2.5rem 3rem;
        background-color: var(--jbba-light-gray);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .contact-form h3 {
        color: var(--jbba-blue);
        margin-bottom: 1.5rem;
        font-weight: 700;
    }

    .contact-form p {
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
        color: var(--jbba-gray);
    }

    .contact-form .form-floating > label {
        color: var(--jbba-gray);
    }

    .contact-form .form-control {
        border-radius: 0.5rem;
        border: 1px solid #ced4da;
        padding: 0.75rem 1rem;
        font-size: 1rem;
        transition: border-color 0.3s ease;
    }

    .contact-form .form-control:focus {
        border-color: var(--jbba-blue);
        box-shadow: 0 0 8px rgba(0, 123, 255, 0.25);
    }

    .contact-form select.form-select {
        border-radius: 0.5rem;
        padding: 0.75rem 1rem;
        font-size: 1rem;
        border: 1px solid #ced4da;
        transition: border-color 0.3s ease;
    }

    .contact-form select.form-select:focus {
        border-color: var(--jbba-blue);
        box-shadow: 0 0 8px rgba(0, 123, 255, 0.25);
    }

    .contact-form .btn-primary {
        background-color: var(--jbba-blue);
        border-color: var(--jbba-blue);
        padding: 0.85rem 2.5rem;
        font-size: 1.15rem;
        border-radius: 0.5rem;
        font-weight: 600;
        align-self: flex-start;
        transition: background-color 0.3s ease, border-color 0.3s ease;
    }

    .contact-form .btn-primary:hover,
    .contact-form .btn-primary:focus {
        background-color: var(--jbba-blue-dark);
        border-color: var(--jbba-blue-dark);
        outline: none;
    }

    /* Map Styling */
    .map-container {
        margin-top: 4rem;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    }

    .map-container iframe {
        width: 100%;
        height: 450px;
        border: 0;
        display: block;
    }

    /* Trust Section */
    .contact-trust {
        max-width: 1100px;
        margin: 4rem auto 2rem;
        text-align: center;
        color: var(--jbba-gray);
    }

    .contact-trust h5 {
        font-weight: 700;
        color: var(--jbba-blue);
        margin-bottom: 1.5rem;
        font-size: 1.3rem;
    }

    .trusted-logos {
        display: flex;
        justify-content: center;
        gap: 2.5rem;
        flex-wrap: wrap;
        align-items: center;
    }

    .trusted-logos img {
        max-height: 50px;
        opacity: 0.7;
        transition: opacity 0.3s ease;
    }

    .trusted-logos img:hover {
        opacity: 1;
    }

    /* Responsive */
    @media (max-width: 991.98px) {
        .contact-wrapper {
            max-width: 95%;
        }

        .contact-info {
            border-right: none;
            border-bottom: 1px solid #e9ecef;
            padding: 2rem 2rem 1.5rem 2rem;
        }

        .contact-form {
            padding: 2rem 2rem 2rem 2rem;
        }

        .contact-wrapper .row.g-0 {
            flex-direction: column;
        }
    }

    @media (max-width: 575.98px) {
        .contact-hero-banner h1 {
            font-size: 2.2rem;
        }

        .contact-hero-banner p.lead {
            font-size: 1.1rem;
        }

        .contact-options .btn {
            font-size: 0.9rem;
            padding: 0.5rem 1.25rem;
            margin: 0.3rem 0.3rem 0.6rem;
        }
    }

/*==========================================================
# FOOTER
==========================================================**/
.footer{padding-top:30px;padding-bottom: 0;background-color: #2c6fb7;color: #fff;font-size: 15px;}
.footer a{color: inherit;text-decoration: none;}
.footer h4{font-size: 20px;font-weight: 700;margin-bottom: 15px;}
.footer .footer-contacts ul{padding: 0;margin:0;list-style: none;}
.footer .footer-contacts li{height: 30px;}
.footer .footer-links ul{padding: 0;margin:0;list-style-type: none;}
.footer .footer-links li{margin-bottom: 8px;}
.footer .footer-links li a{color: inherit;text-decoration: none;}
.footer .footer-links li::before{font-family: "bootstrap-icons";content:"\F285";margin-right:5px;font-size: 10px;}
.footer .footer-links li a:hover{text-decoration: overline;}
.footer .copyright{font-size: 10px;color: #89aaba;}


/*==========================================================
# Loader
==========================================================**/
#preloader {position: fixed;top: 0;left: 0;width: 100%;height: 100%;background-color: rgba(0, 100, 143, 0.15);	display: flex;justify-content: center;align-items: center;z-index: 9999;}
.bounce-container {display: flex;justify-content: center;align-items: center; }
.bounce-ball {width: 15px;height: 15px;background-color: #21a3ce;border-radius: 50%;margin: 0 5px;animation: bounce 1s infinite; }
.bounce-ball:nth-child(1) {animation-delay: 0s; }
.bounce-ball:nth-child(2) {animation-delay: 0.33s; }
.bounce-ball:nth-child(3) {animation-delay: 0.66s;}
@keyframes bounce {
	0% {
	  transform: translateY(0);
	}
	50% {
	  transform: translateY(-50px);
	}
	100% {
	  transform: translateY(0);
	}
}

/*==========================================================
# Back to top button
==========================================================**/
.back-to-top {position: fixed;opacity: 0; visibility: hidden;right: 15px;bottom: 15px;z-index: 99999;    background: #003262;width: 40px;height: 40px;border-radius: 4px;transition: all 0.4s;}
.back-to-top i {font-size: 24px;color: #fff;padding: 5px;text-align: center;}
.back-to-top:hover {background: #d1760e;color: #fff;}
.back-to-top.active {visibility: visible;opacity: 1;}

/*==========================================================
# Back to top button
==========================================================**/
@media (max-width:400px){
	.mobile-menu{width: 100%;}
}
@media (max-width: 600px) {
	.navbar {display: flex;}
	#hero, #hero .carousel-item {height: 400px;}
	#hero p {width: 90%;font-size: 13px; }
	#hero .btn-get-started {padding: 10px;font-size: 12px;}
	.home-intro-top {font-size: 20px;min-height: 150px;text-align: center;}
	.home-intro-top .btn-lg{font-size: 18px;}
	.home-intro-mid .container {width: 100%;}
	.about-values .container{width: 100%;}
	.about-values i{margin-left: -10px;}
	.about-vm .vi {	margin-top: 15px; }
	.home-intro-mid h2 {font-size: 30px; }
	.home-intro-mid .btn-lg{font-size: 16px;}
	.home-intro-bottom .text {margin-left: 0px;margin-top: -10px;margin-bottom: 20px;}
	.home-intro-bottom .text h2 {font-size: 20px; }
	.header-wrap nav {height: auto;}
	.header-wrap h1 {font-size: 48px;}
	.about-why .container {width: 100%;}
	.home-intro-serv .intro {width: 100%;}
	.home-caction .cus img, .home-caction .eco img{margin-left: -10px;} 
	.home-caction .qua img{margin-right: -10px;}
	
}

@media (min-width: 768px) {
	.navbar-toggler {
		border-color: white; /* Set border color to white */
	}
}

@media (max-width: 860px){
	.menu-item{display: none;}
	.mobilebtn{display: block;}
	.link-container{display: block; flex-direction: column;width:250px;position: fixed;top: 0;right: -100%;z-index: 999;background-color:#fff;box-shadow: -10px 0 10px rgba(0,0,0,0.1);transition:0.75s ease-out;}
	nav a{box-sizing: border-box;height: auto;width:100%;padding: 10px 20px;justify-content: flex-start;}
	.showmenu, .hidemenu{display: block;padding:10px;}
	#mobilemenu-active:checked ~ .link-container{right:0;}
	#mobilemenu-active:checked ~ #overlay{top:0;left: 0;position: fixed;height: 100%;width:100%;background-color:rgba(32, 11, 6, 0.02);transition:0.5s ease-out;z-index: 998;}
	nav a:hover{background-color:#000;}
	nav .logo:hover{background-color: transparent;}
	/* Dropdown-specific styles */
    .dropdown {position: relative;display: flex;flex-direction: column;}
    .dropdown-content {display: none;flex-direction: column;background-color: #f9f9f9;width: 100%;        box-shadow: none;padding: 0;}
    .dropdown input[type="checkbox"] {display: none;}
    .dropdown input[type="checkbox"]:checked ~ .dropdown-content {display: flex;position: initial;background: rgba(197, 213, 220, 0.374);}
    .dropdown-content a {color: black;padding: 10px 20px;text-decoration: none;}
    .dropdown-content a:hover {background-color: #ddd;}
    .dropdown > label {display: flex;justify-content: space-between;align-items: center;cursor: pointer;      width: 100%;padding: 10px 0px; }
}

