/* Google Fonts - Inter & Outfit */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}
:root {
  --color-primary: #e10600;
  --color-secondary: #b40000;
  --color-light: #ffffff;
  --color-dark: #000000;
  --color-gray: #323232;
  --color-red-bright: #ff0101;
  --color-header-scrolled: #000000a4;
}
@font-face {
  font-family: "Avenir";
  src: url("../assets/fonts/Avenir\ Black.ttf") format("truetype");
  font-weight: 900; /* black */
  font-style: normal;
}

@font-face {
  font-family: "Avenir";
  src: url("../assets/fonts/Avenir\ Heavy.ttf") format("truetype");
  font-weight: 800; /* heavy */
  font-style: normal;
}

@font-face {
  font-family: "Avenir";
  src: url("../assets/fonts/Avenir\ Light.ttf") format("truetype");
  font-weight: 200; /* heavy */
  font-style: normal;
}
body {
  background: #ffffff;
}
html {
  scroll-behavior: smooth;
}
:focus-visible {
  outline-offset: 4px;
}
::-webkit-scrollbar {
  width: 0px;
}
ul li {
  list-style-type: none;
}
button {
  outline: 0;
  cursor: pointer;
}
a {
  text-decoration: none;
}
span,
button,
a,
i,
label {
  display: inline-block;
}
img {
  width: 100%;
  display: block;
}
/* Typography */
p {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-gray);
  line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 1.1;
  color: var(--color-light);
}
/* Utility Classes */
.wrapper {
  width: 90%;
  /* max-width: 1440px; */
  margin: 0 auto;
}
label {
  color: var(--color-light);
  font-weight: 600;
  font-size: 20px;
}
h2 {
  font-size: 60px;
  font-weight: 500;
  line-height: 1.1;
}
/* Base state */
.scroll-anim {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
/* When visible */
.scroll-anim.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Fade Up */
.scroll-anim.fade-up {
  transform: translateY(30px);
}
.scroll-anim.visible.fade-up {
  transform: translateY(0);
}
/* Fade Down */
.scroll-anim.fade-down {
  transform: translateY(-30px);
}
.scroll-anim.visible.fade-down {
  transform: translateY(0);
}
/* Fade Left */
.scroll-anim.fade-left {
  transform: translateX(-40px);
}
.scroll-anim.visible.fade-left {
  transform: translateX(0);
}
/* Fade Right */
.scroll-anim.fade-right {
  transform: translateX(40px);
}
.scroll-anim.visible.fade-right {
  transform: translateX(0);
}
/* Zoom In */
.scroll-anim.zoom-in {
  transform: scale(0.85);
}
.scroll-anim.visible.zoom-in {
  transform: scale(1);
}
/* Rotate In */
.scroll-anim.rotate {
  transform: rotate(-6deg) scale(0.9);
}
.scroll-anim.visible.rotate {
  transform: rotate(0) scale(1);
}
/* Smooth opacity fade */
.scroll-anim.fade {
  opacity: 0;
}
.scroll-anim.visible.fade {
  opacity: 1;
}
/* Delay system */
[data-delay] {
  transition-delay: calc(var(--delay) * 2ms);
}

/* ------ Header start ------ */
/* ------------------------------
   HEADER BASE (DESKTOP)
--------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: transparent;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 70px;
  z-index: 1000;
}

.header.scrolled {
  background: #0000008b; /* you can use another color like #111 or #e2482f */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.header .logo img {
  height: 60px;
}

/* ------------------------------
   HAMBURGER BUTTON
--------------------------------*/
.hamburger {
  width: 30px;
  cursor: pointer;
  display: none; /* hidden on desktop */
  flex-direction: column;
  gap: 6px;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: #fff;
  display: block;
}

/* ------------------------------
   DESKTOP NAV
--------------------------------*/
.nav-menu {
  display: flex;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 200px;
  background: var(--color-primary);
  align-items: center;
  margin: 0;
  padding: 10px 30px;
  border-radius: 30px;
}

.nav-menu a {
  color: var(--color-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
/* highlight active nav link */
.nav-menu a.active,
.nav-menu .mobile-link.active {
  background: var(--color-light); /* pill color from your design */
  color: var(--color-primary);
  border-radius: 999px;
  padding: 6px 14px;
}

/* ------------------------------
   CLOSE BUTTON — always hidden on desktop
--------------------------------*/
.close-btn {
  display: none; /* THIS FIXES YOUR ISSUE */
}

/* ------------------------------
   MOBILE NAVIGATION
--------------------------------*/
@media (max-width: 980px) {
  /* Show hamburger on mobile */
  .hamburger {
    display: flex;
  }

  /* Hide desktop nav */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 75%;
    background: #000;
    flex-direction: column;
    padding: 80px 20px;
    transition: 0.35s ease;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 20px;
  }

  /* CLOSE BUTTON – visible only on mobile */
  .close-btn {
    display: block; /* NOW it shows only in mobile */
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    cursor: pointer;
    color: #fff;
  }
}
/* ------ Header end ------ */

/* ------ Hero section start ------ */

.hero {
  display: flex;
  align-items: center;
  height: calc(100vh - 90px);
  padding: 100px 0px;
  height: 100vh;
  background-image: url("../assets/images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero .container {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.hero .container .hero-contents {
  width: 56%;
}
.hero .container .hero-contents h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 40px;
  font-family: "Avenir";
}
.hero .container .hero-contents h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 34px;
  margin-bottom: 34px;
}
.hero .container .hero-contents p {
  color: var(--color-light);
  font-size: 18px;
  width: 70%;
  margin-bottom: 40px;
}
.hero .container .hero-contents .glass-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  color: var(--color-light);
  /* glass effect */
  background: rgba(255, 255, 255, 0.08);
  border: 1.8px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}
