:root {
  --primary: #ff5733;
  --secondary: #33ff57;
  --accent1: #3357ff;
  --accent2: #f033ff;
  --accent3: #ff33a1;
  --accent4: #33fff6;
  --accent5: #f6ff33;
  --dark-bg: #0a0a1a;
  --white: #ffffff;
  --gray-light: #f5f5f7;
  --neon-glow: 0 0 15px rgba(57, 255, 20, 0.5);
  --primary-rgb: 255, 87, 51;
  --secondary-rgb: 51, 255, 87;
  --accent1-rgb: 51, 87, 255;
  --accent2-rgb: 240, 51, 255;
  --accent3-rgb: 255, 51, 161;
  --accent4-rgb: 51, 255, 246;
  --accent5-rgb: 246, 255, 51;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--dark-bg);
  color: var(--white);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header Styles */

header {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 26, 0.98) !important;
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(45deg, var(--primary), var(--accent4));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  max-height: 78px;
  width: auto;
}

.logo i {
  margin-right: 8px;
  font-size: 2rem;
  animation: spin 10s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.mobile-menu-overlay {
  display: none !important;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--secondary);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--secondary), var(--accent4));
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
  color: var(--secondary);
}

/* Enhanced Hero Section with Advanced Animations */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a2e 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%,
      rgba(var(--primary-rgb), 0.15) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 20%,
      rgba(var(--accent1-rgb), 0.15) 0%,
      transparent 50%),
    radial-gradient(circle at 40% 40%,
      rgba(var(--accent2-rgb), 0.1) 0%,
      transparent 50%);
  animation: pulse 15s ease-in-out infinite alternate;
}

@keyframes pulse {
  0% {
    opacity: 0.3;
  }

  100% {
    opacity: 0.7;
  }
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(45deg,
      transparent 30%,
      rgba(51, 255, 87, 0.1) 50%,
      transparent 70%),
    linear-gradient(-45deg,
      transparent 30%,
      rgba(51, 87, 255, 0.1) 50%,
      transparent 70%);
  background-size: 400% 400%;
  animation: movingGrid 8s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes movingGrid {

  0%,
  100% {
    background-position: 0% 0%;
  }

  50% {
    background-position: 100% 100%;
  }
}

.hero-content {
  max-width: 600px;
  z-index: 2;
  position: relative;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--white), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
  animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 10px rgba(51, 255, 87, 0.3);
  }

  100% {
    text-shadow:
      0 0 20px rgba(51, 255, 87, 0.6),
      0 0 30px rgba(51, 255, 87, 0.3);
  }
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--gray-light);
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn i {
  font-size: 1.2rem;
}

.btn-brand {
  background: linear-gradient(45deg, var(--accent2), var(--accent1));
  color: white;
  box-shadow: 0 0 20px rgba(240, 51, 255, 0.3);
}

.btn-brand:hover {
  transform: translateY(-5px);
  box-shadow:
    0 10px 25px rgba(240, 51, 255, 0.6),
    0 0 30px rgba(240, 51, 255, 0.3);
}

.btn-influencer {
  background: linear-gradient(45deg, var(--secondary), var(--accent4));
  color: white;
  box-shadow: 0 0 20px rgba(51, 255, 87, 0.3);
}

.btn-influencer:hover {
  transform: translateY(-5px);
  box-shadow:
    0 10px 25px rgba(51, 255, 87, 0.6),
    0 0 30px rgba(51, 255, 87, 0.3);
}

/* Advanced Floating Elements */
.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(40px);
}

.element-1 {
  width: 300px;
  height: 300px;
  background: var(--accent1);
  top: 10%;
  right: 10%;
  animation: float1 20s infinite ease-in-out;
}

.element-2 {
  width: 200px;
  height: 200px;
  background: var(--secondary);
  bottom: 20%;
  right: 20%;
  animation: float2 25s infinite ease-in-out;
}

.element-3 {
  width: 150px;
  height: 150px;
  background: var(--primary);
  top: 40%;
  left: 15%;
  animation: float3 30s infinite ease-in-out;
}

@keyframes float1 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(50px, -50px) rotate(120deg);
  }

  66% {
    transform: translate(-30px, 30px) rotate(240deg);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(-40px, 40px) rotate(90deg);
  }

  66% {
    transform: translate(60px, -30px) rotate(180deg);
  }
}

@keyframes float3 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(30px, 60px) rotate(60deg);
  }

  66% {
    transform: translate(-60px, -30px) rotate(120deg);
  }
}

/* Floating Geometric Shapes for Hero */
.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border: 2px solid;
  opacity: 0.1;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.shape-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border-color: var(--secondary);
  top: -150px;
  right: -150px;
  animation-name: rotateCircle;
}

.shape-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 150px 260px 150px;
  border-color: transparent transparent var(--accent1) transparent;
  bottom: -130px;
  left: -150px;
  animation-name: rotateTriangle;
}

.shape-square {
  width: 200px;
  height: 200px;
  border-color: var(--accent2);
  top: 50%;
  left: 10%;
  animation-name: rotateSquare;
}

.shape-hexagon {
  width: 180px;
  height: 180px;
  background: linear-gradient(45deg, var(--accent4), var(--accent1));
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  opacity: 0.05;
  bottom: 10%;
  right: 15%;
  animation-name: floatHexagon;
}

@keyframes rotateCircle {
  0% {
    transform: rotate(0deg) translate(0, 0);
  }

  25% {
    transform: rotate(90deg) translate(50px, -50px);
  }

  50% {
    transform: rotate(180deg) translate(0, -100px);
  }

  75% {
    transform: rotate(270deg) translate(-50px, -50px);
  }

  100% {
    transform: rotate(360deg) translate(0, 0);
  }
}

@keyframes rotateTriangle {
  0% {
    transform: rotate(0deg) translate(0, 0);
  }

  33% {
    transform: rotate(120deg) translate(100px, -50px);
  }

  66% {
    transform: rotate(240deg) translate(-100px, 50px);
  }

  100% {
    transform: rotate(360deg) translate(0, 0);
  }
}

