@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Inter";
  font-size: 20px;
  color: #223645;
  background-color: #012e4d;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.page-header.is-sticky {
  position: fixed;
  width: 100%;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  animation: slideDown 0.35s ease-out;
  z-index: 1000;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.page-header.is-sticky .headerUpper {
  display: none;
}

.page-header.is-sticky .headermidle {
  display: none;
}

.page-header.is-sticky .navAreaBer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* header menu */

/* =========================
   HEADER
========================= */

#mainHeader {
  position: relative;
  width: 100%;
  z-index: 9999;
  /* background: #fff; */
  transition: all 0.45s ease-in-out;
}

/* =========================
   STICKY HEADER
========================= */

#mainHeader.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgb(1 46 77);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  animation: stickyHeader 0.45s ease forwards;
}

/* Sticky Animation */

@keyframes stickyHeader {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   NAVBAR
========================= */

#mainHeader .navbar {
  /* min-height: 90px; */
  transition:
    min-height 0.4s ease,
    padding 0.4s ease;
}

/* =========================
   STICKY NAVBAR SMALL
========================= */

#mainHeader.sticky .navbar {
  min-height: 70px;
}

/* =========================
   LOGO
========================= */

#mainHeader .logo img {
  width: 225px;
  transition:
    width 0.4s ease,
    transform 0.4s ease;
}

#mainHeader.sticky .logo img {
  /* width: 125px; */
}

/* =========================
   MENU
========================= */

#mainHeader .nav-link {
  position: relative;
  font-size: 13px;
  font-weight: 400;
  /* color: #222; */
  /* padding: 10px 13px !important; */
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

#mainHeader .nav-link:hover {
  /* color: #c90722; */
}

/* Active underline */

#mainHeader .nav-link::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 2px;
  height: 2px;
  background: #c6d300;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

#mainHeader .nav-link:hover::after,
#mainHeader .nav-link.active::after {
  transform: scaleX(1);
}

header {
  position: relative;
}

/* Navbar */
.navbar {
  padding: 15px 0;
  z-index: 9999;
}

/* Menu */
.navbar-nav {
  gap: 5px;
}

.navbar-nav .nav-link {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 12px !important;
  transition: all 0.3s ease;
}

/* Hover */
.navbar-nav .nav-link:hover {
  color: #c6d300;
}

/* Active */
.navbar-nav .nav-link.active {
  color: #c6d300;
}

/* Mobile */
@media (max-width: 991px) {
  .navbar-collapse {
    margin-top: 15px;
    padding: 15px;
    background: #012e4d;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border-top: 2px solid #c6d300;
  }

  .navbar-nav {
    gap: 0;
  }

  .navbar-nav .nav-link {
    padding: 12px 10px !important;
    border-bottom: 1px solid #eee;
  }

  .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: none;
  }

  .navbar-toggler {
    border: none;
    background-color: #c6d300;
    box-shadow: none !important;
  }
}

/* header */

.headerRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
}

.slimmenu {
  display: flex;
  gap: 30px;
}

.slimmenu li a {
  font-style: normal;
  font-weight: 500;
  font-size: 13px !important;
  text-transform: uppercase;
  color: #ffffff !important;
}

/* banner */
#home {
  padding-bottom: 40px;
}
.bannerContent {
  color: #ffffff;
}

.bannerTitle {
  font-style: normal;
  font-weight: 500;
  font-size: 64px;
  line-height: 120%;
  color: #ffffff;
}

.bannerContent p {
  margin-top: 20px;
}

.bannerContentTxt {
  padding-right: 100px;
}

/* Main Section */
.feature-section {
  width: 100%;
  margin-top: 28px;
}

/* Main Box */
.feature-box {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 13px;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  flex-wrap: wrap;
}

/* Feature Item */
.feature-item {
  min-height: 120px;
  align-items: center;
  padding: 0 20px;
  position: relative;
  max-width: 25%;
  flex: 0 0 auto;
  text-align: center;
}

