* {
  margin: 0;
  font-family: cursive;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  flex-wrap: wrap;
}

img {
  width: 200px;
  height: 110px;
  border-radius: 5px;
  margin-left: 10px;
}

/* Nav Menu */
nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  background-color: orange;
}

nav ul.menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin: 0;
  padding: 0;
  align-items: center;
}

nav ul.menu li {
  position: relative;
}

nav ul.menu a {
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
  color: black;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 12px;
  display: block;
  transition: color 0.3s ease;
}

nav ul.menu a:hover {
  color: #fff;
}

/* Sign Up Button */
.btn-signup {
  background: orange;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-signup:hover {
  background: darkorange;
  color: #fff;
}

/* Responsive */
@media (max-width: 800px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    width: 100%;
  }

  nav ul.menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
  }

  nav ul.menu li {
    width: 100%;
  }

  nav ul.menu a {
    width: 100%;
  }
}

hr {
  border: none;
  height: 3px;
  background-color: orange;
  box-shadow: 0 0 10px orangered;
}

header .btn-signup {
  background: #ff7b00;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

header .btn-signup:hover {
  background: #e06800;
}

/* ENTER HOME BUTTON */
.enter-btn {
  text-align: right;
  margin: 30px 50px 0 0;
}
.enter-btn a {
  background-color: orange;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-family: arial sans-serif;
  transition: background-color 0.3s;
}

.enter-btn a:hover {
  background-color: orangered;
}

/* HOME PAGE */
.project {
  text-align: center;
  margin-top: 50px;
  padding: 20px;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
}

.project h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.5;
}

.mark {
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 900;
  position: relative;
}

/* mark */
.ideas {
  background-color: #e5d4f7;
}
.software {
  background-color: #ffe0cc;
}
.love {
  background-color: #c8f5d2;
}

/* Home */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 64px 5%;
  background: #fef7f1;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 40px;
  color: #333;
}

.hero-text h1 span {
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
}

.hero-text .highlight {
  color: #ff7b00;
}

.hero-text p {
  margin: 16px 0;
  color: #666;
}

.btn-contact {
  background: linear-gradient(90deg, #ff7b00, #ff9900);
  color: white;
  padding: 11px 24px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  margin-top: 16px;
  font-size: 16px;
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  font-size: 24px;
  color: #444;
}

/* Hero Image */
.hero-imgs {
  max-width: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
}
.hero-imgs img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
}

/* Courses Section */
.courses {
  text-align: center;
  padding: 48px 5%;
}

.courses h2 {
  font-size: 29px;
  margin-bottom: 32px;
  color: #333;
}

.course-boxes {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.box {
  padding: 16px 32px;
  border-radius: 15px;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  min-width: 150px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.box:hover {
  transform: scale(1.05);
}

.uiux {
  background: #ff5c5c;
}
.webdev {
  background: #7b7bff;
}
.digital {
  background: #00d4ff;
}
.practical {
  background: #ff9900;
}
.browse {
  background: #999;
}
/* ========== FOOTER BASE STYLING ========== */

.footer {
  background-color: #f8f8f8;
  padding: 40px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 250px;
  max-width: 1200px;
  margin: 0 auto;
}

/* FOOTER SECTIONS */
.footer-section {
  flex: 1;
  min-width: 220px;
}

/* LOGO */
.footer-logo {
  width: 180px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 5px;
}

/* ICONS */
.icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.icons a {
  font-size: 26px;
  color: #555;
  transition: color 0.3s ease, transform 0.3s ease;
}

.icons a:hover {
  color: #ff7b00;
  transform: scale(1.2);
}

/* HEADINGS */
.footer-section h2 {
  font-size: 18px;
  color: #ff7b00;
  margin-bottom: 15px;
  font-weight: bold;
  letter-spacing: 1px;
}

/* TEXT & LINKS */
.footer-section p,
.footer-section a {
  font-size: 15px;
  color: #333;
  text-decoration: none;
  margin: 8px 0;
  display: block;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ff7b00;
}
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 15px;
  color: #eae5e5;
  background-color: #333;
}

/* ========== RESPONSIVE MEDIA QUERIES ========== */

/* Tablet (768px and below) */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    max-width: 100%;
    margin-bottom: 25px;
  }

  .icons {
    justify-content: center;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  .footer {
    padding: 30px 15px;
  }

  .footer-logo {
    width: 140px;
  }

  .footer-section h2 {
    font-size: 16px;
  }

  .footer-section p,
  .footer-section a {
    font-size: 14px;
  }

  .icons a {
    font-size: 22px;
  }
}

/*DEVELOPMENT*/

