:root {
  --neon-blue: #00f0ff;
  --neon-pink: #ff00f0;
  --neon-purple: #b400ff;
  --dark-bg: #0a0a1a;
  --font-primary: 'Poppins', sans-serif;

  --h1-desktop: 3.5rem;
  --h2-desktop: 2.8rem;
  --h3-desktop: 2rem;
  --p-desktop: 1.1rem;
  --button-desktop: 1.1rem;

  --h1-mobile: 2rem;
  --h2-mobile: 1.8rem;
  --h3-mobile: 1.4rem;
  --p-mobile: 0.95rem;
  --button-mobile: 0.9rem;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  /* Prevent horizontal scroll */
  position: relative;
  /* For absolute positioned children */
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--dark-bg);
  color: white;
  font-family: var(--font-primary);
  overflow-x: hidden;

}

/* LED Grid Background */
.led-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.3) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Animations */
@keyframes floating {
  0% {
    transform: translateY(0) translateX(0);
  }

  100% {
    transform: translateY(-50px) translateX(30px);
  }
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 0.8;
  }

  90% {
    opacity: 0.8;
  }

  100% {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}

:root {
  --neon-blue: #00f0ff;
  --neon-pink: #ff00f0;
  --neon-purple: #9d00ff;
}

header {
  padding: 20px 5%;
  background-color: rgba(10, 10, 26, 0.8);
  backdrop-filter: blur(10px);
  position: relative;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.logo {
  flex: 1;
}

.logo img {
  height: 80px;
  width: auto;
}

.desktop-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.desktop-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  transition: all 0.3s;
}

.desktop-nav a:hover {
  color: var(--neon-blue);
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-blue);
  transition: width 0.3s;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.cta-button {
  background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
  border: none;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.8);
}


.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background: white;
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  background: rgba(10, 10, 26, 0.95);
  padding: 1rem 5%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav li {
  padding: 0.5rem 0;
}

.mobile-nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: var(--neon-blue);
}

/* Mobile styles */
@media (max-width: 768px) {
  .header-container {
    justify-content: space-between;
  }

  .logo {
    flex: 0;
  }

  .desktop-nav {
    display: none;
  }

  .header-right {
    flex: 0;
  }

  .cta-button {
    display: none;
  }

  .hamburger {
    display: block;
    margin-left: auto;
  }

  .mobile-nav.active {
    display: block;
  }

  /* Hamburger animation when active */
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 768px) {
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
  }

  .logo {
    flex: 0;
    display: flex;
    align-items: center;
  }

  .header-right {
    flex: 0;
    display: flex;
    align-items: center;
  }

  .cta-button {
    display: none;
  }

  .hamburger {
    display: block;
  }
}


/* Default: show desktop logo, hide mobile */
.logo-mobile {
  display: none;
}

.logo-desktop {
  display: block;
}

/* Mobile view: hide desktop logo, show mobile */
@media (max-width: 768px) {
  .logo-mobile {
    display: block;
    height: 60px;
    /* adjust as needed */
    width: auto;
  }

  .logo-desktop {
    display: none;
  }
}


/* Hero Section */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  background: #000000;
}

.hero-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 40px 20px;
}

.hero-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.title-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;

}

.hero-image {
  flex: 1;
  max-width: 500px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
  border: 1px solid rgba(0, 240, 255, 0.1);
  background-color: white;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 1rem;
}

/* Card Link (Ensures proper spacing and hover effects) */
.service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
}



/* Service Card Styling */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
  }

  .service-card-link {
    text-decoration: none;
    color: inherit;
  }

  .service-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s;
    background: #fff;
    text-align: center;
    max-width: 100%;
  }


  .service-image {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .service-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    display: block;
  }

  .service-card h3 {
    margin: 10px 0 5px;
    font-size: 1.2rem;
  }

  .service-features {
    padding: 0 10px 10px;
  }

  .service-highlight {
    font-size: 0.95rem;
    color: #555;
  }

/* Centered Button */
.enquire-btn {
  display: block;
  margin: 1rem auto;
  padding: 0.6rem 1.5rem;
  background: #0066cc;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
}

.enquire-btn:hover {
  background: #0052a3;
}

.title-content p {
  font-size: 0.95rem;    /* Slightly smaller on mobile */
  margin: 0;
  padding: 0;
  font-weight: 400;
  line-height: 1.4;

  @media (min-width: 768px) {
    font-size: 1rem;     /* Slightly larger on desktop */
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 20px 15px;
  }

  .hero-title {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }

  .hero-image {
    max-width: 100%;
    order: -1;
    /* Moves image before text in flex order */
    text-align: center;
    /* Center the image if needed */
  }


  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
}

.google-review {
  text-align: center;
  margin-bottom: 35px;
  padding: 15px 30px;
  background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
  border-radius: 50px;
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-text {
  color: #ffffff;
  position: relative;
  padding: 0 10px;
  font-weight: 500;
  font-size: 1.1rem !important;
  letter-spacing: 0.5px;
}

.dynamic-words {
  display: inline-block;
  position: relative;
  height: 1em;
  overflow: hidden;
}

@keyframes rotateWords {

  0%,
  18% {
    opacity: 0;
    transform: translateY(100%);
  }

  20%,
  38% {
    opacity: 1;
    transform: translateY(0);
  }

  40%,
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}

.words {
  position: relative;
  height: 100%;
  text-align: left;
  line-height: 1;
}

.words span {
  display: block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateY(100%);
  opacity: 0;
  animation: rotateWords 10s linear infinite 0s;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink), var(--neon-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation-fill-mode: forwards;
  font-size: 2.5rem;
  font-weight: 600;
  will-change: transform, opacity;
  height: 2.5rem;
  line-height: 2.5rem;
}


.words span:nth-child(2) {
  animation-delay: 2.5s;
}

.words span:nth-child(3) {
  animation-delay: 5s;
}

@keyframes rotateWords {

  0%,
  15% {
    opacity: 0;
    transform: translateY(-50%) translateY(100%);
  }

  20%,
  45% {
    opacity: 1;
    transform: translateY(-50%);
  }

  50%,
  100% {
    opacity: 0;
    transform: translateY(-50%) translateY(-100%);
  }
}

.send-inquiry-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--neon-purple), var(--neon-blue));
  transition: all 0.4s ease;
  z-index: -1;
}

.send-inquiry-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
  color: white;
}

.send-inquiry-btn:hover::before {
  left: 0;
}

.send-inquiry-btn:active {
  transform: translateY(1px);
}

/* Remove old slideUp animation */
@keyframes slideUp {

  0%,
  15% {
    opacity: 0;
    transform: translateY(15px);
  }

  20%,
  45% {
    opacity: 1;
    transform: translateY(0);
  }

  50%,
  100% {
    opacity: 0;
    transform: translateY(-15px);
  }
}

/* Services Grid in Hero */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin: 0 auto;
  padding: 15px;
  max-width: 1600px;
}

/* Override existing service card styles */
.services-grid .service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 240, 255, 0.1);
  display: flex;
  flex-direction: column;
}

.services-grid .service-card h3 {
  font-size: 1.3rem !important;
  color: var(--neon-blue);
  margin: 15px;
  padding: 0;
}

.services-grid .service-card .service-highlight {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem !important;
  margin: 0 15px 15px;
  line-height: 1.5;
}