.hero .container .hero-contents .glass-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}
.hero .container .hero-contents .glass-btn .btn-icon {
  width: 42px;
  background: var(--color-primary); /* your red circle */
  padding: 6px;
  border-radius: 50%;
  object-fit: contain;
}
.hero .container .hero-contents .glass-btn span {
  display: inline-block;
}
.hero .container .hero-right {
  width: 40%;
  position: relative;
}
.hero .container .hero-right .stat-container {
  display: flex;
  gap: 20px;
  align-items: center;
  position: absolute;
  bottom: -130px;
  right: 140px;
  z-index: 50;
}
.hero .container .hero-right .stat-box {
  padding: 20px 30px;
  width: 220px;
  height: 130px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ea0000 0%, #750000 100%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  text-align: center;
  color: var(--color-light);
}
.hero .container .hero-right .stat-box h2 {
  font-size: 50px;
  font-weight: 400;
}
.hero .container .hero-right .stat-box p {
  margin-top: 6px;
  font-size: 15px;
  opacity: 0.9;
  color: var(--color-light);
}
/* ------ Hero section end ------ */

/* ------ T-A section start ------ */
.ta {
  padding: 0;
}
.ta .container {
  display: flex;
  flex-direction: column;
}
.ta .container .ta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 210px;
  background: linear-gradient(to bottom, #000000 0%, #3a1f1f 100%);
  padding: 40px 80px;
}
.ta .container .ta-top .logo-image {
  width: 40%;
}
.ta .container .ta-top .bold-text {
  font-weight: 600;
  color: var(--color-light);
  font-size: 28px;
}
.ta .container .ta-midddle {
  display: flex;
  padding: 40px 80px 20px;
  align-items: center;
  gap: 70px;
}
.ta .container .ta-midddle h2 {
  font-weight: 800;
  font-family: "Avenir";
  font-size: 50px;
  color: var(--color-secondary);
}
.ta .container .ta-midddle .ta-stat-box {
  text-align: center;
}
.ta .container .ta-midddle .ta-stat-box h3 {
  font-size: 70px;
  font-weight: 600;
  color: var(--color-dark);
}
.ta .container .ta-midddle .ta-stat-box p {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
}
.ta .container .bottom {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 20px 80px 80px;
}
.ta .container .bottom .ta-left {
  width: 48%;
}
.ta .container .bottom .ta-left .ta-image {
  width: 100%;
}
.ta .container .bottom .ta-left .ta-image img {
  border: 1px solid var(--color-red-bright);
  border-radius: 18px;
  box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px,
    rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
}
.ta .container .bottom .ta-right {
  width: 48%;
}
.ta .container .bottom .ta-right .intro {
  width: 80%;
  font-size: 18px;
  margin-bottom: 50px;
}
.ta .container .bottom .ta-right .ta-btn {
  display: inline-block;
  background: linear-gradient(180deg, #ea0000 0%, #750000 100%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  color: var(--color-light);
  padding: 16px 32px;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 50px;
}
.ta .container .bottom .ta-right .simple-list {
  margin-bottom: 50px;
  margin-left: 60px;
}
.ta .container .bottom .ta-right .simple-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  font-size: 18px;
}
.ta .container .bottom .ta-right .simple-list li .check-icon {
  width: 22px; /* adjust size */
  height: 22px; /* adjust size */
  object-fit: contain;
  display: inline-block;
}
.ta .container .bottom .ta-right .note {
  font-size: 18px;
  width: 80%;
}
/* ------ T - A section end ------ */

/* ------ Hero section start ------ */
.industries {
  padding: 80px 0;
  background: url("../assets/images/bg-industry.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  height: 100%;
}
.industries .container {
  width: 90%;
  margin: auto;
}
/* TOP AREA */
.industries .top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
}
.industries .top-row h2 {
  font-family: "Avenir";
  font-weight: 600;
  font-size: 42px;
  width: 72%;
  margin: 0 auto;
  color: var(--color-light);
}

