*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: rgb(244, 249, 244);
  color: #343030;
  min-height: 100vh;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  text-align: left;
}

.image-gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.main-header {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  border-radius: 30px;
  background: rgba(155, 193, 244, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 6px solid rgba(0, 0, 0, 0.1);
  border-left: 5px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  z-index: 1000;
  flex-wrap: wrap;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 85px;
  border-radius: 12px;
}

.brand-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  margin: 0;
  color: #080124;
}

.tagline {
  font-size: 0.9rem;
  font-weight: 300;
  margin: 0;
  color: black;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
  font-style: italic;
}

nav {
  text-align: center;
  padding: 20px 0;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.nav-links li a {
  text-decoration: none;
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #03044f;
}

.login-btn {
  padding: 8px 16px;
  background-color: white;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.login-btn:hover {
  background-color: rgb(10, 237, 33);
}

.section1 {
  position: relative;
  text-align: center;
  padding: 40px 20px;
}

.glow-heading {
  font-size: 2.5rem;
  color: #ffffff;
  text-align: center;
  text-shadow: 
    0 0 5px rgb(24, 24, 26),      /* small inner glow */
    0 0 10px rgb(137, 244, 244),     /* cyan outer glow */
    0 0 20px rgb(25, 55, 222),
    0 0 40px rgb(144, 193, 193);
  margin-top: 50px;
}


.slide-loop-img {
  width: 600px;
  animation: slideInOut 15s ease-in-out infinite;
  transition: transform 0.5s ease;
  border-radius: 20px;
}

@keyframes slideInOut {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  25% {
    transform: translateX(75%);
    opacity: 1;
  }
  75% {
    transform: translateX(-50%);
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

.club-section {
  background: linear-gradient(145deg, #f0f9ff, #ffffff);
  padding: 70px 30px;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 170, 255, 0.08);
  max-width: 1200px;
  margin: 60px auto;
  text-align: center;
}

.club-heading {
  font-size: 2.7rem;
  color: #003366;
  margin-bottom: 10px;
  font-weight: 700;
}

.club-intro {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.activity-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 25px 20px;
  font-size: 1.1rem;
  color: #222;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0, 170, 255, 0.1);
  transition: all 0.3s ease;
  border-left: 6px solid #00aaff;
  position: relative;
}

.activity-card:hover {
  background-color: #f0fbff;
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 170, 255, 0.15);
}

.activity-card strong {
  color: #0077cc;
}

/* Additional styles omitted for brevity */




.club-section {
  background: linear-gradient(145deg, #f0f9ff, #ffffff);
  padding: 70px 30px;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 170, 255, 0.08);
  max-width: 1200px;
  margin: 60px auto;
  text-align: center;
}

.club-heading {
  font-size: 2.7rem;
  color: #003366;
  margin-bottom: 10px;
  font-weight: 700;
}

.club-intro {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.activity-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 25px 20px;
  font-size: 1.1rem;
  color: #222;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0, 170, 255, 0.1);
  transition: all 0.3s ease;
  border-left: 6px solid #00aaff;
  position: relative;
}

.activity-card:hover {
  background-color: #f0fbff;
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 170, 255, 0.15);
}

.activity-card strong {
  color: #0077cc;
}

.membership-section {
  background: linear-gradient(to right, #265fe6, #5650d4, #817ceb);
  padding: 70px 30px;
  color: #fff;
  border-radius: 20px;
  margin: 80px auto;
  max-width: 1100px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.membership-heading {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.membership-intro {
  font-size: 1.15rem;
  margin-bottom: 50px;
  color: #dce8f3;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.requirement-card {
  background-color: #ffffff;
  color: #2c5364;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-align: left;
}

.requirement-card:hover {
  transform: translateY(-8px);
  background-color: #f0f8ff;
}

.requirement-card h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.requirement-card p {
  font-size: 1rem;
  line-height: 1.5;
}

.site-footer {
  background: linear-gradient(to right, #4c4796, #15194c);
  color: #ffffff;
  padding: 50px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  margin-top: 80px;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-cta-btn {
  display: inline-block;
  background-color: #00aaff;
  color: white;
  padding: 14px 30px;
  font-size: 1.1rem;
  border-radius: 30px;
  text-decoration: none;
  margin-bottom: 30px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.footer-cta-btn:hover {
  background-color: #008ecc;
  transform: translateY(-3px);
}

.footer-info p,
.footer-credit p {
  margin: 8px 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-info a {
  color: #aee2ff;
  text-decoration: underline;
}

.footer-info a:hover {
  color: #ffffff;
}

.footer-credit {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #ddd;
}

.footer-social {
  margin-top: 20px;
}

.footer-social a {
  color: #aee2ff;
  text-decoration: none;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #ffffff;
}







/* Section Container */
#about.section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #2e475e, #e6f7ff);
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(253, 253, 253, 0.947);
  max-width: 900px;
  margin: 4rem auto;
  transition: all 0.3s ease;
}

/* Section Heading */
#about h2 {
  text-align: left;
  font-size: 1.8rem;
  color: #080224;
  margin-bottom: 2rem;
  font-weight: 700;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
}

/* List Styling */
.service-list {
  list-style-type: none;
  padding-left: 0;
}

.service-list li {
  background-color: #ffffff;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 6px solid #00aaff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 120, 180, 0.1);
  position: relative;
  transition: transform 0.2s ease;
  line-height: 1.6;
  font-size: 1.1rem;
}

.service-list li:hover {
  transform: translateY(-4px);
  background-color: #f8fdff;
}

.tooltip-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  perspective: 1000px; /* Enables 3D effect */
}

.tooltip {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  height: 200px;
  width: 300px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform-style: preserve-3d;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  /* Animation */
  animation: spinY 20s linear infinite;
  transition: transform 0.5s ease-in-out;
}

/* On hover: pause and face front */
.tooltip:hover {
  animation-play-state: paused;
  transform: rotateY(0deg);
}

/* Spin animation */
@keyframes spinY {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}






/* Container Styling */
.section2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #ffffff, #f0faff);
  text-align: center;
  position: relative;
  overflow: hidden;
}
  
.section5 {
  background: linear-gradient(to right, #ffffff, #f0f9ff);
  padding: 60px 20px;
  margin-top: 80px;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.section-container h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: bold;
}

.founder-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.image-container img {
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.text-container {
  max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  text-align: left;
}

/* Responsive fix */
@media (max-width: 768px) {
  .founder-info {
    flex-direction: column;
    text-align: center;
  }

  .text-container {
    text-align: center;
  }
}



.text-container h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0077cc;
}


/* Slide Wrapper for better layout control */
.slide-wrapper {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* Sliding Image */
.slide-in-img {
  width: 100%;
  max-width: 600px;
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateX(-400px);
  transition: all 20s ease;
}

/* Quote Styling */
.slide-in-quote {
  font-size: 1.5rem;
  font-style: italic;
  color: #004080;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.slide-in-quote span {
  display: block;
  margin-top: 0.8rem;
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

/* Visible class when in view */
.visible {
  opacity: 1 !important;
  transform: translateX(0) translateY(0) !important;
}

  
.image-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1); /* Normal size */
  color: white;
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Segoe UI', 'Poppins', 'Helvetica Neue', sans-serif;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  text-align: center;
  transition: transform 0.3s ease-in-out;
  pointer-events: none; /* Optional: so it doesn't block hover if needed */
}

.image-container:hover .image-text {
  transform: translate(-50%, -50%) scale(0.8); /* Zoom out on hover */
}

.dashboard-section {
  padding: 60px 20px;
  background: #f4f9ff;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-top: 60px;
}

.dashboard-content {
  max-width: 1000px;
  margin: 0 auto;
}

.dashboard-video {
  width: 100%;
  max-height: 400px; /* Adjust for better vertical fit */
  object-fit: contain; /* Ensures full video is visible */
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  margin: 20px 0;
}

.slide-in-quote {
  font-size: 1.1rem;
  color: #333;
  margin-top: 10px;
  font-style: italic;
}

.slide-in-quote span {
  display: block;
  margin-top: 8px;
  font-weight: 600;
  color: #005b99;
}


/* Optional improvement if you have a wrapper for the video and text */
.image-container {
  position: relative;
  width: 100%;
  height: auto;         /* or use a fixed value like 400px */
  max-height: 600px;
  overflow: hidden;
}

.services-section {
  background: linear-gradient(to right, #f0f7ff, #dbeeff);
  padding: 60px 20px;
  border-top: 5px solid #007acc;
  border-bottom: 5px solid #007acc;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
}

.service-list6 {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-list6 li {
  background-color: white;
  border-left: 6px solid #007acc;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 1.1rem;
  color: #333;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease-in-out;
}

.service-list6 li:hover {
  transform: translateY(-5px);
  background-color: #f4faff;
}
.courses-section {
  background: linear-gradient(to right, #e6f4ff, #f9fbff);
  padding: 60px 20px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  margin-top: 50px;
}

.courses-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 40px;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.course-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.course-list li {
  background-color: #ffffff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  font-size: 1.1rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #222;
}

.course-list li:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.course-list .tooltip {
  display: block;
  margin-top: 10px;
  font-size: 0.95rem;
  color: #0077cc;
  font-style: normal;
  opacity: 0.9;
}

.footer {
  background: linear-gradient(120deg, rgb(199, 237, 184), rgb(86, 86, 218));
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.footer-left {
  flex: 1;
  min-width: 280px;
}

.footer-info p,
.footer-info a {
  margin: 5px 0;
  color: #333;
  text-decoration: none;
}

.footer-social a {
  display: inline-block;
  margin-top: 10px;
  color: #0077b5;
  text-decoration: none;
  font-weight: bold;
}

.footer-social a i {
  margin-right: 8px;
}

.footer-form {
  flex: 1;
  min-width: 280px;
}

.footer-form h3 {
  margin-bottom: 10px;
}

.footer-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-form input,
.footer-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  width: 100%;
}

.footer-form button {
  background-color: #007bff;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.footer-form button:hover {
  background-color: #0056b3;
}

.footer-credit {
  text-align: left;
  margin-top: 40px;
  font-size: 14px;
  color: #555;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  .header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
  }

  .logo {
    width: 50px;
  }

  .brand-title {
    font-size: 1.3rem;
  }

  .tagline {
    font-size: 0.85rem;
  }

  nav {
    width: 100%;
  }

  .nav-links {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding-left: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: block;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }

  .login-btn {
    text-align: center;
    background-color: #0073e6;
  }
}

/* Optional: Make it responsive */
@media (max-width: 768px) {
  .slide-loop-img {
    width: 90%;
  }
}

/* Optional: Responsive */
@media (max-width: 600px) {
  #about.section {
    padding: 2rem 1rem;
  }

  .service-list li {
    font-size: 1rem;
  }

  #about h2 {
    font-size: 2.2rem;
  }
}

/* Optional Responsive */
@media (max-width: 600px) {
  .slide-in-quote {
    font-size: 1.2rem;
  }

  .slide-in-quote span {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .section-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .image-container img {
    width: 300px;
  }

  .text-container {
    padding-top: 30px;
  }
}

@media (max-width: 768px) {
  .image-text {
    font-size: 1rem;
    text-align: left;
  }
}

/* Hide nav by default on small screens */
/* Default styles (desktop) */
.nav-menu {
  display: flex;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Hide menu toggle button by default */
.menu-toggle {
  display: none;
  background: none;
  font-size: 28px;
  border: none;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu {
    display: none; /* Hide nav by default on mobile */
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.open {
    display: flex; /* Show when toggled */
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }
}


  