    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    html, body {
      height: 100%;
    }
    body {
      font-family: 'Rethink Sans', sans-serif;
      background-color: #00041F;
      color: white;
    }
    header {
      background: linear-gradient(to right, #00020F, #00041F);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      position: relative;
      /* Removed borders as per request */
      /* border-top: 1px solid rgba(255, 255, 255, 0.1);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
    }
    .logo {
      flex: 1;
      font-weight: bold;
      font-size: 1.5rem;
      color: #ffffff;
      user-select: none;
    }

  

    nav {
      flex: 2;
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      background-color: rgba(25, 78, 255, 0.1);
      border: 1px solid rgba(25, 78, 255, 0.3);
      border-radius: 30px;
      padding: 0.5rem 1rem;
      opacity: 0.8;
      transition: all 0.3s ease;
    }
    nav a {
      color: white;
      text-decoration: none;
      padding: 0.5rem 1rem;
      border-radius: 30px;
      transition: background 0.3s ease, color 0.3s ease;
      user-select: none;
    }
    nav a:hover {
      background: #194Eff;
      color: white;
    }
    .contact {
      flex: 1;
      text-align: right;
    }
    .contact a {
      background-color: #194Eff;
      color: white;
      padding: 0.5rem 1.3rem;
      font-size: 1rem;
      border: none;
      border-radius: 30px;
      text-decoration: none;
      cursor: pointer;
      user-select: none;
      transition: background 0.3s ease;
    }
    .contact a:hover {
      background-color: #0038cc;
    }

    @media (max-width: 768px) {
  nav.open {
    max-height: 500px;
    padding: 1rem 0;
    border-left: 1px solid rgba(25, 78, 255, 0.4) !important;
    border-bottom: 1px solid rgba(25, 78, 255, 0.4) !important;
  }
   .logo img {
  width: 65px;
  height: auto;
}
}

/* ----banner section----- */

/* ========= Desktop / Default ========= */
.banner {
  position: relative;
  background: url('banner-background.jpg') no-repeat center center / cover;
  color: white;
  overflow: hidden;
  padding: 100px 2rem 40px; /* Top, sides, bottom */
}

.banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  flex-direction: row;
}

.banner-text {
  flex: 1;
  min-width: 300px;
  order: 1;
}

.banner-text h1 {
  font-size: 2.8rem;
  color: #194Eff;
  margin-bottom: 1rem;
}

.banner-text p {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 2rem;
  color: #ffffff;
  line-height: 1.6;
}

.banner-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.banner-buttons .primary,
.banner-buttons .secondary {
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.banner-buttons .primary {
  background-color: #194Eff;
  color: white;
  border: none;
}

.banner-buttons .primary:hover {
  background-color: #0038cc;
}

.banner-buttons .secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.banner-buttons .secondary:hover {
  background-color: white;
  color: #194Eff;
}

.banner-image {
  flex: 1;
  min-width: 300px;
  order: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-image svg {
  max-width: 100%;
  height: auto;
  transition: transform 1s ease;
}

.banner-image svg.animated {
  transform: scale(1.05) rotate(3deg);
}

/* ========= Mobile Responsive ========= */
@media (max-width: 768px) {
  .banner-content {
    flex-direction: column;
    gap: 2rem;
  }

  .banner {
    padding: 100px 1.5rem 40px;
    text-align: center;
  }

  .banner-text {
    order: 2;
    width: 100%;
  }

  .banner-text h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .banner-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }

  .banner-buttons {
    justify-content: center;
    gap: 0.8rem;
  }

  .banner-buttons .primary,
  .banner-buttons .secondary {
    width: 100%;
    max-width: 250px;
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
  }

  .banner-image {
    order: 1;
    width: 100%;
  }

  .banner-image svg {
    max-width: 90%;
  }
}









    /* Hamburger for mobile */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
      user-select: none;
    }
    .hamburger div {
      width: 25px;
      height: 3px;
      background-color: white;
      border-radius: 2px;
      transition: all 0.3s ease;
    }
    .hamburger.active div:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active div:nth-child(2) {
      opacity: 0;
    }
    .hamburger.active div:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Responsive */
    @media (max-width: 768px) {
      header {
        padding: 1rem 1rem;
      }
      .logo {
        flex: 1;
        font-size: 1.3rem;
      }
      nav {
        position: fixed;
        top: 60px;
        right: 0;
        background: #00041F;
        flex-direction: column;
        gap: 0;
        border-radius: 0 0 0 8px;
        width: 220px;
        max-height: 0;
        overflow: hidden;
        padding: 0 !important;
        border: none !important;
        margin: 0 !important;
        box-shadow: none !important;
        opacity: 1;
        transition: max-height 0.3s ease, padding 0.3s ease, border 0.3s ease;
        z-index: 1000;
      }
      nav.open {
        max-height: 500px;
        padding: 1rem 0;
        border-left: 1px solid rgba(25, 78, 255, 0.4);
      }
      nav a {
        padding: 0.8rem 1.2rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }
      nav a:last-child {
        border-bottom: none;
      }
      .contact {
        display: none;
      }
      .hamburger {
        display: flex;
      }
    }


/* portfolio */ 

    .portfolio {
  padding: 4rem 100px;
  text-align: center;
  background-color: #00041F;
}

.portfolio h2 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 2rem;
}