.services-grid .service-card .enquire-btn {
  background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 0.95rem !important;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  margin: 15px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.services-grid .service-card .enquire-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--neon-purple), var(--neon-blue));
  transition: all 0.4s ease;
  z-index: -1;
}

.services-grid .service-card .enquire-btn:hover::before {
  left: 0;
}

.services-grid .service-card .enquire-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.4);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .services-grid .service-card {
    margin: 0;

  }

  .services-grid .service-card h3 {
    font-size: 1rem !important;
    margin: 12px;
  }

  .services-grid .service-card .service-highlight {
    font-size: 12px !important;
    margin: 0 12px 12px;
    padding: 5px;
  }

  .services-grid .service-card .enquire-btn {
    margin: 0 12px 12px;
    width: calc(100% - 24px);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .services-grid .service-card {
    margin: 0;
  }

  .services-grid .service-card h3 {
    font-size: 1.1rem !important;
    margin: 10px;
  }

  .services-grid .service-card .service-highlight {
    font-size: 0.9rem !important;
    margin: 0 10px 10px;
  }

  .services-grid .service-card .enquire-btn {
    margin: 0 10px 10px;
    width: calc(100% - 20px);
    padding: 8px 16px;
    font-size: 0.9rem !important;
  }
}

.service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.learn-more {
  color: var(--neon-blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.experience-card:hover .learn-more {
  color: white;
}

/* LED Animation */
.led-animation {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

.led-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--neon-blue);
  opacity: 0;
  animation: float 10s infinite linear;
  filter: drop-shadow(0 0 5px currentColor);
}

.hero {
  padding: 30px 15px;
}

.services-grid {
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 30px;
}

.service-card {
  max-width: 100%;
}

.service-image {
  height: 180px;
}

.service-card h3 {
  font-size: 1.3rem !important;
  margin: 15px 0 12px;
  padding: 0 15px;
}

.service-features {
  padding: 0 15px;
  margin-bottom: 15px;
}

.service-highlight {
  font-size: 0.95rem !important;
  line-height: 1.5;
}

.enquire-btn {
  padding: 10px 20px;
  font-size: 0.9rem !important;
}


@media (max-width: 480px) {
  .service-image {
    height: 160px;
  }

  .service-card h3 {
    font-size: 1.2rem !important;
    padding: 0 12px;
  }

  .service-features {
    padding: 0 12px;
  }

  .service-highlight {
    font-size: 0.9rem !important;
  }

  .enquire-btn {
    padding: 10px 20px;
    font-size: 0.9rem !important;
  }
}

.explore-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem !important;
  font-weight: 600;
  color: white;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.explore-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple), var(--neon-blue));
  transition: all 0.4s ease;
  z-index: -1;
}

.explore-btn:hover::before {
  left: 0;
}

.explore-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.8);
}

/* trusted sections */
.trusted-section {
  text-align: center;
  padding: 80px 5%;
  background-color: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(0, 240, 255, 0.1);
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
  box-sizing: border-box;
}

.trusted-section h2 {
  font-size: var(--h2-desktop);
  margin-bottom: 3rem;
}

.brand-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-logos img {
  height: 100px;
  transition: all 0.4s ease;
  filter: brightness(0) invert(1) opacity(0.8);
  max-width: 100%;
  object-fit: contain;
}

.brand-logos img:hover {
  transform: perspective(500px) rotateY(10deg) scale(1.1);
  filter: brightness(0) invert(1) opacity(1);
}

/* Mobile styles - 2x2 grid */
@media (max-width: 768px) {
  .trusted-section {
    padding: 60px 5%;
  }

  .trusted-section h2 {
    font-size: var(--h2-mobile);
    margin-bottom: 2rem;
  }

  .brand-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 10%;
  }

  .brand-logos img {
    height: 70px;
    width: 100%;
    margin: 0 auto;
    max-width: 150px;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .trusted-section {
    padding: 50px 5%;
  }

  .trusted-section h2 {
    font-size: var(--h2-mobile);
    margin-bottom: 1.5rem;
  }

  .brand-logos {
    gap: 20px;
    padding: 0 5%;
  }

  .brand-logos img {
    height: 50px;
  }
}


/* Main Section Styles */
.industry-section {
  position: relative;
  padding: 80px 20px;
  color: #fff;
  min-height: 100vh;
  background: #0a0a1a;
  overflow: hidden;
}

.industry-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* Left Side - Industry Icons */
.industry-icons-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-title {
  font-size: 2.8em !important;
  font-weight: bold;
  margin: 30px 0 40px;
}

.industries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.industry {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.industry:hover {
  transform: translateY(-5px);
}

.industry img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.industry.active img {
  filter: brightness(1) invert(0) drop-shadow(0 0 5px var(--neon-blue));
}

.industry p {
  font-weight: bold;
  font-size: 1.1em !important;
  text-align: center;
  transition: color 0.3s ease;
}

.industry.active p {
  color: var(--neon-blue);
}

/* Right Side - Carousel */
.industry-carousel {
  margin-top: 200px;
  position: relative;
  height: 70%;
}

.carousel-slide {
  background: #14142b;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 240, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
  height: 100%;
  display: none;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide img {
  width: 100%;
  height: 150px;
  /* Further reduced from 200px */
  object-fit: cover;
}

.carousel-slide-content {
  padding: 12px;
  /* Further reduced from 15px */
}

.carousel-slide h3 {
  font-size: 1.4em !important;
  /* Further reduced from 1.6em */
  margin-bottom: 8px;
  /* Further reduced from 10px */
  color: white;
}

.carousel-slide p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  /* Further reduced from 1.5 */
  margin-bottom: 12px;
  /* Further reduced from 15px */
  font-size: 0.95em !important;
  /* Added to make text slightly smaller */
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .industry-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .industries {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .industries::-webkit-scrollbar {
    display: none;
  }

  .industry {
    margin-top: 25px;
    flex: 0 0 auto;
    width: 100px;
    scroll-snap-align: center;
    background: rgba(255, 255, 255, 0.1);
  }

  .industry.active {
    background: rgba(0, 240, 255, 0.2);
    border: 1px solid var(--neon-blue);
  }

  .industry img {
    width: 40px;
    height: 40px;
  }

  .industry p {
    font-size: 0.9em !important;
  }

  .section-title {
    font-size: 2em !important;
    margin: 20px 0 30px;
  }

  .carousel-slide img {
    height: 180px;
  }

  .slider-controls {
    display: flex;
  }

  /* Adjust glow balls for mobile */
  .ball1,
  .ball2,
  .ball3 {
    filter: blur(60px);
  }

  .ball1 {
    width: 200px;
    height: 200px;
  }

  .ball2 {
    width: 250px;
    height: 250px;
  }

  .ball3 {
    width: 150px;
    height: 150px;
  }
}


.enquire-btn:hover {
  transform: translateY(-3px);
}

/* Glow Balls */
.glow-ball {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  z-index: 0;
  animation: floating 20s infinite ease-in-out alternate;
}

.ball1 {
  width: 300px;
  height: 300px;
  background: #ff00ff;
  top: 5%;
  left: 10%;
}

.ball2 {
  width: 400px;
  height: 400px;
  background: #00ffff;
  bottom: 10%;
  right: 15%;
}

.ball3 {
  width: 200px;
  height: 200px;
  background: #ff6600;
  top: 40%;
  left: 60%;
}

/* Mobile View - Tabbed Layout */
@media (max-width: 768px) {
  .industry-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .industries {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 0;
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
  }

  .industries::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome/Safari */
  }

  .industry {
    flex: 0 0 auto;
    width: 100px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
  }

  .industry img {
    width: 40px;
    height: 40px;
  }

  .industry p {
    font-size: 0.9em !important;
  }

  .section-title {
    font-size: 2em !important;
    margin: 20px 0 30px;
  }

  .carousel-slide img {
    height: 130px;
    /* Further reduced from 180px */
  }

  .carousel-slide-content {
    padding: 10px;
    /* Further reduced from 12px */
  }

  .carousel-slide h3 {
    font-size: 1.2em !important;
    margin-bottom: 6px;
  }

  .carousel-slide p {
    font-size: 0.9em !important;
    margin-bottom: 10px;
  }

  /* Adjust glow balls for mobile */
  .ball1,
  .ball2,
  .ball3 {
    filter: blur(60px);
  }

  .ball1 {
    width: 200px;
    height: 200px;
  }

  .ball2 {
    width: 250px;
    height: 250px;
  }

  .ball3 {
    width: 150px;
    height: 150px;
  }
}

/* Animation */
@keyframes floating {
  0% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-20px) translateX(10px);
  }

  100% {
    transform: translateY(0) translateX(0);
  }
}