@keyframes rotateSquare {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 0.1;
  }

  50% {
    transform: rotate(180deg) scale(1.2);
    opacity: 0.15;
  }

  100% {
    transform: rotate(360deg) scale(1);
    opacity: 0.1;
  }
}

@keyframes floatHexagon {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-40px) rotate(90deg);
  }

  50% {
    transform: translateY(0) rotate(180deg);
  }

  75% {
    transform: translateY(40px) rotate(270deg);
  }
}

.hero:hover .floating-shape {
  opacity: 0.2;
  animation-duration: 10s;
}

.hero:hover .shape-circle {
  border-width: 3px;
  border-color: var(--accent4);
}

.hero:hover .shape-triangle {
  border-bottom-color: var(--secondary);
}

.hero:hover .shape-square {
  border-width: 3px;
  border-color: var(--accent3);
}

.hero:hover .shape-hexagon {
  opacity: 0.1;
  background: linear-gradient(45deg, var(--accent2), var(--accent5));
}

/* Background Animation for All Sections */
section {
  padding: 5rem 5%;
  position: relative;
  overflow: hidden;
}

section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%,
      rgba(var(--primary-rgb), 0.05) 0%,
      transparent 25%),
    radial-gradient(circle at 90% 80%,
      rgba(var(--accent2-rgb), 0.05) 0%,
      transparent 25%),
    radial-gradient(circle at 50% 50%,
      rgba(var(--accent4-rgb), 0.03) 0%,
      transparent 20%);
  z-index: -1;
  animation: sectionBg 20s linear infinite;
}

@keyframes sectionBg {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--secondary), var(--accent4));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  animation: titleGlow 4s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% {
    text-shadow: 0 0 15px rgba(51, 255, 87, 0.3);
  }

  100% {
    text-shadow: 0 0 25px rgba(51, 255, 246, 0.5);
  }
}

