* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


:root {
  --primary-orange: #FF5F15;
  --secondary-orange: #FFA802;
  --gradient-primary: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
  --gradient-light: linear-gradient(135deg, #fff5f0 0%, #fff9f0 100%);
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --shadow-light: 0 10px 40px rgba(255, 95, 21, 0.1);
  --shadow-hover: 0 20px 60px rgba(255, 95, 21, 0.2);
}

body {
  font-family: "Arial", sans-serif;
  /* background-color: #000000; */
  background-color: #0d163e !important;
  color: rgb(0, 0, 0);
  line-height: 1.6;
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: #0d163e;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

a {
  text-decoration: none;
  color: rgb(0, 0, 0);
}

img {
  max-width: 100%;
  height: auto;
}

.hero {
  /* background-image: url('../assets/backhero.png'); */
  background-size: cover;
  background-position: center;
  padding: 200px 0;
  /* or adjust height */
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}



.safety-section {
  padding: 3rem 2rem;
  color: white;
  text-align: center;
}

.safety-section h2 {
  color: #ffa500;
  font-size: clamp(24px, 5vw, 34px);
  margin-bottom: 15px;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 350px;
  max-width: 1000px;
  margin: 0 auto;
}

.safety-card {
  padding: 1.5rem;
  border-radius: 12px;
  text-align: left;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.safety-card img {
  width: clamp(80px, 15vw, 120px);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.safety-card h3 {
  /* color: #ff6600; */
  font-size: clamp(18px, 3.5vw, 26px);
  margin-bottom: 0.5rem;
  text-align: center !important;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ff5f15 0%, #ffa802 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.safety-card p {
  color: #fff;
  font-size: clamp(14px, 2.5vw, 20px);
  text-align: left;
}



.payment-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2b2b2b;
  border-radius: 20px;
  padding: 2rem;
  margin: 40px 0px;
  color: white;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}

.payment-section::before {
  content: "";
  position: absolute;
  right: 90px;
  width: 300px;
  height: 300px;
  background-color: orange;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  border-radius: 50% 50% 50% 50%;
  z-index: 0;
}



.content h2 {
  color: #fca311;
  font-size: clamp(20px, 3vw, 24px);
  margin-bottom: 1rem;
}

.learn-btn {
  background-color: #f75e2e;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: clamp(14px, 2vw, 16px);
}

.image-container {
  flex: 1;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  max-width: 100%;
  height: auto;
  max-height: 200px;
}

/* Optimized animations for better performance */
.typewriter {
  overflow: hidden;
  border-right: 2px solid #fded0d;
  font-family: monospace;
  animation: typing 2s steps(16) infinite alternate, blink 1s step-end infinite;
  will-change: width, border-color;
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 16ch;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

/* Optimized slide animations with hardware acceleration */
.slide-in-right {
  opacity: 0;
  transform: translate3d(100px, 0, 0);
  transition: opacity 0.3s ease, transform 0.3s ease;
  will-change: transform, opacity;
}

.slide-in-right.show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.slide-in-left {
  opacity: 0;
  transform: translate3d(-100px, 0, 0);
  transition: opacity 0.3s ease, transform 0.3s ease;
  will-change: transform, opacity;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  .logo {
    display: flex;
    align-items: center;
    margin-left: 0px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text,
  .hero-image {
    flex: 1 1 100%;
    padding: 0;
  }

  .hero-text h1 {
    font-size: 50px;
    color: #ffa500;
    margin-bottom: 5px;
  }

  .navbar {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
  }

  .nav-links li {
    margin-bottom: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text,
  .hero-image {
    flex: 1 1 100%;
    padding: 0;
    text-align: left;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .safety-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .safety-card {
    padding: 1.2rem;
  }

  .safety-section h2 {
    font-size: 1.5rem;
  }

  .highlight-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .highlight-text,
  .highlight-image {
    flex: 1 1 100%;
  }

  .highlight-text h4 {
    font-size: 1rem;
  }



  .consult-btn {
    position: static;
    margin: 2rem auto 0;
  }

  .payment-section {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    margin: 0;
  }

  .payment-section::before {
    width: 100%;
    height: 50%;
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: 50% 50% 0 0;
  }

  .content h2 {
    font-size: 1.2rem;
  }

  .learn-btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  .image-container {
    margin-top: 1.5rem;
  }
}

/* Simplified background animation for better performance */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 25% 25%, rgba(255, 95, 21, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 168, 2, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 30%);
  background-size: 200px 200px, 300px 300px, 150px 150px;
}

/* Optimized hexagonal pattern animation */
.hex-newsletter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg,
      rgba(255, 255, 255, 0.1) 25%,
      transparent 25%,
      transparent 75%,
      rgba(255, 255, 255, 0.1) 75%);
  background-size: 30px 30px;
  animation: hexPattern 12s linear infinite;
  will-change: transform;
}

@keyframes hexPattern {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(30px, 30px, 0);
  }
}

/* Optimized flag wave animation */
.flag-icon {
  width: 24px;
  height: auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
  animation: wave 4s ease-in-out infinite;
  will-change: transform;
}

@keyframes wave {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-5deg);
  }

  75% {
    transform: rotate(5deg);
  }
}

/* Optimized glow effect with reduced complexity */
.light-glow {
  position: relative;
}

.light-glow::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff5f15, #ffa802, #ff5f15);
  border-radius: inherit;
  z-index: -1;
  opacity: 0.2;
  transition: opacity 0.3s ease;
  will-change: opacity;
}

