@charset "UTF-8";
/*=========================================
FAB BD LIMITED
Main SCSS
==========================================*/
/* Utilities */
/*=========================================
  FAB BD LIMITED
  Design System
==========================================*/
/*=========================================
Colors
==========================================*/
/*=========================================
Gradients
==========================================*/
/*=========================================
Typography
==========================================*/
/*=========================================
Weights
==========================================*/
/*=========================================
Container
==========================================*/
/*=========================================
Spacing
==========================================*/
/*=========================================
Radius
==========================================*/
/*=========================================
Shadow
==========================================*/
/*=========================================
Transitions
==========================================*/
/*=========================================
Header
==========================================*/
/*=========================================
Layers
==========================================*/
/*=========================================
Breakpoints
==========================================*/
/*=========================================
Section
==========================================*/
/*=========================================
Animation
==========================================*/
/*==================================================
    FAB BD LIMITED
    SCSS Functions
==================================================*/
/*==================================================
    Convert PX → REM
==================================================*/
/*==================================================
    Convert PX → EM
==================================================*/
/*==================================================
    Percentage
==================================================*/
/*==================================================
    Strip Unit
==================================================*/
/*==================================================
    Fluid Typography
==================================================*/
/*==================================================
    Letter Spacing
==================================================*/
/*==================================================
    Opacity Color
==================================================*/
/*==================================================
    Lighten
==================================================*/
/*==================================================
    Darken
==================================================*/
/*==================================================
    Z-index Map
==================================================*/
/*==================================================
    Font Weight
==================================================*/
/*==================================================
    Spacing Scale
==================================================*/
/*==================================================
    Shadow Scale
==================================================*/
/*==================================================
    FAB BD LIMITED
    Reusable Mixins
==================================================*/
/*==================================================
    Responsive Breakpoints
==================================================*/
/*==================================================
    Container
==================================================*/
/*==================================================
    Flex Helpers
==================================================*/
/*==================================================
    Grid Helpers
==================================================*/
/*==================================================
    Absolute Center
==================================================*/
/*==================================================
    Glassmorphism
==================================================*/
/*==================================================
    Card
==================================================*/
/*==================================================
    Transition
==================================================*/
/*==================================================
    Heading
==================================================*/
/*==================================================
    Body Text
==================================================*/
/*==================================================
    Button
==================================================*/
/*==================================================
    Section Padding
==================================================*/
/*==================================================
    Background Cover
==================================================*/
/*==================================================
    Image
==================================================*/
/*==================================================
    Gradient Text
==================================================*/
/*==================================================
    Hover Lift
==================================================*/
/*==================================================
    Floating Animation
==================================================*/
/*==================================================
    Rotation
==================================================*/
/*==================================================
    Pulse
==================================================*/
/*==================================================
    Hide Scrollbar
==================================================*/
/*==================================================
    Text Clamp
==================================================*/
/*==================================================
    Overlay
==================================================*/
/*==================================================
    Selection
==================================================*/
/* Base */
/*=========================================
    CSS RESET
==========================================*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: #0B0E11;
  color: #D8D8D8;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
picture {
  display: block;
  max-width: 100%;
}

svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  font: inherit;
}

input,
textarea,
select {
  font: inherit;
  outline: none;
  border: none;
  background: none;
}

table {
  border-collapse: collapse;
}

section {
  position: relative;
}

.container {
  width: min(100% - 48px, 1320px);
  margin-inline: auto;
}

.hidden {
  display: none !important;
}

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

.w-100 {
  width: 100%;
}

::selection {
  background: #B4E000;
  color: #000000;
}

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

::-webkit-scrollbar-track {
  background: #111;
}

::-webkit-scrollbar-thumb {
  background: #B4E000;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: #C9F23B;
}

/*=========================================
Typography
==========================================*/
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #D8D8D8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
}

h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.2rem;
}

h6 {
  font-size: 1rem;
}

p {
  color: #D8D8D8;
  font-size: 1rem;
  line-height: 1.9;
}

small {
  font-size: 0.85rem;
}

strong {
  color: #FFFFFF;
}