.section-title p {
  color: var(--gray-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease;
  animation: imageFloat 6s ease-in-out infinite;
}

@keyframes imageFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  background: linear-gradient(45deg, var(--secondary), var(--accent1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-text p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--gray-light);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(51, 87, 255, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(51, 255, 87, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(51, 255, 87, 0.1);
  border-color: var(--secondary);
  box-shadow: 0 0 20px rgba(51, 255, 87, 0.3);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--secondary), var(--accent1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}

.stat-label {
  color: var(--gray-light);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Fix Awards and Influencers sections to be full width */
#clients,
#awards,
#influencers {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

#clients .section-title,
#awards .section-title,
#influencers .section-title {
  padding: 0 5%;
}

/* Clients Section */
#clients {
  background: rgba(240, 51, 255, 0.05);
  /*border-radius: 30px;*/
  /*margin: 4rem 5%;*/
  padding: 4rem;
}

.clients-slider {
  padding: 2rem 0;
  position: relative;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.client-logo {
  background: rgba(255, 255, 255, 0.05);
  padding: 4rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* gap: rem; */
}

.client-logo:hover {
  transform: translateY(-10px);
  background: rgba(51, 255, 87, 0.1);
  border-color: var(--secondary);
  box-shadow: 0 0 20px rgba(51, 255, 87, 0.3);
}

.client-logo i {
  font-size: 3rem;
  background: linear-gradient(45deg, var(--secondary), var(--accent1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

.client-logo h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.client-logo p {
  color: var(--gray-light);
  font-size: 0.9rem;
}

.client-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  text-align: center;
  padding: 0 5%;
}

.client-stat {
  padding: 1.5rem;
}

.stat-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--accent2), var(--accent1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  font-weight: bold;
  box-shadow: 0 0 20px rgba(240, 51, 255, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.client-stat h4 {
  font-size: 1.2rem;
  color: var(--white);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  background: rgba(51, 87, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(51, 255, 87, 0.3);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow:
    0 15px 30px rgba(51, 255, 87, 0.2),
    0 0 20px rgba(51, 255, 87, 0.3);
  border-color: var(--secondary);
}

.member-img {
  height: 250px;
  width: 100%;
  background: linear-gradient(45deg, var(--accent2), var(--accent1));
  position: relative;
  overflow: hidden;
}

.member-img i {
  font-size: 5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.1);
}

.member-info {
  padding: 1.5rem;
}

.member-info h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.member-info p {
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.member-social {
  display: flex;
  gap: 0.8rem;
}

.member-social a {
  color: var(--gray-light);
  font-size: 1.2rem;
  transition: color 0.3s;
}

.member-social a:hover {
  color: var(--secondary);
}

/* Services Section - CENTERED LOGOS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(51, 87, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(51, 255, 87, 0.3);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary);
  box-shadow:
    0 15px 30px rgba(51, 255, 87, 0.2),
    0 0 20px rgba(51, 255, 87, 0.3);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, var(--secondary), var(--accent1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background: rgba(51, 255, 87, 0.1);
  animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.service-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.service-card p {
  color: var(--gray-light);
  line-height: 1.6;
  text-align: center;
}

/* Awards Section */
#awards {
  background: rgba(51, 255, 87, 0.05);
  /*border-radius: 30px;*/
  /*margin: 4rem 5%;*/
  padding: 4rem;
}

.awards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 0 5%;
}

.award-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.award-card:hover {
  transform: translateY(-5px);
  background: rgba(240, 51, 255, 0.1);
  border-color: var(--accent2);
  box-shadow: 0 0 20px rgba(240, 51, 255, 0.3);
}

.award-icon {
  font-size: 2.5rem;
  background: linear-gradient(45deg, var(--secondary), var(--accent1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  flex-shrink: 0;
}

.award-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.award-content p {
  color: var(--gray-light);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.award-year {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(255, 87, 51, 0.2);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* FIXED Achievement Stats */
.achievement-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  margin-top: 3rem;
  padding: 0 5%;
}

.achievement {
  padding: 1.5rem;
  background: rgba(51, 87, 255, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(51, 255, 87, 0.3);
  transition: all 0.3s ease;
}

.achievement:hover {
  transform: translateY(-5px);
  background: rgba(51, 255, 87, 0.1);
  box-shadow: 0 0 20px rgba(51, 255, 87, 0.3);
}

.achievement-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--secondary), var(--accent1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}

.achievement-text {
  color: var(--gray-light);
  font-size: 1rem;
  text-align: center;
}

/* FIXED Influencers Section */
.influencer-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0 5%;
}

.influencer-card {
  background: rgba(51, 87, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(51, 255, 87, 0.3);
}

.influencer-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 15px 30px rgba(255, 87, 51, 0.2),
    0 0 20px rgba(255, 87, 51, 0.3);
  border-color: var(--primary);
}

.influencer-header {
  padding: 1.5rem;
  background: linear-gradient(45deg, var(--accent2), var(--accent1));
  display: flex;
  align-items: center;
  gap: 1rem;
}

.influencer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--secondary), var(--accent1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.influencer-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.influencer-info p {
  color: var(--gray-light);
  font-size: 0.9rem;
}

.influencer-stats {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-light);
  margin-top: 0.3rem;
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
  background: linear-gradient(45deg, var(--secondary), var(--accent1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  width: 40px;
}

.contact-details h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-details p {
  color: var(--gray-light);
}

.contact-form {
  background: rgba(51, 87, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(51, 255, 87, 0.3);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gray-light);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(51, 255, 87, 0.5);
  background: rgba(10, 10, 26, 0.7);
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 15px rgba(51, 255, 87, 0.3);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2333FF57' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

.btn-primary {
  background: linear-gradient(45deg, var(--accent1), var(--secondary));
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(51, 87, 255, 0.3);
}

/* Footer */
footer {
  background: rgba(240, 51, 255, 0.1);
  padding: 3rem 5% 1.5rem;
  margin-top: 5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--secondary);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(51, 255, 87, 0.1);
  color: var(--white);
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(51, 255, 87, 0.3);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(51, 255, 87, 0.2);
  color: var(--gray-light);
  font-size: 0.9rem;
}

/* Advanced Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  color: var(--secondary) !important;
  background: rgba(51, 255, 87, 0.1);
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.2rem !important;
}

.swiper-pagination-bullet {
  background: var(--secondary) !important;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  box-shadow: 0 0 10px rgba(51, 255, 87, 0.5);
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
  .influencer-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {

  .about-content,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .client-stats,
  .achievement-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .awards-container {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }

  body.menu-open {
    overflow: hidden;
  }

  header {
    padding: 0.75rem 1rem !important;
    margin: 0;
    width: 100% !important;
  }

  .logo {
    font-size: 1.5rem;
  }

  .logo img {
    max-height: 45px;
  }

  nav {
    width: auto !important;
    position: static !important;
  }

  .nav-links {
    display: none !important;
  }

  .mobile-menu-overlay {
    position: fixed !important;
    top: 60px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(10, 10, 26, 0.99);
    display: none !important;
    flex-direction: column;
    z-index: 999 !important;
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--secondary);
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }

  .mobile-menu-overlay.active {
    display: flex !important;
  }

  .mobile-menu-overlay a {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(51, 255, 87, 0.1);
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
  }

  .mobile-menu-overlay a:hover {
    color: var(--secondary);
    background: rgba(51, 255, 87, 0.1);
  }

  .mobile-menu-overlay a:last-child {
    border-bottom: none;
  }

  .mobile-menu-btn {
    display: block !important;
    z-index: 1001;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .influencer-showcase {
    grid-template-columns: 1fr;
  }

  .achievement-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  #clients,
  #awards {
    margin: 2rem;
    padding: 2rem;
  }

  .client-logo {
    padding: 2rem;
    min-height: 80px;
  }

  .client-logo i {
    font-size: 2.5rem;
  }

  .client-logo h4 {
    font-size: 1rem;
  }

  .client-logo p {
    font-size: 0.8rem;
  }

  .clients-slider {
    padding: 1rem 0;
  }

  .client-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0 2rem;
  }
}

@media (max-width: 480px) {
  body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }

  body.menu-open {
    overflow: hidden;
  }

  header {
    padding: 0.5rem 1rem;
    margin: 0;
    width: 100%;
    left: 0;
    box-sizing: border-box;
  }

  body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  section {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  #clients,
  #awards,
  #influencer-gallery,
  #why-choose,
  #image-content-section,
  #video-content-section,
  #contact {
    margin: 1rem 0 !important;
    padding: 1.5rem !important;
  }

  .section-title {
    padding: 0 1rem !important;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo img {
    max-height: 40px;
  }

  nav {
    width: auto !important;
    position: static !important;
  }

  .nav-links {
    display: none !important;
  }

  .mobile-menu-overlay {
    position: fixed !important;
    top: 55px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(10, 10, 26, 0.99);
    display: none !important;
    flex-direction: column;
    z-index: 999 !important;
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--secondary);
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }

  .mobile-menu-overlay.active {
    display: flex !important;
  }

  .mobile-menu-overlay a {
    padding: 1rem;
    border-bottom: 1px solid rgba(51, 255, 87, 0.1);
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
  }

  .mobile-menu-overlay a:hover {
    color: var(--secondary);
    background: rgba(51, 255, 87, 0.1);
  }

  .mobile-menu-overlay a:last-child {
    border-bottom: none;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .stats,
  .client-stats,
  .achievement-stats {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .awards-container,
  .services-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .client-logo {
    padding: 1.5rem;
    min-height: 70px;
  }

  .client-logo i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .client-logo h4 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
  }

  .client-logo p {
    font-size: 0.75rem;
  }

  .client-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }

  .stat-circle {
    width: 100px;
    height: 100px;
  }

  .stat-circle span {
    font-size: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* custom css start */
a#btn {
  padding-right: 15px;
  padding-left: 15px;
  text-decoration: none;
}

a#btn:hover {
  color: #f5f5f7;
}

/* Influencer Gallery Styles */
#influencer-gallery {
  padding: 4rem 0;
  background: rgba(51, 255, 87, 0.05);
  position: relative;
  overflow: hidden;
}

#influencer-gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%,
      rgba(255, 87, 51, 0.1) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 70%,
      rgba(51, 87, 255, 0.1) 0%,
      transparent 50%);
  animation: pulseBackground 10s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes pulseBackground {
  0% {
    opacity: 0.3;
  }

  100% {
    opacity: 0.7;
  }
}

.gallery-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 2rem 0;
}

.gallery-track {
  display: flex;
  gap: 1.5rem;
  width: calc(7 * 280px + 6 * 1.5rem);
  animation: scrollGallery 30s linear infinite;
  padding: 0 1rem;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.gallery-item {
  flex: 0 0 280px;
  height: 380px;
  perspective: 1000px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.5),
    0 0 25px rgba(51, 255, 87, 0.3);
  transform-style: preserve-3d;
  animation: floatItem 6s ease-in-out infinite;
  animation-delay: calc(var(--item-index) * 0.5s);
  border: 2px solid rgba(51, 255, 87, 0.3);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scrollGallery {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-280px * 3.5 - 1.5rem * 3));
  }
}

@keyframes floatItem {

  0%,
  100% {
    transform: translateY(0) rotateX(0) rotateY(0);
    box-shadow:
      0 15px 35px rgba(0, 0, 0, 0.5),
      0 0 25px rgba(51, 255, 87, 0.3);
  }

  50% {
    transform: translateY(-20px) rotateX(5deg) rotateY(5deg);
    box-shadow:
      0 25px 50px rgba(0, 0, 0, 0.6),
      0 0 35px rgba(51, 255, 87, 0.5);
  }
}

.gallery-item:nth-child(1) {
  --item-index: 1;
}

.gallery-item:nth-child(2) {
  --item-index: 2;
}

.gallery-item:nth-child(3) {
  --item-index: 3;
}

.gallery-item:nth-child(4) {
  --item-index: 4;
}

.gallery-item:nth-child(5) {
  --item-index: 5;
}

.gallery-item:nth-child(6) {
  --item-index: 6;
}

.gallery-item:nth-child(7) {
  --item-index: 7;
}

.gallery-item:hover {
  animation-play-state: paused;
  transform: translateY(-25px) scale(1.05) rotateX(10deg) rotateY(10deg);
  z-index: 10;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.7),
    0 0 50px rgba(51, 255, 87, 0.7),
    0 0 80px rgba(240, 51, 255, 0.5);
  border-color: rgba(51, 255, 87, 0.8);
}

