/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Fonts */
  body {
    font-family: 'Montserrat', sans-serif;
    background-color: #111;
    color: white;
  }
  
  /* Navbar */
  .navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  }
  
  .logo {
    display: flex;
    align-items: center;
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    gap: 10px;
  }
  
  .logo img {
    width: 30px;
    height: 30px;
  }
  
  .logo a {
    text-decoration: none;
    color: #fff;
    letter-spacing: 1px;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.3s ease;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #ccc;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
  }
  
  .nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #00ff91;
    transition: 0.4s ease;
  }
  .nav-links a:hover {
    background-color: rgba(0, 255, 136, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: #00ff91;
  }
  
  .nav-links a:hover::after,
  .nav-links a.active::after {
    width: 100%;
  }
  
  .cta-btn {
    background: linear-gradient(135deg, #00ff91, #00b386);
    color: #111 !important;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    animation: pulse 1.8s infinite;
  }
  
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0,255,145,0.6); }
    70% { box-shadow: 0 0 0 10px rgba(0,255,145,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,255,145,0); }
  }
  
  /* Mobile */
  .menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
  }
  
  .menu-toggle i {
    color: white;
    width: 28px;
    height: 28px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 70%;
      background: grey;
      flex-direction: column;
      padding-top: 80px;
      gap: 20px;
      transition: right 0.4s ease;
    }
  
    .nav-links.open {
      right: 0;
    }
  
    .menu-toggle {
      display: block;
    }
  
    .cta-btn {
      margin-top: 10px;
    }
  }
  
  /* WhatsApp Floating Icon */
  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    padding: 12px;
    border-radius: 50%;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
  }
  
  .whatsapp-float i {
    color: white;
    width: 24px;
    height: 24px;
  }

  .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: white;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }
  
  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.4);
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
  }
  
  .hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
  }
  
  .hero-left {
    flex: 1 1 500px;
  }
  
  .typing-text {
    font-size: 3rem;
    font-weight: bold;
    color: #00ff88;
    white-space: nowrap;
  }
  
  .subheading {
    margin: 1rem 0;
    font-size: 1.2rem;
    max-width: 500px;
    color: #eee;
  }
  
  .hero-buttons {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  
  .btn {
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .btn-glow {
    background: #00ff88;
    color: #111;
    box-shadow: 0 0 15px #00ff88, 0 0 30px #00ff88;
    animation: pulse 1.8s infinite;
  }
  
  .btn-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #00ff88, 0 0 40px #00ff88;
  }
  
  .btn-outline {
    border: 2px solid #00ff88;
    color: #00ff88;
    background: transparent;
  }
  
  .btn-outline:hover {
    background: #00ff88;
    color: #111;
  }
  
  .hero-right .hero-image {
    max-width: 450px;
    width: 100%;
    filter: brightness(1.2);
    justify-content: center;
  }

  .hero-banner {
  margin-top: 2rem;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
  position: relative;
  top: 150px;
}

.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(1.1);
  transition: transform 0.3s ease;
  
  
}

.hero-banner img:hover {
  transform: scale(1.03);
}

  
  .scroll-down {
    position: absolute;
    bottom: 2rem;
    font-size: 1.2rem;
    color: #00ff88;
    text-decoration: none;
    animation: bounce 2s infinite;
  }
  
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0,255,145,0.6); }
    50% { box-shadow: 0 0 20px rgba(0,255,145,0.4), 0 0 40px rgba(0,255,145,0.2); }
    100% { box-shadow: 0 0 0 0 rgba(0,255,145,0); }
  }
  
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .hero-left, .hero-right {
      flex: 1 1 100%;
    }
  
    .typing-text {
      font-size: 2.2rem;
      font-weight: bold;
      white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
    }
    @media (max-width: 768px) {
      .typing-text {
        font-size: 2rem; /* Adjusted for mobile */
        white-space: normal; /* Allow wrapping */
        text-align: center;
      }
    }
  
    .hero-right .hero-image {
      margin-top: 2rem;
      max-width: 320px;
    }
    .hero {
    padding-top: 70px;
  }
  }

 
  


  /* Already existing styles from previous code remain the same, add below extras */

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -3;
}

/* 🌐 Social Icons */
.social-icons {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 2;
}

.social-icons a {
  font-size: 1.3rem;
  color: #00ff88;
  background: rgba(255, 255, 255, 0.1); /* semi-light glassy */
  backdrop-filter: blur(8px);
  padding: 0.6rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.social-icons a:hover {
  transform: scale(1.2);
  color: black;
  background: #00ff88;
}

/* 🧊 Glassmorphism Badges */
.badges {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.badge-glass {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  color: #fff;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

/* About Section */
.about-section {
  width: 100%;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f0f0f, #111);
  color: white;
  position: relative;
  overflow: hidden;
}

/* Container */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

/* Columns */
.about-left,
.about-right {
  flex: 1 1 45%;
}

/* Image Styling */
.image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.2);
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.8);
  border-radius: 20px;
}

