  /* Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Arial", sans-serif;
      background: #ffffff;
      color: #002A2B;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Navbar Styles */
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #fff;
      padding: 15px 30px;
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      z-index: 1000;
    }

    nav .logo img {
      height: 45px;
      width: auto;
    }

    .nav-links {
      display: flex;
      gap: 25px;
    }

    .nav-links a {
      text-decoration: none;
      color: #000000;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .nav-links a:hover {
      color: #00b7b3;
    }

    /* Mobile Menu Toggle */
    .menu-toggle {
      display: none;
      font-size: 28px;
      color: #000000;
      cursor: pointer;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }
        .nav-links a {
          color: #fff;
        }

      .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: #003738;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        display: none;
      }

      .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease-in-out forwards;
      }

      @keyframes slideDown {
        from {
          opacity: 0;
          transform: translateY(-10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
    }



/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e3f4e8;
  text-align: center;
  padding: 120px 20px 60px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.7; 
  z-index: 0;
}

.hero-text {
  max-width: 1000px;
  position: relative; 
  z-index: 1;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #4CAF50, #002A2B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    padding: 10px;
  }
}

.hero .subheadline {
  font-size: 1.1rem;
  color: #777;
}


 @media (max-width: 768px) {
   section,
  .problem-section,
  .solution-section,
  .why-section,
  .serve-section,
  .impact-section,
  .cta-section {
    height: auto !important;
    min-height: auto !important;
    padding: 60px 20px;
  }
 }
 

 
 

  /* Grid sections stack cleanly */
  .problems,
  .solutions,
  .why-list,
  .serve-list,
  .impact-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }



.problem-section {
  background: #ffffff;
  padding: 0px 20px;
}

.problem-section .container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.problem-section h2 {
  font-size: 2.7rem;
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #006431, #002A2B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.problem-section .intro {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #777777;
}

/* Problems grid */
.problems {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  text-align: left;
}

