/*--navbar--*/
.navbar-1 {
    background-color: #181832;
    color: white;
    height: 50px;
    text-align: left;
}

.navbar-1 .phone-tag {
    font-size: 16px;
}

.navbar-1 .address-tag {
    font-size: 16px;
}

.navbar-1 .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.navbar-2 {
    background-color: white;
    color: black;
    padding: 0 20px;
}

.navbar-2 .navbar-toggler {
    color: black;
}

.navbar-2 .navbar-nav .nav-link {
    margin: 0 10px;
}

@media (max-width: 768px) {
    .navbar-1 .phone-tag {
        font-size: 13px;
    }

    .navbar-1 .address-tag {
        font-size: 13px;
    }
}

/*--navbar--*/


body {
    background-color: #f6f6f6;
}


/* ===========================
       Harvard Hero Section
    =========================== */
.havard-hero {
    font-family: "Inter", Arial, sans-serif;
    background-color: #f7f7f7;
    padding: 100px 10%;
    text-align: left;
    color: #111;
}
.havard-logo img{
  width: 22%;
  padding-bottom: 20px;
}

.havard-hero .mini-heading {
    color: #5a5a5a;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards 0.3s;
}

.havard-hero h1 {
    font-size: 5.5rem;
    font-weight: 600;
    font-family: "IBM Plex Sans", "Inter", sans-serif;
    color: #1c1c1c;
    line-height: 1.2;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards 0.6s;
}

.havard-hero .enroll-btn {
    display: inline-block;
    background: linear-gradient(243.8deg, #e0174a 25%, #a61c31);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    padding: 12px 26px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards 0.9s;
}

.havard-hero .enroll-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(233, 50, 100, 0.3);
    background: rgb(225, 240, 251);
    border: 1px solid #a61c31;
    color: #111;
}

.havard-hero .hero-image {
    width: 100%;
    margin-top: 60px;
    border-radius: 15px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards 1.2s;
}

.havard-hero .hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* Animation */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .havard-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .havard-hero {
        padding: 80px 6%;
        text-align: center;
    }
.havard-logo img{
        width: 30%;
    }
    .havard-hero h1 {
        font-size: 2.2rem;
    }

    .havard-hero .mini-heading {
        font-size: 14px;
    }

    .havard-hero .enroll-btn {
        padding: 10px 22px;
    }
}

@media (max-width: 480px) {
    .havard-hero h1 {
        font-size: 1.9rem;
    }
     .havard-logo img{
        width: 30%;
    }
}

/* ===========================
       Harvard Hero Section
    =========================== */






/* ===========================
       Enrollment bar
    =========================== */
.enrollment-blur-zone {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 115px;
    pointer-events: none;
    z-index: 98;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: block;
}

.enrollment-bar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1200px;
    width: calc(100% - 4rem);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 1.1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
    gap: 2rem;
}

