/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0d0d0d;
  color: #f2f2f2;
  scroll-behavior: smooth;
}

/* Optional reveal effect */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.count {
  font-weight: bold;
  font-size: 2rem;
}

.small, #icon {
  display: none;
}

/* Hero Section */
.hero-section {
  position: relative; /* Make hero section the reference for absolute children */
  height: 70vh;
  overflow: hidden; /* Prevent image overflow */
  background: linear-gradient(to right, #141e30, #243b55);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 0 20px #00dfd8;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  padding: 100px 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 2.5rem;
}

.auto-type {
  display: inline-block;
  min-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  font-family: 'Arial', sans-serif;
  font-size: 2rem;
}

.welcome-message {
  position: absolute;
  margin-top: 1em;
  width: 100%;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  color: #00dfd8;
  text-shadow: 0 0 15px #00dfd8;
  animation: fadeInOut 6s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

/* Fade in and out animation */
@keyframes fadeInOut {
  0%, 100% { opacity: 0; }
  10%, 90% { opacity: 1; }
}

.hero-content h1 {
  font-size: 3.5rem;
  color: #00dfd8;
  animation: fadeInDown 1s ease-out;
}

.hero-content p {
  font-size: 1.2rem;
  margin: 15px 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta {
  padding: 12px 24px;
  background: #00dfd8;
  color: #0d0d0d;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 999;
  background: linear-gradient(to right, #141e30, #243b55);
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00dfd8;
  z-index: 9999;
  box-shadow: 4px 4px 0px rgba(0,0,0,0.4);
  padding: 0.3em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-links li a {
  color: cyan;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  box-shadow: 4px 4px 0px rgba(0,0,0,0.4);
  padding: 0.5em;
}

.nav-links li a:hover {
  color: #00dfd8;
}

.cta:hover {
  background: #00c2b0;
}

/* Sections */
section {
  padding: 60px 30px;
}
h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 30px;
  color: #00dfd8;
}
p {
  line-height: 1.6;
}

/* About */
.about-section {
  max-width: 90vw;
  position: relative;
  top: 3em;
  margin: auto;
  text-align: center;
 /* background: rgba(255, 255, 255, 0.05);*/
 background: rgba(0,0,0,1);
  box-shadow: 0 0 20px #00dfd8;

}

.about-section p{
  opacity: 0.7;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}
.service {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}
.service img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}
.service:hover {
  transform: translateY(-10px);
}

/* Testimonials */
.testimonials-section {
  background: #1a1a1a;
  text-align: center;
}
.testimonial-box {
 /* background: rgba(255, 255, 255, 0.05);*/
  background: rgba(0,0,0,1);
  box-shadow: 0 0 15px #00dfd8;
  padding: 20px;
  margin: 4em auto;
  max-width: 600px;
  border-radius: 10px;
  backdrop-filter: blur(6px);
}

/* ============================
   📊 Stats Counter Section
============================= */
.stats-section {
  background: #111;
  padding: 70px 30px;
  text-align: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 40px;
}
.stat-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 223, 216, 0.1);
  transition: transform 0.3s ease;
}
.stat-box:hover {
  transform: translateY(-5px);
}
.stat-box .icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #00dfd8;
}
.stat-box h3 {
  font-size: 2rem;
  color: #fff;
}
.stat-box p {
  font-size: 1rem;
  color: #ccc;
}


