/* Montserrat Font */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");
/* Inter Font for Job Board */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  /*F Typography */
  --font-family-montserrat: "Montserrat", sans-serif;
  --font-family-helvetica: "Helvetica", Arial, sans-serif;
  /* Font Sizes */
  --font-size-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);
  --font-size-sm: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  --font-size-base: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
  --font-size-md: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  --font-size-lg: clamp(1.5rem, 1.3rem + 0.8vw, 1.75rem);
  --font-size-xl: clamp(2rem, 1.7rem + 1.2vw, 2.5rem);
  --font-size-2xl: clamp(2.5rem, 2.2rem + 1.5vw, 3rem);
  --font-size-3xl: clamp(3rem, 2.7rem + 1.8vw, 4rem);
  /* Hero Specific Font Sizes */
  --hero-title-size: clamp(2rem, 2rem + 2.5vw, 6rem);

  /* Line Height */
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-loose: 1.8;
  /* Font Weights */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  /* Letter Spacing */
  --letter-spacing-tight: 0.05em;
  --letter-spacing-normal: 0.1em;
  --letter-spacing-wide: 0.2em;

  /* Colors (White Theme) */
  --color-background: #ffffff;
  --color-text: #000000;
  --color-text-secondary: #666666;
  --color-emphasis: #666666;
  --color-emphasis-hover: #4a4a4a;
  --color-border: #d1d1d1;
  --color-background-secondary: #f5f5f5;
  --color-white: #ffffff;
  --color-black: #000000;
  --background-tint: #000000bf;
  --overlay-bg: linear-gradient(135deg,
      rgba(0, 0, 0, 0.9),
      rgba(50, 50, 50, 0.8));
  --card-bg: linear-gradient(135deg,
      rgba(240, 240, 240, 0.9),
      rgba(220, 220, 220, 0.8));
  --card-border: #e0e0e0;

  /* Colors for Job Board Section (Preserved) */
  --job-accent: #14b8a6;
  --job-success: #22c55e;
  --job-warning: #f59e0b;
  --job-danger: #ef4444;
  --job-hover-red: #dc2626;
  --job-hover-blue: #3b82f6;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --section-space: 70px;
  --section-padding: 120px;

  /* Border Radius */
  --radius-circle: 50%;
  --radius-small: 6px;

  /* Transitions */
  --transition-1: 250ms ease;
  --transition-2: 500ms ease;
  --transition-3: 1000ms ease;

  /* Marquee Specific */
  --apm-marquee-speed: 120s;
  --apm-interaction-scale: 1.05;
  --apm-hover-lift: -8px;
  --apm-glow-color: rgba(0, 0, 0, 0.1);
  --apm-shadow-glow: 0 0 20px var(--apm-glow-color);
}

/* Ensure AOS doesn't override existing styles */
[data-aos] {
  transition-property: transform, opacity;
}

/*-----------------------------------*\
  #DARK/LIGHT THEME SUPPORT
\*-----------------------------------*/
[data-theme="black"] {
  --color-background: #000000;
  --color-text: #ffffff;
  --color-text-secondary: #b3b3b3;
  --color-emphasis: #b3b3b3;
  --color-emphasis-hover: #cccccc;
  --color-border: #4a4a4a;
  --color-background-secondary: #2a2a2a;
  --color-white: #000000;
  --color-black: #ffffff;
  /* Semi-transparent Background Tint */
  --background-tint: #ffffff40;
  /* New variable */
  --overlay-bg: linear-gradient(135deg,
      rgba(255, 255, 255, 0.3),
      rgba(200, 200, 200, 0.2));
  /* New Colors for GCS Helps Card */
  --card-bg: linear-gradient(135deg,
      rgba(50, 50, 50, 0.9),
      rgba(30, 30, 30, 0.8));
  --card-border: #606060;
}

/*-----------------------------------*\
  #RESET
\*-----------------------------------*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  display: block;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-family-helvetica);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  min-height: 100vh;
  min-height: -webkit-fill-available;
  max-width: 100vw;
  overflow-x: hidden;
}

body.loaded {
  overflow-y: auto;
}

body.nav-active {
  overflow: hidden;
}

li {
  list-style: none;
}

a,
img,
input,
button,
select,
ion-icon,
textarea {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
button,
select,
textarea {
  background: none;
  border: none;
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  outline: none;
}

button {
  cursor: pointer;
}

ion-icon {
  pointer-events: none;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-center {
  text-align: center;
}

/* Typography Classes */
.text-xs {
  font-size: var(--font-size-xs);
  line-height: var(--line-height-loose);
}