/* Title */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
  position: relative;
}

.section-title span {
  color: #00ff88;
}

.highlight-bar {
  display: inline-block;
  width: 50px;
  height: 4px;
  background: #00ff88;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 2px;
}

/* Intro Text */
.about-intro {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Features List */
.about-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.about-features li {
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  color: #eee;
}

.about-features i {
  color: #00ff88;
  margin-right: 10px;
}

/* Tagline */
.about-quote {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #00ff88;
}

/* CTA Button */
.btn-glow {
  background: #00ff88;
  color: #000;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 30px;
  transition: 0.3s ease;
  box-shadow: 0 0 12px #00ff88a0;
  text-decoration: none;
}

.btn-glow:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00ff88;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .about-left,
  .about-right {
    flex: 1 1 100%;
  }

  .section-title {
    font-size: 2rem;
    text-align: center;
  }

  .btn-glow {
    display: inline-block;
    margin: auto;
  }
}

/* 🌌 Programs Section */
.programs-section {
  background: linear-gradient(135deg, #0f0f0f, #111);
  padding: 80px 20px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  position: relative;
  color: #00ff88;
}

.highlight-bar {
  display: block;
  height: 4px;
  width: 60px;
  background: #00ff88;
  margin: 0 auto 16px auto;
  border-radius: 6px;
}

.section-header p {
  color: #ccc;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Program Cards */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.program-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.1);
  text-align: center;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.2);
}

.program-card h3 {
  margin-top: 16px;
  font-size: 1.3rem;
  color: #00ff88;
}

.program-card p {
  font-size: 0.95rem;
  margin-top: 10px;
  color: #ccc;
}

.icon-box {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(0, 255, 136, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.icon-box i {
  stroke: #00ff88;
  stroke-width: 2;
  width: 28px;
  height: 28px;
}

/* Responsive */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2.2rem;
  }
  .program-card {
    padding: 24px;
  }
}

.trainers-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f0f0f, #111);
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.neon-text {
  color: #00ff88;
  text-shadow: 0 0 10px #00ff88, 0 0 20px #00ff88;
}

.section-subtext {
  color: #ccc;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

.trainers-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trainer-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 300px;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.trainer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
}

.trainer-img img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
  height: auto;
  object-fit: contain;
  background-color: #111;
}

.trainer-card h3 {
  font-size: 1.4rem;
  color: #00ff88;
  margin-bottom: 0.3rem;
}

.trainer-card p {
  color: #ddd;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.trainer-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.trainer-icons i {
  color: #00ff88;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.trainer-icons i:hover {
  background: #00ff88;
  color: #111;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .trainers-grid {
    flex-direction: column;
    align-items: center;
  }

  .trainer-card {
    width: 90%;
  }
}

/* .gallery-section {
  background: linear-gradient(180deg, #0f0f0f, #111);
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #00ff88;
  margin-bottom: 10px;
  position: relative;
  font-family: 'Bebas Neue', cursive;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #00ff88;
  margin: 8px auto 20px auto;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 0 10px;
}

.gallery-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
} */

.gallery-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #0f0f0f, #111);
  color: #fff;
  text-align: center;
}

.gallery-title h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #00ff88;
  font-family: 'Bebas Neue', cursive;
}

.gallery-title p {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1rem;
  color: #ccc;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .gallery-title h2 {
    font-size: 2rem;
  }

  .gallery-title p {
    font-size: 0.95rem;
  }
}

/* transforming */
.transformation-section {
  background: #0a0a0a;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.transformation-section .section-title {
  font-size: 2.5rem;
  color: #00ff99;
  margin-bottom: 10px;
  font-weight: bold;
}

.transformation-section .section-subtitle {
  color: #aaa;
  margin-bottom: 40px;
}

.transformation-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.transformation-card {
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid rgba(0, 255, 153, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.transformation-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.transformation-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 15px rgba(0, 255, 153, 0.3);
}

.transformation-card:hover img {
  transform: scale(1.1);
}




/* Pricing Section Styling */
.pricing-section {
  background: #0a0a0a;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.pricing-section .section-title {
  font-size: 2.5rem;
  color: #00ff99;
  margin-bottom: 10px;
  font-weight: bold;
}

.pricing-section .section-subtitle {
  color: #aaa;
  margin-bottom: 40px;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 153, 0.3);
  border-radius: 10px;
  padding: 30px;
  flex: 1 1 300px;
  max-width: 350px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 15px rgba(0, 255, 153, 0.3);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #00ff99;
}

