/* === RESET & GLOBAL STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #333;
  line-height: 1.6;
  background: #f5f5f5;
  overflow-x: hidden;
  font-size: 0.95rem;
}

/* === NAVBAR === */
.top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  background: #003366;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-nav .logo img {
  width: 50px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 8px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #ffcc00;
}

.social-icons a {
  color: #fff;
  margin-left: 10px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ffcc00;
}

/* === HERO SECTION === */
.hero {
  position: relative;
  height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 5%;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.hero-content {
  max-width: 100%;
  padding: 15px;
}

.hero-content h1 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.hero-content span {
  color: #ffcc00;
}

.hero-content p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.btn-primary {
  display: inline-block;
  padding: 8px 16px;
  background: #ffcc00;
  color: #003366;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #e6b800;
}

/* === SEARCH BOX === */
.search-box {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: #fff;
  padding: 8px;
  border-radius: 6px;
  justify-content: center;
}

.search-box select,
.search-box input {
  flex: 1 1 140px;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 0.9rem;
}

.btn-search {
  padding: 8px 16px;
  background: #003366;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn-search:hover {
  background: #002244;
}

/* === ACTIVITIES === */
.activities {
  padding: 50px 5%;
  text-align: center;
}

.activities h2 {
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.activity-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.activity-cards .card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.activity-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.activity-cards .card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.activity-cards .card h3 {
  padding: 12px;
  font-size: 1rem;
}

/* === ABOUT === */
/* About Section */
.about {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 80px 10%;
  background: #fff;
}

/* Left Side - Image */
.about-img {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.about-img img {
  width: 320px;           /* Clean and cute size */
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.about-img img:hover {
  transform: scale(1.03);
}

/* Experience Badge */
.experience {
  position: absolute;
  bottom: -10px;
  right: -15px;
  background: linear-gradient(135deg, #007bff, #0056d2);
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
}

.experience strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
}

.experience span {
  font-size: 0.85rem;
}

/* Right Side - Text */
.about-text {
  flex: 1.5;
  text-align: left;
}

.about-title {
  font-size: 2rem;
  color: #222;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.features {
  list-style: none;
  padding: 0;
}

.features li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}

.features i {
  color: #007bff;
  margin-right: 8px;
}

/* Responsive: stack on mobile */
@media (max-width: 900px) {
  .about {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .about-text {
    text-align: center;
  }

  .about-img img {
    width: 260px;
  }

  .experience {
    position: static;
    display: inline-block;
    margin-top: 10px;
  }
}


.features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.9rem;
}

/* Promo Section */
.promo-offers {
  background: #f9fafc;
  padding: 90px 10%;
  text-align: center;
}

.promo-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 50px;
  position: relative;
}

.promo-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #007bff, #0056d2);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Cards Container */
.promo-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  justify-items: center;
}

/* Individual Card */
.promo-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: left;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  max-width: 380px;
}

.promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Card Icon */
.promo-icon {
  background: linear-gradient(135deg, #007bff, #0056d2);
  color: #fff;
  font-size: 1.8rem;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

/* Card Title */
.promo-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.4;
}

/* Card Description */
.promo-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Card Info Items */
.promo-item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 8px;
}

.promo-item i {
  color: #007bff;
  margin-right: 8px;
}

/* Advanced Buttons */
.btn-promo {
  display: inline-block;
  margin-top: 15px;
  background: linear-gradient(135deg, #007bff, #0056d2);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-promo:hover {
  background: linear-gradient(135deg, #0056d2, #003c99);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 91, 187, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .promo-offers {
    padding: 60px 6%;
  }

  .promo-card {
    text-align: center;
    padding: 30px 20px;
  }

  .promo-item {
    justify-content: center;
  }
}


/* === CONTACT === */
/* Contact Section Styling */
.contact {
  background: #f8f9fc;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .container {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.contact .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.contact .section-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

/* Contact Form */
.contact-form {
  background: #fff;
  padding: 35px 40px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  max-width: 480px;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.form-group {
  position: relative;
  margin-bottom: 25px;
  text-align: left;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 6px rgba(0, 123, 255, 0.2);
}

.contact-form label {
  position: absolute;
  top: -10px;
  left: 15px;
  background: #fff;
  font-size: 0.8rem;
  color: #555;
  padding: 0 6px;
}

/* Submit Button */
.btn-submit {
  background: linear-gradient(135deg, #007bff, #0056d2);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #0056d2, #003c99);
  transform: translateY(-2px);
}

#feedback {
  color: #007bff;
  font-weight: 500;
}

/* Make it responsive */
@media (max-width: 600px) {
  .contact {
    padding: 60px 15px;
  }

  .contact-form {
    padding: 25px 20px;
  }
}


/* === TEAM SECTION === */
.team {
  padding: 60px 5%;
  text-align: center;
  background: #f4f8fc;
}

.team h2 {
  font-size: 1.8rem;
  color: #003366;
  margin-bottom: 30px;
  font-weight: 700;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  justify-items: center;
}

.team-member {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #00bcd4;
  margin-bottom: 10px;
}

.team-member h3 {
  font-size: 1rem;
  color: #003366;
  margin-bottom: 5px;
}

.team-member p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
}

/* === FOOTER === */
.site-footer {
  background: #003366;
  color: #fff;
  padding: 30px 5%;
  font-size: 0.85rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 1.4rem; }
  .promo-title, .contact h2, .team h2 { font-size: 1.5rem; }
  .contact-content { flex-direction: column; }
  .btn-primary, .btn-search { width: 100%; }
}

@media (max-width: 480px) {
  .hero { height: 60vh; }
  .hero-content p, .promo-desc, .team-member p { font-size: 0.8rem; }
  .contact-form input, .contact-form textarea { font-size: 0.85rem; }
  .contact-form button { width: 100%; }
}


.footer-about, .footer-links, .footer-contact, .footer-social {
  flex: 1 1 200px;
}

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

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffcc00;
}