.portfolio-tabs {
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.portfolio-tabs .tab {
  background: transparent;
  color: white;
  border: 1px solid #194Eff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
}

.portfolio-tabs .tab.active,
.portfolio-tabs .tab:hover {
  background-color: #194Eff;
  color: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  background: #0b0f2a;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: scale(1.03);
}

.portfolio-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}


.portfolio-item p {
  padding: 1rem;
  font-size: 1rem;
  color: #ffffff;
}
.portfolio-item p a {
  color: #fff;
}
.more-button {
  margin-top: 2rem;
}

.more-button a {
  background-color: #194Eff;
  padding: 0.7rem 1.5rem;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.more-button a:hover {
  background-color: #0038cc;
}

/* ✅ Responsive Tweaks */
@media (max-width: 768px) {
  .portfolio {
    padding: 40px 20px 70px 20px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr); /* Show 2 columns on mobile */
    gap: 1rem;
  }

  .portfolio h2 {
    font-size: 1.8rem;
  }

  .portfolio-tabs .tab {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    font-size: 12px;
  }
  

  .portfolio-item img {
    height: 150px;
  }

  .portfolio-item p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: repeat(1, 1fr); /* Optional: show 1 column on very small devices */
  }
}


@media (max-width: 768px) {
  .portfolio-tabs .tab {
    flex: 1 1 calc(33.33% - 10px);
    max-width: calc(33.33% - 10px);
    
    padding: 0.4rem 0.5rem;
  }
}


/* portfolio  end */ 



/* Smaller screens */



























    /* Section wrapper */





/* again css why us */

.why-us-section {
  background-color: #f5f7ff;
  padding: 60px 100px;
  text-align: center;
}

.why-us-section .section-title {
  font-size: 2.2rem;
  color: #00041F;
  margin-bottom: 40px;
  font-weight: 700;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-us-card {
  position: relative;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 60px 20px 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: visible;
  text-align: left;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.why-us-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 18px rgba(25, 78, 255, 0.1);
  border: 2px solid #194eff;
}

.icon-wrapper {
  position: absolute;
  top: -30px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: #194eff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.icon-wrapper img {
  width: 28px;
  height: 28px;
}

.card-body {
  margin-top: 30px;
}

.card-body h3 {
  font-size: 1.2rem;
  color: #0b0f2a;
  font-weight: bold;
  margin-bottom: 10px;
}

.card-body p {
  color: #0b0f2a;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 992px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 778px) {
    .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  .why-us-section {
    padding: 40px 40px;
  }
  .icon-wrapper {
  width: 46px;
  height: 46px;
  border: 1px solid white;

}

}

@media (max-width: 576px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-section {
    padding: 30px 20px;
  }
    .why-us-card {
  margin-bottom: 35px;
  padding: 10px 15px 27px;
  border: 2px solid transparent;
}
.card-body h3 {
  font-size: 16px;
}

  .why-us-section {
    padding: 40px 40px;
  }
  .icon-wrapper {
  width: 46px;
  height: 46px;
  border: 1px solid white;

}
}

















.why-us-card {
  position: relative;
  background-color: #fff;
  border-radius: 16px;
  padding: 60px 20px 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: visible;
  text-align: left;
  border: 1px solid #194eff;  /* Initial border color */
  animation: borderColorAnim 4s linear infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@keyframes borderColorAnim {
  0% {
    border-color: #194eff; /* blue */
  }
  50% {
    border-color: #00041F; /* orange */
  }
  100% {
    border-color: #194eff; /* back to blue */
  }
}

.why-us-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
  /* Keep animation running on hover */
}

.icon-wrapper img {
  width: 28px;
  height: 28px;
  animation: logoPulse 2s cubic-bezier(.25,.1,.71,2.92) infinite;
  filter: hue-rotate(0deg);
  transition: filter 50.9s cubic-bezier(.25,.1,0,1.3);
}

@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
    filter: hue-rotate(0deg);
  }
  50% {
    transform: scale(1.1);
    filter: hue-rotate(45deg);
  }
}











