* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 0;
}

.proh {
    display: flex;
    justify-content: space-between;
    background-color: #FFFFFF;
     position: fixed;
    top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 40px 80px; /* adjust */
}

.hac {
    display: flex;
}

.menu-links {
  display: flex;
  gap: 30px; /* Add gap here for the links inside */
}

.hac a {
  font-family: 'Satoshi';
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #252B37;
  text-decoration: none;
}

.hac a:hover {
  color: #007bff;
}

.nav-container {
  position: relative;
}

/* Hamburger button - hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Hamburger animation when open */
.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.close-menu {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #FFFFFF;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.close-menu:hover {
  color: #007bff;
  transform: rotate(90deg);
}

.close-menu:focus {
  outline: none; /* Remove focus outline if you want no border at all */
}

.menu-header,
.menu-footer {
  display: none;
}

.bluegra {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 200px;
    padding-bottom: 50px;
    background: radial-gradient(
    50% 162.64% at 50% 50%,
    #0B43E6 0%,
    #0830A3 50.96%,
    #0A3AC5 100%
  );
}

.procha {
    background: linear-gradient(
    276.61deg,
    #FEEB77 -31.57%,
    #0B43E6 94.81%
  );

    display: flex;
    width: 234px;
    height: 31px;
    opacity: 1;
    gap: 22px;
    border-radius: 139px;
    border-width: 1.39px;
    padding: 6px 22px;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}

.procha p {
    font-family: 'Instrument Sans';
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF;
}

.muas h1 {
    font-family: 'Satoshi';
    font-weight: 700;
    font-style: Bold;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: -3%;
    color: #FFFFFF;
}

.muas p {
    font-family: 'Satoshi';
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -3%;
    color: #FFFFFFB2;
}

.lman  {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: 20px;
}

.lm {
    width: 188px;
    height: 56px;
    opacity: 1;
    gap: 10px;
    border-radius: 100px;
    border-width: 1px;
    padding: 12px 24px;
    border: 1px solid #FFFFFFB2;

    display: flex;
    justify-content: center;
    align-items: center;
}

.lm a {
  display: flex;
  align-items: center;
  gap: 8px; /* space between text and icon */
  text-decoration: none;
  color: #FFFFFF; /* or whatever color you want */
  font-family: 'Satoshi';
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
}

.sot {
  font-size: 38px;
  font-family: 'Satoshi';
  font-weight: 600;
  font-style: normal;
  color: #FFFFFF;
}

.an {
    width: 167px;
    height: 56px;
    opacity: 1;
    gap: 10px;
    border-radius: 100px;
    padding: 12px 24px;
    background-color: #FFFFFF;

    display: flex;
    justify-content: center;
    align-items: center;
}