/* Journey Button Styles */
.journey-btn {
  position: relative;
  display: block;
  margin: 0 auto 30px auto;
  padding: 10px 30px;
  background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
  color: white;
  font-size: 1.1rem !important;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
  letter-spacing: 1px;
  z-index: 2;
  overflow: hidden;
}

.journey-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--neon-purple), var(--neon-blue));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.journey-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
}

.journey-btn:hover::before {
  opacity: 1;
}

.journey-btn:active {
  transform: translateY(1px);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .journey-btn {
    position: static;
    margin: 20px auto;
    width: 90%;
    max-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 25px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .journey-btn {
    padding: 10px 20px;
    font-size: 0.6rem !important;
    margin-bottom: 25px;
  }
}

/* LED Systems Section */
.led-systems-section {
  padding: 100px 20px;
  background: #0a0a1a;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 240, 255, 0.1);
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.led-systems-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(0, 240, 255, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.led-systems-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.led-systems-section h2 {
  font-size: var(--h2-desktop);
  margin-bottom: 2rem;
  background: linear-gradient(90deg, var(--neon-blue), white);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.led-systems-section .subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem !important;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.led-systems-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.led-system-card {
  background: rgba(30, 30, 46, 0.8);
  padding: 10px;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  color: white;
  width: 280px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 240, 255, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}

.led-system-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
  z-index: -1;
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.led-system-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 240, 255, 0.2);
  border-color: rgba(0, 240, 255, 0.3);
}

.led-system-card:hover::before {
  opacity: 0.5;
}

.led-system-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.led-system-card:hover img {
  transform: scale(1.05);
}

.led-system-card h3 {
  color: var(--neon-blue);
  margin-bottom: 15px;
  font-size: 1.4rem !important;
  position: relative;
  display: inline-block;
}

.led-system-card h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-blue);
  transition: width 0.3s ease;
}

.led-system-card:hover h3::after {
  width: 100%;
}

.led-system-card p {
  opacity: 0.8;
  line-height: 1.6;
  font-size: 0.95rem !important;
  margin-bottom: 20px;
}

/* Enquiry Button Styles */
.enquiry {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem !important;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.enquiry::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--neon-purple), var(--neon-blue));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.enquiry:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 240, 255, 0.5);
}

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

.enquiry:active {
  transform: translateY(1px);
}

/* Popup Styles */
.enquiry-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.enquiry-popup-content {
  background: #0a0a1a;
  padding: 35px;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  height: auto;
  max-height: 85vh;
  border: 1px solid rgba(0, 240, 255, 0.2);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
  position: relative;
  overflow-y: auto;
  /* Hide scrollbar but keep functionality */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.enquiry-popup-content::-webkit-scrollbar {
  display: none;
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: var(--neon-blue);
  font-size: 1.5rem !important;
  cursor: pointer;
}

.enquiry-form h3 {
  color: white;
  margin-bottom: 25px;
  font-size: 1.5rem !important;
  text-align: center;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  font-size: 0.95rem !important;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  background: rgba(30, 30, 46, 0.8);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 6px;
  color: white;
  font-size: 0.95rem !important;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  font-size: 1rem !important;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.4);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .enquiry-popup-content {
    padding: 30px 20px;
    width: 95%;
    max-width: 95%;
    max-height: 90vh;
  }

  .enquiry-form h3 {
    font-size: 1.3rem !important;
    margin-bottom: 20px;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 10px;
  }

  .form-group textarea {
    min-height: 90px;
  }

  .submit-btn {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .enquiry-popup-content {
    padding: 25px 15px;
  }

  .enquiry-form h3 {
    font-size: 1.2rem !important;
  }

  .form-group label {
    font-size: 0.9rem !important;
  }

  .form-group textarea {
    min-height: 80px;
  }
}

/* Existing Experience Section Styles (unchanged) */
 .vivid-exp {
        padding: 80px 0;
        background: #f9fafc;
        text-align: center;
    }
    
    .vex-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .vex-title {
        font-size: 2.2rem;
        margin-bottom: 50px;
        color: #222;
        font-weight: 600;
        position: relative;
        display: inline-block;
    }
    
    .vex-title:after {
        content: '';
        position: absolute;
        width: 60px;
        height: 3px;
        background: #0066cc;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .vex-grid {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .vex-card {
        width: 100%;
        max-width: 380px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        text-decoration: none;
        color: inherit;
        background: white;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .vex-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    }
    
    .vex-img {
        width: 100%;
        height: 220px;
        overflow: hidden;
    }
    
    .vex-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .vex-card:hover .vex-img img {
        transform: scale(1.1);
    }
    
    .vex-content {
        padding: 25px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .vex-content h3 {
        margin: 0 0 15px 0;
        font-size: 1.6rem;
        color: #222;
        font-weight: 600;
    }
    
    .vex-content p {
        margin: 0 0 25px 0;
        color: #555;
        line-height: 1.6;
        font-size: 1rem;
    }
    
    .vex-btn {
        padding: 12px 30px;
        background-color: #0066cc;
        color: white;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        margin-top: auto;
    }
    
    .vex-btn:hover {
        background-color: #0052a3;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
    }
    
/* Mobile Responsive */
@media (max-width: 768px) {
  .experience-section h2 {
    font-size: var(--h2-mobile);
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .card-image img {
    height: 200px;
  }
}



/* Updated Asymmetric Learn More Section */
/* Asymmetrical Grid Layout - 3, 2, 2 with Compact Cards */
.content-section.led-systems-section {
  padding: 60px 20px;
  background-color: rgba(10, 10, 26, 0.8);
  position: relative;
  border-top: 1px solid rgba(0, 240, 255, 0.1);
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}


.led-systems-section h2 {
  font-size: var(--h2-desktop);
  text-align: center;
  margin-bottom: 15px;
  background: linear-gradient(90deg, var(--neon-blue), white);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.led-systems-section .subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem !important;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

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

/* First row: 3 equal columns */
.asymmetrical-grid>.grid-card:nth-child(1),
.asymmetrical-grid>.grid-card:nth-child(2),
.asymmetrical-grid>.grid-card:nth-child(3) {
  grid-column: span 1;
}

/* Second row: 2 columns (span 2 + span 1) */
.asymmetrical-grid>.grid-card:nth-child(4) {
  grid-column: span 2;
}

.asymmetrical-grid>.grid-card:nth-child(5) {
  grid-column: span 1;
}

/* Third row: 2 columns (span 1 + span 2) */
.asymmetrical-grid>.grid-card:nth-child(6) {
  grid-column: span 1;
}

.asymmetrical-grid>.grid-card:nth-child(7) {
  grid-column: span 2;
}

/* Compact Card Styles */
.grid-card {
  background: rgba(30, 30, 46, 0.8);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0, 240, 255, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
  height: 280px;
  /* Reduced from original */
  display: flex;
  flex-direction: column;
}

.grid-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 240, 255, 0.2);
  border-color: rgba(0, 240, 255, 0.3);
}

.card-image {
  height: 140px;
  /* Reduced image height */
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.grid-card:hover .card-image img {
  transform: scale(1.03);
}

.card-content {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  font-size: 1.1rem !important;
  margin-bottom: 8px;
  color: var(--neon-blue);
}

.card-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  line-height: 1.5;
  font-size: 0.9rem !important;
  flex-grow: 1;
}

.learn-more {
  color: var(--neon-blue);
  font-weight: 600;
  font-size: 0.9rem !important;
  display: inline-block;
  transition: transform 0.3s ease;
}

.grid-card:hover .learn-more {
  transform: translateX(3px);
}

.glow-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 240, 255, 0.1), rgba(180, 0, 255, 0.1));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.grid-card:hover .glow-effect {
  opacity: 0.8;
}