.light-glow:hover::after {
  opacity: 0.3;
}

/* Simplified pulse animation */
@keyframes pulse {

  0%,
  100% {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.02, 1.02, 1);
  }
}

/* Optimized float animation */
.floating-element {
  position: absolute;
  background: radial-gradient(circle, rgba(255, 95, 21, 0.6), rgba(255, 168, 2, 0.4));
  border-radius: 50%;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
  will-change: transform;
}

@keyframes float {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -15px, 0);
  }
}

/* Added performance optimizations */
.partner-card {
  will-change: transform, opacity;
  backface-visibility: hidden;
}

/* Reduced animation complexity for better performance */
.fade-in {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition: opacity 0.4s ease, transform 0.4s ease;
  will-change: transform, opacity;
}

.fade-in.show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* footer section */
footer ul li,
footer ul li a {
  font-size: clamp(16px, 2.5vw, 22px);
  color: #000000;
  font-weight: 500;
}




/* Ultra Unique Light Footer Design */
.unique-footer {
  background: #0d163e;
  /* background: linear-gradient(90deg, #ff5f15 0%, #ffa802 100%); */
  border-top: 5px solid #FF5F15;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;

  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

/* Animated Background Pattern */
.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 95, 21, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 168, 2, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 30%),
    linear-gradient(45deg, transparent 49%, rgba(255, 95, 21, 0.02) 50%, transparent 51%);
  background-size: 200px 200px, 300px 300px, 150px 150px, 100px 100px;
  /* animation: bgFloat 15s ease-in-out infinite; */
}

@keyframes bgFloat {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(20px, -30px) rotate(120deg);
  }

  66% {
    transform: translate(-15px, 20px) rotate(240deg);
  }
}

/* Hexagonal Newsletter Section */
.hex-newsletter {
  position: relative;
  margin: 50px auto;
  max-width: 1000px;
  z-index: 10;
}

.hex-container {
  background: linear-gradient(135deg, #FF5F15, #FFA802);
  /* clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%); */
  padding: 60px 80px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(255, 95, 21, 0.3);
}

.hex-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.1) 75%);
  background-size: 30px 30px;
  animation: hexPattern 8s linear infinite;
}

@keyframes hexPattern {
  0% {
    transform: translateX(0) translateY(0);
  }

  100% {
    transform: translateX(30px) translateY(30px);
  }
}

.hex-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
}

.hex-form {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0;
}

.hex-input {
  background: rgba(255, 255, 255, 0.95);
  border: 3px solid rgba(255, 255, 255, 0.8);
  color: #333;
  padding: 15px 25px;
  border-radius: 50px;
  font-size: 16px;
  width: 300px;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hex-input::placeholder {
  color: #666;
}

.hex-input:focus {
  outline: none;
  border-color: white;
  background: white;
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(255, 95, 21, 0.3);
}

.hex-btn {
  background: white;
  color: #FF5F15;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hex-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(255, 95, 21, 0.4);
  background: #f8f9fa;
}

.hex-partner {
  background: white;
  color: #FF5F15;
  border: 3px solid white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hex-partner:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(255, 168, 2, 0.4);
}

/* Floating Cards Layout */
.floating-cards {
  position: relative;
  z-index: 5;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.float-card {
  /* background: rgba(255, 255, 255, 0.9); */
  box-shadow: 0 25px 50px rgba(255, 95, 21, 0.15);

  /* backdrop-filter: blur(20px); */
  border: 2px solid rgba(255, 95, 21, 0.1);
  border-radius: 25px;
  padding: 30px;
  color: #333;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: all 0.5s ease;
  /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08); */
  box-shadow: 0 25px 50px rgba(255, 95, 21, 0.15);

}

.float-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 95, 21, 0.1), transparent);
  transition: left 0.5s;
}

