body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: white;
    color: white;
}

.logo img {
    height: 50px;
}

.navbar ul {
    list-style-type: none;
    display: flex;
    gap: 15px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.navbar ul li a {
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 20px;
    
}
.learning-hero {
    background: url(df.PNG);
    padding: 40px 20px;
    text-align: center;
    color: white;
}
.learning-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.section-title {
    text-align: center;
    font-size: 28px;
    margin: 40px 0 20px;
}

.learning-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px 40px;
}

@media (min-width: 768px) {
    .learning-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .learning-content {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-title {
    font-size: 16px;
    text-align: center;
    margin-top: 10px;
}
/*footerstart*/
.footer {  
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: Arial, sans-serif;
    padding: 40px 20px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-section {
    flex: 1 1 200px;
}

.footer-logo {
    width: 40px;
    margin-bottom: 10px;
}

.footer-heading {
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 6px 0;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-socials {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
}

.footer-socials a img {
    background: white;
    border-radius: 4px;
    padding: 5px;
    width: 30px;
    height: 30px;
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    font-size: 0.8rem;
}

.footer-bottom hr {
    border: 0.5px solid #444;
    margin-bottom: 10px;
}

.footer-bottom p {
    color: #ccc;
}

.footer-bottom a {
    color: #ccc;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}
/*footer end*/
.navbar ul li a:hover {
    color: #2e8b57;
}

.cta-button {
    background: #2e8b57;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #256a45;
}
 h3 {
      color: #cc0000;
    }

/* ---------- RESPONSIVE BREAKPOINTS ---------- */


.menu-toggle {
  display: none; 
  font-size: 28px;
  cursor: pointer;
  color: #333; 
}

/* Show menu icon on tablets and phones */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .navbar ul {
    display: none; 
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 70px; 
    right: 20px;
    width: 200px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .navbar ul.active {
    display: flex;
  }

  .navbar ul li {
    margin: 10px 0;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }

  .navbar ul {
    flex-direction: column;
  }
}
.section-title {
  font-size: 2.5vw;
}




