: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(--gcc-dark-light-green);
  transform: translateY(-50%) scale(0);
  transition: transform 0.25s ease;
}

/* hover */
.main-header .dropdown-menu .dropdown-item:hover {
  background: #f0f7f3;
  color: var(--gcc-dark-light-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;
  }
}

/* 992px - 1205px */
@media (min-width: 992px) and (max-width: 1205px) {
  .main-header .navbar .container-fluid {
    width: 100%;
  }

  .main-header .navbar-brand img {
    max-width: 90px;
  }

  .main-header .navbar-nav .nav-link {
    gap: 0;
    font-size: 12px;
    padding: 0;
  }

  .main-header .header-btn-style1 .btn-one {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
    line-height: 28px;
  }
}

/* 1206px - 1380px */
@media (min-width: 1206px) and (max-width: 1380px) {
  .main-header .navbar .container-fluid {
    width: 100%;
  }

  .main-header .navbar-brand img {
    max-width: 100px;
  }

  .main-header .navbar-nav .nav-link {
    gap: 0;
    font-size: 13px;
    padding: 0;
  }

  .main-header .header-btn-style1 .d-flex {
    gap: 6px;
  }

  .main-header .header-btn-style1 .btn-one {
    padding-left: 14px;
    padding-right: 14px;
    font-size: 13px;
    line-height: 30px;
    white-space: nowrap;
  }

  .main-header .header-btn-style1 .btn-one i {
    margin-right: 5px !important;
  }
}

/* 1381px - 1524px */
@media (min-width: 1381px) and (max-width: 1524px) {
  .main-header .navbar .container-fluid {
    width: 100%;
  }

  .main-header .navbar-brand img {
    max-width: 110px;
  }

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

  .main-header .header-btn-style1 .btn-one {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
    line-height: 30px;
  }
}

/* 1525px - 1694px */
@media (min-width: 1525px) and (max-width: 1694px) {
  .main-header .navbar .container-fluid {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# 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: 12px;
  }

  .float-cluster {
    right: 25px !important;
  }

  .float-btn {
    width: 40px !important;
    height: 40px !important;
  }
}

/*--------------------------------------------------------------
/* ================= 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;
}

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

#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;
  }
}

/* ============================================================
   PAGINATION
============================================================ */
.our-services .swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.our-services .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--gcc-gray-color);
  opacity: 1;
  transition: 0.3s ease;
}

.our-services .swiper-pagination-bullet-active {
  background: var(--gcc-light-green);
  transform: scale(1.35);
}

/*--------------------------------------------------------------
# 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: 25px;
  /* 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;
}

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

.float-call {
  animation-delay: 0.15s;
}
#footercontact {
  background-color: var(--gcc-navy-blue);
  color: var(--gcc-main-white);
  display: flex;
  margin: 0 auto;
  width: 50%;
}

.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;
}

/* ==========================================
   Testimonials Section
========================================== */

.testimonials {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  padding: 80px 0;
  overflow: hidden;
}

.testimonials .section-title {
  text-align: center;
  font-size: 45px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gcc-black);
}

/* ==========================================
   Swiper
========================================== */

#testimonials .swiper {
  overflow: hidden;
}

#testimonials .swiper-wrapper {
  align-items: center;
  height: auto !important;
}

#testimonials .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  overflow: hidden;
}

/* ==========================================
   Testimonial Card
========================================== */

.testimonials .testimonials_container {
  width: 50%;
  max-width: 700px;
  min-height: 320px;
  margin: 20px auto;
  padding: 30px;
  border: 2px solid var(--gcc-dark-light-green);
  border-radius: 15px;
  background: var(--nl-white);
  position: relative;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.testimonials .testimonials_container:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

/* ==========================================
   Quote Icons
========================================== */

.testimonials .top-icon,
.testimonials .bottom-icon {
  position: absolute;
  font-size: 55px;
  color: var(--gcc-dark-light-green);
  background: var(--nl-white);
  padding: 0 8px;
}

.testimonials .top-icon {
  top: -20px;
  left: 20px;
}

.testimonials .bottom-icon {
  bottom: -20px;
  right: 20px;
  transform: scaleX(-1);
}

/* ==========================================
   Content
========================================== */

.testimonials .title {
  text-align: center;
}

.testimonials .title span {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--gcc-black);
}