.image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  filter: brightness(0.9);
}

.gallery-item:hover .image-wrapper img {
  transform: scale(1.15) rotate(2deg);
  filter: brightness(1.1);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 1.5rem;
  background: linear-gradient(to top,
      rgba(10, 10, 26, 0.95) 0%,
      rgba(10, 10, 26, 0.7) 50%,
      transparent 100%);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .image-overlay {
  transform: translateY(0);
  opacity: 1;
}

.image-overlay h4 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, var(--secondary), var(--accent4));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 10px rgba(51, 255, 87, 0.3);
}

.image-overlay p {
  color: var(--gray-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.followers {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(51, 255, 87, 0.2);
  color: var(--secondary);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(51, 255, 87, 0.5);
}

/* Gallery Controls */
.gallery-controls {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.gallery-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(51, 87, 255, 0.2);
  border: 2px solid rgba(51, 255, 87, 0.5);
  color: var(--secondary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gallery-btn:hover {
  background: rgba(51, 255, 87, 0.3);
  transform: scale(1.1) rotate(15deg);
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(51, 255, 87, 0.5);
}

.gallery-btn:active {
  transform: scale(0.95) rotate(0deg);
}

.gallery-indicators {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(51, 255, 87, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.indicator.active {
  background: var(--secondary);
  box-shadow: 0 0 15px rgba(51, 255, 87, 0.7);
  transform: scale(1.3);
}

.indicator::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.indicator.active::after {
  border-color: var(--secondary);
  animation: pulseIndicator 2s infinite;
}

@keyframes pulseIndicator {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

/* Pause animation on hover for gallery container */
.gallery-container:hover .gallery-track {
  animation-play-state: paused;
}

/* Responsive adjustments for the gallery */
@media (max-width: 1200px) {
  .gallery-track {
    width: calc(5 * 280px + 4 * 1.5rem);
  }

  @keyframes scrollGallery {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-280px * 2.5 - 1.5rem * 2));
    }
  }
}

@media (max-width: 768px) {
  .gallery-track {
    width: calc(3 * 280px + 2 * 1.5rem);
  }

  @keyframes scrollGallery {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-280px * 1.5 - 1.5rem * 1));
    }
  }

  .gallery-item {
    flex: 0 0 250px;
    height: 350px;
  }
}

@media (max-width: 480px) {
  .gallery-track {
    width: calc(2 * 250px + 1 * 1.5rem);
  }

  @keyframes scrollGallery {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-250px * 1 - 1.5rem * 0.5));
    }
  }

  .gallery-item {
    flex: 0 0 220px;
    height: 320px;
  }
}

/* Add these styles to your existing style.css */

/* Enhanced 3D Floating Shapes for Entire Page */
.page-3d-shapes {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

/* 3D Shapes Styles */
.shape-3d {
  position: absolute;
  transform-style: preserve-3d;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  opacity: 0.1;
  filter: blur(1px);
}

/* Different 3D Shape Types */
.shape-star-3d {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, var(--accent1), var(--accent4));
  clip-path: polygon(50% 0%,
      61% 35%,
      98% 35%,
      68% 57%,
      79% 91%,
      50% 70%,
      21% 91%,
      32% 57%,
      2% 35%,
      39% 35%);
  animation: starFloat3D 20s linear infinite;
}

.shape-circle-3d {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--accent2), transparent);
  border: 3px solid var(--accent2);
  animation: circleFloat3D 25s linear infinite;
}

.shape-square-3d {
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, var(--accent3), var(--accent5));
  transform: rotateX(45deg) rotateY(45deg);
  animation: squareFloat3D 30s linear infinite;
}

.shape-ring-3d {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 10px solid transparent;
  border-top-color: var(--secondary);
  border-right-color: var(--accent4);
  animation: ringSpin3D 15s linear infinite;
}

.shape-hexagon-3d {
  width: 180px;
  height: 180px;
  background: linear-gradient(45deg, var(--accent1), var(--accent3));
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  animation: hexagonFloat3D 35s linear infinite;
}