.problems li {
  font-size: 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.problems i {
  color: #777777;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.problem-section .result {
  font-size: 1.2rem;
  font-weight: 500;
  color: #989191; 
}

/* ========================= */
/* RESPONSIVE DESIGN         */
/* ========================= */
@media (max-width: 768px) {
  .problems {
    grid-template-columns: 1fr; 
    gap: 15px;
  }

  .problem-section h2 {
    font-size: 1.8rem;
  }

  .problem-section .intro {
    font-size: 1.05rem;
  }

  .problem-section .result {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .problem-section {
    padding: 60px 15px;
  }

  .problem-section h2 {
    font-size: 1.6rem;
  }

  .problem-section .intro {
    font-size: 1rem;
  }

  .problems li {
    font-size: 1rem;
  }

  .problem-section .result {
    font-size: 1rem;
  }
}
/* Problem Section */
.problem-section {
  height: 100vh;
  background: #fff;
  padding: 20px 20px;
}

.problem-section h2,
.solution-section h2 {
  font-size: 2.7rem;
  font-weight: 700;
 padding-top: 30px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #006431, #002A2B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
.solution-section{
  background: #e3f4e8;
  padding-bottom: 30px;
}

.problem-section .intro,
.solution-section .intro {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #777777;
  text-align: center;
}

.problems,
.solutions {
   
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  text-align: left;
}

.problems li,
.solutions li {
  font-size: 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
  color: #777777;
}
.solution-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;  
}


.problems i {
  color: #827f7f; 
  font-size: 1.3rem;
  flex-shrink: 0;
}


.solutions i {
  color: #006431; 
  font-size: 1.3rem;
  flex-shrink: 0;
}

.problem-section .result {
  font-size: 1.2rem;
  font-weight: 500;
  color: #00692C;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .problems,
  .solutions {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .problem-section{
    min-height: 100vh;
    height: auto;
    padding: 33px;
  }

  .problem-section h2,
  .solution-section h2 {
    font-size: 1.8rem;
  }

  .problem-section .intro,
  .solution-section .intro {
    font-size: 1.05rem;
  }
  @media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
}
}

@media (max-width: 480px) {
  .problem-section,
  .solution-section {
    padding: 60px 30px;
  }

  .problem-section h2,
  .solution-section h2 {
    font-size: 1.6rem;
  }

  .problems li,
  .solutions li {
    font-size: 1rem;
  }
}
/* Why AptitudAI Section */
.why-section {
  background: #fff; 
  padding: 80px 20px;
}

.why-section h2 {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #006431, #002A2B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  text-align: left;
}

.why-list li {
  font-size: 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
  color: #777777;
  
}

.why-list i {
  color: #006431; 
  font-size: 1.2rem;
  flex-shrink: 0;
}

.why-section .tagline {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  color: #777777;
  margin-top: 20px;
  
}

/* Responsive */
@media (max-width: 768px) {
  .why-section{
    padding: 33px;
  }
  .why-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .why-section h2 {
    font-size: 1.8rem;
  }

  .why-section .tagline {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .why-section {
    padding: 60px 15px;
  }

  .why-section h2 {
    font-size: 1.6rem;
  }

  .why-list li {
    font-size: 1rem;
  }

  .why-section .tagline {
    font-size: 1rem;
  }
}
/* Whom We Serve Section */
.serve-section {
  background: #e3f4e8;
  padding: 80px 20px;
  height: 100vh;
}

.serve-section h2 {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #006431, #002A2B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.serve-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 40px;
}

.serve-list li {
  font-size: 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
  color: #777777;
}

.serve-list i {
  color: #006431;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.serve-list span {
  display: inline-block;
  color: #777777;
}

/* Responsive */
@media (max-width: 768px) {
  .serve-section{
    min-height: 100vh;
    height: auto;
    padding: 33px;
  }
  .serve-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .serve-section h2 {
    font-size: 1.8rem;
  }

  .serve-list li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .serve-section {
    padding: 60px 15px;
     min-height: 100vh;
    height: auto;
  }

  .serve-section h2 {
    font-size: 1.6rem;
  }
  
}
/* Impact at Scale Section */
.impact-section {
  background: #f5fff8; /* light green for positivity */
  padding: 80px 20px;
}

.impact-section h2 {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #006431, #002A2B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.impact-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 950px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 40px;
}

.impact-list li {
  font-size: 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
  color: #777777;
}

.impact-list i {
  color: #006431;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.impact-list span {
  display: inline-block;
  color: #777777;
}

/* Responsive */
@media (max-width: 768px) {
  .impact-section{
    padding: 33px;
  }
  .impact-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .impact-section h2 {
    font-size: 1.8rem;
  }

  .impact-list li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .impact-section {
    padding: 60px 15px;
  }

  .impact-section h2 {
    font-size: 1.6rem;
  }
}
/* Call to Action Section */
.cta-section {
  background: #006431; /* deep brand green */
  color: #ffffff;
  height: 100vh;
  padding: 80px 20px;
  display: flex;
  text-align: center;
  justify-content: center;
}

.cta-section h2 {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 40px;
}

.cta-section .cta-subtext {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 15px 35px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
}

.cta-btn.primary {
  background: #ffffff;
  color: #006431;
}

.cta-btn.primary:hover {
  background: #e6e6e6;
}

.cta-btn.secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.cta-btn.secondary:hover {
  background: #ffffff;
  color: #006431;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-section{
    min-height: 100vh;
    height: auto;
  }
  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-section .cta-subtext {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 60px 15px;
  }

  .cta-section h2 {
    font-size: 1.6rem;
  }

  .cta-section .cta-subtext {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}
.bottom-bar{
  background: #006431;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
   
}
.bottom-bar p{
  font-size: 12px;
  color: #fff;
}
.contact-section {
  padding: 60px 20px;
  background: #f9f9f9;
  color: #002A2B;
}

.contact-section h2 {
  text-align: center;
  font-size: 2.7rem;
  margin-bottom: 40px;
  font-weight: 700;
      background: linear-gradient(135deg, #006431, #002A2B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

/* Contact Form */
.contact-form {
  flex: 1 1 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form .btn-submit {
  background: #006431;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form .btn-submit:hover {
  background: #004d34;
}

/* Contact Info Card */
.contact-info {
  flex: 1 1 250px;
  max-width: 400px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-info h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: #006431;
}

.contact-info p {
  margin: 10px 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  color: #006431;
  min-width: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
  .contact-info{
    max-width: 600px;
  }
  .contact-section h2 {
    font-size: 1.6rem;
  }
}
/* ===========================
   Footer
=========================== */

.site-footer {
    background: #fff;
  
    padding: 60px 0 25px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Logo */

.footer-logo img{
    width: 180px;
    height: auto;
    display: block;
}

.footer-logo p{
    margin-top:20px;
    color:#666;
    line-height:1.7;
    font-size:15px;
}

/* Headings */

.footer-links h4,
.footer-social h4{
    font-size:18px;
    color:#006431;
    margin-bottom:18px;
    font-weight:700;
}

/* Links */

.footer-links{
    display:flex;
    flex-direction:column;
}

.footer-links a{
    color:#555;
    text-decoration:none;
    margin-bottom:12px;
    font-size:15px;
    transition:.25s;
}

.footer-links a:hover{
    color:#006431;
    padding-left:5px;
}

/* Social */

.footer-social .social-icons{
    display:flex;
    gap:12px;
    margin-top:10px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#f3f5f7;
    color:#006431;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:18px;
    transition:.3s;
}

.footer-social a:hover{
    background:#006431;
    color:#fff;
    transform:translateY(-3px);
}

/* Bottom */

.footer-bottom{
    max-width:1200px;
    margin:40px auto 0;
    padding:20px 30px 0;
    border-top:1px solid #ececec;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.footer-bottom p{
    margin:0;
    color:#666;
    font-size:14px;
}

.footer-bottom a{
    color:#006431;
    text-decoration:none;
    margin-left:15px;
}

.footer-bottom a:hover{
    text-decoration:underline;
}

/* ===========================
   Mobile
=========================== */

@media(max-width:900px){

.footer-container{
    grid-template-columns:1fr;
    gap:35px;
    text-align:center;
}

.footer-logo img{
    margin:auto;
}

.footer-links{
    align-items:center;
}

.footer-social{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.footer-bottom{
    flex-direction:column;
    text-align:center;
}

.footer-bottom a{
    margin:0 8px;
}

}
.footer-social h4{
    font-size:18px;
    color:#006431;
    margin-bottom:18px;
    font-weight:700;
}

.social-icons{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.social-icons a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#f3f5f7;
    color:#006431;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:18px;
    transition:all .3s ease;
}

.social-icons a:hover{
    background:#006431;
    color:#fff;
    transform:translateY(-3px);
}
.twelfth-section {
  width: 100%;
  padding: 80px 140px;
  background: #fff; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.twelfth-section .text-box {
  max-width: 900px;
  text-align: left;
}

.twelfth-section h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #ff0000, #000000); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Beginner Checklist */
.beginner-checklist {
  list-style: none;
  padding-left: 0;
}

.beginner-checklist li {
  font-size: 1.1rem;
  margin-bottom: 12px;
  padding-left: 35px;
  position: relative;
  color: #333;
}

.beginner-checklist li::before {
  
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  color: #ff0000;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .twelfth-section h1 {
    font-size: 2rem;
  }

  .beginner-checklist li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .twelfth-section h1 {
    font-size: 1.6rem;
  }
}