/* Separator */
.feature-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: #222;
}

/* Icon */
.feature-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  line-height: 1;
  margin: 0 auto 10px;
}

.feature-icon img {
  height: 55px;
}

/* Individual Icon Colors */
.icon-security {
  color: #42b978;
}

.icon-fast {
  color: #168dd8;
}

.icon-customer {
  color: #c2d600;
}

.icon-growth {
  color: #1594dc;
}

/* Heading */
.feature-item h3 {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

/* Description */
.feature-item p {
  max-width: 180px;
  font-size: 12px;
  line-height: 1.45;
  color: #333;
  font-style: italic;
  margin: 0;
}

.bnrImg {
  object-fit: contain;
  height: 600px;
}

/* ==============================
           SERVICE SECTION
        ============================== */

.service-section {
  width: 100%;
  background: #0d1923;
  padding: 65px 0;
  overflow: hidden;
}

/*.service-wrapper {
  margin: auto;
  display: flex;
  align-items: center;
  gap: 45px;
}*/

.service-wrapper {
  flex: 0 0 auto;
  max-width: 75%;
}

/* ==============================
           LEFT CONTENT
        ============================== */

.service-info {
  flex: 0 0 auto;
  width: 25%;
}

.phone-icon img {
  height: 30px;
}

.phone-icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;

  border: 1px solid #d2e000;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;

  margin-bottom: 12px;
}

.phone-icon::before {
  content: "";

  position: absolute;

  width: 68px;
  height: 68px;

  border-radius: 50%;

  border: 1px solid #fff;
}

.phone-icon::after {
  content: "";

  position: absolute;

  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: #d2e000;

  right: -3px;
  top: 40px;
}

.phone-icon i {
  position: relative;
  z-index: 2;

  font-size: 40px;

  color: #d2e000;

  transform: rotate(-20deg);
}

.service-info h2 {
  font-size: 36px;
  line-height: 1.2;
  color: #d2e000;
  font-weight: 500;
  margin-bottom: 5px;
}

.service-info p {
  font-size: 24px;
  color: #c9c9c9;
  margin: 0;
  letter-spacing: 2px;
}

/* ==============================
           PHONE NUMBER AREA
        ============================== */

/*.service-numbers {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* gap: 14px; 
}*/

.service-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* ==============================
           NUMBER BOX
        ============================== */

.number-box {
  flex: 0 0 auto;
  max-width: 20%;
  border-radius: 0;
  padding: 12px 10px;
  transition: all 0.3s ease;
}
.bgcolor {
  background-color: #163f5b;
  padding: 20px;
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.45);
  border-radius: 20px;
}

.brd-none {
  border: none !important;
}

.box-border {
  border-right: 4px solid #0b8ce4;
  border-left: 4px solid #0b8ce4;
  text-align: center;
}

.number-box:hover {
  /* transform: translateY(-5px); */
  /* background: #145477; */
  /* box-shadow:
        0 10px 18px rgba(0, 0, 0, 0.5); */
}

.number-box ul {
  list-style: none;

  padding: 0;
  margin: 0;
  margin-left: 10px;
}

.number-box li {
  position: relative;
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 8px;
  white-space: nowrap;
  list-style-type: disc;
  color: #fff;
}

.number-box li:hover {
  color: #d4e000;
}

.number-box li:last-child {
  margin-bottom: 0;
}

.number-box li::before {
  content: " ";
  position: absolute;
  left: 0;
  color: #ffffff;
  font-size: 15px;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  top: 6px;
  display: none;
}

/* =========================
           ABOUT SECTION
        ========================= */

.about-section {
  background: #003b5c;
  color: #fff;
  padding: 65px 0;
}

.about-wrapper {
  background: #003b5c;
}

/* =========================
           EXPERIENCE LEFT
        ========================= */

.experience-box {
  text-align: center;
  padding-right: 35px;
}

.experience-years {
  font-size: 82px;
  font-weight: 400;
  letter-spacing: 19px;
  line-height: 1;
  color: #d4e000;
  margin-left: 0;
}