.enrollment-left {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.enrollment-item {
    display: flex;
    flex-direction: column;
}

.enrollment-item-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.enrollment-item-value {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.enrollment-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.enrollment-deadline {
    font-size: 0.9rem;
    color: #666;
    white-space: nowrap;
}

.apply-btn {
    background: linear-gradient(243.8deg, #e0174a 25%, #a61c31);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    white-space: nowrap;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(224, 23, 74, 0.3);
}

.apply-btn svg {
    width: 18px;
    height: 18px;
}

/* Mobile Responsive */
@media (max-width: 968px) {

    /* Enrollment Bar - Mobile as Section */
    .enrollment-blur-zone {
        display: none;
    }

    .enrollment-bar {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .enrollment-left {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .enrollment-right {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .apply-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===========================
       Enrollment bar
    =========================== */







/* ==============================
       Harvard Two Column Section
    ============================== */
.harvard-two-col {
    font-family: "Inter", Arial, sans-serif;
    background-color: #fff;
    padding: 100px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.harvard-two-col .left-col {
    flex: 1;
    min-width: 300px;
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeLeft 1.2s ease forwards 0.4s;
}

.harvard-two-col .left-col img {
    width: 100%;
    border-radius: 15px;
    display: block;
}

.harvard-two-col .right-col {
    flex: 1.5;
    min-width: 300px;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeRight 1.2s ease forwards 0.7s;
}

.harvard-two-col .right-col h2 {
    font-size: 2.50rem;
    font-family: "IBM Plex Sans", "Inter", sans-serif;
    color: #111;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.harvard-two-col .right-col p {
    font-size: 1rem;
    color: #333;
    text-align: justify;
    line-height: 1.7;
    max-width: 90%;
}

/* Animations */
@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .harvard-two-col {
        gap: 40px;
    }

    .harvard-two-col .right-col h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .harvard-two-col {
        flex-direction: column;
        text-align: center;
        padding: 80px 6%;
    }

    .harvard-two-col .right-col h2 {
        font-size: 1.9rem;
    }

    .harvard-two-col .right-col p {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .harvard-two-col {
        padding: 60px 5%;
    }

    .harvard-two-col .right-col h2 {
        font-size: 1.6rem;
    }
}

/* ==============================
       Harvard Two Column Section
    ============================== */








/* ==============================
       Harvard three card Section
    ============================== */

/* === Target Section === */
.rv-card-section {
    width: 100%;
    padding: 80px 0;
    background: #f5f5f5;
    font-family: "Poppins", sans-serif;
    perspective: 1000px;
    overflow: hidden;
}

/* === Layout === */
.rv-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

/* === Base Card === */
.rv-card {
    position: relative;
    width: 380px;
    min-height: 520px;
    padding: 40px 35px;
    background: url('images/cards-back.png') center/cover no-repeat;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    color: #111;
    overflow: hidden;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
}

/* === Gradient Mini Label === */
.rv-label {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 50px;
    background: linear-gradient(252.38deg, #ac1785, #430a72 93%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(-20px);
}

/* === Title & Description === */
.rv-title {
    font-size: 2.5rem;
    line-height: 1.3;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(15px);
}

.rv-desc {
    display: none;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 18px;
    color: #ddd;
    transition: all 0.4s ease;
}

/* === Gradient + Button === */
.rv-toggle-btn {
    position: absolute;
    bottom: 35px;
    left: 35px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    outline: none;
    background: linear-gradient(243.8deg, #e0174a 25%, #a61c31);
    color: #fff;
    font-size: 26px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 rgba(255, 0, 106, 0.5);
    opacity: 0;
    transform: translateY(30px);
}

.rv-toggle-btn .close {
    display: none;
    color: #000000;

}

/* === Active Card State === */
.rv-card.active {
    background: #1a1a1a;
    color: #fff;
    transform: scale(1.03);
}

.rv-card.active .rv-title {
    font-size: 20px;
}

.rv-card.active .rv-desc {
    display: block;
    opacity: 1;
}

.rv-card.active .rv-toggle-btn {
    transform: rotate(180deg);
    background: whitesmoke;
}

.rv-card.active .rv-toggle-btn .plus {
    display: none;
}

.rv-card.active .rv-toggle-btn .close {
    display: block;
}

/* === Hover Subtle Effect === */
.rv-card:hover {
    transform: translateY(-5px);
}

/* === ENTRANCE ANIMATION STATES === */
.rv-card {
    opacity: 0;
    transform: translateY(60px) rotateX(10deg) scale(0.95);
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1),
        opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.rv-card.show {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) scale(1);
}

.rv-card.show .rv-label {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease 0.2s;
}

.rv-card.show .rv-title {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease 0.4s;
}

.rv-card.show .rv-toggle-btn {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease 0.6s;
    animation: rv-glow 1.5s ease-in-out 1s forwards;
}

/* Unique glow pulse for button */
@keyframes rv-glow {
    0% {
        box-shadow: 0 0 0 rgba(255, 0, 106, 0.5);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 0, 106, 0.5);
    }

    100% {
        box-shadow: 0 0 0 rgba(255, 0, 106, 0);
    }
}

/* === Responsive === */
@media (max-width: 1024px) {
    .rv-card-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .rv-card {
        width: 90%;
        padding: 30px;
    }

    .rv-title {
        font-size: 22px;
    }

    .rv-toggle-btn {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}

/* ==============================
       Harvard three card Section
    ============================== */




/* ======================================
       IPMC Harvard Accordion Section
    ====================================== */

.rv-syllabus-section {
    background: #fff;
    padding: 100px 0;
}

.rv-syllabus-container {
    width: 1300px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* === LEFT COLUMN === */
.rv-syllabus-left {
    flex: 1;
    max-width: 50%;
}

.rv-syllabus-left h2 {
    font-size: 4rem;
    font-weight: 600;
    font-family: "IBM Plex Sans", "Inter", sans-serif;
    color: #1c1c1c;
    margin-bottom: 25px;
}

.rv-syllabus-left p {
    font-size: 1.105rem;
    line-height: 1.5;
    font-family: "IBM Plex Sans", "Inter", sans-serif;
    color: #212121;
    margin-bottom: 40px;
}

.rv-syllabus-left .enroll-btn {
    display: inline-block;
    background: linear-gradient(243.8deg, #e0174a 25%, #a61c31);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    padding: 12px 26px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards 0.9s;
}

.rv-syllabus-left.enroll-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(233, 50, 100, 0.3);
    background: rgb(225, 240, 251);
    border: 1px solid #a61c31;
    color: #111;
}



/* === RIGHT COLUMN === */
.rv-syllabus-right {
    flex: 1;
    max-width: 50%;
}

.rv-accordion-item {
    margin-bottom: 15px;
    margin-top: 5%;
}

.rv-accordion-header {
    background: none;
    border: none;
    outline: none;
    width: 100%;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.rv-accordion-header:hover {
    color: #ed0b0b;
}

/* Icons */
.rv-accordion-header .rv-icon i {
    font-size: 18px;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Change icon color when open */
.rv-accordion-item.active .rv-accordion-header .rv-icon i {
    color: #ed0b0b;
}

/* Rotate icon when open */
.rv-accordion-item.active .rv-accordion-header .rv-icon i.fa-minus {
    transform: rotate(180deg);
}

.rv-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.rv-accordion-body.open {
    max-height: 700px;
}

.rv-accordion-body ul {
    margin: 0;
    padding-left: 0px;
    list-style-type: disc;
}

.rv-accordion-body li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.rv-divider-tab {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    width: 100%;
    margin: 10px 0 20px;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 992px) {
    .rv-syllabus-container {
        flex-direction: column;
        gap: 50px;
    }

    .rv-syllabus-left,
    .rv-syllabus-right {
        max-width: 100%;
    }

    .rv-syllabus-left h2 {
        font-size: 38px;
    }
}

/* ======================================
       IPMC Harvard Accordion Section
    ====================================== */







/* ======================================
   IPMC Harvard Course Carousel Section
====================================== */
.courses-section {
    font-family: "IBM Plex Sans", "Inter", sans-serif;
    padding-top: 60px;
    padding-bottom: 140px;
    background: #f8f8f8;
}

.courses-section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 110px;
}

.courses-section__title {
    font-size: 4rem;
    font-weight: 700;
    color: #1c1c1c;
    margin: 0;
    padding-bottom: 40px;
    padding-top: 20px;
}

.courses-section__controls {
    display: flex;
    gap: 15px;
}

.courses-section__btn {
    width: 40px;
    height: 40px;
    border: 2px solid #333;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.courses-section__btn:hover {
    background: #333;
    color: white;
}

.courses-section__carousel-container {
    position: relative;
    overflow: hidden;
    padding-left: 110px;
}

.courses-section__carousel {
    display: flex;
    gap: 40px;
    scroll-behavior: smooth;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.courses-section__carousel::-webkit-scrollbar {
    display: none;
}

.courses-section__card {
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: start;
    transition: transform 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.courses-section__card:hover {
    transform: translateY(-5px);
}

.courses-section__card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.courses-section__card-content {
    background: white;
    padding: 20px;
}

.courses-section__card-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.courses-section__badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.courses-section__badge--featured {
    background: #e74c3c;
    color: white;
}

.courses-section__badge--certificate {
    background: #2c3e50;
    color: white;
}

.courses-section__card-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.4;
    color: #1a1a1a;
}

.courses-section__card-meta {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .courses-section__card {
        flex: 0 0 calc(50% - 10px);
    }

    .courses-section__carousel-container {
        padding-left: 20px;
    }

    .courses-section__header {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .courses-section {
        padding: 30px 0;
    }

    .courses-section__header {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
        margin-bottom: 20px;
    }

    .courses-section__title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .courses-section__controls {
        align-self: flex-end;
    }

    .courses-section__carousel-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .courses-section__card {
        flex: 0 0 calc(100% - 40px);
    }

    .courses-section__card-image {
        height: 200px;
    }

    .courses-section__card-content {
        padding: 15px;
    }

    .courses-section__card-title {
        font-size: 14px;
    }

    .courses-section__card-meta {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .courses-section__card-image {
        height: 150px;
    }

    .courses-section__title {
        font-size: 20px;
    }
}

/* ======================================
   IPMC Harvard Course Carousel Section
====================================== */


/* ===============================
   Results Section Styling
=============================== */
.ipmc-results-section {
  background-color: #f8f8f8;
  padding: 80px 0;
}

.ipmc-results-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.ipmc-results-heading {
  font-size: 3.2rem;
  font-weight: 700;
  color: #1c1c1c;
  font-family: "IBM Plex Sans", "Inter", sans-serif;
  margin-bottom: 20px;
  line-height: 1.3;
}

.ipmc-results-text {
  font-size: 1.2rem;
  color: #333;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .ipmc-results-heading {
    font-size: 2.6rem;
  }
  .ipmc-results-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .ipmc-results-section {
    padding: 60px 0;
  }
  .ipmc-results-heading {
    font-size: 2.2rem;
  }
  .ipmc-results-text {
    font-size: 1rem;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .ipmc-results-heading {
    font-size: 1.8rem;
  }
  .ipmc-results-text {
    font-size: 0.95rem;
  }
}

/* ===============================
   Results Section Styling
=============================== */








     /* ======================================
   Havard tesimonial Section
====================================== */

 .testimonials-wrapper {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            overflow: hidden;
        }

        .testimonials-section {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            padding: 40px 20px;
        }

        .testimonials-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .testimonials-title {
            font-size: clamp(28px, 6vw, 48px);
            font-weight: 700;
            color: #1a1a1a;
        }

        .testimonials-title .highlight {
            color: #d81b60;
        }

        .testimonials-nav {
            display: flex;
            gap: 12px;
        }

        .nav-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 2px solid #e0e0e0;
            background: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 18px;
        }

        .nav-btn:hover {
            border-color: #d81b60;
            color: #d81b60;
        }

        .nav-btn.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .testimonials-carousel {
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            gap: 24px;
            transition: transform 0.5s ease-out;
        }

        .testimonial-card {
            flex: 0 0 calc(25% - 18px);
            min-height: 400px;
            border-radius: 16px;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            background-image: url('./images/test-bg1.png');
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
        }

        .testimonial-card.purple {
            background-image: url('./images/test-bg-2.png');
        }

        .testimonial-content {
            position: relative;
            z-index: 2;
        }

        .quote-mark {
            font-size: 64px;
            color: rgba(255, 255, 255, 0.4);
            line-height: 1;
            margin-bottom: 16px;
        }

        .testimonial-text {
            color: white;
            font-size: 16px;
            line-height: 1.6;
            font-weight: 500;
            margin-bottom: 20px;
        }

        .testimonial-footer {
            position: relative;
            z-index: 2;
        }

        .testimonial-name {
            color: white;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .testimonial-title {
            color: rgba(255, 255, 255, 0.9);
            font-size: 12px;
            font-weight: 400;
        }

        .scroll-hint {
            text-align: center;
            color: #999;
            font-size: 12px;
            margin-top: 16px;
            display: none;
        }

        @media (max-width: 1200px) {
            .testimonial-card {
                flex: 0 0 calc(33.333% - 16px);
            }
        }

        @media (max-width: 768px) {
            .testimonials-section {
                padding: 40px 12px;
            }

            .carousel-track {
                gap: 12px;
            }

            .testimonial-card {
                flex: 0 0 calc(50% - 6px);
                min-height: 350px;
                padding: 24px;
                border-radius: 12px;
            }

            .testimonials-header {
                margin-bottom: 32px;
            }

            .testimonials-title {
                font-size: clamp(24px, 5vw, 36px);
            }

            .quote-mark {
                font-size: 48px;
            }

            .testimonial-text {
                font-size: 14px;
            }

            .scroll-hint {
                display: block;
            }
        }

        @media (max-width: 480px) {
            .testimonials-section {
                padding: 30px 0;
            }

            .testimonials-header {
                margin-bottom: 30px;
                padding: 0 12px;
            }

            .carousel-track {
                gap: 12px;
                padding: 0 12px;
            }

            .testimonial-card {
                flex: 0 0 calc(100% - 24px);
                min-height: 320px;
                padding: 20px;
                border-radius: 12px;
            }

            .testimonials-title {
                font-size: 24px;
            }

            .quote-mark {
                font-size: 40px;
                margin-bottom: 12px;
            }

            .testimonial-text {
                font-size: 13px;
                line-height: 1.5;
                margin-bottom: 16px;
            }

            .nav-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .scroll-hint {
                display: block;
                padding: 0 12px;
            }
        }

        /* ======================================
   Havard tesimonial Section
====================================== */




        /* ======================================
   IPMC CTA Section
====================================== */
.ipmc-cta-section {
  background-color: #f8f8f8;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ipmc-cta-container {
  background-color: #1e1e1e;
  color: white;
  border-radius: 16px;
  text-align: center;
  padding: 70px 40px;
  max-width: 1100px;
  width: 90%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.ipmc-cta-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #ffffff;
}

.ipmc-cta-button {
  display: inline-block;
  background-color: #c91c3d; /* Harvard Red */
  color: white;
  padding: 14px 50px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.ipmc-cta-button:hover {
  background-color: #a51430;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .ipmc-cta-container {
    padding: 60px 30px;
  }
  .ipmc-cta-heading {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .ipmc-cta-container {
    padding: 50px 25px;
  }
  .ipmc-cta-heading {
    font-size: 1.5rem;
  }
  .ipmc-cta-button {
    padding: 12px 40px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .ipmc-cta-container {
    padding: 40px 20px;
  }
  .ipmc-cta-heading {
    font-size: 1.3rem;
  }
  .ipmc-cta-button {
    width: 100%;
    padding: 12px 0;
  }
}
        /* ======================================
   IPMC CTA Section
====================================== */





/* ======================================
   IPMC Highlights Section
====================================== */
.ipmc-highlights-section {
  background-color: #f8f8f8;
  padding: 80px 0;
  font-family: "IBM Plex Sans", "Inter", sans-serif;
}

.ipmc-highlights-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 110px;
}

/* ---------- Left Column ---------- */
.ipmc-highlights-card {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.ipmc-highlights-card:hover {
  transform: translateY(-5px);
}

.ipmc-highlights-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.ipmc-highlights-card-content {
  padding: 20px;
}

.ipmc-highlights-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 10px;
}

.ipmc-highlights-category {
  font-size: 0.95rem;
  color: #666;
}

/* ---------- Center Column ---------- */
.ipmc-highlights-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
  padding-top: 10px;
}

.ipmc-highlights-item {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 15px;
}

.ipmc-highlights-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1c1c1c;
  transition: color 0.3s ease;
}

.ipmc-highlights-link:hover {
  color: #c91c3d;
}

/* ---------- Right Column ---------- */
.ipmc-highlight-video-card {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.ipmc-highlight-video-card:hover {
  transform: translateY(-5px);
}

.ipmc-highlight-video-thumb {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.ipmc-highlight-video-content {
  padding: 25px;
}

.ipmc-highlight-tag {
  color: #c91c3d;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.ipmc-highlight-video-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 25px;
  line-height: 1.4;
}

.ipmc-highlight-watch-btn {
  background-color: #c91c3d;
  color: white;
  padding: 10px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.ipmc-highlight-watch-btn:hover {
  background-color: #a51430;
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .ipmc-highlights-container {
    grid-template-columns: 1fr 1fr;
    padding: 0 40px;
  }
  .ipmc-highlights-right {
    grid-column: span 2;
  }
  .ipmc-highlight-video-card {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .ipmc-highlights-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
  .ipmc-highlights-center {
    order: 3;
  }
  .ipmc-highlight-video-card {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .ipmc-highlights-title {
    font-size: 1.1rem;
  }
  .ipmc-highlight-video-title {
    font-size: 1rem;
  }
  .ipmc-highlight-watch-btn {
    padding: 8px 25px;
    font-size: 0.9rem;
  }
}
/* ======================================
   IPMC Highlights Section
====================================== */









/* ======================================
   Footer Section
====================================== */

@media (max-width: 576px){
    .footer-1{
      position: relative;
      top: 870px;
    }
  }
  @media (min-width: 576px){
    .footer-1{
      position: relative;
      top: 200px;
    }
  }
  
  @media (max-width: 576px){
    .copyright-1{
      position: relative;
      top: 870px;
    }
  }
  @media (min-width: 576px){
    .copyright-1{
      position: relative;
      top: 200px;
    }
  }
  
  .footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
  }
  
  .footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
  }
  
  .footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
  }
  
  .copyright {
    color: white;
    background: #000000;;
  }
  
  .copyright a {
    color: var(--light);
  }
  
  .copyright a:hover {
    color: var(--primary);
  }
  
  
  /* Style for the back-to-top button */
  #backToTopBtn {
    display: none;
    position: fixed;
    bottom: 95px;
    width: 55px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #ff0000;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
  }
  
  #backToTopBtn:hover {
    background-color: #ff0000;
  }
  /* ======================================
   Footer Section
====================================== */

