html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    height: 100%;
    background-image: url(/Homebg.jpg);
scroll-behavior: smooth;
    background-image: url(homepage.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    overflow-x: hidden;
    scroll-behavior: smooth;
  }
 

  .navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 0;
    margin: 0;
    backdrop-filter: blur(12px);
    background: rgba(15, 15, 30, 0.6);
    padding: 14px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .navbar .logo {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    color: white;
    font-weight: 600;
    gap: 10px;
  }

  .navbar .logo img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #00e0ff;
    background-color: #ffffff10;
    padding: 3px;
  }

  .navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 18px;
  }

  .navbar ul li a {
    position: relative;
    text-decoration: none;
    color: #e0e0ff;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
   .navbar ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #d17bff, #00b2ff, #00fff0);
    border-radius: 50px;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
  }

  .navbar ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  .home-section {
    text-align: center;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    gap: 1.2rem;

    background-image:url(/Homebg.jpg);

    background-image: url(home.jpg);

    

    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }

  .floating-words {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .word {
    position: absolute;
    color: rgba(255, 255, 255, 0.2);
    font-size: clamp(1rem, 1.1vw, 1.5rem);
    font-weight: 500;
    white-space: nowrap;
    animation: floatAnim 10s infinite ease-in-out;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
  }

  @keyframes floatAnim {
    0%   { transform: translateY(0px) translateX(0px); }
    25%  { transform: translateY(-10px) translateX(5px); }
    50%  { transform: translateY(-20px) translateX(-5px); }
    75%  { transform: translateY(-10px) translateX(10px); }
    100% { transform: translateY(0px) translateX(0px); }
  }

  .title-container {
    margin-top: 65px;
    line-height: 1;
    z-index: 1;
  }

  .title {
    font-size: 5.5rem;
    font-weight: bold;
    background: linear-gradient(90deg, #00fff0, #00b2ff, #d17bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    margin: 0;
    line-height: 1;
    min-height: 6rem;
  }

  .subtitle-glow {
    font-size: 1.4rem;
    color: #e5e7fb;
    text-shadow: 0 0 30px #5af0ff;
    margin: 0;
    line-height: 1.1;
    z-index: 1;
  }

  button {
    padding: 12px 28px;
    font-size: 1.1rem;
    background: linear-gradient(90deg, #00fff0, #00b2ff, #d17bff);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    position: relative;
    box-shadow: 0 4px 14px rgba(0, 255, 255, 0.2);
    overflow: hidden;
  }

  button:hover {
    background: linear-gradient(270deg, #00b2ff, #d17bff, #00fff0);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 24px rgba(0, 255, 255, 0.4);
  }
  
  .icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.orange { color: #ff944d; }
.purple { color: #b266ff; }
.green  { color: #33cc99; }
.yellow { color: #ffcc00; }

.info-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.info-card p {
    font-size: 16px;
    color: #ccc;
}
.stats-section {

  background-image: url(/background5.png);


  background-image: url(background5.png);

  


  padding: 60px 20px;
  text-align: center;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1100px;
  gap: 30px;
  margin: 0 auto;
}

.stat-card {
  background-color: #151529;
  border-radius: 16px;
  padding: 40px 25px;
  
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 230px;
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 25px #56cfe1;
}

.stat-icon {
  font-size: 38px;
  margin-bottom: 18px;
}

.stat-card h2 {
  font-size: 28px;
  margin-bottom: 8px;
  color: #d1d1ff;
  border : 0 px;
}

.stat-card p {
  font-size: 18px;
  color: #ccc;
}

.blue { color: #66ccff; }
.pink { color: #ff66cc; }
.green { color: #66ff99; }
.orange { color: #ff944d; }
.red { color: #ff4d4d; }
.yellow { color: #ffcc00; }

.stats-section :hover{
  box-shadow: linear-gradient(90deg, #00fff0, #00b2ff, #d17bff);
}
.testimonial-section {
  padding: 80px 40px;

  background-image: url(/background5.png);


  background-image: url(background5.png);




  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.testimonial-title {
  font-size: 2.6rem;
  background-color: #151529;

  
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
}

.testimonial-slider {
  overflow: visible;
  position: relative;
  max-width: 100%;
  
}

.testimonial-track {
  display: flex;
  gap: 24px;
  animation: slideLeft 25s linear infinite;
  

  width: max-content;
}
@keyframes slideLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.animate-slideLeft {
  animation: slideLeft 25s linear infinite;
}

.testimonial-track {
  width: max-content;
}
.heading1{
  font-size: 2.5rem;
  font-weight: bold;
  color: #00b2ff;
  margin-bottom: 50px;
  margin-left: 34%;
}
.testimonial-card {
  min-width: 320px;
  max-width: 340px;
  flex-shrink: 0;
  background-color: #151529;
  color: white;
 


  padding: 24px 30px;
  border-radius: 20px;
  backdrop-filter: blur(12px);

  box-shadow: 0 8px 18px rgba(0, 255, 255, 0.1);
  transition: transform 0.3s ease;
  text-align: left;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 0 25px #56cfe1;
  
}
.testimonial-track:hover {
  animation-play-state: paused;
}


.testimonial-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #00fff0;
  margin-bottom: 14px;
}

.testimonial-user {
  margin-top: 12px;
  font-weight: 500;
  color: #d0d0ff;
}

@keyframes slideLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.faq-section {
  background-image: url(background5.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 4rem 2rem;
}

.faq-container {
  margin: 2rem auto 0 auto;
  max-width: 800px;
  background: rgba(21,21,41,0.85);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,255,255,0.09);
  padding: 2.5rem 1.5rem;
}

.faq-item {
  background: rgba(30,32,54,0.92);
  border-radius: 14px;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 12px rgba(0,255,255,0.07);
  transition: box-shadow 0.2s, background 0.2s;
}

.faq-item.active {
  background: rgba(34, 38, 70, 1);
  box-shadow: 0 0 16px #00fff0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.2rem;
  text-align: left;
  font-weight: 600;
  color: #e0e0ff;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.2s;
  outline: none;
}

.faq-question:hover,
.faq-item.active .faq-question {
  background: linear-gradient(90deg, #23244a 60%, #1a1a2e 100%);
  color: #00fff0;
}

.faq-question i {
  margin-right: 12px;
  font-size: 1.2em;
  vertical-align: middle;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.2rem;
  background: transparent;
  transition: max-height 0.4s cubic-bezier(.4,0,.2,1), padding 0.3s;
  font-size: 1rem;
  color: #b0c4ff;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-top: 0.6rem;
  padding-bottom: 1rem;
  background: none;
  color: #e0e0ff;
}

.faq-item .arrow {
  margin-left: 10px;
  color: #00fff0;
  font-size: 1.2em;
  transition: transform 0.3s;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
  color: #d17bff;
}

@media (max-width: 600px) {
  .faq-section {
    padding: 2rem 0.5rem;
  }
  .faq-container {
    padding: 1.2rem 0.3rem;
  }
  .faq-question {
    font-size: 1rem;
    padding: 0.8rem 0.5rem;
  }
}  
footer {
  background-color: #151529;
  padding-bottom: 40px;
  padding-left: 20px ;
  padding-right: 20px;
  color: white;
  margin-top: auto;
  overflow-x: hidden;
  position: relative;
}

.footer-container {
  display: flex;
  justify-content: center;
  max-width: 88%;
  margin-top: 0px;
  margin: 0 auto;
  gap: 0px;
}
.footer-section {
  flex: 1;
  padding: 0px;
  width:100%;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-family: 'Great Vibes', cursive;
  font-size: 30px;
  margin-bottom:15px;
}

.footer-section h3 a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
}
.footer-section h3 a:hover {
  color: #8fc0f0;
}
    
        
.footer-section p {
  font-size: 14px;
  line-height: 1.6;
  margin-right:10px;
}

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

.footer-section ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

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

.icon {
  display: flex;
  align-items: center;
  margin-left: 20px;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #333;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 24px;
}

.icon:hover {
  background:  #00fff0;
  /*background-color: #a066af; /* Purple shade */
  color: black;
}


.copyright {
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  padding: 10px;
  border-top: 1px solid    #00fff0 ;
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #0a1526;
}