.experience-title {
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 12px;
  color: #d4e000;
  line-height: 1.1;
}

.experience-line {
  position: relative;
  height: 4px;
  background: #d4e000;
  margin: 20px auto 18px;
  max-width: 100%;
}

.experience-line span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #003b5c;
  padding: 0 10px;

  color: #d4e000;
  font-size: 17px;
  font-weight: 600;
  white-space: nowrap;
}

.stats-number {
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
}

.stats-title {
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  margin-top: 8px;
}

/* =========================
           ABOUT CONTENT
        ========================= */

.about-content {
  padding-left: 35px;
}

.about-heading {
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-subheading {
  color: #ffffff;
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.about-description {
  border-left: 5px solid #009ce8;
  padding-left: 18px;
  /* max-width: 600px; */
}

.about-description p {
  color: #fff;
  /* font-size: 14px; */
  line-height: 1.65;
  margin: 0;
}

.hero {
  min-height: 570px;
  background: #0d1821;
  border-top: 2px solid #063b59;
  border-bottom: 2px solid #063b59;
  overflow: hidden;
}

/* 
        .hero-container {
            max-width: 940px;
            min-height: 568px;
        } */

/* Left Content */
.hero-content {
  /* padding: 65px 0 45px; */
}

.brand-title {
  color: #d9ec00;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 2px;
}

.brand-subtitle {
  color: #c9cdd1;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.description {
  max-width: 550px;
  color: #f0f2f3;
  /* font-size: 13px; */
  line-height: 1.65;
  margin-bottom: 40px;
}

/* Features */
.features {
  position: relative;
  padding-left: 30px;
}

.features::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #09a8f3;
}

.feature {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}

.feature:last-child {
  margin-bottom: 0;
}

.feature-number {
  width: 55px;
  height: 55px;
  min-width: 55px;
  border: 2px solid #09a8f3;
  border-radius: 50%;
  color: #09a8f3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 400;
  margin-right: 25px;
  transition: all 0.3s ease-in-out;
}
.feature:hover .feature-number {
  border: 2px solid #fff;
  color: #fff;
}

.feature-title {
  color: #f4f4f4;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 600;
  margin: 0 0 4px;
}

.feature-description {
  color: #d5d9dc;
  /* font-size: 12.5px; */
  margin: 0;
  line-height: 1.4;
}

.download-btn {
  margin-top: 50px;
  padding: 14px 40px;
  border-radius: 10px;
  color: #f5f5f5;
  background: linear-gradient(135deg, #303a43, #202a33);
  border: 1px solid #3b4650;
  font-size: 24px;
  text-decoration: none;
  display: inline-block;
  transition: 0.25s ease;
}

.download-btn:hover {
  color: #fff;
  background: #34414c;
  transform: translateY(-2px);
}

/* Phone Area */
.phone-area {
  position: relative;
  height: 100%;
  min-height: 560px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-area img {
  object-fit: contain;
  height: 738px;
}

.phone {
  width: 185px;
  height: 445px;
  background: #050505;
  border: 4px solid #747d88;
  border-radius: 28px;
  position: relative;
  transform: rotate(-15deg);
  box-shadow:
    0 15px 25px rgba(0, 0, 0, 0.45),
    inset 0 0 0 2px #202731;
  overflow: hidden;
}

/* Phone screen */
.phone-screen {
  position: absolute;
  left: 5px;
  right: 5px;
  top: 5px;
  bottom: 15px;
  background: #f4f4f4;
  border-radius: 21px 21px 14px 14px;
  overflow: hidden;
}

.phone-header {
  height: 54px;
  background: #a9e82c;
  padding: 21px 10px 5px;
  color: #111;
  font-size: 9px;
  font-weight: 500;
  white-space: nowrap;
}

.phone-header .close {
  font-size: 16px;
  margin-right: 10px;
}

.form-fields {
  padding: 7px;
}

.form-field {
  height: 32px;
  margin-bottom: 6px;
  background: white;
  border-radius: 7px;
  display: flex;
  align-items: center;
  padding: 4px 7px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  color: #222;
  font-size: 7px;
}

.form-field .icon {
  width: 22px;
  font-size: 12px;
  font-weight: bold;
  margin-right: 5px;
  color: #111;
}

.barcode {
  width: 20px;
  height: 15px;
  margin-right: 7px;
  background: repeating-linear-gradient(
    90deg,
    #111 0px,
    #111 2px,
    transparent 2px,
    transparent 4px
  );
}

.phone-generate {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 10px;
  height: 42px;
  border-radius: 25px;
  background: #159ee8;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 400;
}

/* Android navigation area */
.phone-navigation {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 18px;
  background: #050505;
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 9px;
}

.camera {
  position: absolute;
  width: 7px;
  height: 7px;
  background: #1d2731;
  border-radius: 50%;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

/* Small side reflection */
.phone::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 120px;
  right: -2px;
  top: 120px;
  background: #aab4c0;
  border-radius: 5px;
  opacity: 0.5;
}

/* =========================================
           GALLERY SECTION
        ========================================= */

.gallery-section {
  background: #033754;
  min-height: 472px;

  border-top: 2px solid #075174;
  border-bottom: 2px solid #075174;

  padding: 62px 0 65px;

  overflow: hidden;
}

/* .gallery-container {
            max-width: 835px;
        } */

/* =========================================
           HEADER
        ========================================= */

.gallery-title {
  color: #d8ed00;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}

.gallery-subtitle {
  color: #c7d0d6;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  margin: 2px 0 45px;
  letter-spacing: 2px;
}

/* =========================================
           CONTROLS
        ========================================= */

.gallery-controls {
  display: flex;

  align-items: center;
  justify-content: flex-end;

  gap: 22px;

  margin-top: 2px;
}

.gallery-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #e8eef2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.gallery-arrow:hover {
  background: #0b638c;

  border-color: #5790aa;

  transform: scale(1.05);
}

.gallery-arrow:active {
  transform: scale(0.95);
}

.explore-btn {
  width: 162px;
  height: 65px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #e9edf0;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
}

.explore-btn:hover {
  background: rgba(255, 255, 255, 0.15);

  color: #ffffff;
}

/* =========================================
           SLIDER
        ========================================= */

.gallery-slider {
  width: 100%;

  overflow: hidden;

  position: relative;
}

.gallery-track {
  display: flex;

  width: 100%;

  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);

  will-change: transform;
}

/*
            DESKTOP

            4 cards visible
            Each card = 25%
        */

.gallery-slide {
  flex: 0 0 25%;

  width: 25%;

  padding: 0 5px;
}

/* =========================================
           GALLERY CARD
        ========================================= */

.gallery-card {
  width: 100%;

  height: 400px;

  border-radius: 16px;

  overflow: hidden;

  position: relative;

  background: #1b3f52;
}

.gallery-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

/* =========================================
           IMAGE OVERLAY
        ========================================= */

.gallery-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 50%);

  opacity: 0;

  transition: opacity 0.3s ease;

  pointer-events: none;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

/* =========================================
           DOTS
        ========================================= */

.slider-dots {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 7px;

  margin-top: 20px;
}

.slider-dot {
  width: 7px;
  height: 7px;

  padding: 0;

  border: 0;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.35);

  cursor: pointer;

  transition: all 0.3s ease;
}