.shape-triangle-3d {
  width: 0;
  height: 0;
  border-left: 75px solid transparent;
  border-right: 75px solid transparent;
  border-bottom: 150px solid var(--accent2);
  opacity: 0.15;
  animation: triangleFloat3D 40s linear infinite;
}

.shape-pyramid-3d {
  width: 140px;
  height: 140px;
  background: conic-gradient(var(--accent1), var(--accent4), var(--accent2));
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation: pyramidFloat3D 45s linear infinite;
}

.shape-cube-3d {
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, var(--accent3), var(--accent5));
  transform: rotateX(60deg) rotateY(45deg);
  animation: cubeFloat3D 50s linear infinite;
}

/* 3D Animation Keyframes */
@keyframes starFloat3D {

  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }

  25% {
    transform: translate3d(100px, 50px, 100px) rotateX(90deg) rotateY(90deg) rotateZ(45deg);
  }

  50% {
    transform: translate3d(0, 100px, 200px) rotateX(180deg) rotateY(180deg) rotateZ(90deg);
  }

  75% {
    transform: translate3d(-100px, 50px, 100px) rotateX(270deg) rotateY(270deg) rotateZ(135deg);
  }
}

@keyframes circleFloat3D {

  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
    opacity: 0.1;
  }

  33% {
    transform: translate3d(150px, -80px, 150px) rotateX(120deg) rotateY(120deg);
    opacity: 0.2;
  }

  66% {
    transform: translate3d(-150px, 100px, 100px) rotateX(240deg) rotateY(240deg);
    opacity: 0.15;
  }
}

@keyframes squareFloat3D {
  0% {
    transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }

  25% {
    transform: translate3d(200px, 100px, 150px) rotateX(90deg) rotateY(180deg) rotateZ(45deg);
  }

  50% {
    transform: translate3d(-100px, 200px, 200px) rotateX(180deg) rotateY(360deg) rotateZ(90deg);
  }

  75% {
    transform: translate3d(-200px, -100px, 100px) rotateX(270deg) rotateY(540deg) rotateZ(135deg);
  }

  100% {
    transform: translate3d(0, 0, 0) rotateX(360deg) rotateY(720deg) rotateZ(180deg);
  }
}

@keyframes ringSpin3D {
  0% {
    transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    border-width: 10px;
  }

  50% {
    transform: translate3d(100px, 50px, 100px) rotateX(180deg) rotateY(180deg) rotateZ(180deg);
    border-width: 15px;
    opacity: 0.3;
  }

  100% {
    transform: translate3d(0, 0, 0) rotateX(360deg) rotateY(360deg) rotateZ(360deg);
    border-width: 10px;
  }
}

@keyframes hexagonFloat3D {

  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
    filter: hue-rotate(0deg);
  }

  33% {
    transform: translate3d(-200px, 150px, 200px) rotateX(120deg) rotateY(120deg);
    filter: hue-rotate(120deg);
  }

  66% {
    transform: translate3d(200px, -150px, 100px) rotateX(240deg) rotateY(240deg);
    filter: hue-rotate(240deg);
  }
}

@keyframes triangleFloat3D {
  0% {
    transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    opacity: 0.1;
  }

  50% {
    transform: translate3d(300px, 200px, 300px) rotateX(180deg) rotateY(180deg) rotateZ(180deg);
    opacity: 0.25;
    border-bottom-color: var(--accent4);
  }

  100% {
    transform: translate3d(0, 0, 0) rotateX(360deg) rotateY(360deg) rotateZ(360deg);
    opacity: 0.1;
  }
}

@keyframes pyramidFloat3D {
  0% {
    transform: translate3d(0, 0, 0) rotateX(45deg) rotateY(0deg);
  }

  25% {
    transform: translate3d(250px, 150px, 200px) rotateX(135deg) rotateY(90deg);
  }

  50% {
    transform: translate3d(-250px, 300px, 300px) rotateX(225deg) rotateY(180deg);
  }

  75% {
    transform: translate3d(-250px, -150px, 100px) rotateX(315deg) rotateY(270deg);
  }

  100% {
    transform: translate3d(0, 0, 0) rotateX(405deg) rotateY(360deg);
  }
}

@keyframes cubeFloat3D {
  0% {
    transform: translate3d(0, 0, 0) rotateX(45deg) rotateY(45deg);
    box-shadow:
      20px 20px 40px rgba(var(--accent3-rgb), 0.3),
      -20px -20px 40px rgba(var(--accent5-rgb), 0.3);
  }

  33% {
    transform: translate3d(300px, 200px, 400px) rotateX(165deg) rotateY(165deg);
    box-shadow:
      30px 30px 60px rgba(var(--accent3-rgb), 0.5),
      -30px -30px 60px rgba(var(--accent5-rgb), 0.5);
  }

  66% {
    transform: translate3d(-300px, -200px, 200px) rotateX(285deg) rotateY(285deg);
    box-shadow:
      40px 40px 80px rgba(var(--accent3-rgb), 0.7),
      -40px -40px 80px rgba(var(--accent5-rgb), 0.7);
  }

  100% {
    transform: translate3d(0, 0, 0) rotateX(405deg) rotateY(405deg);
    box-shadow:
      20px 20px 40px rgba(var(--accent3-rgb), 0.3),
      -20px -20px 40px rgba(var(--accent5-rgb), 0.3);
  }
}

/* Enhance hero section with more 3D effects */
.hero {
  perspective: 1000px;
}

.hero-content {
  transform-style: preserve-3d;
  animation: heroEntrance 1.5s ease-out;
}

@keyframes heroEntrance {
  0% {
    opacity: 0;
    transform: translateZ(-500px) rotateX(45deg);
  }

  100% {
    opacity: 1;
    transform: translateZ(0) rotateX(0);
  }
}

/* Add 3D effects to service cards */
.service-card {
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateZ(0);
}

.service-card:hover {
  transform: translateZ(50px) rotateX(5deg) rotateY(5deg);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(51, 255, 87, 0.4),
    0 0 200px rgba(240, 51, 255, 0.2);
}

