.banner-card {
  position: relative;
  width: 100%;
  max-width: 1200px; /* control width */
  height: 250px; /* fixed height */
  margin: 100px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.banner-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps image proportion while filling */
  display: block;
  filter: brightness(75%);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.banner-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner-card-overlay h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

/* Hover Effect */
.banner-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.banner-card:hover .banner-card-img {
  transform: scale(1.05);
  filter: brightness(90%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  display: none;
}

html,body {
  width: 100%;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  background-color: #000000;
  color: white;
  overflow-x: hidden;
  overflow-y: auto;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 5%;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(10px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.navbar ul li a {
  text-decoration: none;
  color: #ccc;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.navbar ul li a:hover {
  color: #f6751f;
}

 .cta-nav-btn {
  background: linear-gradient(90deg, #f6751f, #f6751f);
  color: #ffffff !important; /* black text for contrast */
  padding: 0.4rem 1rem;
  border-radius: 6px;
  transition: 0.3s ease;
  border: none;
}

/* Hover effect: reverse gradient */
.cta-nav-btn:hover {
  background: linear-gradient(90deg, #f6751f, #f6751f);
  color: #fff8f8 !important;
}
@media (max-width: 768px) {
  .cta-nav-btn {
   
    width: 300px !important;
    text-align: center !important;

  }

  .banner-card{
    height: 200px;
    width: 350px;
  }
}


/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
  overflow: hidden;
}

#particles-js,
.central-swirl {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
  max-width: 100vw;
  max-height: 100vh;
}

.central-swirl {
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: conic-gradient(
    from 0deg,
    rgba(255, 0, 255, 0.5),
    rgba(0, 119, 255, 0.5),
    rgba(255, 0, 200, 0.5),
    rgba(0, 255, 255, 0.5),
    rgba(255, 0, 255, 0.5)
  );
  border-radius: 50%;
  filter: blur(150px);
  animation: swirl 20s linear infinite;
  z-index: 1;
  opacity: 0.7;
}

@keyframes swirl {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin-top: 60px;
  padding: 1rem;
}

.label {
  display: inline-block;
  background: #f6751f;
  color: white;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
}

.hero-content h1 span {
  color: #f6751f;
}

.hero-content p {
  font-size: 1.2rem;
  color: #cccccc;
  margin: 1rem 0 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn.primary {
  background: #f6751f;
  color: white;
}

.btn.secondary {
  background: #1a1a1a;
  border: 1px solid #f6751f;
  color: #ffffff;
}

.btn.primary:hover {
  background: #f6751f;
}

.btn.secondary:hover {
  background: #2c2c2c;
  color: #d6b0ff;
}

/* Responsive */
@media(max-width: 992px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .central-swirl {
    width: 600px;
    height: 600px;
  }
}

@media(max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .central-swirl {
    width: 400px;
    height: 400px;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar ul {
    flex-direction: column;
    width: 100%;
    padding-top: 1rem;
    gap: 1rem;
  }

  .navbar ul li {
    width: 100%;
  }

  .navbar ul li a {
    display: block;
    width: 100%;
    font-size: 1rem;
    padding: 0.5rem 0;
  }
}

@media(max-width: 480px) {
  .hero-content h1 {
    font-size: 1.7rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.4rem;
  }

  .central-swirl {
    width: 400px;
    height: 400px;
    filter: blur(60px);
  }
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
}

#nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  #nav-menu.show {
    display: flex;
  }

  .navbar {
    flex-direction: row;
    justify-content: space-between;
  }

  #nav-menu {
    position: absolute;
    top: 60px;
    left: 0;
    background: #0a0a0a;
    flex-direction: column;
    width: 100%;
    padding: 2rem 1.5rem;
    display: none;
    z-index: 998;
  }

  .logo {
    z-index: 1000;
  }
}

/* About Section */
.about {
  padding: 6rem 10%;
  background: #0a0a0a;
  color: #ffffff;
  text-align: left;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.about-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.about-heading h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  position: relative;
}

.highlight-bar {
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #f6751f, #d6b0ff);
  margin: 0 auto 1rem;
  border-radius: 20px;
}

.subhead {
  color: #cccccc;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  line-height: 1.6;
}

.about-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}

.about-text {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffffff;
  background: rgba(255, 183, 2, 0.05);
  border: 1px solid rgba(255, 247, 0, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 0 50px rgba(255, 154, 3, 0.2);
  position: relative;
  transition: all 0.3s ease;
}

.about-text::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(143, 48, 255, 0.15), rgba(214, 176, 255, 0.1));
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}

.about-text p {
  position: relative;
  z-index: 1;
}

.about-text:hover {
  box-shadow: 0 0 70px rgba(143, 48, 255, 0.35);
}

.about-container {
  position: relative;
  z-index: 2;
}

.about-swirl {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: conic-gradient(
    from 0deg,
    rgba(143, 48, 255, 0.4),
    rgba(214, 176, 255, 0.4),
    rgba(143, 48, 255, 0.4),
    rgba(214, 176, 255, 0.4),
    rgba(143, 48, 255, 0.4)
  );
  border-radius: 50%;
  filter: blur(180px);
  animation: swirl 30s linear infinite;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
  overflow: hidden;
}

.about-lottie {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  height: 300px;
}


#about-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
    overflow: hidden;
}

#use-case-particles{
   position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
    overflow: hidden;
}