.slider-dot.active {
  width: 24px;

  border-radius: 10px;

  background: #d8ed00;
}

.retailers-section {
  background: #0d1821;

  min-height: 465px;

  border-top: 2px solid #172832;
  border-bottom: 2px solid #172832;

  padding: 62px 0 55px;

  overflow: hidden;
}

/* .retailers-container {
    max-width: 835px;
} */

/* =========================================
           LEFT CONTENT
        ========================================= */

.retailer-content {
  padding-right: 35px;
}

.retailer-title {
  color: #d8ed00;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 2px;
}

.retailer-subtitle {
  color: #c8ced2;
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 23px;
  letter-spacing: 2px;
}

.retailer-description {
  color: #f0f2f3;
  /* font-size: 13px; */
  line-height: 1.65;
  /* max-width: 255px; */
  margin: 0 0 21px;
}

.retailer-thanks {
  color: #f0f2f3;
  /* font-size: 13px; */
  line-height: 1.65;
  /* max-width: 245px; */
  margin: 0 0 45px;
}

/* =========================================
           EXPLORE BUTTON
        ========================================= */

.retailer-explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 162px;
  height: 66px;
  border-radius: 10px;
  border: 1px solid #3c4851;
  background: linear-gradient(135deg, #28343d, #1d2830);
  color: #f2f2f2;
  font-size: 24px;
  text-decoration: none;
  transition: all 0.25s ease;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.retailer-explore:hover {
  color: #ffffff;

  background: #34424d;

  transform: translateY(-2px);
}

/* =========================================
           IMAGE SLIDER
        ========================================= */

.retailer-slider {
  width: 100%;

  overflow: hidden;

  position: relative;
}

.retailer-slider img {
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
}

.retailer-track {
  display: flex;

  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);

  will-change: transform;
}