/* 3D effect for team members */
.team-member {
  transform-style: preserve-3d;
  transform: translateZ(0);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-member:hover {
  transform: translateZ(30px) rotateY(10deg);
}

/* Enhanced section backgrounds with 3D parallax */
section {
  transform-style: preserve-3d;
}

section::before {
  transform: translateZ(-100px);
  animation: parallaxBg 20s linear infinite;
}

@keyframes parallaxBg {
  0% {
    transform: translateZ(-100px) rotate(0deg);
  }

  100% {
    transform: translateZ(-100px) rotate(360deg);
  }
}

/* Add to existing floating shapes in hero */
.floating-shapes {
  perspective: 2000px;
}

.floating-shape {
  transform-style: preserve-3d;
}

/* Interactive mouse follow effect */
.mouse-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--secondary), transparent 70%);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
  opacity: 0.5;
}

/* Add to existing CSS */
body:hover .mouse-follower {
  opacity: 0.7;
}

/* Responsive adjustments for 3D effects */
@media (max-width: 768px) {
  .shape-3d {
    transform: scale(0.7);
  }

  .page-3d-shapes {
    opacity: 0.5;
  }

  .service-card:hover {
    transform: translateZ(20px);
  }
}

/* Add this to the beginning of your style.css */
* {
  transform-style: preserve-3d;
}

/* Enhanced scrollbar with 3D effect */
::-webkit-scrollbar {
  width: 12px;
  background: rgba(10, 10, 26, 0.8);
}

::-webkit-scrollbar-track {
  background: linear-gradient(transparent, var(--dark-bg));
  border-radius: 10px;
  transform: translateZ(10px);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, var(--secondary), var(--accent4));
  border-radius: 10px;
  border: 3px solid var(--dark-bg);
  box-shadow: 0 0 10px rgba(51, 255, 87, 0.5);
  transform: translateZ(20px);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, var(--accent4), var(--secondary));
  box-shadow: 0 0 20px rgba(51, 255, 87, 0.8);
}

/* New: Why Choose Infinity Influencer Hub Section */
#why-choose {
  background: rgba(51, 87, 255, 0.05);
  border-radius: 30px;
  margin: 4rem 5%;
  padding: 4rem;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.why-choose-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(51, 255, 87, 0.3);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
}

.why-choose-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary);
  box-shadow: 0 0 30px rgba(51, 255, 87, 0.3);
  background: rgba(51, 255, 87, 0.1);
}

.why-choose-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(51, 255, 87, 0.1);
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
  background: rgba(51, 255, 87, 0.2);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(51, 255, 87, 0.3);
}

.why-choose-icon i {
  font-size: 2.5rem;
  background: linear-gradient(45deg, var(--secondary), var(--accent1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.why-choose-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.why-choose-card p {
  color: var(--gray-light);
  line-height: 1.6;
}

/* Enhanced Awards Section with Icons */
#awards {
  background: rgba(51, 255, 87, 0.05);
  /*border-radius: 30px;*/
  /*margin: 4rem 5%;*/
  padding: 4rem;
}

.awards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 0 5%;
}

.award-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.award-card:hover {
  transform: translateY(-5px);
  background: rgba(240, 51, 255, 0.1);
  border-color: var(--accent2);
  box-shadow: 0 0 20px rgba(240, 51, 255, 0.3);
}

.award-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(51, 255, 87, 0.1);
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.award-icon i {
  font-size: 2rem;
  background: linear-gradient(45deg, var(--secondary), var(--accent1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.award-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.award-content p {
  color: var(--gray-light);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.award-year {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(255, 87, 51, 0.2);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* New: Image Right, Content Left Section */
#image-content-section {
  padding: 5rem 5%;
}

.image-content-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.image-content-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, var(--secondary), var(--accent4));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.image-content-text p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--gray-light);
}

.features-list {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--gray-light);
}

.feature-item i {
  color: var(--secondary);
  margin-right: 1rem;
  font-size: 1.2rem;
}

.image-content-media img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: imageFloat 6s ease-in-out infinite;
}

@keyframes imageFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* New: Video Left, Content Right Section */
#video-content-section {
  background: rgba(51, 255, 87, 0.05);
  border-radius: 30px;
  margin: 4rem 5%;
  padding: 4rem;
}

.video-content-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.video-content-media {
  position: relative;
}

.video-wrapper {
  width: 100%;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(45deg, var(--accent2), var(--accent1));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-placeholder {
  text-align: center;
  color: white;
}

.video-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.video-content-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, var(--accent2), var(--accent1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.video-content-text p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--gray-light);
}

.success-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.success-stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(51, 87, 255, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(51, 255, 87, 0.3);
  transition: all 0.3s ease;
}

.success-stat:hover {
  transform: translateY(-5px);
  background: rgba(51, 255, 87, 0.1);
  border-color: var(--secondary);
  box-shadow: 0 0 20px rgba(51, 255, 87, 0.3);
}

.success-number {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--secondary), var(--accent1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}

