* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom, rgb(150, 235, 235), white); 
  background-attachment: fixed;   /* important */
  background-size: cover;
  padding-top: 80px;
}

.shadow-sm {
   position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand img {
  height: 45px;
}


.login-btn {
  border: none;
  background: #0d6efd;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s;
}

.login-btn:hover {
  background: #084298;
}


.nav-link {
  font-weight: 500;
  transition: 0.2s;
}

.nav-link:hover {
  color: #0d6efd;
}

.dropdown-custom {
  position: relative;
}


.dropdown-custom .dropdown-list {
  position: absolute;
  top: 55%;
  left: 0;
  /* background: #ffffff; */
  min-width: 100px;
  padding: 10px 0;
  border-radius: 10px;
  /* box-shadow: 0 4px 20px rgba(0,0,0,0.1); */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  list-style: none;
  z-index: 999;
}

.dropdown-custom:hover .dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-custom .dropdown-list li a {
  display: block;
  padding: 10px 20px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
}



.mobile-slide-menu {
  position: fixed;
  top: 0;
  right: -280px; 
  width: 280px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -3px 0 10px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transition: right 0.4s ease;
}


.mobile-slide-menu.active {
  right: 0;
}


.slide-header {
  border-bottom: 1px solid #ddd;
}


@media (min-width: 992px) {
  .mobile-slide-menu {
    display: none;
  }
}


.login-btn {
  border: none;
  background: #0d6efd;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s;
}
.login-btn:hover {
  background: #084298;
}

/* section main */

.about-hero {
  position: relative;
  width: 100%;
  height: 450px; 
  background: url('./image/cloud-computing.webp') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 35, 126, 0.6); 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  color: #fff;
}

.about-hero-overlay h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-hero-overlay p {
  font-size: 20px;
  max-width: 700px;
  line-height: 1.5;
}


@media(max-width: 992px) {
  .about-hero {
    height: 400px;
  }

  .about-hero-overlay h1 {
    font-size: 38px;
  }

  .about-hero-overlay p {
    font-size: 18px;
  }
}

@media(max-width: 600px) {
  .about-hero {
    height: 300px;
  }

  .about-hero-overlay h1 {
    font-size: 28px;
  }

  .about-hero-overlay p {
    font-size: 16px;
  }
}




/* section about us */

.about-platform {
  padding: 80px 10%;
  font-family: "Poppins", sans-serif;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 36px;
  color: #1a237e;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #424242;
}

.about-content ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #424242;
}

.about-content ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}


@media(max-width: 992px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-content ul {
    padding-left: 0;
    list-style-type: none;
  }

  .about-content ul li::before {
    content: "✔ ";
    color: #1a237e;
  }
}


/* section companies */

.trusted-companies {
  padding: 80px 10%;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.trusted-companies h2 {
  font-size: 32px;
  color: #1a237e;
  font-weight: 600;
  margin-bottom: 10px;
}

.trusted-companies p {
  font-size: 18px;
  color: #424242;
  margin-bottom: 40px;
}

.company-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.company-logos img {
  max-width: 150px;
  height: auto;
  opacity: 0.8;
  transition: 0.3s;
}

.company-logos img:hover {
  opacity: 1;
  transform: scale(1.05);
}


@media (max-width: 992px) {
  .company-logos {
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .company-logos img {
    max-width: 120px;
    margin-bottom: 20px;
  }
}


/* section students */

.student-reviews {
  padding: 80px 10%;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.student-reviews h2 {
  font-size: 32px;
  color: #1a237e;
  font-weight: 600;
  margin-bottom: 40px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.review-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.review-card .rating {
  font-size: 20px;
  color: #ff9800;
  margin-bottom: 15px;
}

.review-card p {
  font-size: 16px;
  font-style: italic;
  color: #424242;
  line-height: 1.5;
}


@media(max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}


/* main aim */

.main-aim {
  padding: 80px 10%;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.main-aim h2 {
  font-size: 36px;
  color: #1a237e;
  font-weight: 700;
  margin-bottom: 20px;
}

.main-aim p {
  font-size: 18px;
  color: #424242;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.aim-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.aim-point {
  background: #ffffff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  font-size: 16px;
  color: #1a237e;
  min-width: 220px;
  transition: 0.3s;
}

.aim-point:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}


@media(max-width: 768px) {
  .aim-points {
    flex-direction: column;
    align-items: center;
  }
}




/* section footer */


.edu-footer {
  background: #0a1b3c;
  color: #fff;
  padding: 60px 20px 20px;
  margin-top: 50px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}


.footer-col {
  width: 250px;
}

.footer-col img {
  width: 200px;
  filter: brightness(0) invert(1);
}

.footer-about {
  font-size: 14px;
  line-height: 1.6;
}


.footer-social a {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  margin-right: 12px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #1e90ff;
  transform: translateY(-4px);
}


.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #dcdcdc;
  font-size: 15px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #1e90ff;
  margin-left: 5px;
}


.footer-col p i {
  color: #1e90ff;
  margin-right: 8px;
}


.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid #1e2a4f;
  font-size: 14px;
  color: #bdbdbd;
}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-col {
    width: 100%;
  }

  .footer-social {
    margin-top: 10px;
  }
}