.eyebrow {
  display: inline-block;
  color: #B4E000;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-title {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}

.section-title h2 {
  margin-bottom: 20px;
}

.section-title p {
  max-width: 650px;
  margin: auto;
}

/*=========================================
Animations
==========================================*/
@keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.75;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes glow {
  0% {
    box-shadow: 0 0 10px rgba(180, 224, 0, 0.1);
  }
  50% {
    box-shadow: 0 0 45px rgba(180, 224, 0, 0.35);
  }
  100% {
    box-shadow: 0 0 10px rgba(180, 224, 0, 0.1);
  }
}
@keyframes fabricWave {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(6deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
.fade-up {
  animation: fadeUp 0.8s ease both;
}

.fade {
  animation: fadeIn 0.8s ease both;
}

.float {
  animation: floating 7s ease-in-out infinite;
}

.rotate {
  animation: rotate360 18s linear infinite;
}

.glow {
  animation: glow 4s infinite;
}

/* Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 38px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.35s;
}

.btn-primary {
  background: #B4E000;
  color: #111;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(180, 224, 0, 0.3);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.btn-outline:hover {
  border-color: #B4E000;
  background: rgba(180, 224, 0, 0.08);
}

/*=========================================
Cards
==========================================*/
.card {
  position: relative;
  background: #171C23;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  overflow: hidden;
  transition: 0.45s;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(180, 224, 0, 0.08), transparent);
  opacity: 0;
  transition: 0.45s;
}

.card:hover {
  transform: translateY(-10px);
  border-color: #B4E000;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.card:hover::before {
  opacity: 1;
}

.card-body {
  padding: 40px;
}

.card-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(180, 224, 0, 0.08);
  margin-bottom: 24px;
}

.card-title {
  margin-bottom: 18px;
}

.card p {
  color: #9E9E9E;
}

/*=========================================
Forms
==========================================*/
.form-group {
  margin-bottom: 24px;
}

.form-control {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #14191F;
  color: #FFFFFF;
  transition: 0.3s;
}

textarea.form-control {
  height: 180px;
  resize: none;
  padding-top: 18px;
}

.form-control:focus {
  border-color: #B4E000;
  box-shadow: 0 0 0 4px rgba(180, 224, 0, 0.15);
}

/* Layout */
/*=========================================
Header
==========================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: 0.35s;
  padding: 22px 0;
}

.header.scrolled {
  background: rgba(11, 14, 17, 0.82);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.8rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.logo span {
  color: #B4E000;
}

.navigation ul {
  display: flex;
  gap: 42px;
}

.navigation a {
  position: relative;
  color: #FFFFFF;
  transition: 0.3s;
  font-weight: 600;
}

.navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: #B4E000;
  transition: 0.3s;
}

.navigation a:hover {
  color: #B4E000;
}

.navigation a:hover::after {
  width: 100%;
}

/* Tablet */
@media (max-width: 992px) {
  .navigation {
    display: none;
  }
}
/*=========================================
Hero
==========================================*/
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

/*=========================================
Background
==========================================*/
.hero__background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

/* Decorative Blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  will-change: transform;
}

.blob-1 {
  width: 650px;
  height: 650px;
  background: rgba(180, 224, 0, 0.16);
  top: -180px;
  right: -150px;
  animation: floating 8s ease-in-out infinite;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: rgba(120, 255, 220, 0.08);
  bottom: -200px;
  left: -100px;
  animation: floating 12s ease-in-out infinite;
}

/* Background Grid */
.grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 70px 70px;
}

/*=========================================
Hero Content
==========================================*/
.hero__content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* Left Column */
.hero__text {
  position: relative;
  z-index: 10;
}

.hero h1 {
  margin: 18px 0;
}

.hero h1 span {
  color: #B4E000;
}

.hero p {
  max-width: 560px;
  margin-bottom: 42px;
}

/*=========================================
Buttons
==========================================*/
.hero__buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 20;
}

.hero__buttons .btn {
  position: relative;
  z-index: 30;
}

/*=========================================
Right Illustration
==========================================*/
.fabric-sphere {
  position: relative;
  z-index: 2;
  width: 520px;
  height: 520px;
  margin-left: auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  pointer-events: none;
}

/* Orbit Rings */
.ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(180, 224, 0, 0.25);
  pointer-events: none;
  will-change: transform;
}

.ring:nth-child(1) {
  width: 100%;
  height: 100%;
  animation: rotate360 20s linear infinite;
}

.ring:nth-child(2) {
  width: 80%;
  height: 80%;
  animation: rotate360 14s linear infinite reverse;
}