.testimonials .description {
  margin: 20px 0;
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  word-break: break-word;
}

.testimonials strong {
  display: block;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 700;
  color: var(--gcc-black);
}

/* ==========================================
   Stars
========================================== */

.testimonials .starts {
  color: var(--gcc-dark-light-green);
  font-size: 22px;
}

/* ==========================================
   Swiper Navigation
========================================== */

.testimonials .swiper-button-next,
.testimonials .swiper-button-prev {
  width: 45px;
  height: 45px;
  border: 2px solid var(--gcc-dark-light-green);
  border-radius: 50%;
  background: #fff;
  color: var(--gcc-dark-light-green) !important;
  transition: 0.3s;
}

.testimonials .swiper-button-next:hover,
.testimonials .swiper-button-prev:hover {
  background: var(--gcc-dark-light-green);
  color: #fff !important;
}

.testimonials .swiper-button-next i,
.testimonials .swiper-button-prev i {
  font-size: 20px;
}

.testimonials .swiper-button-next::after,
.testimonials .swiper-button-prev::after {
  content: "";
}

/* ==========================================
   Footer
========================================== */

.testimonials .testimonial_footer {
  color: var(--nl-black);
}

.testimonials .testimonial_footer .count {
  font-size: 24px;
}

.testimonials .testimonial_footer .testimonialPrevBtn,
.testimonials .testimonial_footer .testimonialNextBtn {
  font-size: 36px;
}

/* ==========================================
   Responsive
========================================== */

@media (max-width: 1200px) {
  .testimonials .testimonials_container {
    width: 60%;
  }
}

@media (max-width: 992px) {
  #testimonials .swiper-wrapper {
    height: 100% !important;
  }

  .testimonials {
    padding: 60px 0;
  }

  .testimonials .section-title {
    font-size: 38px;
  }

  .testimonials .testimonials_container {
    width: 70%;
    padding: 28px;
  }
}

@media (max-width: 768px) {
  #testimonials .swiper-wrapper {
    height: 100% !important;
  }

  .testimonials .section-title {
    font-size: 32px;
  }

  .testimonials .testimonials_container {
    width: 90%;
    min-height: auto;
    padding: 25px;
  }

  .testimonials .title span {
    font-size: 20px;
  }

  .testimonials .description {
    font-size: 15px;
    line-height: 1.7;
  }

  .testimonials strong {
    font-size: 17px;
  }

  .testimonials .starts {
    font-size: 20px;
  }

  .testimonials .top-icon,
  .testimonials .bottom-icon {
    font-size: 45px;
  }
}

@media (max-width: 576px) {
  .testimonials {
    padding: 50px 0;
  }

  #testimonials .swiper-wrapper {
    height: 100% !important;
  }

  .testimonials .section-title {
    font-size: 28px;
  }

  .testimonials .testimonials_container {
    width: 100%;
    padding: 20px;
    margin: 15px auto;
  }

  .testimonials .title span {
    font-size: 18px;
  }

  .testimonials .description {
    font-size: 14px;
    line-height: 1.6;
  }

  .testimonials strong {
    font-size: 16px;
  }

  .testimonials .starts {
    font-size: 18px;
  }

  .testimonials .top-icon {
    top: -18px;
    left: 15px;
    font-size: 40px;
  }

  .testimonials .bottom-icon {
    bottom: -18px;
    right: 15px;
    font-size: 40px;
  }

  .testimonials .swiper-button-next,
  .testimonials .swiper-button-prev {
    display: none;
  }
}

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

.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);
}

/* =========================
   SECTION BACKGROUND
   ========================= */
#why_choose_us {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  padding: 80px 0;
}

/* =========================
   TITLE
   ========================= */
#why_choose_us .section-title,
#contact .section-title,
#testimonials .section-title,
#services .section-title,
#aboutgcc .section-title,
#mobile-app-banner .section-title {
  font-size: 40px;
  font-weight: 700;
  color: #111827;
}

#why_choose_us .section-title span,
#contact .section-title span,
#testimonials .section-title span,
#services .section-title span,
#mobile-app-banner .section-title span,
#aboutgcc .section-title span {
  color: var(--gcc-dark-light-green);
}