/* Contact */
.contact-section form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
input, textarea {
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: #222;
  color: #f2f2f2;
}
textarea {
  min-height: 120px;
}
button {
  padding: 12px;
  border: none;
  background: #00dfd8;
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
button:hover {
  background: #00bfa6;
}

/* Footer */
.footer {
  background: #000;
  padding: 20px;
  text-align: center;
}
.social-icons a {
  margin: 0 10px;
  font-size: 20px;
  color: #00dfd8;
  text-decoration: none;
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: slideIn 1s forwards;
}
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal:nth-of-type(1) { animation-delay: 0.2s; }
.reveal:nth-of-type(2) { animation-delay: 0.4s; }
.reveal:nth-of-type(3) { animation-delay: 0.6s; }
.reveal:nth-of-type(4) { animation-delay: 0.8s; }

/* Booking Modal */
.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal-content {
  background: #1e1e1e;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 0 20px #00dfd8;
  animation: slideInUp 0.5s ease;
}
.modal-content h3 {
  color: #00dfd8;
  margin-bottom: 20px;
}
.modal-content input,
.modal-content textarea {
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border-radius: 6px;
  border: none;
  background: #2b2b2b;
  color: #f0f0f0;
}
.modal-content button {
  padding: 12px;
  width: 100%;
  background: #00dfd8;
  border: none;
  font-weight: bold;
  cursor: pointer;
}
.close-btn {
  float: right;
  font-size: 24px;
  color: #aaa;
  cursor: pointer;
}

/* Booking Button */
.book-btn {
  margin-top: 10px;
  padding: 8px 16px;
  background: #00dfd8;
  border: none;
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.book-btn:hover {
  background: #00c2b0;
}

/* Contact Form Confirmation */
.confirmation-msg {
  margin-top: 15px;
  color: #00dfd8;
  font-weight: bold;
  display: none;
}

/* Slide In Animation */
@keyframes slideInUp {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  color: green;
  border-radius: 50%;
  text-align: center;
  font-size: 3em;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 2000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20b955;
}

.whatsapp-float i {
  vertical-align: middle;
}

:root {
  --speed: 60s; /* speed of scroll */
  --gap: 80px;  /* gap between items */
  --bg: #0f1724;
  --text-color: #ffffff;
  --accent: #00dfd8;
}

.body {
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Wrapper */
.sponsor-section {
  width: 100vw;
 
  
  /* background: var(--bg); */
  color: var(--text-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.25);
  padding: 1em;
}

.sponsor-header {
  text-align: center;
  font-size: 1.4em;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 1em;
}

/* Slider Container */
.sponsor-slider {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 140px;
}

/* Moving track */
.sponsor-track {
  display: flex;
  align-items: center;
  gap: var(--gap);
  white-space: nowrap;
  animation: scroll var(--speed) linear infinite;
  will-change: transform;
}


/* Each sponsor block */
.sponsor-item {
  min-width: 200px;
  text-align: center;
  flex-shrink: 0;
}

.sponsor-item h4 {
  font-size: 1.1em;
  margin-bottom: 0.3em;
  color: var(--accent);
}

.sponsor-item p {
  font-size: 0.9em;
  opacity: 0.9;
  line-height: 1.4em;
}

/* Animation */
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); } /* because we’ll duplicate content */
}

#slideme {
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    
  }

  .slider {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
  }

  .slide-track {
    display: flex;
    width: calc(200px * 20); /* 10 images * 2 (for seamless loop) */
    animation: scrollRight 30s linear infinite;
  }

  .slide {
    flex: 0 0 auto;
    width: 200px;
    height: 8em;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: .5em;
  }

  /* Animation: move left to right */
  @keyframes scrollRight {
    0% {
      transform: translateX(calc(-200px * 10));
    }
    100% {
      transform: translateX(0);
    }
  }


 #bod{
      font-family: Arial, sans-serif;
      background: #111;
      margin: 0;
      padding: 0;
      height: auto; /* Extra height for scrolling */
      opacity: 0.8;
    }

    .container {
      max-width: 600px;
      margin: auto; /* Push down for scroll trigger */
      padding: 20px;
      background: #111;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      text-align: center;
      border-radius: 8px;
      flex-direction: column;
    }


    .slide-in {
      opacity: 0;
      transform: translateX(-100px);
      transition: all 0.6s ease-out;
    }

    .slide-in.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .author-img {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      object-fit: cover;
      margin: 20px auto;
    }

    .name, .role, .author-img {
      margin: 20px 0;
    }

    .delay-1 {
      transition-delay: 0.2s;
    }

    .delay-2 {
      transition-delay: 0.4s;
    }

    .delay-3 {
      transition-delay: 0.6s;
    }

     .delay-4 {
      transition-delay: 0.8s;
    }

      .cont{
      max-width: 800px;
      margin: auto;
      padding: 20px;
    }

    .map {
      width: 100%;
      height: 400px;
      border: none;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }





/* Responsive */

@media (max-width: 480px) {
    .slide {
      width: 120px;
    }
    .slide-track {
      width: calc(120px * 20);
      animation: scrollRightSmall 30s linear infinite;
    }
    @keyframes scrollRightSmall {
      0% { transform: translateX(calc(-120px * 10)); }
      100% { transform: translateX(0); }
    }
  }


@media (max-width: 786px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

   .slide {
      width: 150px;
    }
    .slide-track {
      width: calc(150px * 20);
      animation: scrollRightMobile 30s linear infinite;
    }
    @keyframes scrollRightMobile {
      0% { transform: translateX(calc(-150px * 10)); }
      100% { transform: translateX(0); }
    }


#icon{
display: block;
font-size: 1em;
position: fixed;
right: 1em;
top: 0.7em;
z-index: 999;
}

.logo { font-size: 1em; }
.welcome-message{ font-size: 1em; }
.auto-type{ font-size: 1em; }

.nav-links{
display: none;  
width: 87vw;
height: auto;
line-height: 4em;
font-size: 1.2em;
position: absolute;
top: 2em;
background: #1e1e1e;
padding: 4em;
border-radius: 10px;
box-shadow: 0 0 20px #00dfd8;
animation: slideInUp 0.7s ease;
}



#serv{
  width: 85vw;
}

.nav-links.active {
  display: block;  /* show only when active */
}

 .sponsor-item {
    min-width: 200px;
  }

}