.float-card:hover {
  transform: translateY(-15px) rotateX(5deg);
  box-shadow: 0 25px 50px rgba(255, 95, 21, 0.15);
  border-color: rgba(255, 168, 2, 0.3);
  background: rgba(255, 255, 255, 0.95);
}

.float-card:hover::before {
  left: 100%;
}

/* Company Card - Main */
.company-card {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 235, 0.9));
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: #ffffff;
  border-radius: 20px;
  border: 2px solid rgba(255, 95, 21, 0.1);
}

.company-logo {
  width: 200px;
  height: 80px;
  object-fit: contain;
  /* filter: drop-shadow(0 5px 15px rgba(255, 95, 21, 0.3)); */
}

.company-title {
  background: linear-gradient(135deg, #FF5F15, #FFA802);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
}

.contact-item {
  background: white;
  border: 2px solid rgba(255, 95, 21, 0.1);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(255, 95, 21, 0.2);
}

.contact-item:hover {
  background: rgba(255, 248, 235, 0.8);
  border-color: rgba(255, 95, 21, 0.3);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(255, 95, 21, 0.2);
}

.contact-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: contrast(1.2) saturate(1.3);
}

.contact-text {
  font-size: 14px;
  color: #444;
  margin: 0;
  font-weight: 500;
}

/* Social Media Inline */
.social-inline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  /* icons ke beech ka gap */
  margin: 30px auto;
  flex-wrap: wrap;
  /* responsive ke liye */
}

.social-icon {
  width: 70px;
  height: 70px;
  background: white;
  border: 3px solid rgba(255, 95, 21, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
  transform: scale(1.3);
  background: rgba(255, 248, 235, 1);
  border-color: #FF5F15;
  box-shadow: 0 15px 35px rgba(255, 95, 21, 0.3);
  z-index: 10;
}

.social-icon img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}


/* Navigation Pyramids */
.nav-pyramid {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 95, 21, 0.1);
  position: relative;
  margin-bottom: 20px;
}

.pyramid-header {
  background: linear-gradient(135deg, #FF5F15, #FFA802);
  color: white;
  padding: 20px;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(255, 95, 21, 0.3);
}

.pyramid-links {
  list-style: none;
  padding: 0 20px 20px;
}

.pyramid-links li {
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

.pyramid-links a {
  color: #555;
  text-decoration: none;
  display: block;
  padding: 12px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid transparent;
}

.pyramid-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 95, 21, 0.1), rgba(255, 168, 2, 0.1));
  transition: left 0.3s ease;
  z-index: -1;
}

.pyramid-links a:hover {
  color: #FF5F15;
  transform: translateX(10px);
  background: white;
  border-color: rgba(255, 95, 21, 0.2);
  box-shadow: 0 5px 15px rgba(255, 95, 21, 0.2);
  font-weight: 600;
}

.pyramid-links a:hover::before {
  left: 0;
}

/* Certification Diamonds */
.cert-diamonds {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.diamond-box {
  background: white;
  border: 3px solid rgba(255, 95, 21, 0.2);
  position: relative;
  padding: 10px;
  border-radius: 20px;
  margin: 0px 20px;
  /* clip-path: polygon(15% 0%, 85% 0%, 100% 50%, 85% 100%, 15% 100%, 0% 50%); */
  transition: all 0.5s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.diamond-box:hover {
  border-color: #FFA802;
  background: rgba(255, 248, 235, 0.9);
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 20px 40px rgba(255, 95, 21, 0.2);
}

.diamond-title {
  color: #FF5F15;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.diamond-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-wrap: nowrap;
}

.diamond-images img {
  width: 80px;
  height: 60px;
  object-fit: contain;
  border-radius: 10px;
  transition: all 0.3s ease;
  filter: contrast(1.1) saturate(1.2);
  background: rgba(255, 255, 255, 0.8);
  padding: 5px;
  border: 2px solid rgba(255, 95, 21, 0.1);
}

.diamond-images img:hover {
  transform: scale(1.2) rotate(10deg);
  filter: contrast(1.3) saturate(1.4);
  border-color: #FF5F15;
  box-shadow: 0 10px 25px rgba(255, 95, 21, 0.3);
}

/* Morphing Copyright */
.morphing-copyright {
  background: linear-gradient(135deg, #FF5F15, #FFA802, #FF5F15);
  background-size: 300% 300%;
  /* animation: morphBg 6s ease-in-out infinite; */
  padding: 10px;
  text-align: center;
  color: white;
  /* font-weight: bold; */
  font-size: 1.3rem;
  position: relative;
  overflow: hidden;
  margin: 15px;
  margin-top: 30px;
  border-radius: 20px;
  /* margin-bottom: 20px; */
  box-shadow: 0 -10px 30px rgba(255, 95, 21, 0.3);
}

/* .morphing-copyright::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background:
          repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.05) 10px,
            rgba(255, 255, 255, 0.05) 20px);
        animation: textFlow 12s linear infinite;
      } */

/* @keyframes morphBg {

        0%,
        100% {
          background-position: 0% 50%;
        }

        50% {
          background-position: 100% 50%;
        }
      } */

/* @keyframes textFlow {
        0% {
          transform: translateX(0);
        }

        100% {
          transform: translateX(50px);
        }
      } */

.copyright-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.flag-icon {
  width: 25px;
  height: auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
  animation: wave 3s ease-in-out infinite;
}

@keyframes wave {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-8deg);
  }

  75% {
    transform: rotate(8deg);
  }
}

/* Light Theme Specific Enhancements */
.light-glow {
  position: relative;
}

.light-glow::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #FF5F15, #FFA802, #FF5F15);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.light-glow::after {
  opacity: 0.3;
  /* animation: pulse 1.5s ease-in-out infinite; */
}