/* Special Card Sizes - Adjusted for compact layout */
.large-card {
  grid-column: span 2;
}

.tall-card {
  height: 280px;
  /* Same as regular cards now */
}

.wide-card {
  grid-column: span 2;
}

/* Experience Centers Section */
.experience-section {
  padding: 80px 20px;
  background-color: rgba(0, 0, 0, 0.4);
}

.experience-section h2 {
  text-align: center;
  margin-bottom: 50px;
  color: white;
  position: relative;
}

.experience-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--neon-blue);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
}

.experience-card {
  display: block;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  background: rgba(30, 30, 46, 0.8);
  color: white;
  border: 1px solid rgba(0, 240, 255, 0.1);
}

.experience-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 240, 255, 0.3);
}

.experience-card .card-image {
  height: 250px;
  overflow: hidden;
}

.experience-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.experience-card:hover .card-image img {
  transform: scale(1.05);
}

.experience-card .card-content {
  padding: 25px;
}

.experience-card .card-content h3 {
  color: var(--neon-blue);
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.5rem !important;
}

.experience-card .card-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Testimonials Section - Neon Style */
.testimonials-section {
  position: relative;
  padding: 100px 0;
  background-color: rgba(10, 10, 26, 0.8);
  overflow: hidden;
  border-top: 1px solid rgba(0, 240, 255, 0.1);
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(0, 240, 255, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.testimonials-section h2 {
  font-size: var(--h2-desktop);
  margin-bottom: 3rem;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  z-index: 2;
}

.testimonials-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  z-index: 2;
}

.slider-container {
  overflow: hidden;
  border-radius: 15px;
}

.content-grid {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: transform;
}

.content-card {
  min-width: 100%;
  padding: 40px;
  box-sizing: border-box;
  background: rgba(30, 30, 46, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 12px;
  margin: 0 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(180, 0, 255, 0.1));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.content-card p {
  font-size: 1.1rem !important;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  position: relative;
  padding-left: 20px;
}

.content-card p::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem !important;
  color: var(--neon-blue);
  opacity: 0.3;
  font-family: serif;
  line-height: 1;
}

.author {
  font-weight: 600;
  color: var(--neon-blue);
  font-size: 0.95rem !important;
  position: relative;
  padding-left: 25px;
}

.author::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 2px;
  background: var(--neon-blue);
  transform: translateY(-50%);
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(30, 30, 46, 0.9);
  color: var(--neon-blue);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px !important;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
  transition: all 0.3s ease;
}

.slider-nav:hover {
  background: var(--neon-blue);
  color: var(--dark-bg);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.8);
}

.slider-nav.prev {
  left: -10px;
}

.slider-nav.next {
  right: -10px;
}

/* Dots indicator */
.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 240, 255, 0.3);
}

.slider-dot.active {
  background: var(--neon-blue);
  box-shadow: 0 0 10px var(--neon-blue);
  transform: scale(1.2);
}


/* FAQ Section Styles */
.faq-section {
  padding: 80px 20px;
  background-color: rgba(10, 10, 26, 0.9);
  border-top: 1px solid rgba(0, 240, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 70%, rgba(180, 0, 255, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.faq-section .container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-intro {
  margin-bottom: 40px;
  padding: 20px;
  background: rgba(30, 30, 46, 0.6);
  border-radius: 8px;
  border-left: 3px solid var(--neon-blue);
}

.faq-intro h3, .faq-section button {
  color: var(--neon-blue);
  margin-bottom: 15px;
  font-size: 1rem !important;
}

.faq-intro p {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Accordion Styles */
.faq-accordion {
  border-radius: 8px;
  overflow: hidden;
}

.faq-item {
  margin-bottom: 10px;
  background: rgba(30, 30, 46, 0.8);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 240, 255, 0.3);
}

.faq-question {
  width: 100%;
  padding: 20px;
  text-align: left;
  background: transparent;
  border: none;
  color: white;
  font-size: 1rem !important;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--neon-blue);
}

.toggle-icon {
  font-size: 1.5rem !important;
  font-weight: 300;
  color: var(--neon-blue);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
  background: rgba(20, 20, 36, 0.6);
}

.faq-answer p {
  padding: 20px 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Active state */
.faq-item.active .faq-question {
  color: var(--neon-blue);
}

.faq-item.active .toggle-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}


/* Footer Styles */
.footer {
  background: var(--dark-bg);
  color: #fff;
  padding: 80px 0 0;
  font-family: 'Arial', sans-serif;
  position: relative;
  border-top: 1px solid rgba(0, 240, 255, 0.1);
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 20px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%2300f0ff" opacity=".1"/></svg>');
  background-size: 1200px 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-column {
  margin-bottom: 30px;
}

.footer-heading {
  font-size: 1.3rem !important;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  color: var(--neon-blue);
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--neon-blue);
}

.footer-content p,
.footer-links li,
.contact-item p {
  margin: 0 0 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem !important;
}

.footer-address,
.footer-email,
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer-icon {
  margin-right: 12px;
  color: var(--neon-blue);
  font-size: 1rem;
  margin-top: 3px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.footer-links a::before {
  content: '»';
  position: absolute;
  left: 0;
  color: var(--neon-blue);
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--neon-blue);
  padding-left: 20px;
}

.footer-links a:hover::before {
  opacity: 1;
  left: 0;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.1);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 240, 255, 0.2);
}