.text-sm {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-loose);
}

.text-base {
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
}

.text-md {
  font-size: var(--font-size-md);
  line-height: var(--line-height-normal);
}

.text-lg {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-tight);
}

.text-xl {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-tight);
}

.text-2xl {
  font-size: var(--font-size-2xl);
  line-height: var(--line-height-tight);
}

.text-display {
  font-family: var(--font-family-montserrat);
}

.text-bold {
  font-weight: var(--font-weight-bold);
}

.text-medium {
  font-weight: var(--font-weight-medium);
}

/* ------------------------------------------------------------------------- */
/* Scrollbar */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
  border-radius: 10px;
}

/* ------------------------------------------------------------------------- */
/* Preloader */
.preload {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-background-secondary);
  z-index: 1000;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: var(--space-xl);
  transition: var(--transition-2);
}

.preload>* {
  transition: var(--transition-1);
}

.preload.loaded {
  transform: translateY(100%);
  opacity: 0;
}

.circle {
  width: 112px;
  height: 112px;
  border-radius: var(--radius-circle);
  border: 3px solid var(--color-text);
  border-block-start-color: var(--color-emphasis);
  animation: rotate360 1s linear infinite;
}

@keyframes rotate360 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(1turn);
  }
}

.preload .text {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  color: var(--color-text);
}

/* ------------------------------------------------------------------------- */
/* Top Bar */
.topbar {
  display: none;
  background-color: var(--color-background);
  border-block-end: 1px solid var(--color-border);
  z-index: 5;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  padding-block: var(--space-sm);
  max-width: 1200px;
  margin-inline: auto;
}

.topbar-item {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: var(--space-sm);
}

.topbar-item .icon ion-icon {
  --ionicon-stroke-width: 60px;
  color: var(--color-text-secondary);
}

.topbar-item .span {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.topbar .link:hover {
  color: var(--color-primary);
}

.separator {
  width: 8px;
  height: 8px;
  border: 1px solid var(--color-border);
  transform: rotate(45deg);
}

/* ------------------------------------------------------------------------- */
/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  padding-block: 50px;
  z-index: 4;
  border-block-end: 1px solid transparent;
  transition: var(--transition-1);
}

.header.active {
  padding-block: var(--space-md);
  background-color: var(--color-background-secondary);
}

.header.hide {
  transform: translateY(-100%);
  transition-delay: 250ms;
}

.header .container {
  padding-inline: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

/* Wrap logo and right-section for better centering control */
.header .container>.logo,
.header .container>.right-section {
  flex-shrink: 0;
  /* Prevent shrinking */
}

.header .right-section {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Logo and Company Name */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.gcs-company-name {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  text-transform: uppercase;
  white-space: nowrap;
}

/* mobile view hide */
.header .btn {
  display: none;
}

/* ------------------------------------------------------------------------- */
/* Navbar Styling */
.nav-open-btn {
  padding: var(--space-sm);
}

.nav-open-btn .line {
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--color-text);
  margin-block: 4px;
  transform-origin: left;
  animation: menuBtn 400ms ease-in-out alternate infinite;
}

@keyframes menuBtn {
  0% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0.5);
  }
}

.nav-open-btn .line-2 {
  animation-delay: 150ms;
}

.nav-open-btn .line-3 {
  animation-delay: 300ms;
}

.navbar {
  position: fixed;
  background-color: var(--color-background-secondary);
  top: 0;
  left: -360px;
  bottom: 0;
  max-width: 360px;
  width: 100%;
  padding: var(--space-lg);
  padding-block-end: var(--space-2xl);
  overflow-y: auto;
  visibility: hidden;
  z-index: 100;
  transition: transform var(--transition-2), visibility var(--transition-2);
}

.navbar.active {
  visibility: visible;
  transform: translateX(360px);
}