#why_choose_us .section-subtitle {
  color: #6b7280;
  margin-top: 8px;
}

/* =========================
   CARD BASE STYLE
   ========================= */
#why_choose_us .service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

#why_choose_us .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

/* =========================
   ICON BASE
   ========================= */
#why_choose_us .service-icon {
  width: 110px;
  height: 110px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s ease;
}

#why_choose_us .service-icon img {
  width: 90px;
  height: 90px;
}

/* =========================
   HOVER EFFECT
   ========================= */
#why_choose_us .service-card:hover .service-icon {
  transform: rotate(5deg);
}

/* GREEN */
#why_choose_us .col-xl:nth-child(1) .service-icon,
#why_choose_us .col-xl:nth-child(3) .service-icon,
#why_choose_us .col-xl:nth-child(5) .service-icon,
#why_choose_us .col-lg-3:nth-child(1) .service-icon,
#why_choose_us .col-lg-3:nth-child(3) .service-icon,
#why_choose_us .col-lg-3:nth-child(5) .service-icon,
#why_choose_us .col-md-4:nth-child(1) .service-icon,
#why_choose_us .col-md-4:nth-child(3) .service-icon,
#why_choose_us .col-md-4:nth-child(5) .service-icon,
#why_choose_us .col-sm-6:nth-child(1) .service-icon,
#why_choose_us .col-sm-6:nth-child(3) .service-icon,
#why_choose_us .col-sm-6:nth-child(5) .service-icon {
  background: #24874c;
}

/* BLUE */
#why_choose_us .col-xl:nth-child(2) .service-icon,
#why_choose_us .col-xl:nth-child(4) .service-icon,
#why_choose_us .col-lg-3:nth-child(2) .service-icon,
#why_choose_us .col-lg-3:nth-child(4) .service-icon,
#why_choose_us .col-md-4:nth-child(2) .service-icon,
#why_choose_us .col-md-4:nth-child(4) .service-icon,
#why_choose_us .col-sm-6:nth-child(2) .service-icon,
#why_choose_us .col-sm-6:nth-child(4) .service-icon {
  background: #182978;
}

/* =========================
   TEXT STYLE
   ========================= */
#why_choose_us .service-card h4 {
  font-size: 16px;
  color: var(--gcc-black);
  margin-top: 10px;
}
/* ================= CONTACT SECTION ================= */

.gcc-contact-section {
  font-family: var(--gcc-font);
  background: #fff;
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}

.gcc-contact-section::before {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -140px;
  width: 340px;
  height: 340px;
  background: #f3f8f5;
  border-radius: 50%;
  z-index: 0;
}

.gcc-container-inner {
  position: relative;
  z-index: 2;
}

/* ================= LEFT IMAGES ================= */

.gcc-contact-images {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.gcc-contact-images picture {
  flex: 1;
}

.gcc-contact-images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* ================= INFO CARD ================= */

.gcc-contact-info-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  border-left: 5px solid #2e9e5b;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.gcc-contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.gcc-contact-item h5 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 700;
  color: #222;
}

.gcc-contact-item a {
  color: #666;
  text-decoration: none;
}

.gcc-contact-item a:hover {
  color: #2e9e5b;
}

.gcc-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  background: #2e9e5b;
  flex-shrink: 0;
}

/* ================= FORM ================= */

.gcc-contact-form .form-control {
  background: #f6f8fb;
  border: 1px solid #e3e7ef;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15px;
  transition: 0.3s;
}

.gcc-contact-form textarea.form-control {
  min-height: 160px;
  resize: none;
}

.gcc-contact-form .form-control::placeholder {
  color: #9aa3af;
}

.gcc-contact-form .form-control:focus {
  background: #fff;
  border-color: #2e9e5b;
  box-shadow: 0 0 0 0.15rem rgba(46, 158, 91, 0.15);
}

/* Bootstrap Validation */

.gcc-contact-form .form-control.is-invalid,
.gcc-contact-form .was-validated .form-control:invalid {
  border-color: #dc3545;
}