.social-icon:hover {
  background: var(--neon-blue);
  color: var(--dark-bg);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.newsletter {
  margin-top: 20px;
}

.newsletter p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.newsletter-input {
  display: flex;
}

.newsletter-input input {
  flex: 1;
  padding: 12px 15px;
  background: rgba(20, 20, 36, 0.8);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 4px 0 0 4px;
  color: white;
  font-size: 0.9rem;
  outline: none;
}

.newsletter-input input:focus {
  border-color: var(--neon-blue);
}

.subscribe-btn {
  padding: 0 20px;
  background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
  border: none;
  border-radius: 0 4px 4px 0;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-btn:hover {
  background: linear-gradient(45deg, var(--neon-purple), var(--neon-blue));
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 0;
  margin-top: 50px;
  border-top: 1px solid rgba(0, 240, 255, 0.1);
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: var(--neon-blue);
}

/* ====================== */
/* MOBILE RESPONSIVE STYLES */
/* ====================== */

@media (max-width: 768px) {


  /* Trusted Brands Mobile Styles */
  .trusted-section {
    padding: 60px 20px;
  }

  .trusted-section h2 {
    font-size: var(--h2-mobile);
    margin-bottom: 2rem;
  }

  .brand-logos {
    gap: 30px;
  }

  .brand-logos img {
    height: 60px;
  }

  /* Industries Mobile Styles */
  .industry-section {
    padding: 60px 20px;
    min-height: auto;
  }

  .industry-section h2 {
    font-size: var(--h2-mobile);
    margin-bottom: 2rem;
  }

  .industries {
    gap: 20px;
  }

  .industry {
    width: 90px;
  }

  .industry img {

    width: 40px;
    height: 40px;
  }

  .industry p {
    font-size: 0.8rem;
  }

  /* LED Systems Mobile Styles */
  .led-systems-section {
    padding: 60px 20px;
  }

  .led-systems-section h2 {
    font-size: var(--h2-mobile);
    margin-bottom: 1.5rem;
  }

  .led-systems-grid {
    flex-direction: column;
    align-items: center;
  }

  .led-system-card {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
  }

  /* Asymmetric Grid Mobile Styles */
  .asymmetrical-grid {
    grid-template-columns: 1fr;
  }

  .asymmetrical-grid>.grid-card:nth-child(4),
  .asymmetrical-grid>.grid-card:nth-child(7) {
    grid-column: span 1;
  }

  .grid-card {
    height: auto;
    min-height: 250px;
  }

  /* Experience Centers Mobile Styles */
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .experience-card .card-image {
    height: 200px;
  }

  .experience-section {
    padding: 60px 15px;
  }

  .experience-section h2 {
    font-size: var(--h2-mobile);
  }

  .container-h2 {
    font-size: 20px;
  }

  /* Testimonials Mobile Styles */
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-section h2 {
    font-size: var(--h2-mobile);
    margin-bottom: 2rem;
  }

  .testimonials-slider {
    padding: 0 20px;
  }

  .content-card {
    padding: 30px 20px;
  }

  .slider-nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  /* FAQ Mobile Styles */
  .faq-section {
    padding: 60px 15px;
  }

  .faq-intro {
    padding: 15px;
  }

  .faq-question {
    padding: 15px;
    font-size: 1rem;
  }

  /* Footer Mobile Styles */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .legal-links {
    gap: 15px;
    justify-content: center;
  }

  /* Glow Balls Adjustment */
  .glow-ball {
    filter: blur(40px);
  }

  .ball1,
  .ball2,
  .ball3 {
    width: 150px;
    height: 150px;
  }
}

/* Extra Small Devices (phones < 576px) */
@media (max-width: 576px) {

  /* Hero Adjustments */
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  /* Trusted Brands Adjustments */
  .trusted-section h2 {
    font-size: var(--h2-mobile);
  }

  /* Navigation Adjustments */
  nav ul {
    gap: 10px;
  }

  nav a {
    font-size: 0.9rem;
  }

  /* Industry Adjustments */
  .industry {
    width: 80px;
  }

  .industry img {
    width: 35px;
    height: 35px;
  }

  .industry p {
    font-size: 0.7rem;
  }

  /* LED Cards Adjustments */
  .led-system-card {
    padding: 20px;
  }

  /* Testimonial Cards Adjustments */
  .content-card p {
    font-size: 1rem;
    padding-left: 15px;
  }

  /* FAQ Adjustments */
  .faq-intro h3 {
    font-size: 1.2rem;
  }
}

/* Very Small Devices (phones < 400px) */
@media (max-width: 400px) {

  /* Hero Adjustments */
  .hero h1 {
    font-size: 1.6rem;
  }

  /* Navigation Adjustments */
  nav ul {
    gap: 8px;
  }

  nav a {
    font-size: 0.8rem;
  }

  /* LED Cards Adjustments */
  .led-system-card h3 {
    font-size: 1.2rem;
  }

  /* Testimonial Adjustments */
  .content-card {
    padding: 25px 15px;
  }

  /* Footer Adjustments */
  .footer-heading {
    font-size: 1.1rem;
  }

  .footer-links a {
    font-size: 0.85rem;
  }
}

.google-review {
  text-align: center;
  margin-bottom: 25px;
  padding: 12px 20px;
  color: #333;
  font-size: 1.1rem;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 30px;
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.review-text {
  color: #333;
  position: relative;
  padding: 0 10px;
  font-weight: 500;
}



@media (max-width: 768px) {
  .google-review {
    font-size: 0.95rem;
    margin-bottom: 20px;
    padding: 10px 16px;
  }

  .review-text::before {
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  .google-review {
    font-size: 0.85rem;
    margin-bottom: 15px;
    padding: 8px 14px;
  }

  .review-text::before {
    letter-spacing: 1px;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 0 auto;
  padding: 15px;
  max-width: 1600px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.2rem;
  color: #2c3e50;
  margin: 8px 12px;
  text-align: center;
}

.service-highlight {
  color: #4a5568;
  font-size: 0.9rem;
  margin-bottom: 8px;
  text-align: center;
  line-height: 1.3;
}






@media (max-width: 1024px) {
  .service-image {
    height: 160px;
  }

  .service-card h3 {
    font-size: 1.1rem;
    margin: 6px 10px;
  }

  .service-highlight {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }
}

@media (max-width: 768px) {
  .services-grid {
    gap: 10px;
    padding: 10px;
  }

  .service-image {
    height: 140px;
  }

  .service-card h3 {
    font-size: 0.95rem;
    margin: 6px 8px;
  }

  .service-highlight {
    font-size: 0.8rem;
    margin-bottom: 6px;
    line-height: 1.2;
  }

  .enquire-btn {
    padding: 6px 16px;
    font-size: 0.8rem;
    margin: 6px auto;
  }
}

@media (max-width: 480px) {
  .service-image {
    height: 120px;
  }

  .service-card h3 {
    font-size: 0.9rem;
    margin: 4px 6px;
  }

  .service-highlight {
    font-size: 0.75rem;
    margin-bottom: 4px;
  }
}

.industry-new-section {
  padding: 80px 20px;
  background: rgba(10, 10, 26, 0.9);
  position: relative;
  overflow: hidden;
}

.industry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  color: white;
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 40px;
  grid-column: 1 / -1;
}

.journey-btn {
  grid-column: 1 / -1;
  background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 auto 30px;
  display: block;
  width: fit-content;
}

.journey-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 240, 255, 0.4);
}

.industries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}

.industry {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.1);
}

.industry:hover,
.industry.active {
  background: rgba(0, 240, 255, 0.1);
  transform: translateY(-5px);
  border-color: var(--neon-blue);
}

.industry img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.industry:hover img {
  transform: scale(1.1);
}

.industry p {
  color: white;
  font-size: 0.9rem;
  margin: 0;
  text-align: center;
}

.industry-carousel {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(0, 240, 255, 0.1);
}

.carousel-slide {
  display: none;
  padding: 30px;
}