.an a {
  color: #0038E6;
  font-family: 'Satoshi';
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.an:hover {
  background: #FEE134;
}

.an a:hover {
  color: #000000;
}

.image-gallery {
  display: flex; /* Enables flexbox for the gallery */
  width: 100%; /* Ensures the gallery takes full width of its container */
  box-sizing: border-box; /* Includes padding and border in the element's total width and height */
  align-items: flex-start; /* Aligns items to the start of the cross axis, useful if images have different heights */
}

.image-gallery img {
  display: block; /* Removes extra space below images */
  max-width: 100%; /* Ensures images don't overflow their flex item container */
  height: auto; /* Maintains aspect ratio */
  flex: 1 1 0; /* Allows images to grow and shrink, with a base of 0 */
  /* flex-basis: 0; This is crucial. It tells flex items to share available space equally before considering content size */
  object-fit: contain; /* Ensures the entire image is visible within its content box while maintaining its aspect ratio */
  min-width: 0; /* Allows the image to shrink below its intrinsic content size if necessary */
  max-height: 100%; /* Prevents images from becoming larger than their parent's height */
}

.ta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

.ta h3 {
  font-family: 'Satoshi';
font-weight: 700;
font-style: Bold;
font-size: 40px;
line-height: 100%;
letter-spacing: -3%;
text-align: center;
color: #252B37;
width: 767px;
}

.ta p {
  font-family: 'Satoshi';
font-weight: 400;
font-style: normal;
font-size: 20px;
line-height: 30px;
text-align: center;
color: #051C61;
width: 767px;
}

.program-features {
    background-color: #E7ECFD;
    padding: 40px;
    border-radius: 40px;
    width: 100%;
}

.program-features h2 {
    font-family: 'Satoshi';
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    padding-left: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkmar {
    font-size: 1.5em;
    margin-right: 15px;
    flex-shrink: 0; /* Prevent checkmark from shrinking */
    background-color: #3C69EB;
    color: #FFFFFF;
    padding: 5px; 
    width: 32px;
    height: 32px;
    border-radius: 100px; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feature-item p {
    width: 461px;
    color: #252B37;
   font-family: 'Inter';
font-weight: 400;
font-style: normal;
font-size: 20px;

}

.wac {
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.wyla h3 {
  font-family: 'Satoshi';
font-weight: 700;
font-style: Bold;
font-size: 40px;
text-align: center;
color: #252B37;
}

.wyla p {
  font-family: 'Satoshi';
font-weight: 400;
font-style: normal;
font-size: 20px;
text-align: center;
color: #051C61;
}

.whp {
  background-color: #E7ECFD;
  padding-top: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.whp img {
  width: 80%;
  height: auto;
}

.whp h3 {
  margin: 0 auto;
  width: 529px;
  font-family: 'Satoshi';
font-weight: 700;
font-style: Bold;
font-size: 40px;
text-align: center;
color: #252B37;
margin-bottom: 50px;
}

.whp p {
   margin: 0 auto;
  width: 717px;
  font-family: 'Satoshi';
font-weight: 400;
font-style: normal;
font-size: 20px;
text-align: center;
margin-top: 50px;
margin-bottom: 50px;
}

.features-container {
  background-color: #E7ECFD;
  width: 100%;
  padding: 72px 10px;
}

.features-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;

  /* Centering magic */
  max-width: 1200px;  /* controls the width */
  margin: 0 auto;     /* centers it horizontally */
}


.feature-card {
  width: 591px;
  height: 207px;
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.feature-card div {
  display: flex;
  gap: 10px;
}

.feature-card h3 {
  color: #252B37;
  font-family: 'Satoshi';
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  margin: 0;
}

.feature-card p {
  color: #000000;
  flex-grow: 1;
  font-family: 'Satoshi';
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  width: 100%;
  padding-left: 45px;
}

.feature-card .btn {
  display: inline-block;
  padding: 8px 12px;
  border: none;
  margin-left: 45px;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  text-align: center;
}

.feature-card .btn.primary {
  background-color: #FEE134;
  color: #252B37;
  width: 146px;
  padding: 8px 12px;
  font-family: 'Satoshi';
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
}

.feature-card .btn.primary:hover {
  background-color: #ffc107; /* Darker yellow on hover */
  transform: translateY(-2px);
}

.lwr {
  background-color: #E7ECFD;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;
}

.lws {
  background-color: #FFFFFF;
  width: 1040px;
opacity: 1;
border-radius: 20px;
padding: 32px 274px;
gap: 28px;
}

.lwa h3 {
  font-family: 'Satoshi';
font-weight: 700;
font-style: Bold;
font-size: 32px;
text-align: center;
color: #051C61;
}

.lwa p {
  font-family: 'Satoshi';
font-weight: 400;
font-style: normal;
font-size: 20px;
text-align: center;
color: #051C61;
}

.sa {
  background-color: #E7ECFD;
  width: 492px;
  padding: 6px 0;
border-radius: 12px;

}

.sa p:first-child {
  font-family: 'Instrument Sans';
font-weight: 700;
font-style: Bold;
font-size: 32px;
text-align: center;
color: #3C69EB;
margin: 0;
}

.sa p:last-child {
  font-family: 'Satoshi';
font-weight: 400;
font-style: normal;
font-size: 14px;
text-align: center;
color: #252B37B2;
margin: 0;
}

.rys {
  display: flex;
  justify-content: center;
}

.rys a {
  display: inline-flex;            /* place text + icon on one row */
  align-items: center;
  gap: 10px;                       /* space between text and icon */
  padding: 14px 28px;              /* adjust for comfortable spacing */
  border-radius: 100px;
  background: #0038E6;
  color: #ffffff;
  font-family: 'Satoshi';
  font-weight: 700;
  font-size: 20px;
  border: none;
  cursor: pointer;
  white-space: nowrap;             /* prevent wrapping */
  box-sizing: border-box;
  text-decoration: none;
  margin-top: 20px;
}

.rys a:hover {
  background: #FEE134;
  color: #000000;
}

.revi {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 100px;
}

.rehead h3 {
  font-family: 'Satoshi';
font-weight: 700;
font-style: Bold;
font-size: 40px;
text-align: center;
color: #000000;
padding-top: 96px;
}

.rehead p {
  font-family: 'Satoshi';
font-weight: 400;
font-style: normal;
font-size: 20px;
text-align: center;
color: #252B37;
padding-bottom: 50px;
}

.alumni {
  display: flex;
  gap: 24px;
  overflow: hidden;
  width: 100%;
  position: relative;
  padding-left: 250px;
}

.alumni:hover .track {
  animation-play-state: paused;   /* pause on hover */
}

.track {
  display: flex;
  gap: 24px;
  animation: scroll-left 25s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-80%);  /* scroll halfway (because we duplicated) */
  }
}


.alumni-section {
  width: 624px;
opacity: 1;
padding: 8px 24px;
border-radius: 12px;
border-width: 1.5px;
background-color: #FFFFFF;
border: 1.5px solid #EEF0F6;
box-shadow: 0px 6px 6px 0px #323D5C08;
}

.alumni-text {
  font-family: 'Satoshi';
font-weight: 400;
font-style: Italic;
font-size: 20px;
color: #252B37;
width: 583px;

}

.namimg {
  display: flex;
  gap: 10px;
}

.namimg img {
  width: 96px;
height: 96px;
opacity: 1;
border-radius: 959px;
border-width: 1px;
border: 1px solid #F9FAFB;
}

.namimg div {
  display: flex;
  flex-direction: column;
}

.namimg div p {
  font-family: 'Satoshi';
font-weight: 700;
font-style: Bold;
font-size: 32px;
text-align: center;
margin: 0;
}

.namimg div img {
  width: 160px;
height: 32px;
opacity: 1;
margin: 0;
}

.group-web {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 100px;
}

.group-web img {
  width: 100%;
  max-width: 1200px;   /* optional limit so it doesn't get TOO big */
  height: auto;
  object-fit: contain;
}

.scs {
  padding-bottom: 100px;
}

.scs p {
  font-family: 'Satoshi';
font-weight: 700;
font-style: Bold;
font-size: 40px;
text-align: center;
color: #000000;
}

.proj {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 50px;
  gap: 15px;
}

.imgstu {
  display: flex;
  gap: 10px;
}

.imgbox {
  width: 100%;
  /* height: 311px; -- Remove this */
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imgbox img {
  width: 100%;
  height: auto; /* Let height adjust naturally */
  object-fit: cover; /* Can keep cover if you want it to fill width */
}

.proj1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.proj1 h4 {
  font-family: 'Satoshi';
font-weight: 500;
font-style: Medium;
font-size: 24px;
text-align: center;
color: #000000;
}

.projt {
  font-family: 'Satoshi';
font-weight: 400;
font-style: normal;
font-size: 20px;
text-align: center;
color: #000000;
width: 559px;
}

.but {
  width: 307px;
gap: 10px;

border-radius: 100px;
background-color: #0038E6;
padding: 0px;
}

.but a {
  font-family: 'Satoshi';
font-weight: 700;
font-style: Bold;
color: #FFFFFF;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
text-decoration: none;
padding: 10px 24px;
}

.but:hover {
  background: #FEE134;
}

.but a:hover {
  color: #000000;
}

.featured-partners-section {
    width: 100%;
    padding-bottom: 96px;
    padding-top: 96px;
    text-align: center;
    font-family: Arial, sans-serif;
    color: #333;
}

.featured-on,
.our-partners {
    margin-bottom: 40px; /* Adjust spacing as needed now that there's no image */
}

.featured-on h4,
.our-partners h4 {
   font-family: 'Satoshi';
font-weight: 400;
font-style: normal;
font-size: 20px;
text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 30px; /* Space between logos */
    flex-wrap: wrap; /* Allows logos to wrap on smaller screens */
}

.logos img {
    height: 30px; /* Adjust logo height as needed */
    width: auto;
    object-fit: contain; /* Ensures logos are scaled correctly */
}

.logos img:last-child{
   height: 30px;
  width: 114px;
}

.lastse {
  background: linear-gradient(142.28deg, #2156CF 4.54%, #0830A3 69.62%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: 100px 0;
}

.rt h1 {
  font-family: 'Satoshi';
font-weight: 900;
font-style: Black;
font-size: 64px;
text-align: center;
color: #FFFFFF;
width: 904px;
}

.rt p {
  font-family: 'Satoshi';
font-weight: 500;
font-style: Medium;
font-size: 20px;
text-align: center;
color: #FFFFFFB2;
}

.apphav {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: 30px;
}

.app {
  width: 343px;
height: 56px;
opacity: 1;
border-radius: 100px;
padding: 12px 24px;
background-color: #FFFFFF;
}

.app a {
  text-decoration: none;
  font-family: 'Satoshi';
font-weight: 700;
font-style: Bold;
font-size: 20px;
color: #0038E6;
display: flex;
gap: 10px;
justify-content: center;
align-items: center;
text-align: center;
}

.app:hover {
  background: #FEE134;
}

.app a:hover {
  color: #000000;
}

.hav {
  width: 343px;
height: 56px;
gap: 10px;
border-radius: 100px;
padding: 12px 24px;
border-width: 1px;
border: 1px solid #FFFFFFB2;
}

.hav a {
  text-decoration: none;
  font-family: 'Satoshi';
font-weight: 700;
font-style: Bold;
font-size: 20px;
color: #FFFFFF;
}

.productsio-footer {
    background-color: #0B1632; 
    color: #ffffff; 
    padding: 30px 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.productsio-logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.main-logo-placeholder {
    height: 30px; /* Adjust logo height as needed */
    width: auto; /* Maintain aspect ratio */
    margin-right: 10px;
}

.productsio-copyright {
   font-family: 'Satoshi';
font-weight: 500;
font-style: Medium;
font-size: 20px;

    margin-bottom: 20px; /* Space between copyright and social icons */
}

.productsio-social-icons {
    display: flex;
    gap: 20px; /* Space between social icons */
}

.productsio-social-icons a {
    display: flex; /* Use flex to center image inside link if needed */
    justify-content: center;
    align-items: center;
    width: 24px;  /* Fixed size for the link wrapper */
    height: 24px; /* Fixed size for the link wrapper */
    text-decoration: none;
}

.social-icon-placeholder {
    width: 100%; /* Image fills its link wrapper */
    height: 100%; /* Image fills its link wrapper */
    display: block; /* Remove extra space below img */
    object-fit: contain; 
}

.productsio-social-icons a:hover .social-icon-placeholder {
    opacity: 0.7; /* Apply hover effect to the image inside the link */
}


/* CSS provided previously */
.accordion-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
}

.accordion-expand-all {
border-radius: 99px;
padding: 8px 20px;
gap: 4px;
border-width: 1px;
font-family: 'Chivo';
font-weight: 600;
font-style: normal;
font-size: 20px;
color: #051C61;
border: 1px solid #051C61;
  cursor: pointer;
  margin-bottom: 20px;
  margin-left: auto;
  display: block;
  transition: all 0.2s;
}

.accordion-expand-all:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}

.accordion-expand-all:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

.accordion {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: white;
  border: none;
  border-bottom: 1px solid #e5e7eb;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.accordion-header:hover {
  background: #f9fafb;
}

.accordion-header:focus {
  outline: 2px solid #3b82f6;
  outline-offset: -2px;
  z-index: 1;
  position: relative;
}

.accordion-header:last-of-type {
  border-bottom: none;
}

.accordion-header[aria-expanded="true"] {
  background: #f9fafb;
}

.accordion-header-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: none; /* Allows clicks to pass through to the parent button */
}

.accordion-week {
  color: #0038E6;
  font-weight: 500;
  font-family: 'Satoshi';
font-style: Medium;
font-size: 20px;
}

.accordion-title {
  color: #051C61;
  font-family: 'Satoshi';
font-weight: 700;
font-style: Bold;
font-size: 24px;
}

.accordion-icon {
  font-size: 20px;
  color: #64748b;
  margin-left: 16px;
  flex-shrink: 0;
  cursor: pointer; /* Ensure the icon is clickable */
  padding: 4px;
  transition: all 0.2s;
  border-radius: 4px;
  user-select: none;
}

.accordion-icon:hover {
  background: #e5e7eb;
  color: #1e293b;
  transform: scale(1.1);
}

.accordion-icon:active {
  transform: scale(0.95);
  background: #d1d5db;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: white;
}

.accordion-panel.open {
  max-height: 800px; /* Adjust as needed for content */
  border-bottom: 1px solid #e5e7eb;
}

.accordion-content {
  padding: 20px 24px 24px 24px;
  color: #475569;
  line-height: 1.6;
}

.lesson-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lesson-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #000000;
  line-height: 1.5;
  font-family: 'Satoshi';
font-weight: 400;
font-style: normal;
font-size: 20px;

}

.checkmark {
  color: #252B37;
  border: 2px solid #252B37;
  border-radius: 100px;
  width: 26px;
  height: 26px;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-placeholder {
  color: #94a3b8;
  font-style: italic;
  text-align: center;
  padding: 20px 0;
}

.ai-generated-content {
  animation: fadeIn 0.4s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 1024px) {
   .features-grid {
    grid-template-columns: 1fr;
    gap: 10px;
   }

   .wac div img {
    width: 80%;
   }

  .features-section {
  grid-template-columns: 1fr;
  margin: 0 auto;
  display: grid;
  place-items: center; /* Centers grid items both horizontally and vertically */
}

 .lws {
    width: 70%;
border-radius: 20px;
opacity: 1;
padding: 0;
  }

  .sa {
    width: 80%;
    margin: 0 auto;
  }

  .proj {
    flex-direction: column;
  }

  .rt h1 {
    font-size: 48px;
    width: 534px;
    margin: 0 auto;
  }

}

@media (max-width: 768px) {
  .rt h1 {
    width: 534px;
    margin: 0 auto;
  }

  .ta h3 {
    font-size: 32px;
    width: 700px;
  }

  .ta p {
    font-size: 16px;
    width: 680px;
  }

  .apphav {
    display: flex;
    flex-direction: column;
  }

  .whp p {
    width: 680px;
  }

  .lws {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .proh {
    display: flex;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 10px;
  }

  .pro img {
    width: 144px;
height: 24px;
padding-left: 10px;
  }

  .hac a {
    font-size: 10px;
  }

   .hamburger {
    display: flex;
    padding-bottom: 20px;
  }

   .close-menu {
    display: flex;
    padding-top: 30px;
  }
  
  .hac {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #0038E6;
    flex-direction: column;
    padding: 0;
    gap: 30px;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  
  .hac.open {
    right: 0;
  }
  
  .hac a {
    color: #FFFFFF;
    padding: 15px 30px;
    font-size: 14px;
    width: 100%;
  }
  
  .hac a:last-child {
    border-bottom: none;
  }
  
  /* Overlay */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }
  
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Menu header with logo and close button */
  .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 20px;
  }
  
  .menu-logo {
    height: 24px;
    width: 144px;
    object-fit: contain;
  }
  
  /* Navigation links container */
  .menu-links {
    flex: 0;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    gap: 50px;
  }
  
  /* Menu footer with button */
  .menu-footer {
    display: block;
    padding: 20px;
    margin-top: 0;
  }
  
  .menu-cta-button {
    padding: 12px 24px;
    background: #FFFFFF;
    color: #0038E6;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    width: 343px;
border-radius: 100px;
padding: 12px 24px;
gap: 10px;
font-family: 'Satoshi';
font-style: Bold;
  }
  
  .menu-cta-button:hover {
    background: #0056b3;
  }

  .bluegra {
    padding-top: 100px;
  }

  .procha {
    width: 169px;
    padding: 4px 16px;
    margin-bottom: 10px;
  }

  .procha p {
    font-size: 12px;
  }

  .muas {
    text-align: center;
  }

  .sot {
    font-size: 24px;
  }

  .muas h1 {
    font-size: 24px;
    width: 343px;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 10px;
  }

  .muas p {
    font-size: 16px;
    width: 343px;
    margin: 0 auto;
    padding-bottom: 10px;
  }

  .lm {
    width: 167px;
border-radius: 100px;
padding: 12px 24px;
gap: 10px;
opacity: 1;
  }

  .lm a {
    font-size: 16px;
  }

  .an {
    width: 167px;
padding: 12px 24px;
gap: 10px;
border-width: 1px;
  }

  .an a {
    font-size: 16px;
  }

  .ta {
    padding-bottom: 50px;
    padding-top: 50px;
  }

  .ta h3 {
    font-size: 24px;
    width: 343px;
  }

  .ta p {
    font-size: 14px;
    width: 343px;
    line-height: 20px;
  }
  
  .program-features h2 {
    font-size: 24px;
  }

  .wac {
    padding-top: 50px;
    padding-bottom: 50px;
  }

   .wac div img {
    width: 343px;
height: 194px;
left: 16px;
border-radius: 8px;
   }

   .wyla h3 {
    font-size: 24px;
   }

   .wyla p {
    font-size: 14px;
    width: 343px;
   }

   .whp {
    background-color: #E7ECFD;
   }

   .whp div h3 {
    font-size: 24px;
    width: 347px;
   }

   .whp div img {
    width: 347px;
height: 180px;
border-radius: 8px;
   }

   .whp div p {
    font: 16px;
    width: 347px;
   }

  .checkmar {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 10px;
   }

  .feature-item p {
    font-size: 14px;
    width: 307px;
  }

  .features-container {
  background-color: #E7ECFD;
  width: 100%;
}

  .features-section {
     grid-template-columns: 1fr;
     padding-top: 10px;
     padding-bottom: 10px;
  }

  .feature-card {
    width: 343px;
border-radius: 20px;
padding: 16px 20px;
gap: 4px;
margin: 0 auto;
  }

  .feature-card div h3 {
    font-size: 16px;
    width: 248px;
  }

  .feature-card p {
    font-size: 14px;
  }

  .feature-card .btn.primary {
    width: 146px;
border-radius: 8px;
padding-top: 8px 12px;
gap: 4px;
font-size: 12px;
  }

  
.lwr {
  background-color: #E7ECFD;
  padding-top: 0;
}

  .lws {
    width: 347px;
border-radius: 20px;
opacity: 1;
padding: 20px 0;
  }

  .lwa img {
    width: 32px;
height: 32px;
border-radius: 999px;
  }

  .lwa h3 {
    font-size: 18px;
  }

  .lwa p {
    font-size: 14px;
    width: 307px;
    margin: 0 auto;
  }

  .sa {
    width: 307px;
    margin: 0 auto;
  }

  .sa p:first-child {
    font-size: 24px;
  }

  .sa p:last-child {
    font-size: 12px;
  }

  .rehead h3 {
    font-size: 24px;
    padding-top: 0;
  }

  .rehead p {
    font-size: 14px;
    padding-bottom: 0;
  }

  .alumni {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 0px;
}

.track {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  gap: 24px;
  animation: none;
}

  .namimg img {
    width: 32px;
height: 32px;
border-radius: 320px;
border-width: 1.33px;
  }

  .namimg div p {
    font-size: 14px;
  }

  .namimg div img {
    width: 80px;
  }

  .alumni-section {
    width: 343px;
  }

  .alumni-text {
    font-size: 12px;
    width: 307px;
  }

  .scs {
    padding-bottom: 20px;
  }

  .scs p {
    font-size: 24px;
    width: 343px;
    margin: 0 auto;
  }

  .proj {
    flex-direction: column;
  }

  .proj1 h4 {
    font-size: 18px;
  }

  .projt {
    font-size: 14px;
    width: 343px;
  }

  .but {
    width: 307px;
gap: 10px;
padding: 0px 24px;
height: 48px;

  }

  .but p {
    font-size: 16px;
  }

  .lastse {
border-top-left-radius: 60px;
border-top-right-radius: 60px;
  }

  .rt h1 {
    font-size: 24px;
    width: 343px;
  }

  .rt p {
    font-size: 14px;
    width: 343px;
  }

  .apphav {
    flex-direction: column;
  }

  .app {
    gap: 10px;
    padding: 12px 24px;
  }

  .app a {
    font-size: 16px;
  }

  .hav a {
    font-size: 16px;
    padding: 12px 24px;
  }

  .featured-partners-section {
    padding-bottom: 50px;
    padding-top: 50px;
  }

  .accordion-container {
    padding: 12px;
  }

  .accordion-header {
    padding: 16px 18px;
  }

  .accordion-title {
    font-size: 15px;
  }

  .accordion-expand-all {
padding: 8px 20px;
width: 307px;
  margin: 20px auto;
}

  .accordion-content {
    padding: 16px 18px 20px 18px;
  }

  .lesson-list li {
    font-size: 13px;
  }

  .checkmark {
    font-size: 12px;
    width: 24px;
    height: 24px;
  }

  .featured-on h4 {
    font-size: 14px;
  }

  .our-partners h4 {
    font-size: 14px;
  }

  .logos img {
    width: 80px;
  }

   .image-gallery {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
  }
  
  .image-gallery img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    flex: none;
    max-width: 100%;
  }
  
  .image-gallery img.active {
    opacity: 1;
    position: relative;
  }
  
  /* Dots navigation */
  .gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
  }
  
  .gallery-dot {
    width: 6px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
 .gallery-dot.active {
  background: rgba(255, 255, 255, 1);
  transform: scaleX(1.2); 
  width: 28px;
height: 4px;

}


  .productsio-copyright {
    font-size: 16px;
    font-style: medium;
    font-weight: 500;
  }
}

@media (max-width: 375px) {
  .checkmar {
    width: 18px;
    height: 18px;
    font-size: 8px;
  }

   .feature-item p {
    font-size: 10px;
    width: 250px;
  }

   .feature-card {
    width: 323px;
padding: 12px 18px;
gap: 3px;
margin: 0 auto;
  }

    .feature-card .btn.primary {
    width: 136px;
border-radius: 8px;
padding-top: 6px 10px;
gap: 0px;
font-size: 10px;
  }

   .feature-card div h3 {
    font-size: 14px;
    width: 248px;
  }

     .menu-cta-button {
    padding: 10px 10px;
    background: #FFFFFF;
    color: #0038E6;
    border: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    width: 290px;
border-radius: 100px;
gap: 8px;
font-family: 'Satoshi';
font-style: Bold;
display: flex;
justify-content: center;
align-items: center;
  }

}

@media (max-width: 320px) {
  .pro img {
    width: 100px;
  }

  .hac {
    gap: 10px;
  }

  .muas h1 {
    font-size: 20px;
    width: 301px;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 10px;
  }

  .muas p {
    font-size: 14px;
    width: 313px;
    margin: 0 auto;
    padding-bottom: 10px;
  }

  .ta h3 {
    font-size: 20px;
    width: 323px;
  }

  .ta p {
    font-size: 12px;
    width: 323px;
    line-height: 20px;
  }

    .feature-item p {
    font-size: 12px;
    width: 200px;
  }
 .program-features h2 {
    font-size: 20px;
  }

   .checkmar {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

   .wyla p {
    font-size: 12px;
    width: 301px;
   }

   
   .whp div h3 {
    font-size: 24px;
    width: 317px;
   }

   .whp div img {
    width: 90%;
height: auto;
   }

   .whp div p {
    font: 12px;
    width: 301px;
   }

   .rt h1 {
    font-size: 20px;
    width: 301px;
  }

  .rt p {
    font-size: 12px;
    width: 323px;
  }

  .app {
    width: 100%;
  }

  .hav {
    width: 70%;
  }

  .features-section {
    margin: 0 auto;
  }
  
  .feature-card {
    width: 90%;
border-radius: 20px;
padding: 16px 20px;
gap: 4px;
margin: 0 auto;
  }

  .feature-card div h3 {
    font-size: 14px;
    width: 228px;
  }

  .feature-card p {
    font-size: 12px;
  }

  .feature-card .btn.primary {
    width: 126px;
border-radius: 8px;
padding-top: 6px 10px;
gap: 3px;
font-size: 10px;
  }

  .wac div img {
    width: 100%;
  }

  .features-section {
  grid-template-columns: 1fr;
  place-items: center; 
  padding: 0;
}

.sa {
    width: 80%;
    margin: 0 auto;
  }

   .lws {
    width: 90%;
border-radius: 20px;
opacity: 1;
padding: 0;
  }

   .lwa p {
    font-size: 12px;
    width: 280px;
    margin: 0 auto;
  }

   .projt {
    font-size: 12px;
    width: 301px;
  }

  .scs p {
    font-size: 20px;
    width: 301px;
    margin: 0 auto;
  }

    .menu-cta-button {
    padding: 10px 10px;
    background: #FFFFFF;
    color: #0038E6;
    border: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    width: 290px;
border-radius: 100px;
gap: 8px;
font-family: 'Satoshi';
font-style: Bold;
display: flex;
justify-content: center;
align-items: center;
  }

}