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

        .madurai-hero-creative {
  background: linear-gradient(135deg, #f9fbfe, #ffffff);
  padding: 100px 20px 80px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.madurai-hero-container {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.madurai-hero-badge {
  display: inline-block;
  background-color: #FDB814;
  color: #000;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  font-size: 14px;
}

.madurai-hero-creative h1 {
  font-size: 40px;
  color: #086BD9;
  margin-bottom: 24px;
  font-weight: 700;
}

.madurai-hero-creative p {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 36px;
}

.madurai-hero-creative strong {
  color: #22B351;
  font-weight: 600;
}

.madurai-hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #086BD9, #22B351);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #075ac0, #1ca842);
}

.btn-outline {
  border: 2px solid #FDB814;
  color: #FDB814;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #FDB814;
  color: #000;
}

/* Decorative Shape */
.madurai-hero-creative::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(8, 107, 217, 0.1), transparent 70%);
  bottom: -80px;
  right: -80px;
  border-radius: 50%;
  z-index: 0;
}

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

.mv-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.mv-title {
  font-size: 38px;
  color: #086BD9;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
}

.mv-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background: #FDB814;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.mv-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.mv-card {
  background: #fff;
  border-left: 6px solid #22B351;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: left;
  transition: all 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.mv-card h3 {
  font-size: 24px;
  color: #086BD9;
  margin-bottom: 18px;
  font-weight: 600;
}

.mv-card p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
}

.mv-card strong {
  color: #22B351;
  font-weight: 600;
}

.core-values-timeline {
  padding: 100px 20px;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.core-heading {
  font-size: 36px;
  color: #086BD9;
  font-weight: 700;
  margin-bottom: 10px;
}

.core-subtitle {
  font-size: 17px;
  color: #444;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.timeline-wrapper {
  position: relative;
  max-width: 900px;
  margin: auto;
  padding-left: 20px;
  border-left: 4px solid #E0E0E0;
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  padding-left: 30px;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 4px;
  left: -14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
}

.timeline-card {
  background: #f9fbfe;
  padding: 30px 24px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.timeline-card h3 {
  color: #FDB814;
  font-size: 22px;
  margin-bottom: 12px;
}

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

  .cta-transform-career {
  background: linear-gradient(135deg, #086BD9, #22B351);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.cta-container {
  max-width: 1000px;
  margin: 0 auto;
}

.cta-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-paragraph {
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.btn-primary {
  background: #FDB814;
  color: #000;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #f9c300;
}

.btn-outline1 {
  border: 2px solid #fff;
  padding: 14px 28px;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

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

.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;
}



    /* 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;
      }
      
    }

    /* Responsive */
@media (max-width: 768px) {
  .madurai-hero-creative h1 {
    font-size: 30px;
  }

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

  .mv-title {
    font-size: 30px;
  }

  .mv-card h3 {
    font-size: 20px;
  }

  .mv-card p {
    font-size: 15px;
  }

  .core-heading {
    font-size: 28px;
  }

  .timeline-wrapper {
    padding-left: 12px;
  }

  .timeline-card {
    padding: 24px;
  }

  .timeline-item {
    margin-bottom: 40px;
  }

  .cta-heading {
    font-size: 28px;
  }

  .cta-paragraph {
    font-size: 16px;
  }
}