.industries .top-row p {
  width: 65%;
  font-size: 18px;
  color: var(--color-light);
  text-align: justify;
}
/* MIDDLE AREA */
.industries .middle-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
/* LEFT BUTTONS */
.industries .industry-buttons {
  width: 22%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.industries .industry-buttons button {
  padding: 14px 20px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
  font-weight: 600;

  background: rgba(255, 255, 255, 0.15);
  color: white;
  cursor: pointer;
  transition: 0.3s;
  text-align: left;
}
.industries .industry-buttons button.active,
.industries .industry-buttons button:hover {
  background: #000;
}
/* RIGHT CONTENT */
.industries .industry-content {
  width: 70%;
  display: flex;
  gap: 30px;
  align-items: start;
}
.industries #text-box {
  width: 50%;
  background: rgba(0, 0, 0, 0.45);
  padding: 20px 20px 40px;
  border-radius: 14px;
  font-size: 18px;
}
.industries #industry-img {
  width: 50%;
  border-radius: 14px;
}
/* BOTTOM AREA */
.industries .bottom-row .customer-box {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 20px;
}
.industries .round-img {
  width: 150px;
}
.industries .bottom-row p {
  color: var(--color-light);
  line-height: 1.3;
  font-size: 14px;
}
/* ------ Hero section end ------ */

/* ------ Slider section start ------ */
.slider {
  background: url(../assets/images/slider-bg.jpg) center / cover no-repeat;
  background-attachment: fixed; /* fixed background */
  padding: 100px 0;
}
.slider .container {
}
.slider .container h2 {
  font-family: "Avenir";
  font-weight: 600;
  font-size: 36px;
  width: 72%;
  margin: 0 auto;
  color: var(--color-light);
  text-align: center;
}
.slider .container .slider-div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}
.slider .container .slider-div .left {
  width: 34%;
  background: url(../assets/images/access-card-bg-09.png) center / cover
    no-repeat;
  padding: 30px;
  border-radius: 18px;
  height: 540px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: end;
}
.slider .container .slider-div .left .number {
  font-size: 40px;
  margin-bottom: 30px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  font-family: "Avenir";
}
.slider .container .slider-div .left h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
}
.slider .container .slider-div .left .sub {
  color: var(--color-light);
  font-size: 15px;
  margin-bottom: 26px;
  text-align: justify;
}
.slider .container .slider-div .left .learn-more {
  background: var(--color-light);
  color: var(--color-secondary);
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 800;
}
.slider .container .slider-div .right-img {
  width: 60%;
}
.slider .container .slider-div .right-img img {
  border-radius: 18px;
}
/* ---------------- end original CSS ---------------- */

/* --------------- Sticky & slides additions (safe / namespaced) --------------- */
.slides-wrapper {
  position: relative;
  width: 100%;
}
.slides-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: block;
  z-index: 2;
}
.slides {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
}
/* stacked slider-items — only active shows (opacity + transform animation) */
.slides .slider-item {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  padding-top: 40px;
  padding-bottom: 40px;

  /* fade/raise */
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms cubic-bezier(0.2, 0.9, 0.3, 1);
  pointer-events: none;
  will-change: opacity, transform;
}
/* active slide */
.slides .slider-item.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* --- Sliding content animations --- */
/* start positions when not active */
.slides .slider-item .left {
  transform: translateX(-36px);
  opacity: 0;
  transition: transform 520ms cubic-bezier(0.2, 0.9, 0.3, 1), opacity 420ms ease;
  will-change: transform, opacity;
}
.slides .slider-item .right-img {
  transform: translateX(36px);
  opacity: 0;
  transition: transform 520ms cubic-bezier(0.2, 0.9, 0.3, 1), opacity 420ms ease;
  will-change: transform, opacity;
}
/* when slide active -> content slides in */
.slides .slider-item.active .left {
  transform: translateX(0);
  opacity: 1;
}
.slides .slider-item.active .right-img {
  transform: translateX(0);
  opacity: 1;
}
/* make sure inner layout still uses your flex layout */
.slides .slider-item .slider-div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

/* ------ Slider section end ------ */

