:root {
  --gcc-light-green: #24874c;
  /* --gcc-dark-light-green: #0b4228; */
  --gcc-dark-light-green: #27734b;
  --gcc-black: #000000;
  --gcc-main-white: #ffffff;
  --gcc-dark-black: #262d31;
  --gcc-navy-blue: #182978;
  --gcc-gray-color: #adaaaa;
  --gcc-font: "Poppins", sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.18);
  --radius: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
* {
  scrollbar-width: auto;
  scrollbar-color: var(--gcc-gray-color) var(--gcc-white);
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background: var(--gcc-white);
}

*::-webkit-scrollbar-thumb {
  background-color: var(--gcc-gray-color);
  border-radius: 10px;
  border: 3px solid var(--gcc-gray-color);
}

:focus {
  outline: none;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
ul {
  list-style-type: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
  color: var(--gcc-title-black);
  font-family: var(--gcc-font) !important;
}

img {
  max-width: 100%;
  height: auto;
  content-visibility: auto;
  contain-intrinsic-size: 1px 200px;
}

body {
  font-family: var(--gcc-font) !important;
  padding: 0;
  margin: 0;
  width: 100%;
  overflow-x: hidden;
}

/*--------------------------------------------------------------
# Page Loader
--------------------------------------------------------------*/
.mil-preloader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: var(--gcc-dark-light-green);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Spinner */
.mil-spinner {
  width: 80px;
  height: 80px;
  border: 6px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--gcc-main-white);
  border-radius: 50%;
  animation: milSpin 1s linear infinite;
  margin-bottom: 25px;
}

@keyframes milSpin {
  to {
    transform: rotate(360deg);
  }
}

.mil-counter-wrap {
  color: var(--gcc-main-white);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 50px;
}

.mil-progress {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.mil-load {
  width: 0%;
  height: 100%;
  background: var(--gcc-main-white);
}

/*--------------------------------------------------------------
# MAIN HEADER
--------------------------------------------------------------*/
.main-header {
  position: relative;
  z-index: 5;
  background: var(--gcc-main-white);
  transition: all 0.3s ease;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.04);
}

.main-header.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--gcc-main-white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  animation: headerSlideDown 0.3s ease;
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.main-header .navbar .container-fluid {
  width: 85%;
}

/* sticky header */
.main-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--gcc-main-white);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.04);

  animation: headerSlideDown 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes headerSlideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-header .navbar {
  padding: 0;
  background: var(--gcc-main-white);
}

.main-header .navbar-brand {
  padding: 10px 0;
  margin: 0;
}

.main-header .navbar-brand img {
  max-width: 190px;
  height: auto;
}

.main-header .navbar-nav {
  gap: 6px;
  align-items: center;
}

.main-header .nav-item {
  position: relative;
}

.main-header .navbar-nav .nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 30px 14px;
  font-size: 16px;
  font-weight: 500;
  color: #222;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.main-header .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 22px;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 15px;
}

.main-header .navbar-nav .nav-link:hover,
.main-header .navbar-nav .nav-link.active {
  color: var(--green);
}

.main-header .navbar-nav .nav-link:hover::after,
.main-header .navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

/* dropdown arrow */
.main-header .dropdown-toggle-custom i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.main-header .dropdown:hover > .dropdown-toggle-custom i {
  transform: rotate(180deg);
}

.main-header .dropdown {
  position: relative;
}

.main-header .dropdown-toggle::after {
  display: none !important;
}

.main-header .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: block;
  min-width: 260px;
  padding: 10px;
  border: none;
  border-radius: 14px;
  background: var(--gcc-main-white);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.04);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);

  z-index: 999;

  margin-top: 0;
}

/* show dropdown */
.main-header .dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-header .dropdown-menu li {
  position: relative;
  list-style: none;
}