.ring:nth-child(3) {
  width: 60%;
  height: 60%;
  animation: rotate360 10s linear infinite;
}

/*=========================================
Responsive
==========================================*/
@media (max-width: 992px) {
  .hero {
    padding: 120px 0 80px;
    min-height: auto;
  }
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
  .hero p {
    margin: 0 auto 40px;
  }
  .hero__buttons {
    justify-content: center;
  }
  .fabric-sphere {
    width: 380px;
    height: 380px;
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .hero h1 {
    font-size: clamp(2.4rem, 8vw, 3.5rem);
  }
  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero__buttons .btn {
    width: 100%;
    max-width: 280px;
  }
  .fabric-sphere {
    width: 280px;
    height: 280px;
  }
}
/*=========================================
About
==========================================*/
.about {
  background: #11151B;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}

.about h2 {
  margin: 20px 0;
}

.about p {
  margin-bottom: 24px;
  max-width: 560px;
}

.about__buttons {
  margin-top: 40px;
}

.about__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*=========================================
Fabric Circle
==========================================*/
.fabric-circle {
  position: relative;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.fabric-circle span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(180, 224, 0, 0.2);
}

.fabric-circle span:nth-child(1) {
  animation: rotate360 20s linear infinite;
}

.fabric-circle span:nth-child(2) {
  inset: 50px;
  animation: rotate360 15s linear infinite reverse;
}

.fabric-circle span:nth-child(3) {
  inset: 110px;
  animation: rotate360 10s linear infinite;
}

.center-logo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #B4E000, #92C900);
  color: #000000;
  font-size: 3rem;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0 0 80px rgba(180, 224, 0, 0.25);
}

/*=========================================
Responsive
==========================================*/
@media (max-width: 992px) {
  .about__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about p {
    margin-inline: auto;
  }
  .fabric-circle {
    width: 380px;
    height: 380px;
    margin-top: 60px;
  }
  .center-logo {
    width: 140px;
    height: 140px;
    font-size: 2rem;
  }
}
/*=========================================
Trusted Brands
==========================================*/
.brands {
  overflow: hidden;
  background: #0B0E11;
}

.brands-slider {
  margin-top: 60px;
  overflow: hidden;
  position: relative;
}

.brands-track {
  display: flex;
  width: max-content;
  gap: 30px;
  animation: marquee 28s linear infinite;
}

.brands-track:hover {
  animation-play-state: paused;
}

.brand-card {
  width: 220px;
  height: 120px;
  border-radius: 24px;
  background: #171C23;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #9E9E9E;
  transition: 0.35s;
  flex-shrink: 0;
  backdrop-filter: blur(15px);
}

.brand-card:hover {
  color: #FFFFFF;
  border-color: #B4E000;
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(180, 224, 0, 0.18);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .brand-card {
    width: 170px;
    height: 90px;
    font-size: 1rem;
  }
}
/*=========================================
Products
==========================================*/
.products {
  background: #11151B;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.product-card {
  position: relative;
  overflow: hidden;
  padding: 50px;
  min-height: 420px;
  border-radius: 30px;
  background: linear-gradient(145deg, #161C23, #0E1116);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.45s;
}

.product-card::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(180, 224, 0, 0.08);
  top: -120px;
  right: -100px;
  transition: 0.5s;
}

.product-card:hover {
  transform: translateY(-14px);
  border-color: #B4E000;
}

.product-card:hover::before {
  transform: scale(1.3);
}

.product-number {
  color: #B4E000;
  font-size: 3rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  opacity: 0.18;
}

.product-card h3 {
  margin: 20px 0;
}

.product-card p {
  margin-bottom: 35px;
  color: #9E9E9E;
}

.product-card a {
  color: #B4E000;
  font-weight: 700;
}

.product-card a:hover {
  letter-spacing: 2px;
}

@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}
.collection-card {
  position: relative;
  overflow: hidden;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s;
  opacity: 0.9;
}

.collection-card:hover img {
  transform: scale(1.08);
}

.collection-overlay {
  position: absolute;
  inset: auto 40px 40px 40px;
}

/*=========================================
Statistics
==========================================*/
.statistics {
  background: #0B0E11;
  position: relative;
}

.statistics::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(180, 224, 0, 0.08), transparent 70%);
  pointer-events: none;
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  position: relative;
  text-align: center;
  padding: 50px 30px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  transition: 0.4s;
}