.navbar .close-btn {
  color: var(--color-text);
  border: 1px solid var(--color-border);
  padding: var(--space-xs);
  border-radius: var(--radius-circle);
  margin-inline-start: auto;
  margin-block: var(--space-md);
}

.navbar .close-btn ion-icon {
  --ionicon-stroke-width: 40px;
}

.navbar .close-btn:is(:hover, :focus-visible) {
  color: var(--color-emphasis);
}

.navbar .logo {
  max-width: max-content;
  margin-inline: auto;
  margin-block-end: var(--space-2xl);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.navbar-list {
  border-block-end: 1px solid var(--color-border);
  margin-block-end: var(--space-2xl);
}

.navbar-item {
  border-block-start: 1px solid var(--color-border);
}

.navbar-link {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  padding-block: var(--space-md);
  color: var(--color-text);
  transition: var(--transition-1);
  display: flex;
  justify-content: start;
  align-items: center;
  gap: var(--space-sm);
}

.navbar-link:hover,
.navbar-link.active {
  color: var(--color-emphasis);
}

.navbar-title {
  font-size: var(--font-size-lg);
  margin-block-end: var(--space-md);
}

.navbar-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-block: var(--space-sm);
}

.sidebar-link {
  transition: var(--transition-1);
}

.sidebar-link:hover {
  color: var(--color-emphasis);
}

.navbar .text-center .separator {
  margin-block: var(--space-lg);
  margin-inline: auto;
}

.navbar .contact-label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  margin-block-end: var(--space-sm);
}

.contact-number {
  color: var(--color-emphasis);
  font-size: var(--font-size-md);
}

/* ------------------------------------------------------------------------- */
/* Hover Underline */
.hover-underline {
  position: relative;
}

.hover-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  border-block: 1px solid var(--color-emphasis);
  transform: scaleX(0.2);
  opacity: 0;
  transition: var(--transition-2);
}

.hover-underline:hover::after,
.hover-underline.active::after {
  transform: scaleX(1);
  opacity: 1;
}

/* ------------------------------------------------------------------------- */
/* Button */
.btn {
  position: relative;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-tight);
  border: 2px solid var(--color-emphasis);
  padding: var(--space-xs) var(--space-md) !important;
  color: var(--color-emphasis);
  border-radius: 50px;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition-1);
  width: max-content;
}

.btn::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 200%;
  border-radius: var(--radius-circle);
  background-color: var(--color-emphasis);
  transition: var(--transition-2);
  z-index: -1;
}

.btn .text {
  transition: var(--transition-1);
}

.btn .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: max-content;
  color: var(--color-white);
}

.btn:hover::before {
  bottom: -50%;
}

.btn:hover .text-1 {
  transform: translateY(-40px);
}

.btn:hover .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}

.btn-secondary {
  background-color: var(--color-emphasis);
  color: var(--color-white);
}

.btn-secondary::before {
  background-color: var(--color-emphasis-hover);
}

.btn-secondary .text-2 {
  color: var(--color-white);
}

/* ------------------------------------------------------------------------- */
/* Theme Toggle */
.theme-toggle {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle button {
  background: var(--color-background-secondary);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-circle);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-1), border var(--transition-1);
}

.theme-toggle button:hover {
  background: var(--color-emphasis);
  border-color: var(--color-emphasis);
}

.theme-toggle ion-icon {
  font-size: 25px;
  color: var(--color-text);
  transition: opacity var(--transition-1);
}

.theme-toggle .sun-icon {
  opacity: 1;
}

.theme-toggle .moon-icon {
  opacity: 0;
  position: absolute;
}

[data-theme="black"] .theme-toggle .sun-icon {
  opacity: 0;
}

