: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);
        }

        .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;
}
.note1{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.course-note {
  margin-top: 30px;
  padding: 15px;
  background-color: #fff8e1;
  border-left: 5px solid #f4b400;
  font-size: 16px;
  border-radius: 4px;
}
.course-note strong {
  font-weight: 600;
}

.container {
      max-width: 1200px;
      margin: auto;
      padding: 60px 20px;
    }

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

    .subtitle {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 40px;
      font-size: 16px;
      color: #444;
    }

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

    .course-card {
      border-radius: 16px;
      padding: 0;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      color: #fff;
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

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

    .course-content {
      padding: 24px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .course-card h3 {
      font-size: 20px;
      margin-bottom: 12px;
    }

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

    .btn {
      background: #fff;
      color: #086BD9;
      font-weight: 600;
      padding: 10px 14px;
      border-radius: 8px;
      text-align: center;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .btn:hover {
      background: #f1f1f1;
    }

    /* Gradients per course */
    .graphic {
      background: linear-gradient(135deg, #086BD9, #22B351);
    }

    .uxui {
      background: linear-gradient(135deg, #FDB814, #FF8800);
    }

    .web {
      background: linear-gradient(135deg, #22B351, #086BD9);
    }

    .video {
      background: linear-gradient(135deg, #7F00FF, #E100FF);
    }

    .digital {
      background: linear-gradient(135deg, #FF512F, #DD2476);
    }

    .fullstack {
      background: linear-gradient(135deg, #0F2027, #203A43, #2C5364);
    }

    @media(max-width: 600px) {
      .course-card h3 {
        font-size: 18px;
      }

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

    /* Responsive */
    @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) {
        .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-block {
    width: 100%;
  }

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

  .contact-wrapper {
    flex-direction: column;
  }

  .form-header h2 {
    font-size: 24px;
  }

  .form-header p {
    font-size: 14px;
  }

  .info-content h4 {
    font-size: 15px;
  }

  .info-content p {
    font-size: 14px;
  }

  
    }

    @media (max-width: 600px) {
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-policy-links {
    margin-top: 5px;
  }
}