.stat-card:hover {
  transform: translateY(-10px);
  border-color: #B4E000;
  box-shadow: 0 25px 60px rgba(180, 224, 0, 0.18);
}

.stat-number {
  font-size: 4rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: #B4E000;
}

.stat-plus,
.stat-suffix {
  font-size: 2rem;
  color: #B4E000;
  font-weight: 700;
}

.stat-card h3 {
  margin: 18px 0;
}

.stat-card p {
  color: #9E9E9E;
  font-size: 0.95rem;
}

@media (max-width: 1100px) {
  .statistics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .statistics-grid {
    grid-template-columns: 1fr;
  }
  .stat-number {
    font-size: 3rem;
  }
}
/*=========================================
Collections
==========================================*/
.collections {
  background: #11151B;
}

.collections-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-auto-rows: 320px;
  gap: 30px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, #202832, #12171D);
  transition: 0.45s;
}

.collection-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(180, 224, 0, 0.25), transparent 65%);
  transition: 0.5s;
}

.collection-card::after {
  content: "";
  position: absolute;
  width: 180%;
  height: 180%;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02) 2px, transparent 2px, transparent 16px);
  transform: rotate(15deg);
  top: -40%;
  left: -40%;
  opacity: 0.35;
}

.collection-card:hover {
  transform: translateY(-12px);
  border-color: #B4E000;
}

.collection-card:hover::before {
  transform: scale(1.25);
}

.large {
  grid-row: span 2;
}

.wide {
  grid-column: span 2;
}

.collection-overlay {
  position: absolute;
  left: 45px;
  bottom: 45px;
  z-index: 2;
}

.collection-overlay span {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(180, 224, 0, 0.15);
  color: #B4E000;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.collection-overlay h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.collection-overlay a {
  color: #B4E000;
  font-weight: 700;
  transition: 0.3s;
}

.collection-overlay a:hover {
  letter-spacing: 2px;
}

@media (max-width: 992px) {
  .collections-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }
  .large,
  .wide {
    grid-row: auto;
    grid-column: auto;
  }
}
/*=========================================
Manufacturing
==========================================*/
.manufacturing {
  background: #0B0E11;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
  margin-top: 80px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 48px;
  height: 3px;
  background: linear-gradient(90deg, #B4E000, rgba(255, 255, 255, 0.12), #B4E000);
}

.timeline-item {
  position: relative;
  text-align: center;
  z-index: 2;
}

.timeline-icon {
  width: 96px;
  height: 96px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #181E25, #101418);
  border: 2px solid rgba(180, 224, 0, 0.25);
  font-size: 2rem;
  transition: 0.4s;
}

.timeline-item:hover .timeline-icon {
  transform: translateY(-10px) scale(1.05);
  border-color: #B4E000;
  box-shadow: 0 20px 50px rgba(180, 224, 0, 0.25);
}

.timeline-item h3 {
  margin-top: 25px;
}

.timeline-item p {
  margin-top: 12px;
  color: #9E9E9E;
  font-size: 0.92rem;
}

@media (max-width: 1100px) {
  .timeline {
    grid-template-columns: repeat(3, 1fr);
  }
  .timeline::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .timeline {
    grid-template-columns: 1fr;
  }
}
/*=========================================
Why FAB
==========================================*/
.why-fab {
  background: #11151B;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 70px;
}

.feature-card {
  position: relative;
  padding: 40px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  transition: 0.4s;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -90px;
  right: -90px;
  border-radius: 50%;
  background: rgba(180, 224, 0, 0.08);
  transition: 0.4s;
}

.feature-card:hover {
  transform: translateY(-12px);
  border-color: #B4E000;
  box-shadow: 0 20px 50px rgba(180, 224, 0, 0.15);
}

.feature-card:hover::before {
  transform: scale(1.4);
}

.feature-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(180, 224, 0, 0.12);
  font-size: 2rem;
  margin-bottom: 24px;
}

.feature-card h3 {
  margin-bottom: 16px;
}