.pricing-card .batch-time {
  font-size: 0.9rem;
  color: #ddd;
  margin-bottom: 15px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.pricing-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

.join-btn {
  background: #00ff99;
  color: #000;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.join-btn:hover {
  background: #00cc77;
  color: #fff;
}

.pricing-card.highlight {
  border: 2px solid #00ff99;
  box-shadow: 0 0 20px rgba(0, 255, 153, 0.5);
}

/* Why to choose us */
/* Why Choose Us Section */
.why-choose-us {
  background: #0a0a0a; /* Dark background matching the rest */
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.why-choose-us .container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-us .section-title {
  font-size: 2.5rem;
  color: #00ff99; /* Vibrant green accent */
  margin-bottom: 10px;
  font-weight: 700;
}

.why-choose-us .section-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 50px;
}

.why-choose-us .features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.why-choose-us .feature {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 153, 0.2);
  padding: 30px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.why-choose-us .feature:hover {
  transform: translateY(-10px);
  border-color: #00ff99;
}

.why-choose-us .feature i {
  font-size: 2.5rem;
  color: #00ff99;
  margin-bottom: 15px;
  display: inline-block;
}

.why-choose-us .feature h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
}

.why-choose-us .feature p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .why-choose-us {
    padding: 60px 15px;
  }

  .why-choose-us .section-title {
    font-size: 2rem;
  }

  .why-choose-us .section-subtitle {
    font-size: 1rem;
  }
}








/* testimonials */
.testimonials-section {
  padding: 100px 20px;
  background: linear-gradient(145deg, #0f0f0f, #111);
  color: #fff;
  position: relative;
  text-align: center;
}

.section-title {
  text-align: end;
  font-size: 2.5rem;
  font-family: 'Bebas Neue', sans-serif;
  color: #00ff88;
  margin-bottom: 40px;
  position: relative;
}

.neon-bar {
  width: 80px;
  height: 4px;
  background: #00ff88;
  margin: 10px auto 0;
  box-shadow: 0 0 10px #00ff88;
}

.testimonials-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 30px;
  max-width: 340px;
  flex: 1 1 280px;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.3);
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #00ff88;
  opacity: 0.2;
}

.testimonial-text {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 30px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #00ff88;
}

.user-info h4 {
  font-size: 1.1rem;
  margin: 0;
  color: #00ff88;
}

.user-info span {
  font-size: 0.9rem;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    max-width: 90%;
  }
}

.location-section {
  background: linear-gradient(135deg, #0f0f0f, #111);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.section-title {
  font-size: 2.5rem;
  color: #00ff88;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 3px;
  background: #00ff88;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  border-radius: 10px;
}

.section-subtitle {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }
}


.contact h2 {
  margin-bottom: 3rem;
  justify-content: center;
  text-align: center;
  color: #00ff88;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
}

.contact form {
  max-width: 70rem;
  margin: 1rem auto;
  text-align: center;
  margin-bottom: 3rem;
}

.contact form .input-box{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

}

.contact form .input-box input,
.contact form textarea {
  width: 100%;
  padding: 1.5rem;
  font-size: 1.6rem;
  color: #00ff88;
  background: var(--second-bg-color);
  border-radius: .8rem;
  margin: .7rem 0;
}

.contact form .input-box input {
  width: 49%;
}

.contact form textarea {
  resize: none;
}

.contact form .btn {
  margin-top: 2rem;
  cursor: pointer;
  background-color: #00ff88;

}

.footer {
  background: linear-gradient(145deg, #0f0f0f, #111);
  color: #eee;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer h2, .footer h3 {
  color: #00ff88;
  margin-bottom: 15px;
}

.footer p, .footer li, .footer a {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
  text-decoration: none;
}

.footer li {
  list-style: none;
  margin-bottom: 10px;
}

.footer a:hover {
  color: #00ff88;
}

.footer-brand p {
  max-width: 280px;
}

.footer .social-icons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.footer .social-icons a {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 50%;
  color: #00ff88;
  transition: 0.3s ease;
}

.footer .social-icons a:hover {
  background: #00ff88;
  color: #111;
  transform: scale(1.1);
}

.footer-newsletter form {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-newsletter input {
  flex: 1;
  padding: 10px 15px;
  border-radius: 25px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.footer-newsletter button {
  background: #00ff88;
  border: none;
  padding: 0 15px;
  border-radius: 25px;
  cursor: pointer;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.footer-newsletter button:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  position: relative;
}

.scroll-top {
  position: absolute;
  right: 30px;
  top: -10px;
  background: #00ff88;
  padding: 10px;
  border-radius: 50%;
  color: #111;
  transition: 0.3s;
}

.scroll-top:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-newsletter form {
    flex-direction: column;
  }

  .footer-newsletter input, .footer-newsletter button {
    width: 100%;
  }

  .scroll-top {
    position: relative;
    top: 10px;
    right: 0;
    margin-top: 10px;
  }
}

.footer-bottom .dev-credit {
  font-size: 0.85rem;
  color: #888;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-bottom .dev-credit a {
  color: #00ff88;
  text-decoration: none;
  transition: 0.3s;
}

.footer-bottom .dev-credit a:hover {
  color: #fff;
}

.footer-contact-icon i {
  width: 16px;
  height: 16px;
  color: #00ff88;
  margin-right: 4px;
}
