
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

body {
  background: linear-gradient(to right, #111, #1c1c1c);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
}

header {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

.logo {
  width: 180px;
  margin-bottom: 25px;
}

h1 {
  font-size: 3em;
  margin: 10px 0;
  font-weight: 700;
}

.cta-buttons {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.cta-buttons .btn {
  background: #e63946;
  color: white;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1em;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
  transition: all 0.3s ease-in-out;
}

.cta-buttons .btn:hover {
  background: #ff4d6d;
  box-shadow: 0 6px 20px rgba(255, 77, 109, 0.6);
  transform: scale(1.05);
}

section {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

h2 {
  font-size: 2em;
  margin-bottom: 20px;
  border-bottom: 2px solid #e63946;
  display: inline-block;
  padding-bottom: 5px;
}

.info, .why-us {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}

.info div, .why-us div {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 10px;
}

.events p a {
  font-size: 1.1em;
}

footer {
  padding: 50px 20px;
  background-color: #0e0e0e;
}

.socials {
  margin-top: 20px;
}

.socials a {
  margin: 0 15px;
  color: #e63946;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.socials a:hover {
  color: #ff4d6d;
}

@media (max-width: 768px) {
  .info, .why-us {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 80%;
  }
}


body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #121212;
  color: #e0e0e0;
  line-height: 1.6;
}

section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

h1, h2 {
  color: #ffffff;
  font-weight: 600;
}

p, li {
  font-size: 1.05em;
  color: #cccccc;
}

a {
  color: #ff5757;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.social-icons img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}



/* Ensure better mobile layout */
body {
  font-size: 16px;
  padding: 10px;
  margin: 0;
}

h1, h2 {
  font-size: 1.8em;
  line-height: 1.3;
}

nav {
  flex-direction: column;
  align-items: flex-start;
}

nav div, nav a {
  width: 100%;
  text-align: left;
  margin-bottom: 10px;
}

.cta-buttons {
  flex-direction: column;
  align-items: center;
}

.cta-buttons .btn {
  width: 90%;
  font-size: 1em;
  padding: 12px 20px;
}

section {
  padding: 20px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.6em;
  }

  h2 {
    font-size: 1.3em;
  }

  .info, .why-us {
    flex-direction: column;
    align-items: center;
  }

  .info div, .why-us div {
    width: 100%;
    margin-bottom: 20px;
  }

  nav {
    padding: 10px 20px;
  }

  .social-icons {
    justify-content: center;
  }
}



/* Corrected Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 28px;
  text-align: center;
  line-height: 60px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.floating-whatsapp:hover {
  background-color: #1ebe57;
}


/* Improved desktop nav layout */
@media (min-width: 769px) {
  nav {
    max-width: 1100px;
    margin: auto;
  }
  nav div {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}



/* Global link color fix */
a, a:visited, a:hover, a:active {
  color: white;
  text-decoration: none;
}
