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

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

.navbar {
  position: fixed;
  width: 100%;
  background: rgba(0, 30, 10, 0.95);
  padding: 15px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #00ff7f;
}

/* HERO */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 50, 20, 0.7), rgba(0, 50, 20, 0.7)),
              url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1950&q=80') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  background: #00b050;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #008040;
}

/* SECTIONS */
.section {
  padding: 80px 10%;
  text-align: center;
}

.section.alt {
  background: #003b18;
}

.section h2 {
  color: #00ff7f;
  font-size: 2rem;
  margin-bottom: 25px;
}

/* COURSES */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.course-card {
  background: #004b20;
  padding: 20px;
  border-radius: 12px;
  font-weight: 600;
  transition: transform 0.3s;
}

.course-card:hover {
  transform: translateY(-5px);
}

/* IMPACT COUNTERS */
.counter-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.counter-box {
  background: #004b20;
  padding: 30px;
  border-radius: 15px;
  min-width: 200px;
  transition: transform 0.3s;
}

.counter-box:hover {
  transform: scale(1.05);
}

.counter-box h3 {
  color: #00ff7f;
  font-size: 2.5rem;
}

.counter-box p {
  margin-top: 10px;
  font-weight: 600;
}

/* FOUNDER */
.founder-profile {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.founder-profile img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 4px solid #00ff7f;
  object-fit: cover;
}

/* GALLERY */
.carousel {
  position: relative;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
}

.slides {
  display: flex;
  transition: transform 0.6s ease;
}

.slides img {
  width: 100%;
  border-radius: 12px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: white;
  font-size: 1.8rem;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
}

.prev {
  left: 15px;
}
.next {
  right: 15px;
}

/* QUOTES */
.quotes blockquote {
  background: #004b20;
  border-left: 5px solid #00ff7f;
  padding: 20px;
  margin: 20px auto;
  width: 80%;
  border-radius: 8px;
  font-style: italic;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background-color: #0b2614;
  color: #ddd;
  text-align: center;
  padding: 80px 20px;
}

.contact-section h2 {
  color: #fff;
  font-size: 2.2em;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.contact-section p {
  font-size: 1.1em;
  margin: 10px auto;
  max-width: 700px;
  line-height: 1.6;
}

/* Highlighted Email Link */
.contact-section a.highlight {
  color: #ffcc00;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.contact-section a.highlight:hover {
  color: #fff700;
  text-shadow: 0 0 8px rgba(255, 255, 0, 0.6);
}

/* ===== CONTACT FORM ===== */
.contact-form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #1a4d2e;
  background-color: #082010;
  color: #fff;
  font-size: 1em;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ffcc00;
}

/* Button */
.contact-form .btn {
  background-color: #115f2d;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form .btn:hover {
  background-color: #ffcc00;
  color: #000;
  transform: scale(1.05);
}


/* ===== FOOTER ===== */
.footer {
  background-color: #062a13; /* dark green tone */
  color: #ccc;
  text-align: center;
  padding: 25px 10px;
  font-size: 0.95em;
  letter-spacing: 0.5px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
  margin: 0;
}

.footer .highlight {
  color: #ffcc00; /* bright yellow for AmarsCity */
  font-weight: 600;
  text-decoration: none; /* remove underline */
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer .highlight:hover {
  color: #fff700; /* lighter yellow on hover */
  text-shadow: 0 0 8px rgba(255, 255, 0, 0.6); /* soft glow */
}
 
/* ===== GALLERY SECTION ===== */
.gallery {
  background-color: #081c11;
  padding: 60px 20px;
  text-align: center;
}

.gallery-container {
  max-width: 1100px;
  margin: 0 auto;
}

.gallery h2 {
  color: #fff;
  font-size: 2.2em;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

/* ===== LIGHTBOX EFFECT ===== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: #0f0;
}

/* FOLLOW SECTION STYLES */
.follow-section {
  text-align: center;
  padding: 60px 20px;
}

.follow-section h2 {
  margin-bottom: 10px;
}

.follow-section p {
  margin-bottom: 40px;
  color: #666;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  color: white;
  min-width: 140px;
  justify-content: center;
}

.social-link i {
  font-size: 20px;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.social-link.facebook {
  background: #3b5998;
}

.social-link.facebook:hover {
  background: #2d4373;
}

.social-link.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #d87a2b 0%, #c55530 25%, #b91f35 50%, #a41a54 75%, #96156c 100%);
}

.social-link.blogger {
  background: #ff6900;
}

.social-link.blogger:hover {
  background: #e65c00;
}

.social-link.whatsapp {
  background: #25D366;
}

.social-link.whatsapp:hover {
  background: #20b358;
}

/* BUY BOOK SECTION */
.buy-book-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 40px;
  border-radius: 20px;
  max-width: 500px;
  margin: 0 auto;
  color: white;
}

.buy-book-section h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.buy-book-section p {
  margin-bottom: 25px;
  opacity: 0.9;
}

.buy-book-btn {
  background: white;
  color: #667eea;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.buy-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  color: #667eea;
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
  .social-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .social-link {
    min-width: 200px;
  }
  
  .buy-book-section {
    padding: 30px 20px;
  }
}