/* Hero Section */
.hero2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 5%;
  background: #fff8f0;
}
.hero-text {
  max-width: 50%;
}
.hero-text h1 {
  font-size: 40px;
  color: #333;
  line-height: 1.4;
}
.hero-text span {
  color: #ff7b00;
}
.hero-text p {
  color: #666;
  font-size: 18px;
  margin: 16px 0 24px;
}
.btn-primary {
  background: linear-gradient(90deg, #ff7b00, #ff9900);
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s;
}
.btn-primary:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #ff6a00, #ff8800);
}
.hero-img img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
}

/* Services Section */
.services {
  padding: 60px 5%;
  text-align: center;
}
.services h2 {
  font-size: 32px;
  color: #333;
}
.service-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.service-card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 250px;
  transition: transform 0.3s ease, background 0.3s;
}
.service-card:hover {
  background: #ffecd6;
  transform: translateY(-5px);
}
.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
}
.service-card h3 {
  font-size: 20px;
  color: #ff7b00;
  margin-bottom: 10px;
}

/* Technologies Section */
.tech-stack {
  padding: 60px 5%;
  background: #fff8f0;
  text-align: center;
}
.tech-stack h2 {
  font-size: 32px;
}
.tech-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.tech-icons img {
  width: 70px;
  height: 70px;
  transition: transform 0.3s;
}
.tech-icons img:hover {
  transform: scale(1.1);
}

/* Call to Action */
.cta {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(90deg, #ff7b00, #ff9900);
  color: white;
}
.cta h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

/* Footer */
footer {
  background-color: whitesmoke;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer p {
  color: #333;
  margin: 0;
  font-size: 14px;
}
footer .icons a {
  font-size: 24px;
  color: #333;
  margin-left: 15px;
  text-decoration: none;
  transition: color 0.3s;
}
footer .icons a:hover {
  color: orange;
}
/* TRAINING PAGE */

h1,
h2,
h3 {
  margin: 0 0 16px;
  text-align: center;
  font-weight: bold;
}

button {
  cursor: pointer;
}

/* Hero Section */
.hero1 {
  text-align: center;
  padding: 96px 32px;
  background: #fef7f1;
  color: white;
  position: relative;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 19px;
  margin-bottom: 24px;
}
.hero-text h1 {
  font-size: 40px;
  margin-bottom: 16px;
  color: white;
}

.hero-text p {
  font-size: 19px;
  margin-bottom: 24px;
  color: orangered;
}

.btn-primary {
  background: linear-gradient(90deg, #ff7b00, #ff9900);
  color: #fff;
  padding: 13px 29px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #ff6a00, #ff8800);
  transform: scale(1.05);
}

/* Training Types */
.training-types {
  padding: 48px 5%;
  text-align: center;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.card {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  flex: 1 1 200px;
  min-width: 200px;
  transition: all 0.3s ease;
}

.card:hover {
  background: #ffecd6;
  color: #ff7b00;
  transform: translateY(-5px);
  font-weight: bold;
}

/* Popular Courses */
.courses {
  padding: 48px 5%;
  background: #fff;
}

.course-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.course-box {
  background: #fef7f1;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 250px;
}

.course-box img {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
}

.course-box button {
  background: #ff7b00;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  margin-top: 8px;
}

.course-box button:hover {
  background: #e06800;
}

/* Features */
.features {
  padding: 48px 5%;
  background: #fef7f1;
}

.features ul {
  list-style: none;
  text-align: center;
  padding: 0;
  font-size: 18px;
}

.features ul li {
  margin: 8px 0;
}

/* Schedule */
.schedule {
  padding: 48px 5%;
  background: #fff;
  overflow-x: auto;
}

.schedule table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  margin-top: 24px;
  min-width: 600px;
}

.schedule th,
.schedule td {
  border: 1px solid #ddd;
  padding: 16px;
}

.schedule th {
  background: #ff7b00;
  color: #fff;
}

.enroll {
  background: #ff7b00;
  color: white;
  padding: 6px 16px;
  border: none;
  border-radius: 20px;
  text-decoration: none;
  display: inline-block;
}

.enroll:hover {
  background: #e06800;
}

/* 👇 Responsive Design for Mobiles */
@media (max-width: 768px) {
  .schedule {
    padding: 24px 3%;
  }

  .schedule table {
    font-size: 14px;
    min-width: 100%;
  }

  .schedule th,
  .schedule td {
    padding: 8px;
  }

  .enroll {
    padding: 4px 10px;
    font-size: 13px;
  }
}

/* Testimonials */
.testimonials {
  padding: 48px 5%;
  background: #fef7f1;
}

.testimonial-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.testimonial {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 300px;
}

.testimonial img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin-bottom: 16px;
}

/* Call to Action */
.cta {
  text-align: center;
  padding: 48px 32px;
  background: linear-gradient(90deg, #ff7b00, #ff9900);
  color: white;
}

.cta button {
  margin-top: 16px;
}