/*
            TWO IMAGES VISIBLE
        */

.retailer-slide {
  flex: 0 0 50%;

  width: 50%;

  padding: 0 7px;
}

/* =========================================
           IMAGE
        ========================================= */

.retailer-image {
  width: 100%;
  height: 482px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform 0.45s ease;
}

.retailer-slide:hover .retailer-image {
  transform: scale(1.025);
}

/* =========================================
           DOTS
        ========================================= */

.retailer-dots {
  display: flex;

  justify-content: center;
  align-items: center;

  gap: 4px;

  margin-top: 16px;
}

.retailer-dot {
  width: 5px;
  height: 5px;

  padding: 0;

  border: 0;

  border-radius: 50%;

  background: #56616a;

  transition: all 0.3s ease;

  cursor: pointer;
}

.retailer-dot.active {
  background: #ffffff;

  width: 6px;
  height: 6px;
}

.testimonial-section {
  background: #063a5b;
  padding: 65px 0 55px;
  overflow: hidden;
}

.testimonial-wrapper {
  margin: auto;
  padding: 0 15px;
  overflow: hidden;
}

/* Header */
.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.testimonial-title {
  margin: 0;
  color: #d9f000;
  font-size: 36px;
  font-weight: 500;
}

.testimonial-subtitle {
  margin: 5px 0 0;
  color: #d4e0e8;
  font-size: 24px;
  letter-spacing: 2px;
}

/* Arrows */
.testimonial-arrows {
  display: flex;
  gap: 22px;
}

.testimonial-control {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #7594a8;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.testimonial-control:hover {
  background: #1d5b7c;
  border-color: #fff;
}

.testimonial-control span {
  font-size: 25px;
}

/* Carousel */
.testimonial-carousel {
  padding-bottom: 42px;
}

.testimonial-track {
  display: flex;
}

/* Each card */
.testimonial-item {
  flex: 0 0 50%;
  padding: 0 15px;
}

.testimonial-card {
  background: #194e6c;
  border-radius: 12px;
  min-height: 220px;
  padding: 45px 60px;
  display: flex;
  align-items: flex-start;
  min-height: 300px;
}

.quote-icon {
  color: #43aee5;
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  margin-right: 55px;
}

.quote-icon img {
  height: 30px;
}

.testimonial-content {
  flex: 1;
}

.testimonial-text {
  color: #f1f5f8;
  /* font-size: 14px; */
  line-height: 33px;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.author-line {
  width: 40px;
  height: 3px;
  background: #09a8f3;
  margin-right: 13px;
}

.author-name {
  color: #09a8f3;
  font-size: 16px;
  font-weight: 600;
}

/* Dots */
.testimonial-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.testimonial-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #527c92;
  cursor: pointer;
}

