/* === General === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-image: url('images/body-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  color: #fff;
  margin: 0px 20px;
  font-family: 'Poppins', sans-serif;
}

a {
  text-decoration: none;
}

/* === Glassmorphic Navbar === */
.navbar {
  background: rgba(255, 255, 255, 0.1); /* translucent white */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0px 20px;
  position: sticky;
  top:0px;
   z-index: 1000;
  border-radius:40px;
  box-shadow: 0 4px 20px rgba(0, 255, 128, 0.15);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
}

.nav-logo img {
  height: 50px;
  border-radius: 50%;
}

.nav-links a {
  margin-left: 20px;
  color: #ffffff;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.3s, color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  background-color: rgba(100, 255, 135, 0.2);
  color: #64ff87;
}

/* Hamburger toggle icon */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

/* Hide nav links on mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    display: none;
    flex-direction: column;
    width: 200px;
    box-shadow: 0 8px 25px rgba(0, 255, 128, 0.15);
  }

  .nav-links a {
    margin: 10px 0;
    padding: 10px;
    text-align: left;
  }

  .nav-links.active {
    display: flex;
  }
}



/* === Hero Section === */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

.hero-text {
  flex: 1;
  padding: 20px;
}

.hero-text h1 {
  font-size: 2.8rem;
  color: #ffffff;
}

.hero-text h1 span {
  color: #64ff87;
}

.hero-text p {
  margin-top: 15px;
  color: #cccccc;
}

.cta-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 25px;
  background-color: #64ff87;
  color: #000;
  font-weight: 600;
  border-radius: 25px;
}

.hero-image {
  flex: 1;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: bottom;
  position: relative;
  height: 100%;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0px 20px 40px rgba(0, 0, 0, 0.4));
}



/* === Services Section === */
.services {
  padding: 80px 20px;
  text-align: center;
}
.section-title {
  font-size: 2rem;
  color: #64ff87;
  margin-bottom: 50px;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.card {
  background: #fff;
  color: #000;
  width: 300px;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
}
.icon {
  font-size: 2rem;
  margin-bottom: 15px;
}
.card h3 {
  margin-bottom: 15px;
}
.card p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 20px;
}
.btn-learn {
  background-color: #64ff87;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  color: #000;
}

/* === Offerings Section === */
.offering-section {
    padding: 80px 20px;
}

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

.offering-text {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
  color: #ffffff;
}

.offering-text h2 {
  color: #64ff87;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.offering-text h4 {
  color: #ccc;
  margin-top: 20px;
  font-size: 1.1rem;
}

.offering-text p {
  margin-top: 10px;
  color: #ccc;
  line-height: 1.6;
}

.offering-text ul {
  margin-top: 15px;
  padding-left: 20px;
}

.offering-text ul li {
  margin-bottom: 8px;
  list-style: disc;
  color: #ddd;
}

.offering-buttons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-blue,
.btn-green {
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-blue {
  background-color: #007BFF;
  color: #fff;
}

.btn-green {
  background-color: #64ff87;
  color: #000;
}

.offering-img {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  text-align: center;
}

.offering-img img {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 255, 128, 0.1);
}



/* === About Section === */
.about-section {
   padding: 80px 20px;
}
.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}
.about-text {
  flex: 1.2;
}
.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #64ff87;
}
.about-text h2 span {
  color: #ffffff;
}
.about-text p {
  margin-bottom: 15px;
  color: #ccc;
}
.about-image {
  flex: 1;
  text-align: center;
}
.about-image img {
  max-width: 350px;
  border-radius: 15px;
}

/* === Testimonials === */
.testimonials-section {
    padding: 80px 20px;
  text-align: center;
}
.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.testimonial-card {
  background-color: #ffffff;
  color: #000000;
  border-radius: 15px;
  padding: 30px 20px;
  max-width: 400px;
}
.testimonial-card h4 {
  margin-top: 20px;
  font-weight: bold;
}

/* === Contact Section === */
.contact-section {
  
  padding: 80px 20px;
  text-align: center;
}
.contact-container {
  max-width: 500px;
  margin: 0 auto;
}
.contact-container h2 {
  color: #64ff87;
  text-align: left;
  margin-bottom: 30px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 4px;
}
.contact-form button {
  background-color: #64ff87;
  color: #000;
  padding: 12px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
}

/* === Footer === */
.site-footer {
 
  color: #ffffff;
  padding: 40px 20px 20px;
  font-size: 0.9rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 20px;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-brand img {
  height: 40px;
}
.footer-contact p a {
  color: #ffffff;
}
.social-icons a img {
  height: 24px;
  margin-right: 10px;
}
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-links a {
  color: #ffffff;
  margin-left: 20px;
}