.gcc-contact-form .form-control.is-valid,
.gcc-contact-form .was-validated .form-control:valid {
  border-color: #198754;
}

.invalid-feedback {
  font-size: 13px;
  margin-top: 5px;
}

/* ================= BUTTON ================= */

.gcc-btn-send {
  background: #2e9e5b;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}

.gcc-btn-send:hover {
  background: #257b49;
  transform: translateY(-2px);
}

.gcc-btn-send:focus {
  box-shadow: none;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .gcc-contact-images img {
    height: 180px;
  }
}

@media (max-width: 767px) {
  .gcc-contact-images {
    flex-direction: column;
  }

  .gcc-contact-images img {
    height: 220px;
  }

  .gcc-btn-send {
    width: 100%;
  }

  .gcc-contact-info-card {
    margin-bottom: 30px;
  }
}

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

.services,
.section {
  color: var(--gcc-dark-black);
  background-color: var(--gcc-main-white);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
  font-family: var(--gcc-font);
}

.services .offering-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: var(--gcc-main-white);
  border-radius: var(--radius);
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(38, 45, 49, 0.08);
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-md);
}

.services .offering-block:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.services .offering-indicator {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(
    180deg,
    var(--gcc-light-green),
    var(--gcc-dark-light-green)
  );
  border-radius: 0 4px 4px 0;
  transition: height 0.4s var(--ease);
}

.services .offering-block:hover .offering-indicator {
  height: 100%;
}

.services .offering-icon-wrap {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(36, 135, 76, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gcc-dark-light-green);
  transition: all 0.4s var(--ease);
}

.services .offering-icon-wrap i {
  font-size: 26px;
  color: var(--gcc-light-green);
}

/* =========================
   TEXT CONTENT
========================= */
.services .offering-body .offering-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.services .offering-body h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gcc-dark-black);
}