.light-glow:hover::after {
  opacity: 0.1;
  /* animation: pulse 1.5s ease-in-out infinite; */
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hex-container {
    clip-path: none;
    border-radius: 25px;
    padding: 40px 30px;
  }

  .hex-form {
    flex-direction: column;
  }

  .hex-input {
    width: 100%;
  }

  .floating-cards {
    grid-template-columns: 1fr;
  }

  .company-card {
    grid-column: span 1;
  }

  .logo-section {
    flex-direction: column;
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .social-orbital {
    width: 180px;
    height: 180px;
  }

  .cert-diamonds {
    grid-template-columns: 1fr;
  }

  .diamond-box {
    clip-path: none;
    border-radius: 15px;
    margin: 0px 10px;
  }
}

/* Scroll Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced Light Theme Particles */
.particle {
  position: absolute;
  background: radial-gradient(circle, rgba(255, 95, 21, 0.8), rgba(255, 168, 2, 0.6));
  border-radius: 50%;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}



/* RESPONSIVE FIXES FOR MAIN CONTENT */

.topbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  background: linear-gradient(90deg, #111, #222) !important;
  color: #fff !important;
  font-size: clamp(12px, 2vw, 14px) !important;
  padding: 5px 0 !important;
  z-index: 1040 !important;
  letter-spacing: 0.3px !important;
}

.topbar-left span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-weight: 500 !important;
  color: #FFA802 !important;
}

.topbar-right span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  color: #ffffff !important;
  font-weight: 500 !important;
  font-size: clamp(12px, 2vw, 14px) !important;
}

.topbar i {
  color: #FFA802 !important;
  font-size: clamp(12px, 2vw, 14px) !important;
}

/* Navbar */
.navbar {
  position: fixed !important;
  top: 30px !important;
  left: 0 !important;
  width: 100% !important;
  background: #0d163e !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
  padding: 17px 0 !important;
  transition: all 0.3s ease !important;
  z-index: 1030 !important;
  color: #fff !important;
}

.navbar .navbar-brand img {
  height: clamp(40px, 6vw, 50px) !important;
}

.nav-link {
  font-weight: 500 !important;
  color: white !important;
  margin: 0 10px !important;
  padding: 8px 15px !important;
  border-radius: 25px !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
  font-size: clamp(14px, 2vw, 16px) !important;
}

.nav-link:hover {
  color: white !important;
  background: var(--gradient-primary) !important;
  transform: translateY(-2px) !important;
}

.btn-login,
.btn-register {
  padding: 8px 25px !important;
  border-radius: 25px !important;
  font-weight: 500 !important;
  margin: 0 5px !important;
  transition: all 0.3s ease !important;
  font-size: clamp(12px, 2vw, 14px) !important;
}

.btn-login {
  background: transparent !important;
  border: 2px solid var(--primary-orange) !important;
  color: var(--primary-orange) !important;
}

.btn-login:hover {
  background: var(--gradient-primary) !important;
  color: white !important;
  transform: translateY(-2px) !important;
}

.btn-register {
  background: var(--gradient-primary) !important;
  color: white !important;
}

.btn-register:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-hover) !important;
  color: white !important;
}


