@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", serif;
}

/* ////////////////////////////// */
.highlight-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.6s ease;
}

.highlight-image:hover {
    transform: scale(1.03);
}

.image-container {
    overflow: hidden;
}

/* ////////////////////////////// */
.highlight-bg {
    background-color: #01427A;
    color: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.program-list li {
    margin-bottom: 10px;
}

.study-material {
    animation: fadeInUp 1s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-heading {
    color: #01427A;
}

/* ///////////////////////////////////// */
.image-card {
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(1, 66, 122, 0.4);
    border: 2px solid #01427A;
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.container-custom {
    padding: 2rem;
}

/* ///////////////////////////////////////////////////// */
.timeperlimscontainer {
    background-color: #f8f9fa;
    align-items: center;
    padding: 20px;
}

.section-title {
    background-color: #ffc107;
    color: #000;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 1.4rem;
    display: inline-block;
    border-radius: 5px;
    animation: fadeInDown 1s ease-in-out;
}

.branch-title {
    color: #01427A;
    font-weight: 700;
    margin-top: 30px;
    animation: fadeInLeft 1s ease-in-out;
}

.timing {
    font-size: 1rem;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease-in-out;
}

.highlight {
    background-color: #01427A;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ///////////////////////////////////////////////// */
.batch-heading {
    background-color: #01427A;
    color: white;
    padding: 10px;
    font-weight: bold;
    text-align: center;
    border-radius: 8px;
    text-transform: uppercase;
  }

  .table-responsive {
    overflow-x: auto;
  }

  .btn-join {
    background-color: #01427A;
    color: white;
    border: none;
    padding: 8px 25px;
    font-size: 1rem;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    width: 130px;
  }

  .btn-join:hover {
    background-color: #012e56;
  }

  table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    border: 2px solid black !important;
    b /* Ensures outer border */
  }

  th,
  td {
    border: 1px solid #000; /* Darker and consistent border */
    padding: 15px;
    vertical-align: top;
  }

  th {
    background-color: #01427A;
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1.6;
  }

  tbody tr:hover td {
    background-color: #f3f9ff;
  }

  table, th, td {
    border: 1px solid #000 !important;
    border-collapse: collapse;
  }
  th, td {
    padding: 8px;
  }



  @media (max-width: 768px) {
    table,
    thead,
    tbody,
    th,
    td,
    tr {
      display: block;
      width: 100%;
    }

    thead {
      display: none;
    }

    tbody tr {
      margin-bottom: 1rem;
      border: 1px solid #000;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      padding: 10px;
      background-color: white;
    }

    td {
      position: relative;
      padding-left: 50%;
      border: none;
      border-bottom: 1px solid #000;
      background-color: #fefefe;
    }

    td::before {
      content: attr(data-label);
      position: absolute;
      top: 15px;
      left: 15px;
      width: 45%;
      font-weight: bold;
      white-space: normal;
    }
  }

/* ////////////////////////////////////// */
.councontainerhighlight {
    color: #e60073;
    font-weight: 600;
}

.counselling-box {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.counselling-title {
    color: #4b0082;
    font-weight: bold;
}

.icon-check {
    color: #28a745;
    margin-right: 10px;
}

/* /////////////////////////////// */
:root {
    --primary-color: #01427A;
}

.highlightperlimscontainer {
    background-color: #f4f7fa;
}

.highlights-section {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    margin: 40px auto;
    max-width: 900px;
}

.highlights-section h2 {
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.highlight-item {
    padding: 15px 20px;
    margin-bottom: 15px;
    border-left: 5px solid var(--primary-color);
    background-color: #f9fbfe;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(5px);
}

.highlight-item span {
    font-weight: bold;
    color: var(--primary-color);
}

@media (max-width: 576px) {
    .highlights-section {
        padding: 20px 15px;
    }
}

/* /////////////////////////////////////////// */
.plancontainer {
    background-color: #f8f9fa;

}

.program-box {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.program-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.program-heading {
    color: #01427A;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.program-box ul {
    padding-left: 1rem;
}

.program-box ul li {
    margin-bottom: 8px;
}

/* .highlight {
    font-weight: 600;
} */

.plancontainerdivider {
    height: 4px;
    width: 60px;
    background-color: #01427A;
    margin: 0 auto 40px;
    border-radius: 2px;
}

/* ///////////////////////////////// */

.highlight-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
}

.feature-card {
    border: 2px solid #01427A;
    border-radius: 15px;
    padding: 30px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 48px;
    color: #01427A;
    margin-bottom: 15px;
}

.register-banner {
    background-color: #01427A;
    color: white;
    padding: 40px 20px;
}

.register-btn {
    background-color: #28a745;
    color: white;
    font-weight: bold;
    border-radius: 25px;
    padding: 10px 30px;
    transition: background-color 0.3s ease;
}

.register-btn:hover {
    background-color: #218838;
}

.animated-text {
    animation: bounceIn 1s ease-in-out;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    60% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}