.main-header .dropdown-menu .dropdown-item {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;

  padding: 11px 16px 11px 34px;

  border-radius: 10px;

  font-size: 14px;
  font-weight: 500;
  color: #2b2b2b;

  background: transparent;

  overflow: hidden;

  transition:
    background-color 0.28s ease,
    color 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

/* bullet */
.main-header .dropdown-menu .dropdown-item::before {
  content: "";

  position: absolute;

  left: 14px;
  top: 50%;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--green);

  transform: translateY(-50%) scale(0);

  transition: transform 0.25s ease;
}

/* hover */
.main-header .dropdown-menu .dropdown-item:hover {
  background: #f0f7f3;
  color: var(--green);

  transform: translateX(5px);
}

.main-header .dropdown-menu .dropdown-item:hover::before {
  transform: translateY(-50%) scale(1);
}

/*--------------------------------------------------------------
# BUTTONS
--------------------------------------------------------------*/

.main-header .desktop-only-buttons {
  display: flex;
  align-items: center;
}

.main-header .mobile-only-buttons {
  display: none;
}

.main-header .header-btn-style1 a.btn-black {
  position: relative;
}

.main-header .header-btn-style1 a {
  padding-left: 30px;
  padding-right: 30px;
}

.btn-one {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding-top: 8px;
  padding-left: 35px;
  padding-right: 35px;
  padding-bottom: 8px;
  background-color: transparent;
  color: var(--gcc-main-white);
  font-size: 18px;
  line-height: 54px;
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 0px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-family: var(--gcc-font) !important;
  z-index: 2;
}

.main-header .header-btn-style1 a + a {
  margin-left: 10px;
}

.btn-one::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.btn-one::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

.btn-one:hover::before {
  transform: translateX(0);
}

.btn-one:hover {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

/* Blue button: base = blue, hover slides in green */
.btn-blue::after {
  background: var(--gcc-navy-blue) !important;
}
.btn-blue::before {
  background: var(--gcc-dark-light-green) !important;
}

/* Green button: base = green, hover slides in blue */
.btn-green::after {
  background: var(--gcc-dark-light-green) !important;
}
.btn-green::before {
  background: var(--gcc-navy-blue) !important;
}

/*--------------------------------------------------------------
# TOGGLER
--------------------------------------------------------------*/

.main-header .navbar-toggler {
  border: none;
  padding: 0;
  box-shadow: none;
}

.main-header .navbar-toggler:focus {
  box-shadow: none;
}

.main-header .navbar-toggler span {
  display: block;

  width: 25px;
  height: 3px;

  margin: 5px 0;

  border-radius: 20px;

  background: #222;

  transition: all 0.3s ease;
}

/*--------------------------------------------------------------
# MOBILE
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .main-header .container-fluid {
    width: 100% !important;
  }

  .main-header .navbar {
    padding: 12px 0;
  }

  .main-header .navbar-collapse {
    margin-top: 18px;
    padding: 20px;
    border-radius: 14px;
    background: var(--gcc-main-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .main-header .navbar-nav {
    align-items: flex-start;
    gap: 0;
  }

  .main-header .navbar-nav .nav-link {
    width: 100%;
    padding: 14px 0;
  }

  .main-header .navbar-nav .nav-link::after {
    display: none;
  }

  .main-header .dropdown-menu,
  .main-header .submenu {
    position: static;
    display: none;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    min-width: 100%;
    margin-top: 10px;
    margin-left: 10px;
    padding: 8px;
    box-shadow: none;
    background: #f8f9fa;
  }

  .main-header .dropdown.show > .dropdown-menu {
    display: block;
  }

  .main-header .dropdown-submenu.show > .submenu {
    display: block;
  }

  .main-header .desktop-only-buttons {
    display: none;
  }

  .main-header .mobile-only-buttons {
    display: block;
    margin-top: 20px;
  }

  .main-header .btn-one {
    width: 100%;
  }

  .header-btn-style1 {
    display: block !important;
  }

  .main-header .header-btn-style1 a + a {
    margin-left: 0 !important;
  }
}

/*--------------------------------------------------------------
# LARGE SCREEN FIX
--------------------------------------------------------------*/
@media (min-width: 1360px) and (max-width: 1366px) {
  .main-header .container-fluid {
    width: 100% !important;
  }

  .main-header .navbar-nav .nav-link {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
/* ================= HERO SWIPER WRAPPER =================
/*-------------------------------------------------------------- */

#hero-section .hero-swiper {
  width: 100%;
  height: 75vh;
  background: #000;
  position: relative;
}

/* ================= SLIDES ================= */
#hero-section .hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

/* ================= BACKGROUND ================= */
#hero-section .hero-swiper .slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* transform: scale(1.1); */
  /* transition: 6s ease; */
}

#hero-section .hero-swiper .swiper-slide-active .slide-bg img {
  height: 100% !important;
}