.success-label {
  color: var(--gray-light);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Responsive adjustments for new sections */
@media (max-width: 1024px) {

  .image-content-container,
  .video-content-container {
    grid-template-columns: 1fr;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #why-choose,
  #awards,
  #video-content-section {
    margin: 2rem;
    padding: 2rem;
  }

  .awards-container {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .video-content-container {
    display: block;
  }

  .award-card {
    display: block;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .success-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-wrapper {
    height: auto;
  }

  .award-icon {
    width: 50px;
    height: 50px;
    margin-right: 1rem;
  }

  .award-icon i {
    font-size: 1.5rem;
  }

  .why-choose-icon {
    width: 70px;
    height: 70px;
  }

  .why-choose-icon i {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .success-stats {
    grid-template-columns: 1fr;
  }

  #why-choose,
  #awards,
  #video-content-section {
    margin: 1rem;
    padding: 1.5rem;
  }

  .awards-container {
    grid-template-columns: 1fr;
  }
}

/* Additional Styles for Icons in Awards Section */
.award-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(51, 255, 87, 0.1);
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.award-icon i {
  font-size: 2rem;
  background: linear-gradient(45deg, var(--secondary), var(--accent1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Sticky Header Enhancement */
#header {
  position: fixed !important;
  background: transparent !important;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px) !important;
  transition: all 0.3s ease;
}

/* New Why Choose Icons */
.why-choose-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(51, 255, 87, 0.1);
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
  background: rgba(51, 255, 87, 0.2);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(51, 255, 87, 0.3);
}

.why-choose-icon i {
  font-size: 2.5rem;
  background: linear-gradient(45deg, var(--secondary), var(--accent1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* New Influencer Form Styles */
:root {
  --primary: #ff5733;
  --secondary: #33ff57;
  --accent1: #3357ff;
  --accent2: #f033ff;
  --accent3: #ff33a1;
  --accent4: #33fff6;
  --accent5: #f6ff33;
  --dark-bg: #0a0a1a;
  --white: #ffffff;
  --gray-light: #f5f5f7;
  --neon-glow: 0 0 15px rgba(57, 255, 20, 0.5);
  --primary-rgb: 255, 87, 51;
  --secondary-rgb: 51, 255, 87;
  --accent1-rgb: 51, 87, 255;
  --accent2-rgb: 240, 51, 255;
  --accent3-rgb: 255, 51, 161;
  --accent4-rgb: 51, 255, 246;
  --accent5-rgb: 246, 255, 51;
}

#contact {
  background: rgba(51, 87, 255, 0.05);
  border-radius: 30px;
  margin: 4rem 5%;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 20%,
      rgba(var(--accent1-rgb), 0.1) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 80%,
      rgba(var(--accent2-rgb), 0.1) 0%,
      transparent 50%);
  z-index: -1;
}

#contact .container {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  max-width: 900px;
}

#contact h1.text-center {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 2.5rem;
  background: linear-gradient(45deg, var(--secondary), var(--accent4));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
  width: 100%;
}

#contact h1.text-center::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background: linear-gradient(to right, var(--secondary), var(--accent4));
  border-radius: 2px;
}

#contact h5 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1.5rem;
  color: var(--secondary);
  position: relative;
  padding-left: 15px;
}

#contact h5::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 70%;
  background: linear-gradient(to bottom, var(--secondary), var(--accent4));
  border-radius: 3px;
}

#contact .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

/* #contact .g-3 {
    gap: 1rem;
} */

#contact .mb-4 {
  margin-bottom: 2rem;
}

#contact .col-md-3,
#contact .col-md-6,
#contact .col-md-12 {
  padding-right: 15px;
  padding-left: 15px;
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  #contact .col-md-3 {
    width: 25%;
  }

  #contact .col-md-6 {
    width: 50%;
  }

  #contact .col-md-12 {
    width: 100%;
  }
}

#contact .form-control,
#contact .form-select {
  width: 100%;
  padding: 15px 20px;
  font-size: 1rem;
  background: rgba(10, 10, 26, 0.8);
  border: 1px solid rgba(51, 255, 87, 0.3);
  border-radius: 10px;
  color: var(--white);
  transition: all 0.3s ease;
  outline: none;
}

#contact .form-control::placeholder,
#contact .form-select option {
  color: rgba(255, 255, 255, 0.6);
}

#contact .form-control:focus,
#contact .form-select:focus {
  border-color: var(--secondary);
  box-shadow:
    0 0 0 3px rgba(51, 255, 87, 0.2),
    0 0 20px rgba(51, 255, 87, 0.3);
  transform: translateY(-2px);
}

#contact .form-control:hover,
#contact .form-select:hover {
  border-color: var(--accent4);
}

#contact textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

#contact label {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--gray-light);
  font-weight: 500;
}

#contact .form-check {
  margin-bottom: 0.8rem;
}

#contact .form-check-inline {
  display: inline-block;
  margin-right: 1.5rem;
}

#contact .form-check-input {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  position: relative;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: rgba(10, 10, 26, 0.8);
  border: 2px solid rgba(51, 255, 87, 0.5);
  border-radius: 4px;
  transition: all 0.3s ease;
}

#contact .form-check-input:checked {
  background: linear-gradient(45deg, var(--secondary), var(--accent4));
  border-color: var(--secondary);
  position: relative;
}

#contact .form-check-input:checked::after {
  content: "✓";
  position: absolute;
  color: var(--dark-bg);
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
}

#contact .form-check-label {
  color: var(--gray-light);
  cursor: pointer;
  transition: color 0.3s ease;
}

#contact .form-check:hover .form-check-label {
  color: var(--white);
}

#contact .form-check:hover .form-check-input {
  border-color: var(--accent4);
}

#contact .btn-success {
  background: linear-gradient(45deg, var(--secondary), var(--accent4));
  color: var(--dark-bg);
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 2rem auto 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#contact .btn-success::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: left 0.7s;
  z-index: -1;
}

#contact .btn-success:hover::before {
  left: 100%;
}

#contact .btn-success:hover {
  transform: translateY(-5px);
  box-shadow:
    0 10px 25px rgba(51, 255, 87, 0.4),
    0 0 30px rgba(51, 255, 87, 0.2);
}

#contact .btn-success:active {
  transform: translateY(-2px);
}

/* Floating animation for the form */
@keyframes floatForm {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

#contact {
  animation: floatForm 6s ease-in-out infinite;
}

/* Custom select arrow */
#contact .form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2333ff57' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
  padding-right: 45px;
}

/* Form section glow effect */
#contact::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg,
      var(--secondary),
      var(--accent4),
      var(--accent2),
      var(--accent1));
  border-radius: 32px;
  z-index: -2;
  opacity: 0.1;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  0% {
    filter: hue-rotate(0deg);
  }

  100% {
    filter: hue-rotate(360deg);
  }
}

/* Enhanced checkbox styling */
#contact .form-check-input {
  position: relative;
  width: 22px;
  height: 22px;
}

#contact .form-check-input:checked {
  animation: pulseCheck 0.3s ease;
}