.feature-card p {
  color: #9E9E9E;
  line-height: 1.8;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
/*=========================================
Industries
==========================================*/
.industries {
  background: #0B0E11;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 70px;
}

.industry-card {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border-radius: 28px;
  background: linear-gradient(145deg, #181E25, #101418);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.4s;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(180, 224, 0, 0.06), transparent 60%);
  opacity: 0;
  transition: 0.4s;
}

.industry-card:hover::before {
  opacity: 1;
}

.industry-card:hover {
  transform: translateY(-12px);
  border-color: #B4E000;
  box-shadow: 0 20px 50px rgba(180, 224, 0, 0.18);
}

.industry-no {
  font-size: 3rem;
  font-weight: 800;
  color: #B4E000;
  opacity: 0.15;
  margin-bottom: 20px;
}

.industry-card h3 {
  margin-bottom: 18px;
}

.industry-card p {
  color: #9E9E9E;
  line-height: 1.8;
}

@media (max-width: 992px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }
}
/*=========================================
Sustainability
==========================================*/
.sustainability {
  background: #11151B;
}

.sustainability-grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  align-items: center;
  gap: 80px;
  margin-top: 80px;
}

/* Planet */
.planet {
  position: relative;
  width: 420px;
  height: 420px;
  margin: auto;
}

.planet-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(180, 224, 0, 0.18);
  animation: rotate360 20s linear infinite;
}

.planet-ring::before {
  content: "";
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 2px dashed rgba(180, 224, 0, 0.12);
}

.planet-core {
  position: absolute;
  inset: 90px;
  border-radius: 50%;
  background: linear-gradient(145deg, #B4E000, #88B800);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #111;
  font-size: 3rem;
  font-weight: 800;
  box-shadow: 0 0 80px rgba(180, 224, 0, 0.25);
}

/* Cards */
.esg-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.esg-card {
  padding: 35px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.4s;
}

.esg-card:hover {
  transform: translateY(-10px);
  border-color: #B4E000;
  box-shadow: 0 20px 45px rgba(180, 224, 0, 0.15);
}

.progress {
  font-size: 2.4rem;
  font-weight: 800;
  color: #B4E000;
  display: block;
  margin-bottom: 20px;
}

.esg-card p {
  margin-top: 15px;
  color: #9E9E9E;
}

@media (max-width: 1100px) {
  .sustainability-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .esg-cards {
    grid-template-columns: 1fr;
  }
  .planet {
    width: 320px;
    height: 320px;
  }
  .planet-core {
    inset: 70px;
    font-size: 2rem;
  }
}
/*=========================================
Certifications
==========================================*/
.certifications {
  background: #0B0E11;
}

.certification-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 70px;
}

.certificate-card {
  position: relative;
  padding: 40px;
  text-align: center;
  border-radius: 28px;
  background: linear-gradient(145deg, #181E25, #101418);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.4s;
}

.certificate-card:hover {
  transform: translateY(-12px);
  border-color: #B4E000;
  box-shadow: 0 25px 60px rgba(180, 224, 0, 0.18);
}

.certificate-logo {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #B4E000;
  border: 2px solid rgba(180, 224, 0, 0.35);
  background: rgba(180, 224, 0, 0.08);
}

.certificate-card h3 {
  margin-bottom: 16px;
}

.certificate-card p {
  color: #9E9E9E;
  line-height: 1.8;
}

@media (max-width: 992px) {
  .certification-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .certification-grid {
    grid-template-columns: 1fr;
  }
}
/*=========================================
Global Presence
==========================================*/
.global {
  background: #11151B;
}

.global-layout {
  display: grid;
  grid-template-columns: 520px 1fr;
  align-items: center;
  gap: 80px;
  margin-top: 80px;
}

/* World */
.world {
  position: relative;
  width: 500px;
  height: 500px;
  margin: auto;
}

.world::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(180, 224, 0, 0.15);
}

.world-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 130px;
  height: 130px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(145deg, #B4E000, #7DB400);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #111;
  font-size: 2rem;
  font-weight: 800;
  box-shadow: 0 0 70px rgba(180, 224, 0, 0.3);
}