/* #hero-section .hero-swiper .swiper-slide-active .slide-bg {
  transform: scale(1);
} */

/* DARK OVERLAY */
#hero-section .hero-swiper .slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

#hero-section .container {
  position: relative;
  padding-top: 153px;
  z-index: 30;
  height: 60vh;
  align-items: center;
  display: flex;
}

#hero-section .main-slider-content {
  position: relative;
  display: block;
  width: 100%;
}

#hero-section .main-slider-content__inner {
  position: relative;
  display: block;
  overflow: hidden;
}

#hero-section .swiper-slide-active .main-slider-content .sub-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;
}

#hero-section .main-slider-content .sub-title {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 21px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translate(-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;
}

#hero-section .main-slider-content .sub-title .border-line {
  position: relative;
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--gcc-light-green);
  margin-right: 20px;
}

#hero-section .main-slider-content .sub-title h5 {
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
}

#hero-section .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;
}
#hero-section .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;
}

#hero-section .main-slider-content .big-title h2 {
  color: #ffffff;
  font-size: 60px;
  line-height: 1.2em;
  font-weight: 800;
  text-transform: capitalize;
}

#hero-section .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;
}
#hero-section .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;
}
#hero-section .main-slider-content .text p {
  color: #ffffff;
  font-size: 19px;
  line-height: 36px;
  font-weight: 400;
}

/* ================= NAVIGATION ================= */
#hero-section .hero-swiper .swiper-button-next,
#hero-section .hero-swiper .swiper-button-prev {
  right: 20px !important;
  left: auto !important;

  width: 48px;
  height: 48px;

  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--gcc-main-white);
  transition: background 0.3s ease;
}

/* remove default Swiper arrows */
#hero-section .hero-swiper .swiper-button-next::after,
#hero-section .hero-swiper .swiper-button-prev::after {
  display: none;
}

/* positioning */
#hero-section .hero-swiper .swiper-button-next {
  top: 45% !important;
}

#hero-section .hero-swiper .swiper-button-prev {
  top: 54% !important;
}

/* hover effect */
#hero-section .hero-swiper .swiper-button-next:hover,
#hero-section .hero-swiper .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ================= PAGINATION ================= */
#hero-section .hero-swiper .swiper-pagination {
  left: 20px !important;
  bottom: 30px !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#hero-section .hero-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--gcc-main-white);
  opacity: 0.4;
  border-radius: 2px;
  transition: all 0.3s ease;
}

#hero-section .hero-swiper .swiper-pagination-bullet-active {
  width: 8px;
  height: 22px;
  opacity: 1;
  border-radius: 2px;
}

#hero-section .slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= KEYFRAMES ================= */
@keyframes heroTextRevealAnim {
  100% {
    transform: translateX(0);
  }
}

@keyframes heroBorderOpacityAnim {
  50% {
    border-left: 2px solid #363636;
  }
  100% {
    border-left: 2px solid transparent;
  }
}