.testimonial-dot.active {
  background: #fff;
}

/* =====================================
   FOOTER
===================================== */

.groupzon-footer {
  background: #111c25;
  color: #ffffff;
  /* font-family: Arial, Helvetica, sans-serif; */
}

/* =====================================
   MAIN FOOTER
===================================== */

.groupzon-footer-main {
  padding: 100px 0 100px;
}

.groupzon-footer-container {
  /* max-width: 1100px; */
  margin: 0 auto;
}

/* =====================================
   LOGO
===================================== */

.groupzon-footer-logo img {
  max-width: 236px;
  height: auto;
  display: block;
}

.groupzon-footer-logo {
  margin-bottom: 20px;
}

/* =====================================
   SOCIAL ICONS
===================================== */

.groupzon-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.groupzon-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff;
  color: #111c25;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  transition: all 0.3s ease;
}

.groupzon-social a:hover {
  background: #2da9df;
  color: #ffffff;
  transform: translateY(-3px);
}

/* =====================================
   FOOTER HEADINGS
===================================== */

.groupzon-footer-heading {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 20px;
}

/* =====================================
   QUICK LINKS
===================================== */

.groupzon-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.groupzon-footer-links li {
  margin-bottom: 10px;
}

.groupzon-footer-links a {
  color: #d9e0e5;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.groupzon-footer-links a:hover {
  color: #c6d300;
  padding-left: 4px;
}

/* =====================================
   COMPANY INFORMATION
===================================== */

.groupzon-company-name {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.groupzon-company-info {
  color: #d8e0e5;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 12px;
}
.groupzon-company-info:hover {
  color: #c6d300;
}
.groupzon-company-info a {
  color: #d8e0e5;
  text-decoration: none;
}

.groupzon-company-info a:hover {
  color: #c6d300;
}

/* =====================================
   GET IN TOUCH
===================================== */

.groupzon-touch-title {
  color: #d9f000;
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 20px;
}

.groupzon-subscribe {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #3b4853;
  border-radius: 14px;
}

.groupzon-subscribe input {
  width: 100%;
  height: 40px;
  border: none;
  outline: none;
  background: #3b4853;
  color: #ffffff;
  padding: 0 12px;
  font-size: 11px;
  border-radius: 14px 0 0 14px;
}

.groupzon-subscribe input::placeholder {
  color: #aeb8bf;
}

.groupzon-subscribe button {
  width: 77px;
  height: 40px;
  border: none;
  background: #2da9df;
  color: #ffffff;
  font-size: 10px;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.groupzon-subscribe button:hover {
  background: #168bc0;
}

/* =====================================
   COPYRIGHT BAR
===================================== */

.groupzon-copyright {
  background: #003d60;
  min-height: 37px;
  display: flex;
  align-items: center;
  padding: 14px 0;
}

.groupzon-copyright-container {
  /* max-width: 1100px; */
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 0 15px; */
}

.groupzon-copyright-text {
  color: #ffffff;
  font-size: 14px;
  margin: 0;
  font-weight: 300;
}

.groupzon-privacy {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  font-weight: 300;
}

.groupzon-privacy:hover {
  color: #c6d300;
}

.secPdn {
  padding-top: 112px;
  padding-bottom: 112px;
}

.ft-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* phone number */

.serv-grd {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.service-info-ctn img {
  width: 100px;
}

.trmscons {
  padding: 120px 0;
  color: #fff;
}
.trmscontent p {
  font-size: 15px;
  line-height: normal;
  font-weight: 300;
}
.trmscontent p b {
  font-weight: bold;
}

.trmscontent p a {
  color: #fff;
}
.trmscontent ul {
  margin-bottom: 20px;
  padding-left: 20px;
}
.trmscontent ul li {
  list-style-type: circle;
  font-size: 14px;
  line-height: normal;
  font-style: italic;
}