/* why-us-section  Start */ 

.why-us-section {
  background-color: #f5f7ff;
  padding: 60px 100px;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  color: #194eff;
  margin-bottom: 40px;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-us-card {
  position: relative;
  background-color: #fff;
  border-radius: 16px;
  padding: 60px 20px 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.why-us-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
  border-color: #194eff;
}

.icon-wrapper {
  position: absolute;
  top: -30px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: #001dce;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid white;
  z-index: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.icon-wrapper img {
  width: 28px;
  height: 28px;
}

.card-body {
  margin-top: 30px;
}

.card-body h3 {
  font-size: 1.2rem;
  color: #0b0f2a;
  font-weight: bold;
  margin-bottom: 10px;
}

.card-body p {
  color: #666;
  font-size: 0.95rem;
}

/* Tablet: show 2 columns */
@media (max-width: 992px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-section {
    padding: 40px 40px;
  }
    .why-us-section {
    padding: 30px 20px;
    color: red;
  }
    .why-us-card {
  margin-bottom: 35px;
  padding: 10px 15px 27px;
  border: 2px solid transparent;
}
.card-body h3 {
  font-size: 16px;
}

}
@media (max-width: 778px) {
.icon-wrapper {
  top: -25px;
  left: 20px;
  width: 46px;
  height: 46px;
  border: 1px solid white;
  z-index: 1;
  box-shadow: 0 4px 9px rgba(0, 0, 0, 0.15);
}
.why-us-card {
  border-radius: 7px;
  padding: 32px 20px 27px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
}

}

/* Mobile: still 2 columns */
@media (max-width: 576px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .why-us-section {
    padding: 30px 20px;
  }

  .section-title {
    font-size: 1.8rem;
  }
}



/* why-us-section  end  */ 















/* Wrapper Styling */
.services-slider-section {
  background: #00041F;
  color: #ffffff;
  padding: 60px 100px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #ffffff;
}

.slider-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-wrapper {
  overflow: hidden;
  max-width: 1100px;
  width: 100%;
  margin: 5px;
}

.slider-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

/* Card Styling */
.service-card {
  background: #0b102f;
  padding: 25px 20px;
  min-width: 48%;
  border-radius: 12px;
  border: 1px solid #194eff;
  box-shadow: 0 0 20px rgba(25, 78, 255, 0.2);
  text-align: left;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin: 0;
}

.contact-btn {
  background: #022ab3;
  color: white;
  padding: 6px 14px;
  border-radius: 5px;
  font-size: 0.9rem;
  text-decoration: none;
}

.subtitle {
  font-size: 0.95rem;
  margin: 15px 0;
  color: #ccc;
}

.separator {
  height: 1px;
  background: #194eff;
  margin: 10px 0;
  width: 100%;
}

.benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits li {
  padding: 6px 0;
  color: #ffffff;
  font-size: 0.9rem;
  position: relative;
  padding-left: 18px;
}

.benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #194eff;
  font-size: 1rem;
}

/* Navigation Buttons */
.slider-btn {
  background: #0030ce;
  color: white;
  border: none;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 15px;
}

.slider-wrapper:active {
  margin: 3px;
}
@media (max-width: 768px) {
  .service-card {
    min-width: 100%;
  }

  .services-slider-section {
    padding: 40px 10px;
  }
  .service-card h3 {
  font-size: 16px;
}
.contact-btn {
  background: #022ab3;
  color: white;
  padding: 6px 6px;
  border-radius: 5px;
  font-size: 10px;
  text-decoration: none;
}
  .slider-btn {
  padding: 6px 7px;
  margin: 0 5px;
}
.service-card .subtitle {
  font-size: 15px;
  color: #c0faff;
  margin-bottom: 30px;
}

}










.results-section {
  background-color: #00041F;
  color: #ffffff;
  padding: 60px 100px;
}

.results-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1400px;
  margin: auto;
  align-items: center;
}