@keyframes heroTextUp {
  0% {
    transform: translateY(120%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes heroRevealText {
  to {
    clip-path: inset(0 0% 0 0);
  }
}

@media (min-width: 1360px) and (max-width: 1366px) {
  .featured {
    margin-top: -113px !important;
  }

  #hero-section .container {
    padding-top: 80px;
  }

  #hero-section .hero-swiper {
    height: calc(100vh - 25.5vh);
  }

  .featured .icon-box h3 {
    font-size: 15px !important;
  }

  .featured .icon-box {
    min-height: 0 !important;
    padding: 15px !important;
  }

  #hero-section .hero-swiper .swiper-button-next {
    top: 40% !important;
  }

  #rate-calculate {
    padding-top: 30px !important;
  }

  #rate-calculate .container {
    height: 100vh !important;
  }
}

/* ============================================================
   SERVICE CARD
============================================================ */

.single-finances-box {
  position: relative;
  background: #ffffff;
  overflow: visible;
  cursor: pointer;

  box-shadow: 0 8px 32px rgba(11, 61, 145, 0.1);

  transition:
    transform 0.52s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.52s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ============================================================
   IMAGE AREA
============================================================ */
.single-finances-box .img-box {
  position: relative;
}

.single-finances-box .img-box .inner {
  height: 220px;
  overflow: hidden;
}

.single-finances-box .img-box .inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition: transform 0.6s ease;
}

/* IMAGE ZOOM */

.single-finances-box:hover .img-box .inner img {
  transform: scale(1.08);
}

/* ============================================================
   IMAGE OVERLAY
============================================================ */

.single-finances-box .img-box::before {
  position: absolute;
  content: "";
  inset: 0;

  z-index: 1;

  background: var(--gcc-light-green) 4a;

  transform: scaleY(0);
  transform-origin: bottom;

  transition: all 500ms ease;
}

.single-finances-box:hover .img-box::before {
  transform: scaleY(1);
}

/* ============================================================
   SERVICE ICON
============================================================ */
.single-finances-box .overly-icon {
  position: absolute;
  z-index: 999;

  width: 70px;
  height: 70px;

  /* START POSITION */
  top: 100%;
  right: 30px;

  transform: translateY(-50%);
  background-color: #fff !important;
  border-radius: 6px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(21, 101, 192, 0.25);

  transition: all 0.5s ease-in-out;
}

/* ICON HOVER ANIMATION */

.single-finances-box:hover .overly-icon {
  top: 50%;
  right: 50%;

  transform: translate(50%, -50%) scale(1.08);

  background: var(--gcc-main-white);
  padding: 15px;
  border-radius: 50%;

  box-shadow:
    0 0 0 10px rgba(66, 165, 245, 0.2),
    0 18px 40px rgba(11, 61, 145, 0.35);
}

/* ICON SVG */

.single-finances-box .overly-icon svg {
  width: 30px;
  height: 30px;

  fill: none;
  stroke: var(--gcc-main-white);
  stroke-width: 2;

  stroke-linecap: round;
  stroke-linejoin: round;

  transition: transform 0.5s ease;
}

.single-finances-box:hover .overly-icon svg {
  transform: scale(1.1);
}

/* ============================================================
   TEXT BOX
============================================================ */

.single-finances-box .text-box {
  padding: 55px 24px 30px;
  text-align: center;

  border-radius: 0 0 16px 16px;

  transition: transform 0.5s ease;
}

.single-finances-box:hover .text-box {
  transform: translateY(-3px);
}

/* TITLE */

.single-finances-box .text-box h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 700;
}

.single-finances-box .text-box h3 a {
  color: #1a1a2e;
  text-decoration: none;

  transition: color 0.4s ease;
}

.single-finances-box:hover .text-box h3 a {
  color: var(--gcc-light-green);
}

/* DESCRIPTION */

.single-finances-box .text-box p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #4a5568;

  margin-bottom: 22px;
}