/* Toggle hamburger to X */
.navbar-toggler.collapsed .navbar-toggler-icon {
  background: #FFA802 !important;
}

.navbar-toggler.collapsed .navbar-toggler-icon::before {
  top: -8px !important;
  transform: rotate(0) !important;
}

.navbar-toggler.collapsed .navbar-toggler-icon::after {
  top: 8px !important;
  transform: rotate(0) !important;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background: transparent !important;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
  top: 0 !important;
  transform: rotate(45deg) !important;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
  top: 0 !important;
  transform: rotate(-45deg) !important;
}


/* Mobile Fixes */
@media (max-width: 991px) {
  .navbar {
    justify-content: space-between !important;
    top: 10px !important;
  }

  .navbar-collapse {
    background: #0d163e !important;
    border-radius: 12px !important;
    margin-top: 10px !important;
    padding: 10px 15px !important;
  }

  .navbar-toggler {
    margin-left: auto !important;
    /* right side fix */
    z-index: 1050 !important;
    /* upar rahe */
  }






  /* Custom hamburger */
  .navbar-toggler-icon {
    display: block !important;
    width: 25px !important;
    height: 2px !important;
    background: #FFA802 !important;
    position: relative !important;
    border-radius: 2px !important;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: '' !important;
    position: absolute !important;
    width: 25px !important;
    height: 2px !important;
    background: #FFA802 !important;
    left: 0 !important;
    border-radius: 2px !important;
  }

  .navbar-toggler-icon::before {
    top: -8px !important;
  }

  .navbar-toggler-icon::after {
    top: 8px !important;
  }



  .topbar-right span {
    display: none !important;
  }


}

/* Enhanced Data Policy Section - RESPONSIVE */
.data-policy-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.466), rgba(0, 0, 0, 0.678)),
    url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  color: #fff;
  padding: clamp(80px, 15vw, 120px) 0 clamp(60px, 12vw, 80px);
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

/* Content Styling - RESPONSIVE */
.content {
  position: relative;
  z-index: 3;
  animation: slideInLeft 1.2s ease-out;
}

.data-policy-section h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1.5s ease-out 0.3s both;
  color: #ffffff;
}