[data-theme="black"] .theme-toggle .moon-icon {
  opacity: 1;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  z-index: 99;
  transition: opacity var(--transition-2);
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ------------------------------------------------------------------------- */
/* Media Queries - Responsiveness */

/* Very small screens (below 360px) */
@media (max-width: 359px) {
  .header .container {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    padding-inline: 10px;
    /* Reduce padding for very small screens */
  }

  .logo {
    flex: 1 1 100%;
    justify-content: center;
  }

  .logo img {
    width: 40px;
    height: 40px;
  }

  .gcs-company-name {
    font-size: var(--font-size-sm);
  }

  .right-section {
    justify-content: center;
  }

  .navbar {
    max-width: 280px;
  }

  .navbar .logo img {
    width: 40px;
    height: 40px;
  }

  .navbar .gcs-company-name {
    font-size: var(--font-size-sm);
  }

  .theme-toggle {
    position: relative;
    width: 40px;
    height: 40px;
  }

  .theme-toggle ion-icon {
    font-size: 20px;
  }
}

/* Small screens (up to 575px) */
@media (max-width: 575px) {
  .header .btn {
    display: none;
  }

  .header .container {
    padding-inline: 15px;
  }

  .logo img {
    width: 40px;
    height: 40px;
  }

  .gcs-company-name {
    font-size: var(--font-size-sm);
  }

  .navbar .logo img {
    width: 40px;
    height: 40px;
  }

  .navbar .gcs-company-name {
    font-size: var(--font-size-sm);
  }

  .theme-toggle {
    position: relative;
    width: 40px;
    height: 40px;
  }

  .theme-toggle ion-icon {
    font-size: 20px;
  }
}

/* Medium screens (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .header .container {
    padding-inline: 15px;
  }

  .logo img {
    width: 45px;
    height: 45px;
  }

  .gcs-company-name {
    font-size: var(--font-size-md);
  }

  .navbar {
    max-width: 320px;
  }
}

/* Tablets and small desktops (768px to 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
  .header .container {
    padding-inline: 20px;
  }

  .navbar-list {
    margin-inline: var(--space-lg);
  }

  .logo img {
    width: 50px;
    height: 50px;
  }

  .gcs-company-name {
    font-size: var(--font-size-md);
  }
}

/* Desktops (1200px and above) */
@media (min-width: 1200px) {

  .nav-open-btn,
  .navbar>*:not(.navbar-list),
  .header .overlay {
    display: none;
  }

  .header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-inline: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .topbar .container {
    max-width: 1200px;
  }

  .navbar,
  .navbar.active,
  .navbar-list {
    all: unset;
  }

  .navbar,
  .navbar.active {
    margin: 0;
    flex-grow: 1;
    display: flex;
    justify-content: center;
  }

  .navbar-list {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
  }

  .navbar-item {
    border-block-start: none;
  }

  .navbar .separator {
    display: none;
  }

  .navbar-link {
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--letter-spacing-tight);
  }

  .navbar-link:hover,
  .navbar-link.active {
    transform: unset;
  }

  .header .btn {
    margin-inline-start: 0;
  }

  .logo img {
    width: 50px;
    height: 50px;
  }

  .gcs-company-name {
    font-size: var(--font-size-lg);
  }

  .header .right-section {
    margin-left: auto;
  }
}

/* Large desktops (1400px and above) */
@media (min-width: 1400px) {
  .navbar {
    margin: 0;
  }

  .header .container {
    max-width: 1400px;
    /* Allow more space on larger screens */
  }
}

/* Topbar adjustments  */
@media (min-width: 575px) {
  .topbar {
    display: block;
  }

  .topbar:has(~ .header.active) {
    transform: translateY(-100%);
  }

  .topbar-item:not(.link),
  .topbar .separator {
    display: none;
  }

  .topbar .container,
  .topbar-item {
    display: flex;
    align-items: center;
  }

  .topbar .container {
    justify-content: center;
    gap: var(--space-lg);
  }

  .header {
    top: 51px;
  }

  .header.active {
    top: 0;
  }

  .header .btn {
    display: block;
  }
}

@media (min-width: 1200px) {
  .topbar-item:not(.link) {
    display: flex;
  }

  .topbar .item-2 {
    margin-inline-end: auto;
  }
}

/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 30px;
  right: -70px;
  width: 70px;
  height: 70px;
  border: 1px dashed currentColor;
  color: var(--radical-red);
  font-size: var(--fs-11);
  border-radius: var(--radius-circle);
  display: grid;
  place-items: center;
  visibility: hidden;
  transition: var(--transition-2);
  z-index: 3;
}

.back-top-btn.show {
  transform: translateX(-100px);
  visibility: visible;
}

.back-top-btn:hover {
  color: var(--white);
}

/* =================================================================================== */
/* Footer Section */

