:root {
        --primary-color: #086BD9;
        --secondary-color: #FDB814;
        --document-color: #22B351;
        --font-primary: 'Poppins', sans-serif;
        --font-secondary: 'Calibri', sans-serif;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: var(--font-primary);
        background-color: #fff;
      }

      header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 30px;
        background-color: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
        position: sticky;
        top: 0;
        z-index: 1000;
        flex-wrap: wrap;
      }

      .logo img {
        height: 50px;
      }

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

      ul.menu, ul.dropdown {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      ul.menu {
        display: flex;
        gap: 25px;
        align-items: center;
      }

      ul.menu > li {
        position: relative;
      }

      ul.menu > li > a {
        text-decoration: none;
        color: var(--primary-color);
        font-weight: 500;
        font-family: var(--font-primary);
        padding: 8px 10px;
        display: block;
        transition: 0.3s;
        font-size: 18px;
      }

      ul.menu > li > a:hover {
        color: var(--document-color);
      }

      ul.menu > li:hover > ul.dropdown {
        display: block;
      }

      ul.dropdown {
        display: none;
        position: absolute;
        top: 40px;
        left: 0;
        background-color: white;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        border-radius: 6px;
        min-width: 200px;
        z-index: 99;
      }

      ul.dropdown li a {
        padding: 12px 16px;
        display: block;
        color: #333;
        font-family: var(--font-secondary);
        font-size: 18px;
        text-decoration: none;
      }

      ul.dropdown li a:hover {
        background-color: #f6f6f6;
      }

      .enquire-container {
        margin-left: auto;
      }

      .enquire-btn {
        background-color: var(--secondary-color);
        color: #000;
        padding: 10px 20px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-family: var(--font-primary);
        transition: background 0.3s ease;
      }

      .enquire-btn:hover {
        background-color: #e5a700;
      }

      .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        margin-left: 20px;
      }

      .hamburger div {
        width: 25px;
        height: 3px;
        background-color: var(--primary-color);
      }

    .hero {
      background: linear-gradient(120deg, #FF7E5F, #FDB814);
      color: #fff;
      padding: 80px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero h1 {
      font-size: 42px;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .hero p {
      font-size: 20px;
      font-weight: 400;
      margin-bottom: 40px;
    }

    .stats {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .stat-box {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      padding: 20px 30px;
      min-width: 120px;
    }

    .stat-box h2 {
      font-size: 28px;
      margin: 0;
      font-weight: 700;
      color: #fff;
    }

    .stat-box span {
      font-size: 15px;
      display: block;
      margin-top: 4px;
      color: #fff;
    }

    .hero-buttons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .hero-buttons a {
      text-decoration: none;
      padding: 14px 28px;
      border-radius: 8px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .btn-primary {
      background: var(--primary-color);
      color: #ffffff;
    }

    .btn-primary:hover {
      background: #fff;
      color: #086BD9;
    }

    .btn-outline {
      border: 2px solid var(--primary-color);
      color: #121212;
    }

    .btn-outline:hover {
      background: var(--primary-color);
      color: #ffffff;
    }

        .learn-section {
  background: #f9fbfe;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.learn-section .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.learn-section h2 {
  font-size: 36px;
  color: #086BD9;
  margin-bottom: 20px;
}

.learn-section p {
  font-size: 17px;
  color: #444;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.subheading {
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--secondary-color);
  font-weight: 600;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.highlight-card {
  background: linear-gradient(135deg, #FF7E5F, #FDB814);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
}

.curriculum-section {
  background-color: #fff;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.curriculum-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.curriculum-title {
  font-size: 36px;
  text-align: center;
  color: #086BD9;
  margin-bottom: 50px;
}

.curriculum-wrapper .module {
  margin-bottom: 50px;
  background: #f9fbfe;
  border-left: 5px solid var(--secondary-color);
  border-radius: 8px;
  padding: 30px 25px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.module h3 {
  font-size: 22px;
  color: #086BD9;
  margin-bottom: 12px;
}

.module .badge {
  background-color: #FDB814;
  color: #000;
  font-size: 13px;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 8px;
}

.module p {
  font-size: 15px;
  color: #444;
  margin-bottom: 16px;
}

.module ul {
  list-style: disc;
  padding-left: 20px;
  color: #333;
  line-height: 1.7;
}

.module ul li {
  margin-bottom: 10px;
  font-size: 15px;
}

.tools-section {
  background-color: #f9fbfe;
  padding: 10px 20px 50px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.tools-title {
  font-size: 36px;
  color: #086BD9;
  margin-bottom: 10px;
}

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

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.tool-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
}

.tool-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.tool-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.tool-card span {
  font-size: 16px;
  font-weight: 500;
  color: #222;
}

   .career-section {
  background: #f9fbfe;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.career-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 36px;
  color: #086BD9;
  margin-bottom: 10px;
}

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

.career-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.career-box {
  background: #fff;
  flex: 1 1 400px;
  max-width: 500px;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: left;
  position: relative;
  overflow: hidden;
}

/* Gradient Top Border */
.career-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(135deg, #FF7E5F, #FDB814);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}


.career-box h3 {
  color: var(--secondary-color);
  font-size: 22px;
  margin-bottom: 20px;
}

.career-box ul {
  list-style: none;
  padding-left: 0;
}

.career-box ul li {
  font-size: 16px;
  color: #333;
  margin-bottom: 14px;
  position: relative;
  padding-left: 20px;
}

.career-box ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #086BD9;
  font-size: 14px;
}

.whybuff-modern {
  background: #f9fbfe;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.whybuff-modern .container {
  max-width: 1100px;
  margin: auto;
}

.section-heading {
  text-align: center;
  font-size: 36px;
  color: #086BD9;
  margin-bottom: 10px;
}

.section-desc {
  text-align: center;
  font-size: 17px;
  color: #555;
  max-width: 800px;
  margin: 0 auto 60px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: #fff;
  padding: 30px 24px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  position: relative;
}

.feature-number {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, #FF7E5F, #FDB814);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.feature-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--secondary-color);
}

.feature-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

    .footer-modern {
  background-color: #081B3C;
  color: #fff;
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.footer-block {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-block h4 {
  font-size: 18px;
  color: #FDB814;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ddd;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #22B351;
}

.logo-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 160px;
  margin-bottom: 12px;
}

.campus-text {
  color: #ccc;
  font-size: 15px;
  font-weight: 400;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #bbb;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.footer-policy-links a {
  color: #bbb;
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.3s ease;
}

.footer-policy-links a:hover {
  color: #FDB814;
}

.footer-policy-links span {
  color: #777;
}

    @media (max-width: 900px) {
      .hamburger {
        display: flex;
      }

      nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #fff;
        display: none;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      }

      nav.active {
        display: flex;
      }

      ul.menu {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
      }

      ul.menu > li {
        text-align: left;
      }

      ul.menu > li > ul.dropdown {
        position: static;
        box-shadow: none;
      }

      ul.menu > li.open > ul.dropdown {
        display: block;
      }

      .enquire-container {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 10px;
      }

      .enquire-btn {
        display: inline-block;
      }
      
    }

    @media (max-width: 768px) {
  .curriculum-title {
    font-size: 28px;
  }

  .module {
    padding: 20px 15px;
  }

  .module h3 {
    font-size: 18px;
  }
 
  .section-title {
    font-size: 28px;
  }

  .career-box {
    padding: 25px 18px;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .feature-content h3 {
    color: #086BD9;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-block {
    width: 100%;
  }

  .footer-bottom {
    padding-top: 30px;
  }
}
    

    @media (max-width: 600px) {
      .hero h1 {
        font-size: 30px;
      }

      .hero p {
        font-size: 16px;
      }

      .stat-box {
        margin-bottom: 20px;
      }

      .tool-card {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .tool-card span {
    margin-top: 10px;
  }
    }