#testimonial-particles{
 position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
    overflow: hidden;
}


#features-particles{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
    overflow: hidden;
}


@media (max-width: 992px) {
  .about-grid {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    font-size: 1rem;
  }

  .about-heading h2 {
    font-size: 2.2rem;
  }

  .about-lottie {
    max-width: 400px;
    margin: 0 auto;
  }

}


  .responsive-lottie {
    width: 500px;    
    height: 5500px;   
    display: block;
    margin: 0 auto;
  }

  @media screen and (max-width: 768px) {
    .responsive-lottie {
      width: 300px;
      height: 300px;
    }
  }


 .responsive-lottie,
 .responsive-lottie {
  min-height: 300px;
  min-width: 300px;
  max-height: 300px;
  max-width: 300px;
  overflow: hidden;
}

 .abouts-lottie {
    width: 500px;    /* ⬅️ Increase this value as needed */
    height: 500px;   /* ⬅️ Same here */
    display: block;
    margin: 0 auto;
  }

  @media screen and (max-width: 768px) {
    .abouts-lottie{
      width: 300px;
      height: 300px;
    }
  }

.zigzag-services {
    /* max-width: 1200px;
    margin: auto;
    padding: 80px 20px; */
      padding: 6rem 10%;
  background: #0a0a0a;
  color: #ffffff;
  text-align: left;
  position: relative;
  overflow: hidden;
  z-index: 2;
  }

  .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
  }

  .section-subtext {
    text-align: center;
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 60px;
  }

  .zigzag-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    flex-wrap: wrap;
    gap: 40px;
  }

  .zigzag-row.reverse {
    flex-direction: row-reverse;
  }

  .zigzag-text {
    flex: 1;
    min-width: 280px;
  }

  .zigzag-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #f6751f;
  }

  .zigzag-text p {
    font-size: 1.1rem;
    color: #ccc;
  }

  .zigzag-lottie {
    flex: 1;
    max-width: 400px;
    min-width: 280px;
  }

  lottie-player {
    width: 100%;
    height: auto;
  }

  @media screen and (max-width: 768px) {
    .zigzag-row,
    .zigzag-row.reverse {
      flex-direction: column;
      text-align: center;
    }
  }


  
.zigzag-text {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffffff;
  background: rgba(143, 48, 255, 0.05);
  border: 1px solid rgba(214, 176, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 0 50px rgba(143, 48, 255, 0.2);
  position: relative;
  transition: all 0.3s ease;
}

.zigzag-text::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(143, 48, 255, 0.15), rgba(214, 176, 255, 0.1));
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}

.zigzag-text p {
  position: relative;
  z-index: 1;
}

.zigzag-text:hover {
  box-shadow: 0 0 70px rgba(143, 48, 255, 0.35);
}

/* Particle background */
#service-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
    overflow: hidden;
}


.zigzag-services {
  position: relative;
  z-index: 2;
  background: #0a0a0a;
  overflow: hidden;
}


/* Swirl effect behind each text box */
.zigzag-text {
  position: relative;
  z-index: 1;
  background: rgba(143, 48, 255, 0.05);
  border: 1px solid rgba(214, 176, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 0 50px rgba(143, 48, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.zigzag-text::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle, rgba(255,0,200,0.15), rgba(0,255,255,0.05), transparent 70%);
  filter: blur(60px);
  z-index: 0;
  border-radius: 50%;
  animation: swirlMove 10s linear infinite alternate;
}

.zigzag-text p, .zigzag-text h3 {
  position: relative;
  z-index: 1;
}

@keyframes swirlMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(30px, 20px);
  }
}
.section-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(90deg, #f6751f, #f6751f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtext {
  font-size: 18px;
  color: #ccc;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.5;
}

  .use-cases-row-section {
  background: #0d0d0d;
  padding: 120px 20px 80px; /* Increased top padding */
  text-align: center;
  overflow: visible; /* Ensure glow isn't clipped */
  position: relative;
  z-index: 1;
}

