* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  /* distance from bottom */
  right: 30px;
  /* distance from right */
  display: none;
  /* hidden by default */
  width: 50px;
  height: 50px;
  background-color: #61b0d8;
  /* green button */
  color: #ffffff;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  /* circular button */
  font-size: 20px;
  z-index: 9999;
  transition: all 0.3s ease;
}
a{
  text-decoration: none;
}
.back-to-top:hover {
  background-color: #61b0d8;
  color: #ffffff;
  transform: translateY(-3px);
}

.back-to-top i {
    vertical-align: middle;
    margin-top: -18px;
}

/* ===============================
   VARIABLES
================================ */
:root {
  --brand-red: #61b0d8;
  --brand-red-dark: #61b0d8;
  --border: #ddd;
  --muted-gray: #f5f5f5;
  --topbar-blue: #61b0d8;
}

/* ===============================
   TOP BAR
================================ */
.brand-topbar {
  display: flex;
  align-items: center;
  justify-content: right;
  background: var(--topbar-blue);
}
#google_translate_element {
      margin-right: 28px;
}

/* ===============================
   GOOGLE TRANSLATE
================================ */
.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
}
.goog-te-gadget {
    font-family: arial;
    font-size: 0!important;
    color: #666;
    white-space: nowrap;
}

.goog-te-combo {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 13px;
  cursor: pointer;
}
body > .skiptranslate { display: none !important; }
.goog-te-banner-frame.skiptranslate { display: none !important; }

body {
  top: 0 !important;
}

/* ===============================
   NAVBAR
================================ */
.brand-navbar .nav-link {
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  margin: 8px;
  transition: 0.3s;
  font-size: 15px;
}

.brand-navbar .nav-link:hover,
.brand-navbar .nav-link.active {
  color: var(--brand-red);
}

/* ===============================
   DROPDOWN
================================ */
.product-dropdown {
  max-height: 420px;
  overflow-y: auto;
  border: 1px solid var(--border);
  text-transform: uppercase;
}
.dropdown-item{
  text-transform: uppercase;
}
.dropdown-item:hover {
  background: var(--brand-red-dark);
  color: #fff;
}

/* ===============================
   TOGGLER
================================ */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(177,0,0,0.9)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===============================
   OFFCANVAS
================================ */
.brand-offcanvas {
  background: var(--muted-gray);
}

.brand-offcanvas .nav-link {
  font-weight: 600;
  color: #000;
  padding: 8px 0;
}

.brand-offcanvas .nav-link:hover {
  color: var(--brand-red);
}

/* ===============================
   MOBILE PRODUCTS
================================ */
.mobile-products .mobile-product-list {
  list-style: none;
  padding-left: 15px;
  display: none;
}

.mobile-products.open .mobile-product-list {
  display: block;
}

.mobile-product-list li a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.mobile-product-list li a:hover {
  color: var(--brand-red);
}

.mobile-products i {
  transition: transform 0.3s;
}

.mobile-products.open i {
  transform: rotate(180deg);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .brand-topbar {
    justify-content: center;
  }

  .goog-te-combo {
    width: 100%;
  }
}

/* carousel */
.hero-carousel {
    width: 100%;
    overflow: hidden;
}

.hero-carousel .carousel-inner {
    width: 100%;
}

.hero-carousel .hero-image img {
    width: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 992px) {
    .hero-carousel .hero-image img {
        height: 55vh;
    }
}

@media (max-width: 576px) {
    .hero-carousel .hero-image img {
        height: 40vh;
    }
}

/* counter */
.impact-section {
    width: 100%;
    overflow: hidden;
}

.impact-container {
    display: flex;
    min-height: 420px;
}

.impact-image {
    flex: 1;
}

.impact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.impact-content {
    flex: 1;
    background: #0d6b4d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 40px;
    color: #fff;
}

.impact-box {
    text-align: center;
    max-width: 240px;
}

.impact-box h2 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 12px;
}

.impact-box p {
    font-size: 18px;
    line-height: 1.6;
}

.impact-divider {
    width: 1px;
    height: 120px;
    background: rgba(255, 255, 255, 0.6);
}