.services .offering-body h4 a {
  color: var(--gcc-dark-black);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.services .offering-body h4 a:hover {
  color: var(--gcc-light-green);
}

.services .offering-body p {
  color: var(--gcc-black);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* =========================
   FEATURED TAG
========================= */
.services .featured-tag {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--gcc-navy-blue),
    var(--gcc-light-green)
  );
  color: var(--gcc-main-white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* =========================
   EXPLORE BUTTON
========================= */
.services .explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gcc-dark-light-green);
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.services .explore-btn i {
  font-size: 14px;
  transition: transform 0.3s var(--ease);
}

.services .explore-btn:hover {
  color: var(--gcc-light-green);
}

.services .explore-btn:hover i {
  transform: translateX(4px);
}

/* =========================
   ACTION BANNER (bottom CTA)
========================= */
.action-banner {
  background: linear-gradient(
    135deg,
    var(--gcc-dark-light-green),
    var(--gcc-light-green)
  );
  color: var(--gcc-main-white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.action-banner h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.action-banner p {
  opacity: 0.9;
}

/* CTA Button */
.action-btn {
  display: inline-block;
  background: var(--gcc-main-white);
  color: var(--gcc-dark-black);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.action-btn:hover {
  background: var(--gcc-dark-black);
  color: var(--gcc-main-white);
}

.gcc-about-section {
  background-color: #f4f5fb;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

/* soft decorative blobs, like reference */
.gcc-about-section .gcc-about-blob-left {
  position: absolute;
  left: -180px;
  top: 40%;
  width: 420px;
  height: 420px;
  background: #ffffff;
  border-radius: 50% 45% 55% 50% / 55% 50% 50% 45%;
  transform: translateY(-50%) rotate(-10deg);
  z-index: 0;
}

.gcc-about-section .gcc-about-blob-right {
  position: absolute;
  right: -160px;
  top: -60px;
  width: 480px;
  height: 480px;
  background: #ffffff;
  border-radius: 48% 52% 55% 45% / 50% 55% 45% 50%;
  z-index: 0;
}

.gcc-about-section .gcc-about-inner {
  position: relative;
  z-index: 1;
}

/* ---------- LEFT: heading ---------- */
.gcc-about-heading h3 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #1a2233;
  margin-bottom: 28px;
}

.gcc-about-heading .gcc-about-underline {
  position: relative;
  display: inline-block;
}

.gcc-about-heading .gcc-about-underline::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -6px;
  height: 4px;
  background-color: var(--gcc-dark-light-green);
  border-radius: 2px;
}

/* ---------- LEFT: paragraph ---------- */
.gcc-about-text p {
  font-size: 16px;
  line-height: 1.85;
  color: #6b7280;
  margin-bottom: 28px;
}

/* ---------- LEFT: checklist ---------- */
.gcc-about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
}

.gcc-about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #2b3146;
  font-family: var(--gcc-font) !important;
}

.gcc-about-list li:not(:last-child) {
  margin-bottom: 14px;
}

.gcc-about-list li i {
  color: #2e9e5b;
  font-size: 18px;
  flex-shrink: 0;
}

/* ---------- LEFT: progress bars ---------- */
.gcc-about-progress-wrap {
  max-width: 500px;
}

.gcc-about-progress {
  margin-bottom: 26px;
}

.gcc-about-progress:last-child {
  margin-bottom: 0;
}

.gcc-about-progress-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.gcc-about-progress-top p {
  font-size: 16px;
  font-weight: 700;
  color: #1a2233;
  margin: 0;
}

.gcc-about-progress-top span {
  font-size: 15px;
  font-weight: 600;
  color: #4b5163;
}

.gcc-about-progress-line {
  width: 100%;
  height: 6px;
  background-color: #e3e5f0;
  border-radius: 4px;
  overflow: hidden;
}

.gcc-about-progress-line span {
  display: block;
  height: 100%;
  background-color: #2e9e5b;
  border-radius: 4px;
}

/* ---------- RIGHT: image mockup stack ---------- */
.gcc-about-media {
  position: relative;
  min-height: 480px;
}

.gcc-about-card--front {
  top: 230px;
  right: 0;
  width: 68%;
  z-index: 2;
}

/* ---------- responsive ---------- */
@media (max-width: 991.98px) {
  .gcc-about-heading h3 {
    font-size: 2.1rem;
  }
  .gcc-about-media {
    min-height: 420px;
    margin-top: 40px;
  }
  .gcc-about-card img {
    height: 260px;
  }
  .gcc-about-card--front {
    top: 190px;
  }
}

@media (max-width: 575.98px) {
  .gcc-about-media {
    min-height: 380px;
  }
  .gcc-about-card--back {
    width: 88%;
  }
  .gcc-about-card--front {
    width: 78%;
    top: 170px;
  }
  .gcc-about-card img {
    height: 220px;
  }
}

.section-heading {
  font-size: 40px;
  font-weight: 700;
  color: rgb(17, 24, 39);
  text-align: center;
}

.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);
}

.cta-one {
  position: relative;
  background-color: #fff;
  z-index: 10;
  padding-top: 0;
  overflow: hidden;
}

.cta-one .container {
  position: relative;
  padding-top: 90px;
  z-index: 2;
}

/* Circle 1 */
/* .cta-one::before {
        content: "";
        position: absolute;
        width: 1170px;
        height: 1170px;
        left: 50%;
        bottom: -585px;
        transform: translateX(-50%);
        border-radius: 50%;
        background-color: #24884c36;
        opacity: 0.4;
        animation: ctaPulse 8s ease-in-out infinite;
      } */

/* Circle 2 */
.cta-one::after {
  content: "";
  position: absolute;
  width: 1126px;
  height: 1126px;
  left: 50%;
  bottom: -660px;
  transform: translateX(-50%);
  border-radius: 50%;
  background-color: #24884c36;
  animation: ctaPulse 7s ease-in-out infinite reverse;
}

/* Circle 3 */
.cta-one__circle-3 {
  position: absolute;
  width: 717px;
  height: 717px;
  left: 50%;
  bottom: -315px;
  transform: translateX(-50%);
  border-radius: 50%;
  background-color: #24884c36;
  opacity: 0.3;
  animation: ctaPulse 6s ease-in-out infinite;
}

/* Smooth breathing animation */
@keyframes ctaPulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.35;
  }

  50% {
    transform: translateX(-50%) scale(1.08);
    opacity: 0.55;
  }
}

/* Keep image above circles */
.store-icon-wrapper {
  position: relative;
  z-index: 3;
  display: block;
}