.carousel-slide.active {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

.carousel-slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.carousel-slide h3 {
  color: var(--neon-blue);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.carousel-slide p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.carousel-slide .enquire-btn {
  background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-slide .enquire-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 240, 255, 0.3);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .industry-new-section {
    padding: 40px 15px;
  }

  .industry-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .industries {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 10px;
  }

  .industry {
    padding: 10px;
  }

  .industry img {
    width: 35px;
    height: 35px;
    margin-bottom: 8px;
  }

  .industry p {
    font-size: 0.8rem;
  }

  .carousel-slide {
    padding: 20px;
  }

  .carousel-slide img {
    height: 200px;
  }

  .carousel-slide h3 {
    font-size: 1.5rem;
  }

  .carousel-slide p {
    font-size: 0.9rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .industries {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .industry img {
    width: 30px;
    height: 30px;
    margin-bottom: 6px;
  }

  .industry p {
    font-size: 0.75rem;
  }

  .carousel-slide img {
    height: 180px;
  }

  .carousel-slide h3 {
    font-size: 1.3rem;
  }

  .carousel-slide p {
    font-size: 0.85rem;
  }
}

/* Glow Balls */
.glow-ball {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  z-index: 0;
}

.ball1 {
  width: 300px;
  height: 300px;
  background: var(--neon-blue);
  top: 10%;
  left: -150px;
  animation: float 15s infinite alternate ease-in-out;
}

.ball2 {
  width: 200px;
  height: 200px;
  background: var(--neon-purple);
  bottom: 20%;
  right: -100px;
  animation: float 20s infinite alternate-reverse ease-in-out;
}

.ball3 {
  width: 150px;
  height: 150px;
  background: var(--neon-pink);
  top: 50%;
  left: 50%;
  animation: float 18s infinite alternate ease-in-out;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(20px, 20px);
  }
}

/* Mobile View - Single Line Icons and Carousel */
@media (max-width: 768px) {
  .industry-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .industry-icons-container {
    width: 100vw;
    margin-left: -20px;
    /* Counteract padding */
    padding: 10px 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
  }

  .industry-icons-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
  }

  .industries {
    width: max-content;
    /* Allow natural width */
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    padding-bottom: 10px;
    /* Space for scroll */
  }

  .industry {
    flex: 0 0 auto;
    width: 100px;
  }

  .industry img {
    width: 35px;
    height: 35px;
  }

  .industry p {
    font-size: 0.8rem;
    margin-top: 5px;
  }

  .industry-carousel {
    margin-top: 20px;
    height: auto;
  }

  /* Auto-sliding animation */
  @keyframes slideCarousel {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }

    5% {
      opacity: 1;
      transform: translateX(0);
    }

    95% {
      opacity: 1;
      transform: translateX(0);
    }

    100% {
      opacity: 0;
      transform: translateX(-100%);
    }
  }

  .carousel-slide.active {
    animation: slideCarousel 2s ease-in-out;
  }
}

.hero-title {
  margin-bottom: 60px;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  width: 100%;
  position: relative;
}

.hero-title-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 30px;
  margin-bottom: 20px;
}

.hero-image {
  /* This prevents the image from growing but allows it to shrink */
  flex: 0 1 auto;
  /* Or you can use: */
  /* margin-left: auto; */
  /* This pushes the image to the right */
}


.hero-title h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  line-height: 1.4;
  margin: 0;
}

.dynamic-text {
  position: relative;
  display: inline-block;
  height: 2.5rem;
  width: auto;
  min-width: 170px;
  overflow: hidden;
  margin: 0;
  vertical-align: baseline;
}

.send-inquiry-btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 10px;
}

@media (max-width: 768px) {
  .hero-title {
    padding: 20px 15px;
    margin-bottom: 30px;
  }

  .hero-title-wrapper {
    flex-direction: column;
    gap: 15px;
  }

  .title-content {
    gap: 15px;
    width: 100%;
  }

  .hero-title h1 {
    font-size: 1.6rem;
    gap: 4px;
    line-height: 1.3;
  }

  .dynamic-text {
    height: 1.6rem;
    min-width: 120px;
    margin: 0;
  }

  .words span {
    font-size: 1.6rem;
    height: 1.6rem;
    line-height: 1.6rem;
  }

  .send-inquiry-btn {
    padding: 10px 24px;
    font-size: 0.95rem;
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    padding: 15px 10px;
  }

  .hero-title h1 {
    font-size: 1.4rem;
  }

  .dynamic-text {
    height: 1.4rem;
    min-width: 100px;
  }

  .words span {
    font-size: 1.4rem;
    height: 1.4rem;
    line-height: 1.4rem;
  }

  .send-inquiry-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}

.send-inquiry-btn {
  padding: 8px 20px;
  font-size: 0.9rem;
  margin-top: 6px;
  display: inline-block;
  margin-top: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 40px;
  padding: 15px;
  max-width: 1600px;
}

@media (max-width: 768px) {
  .hero-title {
    margin-bottom: 40px;
  }

  .services-grid {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    margin-bottom: 30px;
  }

  .services-grid {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 10px 15px;
  }

  .mobile-nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 26, 0.98);
    padding: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
  }

  .mobile-nav.active {
    transform: translateY(0);
  }

  .mobile-nav ul {
    gap: 0;
  }

  .mobile-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-nav li:last-child {
    border-bottom: none;
  }

  .mobile-nav a {
    padding: 12px 0;
    font-size: 1rem;
    display: block;
  }

  .hamburger {
    z-index: 1001;
  }

  .hamburger .bar {
    transition: all 0.3s ease;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  body.nav-active {
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 8px 12px;
  }

  .mobile-nav {
    top: 50px;
  }

  .mobile-nav a {
    padding: 10px 0;
    font-size: 0.95rem;
  }

  .hamburger .bar {
    width: 22px;
    height: 2px;
    margin: 4px auto;
  }
}