.use-cases-row {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 20px;
  padding-top: 20px;

}





  .features-section {
  padding: 80px 20px;
  background-color: #0a0a0a;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.section-subtext {
  font-size: 18px;
  color: #bbb;
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.feature-box {
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 25px;
  color: #f0f0f0;
  transition: 0.3s ease;
}

.feature-box h3 {
  font-size: 20px;
  color: #f6751f;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 15px;
  color: #ccc;
}

.feature-box:hover {
  background: #1a1a1a;
  transform: translateY(-5px);
  box-shadow: 0 0 12px rgba(255, 213, 0, 0.15);
}

.testimonial-section {
  background: #0a0a0a;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial-container {
  max-width: 900px;
  margin: auto;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.swirl-text {
  background: linear-gradient(135deg, #fde000, #f6751f, #ec960d);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: swirl 10s ease infinite;
}

@keyframes swirl {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.section-subtitle {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 40px;
}

.testimonial-carousel {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.testimonial-item {
  min-width: 100%;
  box-sizing: border-box;
  padding: 30px;
  background: #1a1a1a;
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-item.active {
  opacity: 1;
}

.testimonial-item .quote {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 20px;
  color: #dcdcdc;
}

.testimonial-item .author {
  font-weight: 700;
  color: #fff;
}

.testimonial-item .role {
  font-size: 0.9rem;
  color: #aaa;
}

.testimonial-controls {
  margin-top: 20px;
}

.testimonial-controls button {
  background: #f6751f;
  color: #fff;
  border: 1px solid #333;
  padding: 10px 16px;
  margin: 0 5px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.testimonial-controls button:hover {
  background: #333;
}


.testimonial-item {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffffff;
  background: rgba(251, 215, 9, 0.05);
  border: 1px solid rgba(255, 208, 0, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 0 50px rgba(255, 208, 0, 0.2);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-item::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 153, 0, 0.15), rgba(235, 170, 72, 0.1));
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}

.testimonial-item p {
  position: relative;
  z-index: 1;
}

.testimonial-item:hover {
  box-shadow: 0 0 70px rgba(255, 196, 0, 0.35);
}

.testimonial-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  box-shadow: 0 0 15px rgba(255, 162, 0, 0.6),
              0 0 30px rgba(252, 208, 12, 0.4),
              0 0 45px rgba(255, 250, 0, 0.2);
  transition: box-shadow 0.3s ease;
}



.testimonial-item {
  text-align: center;
  padding: 20px;
}




  .footer {
  position: relative;
  background: linear-gradient(135deg, #0f0f0f, #1e1e2f);
  color: #ffffff;
  padding: 60px 20px 30px;
  overflow: hidden;
  z-index: 1;
}

.footer-particle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 255, 255, 0.1), transparent 60%),
              radial-gradient(circle at 70% 60%, rgba(255, 0, 255, 0.1), transparent 60%);
  animation: float-glow 10s infinite alternate;
  z-index: 0;
  pointer-events: none;
}


#footer-particles{
   position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
    overflow: hidden;
}

@keyframes float-glow {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-20px); }
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-logo h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #f6751f;
  text-shadow: 0 0 10px #f6751f;
}

.footer-logo p {
  color: #ccc;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 15px;
  color: #fff;
}
.footer-contact {
  background: rgba(0, 255, 160, 0.08);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(235, 190, 9, 0.4), 0 0 30px rgba(239, 152, 2, 0.2);
  transition: all 0.3s ease;
  width: 500px;
}

.footer-contact:hover {
  box-shadow: 0 0 25px rgba(244, 145, 8, 0.6), 0 0 45px rgba(248, 187, 3, 0.4);
  transform: translateY(-4px);
}


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

.footer-links ul li a {
  color: #aaa;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #f6751f;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  border-radius: 4px;
}

.footer-form button {
  background: #f6751f;
  color: #000;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-form button:hover {
  background: #f6751f;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: #888;
}

.brand-glow {
  color: #e5c511;
  text-shadow: 0 0 10px #f6751f;
}

/* Social Media Icons */
.social-links {
  margin-top: 15px;
}

.social-links a {
  display: inline-block;
  margin-right: 10px;
  color: #f6751f;
  font-size: 20px;
  transition: transform 0.3s;
}

.social-links a:hover {
  transform: scale(1.2);
}

.glow-heading {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  text-shadow: 0 0 10px #f6751f, 0 0 20px #f6751f;
}

.funky-form .form-group {
  margin-bottom: 1rem;
}

.funky-form input,
.funky-form textarea {
  width: 100%;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 8px;
  transition: 0.3s;
  outline: none;
  font-size: 0.95rem;
}

.funky-form input:focus,
.funky-form textarea:focus {
  border-color: #f6751f;
  box-shadow: 0 0 8px #f6751f;
}

.glow-button {
  background: linear-gradient(135deg, #f6751f, #f6751f);
  color: #000;
  font-weight: bold;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 0 10px #f6751f, 0 0 20px #f6751f;
}

.glow-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #f6751f, 0 0 30px #f6751f;
}


  .cta-section {
  background: radial-gradient(circle at center, #111111 0%, #000000 100%);
  padding: 5rem 1rem;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 245, 160, 0.15), transparent 70%);
  filter: blur(80px);
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-buttons {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn.outline {
  background: transparent;
  border: 1px solid #f6751f;
  color: #f6751f;
  transition: all 0.3s ease;
}

.btn.outline:hover {
  background: #f6751f;
  color: #000;
}

.glow-button {
  box-shadow: 0 0 15px rgba(255, 191, 0, 0.6);
}

#cta-section {
  width: 400px;
  height: 400px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #cta-section {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 480px) {
  #cta-section {
    margin-top: -50px;
    width: 200px;
    height: 200px;
  }
}
.logo a {
  text-decoration: none;
  color: inherit; /* Optional: uses parent text color */
}

