/* ====== GLOBAL STYLES ====== */
    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: #f9f9f9;
      display: flex;
      flex-direction: column;
       align-items: center;
    }
          * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    h2 {
      margin: 0;
    }

/* ======================navbar=========================== */














     /* +++++++++++++++++++++++++++++++++++++ */

 



    .overview-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #fff;
      border-radius: 30px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      max-width: 1300px;
      width: 100%;
      padding: 0;
      transition: 0.4s ease;
    }

    .overview-container:hover {
      box-shadow: 0 12px 40px rgba(255, 0, 0, 0.3);
    }

    .text-side {
      flex: 1;
      padding: 50px 40px;
      background: linear-gradient(to bottom right, #ffffff, #f6f6f6);
      animation: fadeInLeft 1s ease forwards;
      opacity: 0;
    }

    .text-side h2 {
      color: #d70000;
      font-size: 30px;
      margin-bottom: 20px;
    }

    .text-side p {
      font-size: 16px;
      line-height: 1.8;
      color: #333;
    }

    .image-side {
      flex: 1.2;
      background: #ffe5e5;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 40px;
      border-left: 4px solid #ff4d4d;
      animation: fadeInRight 1s ease forwards;
      opacity: 0;
    }

    .image-side img {
      max-width: 100%;
      height: auto;
      border-radius: 20px;
      box-shadow: 0 0 30px rgba(255, 0, 0, 0.2);
      transition: 0.3s ease;
    }

    .image-side img:hover {
      transform: scale(1.03);
      box-shadow: 0 0 40px rgba(255, 0, 0, 0.4);
    }

    /* Animations */
    @keyframes fadeInLeft {
      from {opacity: 0; transform: translateX(-50px);}
      to {opacity: 1; transform: translateX(0);}
    }

    @keyframes fadeInRight {
      from {opacity: 0; transform: translateX(50px);}
      to {opacity: 1; transform: translateX(0);}
    }

    @media (max-width: 900px) {
      .overview-container {
        flex-direction: column;
        border-radius: 20px;
      }

      .image-side {
        border-left: none;
        border-top: 4px solid #ff4d4d;
      }
    }

    /* ====== PROGRAM OVERVIEW SECTION ====== */
    .container {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      background: #ffffff;
      border-radius: 20px;
      max-width: 1200px;
      width: 95%;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      padding: 40px;
      gap: 30px;
      animation: fadeIn 1s ease;
      margin-bottom: 50px;
    }

    .text-box {
      flex: 1;
      padding: 20px;
      background: #f0f0f0;
      border-radius: 15px;
      transition: background 0.4s ease;
      animation: slideInLeft 1s ease;
    }

    .text-box:hover {
      background: #e6e6e6;
    }

    .text-box h2 {
      font-size: 2.5rem;
      color: #e60000;
      margin-bottom: 20px;
    }

    .text-box p {
      font-size: 1.15rem;
      line-height: 1.7;
      color: #333;
    }

    .image-box {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      animation: slideInRight 1s ease;
    }

    .image-box img {
      width: 100%;
      max-width: 420px;
      height: auto;
      border-radius: 7%;
      border: 2px solid #e60000;
      box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .image-box img:hover {
      transform: scale(1.05);
      box-shadow: 0 0 40px rgba(255, 0, 0, 0.5);
    }

    /* ====== PROGRAM OBJECTIVES SECTION ====== */
    .objectives-section {
      background: #ffffff;
      max-width: 900px;
      width: 100%;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      animation: fadeInUp 1s ease;
    }

    .objectives-section h2 {
      font-size: 2.5rem;
      color: #e60000;
      margin-bottom: 30px;
      text-align: center;
      animation: slideInDown 1s ease;
    }

    .objectives-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .objectives-list li {
      background: #f0f0f0;
      padding: 20px 25px;
      margin-bottom: 15px;
      border-radius: 12px;
      font-size: 1.1rem;
      line-height: 1.6;
      color: #333;
      position: relative;
      transition: transform 0.3s ease, background 0.3s ease;
      animation: fadeInList 0.6s ease forwards;
      opacity: 0;
    }

    .objectives-list li::before {
      content: "✔";
      color: #e60000;
      font-weight: bold;
      margin-right: 12px;
    }

    .objectives-list li:hover {
      background: #eaeaea;
      transform: scale(1.02);
    }

    /* ====== ANIMATIONS ====== */
    @keyframes fadeIn {
      0% { opacity: 0; transform: translateY(30px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes slideInLeft {
      from { opacity: 0; transform: translateX(-100px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes slideInRight {
      from { opacity: 0; transform: translateX(100px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(30px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes slideInDown {
      0% { opacity: 0; transform: translateY(-40px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInList {
      from { opacity: 0; transform: translateX(-30px); }
      to { opacity: 1; transform: translateX(0); }
    }

    /* Staggered animation delays */
    .objectives-list li:nth-child(1) { animation-delay: 0.2s; }
    .objectives-list li:nth-child(2) { animation-delay: 0.4s; }
    .objectives-list li:nth-child(3) { animation-delay: 0.6s; }
    .objectives-list li:nth-child(4) { animation-delay: 0.8s; }

    /* ====== RESPONSIVE DESIGN ====== */
    @media (max-width: 768px) {
      .container {
        flex-direction: column;
        padding: 20px;
      }

      .text-box, .image-box {
        width: 100%;
        text-align: center;
      }

      .text-box h2 {
        font-size: 2rem;
      }

      .text-box p {
        font-size: 1rem;
      }

      .image-box img {
        max-width: 250px;
        margin-top: 20px;
      }

      .objectives-section {
        padding: 30px 20px;
      }

      .objectives-section h2 {
        font-size: 2rem;
      }

      .objectives-list li {
        font-size: 1rem;
        padding: 15px 20px;
      }
    } */


/* ===================== */

.methodology-section {
  /* padding: 60px 20px; */
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.methodology-heading {
  font-size: 2.8rem;
  color: #e60000;
  /* margin-bottom: 20px; */
  font-weight: 700;
  margin-top: -1%;
  animation: fadeInDown 1s ease;
}

.methodology-card {
  background: #e1e1e1;
  border-radius: 25px;
  padding: 40px;
  text-align: justify;
  color: #1d1d1d;
  font-size: 1.1rem;
  line-height: 1.8;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  animation: slideUp 1.2s ease;
  width: 1350px;
}

.methodology-card:hover {
  background: linear-gradient(to right, #df6666, #ececec);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .methodology-heading {
    font-size: 2rem;
  }

  .methodology-card {
    padding: 25px;
    font-size: 1rem;
  }
}


/* ==================== */

.card-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  padding: 60px 40px;
  gap: 22px; /* No spacing */
  overflow-x: auto;
}

.card {
  flex: 1;
  max-width: 25%;
  padding: 30px 20px;
  background-color: #ffffff;
  text-align: center;
  border-radius: 0;
  transition: all 0.4s ease;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.card:hover {
  background: linear-gradient(to bottom right, #ffecec, #ffffff);
  transform: scale(1.03);
  z-index: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon img {
  width: 60px;
  height: 60px;
}

/* Colored backgrounds */
.icon.red { background: linear-gradient(135deg, #e60000, #ff4d4d); }
.icon.purple { background: linear-gradient(135deg, #6f42c1, #a987f5); }
.icon.blue { background: linear-gradient(135deg, #0052cc, #4fa3ff); }
.icon.yellow { background: linear-gradient(135deg, #ff9800, #ffc107); }

.card h3 {
  font-size: 1.2rem;
  margin: 15px 0 10px;
  color: #222;
}

.card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* Responsive: scroll on mobile */
@media (max-width: 768px) {
  .card {
    min-width: 280px;
    max-width: none;
    flex: 0 0 auto;
  }

  .card-row {
    gap: 16px;
    padding: 30px 20px;
    overflow-x: scroll;
  }
}
/* ====================== */

.card-row {
      display: flex;
      gap: 30px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding: 10px;
    }

    .card {
      flex: 0 0 300px;
      height: 350px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      box-shadow: 0 8px 32px 0 rgba(219, 18, 7, 0.37);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.18);
      transition: transform 0.5s ease, box-shadow 0.5s ease;
      position: relative;
      overflow: hidden;
    }

    .card:hover {
      transform: scale(1.05);
      box-shadow: 0 20px 40px rgba(248, 10, 2, 0.4);
    }

    .card::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(155, 55, 52, 0.2) 0%, transparent 70%);
      transform: rotate(45deg);
      animation: float 6s infinite linear;
      z-index: 0;
    }

    @keyframes float {
      0% { transform: translate(0, 0) rotate(45deg); }
      100% { transform: translate(50%, 50%) rotate(45deg); }
    }

    .card-content {
      position: relative;
      z-index: 1;
      padding: 30px;
      color: #fff;
    }

    /* .card h3 {
      font-size: 24px;
      margin-bottom: 15px;
    } */

    .card p {
      font-size: 16px;
      line-height: 1.5;
    }

/* =================== */

.cert-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  padding: 60px 40px;
}

.cert-card {
  flex: 1;
  min-width: 320px;
  max-width: 600px;
  background-color: #eeeeee;
  border-radius: 25px;
  padding: 40px 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, background 0.4s ease;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.cert-left {
  animation-delay: 0.3s;
}

.cert-right {
  animation-delay: 0.6s;
}

.cert-card:hover {
  background: linear-gradient(to bottom right,  #df6666, #e0e0e0);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(216, 48, 48, 0.12);
}

.cert-card h2 {
  font-size: 1.6rem;
  color: #e60000;
  margin-bottom: 15px;
}

.cert-card p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
}

.cert-card ul {
  padding-left: 20px;
  margin: 0;
}

.cert-card li {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 12px;
  position: relative;
  line-height: 1.6;
}

.cert-card li::before {
  content: "✔";
  color: #e60000;
  margin-right: 8px;
  font-weight: bold;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .cert-section {
    flex-direction: column;
    padding: 30px 20px;
  }

  .cert-card {
    max-width: 100%;
  }

  .cert-card h2 {
    font-size: 1.4rem;
  }

  .cert-card p, .cert-card li {
    font-size: 1rem;
  }
}


/* =======================petal======= */
  

    /* .onboarding-flower {
      position: relative;
      width: 600px;
      height: 600px;
    }

    .center-circle {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 260px;
      height: 260px;
      background: radial-gradient(circle, #d9534f, #c9302c);
      color: #fff;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
      z-index: 2;
    }

    .center-circle h2 {
      font-size: 20px;
      margin: 0;
    }

    .center-circle p {
      font-size: 16px;
      margin: 5px 0 0;
    } */

    /* .petal {
      position: absolute;
      width: 160px;
      height: 110px;
      background: #fff;
      border-radius: 12px;
      padding: 12px;
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
      transform: translate(-50%, -50%) scale(0.8);
      animation: bloom 0.9s ease-out forwards;
      opacity: 0;
      text-align: center;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .petal:hover {
      transform: translate(-50%, -50%) scale(1.05);
      box-shadow: 0 20px 45px rgba(217, 83, 79, 0.3);
    }

    .petal h3 {
      font-size: 16px;
      color: #d9534f;
      margin-bottom: 6px;
    } */

    /* .petal p,
    .petal ul {
      font-size: 13px;
      color: #333;
      margin: 0;
      padding-left: 15px;
    }

    .petal ul {
      list-style: disc;
      text-align: left;
    }

    .petal li {
      margin-bottom: 3px;
    } */

    /* Adjusted petal positions for equal spacing in circular layout */
    /* .p1 { top: 0%; left: 50%; animation-delay: 0.1s; }
    .p2 { top: 18%; left: 82%; animation-delay: 0.2s; }
    .p3 { top: 50%; left: 100%; animation-delay: 0.3s; }
    .p4 { top: 82%; left: 82%; animation-delay: 0.4s; }
    .p5 { top: 100%; left: 50%; animation-delay: 0.5s; }
    .p6 { top: 82%; left: 18%; animation-delay: 0.6s; }
    .p7 { top: 50%; left: 0%; animation-delay: 0.7s; }
    .p8 { top: 18%; left: 18%; animation-delay: 0.8s; }

    @keyframes bloom {
      0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5) rotateX(30deg);
      }
      60% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.08);
      }
      100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
      }
    }

    @media(max-width: 768px) {
      .onboarding-flower {
        transform: scale(0.7);
      }
    } */
    /* +++++++++++++++++++++petal++++++++++++++++++++ */


    /* General Petal Style */
/* .petal {
  position: absolute;
  width: 160px;
  height: 110px;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  transform: translate(-50%, -50%) scale(0.8);
  animation: bloom 0.9s ease-out forwards;
  opacity: 0;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
} */

/* Petal Hover */
/* .petal:hover {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
} */

/* Petal Titles */
/* .petal h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #fff;
} */

/* Petal Content */
/* .petal p,
.petal ul {
  font-size: 13px;
  color: #fff;
  margin: 0;
  padding-left: 10px;
}

.petal ul {
  list-style: disc;
  text-align: left;
}

.petal li {
  margin-bottom: 3px;
} */

/* Colorful Themes for Each Petal */
/* .p1 {
  background: linear-gradient(to bottom right, #FF6B6B, #FF4757);
  top: 0%; left: 50%; animation-delay: 0.1s;
}

.p2 {
  background: linear-gradient(to bottom right, #FFA502, #FF7F50);
  top: 18%; left: 82%; animation-delay: 0.2s;
}

.p3 {
  background: linear-gradient(to bottom right, #2ED573, #1DD1A1);
  top: 50%; left: 100%; animation-delay: 0.3s;
}

.p4 {
  background: linear-gradient(to bottom right, #3742FA, #5352ED);
  top: 82%; left: 82%; animation-delay: 0.4s;
}

.p5 {
  background: linear-gradient(to bottom right, #A55EEA, #8854D0);
  top: 100%; left: 50%; animation-delay: 0.5s;
}

.p6 {
  background: linear-gradient(to bottom right, #1E90FF, #00BFFF);
  top: 82%; left: 18%; animation-delay: 0.6s;
}

.p7 {
  background: linear-gradient(to bottom right, #2F3542, #57606F);
  top: 50%; left: 0%; animation-delay: 0.7s;
}

.p8 {
  background: linear-gradient(to bottom right, #E84393, #FF6B81);
  top: 18%; left: 18%; animation-delay: 0.8s;
} */


/* ---- Info Box Styling ---- */
 

.info-box:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 24px rgba(222, 74, 74, 0.15);
}

.quote-bar {
  background: linear-gradient(135deg, #ff4e50, #f9d423);
  color: #fff;
  padding: 20px 40px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 600;
  margin: 40px auto;
  width: 1450px;
 text-align: center;
  position: relative;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background-position 0.6s ease;
  background-size: 200% 200%;
}

/* ✨ Hover animation effect */
.quote-bar:hover {
  transform: scale(1.03);
  background-position: right center;
  box-shadow: 0 12px 28px rgba(202, 58, 60, 0.4), 0 0 10px rgba(246, 82, 74, 0.3);
}

/* Optional moving shine on hover */
.quote-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  transition: left 0.8s ease;
  z-index: 1;
}

.quote-bar:hover::after {
  left: 120%;
}




/* ---- Register Section ---- */
   .cta-section {
  max-width: 900px;
  margin: 38px auto 60px;
  background: #fecaca;
  border-radius: 20px;
  padding: 30px 85px 20px;
  position: relative;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
  animation: fadeIn 1s ease both;
}

.cta-section p {
  font-size: 18px;
  color: #111;
  margin-bottom: 20px;
  font-weight: 500;
  margin-top: 40px;
}

/* ---- Shine Button ---- */
.register-btn {
  background: red;
  color: #fff;
  padding: 12px 26px;
  font-size: 14px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.register-btn:hover {
  background: red; /* Keep red consistent */
}

/* Shine Effect */
.register-btn.shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0.2)
  );
  transform: skewX(-20deg);
  transition: left 0.8s;
}

.register-btn.shine:hover::after {
  left: 130%;
}

/* Call Icon */
.call-icon {
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  width: 161px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
  z-index: 10;
}

.call-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translate(-50%, -5px);
  }
  50% {
    transform: translate(-50%, 5px);
  }
}

@media (max-width: 600px) {
  .call-icon {
    width: 90px;
    height: 90px;
    top: -45px;
  }

  .cta-section {
    padding-top: 60px;
  }
}


/* =========================== */


/* Section container */
 .card-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .card-container:hover .card {
      filter: blur(2px) brightness(0.9);
      transform: scale(0.95);
      transition: all 0.3s ease;
    }

    .card-container .card:hover {
      filter: none;
      transform: scale(1.05);
      z-index: 2;
      max-height: 400px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    }

    .card {
      width: 250px;
      background: white;
      border-radius: 12px;
      overflow: hidden;
      /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      transition: max-height 0.4s ease, transform 0.3s ease, filter 0.3s ease; */
      max-height: 286px;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .card-header {
      padding: 20px;
      text-align: center;
    }

    .card-header img {
      width: 110px;
      height: 110px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 10px;
      border: 3px solid #ffffff;
    }

    .card-header h2 {
      margin: 5px 0 5px;
      font-size: 18px;
      color: #333;
    }

    .card-header p {
      font-size: 15px;
      color: #1a1414;
      margin: 0;
    }

    .card-body {
      padding: 0 20px 20px;
      font-size: 14px;
      color: #ffffff;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .card:hover .card-body {
      opacity: 1;
      transform: translateY(0);
    }


/* ========================== */

/* Section Styling */
       .section2 {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 60px 80px;
      background: linear-gradient(to right, #ffe3e3, #fff5f5);
      animation: fadeIn 1s ease-out;
      flex-wrap: wrap;
    }

    .section2 h1 {
      font-size: 3rem;
      color: #ff4b5c;
      animation: slideInLeft 1s ease-out;
      flex: 1;
      text-align: center;
    }

    .section2 img {
      /* width: 500px; */
      max-width: 100%;
      height: auto;
      border-radius: 20px;
      /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
      animation: slideInRight 1s ease-out;
      flex: 1;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes slideInLeft {
      from { transform: translateX(-50px); opacity: 0; }
      to { transform: translateX(0); opacity: 1; }
    }

    @keyframes slideInRight {
      from { transform: translateX(50px); opacity: 0; }
      to { transform: translateX(0); opacity: 1; }
    }

    @media (max-width: 768px) {
      .section2 {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
      }

      .section2 h1 {
        margin-bottom: 30px;
      }
    }

/* About box styling */
.about-box {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
  padding: 30px 40px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: justify;
  line-height: 1.8;
  font-size: 16px;
  color: #333;
  border-left: 8px solid #d93030;
  transition: box-shadow 0.3s ease;
}
   .about-Ideal h2 {
      color: #d93030;
      font-size: 42px;
      font-weight: 700;
      position: relative;
      display: inline-block;
      margin-bottom: 50px;
      animation: floatText 3s ease-in-out infinite;
      
    }
       .about-Ideal h2::after {
      content: '';
      position: absolute;
      width: 100px;
      height: 4px;
      background-color: #d93030;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 4px;
    }
    .about-Ideal {
      width: 100%;
      text-align: center;
      padding: 80px 20px;
      position: relative;
      overflow: hidden;
    }

.about-box:hover {
  box-shadow: 0 12px 30px rgba(217, 48, 48, 0.4);
}


/* ===========cards======== */


    :root {
      --fade-duration: 0.6s;
    }


    .modules-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
      text-align: center;
    }

    .modules-title {
      font-size: 2.8rem;
      font-weight: bold;
      margin-bottom: 50px;
      color: #212529;
      animation: fadeDown 1s ease-in-out;
    }

    .modules-title span {
      color: #e60000;
    }

    /* Grid Layout */
    .modules-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    /* Card Styling */
    .module-card {
      background: #fff;
      padding: 30px 20px;
      border-radius: 20px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-top: 6px solid var(--bar-color);
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp var(--fade-duration) ease forwards;
    }

    .module-card:nth-child(1) { animation-delay: 0.1s; }
    .module-card:nth-child(2) { animation-delay: 0.2s; }
    .module-card:nth-child(3) { animation-delay: 0.3s; }
    .module-card:nth-child(4) { animation-delay: 0.4s; }
    .module-card:nth-child(5) { animation-delay: 0.5s; }
    .module-card:nth-child(6) { animation-delay: 0.6s; }
    .module-card:nth-child(7) { animation-delay: 0.7s; }
    .module-card:nth-child(8) { animation-delay: 0.8s; }
    .module-card:nth-child(9) { animation-delay: 0.9s; }

    .module-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    }

    .module-card img {
      width: 64px;
      height: 64px;
      margin-bottom: 20px;
      transition: transform 0.3s ease;
    }

    .module-card:hover img {
      transform: rotate(5deg) scale(1.1);
    }

    .module-card h3 {
      font-size: 1.15rem;
      color: #343a40;
      line-height: 1.4;
    }

    


    /* =============================== */

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 30px;
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr); 
  gap: 30px;
}

@media (min-width: 768px) {
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .modules-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* =================================== */



  .dashboard {
    width: 90%; max-width: 1100px; background: white;
    border-radius: 16px; box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 40px;
    animation: fadeIn 0.8s ease;
    margin-top: 60px;
  }
  .duration {
    text-align: center;
    font-size: 1.5rem; font-weight: bold;
    color: #b00000 ;
    border: 2px solid #b00000; padding: 16px 0;
    border-radius: 12px;
    width: 320px; margin: 0 auto 40px auto;
    background: #ffeaea;
    animation: slideDown 1s ease;
  }
  .sections {
    display: flex; justify-content: space-between;
    gap: 30px;
  }
  .section {
    flex: 1;
  }
  .title {
    font-size: 1.2rem; font-weight: 600;
    color: #b00000; margin-bottom: 16px;
    position: relative;
  }
  .title::after {
    content: ''; position: absolute;
    bottom: -4px; left: 0;
    width: 50px; height: 4px;
    background: #b00000;
  }
  .dards {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(140px,1fr));
    gap: 16px;
  }
  .dard {
    background: linear-gradient(to right, #b00000, #d00000);
    color: white; padding: 18px;
    text-align: center;
    border-radius: 8px;
    font-size: 1rem; font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 3px 10px rgba(208,0,0,0.3);
  }
  .dard:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(208,0,0,0.45);
  }
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95);}
    to { opacity: 1; transform: scale(1);}
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-30px);}
    to { opacity: 1; transform: translateY(0);}
  }
  @media (max-width: 768px) {
    .sections { flex-direction: column; }
  }




  
      /* Footer */
      .clean-footer {
        background: rgb(255, 255, 255);
        color: rgb(235, 10, 10);;
        font-family: 'Segoe UI', sans-serif;
        padding: 40px 20px;
        width: 100%;
      }
    
      .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 12px;
      }
    
      .footer-section {
        flex: 1 1 250px;
      }
    
      .footer-logo img {
        width: 135px;
        margin-bottom: 5px;
        margin-left: 72px;
      }
    
      .footer-section h4 {
        color: rgb(235, 10, 10);
        font-size: 16px;
        margin-bottom: 10px;
        padding-bottom: 5px;
      }
    
      .footer-section a {
        display: block;
        color: rgb(235, 10, 10);
        font-size: 14px;
        text-decoration: none;
        margin-bottom: 6px;
        margin-right: 15px;
      }
    
      .footer-section a:hover {
        color: rgb(235, 10, 10);
      }
    
    .social-icons-horizontal {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-icons-horizontal img {
  width: 25px;
  height: 25px;
}

    
      .mini-form input,
      .mini-form textarea {
        width: 100%;
        padding: 10px;
        border: none;
        border-radius: 8px;
        margin-bottom: 10px;
        background: rgb(235, 235, 235);
        color: rgb(235, 10, 10);
        font-size: 14px;
      }
    
      .mini-form button {
        width: 100%;
        padding: 10px;
        background: rgb(235, 10, 10);
        color: rgb(255, 255, 255);
        font-weight: bold;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: 0.3s;
      }
    
      .mini-form button:hover {
        background-color: rgb(191, 61, 61);
        transform: translateY(-2px);
      }
    
      .footer-bottom-line {
        text-align: center;
        margin-top: 30px;
        font-size: 14px;
        color: rgb(235, 10, 10);
      }
    
      .footer-section iframe {
        width: 100%;
        height: 180px;
        border-radius: 6px;
      }
      .social-icons-horizontal a {
      display: inline-block;
      padding: 6px;
      border-radius: 50%;
      transition: transform 0.3s ease, background-color 0.3s ease;
    }
    
    .social-icons-horizontal a:hover {
      transform: scale(1.2);
      
    }
    
    .social-icons-horizontal a img {
      width: 25px;
      height: 25px;
      display: block;
    }
    
    
      /* ✅ Responsive */
      @media (max-width: 768px) {
        .footer-content {
          flex-direction: column;
          align-items: center;
        }
    
        .footer-section {
          width: 100%;
          text-align: center;
        }
    
        .social-icons-horizontal {
          justify-content: center;
        }
    
        .footer-logo img {
          margin: 0 auto 15px;
        }
      }

      

.course-columns {
  display: flex;
  gap: 272px;
  flex-wrap: wrap;
}

.course-columns ul {
  list-style: none;
  padding-left: 0;
}

.course-columns li {
  margin-bottom: 6px;
}
.course-columns a {
  color: #ef0000; /* White text */
  text-decoration: none;
  transition: color 0.3s ease;
}




.navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: white;
      padding: 15px 40px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      position: sticky;
      top: 0;
      z-index: 100;
      width: 100%;
    }

    .logo img {
      height: 50px;
      width: auto;
      transition: transform 0.3s ease, filter 0.3s ease;
      cursor: pointer;
    }

    .logo img:hover {
      transform: scale(1.05);
      filter: brightness(1.1);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 25px;
    }

    .nav-right a {
      text-decoration: none;
      color: #222;
      font-weight: 600;
      position: relative;
      padding: 6px 0;
      transition: all 0.3s ease;
    }

    .nav-right a:hover {
      color: #d9534f;
    }

    .dropdown {
      position: relative;
    }

    .dropdown-content {
      position: absolute;
      top: 40px;
      left: 0;
      background: white;
      min-width: 160px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      border-radius: 6px;
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
      z-index: 50;
    }

    .dropdown:hover .dropdown-content {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-content a {
      display: block;
      padding: 12px 20px;
      color: #333;
      font-weight: 500;
      transition: background 0.3s;
    }

    .dropdown-content a:hover {
      background: #f5f5f5;
    }

    .nav-buttons {
      display: flex;
      gap: 10px;
    }

    .nav-buttons button {
      padding: 10px 18px;
      background-color: #d9534f;
      color: white;
      border: none;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .nav-buttons button:hover {
      background-color: #c9302c;
    }




   

    .slider {
      width: 100%;
      height: 100vh;
      overflow: hidden;
      position: relative;
    }

    .slides {
      display: flex;
      width: 300%; /* 3 slides */
      height: 100%;
      animation: slide 12s infinite;
    }

    .slide {
      width: 100%;
      height: 100vh;
      flex-shrink: 0;
      
    }

    .slide img {
  width: 100%;
  height: 50%;
  object-fit: cover;
  filter: brightness(0.8);

}

    @keyframes slide {
      0%    { transform: translateX(0%); }
      33.33%{ transform: translateX(0%); }

      33.34%{ transform: translateX(-100%); }
      66.66%{ transform: translateX(-100%); }

      66.67%{ transform: translateX(-200%); }
      100%  { transform: translateX(-200%); }
    }

element.style {
    color: red;
    margin-top: 43px;
}

        .section2 {
      text-align: center;
      padding: 50px 20px;
      background: linear-gradient(135deg, #fff0f3, #ffe5e9);
    }

    h1 {
      font-size: 3rem;
      color: #d1001c;
      text-transform: uppercase;
      margin-bottom: -13px;
      position: relative;
      animation: fadeInDown 1.2s ease-out forwards;
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .program-image {
      max-width: 600px;
      width: 90%;
      border-radius: 20px;
      margin-top: -89px;
      animation: floatUp 2s ease-in-out infinite alternate;
    }

    @keyframes floatUp {
      from {
        transform: translateY(0);
      }
      to {
        transform: translateY(-15px);
      }
    }

    /* Responsive */
    @media (max-width: 768px) {
      h1 {
        font-size: 2.2rem;
      }
    }





        .section-heading {
      font-size: 3rem;
      font-weight: bold;
      color: #d1001c;
      margin: 40px 0 30px;
      text-align: center;
      animation: fadeSlide 1s ease-out forwards;
      opacity: 0;
    }

    .image-section {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .circle-wrapper {
      width: 663px;
      height: 400px;
      border-radius: 50%;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
      transform: scale(0.9) rotate(-3deg);
      opacity: 0;
      animation: imgZoom 1.5s ease-out 0.8s forwards;
    }

    .circle-wrapper img {
      width: 114%;
      height: 110%;
      object-fit: cover;
      display: block;
    }

    @keyframes fadeSlide {
      0% {
        transform: translateY(-30px);
        opacity: 0;
      }
      100% {
        transform: translateY(0);
        opacity: 1;
      }
    }

    @keyframes imgZoom {
      0% {
        opacity: 0;
        transform: scale(0.9) rotate(-3deg);
      }
      100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
      }
    }







    .image-section2 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  animation: fadeSlide 1s ease-out forwards;
  opacity: 0;
}

.image-section2 img {
  width: 80%;
  max-width: 800px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transform: scale(0.95);
  opacity: 0;
  animation: zoomFade 1.2s ease-out 0.5s forwards;
}


@keyframes fadeSlide {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes zoomFade {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

    /* Section container */
.infrastructure-section {
  text-align: center;
  padding: 40px 20px;
  margin-top: -30px;
}

/* Title */
.section-title {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  background: #dc2626;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 999px;
  border: 2px solid #dc2626;
  margin-bottom: 30px;
  animation: fadeInDown 1s ease;
}

/* Grid layout for interiors */
.image-grid {
  display: flex;
  flex-wrap: nowrap; /* prevent wrap */
  justify-content: center;
  gap: 30px;
  max-width: 100%;
 
  padding: 10px 0;
  margin-bottom: 50px;
  animation: zoomIn 1.2s ease;

}

.image-grid img {
  flex-shrink: 0;
  width: 250px;
  height: 200px;
  object-fit: cover;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s;
}


.image-grid img:hover {
  transform: scale(1.06);
}

/* Building image */
.building-container {
  animation: fadeInUp 1s ease;
}

.building-container img {
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .image-grid {
    flex-direction: column;
    align-items: center;
  }

  .image-grid img {
    width: 90%;
  }
}