@keyframes pulseCheck {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

/* Responsive adjustments for the form */
@media (max-width: 768px) {
  #contact h1.text-center {
    font-size: 2.2rem;
  }

  #contact .col-md-3,
  #contact .col-md-6,
  #contact .col-md-12 {
    width: 100%;
    margin-bottom: 1rem;
  }

  #contact .form-check-inline {
    display: block;
    margin-right: 0;
    margin-bottom: 0.5rem;
  }

  #contact {
    margin: 2rem;
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  #contact {
    margin: 1rem;
    padding: 1.5rem;
  }

  #contact h1.text-center {
    font-size: 1.8rem;
  }

  #contact h5 {
    font-size: 1.2rem;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .award-icon {
    width: 50px;
    height: 50px;
    margin-right: 1rem;
  }

  .award-icon i {
    font-size: 1.5rem;
  }

  .why-choose-icon {
    width: 70px;
    height: 70px;
  }

  .why-choose-icon i {
    font-size: 2rem;
  }
}
























/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  overflow-y: auto;
  animation: modalFadeIn 0.5s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-content {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a2e 100%);
  margin: 5% auto;
  padding: 30px;
  border-radius: 20px;
  width: 90%;
  max-width: 900px;
  position: relative;
  border: 1px solid rgba(51, 255, 87, 0.2);
  box-shadow:
    0 0 50px rgba(51, 255, 87, 0.2),
    0 0 100px rgba(51, 87, 255, 0.1);
  animation: modalSlideUp 0.5s ease;
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  position: absolute;
  right: 25px;
  top: 20px;
  font-size: 36px;
  cursor: pointer;
  color: var(--secondary);
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(51, 255, 87, 0.1);
}

.close-modal:hover {
  color: var(--primary);
  transform: rotate(90deg);
  background: rgba(255, 87, 51, 0.2);
}

.modal-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(51, 255, 87, 0.3);
}

.modal-header h2 {
  color: var(--secondary);
  font-size: 2.2rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.modal-subtitle {
  color: var(--gray-light);
  font-size: 1.1em;
  opacity: 0.9;
}

.modal-body {
  padding: 20px 0;
}

/* Benefit Cards */
.benefit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.benefit-card {
  background: rgba(51, 87, 255, 0.1);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(51, 255, 87, 0.1);
}

.benefit-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary);
  box-shadow: 0 10px 30px rgba(51, 255, 87, 0.2);
  background: rgba(51, 255, 87, 0.05);
}

.benefit-icon {
  font-size: 2.5em;
  color: var(--secondary);
  margin-bottom: 15px;
  background: rgba(51, 255, 87, 0.1);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 15px;
}

/* Statistics Section */
.statistics {
  background: linear-gradient(135deg, rgba(51, 87, 255, 0.2), rgba(240, 51, 255, 0.2));
  color: white;
  padding: 25px;
  border-radius: 15px;
  margin: 30px 0;
  border: 1px solid rgba(51, 255, 87, 0.3);
}

.statistics h4 {
  color: var(--secondary);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.statistics ul {
  list-style: none;
  padding-left: 0;
}

.statistics li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.statistics li:before {
  content: "✓";
  color: var(--secondary);
  font-weight: bold;
}

/* Stats Display */
.stats-display {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin: 30px 0;
  text-align: center;
}

.stat-item {
  background: rgba(51, 87, 255, 0.1);
  padding: 25px 20px;
  border-radius: 15px;
  border: 1px solid rgba(51, 255, 87, 0.3);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(51, 255, 87, 0.2);
  background: rgba(51, 255, 87, 0.15);
}

.stat-number {
  font-size: 2.5em;
  font-weight: bold;
  background: linear-gradient(45deg, var(--secondary), var(--accent4));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 5px;
  text-shadow: 0 0 20px rgba(51, 255, 87, 0.3);
}

.stat-label {
  color: var(--gray-light);
  font-size: 0.9em;
  font-weight: 500;
}

/* Consultation Form */
.consultation-form {
  background: rgba(10, 10, 26, 0.8);
  padding: 30px;
  border-radius: 15px;
  margin-top: 30px;
  border: 1px solid rgba(51, 255, 87, 0.3);
}

.consultation-form h3 {
  color: var(--secondary);
  margin-bottom: 10px;
}

.consultation-form p {
  color: var(--gray-light);
  margin-bottom: 25px;
}

.consultation-form .form-group {
  margin-bottom: 20px;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid rgba(51, 255, 87, 0.3);
  border-radius: 10px;
  background: rgba(10, 10, 26, 0.9);
  color: var(--white);
  font-size: 1em;
  transition: all 0.3s ease;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 15px rgba(51, 255, 87, 0.3);
}

/* Testimonial */
.testimonial {
  background: rgba(51, 87, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  border-left: 4px solid var(--secondary);
  margin: 20px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial p {
  font-style: italic;
  color: var(--gray-light);
  line-height: 1.6;
}

.testimonial-author {
  font-style: italic;
  color: var(--secondary);
  margin-top: 10px;
  font-size: 0.9em;
  text-align: right;
}

/* Campaign Highlights */
.campaign-highlights {
  background: linear-gradient(135deg, rgba(51, 255, 87, 0.1), rgba(51, 87, 255, 0.1));
  padding: 20px;
  border-radius: 15px;
  margin: 20px 0;
  border: 1px solid rgba(51, 255, 87, 0.3);
}

.campaign-highlights h4 {
  color: var(--secondary);
  margin-bottom: 15px;
}

.campaign-highlights ul {
  list-style: none;
  padding-left: 0;
}

.campaign-highlights li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(51, 255, 87, 0.2);
  color: var(--gray-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* CTA Actions */
.cta-actions {
  text-align: center;
  margin-top: 30px;
}

.cta-actions button {
  width: 100%;
  margin: 10px 0;
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 10% auto;
    padding: 20px;
  }

  .modal-header h2 {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 10px;
  }

  .benefit-cards {
    grid-template-columns: 1fr;
  }

  .stats-display {
    grid-template-columns: repeat(2, 1fr);
  }

  .consultation-form {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .modal-content {
    width: 98%;
    margin: 5% auto;
    padding: 15px;
  }

  .stats-display {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2em;
  }
}




.awards-image-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 60px;
}

.awards-image-section img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}
@media (max-width: 768px) {
    .awards-image-section {
        grid-template-columns: 1fr;
          margin: 40px 25px;
        
    }

    .awards-image-section img {
        height: 200px;
    }
}