/* Mobile View - Icons Slider Only */
@media (max-width: 768px) {
  .industry-section {
    padding: 40px 0 40px 0;
    position: relative;
  }

  .industry-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .industry-icons-container {
    position: relative;
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .journey-btn {
    position: static;
    margin: 0 auto 20px;
    width: calc(100% - 40px);
    max-width: 400px;
    display: block;
    padding: 12px 25px;
  }

  .section-title {
    position: static;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 30px;
    font-size: 2rem !important;
  }

  .industries {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 20px;
    margin: 0;
    width: 100%;
  }

  .industries::-webkit-scrollbar {
    display: none;
  }

  .industry {
    flex: 0 0 auto;
    width: 100px;
    min-width: 100px;
    scroll-snap-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .industry.active {
    background: rgba(0, 240, 255, 0.2);
    border: 1px solid var(--neon-blue);
  }

  .industry img {
    width: 40px;
    height: 40px;
    margin: 0;
  }

  .industry p {
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
  }

  .industry-carousel {
    margin-top: 30px;
    padding: 0 20px;
  }

  .carousel-slide {
    padding: 20px;
    border-radius: 12px;
    background: rgba(30, 30, 46, 0.8);
    border: 1px solid rgba(0, 240, 255, 0.1);
  }

  .carousel-slide img {
    height: 200px;
    border-radius: 8px;
    margin-bottom: 20px;
  }

  .carousel-slide h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .carousel-slide p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .journey-btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .section-title {
    font-size: 1.8rem !important;
    margin-bottom: 25px;
  }

  .industry {
    width: 90px;
    min-width: 90px;
    padding: 12px 8px;
  }

  .industry img {
    width: 35px;
    height: 35px;
  }

  .industry p {
    font-size: 0.8rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .service-image {
    height: 140px;
  }

  .service-card {
    max-width: 100%;
  }

  .service-card h3 {
    font-size: 1.1rem;
    margin: 10px 0 8px;
    padding: 0 12px;
  }

  .service-highlight {
    font-size: 0.9rem;
    line-height: 1.3;
    margin-bottom: 10px;
    padding: 0 12px;
  }

  .enquire-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    margin: 0 12px 12px;
  }
}

@media (max-width: 480px) {
  .service-image {
    height: 120px;
  }

  .service-card h3 {
    font-size: 1rem;
    margin: 8px 0 6px;
    padding: 0 10px;
  }

  .service-highlight {
    font-size: 0.85rem;
    line-height: 1.2;
    margin-bottom: 8px;
    padding: 0 10px;
  }

  .enquire-btn {
    padding: 6px 14px;
    font-size: 0.8rem;
    margin: 0 10px 10px;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 10px;
    max-width: 500px;
    margin: 20px auto;
  }

  .services-grid .service-card {
    width: 100%;
    margin: 0;
  }

  .services-grid .service-card h3 {
    font-size: 1rem;
    margin: 12px;
  }

  .services-grid .service-card .service-highlight {
    font-size: 12px;
    margin: 0 12px 12px;
    padding: 5px;
  }

  .services-grid .service-card .enquire-btn {
    width: calc(100% - 24px);
    margin: 0 12px 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .services-grid {
    gap: 12px;
    padding: 8px;
  }

  .services-grid .service-card h3 {
    font-size: 0.95rem;
    margin: 10px;
  }

  .services-grid .service-card .service-highlight {
    font-size: 11px;
    margin: 0 10px 10px;
    padding: 4px;
  }

  .services-grid .service-card .enquire-btn {
    width: calc(100% - 20px);
    margin: 0 10px 10px;
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/* Loading Screen */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--dark-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transition: all 0.5s ease-out;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  padding: 20px;
}

.loader-logo {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.loader-bar {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

.loader-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  transition: width 0.3s ease;
  position: absolute;
  left: 0;
  top: 0;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin: 20px 0;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #333;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #3b82f6;
  color: white;
  transform: translateY(-3px);
}

/* Specific brand colors on hover if you prefer */
.social-icon[title="WhatsApp"]:hover {
  background: #25D366;
}

.social-icon[title="LinkedIn"]:hover {
  background: #0077B5;
}

.social-icon[title="Instagram"]:hover {
  background: #E1306C;
}

.social-icon[title="Facebook"]:hover {
  background: #4267B2;
}

.social-icon[title="YouTube"]:hover {
  background: #FF0000;
}

.social-icon[title="Twitter"]:hover {
  background: #1DA1F2;
}


.words {
  position: relative;
  height: 100%;
  text-align: left;
  line-height: 1;
}




@keyframes rotateWords {

  0%,
  15% {
    opacity: 0;
    transform: translateY(-50%) translateY(100%);
  }

  20%,
  45% {
    opacity: 1;
    transform: translateY(-50%);
  }

  50%,
  100% {
    opacity: 0;
    transform: translateY(-50%) translateY(-100%);
  }
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 20px;
  background: rgba(10, 10, 26, 0.9);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 240, 255, 0.1);
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(0, 240, 255, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-form-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(90deg, var(--neon-blue), white);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bigin-form-wrapper {
  background: rgba(30, 30, 46, 0.8);
  border-radius: 15px;
  overflow: visible;
  border: 1px solid rgba(0, 240, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  height: auto;
  transition: all 0.3s ease;
}

.bigin-form-wrapper iframe {
  width: 100%;
  height: 800px;
  /* Increased default height */
  border: none;
  background: transparent;
  display: block;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .contact-form-section {
    padding: 40px 15px;
    padding-bottom: 0;
  }

  .contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .bigin-form-wrapper {
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
  }

  .bigin-form-wrapper iframe {
    height: 900px;
  }
}

@media (max-width: 480px) {
  .contact-form-section {
    padding: 40px 10px;
  }

  .contact-form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .bigin-form-wrapper iframe {
    height: 1000px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 20px 15px;
    /* Reduced from 40px 20px */
    min-height: auto;
  }

  .hero-content {
    padding: 15px 10px;
    /* Reduced from 20px 15px */
  }

  .hero-title {
    margin-bottom: 20px;
    /* Reduced from 40px */
    gap: 15px;
    /* Reduced from 30px */
    padding: 10px;
    /* Reduced from 20px 15px */
  }

  .title-content {
    gap: 10px;
    /* Reduced from 15px */
  }

  .services-grid {
    gap: 15px;
    /* Reduced from 25px */
    margin-top: 15px;
    /* Reduced from 30px */
    padding: 5px;
    /* Reduced from 10px */
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 15px 10px;
    /* Further reduced */
  }

  .hero-content {
    padding: 10px 5px;
    /* Further reduced */
  }

  .hero-title {
    margin-bottom: 15px;
    /* Further reduced */
    gap: 10px;
    /* Further reduced */
    padding: 5px;
    /* Further reduced */
  }

  .services-grid {
    gap: 10px;
    /* Further reduced */
    margin-top: 10px;
    /* Further reduced */
    padding: 5px;
    /* Further reduced */
  }

  .service-card {
    margin-bottom: 10px;
    /* Added to reduce space between cards */
  }

  .service-card h3 {
    margin: 8px 0;
    /* Reduced margins */
  }

  .service-features {
    margin-bottom: 8px;
    /* Reduced margin */
  }
}

/* Popup Form Styles */
.popup-form {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  backdrop-filter: blur(8px);
}

.popup-form.active {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-in-out;
}

.popup-content {
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  border-radius: 20px;
  padding: 40px;
  width: 90%;
  max-width: 600px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
}

.popup-content h2 {
  font-size: var(--h2-desktop);
  margin-bottom: 2rem;
  font-size: 24px;
  text-align: center;
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  transition: transform 0.3s ease;
}

.close-popup:hover {
  transform: rotate(90deg);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: #fff;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(0, 240, 255, 0.5);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(45deg, #00f0ff, #00a8e8);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 240, 255, 0.3);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .popup-content {
    padding: 30px 20px;
    width: 95%;
    margin: 20px;
  }

  .popup-content h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-group label {
    font-size: 13px;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px;
    font-size: 14px;
  }

  .submit-btn {
    padding: 12px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .popup-content {
    padding: 20px 15px;
  }

  .popup-content h2 {
    font-size: 18px;
  }

  .form-group {
    margin-bottom: 12px;
  }

  .form-group input,
  .form-group textarea {
    padding: 8px;
    font-size: 13px;
  }

  .submit-btn {
    padding: 10px;
    font-size: 14px;
  }
}

/* Updated Popup Form Styles */
.popup-form {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  backdrop-filter: blur(8px);
}

.popup-form.active {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-in-out;
}

.popup-content {
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  border-radius: 20px;
  padding: 40px;
  width: 90%;
  max-width: 600px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
}

.popup-content h2 {
  font-size: var(--h2-desktop);
  margin-bottom: 2rem;
  font-size: 24px;
  text-align: center;
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  transition: transform 0.3s ease;
}

.close-popup:hover {
  transform: rotate(90deg);
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: #fff;
  margin-bottom: 8px;
  font-size: 14px;
  opacity: 0.9;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(0, 240, 255, 0.5);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(45deg, #00f0ff, #00a8e8);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 240, 255, 0.3);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .popup-content {
    padding: 30px 20px;
    width: 95%;
    margin: 20px;
  }

  .popup-content h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-group label {
    font-size: 13px;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px;
    font-size: 14px;
  }

  .submit-btn {
    padding: 12px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .popup-content {
    padding: 20px 15px;
  }

  .popup-content h2 {
    font-size: 18px;
  }

  .form-group {
    margin-bottom: 12px;
  }

  .form-group input,
  .form-group textarea {
    padding: 8px;
    font-size: 13px;
  }

  .submit-btn {
    padding: 10px;
    font-size: 14px;
  }
}

/* Updated Form Spacing */
.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  color: #fff;
  margin-bottom: 5px;
  font-size: 13px;
  opacity: 0.9;
}

.form-group input {
  width: 100%;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
  height: 38px;
}

.popup-content {
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  border-radius: 15px;
  padding: 30px;
  width: 90%;
  max-width: 600px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
}

.popup-content h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 22px;
  text-align: center;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .popup-content {
    padding: 20px 15px;
    width: 95%;
    margin: 15px;
  }

  .popup-content h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .form-row {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
  }

  .form-group {
    margin-bottom: 10px;
  }

  .form-group label {
    font-size: 12px;
    margin-bottom: 3px;
  }

  .form-group input {
    padding: 8px;
    font-size: 13px;
    height: 35px;
  }

  .submit-btn {
    padding: 10px;
    font-size: 14px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .popup-content {
    padding: 15px 12px;
    margin: 10px;
  }

  .popup-content h2 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .form-row {
    gap: 8px;
    margin-bottom: 8px;
  }

  .form-group {
    margin-bottom: 8px;
  }

  .form-group label {
    font-size: 11px;
    margin-bottom: 2px;
  }

  .form-group input {
    padding: 6px 8px;
    font-size: 12px;
    height: 32px;
  }

  .submit-btn {
    padding: 8px;
    font-size: 13px;
    height: 36px;
  }

  .close-popup {
    top: 10px;
    right: 10px;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .industry-section {
    padding: 40px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .industry-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .industry-icons-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .journey-btn {
    position: static;
    width: 90%;
    max-width: 300px;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 25px;
    text-align: center;

  }
}

/* Mobile Typography Overrides */
@media (max-width: 768px) {

  /* Hero Section */
  .hero-title h1 {
    font-size: var(--h1-mobile) !important;
    line-height: 1.3;
  }

  /* Section Titles */
  .section-title,
  .trusted-section h2,
  .led-systems-section h2,
  .experience-section h2,
  .content-section h2,
  .faq-section h2,
  .testimonials-section h2 {
    font-size: var(--h2-mobile) !important;
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }

  /* Card Headings */
  .service-card h3,
  .led-system-card h3,
  .carousel-slide h3,
  .experience-card h3,
  .faq-question {
    font-size: var(--h3-mobile) !important;
    line-height: 1.4;
    margin-bottom: 0.8rem;
  }

  /* Paragraphs */
  p,
  .service-highlight,
  .led-system-card p,
  .carousel-slide p,
  .experience-card p,
  .faq-answer p {
    font-size: var(--p-mobile) !important;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  /* Buttons */
  .journey-btn,
  .enquire-btn,
  .cta-button,
  .send-inquiry-btn,
  .submit-btn,
  .enquiry {
    font-size: var(--button-mobile) !important;
    padding: 10px 20px;
  }
}

/* Small Mobile Adjustments */
@media (max-width: 480px) {

  /* Even smaller text for very small screens */
  :root {
    --h1-mobile: 1.8rem;
    --h2-mobile: 1.6rem;
    --h3-mobile: 1.3rem;
    --p-mobile: 0.9rem;
    --button-mobile: 0.85rem;
  }

  /* Hero Section */
  .hero-title h1 {
    font-size: var(--h1-mobile) !important;
    line-height: 1.2;
  }

  /* Section Titles */
  .section-title,
  .trusted-section h2,
  .led-systems-section h2,
  .experience-section h2,
  .content-section h2,
  .faq-section h2,
  .testimonials-section h2 {
    font-size: var(--h2-mobile) !important;
    line-height: 1.3;
    margin-bottom: 1.2rem;
  }

  /* Card Headings */
  .service-card h3,
  .led-system-card h3,
  .carousel-slide h3,
  .experience-card h3,
  .faq-question {
    font-size: var(--h3-mobile) !important;
    line-height: 1.3;
    margin-bottom: 0.6rem;
  }

  /* Paragraphs */
  p,
  .service-highlight,
  .led-system-card p,
  .carousel-slide p,
  .experience-card p,
  .faq-answer p {
    font-size: var(--p-mobile) !important;
    line-height: 1.4;
    margin-bottom: 0.8rem;
  }

  /* Buttons */
  .journey-btn,
  .enquire-btn,
  .cta-button,
  .send-inquiry-btn,
  .submit-btn,
  .enquiry {
    font-size: var(--button-mobile) !important;
    padding: 8px 16px;
  }
}

/* Why Choose Us Section - Mobile Optimized */
.vivid-led-advantages {
  background: #f8fafc;
  padding: 3rem 1rem;
  text-align: center;
}

.vivid-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Mobile First Approach */
.vivid-section-heading {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  color: #1e293b;
  line-height: 1.3;
}

.vivid-brand-highlight {
  color: #3b82f6;
  position: relative;
  display: inline-block; /* Better for mobile highlighting */
}

.vivid-brand-highlight::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #a855f7);
}

.vivid-section-tagline {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 2.5rem;
}

.vivid-benefits-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.vivid-advantage-card {
  background: white;
  border-radius: 12px;
  padding: 1.75rem 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  margin: 0 auto;
  max-width: 100%;
}

.vivid-icon-wrapper {
  margin-bottom: 1.25rem;
}

.vivid-glow-icon {
  width: 50px; /* Reduced from 70px */
  height: 50px; /* Reduced from 70px */
  stroke: #1e293b;
  filter: 
    drop-shadow(0 0 6px rgba(59, 130, 246, 0.3))
    drop-shadow(0 0 10px rgba(59, 130, 246, 0.15));
}

.vivid-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #1e293b;
}

.vivid-card-description {
  color: #64748b;
  line-height: 1.5;
  font-size: 0.95rem;
  text-align: left;
  padding: 0 0.5rem;
}

/* Tablet and Desktop Adjustments */
@media (min-width: 768px) {
  .vivid-led-advantages {
    padding: 4rem 2rem;
  }
  
  .vivid-section-heading {
    font-size: 2.5rem;
  }
  
  .vivid-benefits-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .vivid-glow-icon {
    width: 60px;
    height: 60px;
  }
}

@media (min-width: 992px) {
  .vivid-benefits-container {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .vivid-section-heading {
    font-size: 2.75rem;
  }
  
  .vivid-brand-highlight::after {
    bottom: -5px;
    height: 3px;
  }
  
  .vivid-glow-icon {
    width: 70px;
    height: 70px;
  }
  
  .vivid-card-description {
    text-align: justify;
    text-justify: inter-word;
    padding: 0;
  }
}

.vivid-icon-image {
  width: 50px; /* or any size you prefer */
  height: auto;
}