@media(max-width:992px) {
    .impact-container {
        flex-direction: column;
    }

    .impact-content {
        flex-direction: column;
        gap: 30px;
    }

    .impact-divider {
        width: 80px;
        height: 1px;
    }

    .impact-box h2 {
        font-size: 48px;
    }
}

@media(max-width:480px) {
    .impact-box h2 {
        font-size: 42px;
    }

    .impact-box p {
        font-size: 16px;
    }
}

/* about us */
.about-sec {
    padding: 50px 0;
}

.about-img {
    min-height: 380px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.about-text {
    padding: 30px;
}

.about-text h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #222;
}

.about-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.about-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 22px;
    background: #0d6efd;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s ease;
}

.about-btn:hover {
    background: #084298;
    color: #fff;
}

@media (max-width: 768px) {
    .about-img {
        min-height: 260px;
        margin-bottom: 20px;
    }

    .about-text {
        padding: 20px;
    }

    .about-text h2 {
        font-size: 22px;
    }
}

/* ===== Heading Section ===== */
.heading-section .subheading {
  display: inline-block;
  margin-bottom: 0;
  color: #040404;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}

/* Decorative lines */
.heading-section .subheading::after,
.heading-section .subheading::before {
  position: absolute;
  top: 50%;
  content: "";
  transform: translateY(-50%);
  width: 50px;
  height: 1px;
  background: #000;
}

.heading-section .subheading::after {
  left: -60px;
}

.heading-section .subheading::before {
  right: -60px;
}

/* Main Heading */
.heading-section h2 {
  font-size: 40px;
  font-weight: 600;
}

/* ===== White Theme ===== */
.heading-section.heading-section-white .subheading {
  color: rgba(255, 255, 255, 0.9);
}

.heading-section.heading-section-white .subheading::after,
.heading-section.heading-section-white .subheading::before {
  background: #fff;
}

.heading-section.heading-section-white h2 {
  font-size: 40px;
  color: #fff;
}

.heading-section.heading-section-white p {
  color: rgba(255, 255, 255, 0.9);
}

/* ===== Tablet (≤ 991px) ===== */
@media (max-width: 991px) {
  .heading-section .subheading {
    font-size: 26px;
    letter-spacing: 1.5px;
  }

  .heading-section .subheading::after,
  .heading-section .subheading::before {
    width: 35px;
  }

  .heading-section .subheading::after {
    left: -45px;
  }

  .heading-section .subheading::before {
    right: -45px;
  }

  .heading-section h2 {
    font-size: 32px;
  }
}

/* ===== Mobile (≤ 767px) ===== */
@media (max-width: 767px) {
  .heading-section .subheading {
    font-size: 20px;
    letter-spacing: 1px;
  }

  .heading-section .subheading::after,
  .heading-section .subheading::before {
    width: 25px;
  }

  .heading-section .subheading::after {
    left: -35px;
  }

  .heading-section .subheading::before {
    right: -35px;
  }

  .heading-section h2 {
    font-size: 28px;
  }
}

/* ===== Small Mobile (≤ 480px) ===== */
@media (max-width: 480px) {
  .heading-section .subheading {
    font-size: 18px;
  }

  .heading-section .subheading::after,
  .heading-section .subheading::before {
    display: none;
    /* cleaner look on very small screens */
  }

  .heading-section h2 {
    font-size: 24px;
  }
}

/* CLIENT LOGO SLIDER */
.partner-slider {
  overflow: hidden;
  padding: 20px 0;
}

/* ROW */
.partner-row {
  display: flex;
  gap: 20px;
  width: max-content;
  margin-bottom: 28px;
  flex-wrap: nowrap; /* Keep in single row for slider */
}

/* LOGO BOX */
.partner-logo {
  width: 200px;
  height: 200px;
  background-color: #fff;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s ease;
  flex-shrink: 0; /* Prevent shrinking on small screens */
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  transition: 0.35s ease;
  object-fit: contain;
}

/* HOVER EFFECT */
.partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 10px;
}

.partner-logo:hover img {
  filter: grayscale(0%);
}

