/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #FFFCE9;
  position: relative;
  z-index: 10;
}

.nav-left a {
  margin: 0 15px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

/* Navbar Items */
.nav-left-item,
.nav-right-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #134D72;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.nav-left-item:hover,
.nav-right-item:hover {
  opacity: 0.8;
}

.nav-left-item svg,
.nav-right-item svg {
  color: #134D72;
  stroke: #134D72;
  flex-shrink: 0;
}

.nav-left-item p,
.nav-right-item p {
  color: #134D72;
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
}

.nav-right .btn {
  padding: 10px 20px;
  margin-left: 10px;
  border: none;
  background-color: #007bff;
  color: #fff;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
}

.nav-right .btn-outline {
  background-color: #555;
}

/* Logo */
.logo-wrapper {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
}

.logo {
  width: 250px;
  height: 250px;
  border-radius: 50%;
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  background-image: url('images/slider_06.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* align to left */
  text-align: left; /* align text to left */
  padding-left: 60px; /* spacing from left */
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  width: 100%;
  padding-top: 200px;
}

.hero-content h1 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 50px;
  text-align: center;
}

.hero-content p {
  font-size: 30px;
  font-weight: 400;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .nav-left, .nav-right {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    min-width: 80%;
  }

  .nav-left a, .nav-right .btn {
    margin: 5px 0;
  }

  .hero {
    height: 70vh;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .logo-wrapper {
    top:225px;
  }

  .logo {
    width: 150px;
    height: 150px;
  }

}

/* About Section */
.about-section {
  background: #FFFCE9;
  color: #111;
  padding: 80px 20px;
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.about-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-img {
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  object-fit: cover;
}

.top-img {
  align-self: flex-start;
}

.bottom-img {
  align-self: flex-end;
}

.about-right {
  flex: 1;
}

.section-label {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 10px;
  font-weight: 500;
}

.about-right h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.about-right p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 30px;
}

.btn-primary {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
  .about-section .container {
    flex-direction: column;
    text-align: center;
  }

  .about-left {
    flex-direction: row;
    justify-content: center;
  }

  .about-img {
    max-width: 75%;
  }

  .about-right h2 {
    font-size: 2rem;
  }

  .about-right p {
    font-size: 1rem;
  }
}

.events-section {
  background: #f4f4f4;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  max-width: 800px;
  margin: 0 auto 50px;
}

.section-title .section-subtitle {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #333;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 5px 20px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.section-title p {
  font-size: 1.1rem;
  color: #555;
}

.events-slider {
  max-width: 1200px;
  margin: 0 auto;
}

.event-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  margin: 10px;
}

.event-card img {
  width: 100%;
  height: auto;
  display: block;
}

.event-info {
  padding: 20px;
  text-align: left;
}

.event-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

.event-icon svg {
  width: 48px;
  height: 48px;
}

.event-info h3 {
  font-size: 1.2rem;
  color: #111;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
}

.event-info p {
  font-size: 0.95rem;
  color: #666;
  text-align: center;
  line-height: 30px;
}

/* Slick Dots Customization */

.slick-dots {
  bottom: -30px;
  text-align: center;
}

.slick-dots li button:before {
  font-size: 12px;
  color: #ccc;
  opacity: 1;
}

.slick-dots li.slick-active button:before {
  color: #333;
}


@media (max-width: 768px) {
  .section-title h2 {
    font-size: 1.8rem;
  }
}

/* Download Section */
.download-section {
  padding: 80px 20px;
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
  background-color: #E2F9FC;
}

.download-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.download-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
}

.download-text {
  flex: 1;
  min-width: 280px;
}

.download-text .subheading {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #555;
  position: relative;
}

.download-text .heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #101828;
}

.download-text p {
  font-size: 1rem;
  color: #475467;
  margin-bottom: 30px;
  line-height: 1.6;
}

.store-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.store-buttons img {
  width: 160px;
  height: auto;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .download-content {
    flex-direction: column;
    text-align: center;
  }

  .download-text .heading {
    font-size: 2rem;
  }

  .download-text p {
    font-size: 0.95rem;
  }

  .store-buttons {
    justify-content: center;
  }
}

/* Contact Section */
.contact-section {
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  background: #FFFCE9;
}

.contact-section .container {
  width: 90%;
  margin: 0 auto;
}

.contact-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #101828;
  text-align: center;
}

.map-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.map-container iframe {
  width: 100%;
  height: 600px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-heading {
    font-size: 2rem;
  }

  .map-container iframe {
    height: 350px;
  }
}

.site-footer {
  text-align: center;
  padding: 32px 0 16px 0;
  background: #134D72;
  color: #aaa;
  font-size: 16px;
}

.footer-social {
  margin-bottom: 12px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f2f2f2;
  transition: background 0.2s;
}

.footer-social a:hover {
  background: #e0e0e0;
}

.footer-social a svg {
  width: 22px;
  height: 22px;
  color: #134D72;
  stroke: #134D72;
}

.footer-social img {
  width: 22px;
  height: 22px;
}

.footer-text {
  color: #ffffff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.textSizeSmall {
  font-size: 14px !important;
}

.footer-text .footer-icon {
  color: #ffffff;
  stroke: #ffffff;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .footer-text {
    font-size: 12px !important;
  }
  .textSizeSmall {
    font-size: 12px !important;
  }
}

.footer-divider {
  margin: 0 8px;
  color: #ccc;
}

.privacy-link {
  color: #aaa;
  text-decoration: underline;
  transition: color 0.2s;
}

.privacy-link:hover {
  color: #333;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44, 62, 80, 0.25);
  z-index: 1000;
}

/* Modal */
.modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1010;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(44,62,80,0.18);
  padding: 32px 28px 24px 28px;
  min-width: 340px;
  max-width: 90vw;
}

.modal-content {
  position: relative;
}

.close-modal {
  position: absolute;
  top: 2px; right: 10px;
  font-size: 28px;
  color: #aaa;
  cursor: pointer;
}

/* Generalize input group styles for all forms */
.input-group {
  display: flex;
  align-items: center;
  border: 1.5px solid #cfd8dc;
  border-radius: 12px;
  margin-bottom: 18px;
  background: #fff;
  padding: 0 12px;
}

.input-group input {
  border: none;
  outline: none;
  flex: 1;
  padding: 16px 10px;
  font-size: 18px;
  color: #789;
  background: transparent;
}

.input-icon.right {
  margin-left: auto;
  cursor: pointer;
}

.forgot-link {
  display: block;
  text-align: center;
  color: #7b8dbb;
  margin-bottom: 24px;
  text-decoration: none;
  font-size: 17px;
}

.login-btn {
  width: 100%;
  padding: 16px 0;
  border: none;
  border-radius: 10px;
  background-color: #007bff;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(44,62,80,0.08);
  transition: background 0.2s;
}

.login-btn:hover {
  background: linear-gradient(90deg, #2a5298 0%, #1e3c72 100%);
}