.results-cards {
  flex: 1 1 55%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.result-card {
  background: linear-gradient(135deg, #194Eff, #00041F);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(25, 78, 255, 0.2);
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.result-card h3 {
  margin: 0;
}

.result-card div {
  font-size: 0.95rem;
  font-weight: 400;
  color: #ccc;
  margin-top: 5px;
}

/* Animation */
@keyframes fadeInUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.result-card:nth-child(1) { animation-delay: 0.2s; }
.result-card:nth-child(2) { animation-delay: 0.4s; }
.result-card:nth-child(3) { animation-delay: 0.6s; }
.result-card:nth-child(4) { animation-delay: 0.8s; }

.results-text {
  flex: 1 1 40%;
}

.results-title {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.results-subtitle {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .results-section {
    padding: 40px 30px;
  }
  .results-title {
  font-size: 2.1rem;
}

  .results-container {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .results-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .result-card {
    font-size: 1.2rem;
    padding: 20px;
  }

  .results-text {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .results-cards {
    grid-template-columns: 1fr 1fr;
  }

  .results-section {
    padding: 40px 20px;
  }
}

/* resul end *




/* Faq */

.faq-section {
  background-color: #f5f7ff;
  padding: 60px 100px;
  font-family: 'Segoe UI', sans-serif;
  color: #0b102f;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h2 {
  color: #0b102f;
  font-size: 2.1rem;
  margin-bottom: 10px;
}

.faq-header p {
  color: #0b102f;
  font-size: 1rem;
  opacity: 0.85;
}

.faq-columns {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.faq-column {
  flex: 1 1 45%;
}

.faq-item {
  border: 1px solid #dce2f5;
  border-radius: 12px;
  margin-bottom: 18px;
  background: #ffffff;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  background-color: #ffffff;
  color: #194eff;
  border: none;
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 1.4rem;
  font-weight: bold;
  transition: transform 0.3s;
}

.faq-answer {
  padding: 0 20px 18px;
  display: none;
  font-size: 0.95rem;
  color: #0b102f;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* Bottom CTA Section */
.faq-bottom {
  background: #194eff;
  color: #fff;
  margin-top: 60px;
  padding: 30px 40px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.faq-left h4 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.faq-left p {
  font-size: 1rem;
  margin: 0;
}

.ask-button {
  background-color: #ffffff;
  color: #194eff;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.ask-button:hover {
  background-color: #e3e9ff;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .faq-section {
    padding: 50px 50px;
  }

  .faq-columns {
    flex-direction: column;
  }

  .faq-item.fivenumber {
  margin: 0;
}
.faq-left p {
  margin-bottom: 6px;
}
.faq-columns {
}

  .faq-column {
    flex: 1 1 100%;
    display: inline;
    gap: 20px !important;
  }

  .faq-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .faq-section {
    padding: 40px 30px;
  }
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq-item.active .faq-answer {
  /* This is controlled by JS */
}




 /* website all color 

 #194Eff


#00020F, #00041F (black)

#194Eff
#0b0f2a


*/
























.footer {
  background-color: #0b102f;
  color: #ffffff;
  padding: 60px 100px 20px;
  font-family: sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
}

.footer-left {
  flex: 0 0 40%;
  padding-right: 40px;
  text-align: left;
}

.footer-logo {
  font-size: 24px;
  color: #fff;
  margin-bottom: 15px;
}

.footer-description {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.footer-btn {
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 20px;
  background-color: #194Eff;
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}

.footer-social a {
  color: #ffffff;
  margin-right: 15px;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #194Eff;
}

.footer-right {
  flex: 0 0 60%;
  padding-left: 40px;
  border-left: 1px solid #194Eff; /* ✅ Only this border */
}

.footer-menus {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-menu,
.footer-links,
.footer-extra {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 30%;
}

.footer-menu li,
.footer-links li,
.footer-extra li {
  margin-bottom: 10px;
}

.footer-menu a,
.footer-links a,
.footer-extra a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-menu a:hover,
.footer-links a:hover,
.footer-extra a:hover {
  color: #194Eff;
}

.footer-bottom {
  border-top: 1px solid #194Eff;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #cccccc;
  margin-top: 40px;
  width: 100%;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 30px 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .footer-left {
    width: 100%;
    text-align: center;
    padding-right: 0;
    border-right: none;
  }

  .footer-right {
    width: 100%;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid #194Eff;
    padding-top: 30px;
  }

  .footer-menus {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    flex-wrap: wrap;
  }

  .footer-menu,
  .footer-links,
  .footer-extra {
    width: 33.33%;
    text-align: center;
  }

  .footer-bottom {
    padding-top: 10px;
  }
}






































 body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #00020c;
      color: white;
      overflow-x: hidden;
    }

.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  padding-top: 50px; /* ✅ Add this */
  background: url('https://framerusercontent.com/images/xdaPXOEtPIASFiIeYk976HyJA.svg') no-repeat center top;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

    .light-left,
    .light-right {
      position: absolute;
      top: 0;
      width: 500px;
      height: 500px;
      opacity: 0.6;
    }

    .light-left {
      left: 0;
      background: url('https://framerusercontent.com/images/UKLIsmbXPgsNWAAoMY12jQuP2ZI.svg') no-repeat;
      background-size: contain;
    }

    .light-right {
      right: 0;
      background: url('https://framerusercontent.com/images/NTKgB6h2Q6llqcAO5km5305uDk0.svg') no-repeat;
      background-size: contain;
    }

    .tagline {
      background-color: #131839;
      padding: 10px 25px;
      border-radius: 50px;
      display: inline-block;
      font-size: 18px;
      color: #c0faff;
      margin-bottom: 20px;
    }

    h2 {
      font-size: 42px;
      margin: 10px 0;
      color: #ffffff;
    }

    .subtitle {
      font-size: 20px;
      color: #c0faff;
      margin-bottom: 30px;
    }

    .whatsapp-button {
      padding: 12px 25px;
      font-size: 18px;
      background-color: #3363ff;
      color: white;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      text-decoration: none;
    }

    .dot  {
      position: absolute;
      background-color: #c0faff;
      border-radius: 50%;
      animation: floatUp linear infinite;
      opacity: 0.6;
    }

    @keyframes floatUp {
      from {
        transform: translateY(0);
        opacity: 0.8;
      }
      to {
        transform: translateY(-50vh);
        opacity: 0;
      }
    }




    @keyframes floatDown {
  from {
    transform: translateY(0);
    opacity: 0.8;
  }
  to {
    transform: translateY(50vh);
    opacity: 0;
  }
}

.dot {
animation: floatDown linear infinite;
}

.dot {
  position: absolute;
  background-color: #c0faff;
  border-radius: 50%;
  animation: floatDown linear infinite;
  opacity: 0.6;
}

@keyframes floatDown {
  from {
    transform: translateY(0);
    opacity: 0.8;
  }
  to {
    transform: translateY(50vh);
    opacity: 0;
  }
}


.top-glow-left,
.top-glow-right {
  position: absolute;
  top: 0;
  width: 500px;
  height: 500px !important; /* ✅ Add height */
  opacity: 0.6;
  z-index: 2;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
}

.top-glow-left {
  left: 0;
  background-image: url('https://framerusercontent.com/images/UKLIsmbXPgsNWAAoMY12jQuP2ZI.svg');
}

.top-glow-right {
  right: 0;
  background-image: url('https://framerusercontent.com/images/NTKgB6h2Q6llqcAO5km5305uDk0.svg');
}



#whatsapp-button {
  position: fixed;
  bottom: 48px;
  right: 20px;
  z-index: 9999;
  background-color: #00F98417;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}

  #whatsapp-button:hover {
    transform: scale(1.1);
  }

  #whatsapp-button img {
    width: 36px;
    height: 36px;
    display: block;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
  }

:root {
  --blue-100: #194EFF;
  --blue-70: rgba(25, 78, 255, 0.7);
  --blue-50: rgba(25, 78, 255, 0.5);
  --blue-30: rgba(25, 78, 255, 0.3);

  --dark-100: #0B0F2A;
  --dark-70: rgba(11, 15, 42, 0.7);
  --dark-50: rgba(11, 15, 42, 0.5);
  --dark-30: rgba(11, 15, 42, 0.3);
}



