.orbit {
  position: absolute;
  padding: 14px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.europe {
  left: 40px;
  top: 90px;
}

.usa {
  right: 30px;
  top: 120px;
}

.middle-east {
  right: 10px;
  bottom: 120px;
}

.asia {
  left: 80px;
  bottom: 70px;
}

/* Stats */
.global-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.global-card {
  padding: 40px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.4s;
}

.global-card:hover {
  transform: translateY(-10px);
  border-color: #B4E000;
}

.global-card h3 {
  color: #B4E000;
  font-size: 3rem;
}

.global-card span {
  color: #9E9E9E;
}

@media (max-width: 1100px) {
  .global-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .world {
    width: 320px;
    height: 320px;
  }
  .global-stats {
    grid-template-columns: 1fr;
  }
  .orbit {
    font-size: 0.8rem;
    padding: 10px 16px;
  }
}
/*=========================================
CTA
==========================================*/
.cta {
  background: #0B0E11;
}

.cta-box {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 90px;
  border-radius: 40px;
  background: linear-gradient(135deg, #1A2028, #101418);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-box::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(rgba(180, 224, 0, 0.16), transparent 70%);
  left: -200px;
  top: -200px;
}

.cta h2 {
  max-width: 760px;
  margin: 20px auto;
}

.cta p {
  max-width: 700px;
  margin: auto;
  color: #9E9E9E;
}

.cta-buttons {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/*=========================================
Contact
==========================================*/
.contact {
  background: #11151B;
}

.contact-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  margin-top: 70px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.35s;
}

.info-card:hover {
  border-color: #B4E000;
  transform: translateY(-6px);
}

.info-card h3 {
  color: #B4E000;
  margin-bottom: 10px;
}

.info-card p {
  color: #9E9E9E;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-group {
  display: flex;
}

.full {
  grid-column: 1/-1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #181E25;
  color: #fff;
  font-size: 1rem;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #B4E000;
  box-shadow: 0 0 0 3px rgba(180, 224, 0, 0.15);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  width: max-content;
}

@media (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .contact-form {
    grid-template-columns: 1fr;
  }
}
/*=========================================
Footer
==========================================*/
.footer {
  background: #0B0E13;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 90px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  color: #B4E000;
  display: inline-block;
  margin-bottom: 20px;
}

.footer-column p {
  color: #9E9E9E;
  line-height: 1.8;
}

.footer-column h3 {
  margin-bottom: 25px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 14px;
}

.footer-column a {
  color: #9E9E9E;
  transition: 0.3s;
}

.footer-column a:hover {
  color: #B4E000;
}

.newsletter {
  padding: 50px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  gap: 30px;
}

.newsletter form {
  display: flex;
  gap: 15px;
  width: 100%;
  max-width: 500px;
}

.newsletter input {
  flex: 1;
  padding: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #151A22;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 25px;
}

.footer-links a {
  color: #9E9E9E;
}

.footer-links a:hover {
  color: #B4E000;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .newsletter {
    flex-direction: column;
    align-items: flex-start;
  }
  .newsletter form {
    max-width: none;
  }
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .newsletter form {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
/*=========================================
Footer
==========================================*/
.footer {
  background: #0B0E13;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 90px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  color: #B4E000;
  display: inline-block;
  margin-bottom: 20px;
}

.footer-column p {
  color: #9E9E9E;
  line-height: 1.8;
}

.footer-column h3 {
  margin-bottom: 25px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 14px;
}

.footer-column a {
  color: #9E9E9E;
  transition: 0.3s;
}

.footer-column a:hover {
  color: #B4E000;
}

.newsletter {
  padding: 50px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  gap: 30px;
}

.newsletter form {
  display: flex;
  gap: 15px;
  width: 100%;
  max-width: 500px;
}

.newsletter input {
  flex: 1;
  padding: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #151A22;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 25px;
}

.footer-links a {
  color: #9E9E9E;
}

.footer-links a:hover {
  color: #B4E000;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .newsletter {
    flex-direction: column;
    align-items: flex-start;
  }
  .newsletter form {
    max-width: none;
  }
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .newsletter form {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
/* Pages */
/*=========================================
Home Page
==========================================*/
/* Sections */
section {
  position: relative;
  padding: 120px 0;
}

/* Hero */
.hero {
  padding-top: 120px;
}

/* Utilities */
.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.py {
  padding: 120px 0;
}

.py-sm {
  padding: 80px 0;
}

.bg-dark {
  background: #11151B;
}

.bg-gradient {
  background: linear-gradient(135deg, #0B0E11, #161C24);
}

.text-primary {
  color: #B4E000;
}

.text-muted {
  color: #9E9E9E;
}

.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.radius {
  border-radius: 24px;
}

/*# sourceMappingURL=style.css.map */
