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

:root {
  --primary-color: #2E7D32;
  --primary-dark: #1B5E20;
  --secondary-color: #E8F5E9;
  --text-color: #333333;
  --text-light: #666666;
  --bg-color: #FAFAFA;
  --white: #FFFFFF;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  --box-shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-color);
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--primary-color);
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-container a {
  display: block;
  position: relative;
}

.logo-img {
  max-height: 65px; /* Slightly increased to compensate for removed black padding */
  width: auto;
  display: block;
  padding: 5px;
  margin: 2px 0;
  transition: transform 0.3s ease;
  /* Luma-key SVG filter element to remove black backgrounds from JPEGs natively */
  filter: url('#luma-key');
}

.logo-container a:hover .logo-img {
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links li a {
  font-weight: 500;
  color: var(--text-color);
  transition: var(--transition);
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--primary-color);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1497633762265-9d179a990aa6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding-top: 80px; /* Offset for navbar */
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeUp 1s ease-out;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  animation: fadeUp 1s ease-out 0.3s backwards;
}

.hero-content .btn {
  animation: fadeUp 1s ease-out 0.6s backwards;
}

/* About Section */
.about {
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-content p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.about-features {
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.feature-icon {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}

.about-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

/* Mission Section */
.mission {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--white) 100%);
  text-align: center;
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
}

.mission-icon-wrapper {
  background-color: var(--primary-color);
  color: var(--white);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  margin: 0 auto 25px;
  box-shadow: var(--box-shadow);
}

.mission-text {
  font-size: 1.4rem;
  color: var(--text-color);
  font-weight: 500;
  line-height: 1.8;
  font-style: italic;
  position: relative;
}

@media (max-width: 768px) {
  .mission-text {
    font-size: 1.15rem;
  }
}

/* Benefits Section */
.benefits {
  background-color: var(--bg-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
  border-bottom-color: var(--primary-color);
}

.benefit-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.benefit-card h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.benefit-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* CTA Section */
.cta {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 60px 0;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 30px;
  font-size: 2.5rem;
}

.cta .btn {
  background-color: var(--white);
  color: var(--primary-color);
}

.cta .btn:hover {
  background-color: var(--bg-color);
  transform: scale(1.05);
}

/* Static Page Header (Terms, Contact) */
.page-header {
  padding: 160px 0 80px;
  background-color: var(--secondary-color);
  text-align: center;
}

.page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

/* Terms Layout */
.terms-content {
  background-color: var(--white);
  padding: 50px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  margin: -40px auto 80px;
  position: relative;
}

.terms-section {
  margin-bottom: 30px;
}

.terms-section h3 {
  margin-bottom: 15px;
  color: var(--primary-dark);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.terms-section h3 span {
  background-color: var(--primary-color);
  color: var(--white);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1rem;
}

.terms-section p {
  color: var(--text-light);
  margin-bottom: 10px;
  padding-left: 40px;
}

/* Contact Layout */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  margin: -40px auto 80px;
  position: relative;
}

.contact-info {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.contact-info h3 {
  color: var(--white);
  margin-bottom: 30px;
  font-size: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.contact-form-container {
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.contact-form-container h3 {
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-color);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Form Messages */
.form-message {
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
  display: none;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

/* Footer */
footer {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo-crop {
  display: block;
  width: 55px;
  height: 55px;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  background-color: var(--white);
}

.footer-logo-crop img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
}

.footer-col h3 {
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-col p {
  color: #ccc;
  margin-bottom: 15px;
}

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

.footer-links a {
  color: #ccc;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ccc;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-grid, .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    transition: var(--transition);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin-bottom: 20px;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .terms-content {
    padding: 30px 20px;
  }
  
  .contact-wrapper {
    margin-top: -20px;
    gap: 30px;
  }
}

/* Awards Page Styles */
.awards-hero {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('Awards-page-images/image1.jpeg') center/cover no-repeat fixed;
  height: 100vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px; /* Offset for navbar */
  overflow: hidden;
}

.awards-hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 0 20px;
}

.awards-hero h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeUp 1s ease-out;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.awards-hero p {
  font-size: 1.5rem;
  color: #e0f2f1;
  font-weight: 500;
  animation: fadeUp 1s ease-out 0.3s backwards;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.awards-intro {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--white);
  font-size: 1.25rem;
  color: var(--text-color);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 400;
}

.awards-intro strong {
  color: var(--primary-color);
}

/* Levels Showcase styles */
.levels-showcase {
  background-color: var(--bg-color);
  padding: 80px 0;
}

.levels-showcase-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.levels-showcase-left {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.level-block {
  background-color: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--box-shadow);
}

.level-block.alt-bg {
  background-color: var(--secondary-color);
}

.levels-showcase-right {
  flex: 1;
  position: sticky;
  top: 100px;
}

.levels-showcase-right img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--box-shadow-hover);
}

.level-title {
  text-align: left;
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 50px;
  position: relative;
}

.level-title::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 0;
}

.level-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.award-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border-top: 4px solid var(--primary-color);
  display: flex;
  flex-direction: column;
}

.award-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.award-card h3 {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.award-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.award-card ul li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  color: var(--text-color);
}

.award-card ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 2px;
}

/* Premium Level 2 Card */
.premium-card {
  background: linear-gradient(145deg, #ffffff, #f0fdf4);
  border-top: 4px solid #f59e0b; /* Gold/Amber */
  position: relative;
  overflow: hidden;
}

.premium-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(245, 158, 11, 0.05) 100%);
  pointer-events: none;
}

.premium-card h3 {
  color: #d97706;
}

.premium-card ul li::before {
  color: #f59e0b;
}

.level-flex {
  display: flex;
  align-items: stretch;
  gap: 50px;
}

.level-content-wrapper {
  flex: 1;
}

.level-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.level-image-wrapper img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: var(--box-shadow-hover);
  object-fit: contain;
}

/* Additional Cards */
.additional-card {
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
  max-width: calc(50% - 15px);
}

@media (max-width: 768px) {
  .additional-card {
    max-width: 100%;
  }
}

/* Split Section for Highlights */
.split-section {
  padding: 60px 0;
  background-color: var(--white);
}

.split-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.split-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.split-image img {
  width: 100%;
  height: auto;
  max-width: 600px;
  object-fit: contain;
  border-radius: 12px;
}

.split-content {
  flex: 1;
  text-align: left;
}

.split-content h2 {
  font-size: 2.8rem;
  color: var(--primary-dark);
  line-height: 1.3;
  margin-bottom: 30px;
}

.split-content .btn {
  font-size: 1.1rem;
  padding: 15px 40px;
}

@media (max-width: 992px) {
  .levels-showcase-container {
    flex-direction: column;
  }
  .levels-showcase-right {
    position: static;
    margin-top: 40px;
  }
  .level-flex {
    flex-direction: column-reverse;
  }
}

@media (max-width: 768px) {
  .awards-hero h1 {
    font-size: 2.5rem;
  }
  .awards-hero p {
    font-size: 1.2rem;
  }
  .split-container {
    flex-direction: column;
  }
  .split-content {
    text-align: center;
  }
  .split-content h2 {
    font-size: 2.2rem;
  }
  .level-title {
    font-size: 2rem;
  }
}