.footer-section {
  position: relative;
  padding: 40px 32px;
  /* margin-top: 50px; */
  background: var(--color-background);
  overflow: hidden;
}

.footer-bg-circle {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: var(--color-background-secondary);
  border-radius: 50%;
  z-index: -1;
  transition: all 0.3s ease;
}

.footer-main {
  text-align: center;
  margin-bottom: 60px;
}

.footer-main p {
  font-family: var(--font-family-helvetica);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

.footer-main h1 {
  font-family: var(--font-family-montserrat);
  font-size: clamp(2rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: var(--color-text);
}

.footer-main h1 span.arrow-circle {
  width: 64px;
  height: 64px;
  background: var(--color-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center;
}

.footer-main h1 span.arrow-circle svg {
  stroke: var(--color-background);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
  font-family: var(--font-family-helvetica);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text);
}

.conf-box {
  font-family: var(--font-family-helvetica);
  background: var(--color-background-secondary);
  color: var(--color-text);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: fit-content;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin: 0 auto 40px;
  font-size: 14px;
}

.conf-box::before {
  content: "🗂️";
  font-size: 16px;
}

.conf-box strong {
  font-family: var(--font-family-helvetica);
  font-weight: 600;
}

.footer-policy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 2px dotted var(--color-border);
  border-bottom: 2px dotted var(--color-border);
  font-family: var(--font-family-helvetica);
  font-size: 14px;
  color: var(--color-text-secondary);
}

.footer-policy .left,
.footer-policy .right {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.footer-policy .right strong {
  font-family: var(--font-family-helvetica);
  font-weight: 700;
  color: var(--color-text);
}

.footer-bottom {
  font-family: var(--font-family-helvetica);
  text-align: center;
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .footer-bg-circle {
    position: absolute;
    top: 0%;
    left: 50%;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 0%;
  }

  .footer-policy {
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 30px 16px;
  }

  .footer-main {
    margin-bottom: 40px;
  }

  .conf-box {
    margin-bottom: 30px;
  }

  .footer-policy {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}

/* =============================================================================== */

/*-----------------------------------*\
  #About
\*-----------------------------------*/

.about {
  padding: 100px 40px 60px;
}

.about-title {
  font-size: 7rem;
  font-family: var(--font-family-helvetica);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-tight);
  color: var(--color-text);
  text-align: left;
  word-spacing: -10px;
}

.about .wrapper .strong {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-weight: inherit;
  display: flex;
  font-size: 5rem;
  font-family: var(--font-family-montserrat);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-tight);
  color: var(--color-text);
}

.about .wrapper {
  position: relative;
  text-align: left;
  height: 1.2em;
  margin-block: var(--space-sm) var(--space-xl);
}

.about-text {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-normal);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  color: var(--color-text);
  margin-block-end: var(--space-md);
  margin-top: 50px;
}

.about .wrapper .space {
  padding: 0.1em;
}

.about .wrapper :is(.in, .out) {
  opacity: 0;
  transform: scaleY(0);
}

.about .strong.active .out {
  opacity: 1;
  transform: scaleY(1);
  animation: textWave 0.2s ease reverse forwards;
}

.about .wrapper .in {
  animation: textWave 0.2s ease forwards;
}

@keyframes textWave {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }

  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}

.shape {
  position: absolute;
  top: 80%;
  left: 0;
  transform: translate(0%, -30%);
  max-width: max-content;
  z-index: -1;
}

/* Media Queries for About Section */

/* Small screens (below 575px) */
@media (max-width: 575px) {
  .about {
    padding-block: 40px;
  }

  .about-title {
    font-size: 3rem;
    text-align: center;
    word-spacing: normal;
    padding-top: 40px;
  }

  .about .wrapper {
    text-align: center;
  }

  .about .wrapper .strong {
    margin-top: 10px;
    font-size: 2rem;
  }

  .about-text {
    margin-top: 10px;
    text-align: center;
  }

  .about-banner {
    display: block;
    margin: 0 auto;
    width: 200px;
    height: 200px;
  }

  .shape {
    display: none;
  }

}

