* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-form {
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    border-radius: 12px;
    position: relative;
}

.popup-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

.popup-form input,
.popup-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.popup-form button {
    width: 100%;
    padding: 12px;
    background:linear-gradient(135deg, #0a2c5d, #0e6f64) ;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

ul,
.nav-list,
.dropdown-content,
.sub-courses,
.footer-links ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    background: linear-gradient(90deg, #ffffff, #e6f0ff);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1000;
}

.hamburger{
display:block;
cursor:pointer;
font-size:22px;
margin-left:15px;
}

.hamburger-menu{
display:none;
position:absolute;
top:70px;
right:15px;
background:white;
box-shadow:0 8px 25px rgba(0,0,0,0.2);
padding:15px;
border-radius:10px;
width:240px;
z-index:2000;
}

.hamburger-menu li{
padding:10px 0;
border-bottom:1px solid #eee;
}

.hamburger-menu li:last-child{
border-bottom:none;
}

.hamburger-menu a{
text-decoration:none;
color:#333;
font-weight:500;
}

.hamburger-menu.show{
display:block;
}

.mobile-only{
display:none;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
    min-width: 260px;
}

.logo-area:hover {
    transform: scale(1.05);
}

.logo-area img {
    height: 52px;
    width: 70px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.logo-area span {
    font-size: 25px;
    font-weight: 800;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #004aad;
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: 70px;
    align-items: center;

    
}

.nav a,
.dropbtn {
    font-size: 17px;
    font-weight: 600;
    position: relative;
    color: #333;
    text-decoration: none;
    padding: 6px 0;
    transition: color 0.3s ease, transform 0.2s ease;
}

.nav a:hover,
.dropbtn:hover {
    color: #004aad;
    transform: translateY(-2px);
}


.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 42px;
    left: 0;
    width: 280px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    display: none;
    padding: 12px 0;
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown-content.active {
    display: block;
}

.course-item {
    border-bottom: 1px solid #eee;
}

.course-title {
    padding: 14px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    transition: background 0.3s ease, color 0.3s ease;
}

.course-title:hover {
    background: #f0f5ff;
    color: #004aad;
}

.sub-courses {
    display: none;
    background: #fafafa;
}

.sub-courses.active {
    display: block;
}

.sub-courses a {
    display: block;
    padding: 10px 30px;
    text-decoration: none;
    font-size: 14px;
    color: #333;
    transition: background 0.3s ease, color 0.3s ease;
}

.sub-courses a:hover {
    color: #004aad;
}
#branchesMenu a {
    display: block;
    padding: 10px 30px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

#branchesMenu a:hover {
    background: #f0f5ff;
    color: #004aad;
}

.actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.app-btn {
    text-decoration: none;
    color: #004aad;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.2s ease;
    margin-right: 50px;
   
}

.app-btn:hover {
    color: #1e90ff;
    transform: translateY(-2px);
}

.enroll-btn {
    background: #28a745;
    color: #fff;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    margin-right: 40px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.enroll-btn:hover {
    background: #218838;
    transform: scale(1.05);
}

.whatsapp {
    font-size: 22px;
    color: #25D366;
    transition: transform 0.2s ease;
    margin-right: 100px;
}

.whatsapp:hover {
    transform: scale(1.2);
}

.announcement {
    background: linear-gradient(135deg, #0a2c5d, #0e6f64);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    overflow: hidden;
}

.scrolling-text {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 15s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.slider {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    margin-bottom: 50px;
}

.slider .slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider .slide {
    display: none; 
    width: 100%;
    height: 100%;
    background-size: cover;       
    background-position: center;  
    background-repeat: no-repeat; 
    align-items: center;
    justify-content: flex-start;
    padding-left: 60px;
    flex-shrink: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 1s ease-in-out;
    opacity: 0;
}

.slider .slide.active {
    display: flex;
    opacity: 1;
}

.slider .slide-text {
    color: #fff;
    max-width: 550px;
    background: rgba(0, 74, 173, 0.6); 
    padding: 30px 40px;
    border-radius: 12px;
}

.slider .slide-text h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #00ff99; 
}

.slider .slide-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.4;
    color: #e0e7f5;
}

.slider .slide-text .btn {
    text-decoration: none;
    padding: 12px 28px;
    background: #28a745;
    color: #fff;
    font-weight: 600;
    border-radius: 25px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.slider .slide-text .btn:hover {
    background: #218838;
    transform: scale(1.05);
}

.slider-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 100;
}

.slider-nav span {
    cursor: pointer;
    font-size: 40px;
    color: #004aad;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    padding: 10px 15px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.slider-nav span:hover {
    background: #004aad;
    color: #fff;
    transform: scale(1.2);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: -50px;
    padding: 80px 60px;
    background: linear-gradient(135deg, #e6f0ff, #f6fffb);
}

.feature-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 45px 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(10, 44, 93, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 6px;
    width: 100%;
    background: linear-gradient(90deg, #0a2c5d, #0e6f64);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(10, 44, 93, 0.2);
}

.feature-icon i {
    font-size: 46px;
    background: linear-gradient(135deg, #2d16a1, #0e6f64);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    color: #0a2c5d;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    padding: 0 10px;
}

.results-section {
  background: linear-gradient(135deg, #eef5ff, #f9fcff);
  padding: 70px 20px;
  text-align: center;
  margin-top: -50px;
}

.results-container {
  max-width: 1200px;
  margin: auto;
}

.results-section h2 {
  font-size: 36px;
  color: #004aad;
  margin-bottom: 10px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-weight: 800;
}

.results-subtitle {
  color: #555;
  margin-bottom: 50px;
  font-size: 17px;
}

.results-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.stat-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
}

.stat-card .icon {
  font-size: 40px;
  margin-bottom: 10px;
  display: block;
}

.stat-card h3 {
  font-size: 36px;
  color: #0b4fa3;
}

.stat-card p {
  color: #444;
  font-weight: 500;
}

.students {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.student-card {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.student-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

.student-card h4 {
  color: #0b4fa3;
  margin-bottom: 5px;
}

.student-card span {
  font-size: 14px;
  color: #555;
}

.view-more {
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  color: #0b4fa3;
  text-decoration: none;
}

.view-more:hover {
  text-decoration: underline;
}

.courses-home {
    padding: 80px 60px;
    background: linear-gradient(135deg, #f6faff, #eef5ff);
    text-align: center;
    margin-top: -90px;
}

.courses-home .section-title {
    font-size: 36px;
    color: #004aad;
    font-weight: 800;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin-bottom: 12px;
}

.courses-home .section-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 50px;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.course-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 12px 30px rgba(10, 44, 93, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(10, 44, 93, 0.2);
}



.course-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #004aad;
    margin-bottom: 12px;
}

.course-card p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.course-btn {
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    background: linear-gradient(135deg, #0a2c5d, #0e6f64);
    text-align: center;
    transition: background 0.3s ease, transform 0.2s ease;
}

.course-btn:hover {
    background: linear-gradient(135deg, #004aad, #0e6f64);
    transform: scale(1.05);
}


.about-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f6faff, #eef5ff);
}

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.about-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
    color:  #004aad;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.about-subtitle {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px;
    text-align: center;
}

.about-text p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 16px;
    color:black;
}


.about-images {
    position: relative;
    max-width: 500px;
    margin: 0 auto 40px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-images img {
    width: 100%;
    display: none;
    transition: opacity 0.5s ease-in-out;
}

.about-images img.active {
    display: block;
}


.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #0a2c5d;
    background: rgba(255,255,255,0.8);
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    user-select: none;
}

.slider-arrow.left {
    left: 10px;
}

.slider-arrow.right {
    right: 10px;
}

.courses-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.course-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.course-card h4 {
    color: #0a2c5d;
    font-size: 20px;
    margin-bottom: 10px;
}

.course-card p {
    font-size: 15px;
    color: #444;
    margin-bottom: 8px;
}

.course-fee {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 18px;
    background: #0e6f64;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
}

.course-card.highlight {
    background: linear-gradient(135deg, #0a2c5d, #0e6f64);
    color: #fff;
}

.course-card.highlight h4,
.course-card.highlight p {
    color: #fff;
}

.course-card.highlight .course-fee {
    background: #ffffff;
    color: #0a2c5d;
}


.about-points {
    max-width: 800px;
    margin: auto;
    list-style: none;
    padding: 0;
}

.about-points li {
    background: #ffffff;
    margin-bottom: 12px;
    padding: 14px 18px;
    border-left: 5px solid #0e6f64;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    font-size: 15px;
}


.whatsapp-chat {
  position: fixed;
  bottom: 90px;
  right: 25px;
  background: #25d366;
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 9999;
}

.whatsapp-chat i {
  font-size: 20px;
}

.whatsapp-chat:hover {
  background: #1ebe5d;
}

.google-reviews {
    padding: 60px 8%;
    background: #f8f9fb;
    margin-top: -50px;
}

.google-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #004aad;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.google-line {
    width: 80px;
    height: 4px;
    background:linear-gradient(135deg, #004aad, #0e6f64);
    margin: 0 auto 40px;
}

.review-container {
    display: flex;
    gap: 30px;
    align-items: center;
}

.google-rating-box {
    width: 230px;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.google-rating-box h1 {
    margin: 0;
    font-size: 48px;
}

.stars {
    color: #f4b400;
    font-size: 22px;
}

.stars.small {
    font-size: 16px;
}

.review-slider {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
}

.slider-viewport {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.7s ease;
}

.google-card {
    min-width: 340px;
    max-width: 340px;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-right: 25px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.google-card h4 {
    margin: 0 0 5px;
}

.google-card p {
    font-size: 14px;
    line-height: 1.6;
}

.slider-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #004aad, #0e6f64);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    font-size: 20px;
    cursor: pointer;
    z-index: 5;
}

.footer-modern {
    background: linear-gradient(135deg, #0a2c5d, #0e6f64);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.footer-wave {
    height: 60px;
    background: #ffffff;
    border-bottom-left-radius: 100% 40px;
    border-bottom-right-radius: 100% 40px;
}

.footer-wrap {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.footer-brand h2 {
    font-size: 26px;
    color: #2ecc71;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: #e0e7f5;
}

.footer-badges {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-badges span {
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.footer-links h4 {
    font-size: 17px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-links h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-links a {
    display: block;
    color: #e0e7f5;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
    color: #2ecc71;
    transform: translateX(6px);
}

.footer-links .sub-courses {
    display: block;
    margin-top: 6px;
    padding: 0;
    background: none;
    box-shadow: none;
}

.footer-links .sub-courses a {
    display: block;
    margin-left: 12px;
    padding: 6px 0;
    font-size: 14px;
    font-weight: 400;
    color: #f5e0e7;
    text-decoration: none;
}

.footer-links .sub-courses a:hover {
    color: #2ecc71;
    transform: translateX(6px);
}
.footer-links ul,
.footer-links .sub-courses {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    padding: 0;
    margin: 0;
}

.footer-contact h4 {
    font-size: 17px;
    margin-bottom: 15px;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #e0e7f5;
}

.footer-contact i {
    color: #2ecc71;
    margin-right: 6px;
}

.footer-map h4 {
    color: #fff;
    margin-bottom: 10px;
}

.footer-map iframe {
    border-radius: 10px;
}

.footer-cta {
    display: inline-block;
    margin-top: 48px;
    padding: 12px 32px;
    background: #2ecc71;
    color: #ffffff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.footer-cta:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: #d7f8e5;
    color: #0a2c5d;
    transform: translateY(-3px);
}

.footer-copy {
    background: rgba(0, 0, 0, 0.25);
    text-align: center;
    padding: 15px;
    font-size: 14px;
    color: #e0e7f5;
}
  
/* ================= MOBILE-ONLY CSS ================= */
@media (max-width: 768px) {

  html, body {
    overflow-x: hidden;
  }

  .popup-overlay {
    padding: 15px;
  }

  .popup-form {
    width: 100%;
    max-width: 360px;
    padding: 20px;
    border-radius: 10px;
  }

  .popup-form h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .popup-form input,
  .popup-form select {
    padding: 12px;
    font-size: 14px;
  }

  .popup-form button {
    padding: 12px;
    font-size: 15px;
  }

  .close-btn {
    font-size: 22px;
  }

  .header {
    flex-wrap: wrap;
    padding: 10px 14px;
  }
   .logo-area {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .logo-area img {
    width: 36px;
    height: auto;
    
  }

  .logo-area span {
    font-size: 16px;
    font-weight: 700;
  }

  .mobile-only{
display:block;
}

  
  .nav.active {
    display: block;
    width: 100%;
    background: #ffffff;
    margin-top: 12px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }

  .nav-list {
    flex-direction: column;
    gap: 14px;
    display:none;
    padding: 12px 0;
  }
 

  .nav-list li {
    border-bottom: 1px solid #eee;
  }
   .nav-list li a {
    font-size: 15px;
    padding: 8px 0;
    display: block;
  }

  .nav-list li:last-child {
    border-bottom: none;
  }

  .nav a,
  .dropbtn {
    display: flex;
    font-size: 15px;
    align-items: center;
    justify-content:flex-start;
    gap: 6px;
    width: 100%;
  }
  .dropbtn a {
    padding: 0;
    margin: 0;
    width: auto;
  }
  .course-title{
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
  }
  .dropbtn i 
  .course-title i {
    font-size: 14px;
    margin-left: 4px;
  }

  .dropdown-content {
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
  }

  .hamburger {
    display: block;
    position: absolute;
    right: 14px;
    top: 14px;
    font-size: 24px;
  }
  .hamburger-menu{
right:10px;
top:60px;
width:90%;
max-width:300px;
}

  .actions {
    display: flex;
    gap: 2px;
    margin-top: 10px;
    width: 100%;
     justify-content: center;
     margin-left: 30px;
  }

  .actions a {
    flex: 1;
    padding: 20px ;
    font-size: 14px;
    text-align: center;
  }
  .actions a.enroll-btn {
    flex: 2; 
    padding: 10px 15px; 
    font-size: 14px;
     border-radius: 22px;
}

  .actions .whatsapp {
    display: flex;
    width: 45px;       
    height: 65px;     
    font-size: 24px;
    text-decoration: none;
  }
  
  .announcement {
    font-size: 13px;
    padding: 8px;
  }
  
  .slider {
      height: 400px;
      margin-bottom: 30px;
  }

  .slider .slide-text {
      max-width: 280px;       
      padding: 15px 18px;     
      border-radius: 10px;
      font-size: 14px;
  }

  .slider .slide-text h1 {
      font-size: 20px;        
      line-height: 1.2;
  }

  .slider .slide-text p {
      font-size: 13px;        
      line-height: 1.3;
      margin-bottom: 12px;
  }

  
  .slider .slide-text .btn {
      padding: 10px 20px;    
      font-size: 14px;
      border-radius: 20px;
  }

  .slider-nav span {
      font-size: 28px;
      padding: 6px 10px;
  }

  .slider .slide {
      padding-left: 20px;     
      justify-content: center; 
  }
  
    .features {
        padding: 40px 15px;           
        gap: 25px;                     
        grid-template-columns: 1fr;    
    }

    .feature-card {
        padding: 30px 20px;            
        border-radius: 20px;
    }
   
    .feature-icon i {
        font-size: 36px;               
        margin-bottom: 15px;
    }
  
    .feature-card h3 {
        font-size: 20px;               
        margin-bottom: 12px;
    }
    
    .feature-card p {
        font-size: 14px;               
        line-height: 1.6;
        padding: 0 5px;
    }
   
    .feature-badge {
        width: 40px;
        height: 4px;
        
    }
     
    .results-section {
        padding: 50px 15px;
         margin-top:-30px;
    }

    .results-section h2 {
        font-size: 26px;
         
    }

    .results-subtitle {
        font-size: 15px; 
        margin-bottom: 35px;
    }
  
    .results-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px;
        margin-bottom: 40px;
    }
   
    .stat-card {
        padding: 20px 15px;
    }

    .stat-card .icon {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .stat-card h3 {
        font-size: 24px;
    }

    .stat-card p {
        font-size: 14px;
    }
  
    .students {
        display: grid;
        grid-template-columns: repeat(3, 1fr); 
        gap: 2px;
        margin-bottom: 30px;
    }
  
    .student-card {
        padding: 10px;
    }

    .student-card img {
        width: 70px;
        height: 70px;
        margin-bottom: 10px;
    }

    .student-card h4 {
        font-size: 16px;
        margin-bottom: 3px;
    }

    .student-card span {
        font-size: 13px;
    }
    
    .view-more {
        font-size: 14px;
        margin-top: 15px;
        margin-bottom: 50px;
    }

    .courses-home {
    padding: 50px 15px;
  
  }

  .courses-home .section-title {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .courses-home .section-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.5;
  }

  .courses-grid {
    grid-template-columns: 1fr; /* stack cards */
    gap: 20px;
  }

  .course-card {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .course-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .course-card p {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
  }

  .course-btn {
    font-size: 13px;
    padding: 9px 18px;
    border-radius: 22px;
  }

    .google-reviews {
        padding: 40px 15px;
         margin-top: -10px;
    }

  .google-title {
        font-size: 24px;
        margin-bottom: 8px;
   }

  .google-line {
       width: 60px;
       height: 3px;
       margin-bottom: 30px;
    }

  .review-container {
       flex-direction: column; 
       gap: 20px;
       align-items: center;
    }

  .google-rating-box {
       width: 180px;
       padding: 20px;
    }

  .google-rating-box h1 {
       font-size: 36px;
    }

  .stars {
    font-size: 18px;
  }

  .stars.small {
    font-size: 14px;
  }

  .review-slider {
    width: 100%;
    gap: 10px;
  }

  .slider-viewport {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  .slider-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    scroll-snap-type: x mandatory; 
  }

  .google-card {
    min-width: 260px;
    max-width: 260px;
    padding: 15px;
    margin-right: 0;
    scroll-snap-align: start; 
  }

  .google-card h4 {
    font-size: 16px;
  }

  .google-card p {
    font-size: 13px;
  }

  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .slider-viewport::-webkit-scrollbar {
    display: none;
  }
  .slider-viewport {
    -ms-overflow-style: none;  
    scrollbar-width: none;  
  }
     .footer-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 25px 15px;
    align-items: stretch;
  }

  .footer-brand h2 {
    font-size: 20px;
    margin-bottom: 4px;
  }

  .footer-brand p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .footer-badges {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
  }

  .footer-badges span {
    display: block;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
  }
 
  .footer-cta {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
    padding: 12px 0;
    font-size: 14px;
    border-radius: 25px;
  }

  .footer-social {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
    gap: 10px;
  }

  .footer-social a {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    font-size: 16px;
    border-radius: 10px;
    margin: 0;
  }

  .footer-links-container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
  }

  .footer-links,
  .footer-links-container .footer-courses { 
    width: 48%; 
    margin-bottom: 0;
  }

  .footer-links h4,
  .footer-links-container .footer-courses h4 {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .footer-links h3,
  .footer-links-container .footer-courses h3 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .footer-links a,
  .footer-links .sub-courses a,
  .footer-links-container .footer-courses a {
    font-size: 13px;
    margin-bottom: 5px;
  }

  .footer-links .sub-courses a,
  .footer-links-container .footer-courses .sub-courses a {
    margin-left: 10px;
  }

  .footer-contact {
    width: 100%;
    margin-bottom: 15px;
  }

  .footer-contact h4 {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .footer-contact p {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .footer-map iframe {
    height: 180px;
    margin-bottom: 15px;
  }

  .footer-copy {
    font-size: 12px;
    padding: 12px;
    text-align: center;
  }

  .footer-wave {
    height: 40px;
  }
}