.data-policy-section p {
  font-size: clamp(1.2rem, 3vw, 2rem);
  opacity: 0.95;
  font-weight: 300;
  animation: fadeInUp 1.5s ease-out 0.6s both;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Enhanced Safety Section - RESPONSIVE */
.safety-section {
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
  color: white;
  text-align: center;
  position: relative;
}


@media (min-width: 576px) and (max-width: 780px) {
  .col-sm-3 {
    flex: 0 0 auto !important;
    width: 50% !important;
    /* 2 cards ek row me */
  }
}


@media (min-width: 200px) and (max-width:575) {
  .col-sm-3 {
    flex: 0 0 auto !important;
    width: 100% !important;
  }
}

/* Safety Section Main Title - RESPONSIVE */
.safety-section h2 span {
  font-size: clamp(24px, 6vw, 45px) !important;
  line-height: clamp(32px, 8vw, 62px) !important;
}

.safety-card {
  background: #0d163e !important;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 168, 2, 0.1);
  animation: fadeInUp 0.8s ease-out;
  padding: clamp(1rem, 3vw, 1.5rem);
}






@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Icon Container - RESPONSIVE */
.icon-container {
  border: 3px solid orange;
  border-radius: clamp(15px, 3vw, 25px);
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(8px, 2vw, 12px);
}

.icon-container img {
  height: clamp(80px, 15vw, 200px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Content Container - RESPONSIVE */
.content-container {
  flex: 1;
  min-width: 0;
  /* Prevents flex item from overflowing */
}



.star-icon {
  color: darkorange;
  font-size: clamp(16px, 3vw, 20px);
}




/* Banner Section - RESPONSIVE */
.banner-wrapper {
  margin: clamp(20px, 4vw, 40px) 0;
}

.banner-wrapper img {
  width: 100%;
  height: auto;
  border-radius: clamp(15px, 3vw, 30px);
  object-fit: cover;
}

/* Utility Classes */
.text-center {
  text-align: center !important;
}

.no-break {
  white-space: nowrap;
}



/* Scroll-triggered animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced gradient text animations */
span[style*="background: linear-gradient"] {
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

a {
  color: white;
  text-decoration: none;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Floating Particles */
.floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: float-up 15s infinite linear;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.particle:nth-child(1) {
  left: 10%;
  width: 4px;
  height: 4px;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  left: 20%;
  width: 6px;
  height: 6px;
  animation-delay: 2s;
}

.particle:nth-child(3) {
  left: 30%;
  width: 3px;
  height: 3px;
  animation-delay: 4s;
}

.particle:nth-child(4) {
  left: 40%;
  width: 5px;
  height: 5px;
  animation-delay: 6s;
}

.particle:nth-child(5) {
  left: 50%;
  width: 4px;
  height: 4px;
  animation-delay: 8s;
}

.particle:nth-child(6) {
  left: 60%;
  width: 7px;
  height: 7px;
  animation-delay: 10s;
}

.particle:nth-child(7) {
  left: 70%;
  width: 3px;
  height: 3px;
  animation-delay: 12s;
}

.particle:nth-child(8) {
  left: 80%;
  width: 5px;
  height: 5px;
  animation-delay: 14s;
}

.particle:nth-child(9) {
  left: 90%;
  width: 4px;
  height: 4px;
  animation-delay: 1s;
}

/* Image Styling */
.image-col {
  position: relative;
  z-index: 3;
  text-align: center;
}

.data-policy-section img {
  max-width: 100%;
  height: auto;
  animation: slideInRight 1.2s ease-out 0.4s both, floatImage 6s ease-in-out infinite;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.3));
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.data-policy-section img:hover {
  transform: scale(1.05) rotate(2deg);
}

/* Decorative Elements */
.glow-orb {
  position: absolute;
  width: clamp(80px, 15vw, 150px);
  height: clamp(80px, 15vw, 150px);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
  border-radius: 50%;
  top: 20%;
  right: 10%;
  animation: pulse 4s ease-in-out infinite;
  z-index: 1;
}

.glow-orb:nth-child(2) {
  width: clamp(60px, 12vw, 100px);
  height: clamp(60px, 12vw, 100px);
  top: 70%;
  left: 15%;
  animation-delay: 2s;
}

/* Enhanced Banner Images */
.banner-wrapper img {
  transition: all 0.4s ease;
  filter: brightness(1.05) contrast(1.1);
  border-radius: clamp(15px, 3vw, 30px);
}

.banner-wrapper img:hover {
  transform: scale(1.02);
  filter: brightness(1.1) contrast(1.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes pulseOverlay {

  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes float-up {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes floatImage {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* Animated Background Elements */
.data-policy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(74, 144, 226, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 50% 0%, rgba(129, 230, 217, 0.1) 0%, transparent 60%);
  animation: pulseOverlay 8s ease-in-out infinite;
}

.data-policy-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.terms-section div[style*="background:#0d163e"] {
  border-radius: 25px;
  background: #0d163e !important;
  border: 2px solid rgba(255, 168, 2, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
}

.terms-section div[style*="background:#0d163e"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 168, 2, 0.08), transparent);
  transition: left 0.6s ease;
}

.terms-section div[style*="background:#0d163e"]:hover::before {
  left: 100%;
}

.terms-section div[style*="background:#0d163e"]:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 95, 21, 0.2);
  border-color: rgba(255, 168, 2, 0.3);
}


/* policy secction */


.policy-card {
  border-radius: clamp(15px, 3vw, 25px);
  background: #0d163e !important;
  border: 2px solid rgba(255, 168, 2, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
  padding: clamp(12px, 3vw, 24px);
  margin-bottom: clamp(30px, 6vw, 70px);
  display: flex;
  align-items: center;
  gap: clamp(10px, 3vw, 20px);
  flex-direction: row;
}

/* Mobile First Approach */
@media (max-width: 768px) {
  .policy-card {
    flex-direction: column;
    text-align: center;
    padding: clamp(15px, 4vw, 20px);
    gap: clamp(15px, 4vw, 25px);
  }

  .policy-card.reverse-mobile {
    flex-direction: column;
  }
}

/* Tablet Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .policy-card {
    gap: clamp(15px, 2.5vw, 20px);
    padding: clamp(18px, 3.5vw, 22px);
  }
}

/* Animation Effects */
.policy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 168, 2, 0.08), transparent);
  transition: left 0.6s ease;
}

.policy-card:hover::before {
  left: 100%;
}

.policy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 95, 21, 0.2);
  border-color: rgba(255, 168, 2, 0.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Icon Container - RESPONSIVE */
.icon-container {
  border: 3px solid orange;
  border-radius: clamp(15px, 3vw, 25px);
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(8px, 2vw, 12px);
}

.icon-container img {
  height: clamp(80px, 15vw, 200px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Content Container - RESPONSIVE */
.content-container {
  flex: 1;
  min-width: 0;
  /* Prevents flex item from overflowing */
}

/* Typography - FULLY RESPONSIVE */
.policy-title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(18px, 4.5vw, 35px) !important;
  font-family: 'Source Sans Pro', sans-serif;
  line-height: clamp(24px, 5.5vw, 42px) !important;
  letter-spacing: clamp(-0.5px, -0.2vw, -1.2px);
  text-align: center;
  background: linear-gradient(90deg, #ff5f15 0%, #ffa802 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: clamp(10px, 2vw, 15px);
}

.policy-text {
  text-align: justify;
  font-size: clamp(14px, 3vw, 22px) !important;
  line-height: clamp(20px, 4vw, 32px);
  margin-bottom: clamp(8px, 2vw, 15px);
}

/* Table Styles - FULLY RESPONSIVE */
.policy-table {
  width: 100%;
  font-size: clamp(14px, 3vw, 22px) !important;
  background-color: transparent;
  border-collapse: collapse;
  margin-top: clamp(8px, 2vw, 15px);
}

.policy-table td {
  padding: clamp(6px, 1.5vw, 8px) !important;
  vertical-align: top;
  /* word-break: break-word; */
}

.policy-table .star-cell {
  width: clamp(25px, 5vw, 30px);
  text-align: center;
}

.policy-table .colon-cell {
  width: clamp(15px, 3vw, 20px);
  text-align: center;
  padding: clamp(6px, 1.5vw, 8px) clamp(10px, 2vw, 20px) clamp(6px, 1.5vw, 8px) clamp(6px, 1.5vw, 8px) !important;
}

.policy-table .content-cell {
  text-align: justify;
}

.policy-table strong {
  font-size: clamp(13px, 2.8vw, 20px);
  font-weight: 700;
  font-family: 'Source Sans Pro', sans-serif;
  background: linear-gradient(90deg, #ff5f15 0%, #ffa802 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-transform: uppercase;
}

.star-icon {
  color: darkorange;
  font-size: clamp(16px, 3vw, 20px);
}

/* Special Mobile Adjustments */
@media (max-width: 480px) {
  .policy-card {
    margin-bottom: clamp(25px, 8vw, 50px);
    border-radius: 15px;
  }

  .policy-title {
    font-size: clamp(16px, 5vw, 24px) !important;
    line-height: clamp(22px, 6vw, 30px) !important;
  }

  .policy-text {
    font-size: clamp(13px, 3.5vw, 18px) !important;
    text-align: left;
  }

  .policy-table {
    font-size: clamp(13px, 3.5vw, 18px) !important;
  }

  .policy-table strong {
    font-size: clamp(12px, 3.2vw, 16px);
  }

  .icon-container {
    border-radius: 15px;
  }

  .icon-container img {
    height: clamp(60px, 20vw, 120px);
  }
}

/* Extra Large Screens */
@media (min-width: 1400px) {
  .policy-section {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding-top: 4rem;
  }
}

/* Banner Section - RESPONSIVE */
.banner-wrapper {
  margin: clamp(20px, 4vw, 40px) 0;
}

.banner-wrapper img {
  width: 100%;
  height: auto;
  border-radius: clamp(15px, 3vw, 30px);
  object-fit: cover;
}

/* Utility Classes */
.text-center {
  text-align: center !important;
}

/* .no-break {
  white-space: nowrap;
} */

/* Fix for long words in table cells */
/* .policy-table td {
  word-wrap: break-word;
  overflow-wrap: break-word;
} */

/* Ensure proper spacing on all devices */
.policy-section>div:last-child {
  margin-bottom: 0;
}























.partners-section {
  position: relative;
  background: linear-gradient(135deg, #0d163e 0%, #1a2556 50%, #0d163e 100%);
  min-height: 100vh;
  padding: 0;
}

.top-border {
  height: 6px;
  background: linear-gradient(90deg, #FF5F15 0%, #FFA802 100%);
}

/* Split Layout */
.main-content {
  display: flex;
  min-height: calc(100vh - 6px);
}

/* Left Side - Content */
.left-content {
  flex: 1;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  position: relative;
  background: linear-gradient(45deg, rgba(255, 95, 21, 0.05) 0%, transparent 50%);
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-width: 100%;
  margin-bottom: 60px;
}

.highlight-text {
  font-size: 18px;
  color: #FF5F15;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 25px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 95, 21, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  flex: 1;
  margin-left: 2rem;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: #FF5F15;
  box-shadow: 0 10px 30px rgba(255, 95, 21, 0.3);
}

.stat-number {
  font-size: 40px;
  font-weight: 700;
  background: linear-gradient(90deg, #FF5F15 0%, #FFA802 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Right Side - Partners Grid */
.right-content {
  flex: 1;
  padding: 80px 40px;
  position: relative;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}

.partners-header {
  text-align: center;
  margin-bottom: 50px;
}

.partners-title {
  font-size: 32px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.partners-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

/* Partner Cards Grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.partner-card {
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 95, 21, 0.1), transparent);
  transition: left 0.6s ease;
}

.partner-card:hover {
  transform: translateY(-8px) scale(1.05);
}

.partner-logo {
  max-width: 100%;
  width: auto;
  height: 150px;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: filter 0.3s ease;
}

/* Hero Image Integration */
.hero-integration {
  position: relative;
  bottom: 40px;
  left: 0px;
  right: 40px;
  height: 500px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 95, 21, 0.4);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 1;
}

/* Stat cards inside hero */
.hero-integration .stat-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  padding: 30px 35px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid rgba(255, 95, 21, 0.35);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  width: 190px;
  margin-left: 0;
}

/* Left side stat cards */
.hero-integration .stat-card.card-1 {
  top: 0%;
  left: 4%;
}

.hero-integration .stat-card.card-2 {
  bottom: 10%;
  left: 4%;
}

/* Right side stat cards */
.hero-integration .stat-card.card-3 {
  top: 0%;
  right: 4%;
}

.hero-integration .stat-card.card-4 {
  bottom: 10%;
  right: 4%;
}

.hero-integration .stat-card:hover {
  transform: translateY(-5px);
  border-color: #FF5F15;
  box-shadow: 0 10px 30px rgba(255, 95, 21, 0.3);
}

.hero-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.overlay-text {
  color: white;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Decorative Elements */
.decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(255, 95, 21, 0.1), rgba(255, 168, 2, 0.05));
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 150px;
  height: 150px;
  top: 10%;
  right: 15%;
  animation-delay: 0s;
}

.shape-2 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 10%;
  animation-delay: 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .left-content {
    padding: 60px 40px;
  }

  .hero-integration {
    height: 400px;
  }

  .hero-integration .stat-card {
    width: 160px;
    padding: 25px 20px;
  }
}

@media (max-width: 1024px) {
  .main-content {
    flex-direction: column;
  }

  .left-content,
  .right-content {
    flex: none;
    padding: 60px 40px;
  }

  .section-title {
    font-size: 36px;
  }

  .hero-integration {
    position: static;
    margin-top: 40px;
    height: 300px;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .hero-integration .stat-card {
    width: 140px;
    padding: 20px 15px;
  }

  .stat-number {
    font-size: 32px;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
  }

  .partner-logo {
    height: 120px;
  }
}

@media (max-width: 768px) {

  .left-content,
  .right-content {
    padding: 40px 20px;
  }

  .section-title {
    font-size: 28px;
    letter-spacing: -1px;
  }

  .section-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .highlight-text {
    font-size: 16px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .partner-logo {
    height: 100px;
  }

  .hero-integration {
    height: 250px;
    border-radius: 20px;
  }

  .hero-integration .stat-card {
    width: 120px;
    padding: 15px 10px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 12px;
  }

  .overlay-text {
    font-size: 18px;
  }
}

@media (max-width: 600px) {

  .hero-integration .stat-card.card-1,
  .hero-integration .stat-card.card-3 {
    top: 10px;
  }

  .hero-integration .stat-card.card-2,
  .hero-integration .stat-card.card-4 {
    bottom: 60px;
  }

  .hero-integration .stat-card.card-1 {
    left: 10px;
  }

  .hero-integration .stat-card.card-3 {
    right: 10px;
  }

  .hero-integration .stat-card.card-2 {
    left: 10px;
  }

  .hero-integration .stat-card.card-4 {
    right: 10px;
  }
}

@media (max-width: 480px) {

  .left-content,
  .right-content {
    padding: 30px 15px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .partner-logo {
    height: auto;
  }

  .hero-integration {
    height: 200px;
    margin-top: 20px;
    border-radius: 15px;
  }

  /* Hide stat cards on mobile for cleaner look */
  .hero-integration .stat-card {
    display: none;
  }

  .overlay-text {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .floating-shape {
    display: none;
  }
}

@media (max-width: 360px) {

  .left-content,
  .right-content {
    padding: 20px 10px;
  }

  .section-title {
    font-size: 22px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .highlight-text {
    font-size: 14px;
  }

  .hero-integration {
    height: 180px;
  }

  .overlay-text {
    font-size: 14px;
  }
}