/* Medium screens (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .about {
    padding-block: 40px;
  }

  .about-title {
    font-size: 4rem;
    text-align: center;
    word-spacing: normal;
    padding-top: 40px;
  }

  .about .wrapper {
    text-align: center;
  }

  .about .wrapper .strong {
    font-size: 2rem;
  }

  .about-text {
    margin-top: 40px;
    text-align: center;
  }

  .about-banner {
    display: block;
    margin: 0 auto;
    width: 200px;
    height: 200px;
  }

  .shape {
    display: none;
  }
}

/* Tablets and small desktops (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .about {
    padding-block: 60px 40px;
  }

  .about-title {
    font-size: 4rem;
    text-align: center;
    word-spacing: normal;
    padding-top: 40px;
  }

  .about .wrapper {
    text-align: center;
  }

  .about .wrapper .strong {
    font-size: 4rem;
  }

  .about-text {
    font-size: var(--font-size-md);
    margin-top: 60px;
    text-align: center;
  }

  .about-banner {
    display: block;
    margin: 0 auto;
    width: 300px;
    height: 300px;
  }

  .shape {
    display: none;
  }
}

@media (min-width: 992px) {
  .about .container {
    position: relative;
    z-index: 1;
  }

  .about .wrapper {
    font-size: var(--font-size-3xl);
    margin-block: calc(var(--space-sm) * -1) var(--space-md);
  }

  .about-banner {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: -1;
  }
}

@media (min-width: 1200px) {
  .about .container {
    max-width: 1250px;
  }

  .about .wrapper {
    font-size: var(--font-size-3xl);
    margin-block: calc(var(--space-md) * -1) var(--space-lg);
  }

  .about .wrapper .strong {
    left: 40%;
  }

  .about-text {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-medium);
    letter-spacing: calc(var(--letter-spacing-wide) * 1.5);
  }
}

@media (min-width: 1400px) {
  .about .container {
    max-width: 1500px;
  }

  .about-content {
    margin-inline-end: 400px;
  }

  .about .wrapper {
    font-size: clamp(4rem, 3.5rem + 2vw, 5rem);
  }

  .about-text {
    font-size: var(--font-size-lg);
  }
}

/* ================================================================= */
/*-----------------------------------*\
  #Brands Carousel 
\*-----------------------------------*/

/* Main container for the carousel */
.brandsCarousel {
  max-width: 960px;
  margin: auto;
  overflow: hidden;
  position: relative;
  padding-top: 40px;
  padding-bottom: 20px;
  margin-top: -40px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* Pause animation on hover */
.brandsCarousel:hover .carouselTrack {
  animation-play-state: paused;
}

/* The moving track of logos */
.carouselTrack {
  display: flex;
  gap: var(--item-gap, 3rem);
  animation: infiniteScroll var(--animation-duration, 25s) linear infinite;
  will-change: transform;
}

/* Animation driven by JS-calculated variable */
@keyframes infiniteScroll {
  from {
    transform: translateX(0);
  }

  to {
    /* --scroll-width is set by your JavaScript */
    transform: translateX(var(--scroll-width));
  }
}

/* Individual logo container */
.brandLogo {
  flex-shrink: 0;
  /* --item-width should be defined in your :root */
  width: var(--item-width, 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

/* The SVG logo itself */
.brandLogo svg {
  width: var(--item-width, 100px);
  height: var(--item-height, 50px);

  /* Using your theme variables */
  fill: var(--color-text-secondary);
  transition: fill var(--transition-1, 250ms ease), transform var(--transition-1, 250ms ease);
}

/* Hover state for the logo */
.brandLogo:hover svg {
  fill: var(--color-text);
  transform: scale(1.1);
}

/* The tooltip that appears on hover */
.brandLogo::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  opacity: 0;
  visibility: hidden;
  background-color: var(--color-text);
  color: var(--color-background);
  padding: 4px 8px;
  border-radius: var(--radius-small, 6px);
  font-size: var(--font-size-xs, 12px);
  white-space: nowrap;
  transition: all var(--transition-1, 250ms ease);
  z-index: 10;
}

/* The visible state of the tooltip */
.brandLogo:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* media queries */

/* Small screens (below 575px) */
@media (max-width: 575px) {
  .carouselTrack {
    gap: var(--item-gap, 1rem);
  }
}

/* ================================================================= */