/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: #f5f7fa;
  color: #222;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
}

/* Buttons */
.btn {
  background: linear-gradient(90deg, #0CAA4E, #28a745);
  color: white;
  padding: 0.6rem 1.3rem;
  border-radius: 8px;
  font-weight: 700;
  transition: transform 0.3s ease, background 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn:hover {
  background: linear-gradient(90deg, #089243, #1e7e34);
  transform: translateY(-2px);
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #ffffff, #f9fdfb);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.logo-row{
    display: flex;
    flex-direction: row;
}
.logo-img {
  width: 120px;
  transition: transform 0.3s ease;
}
.logo-img-two {
  width: 100px;
  transition: transform 0.3s ease;
  margin-right:20px;
}


.login-btn {
  background: none;
  border: 2px solid #0CAA4E;
  color: #0CAA4E;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background-color: #0CAA4E;
  color: white;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f9fdfb, #e0f7ea);
  padding: 4rem 1rem;
}

.hero-row{
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
}
.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: 2.5rem;
}

.hero-text h1 {
  font-size: 2.8rem;
  color: #222;
  margin-bottom: 1.2rem;
  line-height: 1.4;
  font-weight: 700;
}

.hero-text .highlight {
  color: #0CAA4E;
  text-shadow: 1px 1px 5px rgba(12, 170, 78, 0.3);
}

.hero-text p {
  margin-bottom: 1.8rem;
  font-size: 1rem;
  color: #444;
}

.hero-video {
  text-align: center;
  position: relative;
}

.video-box {
  background-color: #0CAA4E;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none; /* Prevent clicks on iframe */
}

.video-box .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: auto; /* Allow overlay to capture clicks */
  cursor: default; /* Hide cursor to discourage interaction */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 50%); /* Subtle gradient to mask top */
}

.video-box .ytp-chrome-top, .video-box .ytp-chrome-bottom {
  display: none !important; /* Attempt to hide YouTube top/bottom UI */
}

.play-icon {
  color: #fff;
  font-size: 2.8rem;
  animation: pulse 1.5s infinite;
}

.video-caption {
  margin-top: 0.7rem;
  font-size: 1rem;
  color: #333;
  font-weight: 500;
}


.video-caption {
  margin-top: 0.7rem;
  font-size: 1rem;
  color: #333;
  font-weight: 500;
}

/* Programs Section */
.programs {
  background-color: #ffffff;
  padding: 4rem 1rem;
}

.programs h2 {
    display: flex;
    align-items:center;
    justify-content:center;
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
    color: #222;
    letter-spacing: 1px;
    line-height:2rem;
}

.programs-img{
    width:110px;
    margin-right:10px;
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.program-card {
  background: linear-gradient(145deg, #f2fef7, #e6f3ec);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1rem;
  color: #222;
  transition: transform 0.3s ease;
}

.program-card:hover {
  transform: translateY(-5px);
}

.program-card i {
  font-size: 1.4rem;
  color: #0CAA4E;
}

/* CTA Section - Green */
.cta {
  background: linear-gradient(135deg, #0CAA4E, #28a745);
  color: white;
  padding: 3rem 1rem;
  text-align: center;
  margin-bottom:50px
}

.cta-list{
    margin-bottom:100px;
}
.cta-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 0;
}

.car-icon {
  max-width: 120px;
  filter: drop-shadow(0 4px 10px rgba(255,255,255,0.5));
  transition: transform 0.3s ease;
  margin-left:20px;
}

.car-icon:hover {
  transform: scale(1.1);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 0;
}

.benefit-card {
  background: linear-gradient(145deg, #ffffff, #f9f9f9);
  color: #222;
  padding: 1.8rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card i {
  font-size: 1.8rem;
  color: #0CAA4E;
  margin-bottom: 0.8rem;
}

.benefit-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.benefit-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-img {
  width: 110px;
}
.logo-img-two {
  width: 90px;
  margin-right:20px;
}
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  .hero-video {
    margin-top: 2rem;
  }

  .cta h2 {
    font-size: 1.8rem;
  }

  .benefits-grid {
    gap: 1.2rem;
  }

  .header {
    flex-direction: row;
    justify-content: space-between;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-row {
    flex-direction: column;
    text-align: center;
  }

  .car-icon {
    margin-top: 1rem;
  }

  .program-card, .benefit-card {
    padding: 1.2rem;
  }
  .programs h2 {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 1.4rem;
    color: #222;
    letter-spacing: 1px;
    margin-top:10px;
}
.programs-img{
    width:100px;
    margin-right:0px;
    margin-bottom:5px;
}

}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}