: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;
          display: flex;
          flex-direction: column;
          justify-content: center;
        }

        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;
}

.contact-section {
  font-family: 'Poppins', sans-serif;
  background: #f9fbfe;
  padding: 80px 20px;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
}

.contact-form-box {
  flex: 1;
  min-width: 320px;
  background: #fff;
  padding: 30px;
  border-left: 6px solid #086BD9;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.form-header h2 {
  font-size: 28px;
  color: #086BD9;
  margin-bottom: 12px;
}

.form-header p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

.btn-brand {
  background: var(--primary-color);
  color: #fff;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

/* .btn-brand:hover {
  background: linear-gradient(135deg, #086BD9, #1ca14c);
} */

.contact-details-box {
  flex: 1;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  border-left: 6px solid var(--primary-color);
}

.info-icon {
  font-size: 22px;
  color: #086BD9;
  margin-top: 4px;
}

.info-content h4 {
  margin: 0;
  font-size: 16px;
  color: #086BD9;
  font-weight: 600;
}

.info-content p {
  margin: 4px 0 0 0;
  font-size: 15px;
  color: #333;
}

.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-icons img {
  width: 26px;
  height: 26px;
}

.contact-map {
  margin-top: 60px;
  width: 100%;
  display: flex;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 0 0 24px 0;
}

    /* 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;
  }
}