/* ------ 3-steps section start ------ */
.step-cards {
  padding: 80px 0;
}
.step-cards .cards-heading {
  font-family: "Avenir";
  font-weight: 600;
  font-size: 36px;
  max-width: 850px;
  margin-bottom: 60px;
  color: var(--color-dark);
}
.step-cards .cards-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.step-cards .card {
  width: 32%;
  min-width: 260px;
  color: var(--color-light);
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 30px;
  position: relative;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px,
    rgba(17, 17, 26, 0.05) 0px 8px 32px;
  transition: all 0.35s ease; /* smooth transition */
}
.step-cards .card:hover {
  background: linear-gradient(180deg, #ea0000 0%, #750000 100%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  color: var(--color-light);
  transform: translateY(-10px) scale(1.02);
}
/* Title & text turn white on hover */
.step-cards .card:hover .card-title,
.step-cards .card:hover .card-text {
  color: #ffffff;
}
.step-cards .step {
  position: absolute;
  top: 30px;
  right: 30px;
  background: linear-gradient(180deg, #ea0000 0%, #750000 100%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  color: var(--color-light);
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 12px;
  font-weight: 600;
}
.step-cards .card:hover .step {
  background: var(--color-light);
  color: var(--color-secondary);
}
.step-cards .icon {
  width: 80px;
  margin-bottom: 24px;
}
.step-cards .card:hover .icon {
  padding: 18px;
  background: var(--color-light);
  border-radius: 14px;
  width: 90px;
}
.step-cards .card-title {
  font-size: 23px;
  margin-bottom: 18px;
  font-weight: 700;
  color: var(--color-dark);
}
.step-cards .card-text {
  font-size: 16px;
}

/* ------ 3-steps section end ------ */

/* ------ Hero section start ------ */
/* ------ Hero section end ------ */

/* ------ Hero section start ------ */
/* ------ Hero section end ------ */

/* ------ Access section start ------ */
.access-section {
  background: url(../assets/images/bg-5.jpg) center / cover no-repeat;
  color: var(--color-light);
  padding: 120px 0px 70px;
  height: 100vh;
}
.access-section h2 {
  font-family: "Avenir";
  font-weight: 600;
  font-size: 36px;
  max-width: 850px;
  margin-bottom: 100px;
  color: var(--color-light);
}
/* Content Layout */
.access-section .access-content {
  display: flex;
  align-items: end;
  justify-content: space-between;
  width: 88%;
}
/* Left Red Box */
.access-section .left-box {
  width: 28%;
  background: url(../assets/images/access-card-bg-09.png) center / cover
    no-repeat;
  transition: all 0.35s ease; /* smooth transition */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  padding: 25px;
  border-radius: 14px;
}
.access-section .left-box:hover {
  transform: translateY(-10px) scale(1.02);
}
.access-section .left-box .left-icon {
  width: 60px;
  margin-bottom: 70px;
}
.access-section .left-box h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 5px;
}
.access-section .left-box .small {
  font-size: 13px;
  margin-bottom: 20px;
  opacity: 0.85;
  color: var(--color-light);
}
.access-section .left-box .desc {
  color: var(--color-light);
}
/* Right Box */
.access-section .right-box {
  background: #0000008e;
  padding: 30px;
  border-radius: 14px;
  border: 1px solid var(--color-light);
  transition: all 0.35s ease; /* smooth transition */
}
.access-section .right-box:hover {
  transform: translateY(-10px) scale(1.02);
}
.access-section .right-box ul {
  list-style: none;
  padding: 0;
}
.access-section .right-box li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 16px;
}
.access-section .right-box li:last-child {
  margin-bottom: 0;
}
.access-section .chk {
  width: 18px;
  margin-right: 10px;
}
/* ------ Access section end ------ */

/* ------ Hero section start ------ */
/* ------ Hero section end ------ */

/* ------ solutions section start ------ */
.solutions-section {
  /* height: 100vh; */
  padding: 80px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top left, #ff002e 0, transparent 55%),
    radial-gradient(circle at bottom right, #ff002e 0, transparent 55%), #030308;
  background: url(../assets/images/faq-bg.jpg) center / cover no-repeat;
}
/* GLASS CARD */
.solutions-section .glass-card {
  width: 90%;
  padding: 36px 50px;
  border-radius: 14px;
  background: #ffffff14;
  border: 3px solid rgba(255, 256, 255, 0.18);
  box-shadow: 0 24px 60px #000000cc;
  backdrop-filter: blur(6px);
}
/* HEADING */
.solutions-section .solutions-title {
  font-family: "Avenir";
  font-weight: 600;
  font-size: 36px;
  margin-bottom: 50px;
  width: 80%;
  color: var(--color-light);
}
.solutions-section .solutions-title span {
  font-weight: 700;
}
/* MAIN BODY – FLEX, NO GRID */
.solutions-section .solutions-body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
/* LEFT BUTTON COLUMN */
.solutions-section .solutions-left {
  width: 26%;
  display: flex;
  flex-direction: column;
}
.solutions-section .solution-btn {
  width: 100%;
  padding: 14px 16px;
  border: transparent;
  border-radius: 14px;
  background: transparent;
  font-weight: 600;
  font-size: 16px;
  color: var(--color-light);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.solutions-section .solution-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}
/* active state from JS */
.solutions-section .solution-btn.active {
  background: #0000008c;
  border: 3px solid rgba(255, 256, 255, 0.18);
  box-shadow: 0 24px 60px #000000cc;
  padding: 11px 16px;
}
/* RIGHT FAQ COLUMN */
.solutions-section .solutions-right {
  width: 60%;
}
/* FAQ ITEM BOX */
.solutions-section .faq-item {
  border-radius: 14px;
  background: #0000008c;
  border: 3px solid rgba(255, 256, 255, 0.18);
  box-shadow: 0 24px 60px #000000cc;
  padding: 10px 16px 6px;
  margin-bottom: 16px;
}
/* FAQ HEADING LINE */
.solutions-section .faq-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.solutions-section .faq-head h3 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
}
/* TOGGLE BUTTON (+ / -) */
.solutions-section .faq-toggle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease, transform 0.15s ease;
}
.solutions-section .faq-toggle:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}
/* ANSWER TEXT – HIDDEN BY DEFAULT */
.solutions-section .faq-content {
  margin-top: 8px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);

  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.25s ease;
}
/* WHEN ACTIVE -> SHOW ANSWER */
.solutions-section .faq-item.active .faq-content {
  max-height: 250px;
  width: 90%;
  opacity: 1;
  padding-bottom: 10px;
}
/* FOOT NOTE */
.solutions-note {
  color: var(--color-light);
}
/* ------ solutions section end ------ */