/* ============================================================
   ACTIVE SWIPER CARD
============================================================ */

.swiper-slide-active .single-finances-box {
  box-shadow:
    0 28px 60px rgba(11, 61, 145, 0.22),
    0 0 0 4px rgba(66, 165, 245, 0.18);
}

/* SHIMMER EFFECT */

.swiper-slide-active .single-finances-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  z-index: 20;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.14),
    transparent
  );

  animation: shimmer 2.4s ease 0.5s infinite;
}

@keyframes shimmer {
  0% {
    left: -80%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    left: 120%;
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--gcc-dark-light-green);
  color: var(--gcc-main-white);
  font-size: 15px;
  position: relative;
  overflow: hidden;
}

#footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.04),
    transparent 60%
  );
  pointer-events: none;
}

.footer-contact {
  padding: 35px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-item img {
  width: 30px;
}

.qr-box {
  background: var(--gcc-main-white);
  display: inline-block;
  padding: 8px;
  border-radius: 6px;
}

.footer-desc p {
  opacity: 0.85;
  font-size: 15px;
  margin-top: 15px;
}

/* ================= LINKS ================= */
.footer-links {
  padding: 50px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* HEADINGS */
.footer-col h2,
.social-media h2 {
  color: var(--gcc-main-white);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  width: 100%;
  display: block;
  margin-bottom: 18px;
  position: relative;
  letter-spacing: 0.5px;
}

/* underline */
.footer-col h2::after,
.social-media h2::after {
  content: "";
  display: block;
  width: 45%;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  margin: 8px auto 0;
}

/* LISTS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

/* LINKS */
.footer-col ul li a,
.footer-bottom a {
  color: var(--gcc-main-white);
  text-decoration: none;
  font-size: 15px;
  position: relative;
  transition: all 0.2s ease;
}

/* hover effect */
.footer-col ul li a:hover,
.footer-bottom a:hover {
  color: var(--gcc-main-white);
  transform: translateX(5px);
}

/* underline animation */
.footer-col ul li a::after,
.footer-bottom a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background: var(--gcc-main-white);
  transition: 0.25s ease;
}

.footer-col ul li a:hover::after,
.footer-bottom a:hover::after {
  width: 100%;
}

/* ================= SOCIAL ================= */
.social-media {
  text-align: center;
  margin-top: 30px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-icons img {
  width: 34px;
  filter: grayscale(100%);
  transition: 0.3s ease;
}

.social-icons img:hover {
  transform: translateY(-5px) scale(1.08);
  filter: grayscale(0%);
}

/* ================= BOTTOM ================= */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 0;
  text-align: center;
  font-size: 13px;
}

.footer-bottom a {
  font-size: 13px;
  margin: 0 4px;
}

.footer-bottom a:hover {
  color: var(--gcc-main-white);
}

/* ================================================
   FLOATING CLUSTER
   ================================================ */
.float-cluster {
  position: fixed;
  bottom: 100px;
  right: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 9999;
}

/* ── Base button ── */
.float-btn {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  /* entry animation */
  animation: floatPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.float-btn svg:not(.progress-ring):not(.top-arrow) {
  width: 22px;
  height: 22px;
}

/* stagger entrance */
.float-location {
  animation-delay: 0.05s;
  background: var(--gcc-light-green);
  color: var(--gcc-main-white);
}

.float-whatsapp {
  animation-delay: 0.1s;
  background: var(--gcc-light-green);
  color: var(--gcc-main-white);
}

.float-call {
  animation-delay: 0.15s;
  background: var(--gcc-light-green);
  color: var(--gcc-main-white);
}

.float-top {
  animation-delay: 0.2s;
  background: var(--gcc-main-white);
  color: #24884c;
  padding: 0;
  overflow: visible;
}

@keyframes floatPop {
  from {
    opacity: 0;
    transform: scale(0.5) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ── Tooltip ── */
.float-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 25, 20, 0.82);
  color: var(--gcc-main-white);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.float-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(15, 25, 20, 0.82);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
}

/* ================================================
   SCROLL-TO-TOP  –  filling circle ring
   ================================================ */
.float-top {
  width: 48px;
  height: 48px;
  background: var(--gcc-main-white);
  position: relative;
}

.progress-ring {
  position: absolute;
  inset: -4px;
  /* slightly larger than button = ring around it */
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  transform: rotate(-90deg);
  pointer-events: none;
}

.progress-ring__bg {
  fill: none;
  stroke: var(--gcc-main-white);
  stroke-width: 3;
}

.progress-ring__fill {
  fill: none;
  stroke: var(--gcc-dark-light-green);
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.05s linear;
}

.top-arrow {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .float-cluster {
    bottom: 30px;
    right: 20px;
  }
}

.footer-widget-contact-info {
  position: relative;
  display: block;
  border-radius: 4px;
  padding: 35px 40px;
  font-family: sans-serif;
}

.single-footer-widget .title h3 {
  color: var(--gcc-main-white);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.footer-widget-contact-info .phone-number {
  position: relative;
  margin-bottom: 25px;
}

.footer-widget-contact-info .phone-number p {
  color: var(--contact-orange);
  font-weight: 600;
  line-height: 1;
  margin: 0 0 10px 0;
}

.footer-widget-contact-info .phone-number a {
  color: var(--gcc-main-white);
  line-height: 1.2;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.02em;
}

/* Contact List Styles */
.contact-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-details-list li {
  display: flex;
  align-items: flex-start;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modern SVG Icon wrapper styles */
.contact-details-list .icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gcc-dark-light-green);
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-details-list .icon svg {
  width: 100%;
  height: 100%;
}

/* Links & text formatting inside list */
.contact-details-list a {
  color: var(--gcc-main-white);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
}

.contact-details-list address {
  color: var(--gcc-main-white);
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

.modern-about {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  padding: 80px 0;
  font-family: "Inter", sans-serif;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #111827;
  font-family: var(--gcc-font) !important;
}

.section-subtitle {
  color: #6b7280;
  font-size: 16px;
  margin-top: 10px;
  font-family: var(--gcc-font) !important;
}

.about-card {
  background: #ffffff;
  padding: 22px 24px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  margin-bottom: 18px;
  line-height: 1.7;
  color: #374151;
  transition: all 0.25s ease;
  font-family: var(--gcc-font) !important;
}

.about-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
}

.section-badge {
  display: inline-block;
  padding: 6px 12px;
  background: #e0f2fe;
  color: #0284c7;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 10px;
}

.subheading {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #111827;
}

.img-modern {
  width: 85%;
  max-width: 420px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.img-modern:hover {
  transform: scale(1.02);
}

.single-items {
  font-family: var(--gcc-font) !important;
}

.toppagetitle {
  z-index: 28;
  margin: 18px;
  font-size: 28px;
  font-weight: 500;
  border: 3px solid #2e398c;
  padding: 0 30px;
  border-radius: 30px;
  color: #fff;
  background-color: #2e398c;
  -webkit-animation: pagetitleup 15s linear infinite;
  animation: pagetitleup 15s linear infinite;
}

.block-title {
  position: absolute;
  top: 62.5%;
  width: 25%;
  display: flex;
  justify-content: center;
  margin: auto;
  width: 100%;
}

#about-us,
#why_choose_us,
#our-services,
#testimonials,
#contact {
  scroll-margin-top: 110px;
}

.store-icons {
  display: inline-block;
  transition: transform 0.35s ease-in-out;
  transform: scale(1);
  cursor: pointer;
}

.store-icons:hover {
  transform: scale(1.08);
}
.store-icons:hover {
  transform: translateY(-6px) scale(1.05);
  filter: brightness(1.08);
}