/* ANIMATION */
.move-left {
  animation: moveLeft 36s linear infinite;
}

.move-right {
  animation: moveRight 36s linear infinite;
}

.partner-slider:hover .partner-row {
  animation-play-state: paused;
}

@keyframes moveLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes moveRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1024px) {
  .partner-logo {
    width: 150px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .partner-logo {
    width: 120px;
    height: 80px;
  }
  .partner-row {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .partner-logo {
    width: 100px;
    height: 60px;
  }
  .partner-row {
    gap: 8px;
  }
}

/* products */

.services {
  border: 1px solid #5aa6ce;
  margin-bottom: 40px;
  width: 100%;
  border-radius: 4px;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.services .icon {
  line-height: 1.3;
  position: relative;
  z-index: 0;
  margin: 0 auto;
  width: 100px;
  height: 50px;
  background: #e4ebef !important;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.service-icon1 {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

/* Optional hover effect */
.services:hover .service-icon1 {
  transform: scale(1.1);
  transition: 0.3s ease;
}
.services .icon:after,
.services .icon:before {
  position: absolute;
  left: 0;
  right: 0;
  color: white;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.services .icon:after {
  top: -30px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50px 30px 50px;
  border-color: transparent transparent #e4ebef transparent !important;
}

.services .icon:before {
  bottom: -28px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 50px 0 50px;
  border-color: #e4ebef transparent transparent transparent !important;
}

.services .icon span {
  font-size: 50px;
  color: #fff;
}

.services .media-body {
  width: 100%;
  margin-top: 10px;
  padding: 20px;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: rgba(0, 0, 0, 0.8);
}

.services .media-body h3 {
  font-size: 16px;
    font-weight: bold;
    color: #000;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.services .media-body p {
  margin-bottom: 0;
}

.services:hover {
  background: #5aa6ce;
}

.services:hover .icon {
  background: #8eebbe;
}

.services:hover .icon:after {
  border-color: transparent transparent #8eebbe transparent;
}

.services:hover .icon:before {
  border-color: #8eebbe transparent transparent transparent;
}

.services:hover span {
  color: #5aa6ce;
}

.services:hover .media-body {
  color: rgba(255, 255, 255, 0.8);
}

.services:hover .media-body h3 {
  color: #fff;
}

.services.active {
  background: #5aa6ce;
}

.services.active .icon span {
  color: #fff;
}

.services.active .media-body {
  color: rgba(255, 255, 255, 0.8);
}

.services.active .media-body h3 {
  color: #fff;
}

.services.active .media-body p {
  margin-bottom: 0;
}

.services-wrap {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}

.services-wrap .icon {
  line-height: 1.3;
  position: relative;
  width: 80px;
  height: 80px;
  background: #5aa6ce;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.services-wrap .icon span {
  font-size: 40px;
  color: #fff;
}

.services-wrap .media-body {
  width: calc(100% - 80px);
}

.services-wrap .media-body h3 {
  font-weight: 600;
  text-transform: capitalize;
  font-size: 22px;
}

.services-wrap:hover .icon {
  background: #5aa6ce;
}

.services-wrap:hover .icon span {
  color: #fff;
}

/* footer */
.kc-footer {
  color: #0a0808;
  background-color: #ecf0f2;
  padding: 70px 60px 25px;
  font-family: 'Segoe UI', sans-serif;
}

.kc-footer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  max-width: 1400px;
  margin: auto;
}

.ftco-heading-2 {
  color: #5aa6ce;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  text-transform: uppercase;
}
.ftco-heading-2::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #5aa6ce;
  display: block;
  margin-top: 8px;
}
.footer-col p {

  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {

  line-height: 1.8;
  margin-bottom: 6px;
}

.footer-col ul li a {
  color: #0c0a0a;
  text-decoration: none;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.footer-col ul li i {
  margin-right: 8px;
  color: #040404;
}

.social-title {
  margin-top: 25px;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  background: #5eabd3;
  color: #f0f2f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 40px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: #080707;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .kc-footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .kc-footer {
    padding: 50px 25px 20px;
  }

  .kc-footer-inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