/* ------ Footer section start ------ */
.footer {
  background-image: url("../assets/images/footer-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 100px 0 0;
}
.footer .container {
  display: flex;
  flex-direction: column;
}
.footer .container .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 100px;
}
.footer .container .top .heading {
}
.footer .container .top .heading h2 {
  font-family: "Avenir";
  font-weight: 900;
  font-size: 100px;
  line-height: 0.9;
  /* margin-bottom: 10px; */
}
.footer .container .top .heading .sub {
  font-family: "Avenir";
  font-weight: 200;
  font-size: 36px;
  color: var(--color-light);
}
.footer .container .top .footer-btn {
}
.footer .container .top .footer-btn .round-btn {
  width: 120px;
  height: 120px;
  border: 2px solid var(--color-light);
  border-radius: 50%;
  color: var(--color-light);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.footer .container .top .footer-btn .round-btn:hover {
  transform: rotate(6deg) translateX(6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.footer .container .top .footer-btn .round-btn .icon {
  width: 30px;
  margin-bottom: 6px;
}
.footer .container .footer-links {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.footer .container .footer-links .link-box {
  width: 100%;
}
.footer .container .footer-links .link-box h3 {
  font-weight: 600;
  font-size: 24px;
  color: var(--color-red-bright);
  margin-bottom: 18px;
}
/* Footer List Icons Wrapper */
.footer .container .footer-links .link-box .footer-list-icons {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* List Items */
.footer .container .footer-links .link-box .footer-list-icons li {
  display: flex;
  align-items: center;
  color: var(--color-light);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
}
/* Icon Styling */
.footer .container .footer-links .link-box .footer-list-icons li i {
  font-size: 18px;
  width: 22px; /* keeps alignment equal */
  min-width: 22px; /* prevents text shifting */
  color: var(--color-light);
  margin-right: 10px;
}
.footer .container .footer-links .link-box .footer-list {
}
.footer .container .footer-links .link-box .footer-list li a {
  color: var(--color-light);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
}
.footer .container .footer-links .c-u-links {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 80px;
  width:48%;
}
.footer .container .footer-links .footer-logo {
  width: 250px;
}
/* Footer bottom - three columns layout */
.footer-bottom {
  color: #fff;
  padding: 16px 0;
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  font-size: 14px;
}

/* left / center / right blocks */
.fb-left {
  text-align: left;
}

.fb-right {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  align-items: center;
}

/* center links */
.fb-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  margin: 0 8px;
  font-weight: 500;
}
.fb-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.fb-sep {
  color: rgba(255, 255, 255, 0.25);
  margin: 0 8px;
}

/* social icons */
.footer .social {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  transition: transform 0.14s ease, background 0.14s ease;
}
.footer .social i {
  font-size: 16px;
}

/* hover states */
.footer .social:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

/* ------ Footer section end ------ */

/* ------ Go To Top Button  start ------ */
#goTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  outline: none;
  background: var(--color-primary); /* your red */
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 999999; /* VERY IMPORTANT */
}
#goTopBtn.show {
  opacity: 1;
  visibility: visible;
}
#goTopBtn:hover {
  transform: translateY(-4px);
  background: var(--color-secondary);
}
/* ------ Go To Top Button  end ------ */

/* ------ Preloader ------ */
#preloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 1;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
/* Fade + Slide Up Exit */
#preloader.hide {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}
.preloader-logo {
  width: 150px;
  animation: pulse 1.3s infinite ease-in-out;
}
/* Logo pulse animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.75;
  }
}
/* ------ Preloader start ------ */

/* ------ Responsive ------  */
@media all and (max-width: 1440px) {
  .hero .container .hero-contents {
    width: 59%;
  }
  .hero {
    height: 110vh;
  }
  .access-section {
    padding: 80px 0px;
    height: 100vh;
  }
  .solutions-section .solutions-left {
    width: 30%;
  }
}
@media all and (max-width: 1380px) {
  .hero .container .hero-right {
    width: 30%;
  }
  .hero .container .hero-contents {
    width: 70%;
  }
  header nav ul {
    gap: 110px;
  }
  .hero .container .hero-contents h1 {
    font-size: 50px;
    margin-bottom: 36px;
  }
  .hero .container .hero-contents h3 {
    font-size: 34px;
    margin-bottom: 30px;
  }
  .slides .slider-item .slider-div {
    height: 88%;
  }
  .slides .slider-item {
    padding-top: 20px;
    padding-bottom: 10px;
  }
  .access-section {
    padding: 70px 0px;
    height: 88vh;
  }
  .access-section .access-content {
    width: 80%;
  }
  .access-section .left-box {
    width: 36%;
  }
  .solutions-section .solutions-title {
    font-size: 32px;
    width: 100%;
  }
  .solutions-section .solutions-left {
    width: 32%;
  }
  .footer .container .top .heading h2 {
    font-size: 84px;
  }
  .footer .container .top .heading .sub {
    font-size: 30px;
  }
  .nav-menu ul {
    gap: 150px;
  }
}
@media all and (max-width: 1280px) {
  .nav-menu ul {
    gap: 90px;
  }
  .hero {
    height: 100vh;
    background-position: right;
  }
  .hero .container .hero-right .stat-container {
    bottom: -90px;
    right: 10px;
  }
  .hero .container .hero-contents h1 {
    font-size: 40px;
    margin-bottom: 30px;
  }
  .hero .container .hero-contents h3 {
    font-size: 28px;
    margin-bottom: 26px;
  }
  .hero .container .hero-contents p {
    font-size: 16px;
    width: 80%;
    margin-bottom: 40px;
  }
  .hero .container .hero-contents .glass-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
  }
  .ta .container .ta-top {
    gap: 100px;
    padding: 30px 60px;
  }
  .ta .container .ta-top .bold-text {
    font-weight: 600;
    color: var(--color-light);
    font-size: 22px;
  }
  .ta .container .ta-midddle h2 {
    font-size: 40px;
  }
  .ta .container .ta-midddle .ta-stat-box h3 {
    font-size: 60px;
  }
  .ta .container .ta-midddle .ta-stat-box p {
    font-size: 16px;
  }
  .ta .container .bottom .ta-right .intro {
    width: 100%;
    font-size: 16px;
    margin-bottom: 40px;
  }
  .ta .container .bottom .ta-right .simple-list li {
    margin-bottom: 15px;
    font-size: 16px;
  }
  .ta .container .bottom .ta-right .note {
    font-size: 16px;
    width: 100%;
  }
  .ta .container .bottom .ta-right {
    width: 44%;
  }
  .ta .container .bottom .ta-left {
    width: 50%;
  }
  .industries .top-row h2 {
    font-size: 38px;
    width: 54%;
  }
  .industries .top-row {
    margin-bottom: 70px;
  }
  .industries {
    padding: 70px 0;
  }
  .slider .container h2 {
    font-size: 30px;
    width: 100%;
  }
  .slides .slider-item .slider-div {
    height: 90%;
  }
  .slider .container .slider-div .left {
    width: 40%;
    padding: 20px;
    border-radius: 18px;
  }
  .slider {
    padding: 80px 0 0;
  }
  .slider .container .slider-div .left .sub {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .industries .industry-buttons {
    width: 25%;
  }
  .slides .slider-item {
    padding-top: 30px;
    padding-bottom: 0px;
  }
  .step-cards .cards-heading {
    font-size: 30px;
    max-width: 1000px;
    margin-bottom: 40px;
  }

  .access-section h2 {
    font-size: 32px;
    max-width: 850px;
    margin-bottom: 50px;
  }
  .access-section .access-content {
    width: 100%;
  }
  .access-section .left-box {
    width: 48%;
  }

  .access-section .left-box .left-icon {
    width: 50px;
    margin-bottom: 70px;
  }
  .solutions-section .glass-card {
    width: 90%;
    padding: 30px;
  }
  .solutions-section .solutions-left {
    width: 36%;
  }
  .footer {
    padding: 46px 0;
  }
}
@media all and (max-width: 1080px) {
  .industries .industry-buttons {
    width: 28%;
  }
  .industries .bottom-row .customer-box {
    margin-top: 40px;
  }
  .nav-menu ul {
    gap: 70px;
  }
  .header .logo img {
    height: 50px;
  }
  .slides .slider-item {
    padding-top: 90px;
    padding-bottom: 0px;
  }
  .slider .container .slider-div .left {
    width: 50%;
  }
  .step-cards .card {
    padding: 20px;
  }
  .step-cards .card-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .step-cards .card-text {
    font-size: 14px;
  }
  .solutions-section .solutions-title {
    font-size: 30px;
  }
  .solutions-section .solutions-right {
    width: 56%;
  }
  .solutions-section .faq-head h3 {
    font-size: 14px;
    line-height: 18px;
  }
  .solutions-section .solutions-left {
    width: 38%;
  }
  .footer .container .top {
    margin-bottom: 70px;
  }
  .footer .container .footer-links .footer-logo {
    width: 130px;
  }
  #goTopBtn {
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .footer .container .top .heading h2 {
    font-size: 70px;
  }

  .slider .container .slider-div .left h3 {
    font-size: 18px;
  }
  .slider .container .slider-div .left {
    height: 500px;
  }
}
@media all and (max-width: 980px) {
  .nav-menu {
    height: 100vh;
    width: 70%;
    background: #000000d9;
    flex-direction: column;
    padding: 80px 20px;
  }
  .header {
    height: 80px;
    padding: 14px 34px;
    z-index: 1000;
  }
  .hero .container {
    flex-direction: column;
  }
  .hero .container .hero-contents {
    width: 100%;
  }
  .hero {
    height: 80vh;
    align-items: baseline;
  }
  .hero .container .hero-contents h1 {
    font-size: 34px;
    margin-bottom: 24px;
  }
  .hero .container .hero-contents h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .hero .container .hero-contents h1 br {
    display: none;
  }
  .hero .container .hero-right .stat-container {
    bottom: -160px;
    right: 232px;
  }
  .hero .container .hero-contents {
    padding-top: 70px;
  }
  .ta .container .ta-top .bold-text {
    font-size: 14px;
  }
  .ta .container .ta-top {
    gap: 70px;
    padding: 20px 40px;
  }
  .ta .container .ta-midddle {
    padding: 40px 50px 6px;
    gap: 30px;
  }
  .ta .container .ta-midddle h2 {
    font-size: 30px;
  }
  .ta .container .bottom {
    align-items: center;
    padding: 20px 40px 80px;
    flex-direction: column;
    gap: 30px;
  }
  .ta .container .bottom .ta-left {
    width: 100%;
    margin-top: 10px;
  }
  .ta .container .bottom .ta-right {
    width: 100%;
  }
  .industries {
    padding: 60px 0;
  }
  .industries .top-row {
    margin-bottom: 50px;
    flex-direction: column;
    gap: 30px;
  }
  .industries .top-row p {
    width: 100%;
    font-size: 18px;
  }
  .industries .middle-row {
    align-items: center;
    flex-direction: column;
    gap: 34px;
  }
  .industries .industry-buttons {
    width: 100%;
  }
  .industries .industry-content {
    width: 100%;
    flex-direction: column;
    gap: 30px;
    align-items: start;
    margin-bottom: 50px;
  }
  .industries #text-box {
    width: 100%;
  }
  .industries #industry-img {
    width: 80%;
    margin: 0 auto;
  }
  .industries .bottom-row .customer-box {
    align-items: center;
    gap: 20px;
  }
  .industries .bottom-row p {
    text-align: center;
  }

  .slides .slider-item .slider-div {
    height: 76%;
    flex-direction: column;
  }
  .slider .container .slider-div .left {
    width: 90%;
    margin: 0 auto;
  }
  .slider .container .slider-div .right-img {
    width: 90%;
    margin: 0 auto;
  }
  .slides .slider-item {
    position: relative !important; /* stop absolute stacking */
    inset: auto !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    display: block;
    width: 100%;
    min-height: auto;
    padding: 20px 16px; /* breathing room */
  }

  /* Inner layout becomes a single-column stack */
  .slides .slider-item .slider-div {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    align-items: flex-start !important;
    height: auto !important;
    padding: 0 !important;
    box-sizing: border-box;
  }

  /* Ensure left + right content are visible and full width */
  .slides .slider-item .left,
  .slides .slider-item .right-img {
    width: 100% !important;
    transform: none !important;
    opacity: 1 !important;
    margin: 0;
  }

  /* Right image spacing */
  .slides .slider-item .right-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }
  .slides-wrapper {
    height: auto !important; /* let document flow decide height */
  }

  .slides-sticky {
    position: static !important; /* disable sticky on mobile */
    height: auto !important;
  }

  .slides {
    overflow: visible !important;
  }
  .hero {
    height: 94vh;
  }
  .slider .container .slider-div .left {
    height: 390px;
  }
  .slider .container h2 {
    margin-bottom: 30px;
  }
  .slider {
    padding: 80px 0 60px;
  }
  .step-cards .card {
    width: 80%;
    min-width: 260px;
    height: 370px;
  }
  .step-cards .cards-wrap {
    gap: 38px;
    justify-content: center;
  }
  .access-section .access-content {
    gap: 50px;
    flex-direction: column;
  }
  .access-section {
    height: 100%;
  }
  .access-section .left-box {
    width: 70%;
  }
  .access-section .access-content {
    align-items: start;
  }
  .solutions-section .solutions-body {
    flex-direction: column;
    gap: 32px;
  }
  .solutions-section .solutions-left {
    width: 100%;
  }
  .solutions-section .solutions-right {
    width: 100%;
  }
  .footer .container .footer-links {
    flex-direction: column;
    gap: 30px;
  }
  .footer .container .footer-links {
    align-items: start;
  }
  .footer .container .footer-links .footer-logo {
    width: 200px;
  }
  .footer-bottom__inner {
    flex-direction: column-reverse;
  }
  .footer-bottom__inner {
    display: flex;
    align-items: start;
    gap: 12px;
  }
  .footer .social i {
    font-size: 30px;
  }
}
@media all and (max-width: 768px) {
  .hero .container .hero-right .stat-container {
    bottom: -160px;
    right: 112px;
  }
  .hero {
    height: 100vh;
    background-position-x: -487px;
  }
  .hero .container .hero-contents .glass-btn span {
    display: inline-block;
    font-size: 14px;
  }
  .ta .container .ta-top {
    gap: 55px;
    padding: 20px 30px;
  }
  .ta .container .ta-top .bold-text {
    font-size: 14px;
    width: 100%;
  }
  .ta .container .ta-midddle {
    padding: 40px 50px 6px;
    gap: 30px;
    flex-direction: column;
  }
  .ta .container .ta-midddle h2 {
    font-size: 34px;
  }
  .industries .top-row h2 {
    font-size: 38px;
    width: 100%;
  }
  .industries #industry-img {
    width: 92%;
    margin: 0 auto;
  }
  .step-cards .cards-heading {
    text-align: center;
  }
  .access-section h2 {
    font-size: 30px;
    max-width: 950px;
    margin-bottom: 40px;
  }
  .solutions-section .solutions-title {
    font-size: 28px;
  }
  .footer .container .top .heading h2 {
    font-size: 60px;
  }
  .footer .container .top .heading .sub {
    font-size: 20px;
  }
  .footer .container .top .footer-btn .round-btn {
    width: 100px;
    height: 100px;
    font-size: 13px;
  }
}
@media all and (max-width: 640px) {
  .hero .container .hero-contents {
    padding-top: 30px;
  }
  .hero .container .hero-right .stat-container {
    bottom: -160px;
    right: 6px;
  }
  .hero .container .hero-right .stat-box h2 {
    font-size: 40px;
    font-weight: 400;
  }
  .hero .container .hero-right .stat-box {
    width: 200px;
    height: 130px;
  }
  .ta .container .ta-top {
    gap: 23px;
    padding: 30px 30px;
    flex-direction: column;
  }
  .ta .container .ta-top .bold-text {
    text-align: center;
  }
  .ta .container .ta-midddle h2 {
    font-size: 34px;
    text-align: center;
    margin-bottom: 0px;
  }
  .slider .container .slider-div .left {
    height: 482px;
  }
  .step-cards {
    padding: 50px 0;
  }
  .access-section h2 br {
    display: none;
  }
  .access-section h2 {
    width: 100%;
  }
  .access-section .left-box {
    width: 90%;
  }
  .solutions-section .solutions-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 40px;
  }
  .footer .container .top {
    margin-bottom: 40px;
    flex-direction: column-reverse;
    gap: 30px;
    align-items: baseline;
  }
  .footer .container .footer-links .c-u-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-direction: column;
  }
  .header {
    background: #00000078;
  }
  .fb-link {
    margin: 0;
    display: inherit;
    margin-top: 10px;
  }
  .fb-sep {
    display: none;
  }
  .hero .container .hero-right .stat-container {
    bottom: -316px;
    right: 120px;
    flex-direction: column;
  }
  .slides .slider-item {
    padding: 0;
  }
}
@media all and (max-width: 480px) {
  .ta .container .ta-top {
    gap: 23px;
    padding: 30px 20px;
    flex-direction: column;
  }
  .hero {
    height: 131vh;
    background-position-x: -780px;
  }
  .ta .container .bottom {
    padding: 20px 26px 80px;
    gap: 30px;
  }
  .industries .top-row h2 {
    font-size: 30px;
    width: 100%;
  }
  .industries .top-row {
    margin-bottom: 40px;
    gap: 20px;
  }
  .industries .top-row p {
    width: 100%;
    font-size: 16px;
  }
  .industries .bottom-row .customer-box {
    margin-top: 10px;
  }
  .slider .container h2 {
    font-size: 24px;
    width: 100%;
  }
  .slides .slider-item .slider-div {
    margin-bottom: 30px;
  }
  .slider .container .slider-div .left {
    height: 550px;
  }
  .step-cards .cards-heading {
    font-size: 26px;
    margin-bottom: 40px;
  }
  .step-cards .card {
    width: 100%;
    height: 340px;
  }
  .solutions-section .glass-card {
    width: 95%;
    padding: 12px;
  }
  .solutions-section .faq-toggle {
    width: 20px;
    height: 20px;
    color: #fff;
    font-size: 1rem;
  }
  .footer {
    padding: 46px 16px;
  }
}
@media all and (max-width: 360px) {
}
