﻿﻿ /* ===== SUCCESS SECTION ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}


.success-section {
    background: #fff;
    text-align: center;
}

    .success-section .container {
        width: 90%;
        max-width: 1200px;
        margin: auto;
    }

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #195c90;
    margin-bottom: 20px;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-description {
    margin: auto;
    color: #6b7280;
    line-height: 1.8;
    font-size: 15px;
}

/* ===== STATS ===== */

.success-stats {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin-top: 80px;
    margin-bottom: 100px;
    flex-wrap: wrap;
}

.success-item h3 {
    font-size: 72px;
    font-weight: 300;
    color: #2f87c8;
    margin-bottom: 10px;
}

.success-item p {
    font-size: 28px;
    color: #444;
}

/* ===== TITLE ===== */

.college-title {
    color: #313b91;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 70px;
}

/* ===== PROGRAMME CARDS ===== */

.programmes {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.programme-card {
    width: 340px;
    background: #fff;
    padding: 70px 35px 40px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .3s;
}

    .programme-card:hover {
        transform: translateY(-8px);
    }

.programme-icon {
    width: 70px;
    height: 70px;
    background: #1f5d99;
    border-radius: 50%;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

    .programme-icon.green {
        background: #12c9bc;
    }

    .programme-icon.lightblue {
        background: #3ab3ec;
    }

.programme-card h3 {
    color: #2e318c;
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 25px;
}

.programme-card p {
    color: #6b7280;
    line-height: 1.8;
    font-size: 15px;
}


.feature-section {
    padding: 100px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.feature-content {
    width: 45%;
}

    .feature-content h2 {
        font-size: 42px;
        color: #2f347f;
        line-height: 1.4;
        margin-bottom: 25px;
    }

    .feature-content span {
        color: #2f347f;
    }

    .feature-content .orange {
        color: #f5a623;
    }

    .feature-content p {
        color: #6b7280;
        line-height: 1.9;
        margin-bottom: 25px;
    }

    .feature-content a {
        color: #6b7280;
        text-decoration: underline;
    }

.feature-image {
    width: 50%;
    position: relative;
}

    .feature-image img {
        width: 100%;
        border-radius: 15px;
        position: relative;
        z-index: 2;
    }

.shape-blue {
    width: 70px;
    height: 70px;
    background: #0b4f8a;
    position: absolute;
    left: -20px;
    top: -20px;
    border-radius: 10px;
}

.shape-orange {
    width: 110px;
    height: 110px;
    background: #f5a623;
    position: absolute;
    right: -15px;
    bottom: -15px;
    border-radius: 12px;
    z-index: 1;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 65px;
    height: 65px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    font-size: 24px;
    color: #1f75cb;
    cursor: pointer;
}

.recognition-section {
    background: linear-gradient(rgba(2,24,72,.92), rgba(2,24,72,.92)), url('assets/images/bg-pattern.jpg') center center/cover;
    padding: 80px 0;
}

.section-title {
    color: #fff;
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 55px;
    position: relative;
}

    .section-title:after {
        content: "";
        width: 90px;
        height: 4px;
        background: #d4af37;
        display: block;
        margin: 15px auto 0;
        border-radius: 30px;
    }

.recognition-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    text-align: center;
    padding: 40px 25px;
    transition: .4s;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,.25);
}

    .recognition-card:hover {
        transform: translateY(-10px);
        background: rgba(255,255,255,.12);
        box-shadow: 0 25px 45px rgba(0,0,0,.35);
    }

    .recognition-card img {
        width: 170px;
        height: 170px;
        object-fit: contain;
        margin-bottom: 25px;
        transition: .4s;
    }

    .recognition-card:hover img {
        transform: scale(1.08);
    }

    .recognition-card h4 {
        color: #ffffff;
        font-size: 34px;
        font-weight: 700;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }

    .recognition-card p {
        color: #d4af37;
        font-size: 22px;
        font-weight: 600;
        letter-spacing: 3px;
        margin: 0;
    }

@media(max-width:991px) {

    .section-title {
        font-size: 32px;
    }

    .recognition-card {
        margin-bottom: 30px;
    }

        .recognition-card img {
            width: 140px;
            height: 140px;
        }

        .recognition-card h4 {
            font-size: 28px;
        }

        .recognition-card p {
            font-size: 18px;
        }
}


/*==========================================
  NEWS SECTION
==========================================*/

.news-section-home {
    padding: 60px 0;
    background: #fff;
}

.news-wrapper {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    gap: 30px;
    align-items: stretch;
}

/* Both cards */
.updates-box,
.latest-news-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #d9e7f7;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    min-height: 640px;
}

    /* Heading */
    .updates-box h2,
    .latest-news-box h2 {
        color: #195c90;
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 25px;
    }

/*==============================
  SAME HEIGHT FOR BOTH ITEMS
==============================*/

.update-item,
.news-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-height: 145px;
    padding: 18px 0;
    border-bottom: 1px solid #ececec;
}

    .update-item:last-child,
    .news-item:last-child {
        border-bottom: none;
    }

/*==============================
  DATE BOX
==============================*/

.date-box {
    width: 90px;
    min-width: 75px;
    height: 115px !important;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0,0,0,.12);
    flex-shrink: 0;
}

    .date-box span {
        display: block;
        background: #195c90;
        color: #fff;
        font-size: 30px;
        font-weight: bold;
        padding: 17px 0;
        line-height: 1;
        text-align: center;
    }

    .date-box small {
        display: block;
        background: #fff;
        color: #195c90;
        font-size: 15px;
        font-weight: bold;
        padding: 8px 0;
        text-align: center;
    }

/*==============================
  NEWS IMAGE
==============================*/

.news-item img {
    width: 140px;
    height: 90px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

/*==============================
  CONTENT
==============================*/

.update-content,
.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .update-content h4,
    .news-content h4 {
        margin: 0 0 8px;
        font-size: 18px;
        color: #195c90;
        line-height: 1.4;
    }

    .update-content p,
    .news-content p {
        margin: 0 0 10px;
        font-size: 15px;
        line-height: 1.6;
        color: #666;
    }

    .update-content a {
        color: #195c90;
        font-weight: 600;
        text-decoration: none;
    }

    .news-content a {
        color: #f5a623;
        font-weight: 600;
        text-decoration: none;
    }

/*==============================
  BUTTON ALIGNMENT
==============================*/

.updates-box .text-center,
.latest-news-box .text-center {
    margin-top: auto;
    padding-top: 25px;
}

.updates-box .btn,
.latest-news-box .btn {
    width: 100%;
}

/*==============================
  RESPONSIVE
==============================*/

@media (max-width:991px) {

    .news-wrapper {
        flex-direction: column;
    }

    .updates-box,
    .latest-news-box {
        min-height: auto;
    }

    .news-item {
        flex-direction: column;
    }

        .news-item img {
            width: 100%;
            height: 220px;
        }

    .update-item {
        min-height: auto;
    }
}
/*==========================
  TESTIMONIAL SECTION
==========================*/










.review-text {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.author {
    font-size: 30px;
    color: #40427a;
    margin: 0;
    line-height: 1.1;
}

.batch {
    font-size: 18px;
    color: #666;
    margin-top: 8px;
}

.rating {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 15px;
}

.stars {
    color: #f8a400;
    font-size: 22px;
    line-height: 1;
}

.rating p {
    margin: 0;
    color: #777;
    font-size: 16px;
}


/*==========================
 Responsive
==========================*/








.programme-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

    .programme-link:hover {
        text-decoration: none;
        color: inherit;
    }

.programme-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

    .programme-card:hover {
        transform: translateY(-5px);
    }

/* Statistics Row */
.success-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    flex-wrap: nowrap;
    margin: 50px auto;
    text-align: center;
}

.success-item h3,
.success-item span {
    background: linear-gradient(180deg, #195c90, #4f8fbd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.success-item {
    flex: 1;
    text-align: center;
    padding: 10px;
    background: transparent;
    box-shadow: none;
    border: none;
}

    .success-item h3 {
        display: inline-block;
        font-size: 48px;
        font-weight: 700;
        color: #0d6efd;
        margin: 0;
    }

    .success-item span {
        font-size: 40px;
        font-weight: 700;
        color: #0d6efd;
    }

    .success-item p {
        margin-top: 10px;
        font-size: 17px;
        font-weight: 600;
        color: #444;
    }



.testimonial-wrapper .item {
    padding: 15px;
}

.testimonial-card {
    width: 100%;
    display: flex;
    min-height: 340px;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.testimonial-image {
    width: 40%;
}

    .testimonial-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.testimonial-content {
    width: 60%;
    padding: 25px;
}

@media(max-width:991px) {

    .testimonial-card {
        flex-direction: column;
    }

    .testimonial-image,
    .testimonial-content {
        width: 100%;
    }
}

.testimonial-item {
    position: relative;
    padding-bottom: 70px;
    max-width: 350px;
    margin: auto;
}

.testimonial-image {
    width: 100%;
    height: 320px; /* Reduced from 480px */
    border-radius: 18px;
    overflow: hidden;
}

    .testimonial-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.testimonial-box {
    width: 90%;
    position: absolute;
    left: 53%;
    bottom: -14px;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}
/*==========================================
        PREMIUM TESTIMONIAL SECTION
==========================================*/

.testimonial-section {
    background: #f7faff;
    overflow: hidden;
}

.testimonial-heading {
    text-align: center;
    margin-bottom: 60px;
}

    .testimonial-heading span {
        color: #195c90;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 4px;
        text-transform: uppercase;
        position: relative;
    }

        .testimonial-heading span:before,
        .testimonial-heading span:after {
            content: "";
            width: 45px;
            height: 2px;
            background: #195c90;
            display: inline-block;
            margin: 0 15px;
            vertical-align: middle;
        }

    .testimonial-heading h2 {
        font-size: 42px;
        color: #1c3766;
        margin-top: 12px;
        font-weight: 700;
    }

/*--------------------------------*/

.testimonial-slider .item {
    padding: 20px;
}

.testimonial-item {
    position: relative;
    max-width: 620px;
    margin: auto;
}

/* Image */

.testimonial-image {
    width: 48%;
    height: 340px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

    .testimonial-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s;
    }

.testimonial-item:hover img {
    transform: scale(1.05);
}

/* Review Card */

.testimonial-box {
    position: absolute;
    right: 0;
    width: 85%;
    min-height: 213px;
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(0,0,0,.15);
    display: flex;
    flex-direction: column;
}

    .testimonial-box:before {
        content: "❝";
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 70px;
        color: #195c90;
        opacity: .08;
    }

/* Review Text */

.review-text {
    color: #666;
    font-size: 15px;
    line-height: 29px;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer */

.testimonial-footer {
    border-top: 1px solid #ececec;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .testimonial-footer h4 {
        font-size: 20px;
        color: #195c90;
        margin-bottom: 5px;
        font-weight: 700;
    }

    .testimonial-footer span {
        color: #888;
        font-size: 14px;
    }

.stars {
    color: #f5b301;
    font-size: 18px;
    letter-spacing: 3px;
}

/* Owl */

.owl-nav {
    margin-top: 40px;
    text-align: center;
}

    .owl-nav button {
        width: 48px !important;
        height: 48px !important;
        border-radius: 50% !important;
        background: #195c90 !important;
        color: #fff !important;
        margin: 0 8px !important;
        transition: .3s;
    }

        .owl-nav button:hover {
            background: #f5b301 !important;
        }

.owl-dots {
    margin-top: 20px;
}

.owl-dot span {
    width: 12px !important;
    height: 12px !important;
}

.owl-dot.active span {
    width: 28px !important;
    border-radius: 20px !important;
    background: #195c90 !important;
}

/*-----------------------------------
          Tablet
-----------------------------------*/

@media(max-width:991px) {

    .testimonial-item {
        max-width: 450px;
    }

    .testimonial-image {
        width: 100%;
        height: 320px;
    }

    .testimonial-box {
        position: relative;
        width: 90%;
        top: -50px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        min-height: auto;
    }
}

/*-----------------------------------
          Mobile
-----------------------------------*/

@media(max-width:576px) {

    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-heading h2 {
        font-size: 30px;
    }

    .testimonial-image {
        height: 250px;
    }

    .testimonial-box {
        width: 95%;
        padding: 20px;
    }

    .review-text {
        font-size: 14px;
        line-height: 26px;
    }

    .testimonial-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/*==========================================================
    RESPONSIVE DESIGN
==========================================================*/

/* Large Desktop */
@media (min-width:1400px) {

    .container {
        max-width: 1320px;
    }

    .section-title {
        font-size: 48px;
    }

    .feature-content h2 {
        font-size: 46px;
    }
}


/* Laptop */
@media (max-width:1200px) {

    .success-stats {
        gap: 40px;
    }

    .programme-card {
        width: 300px;
    }

    .feature-section {
        gap: 40px;
        padding: 80px 5%;
    }

    .feature-content h2 {
        font-size: 36px;
    }

    .updates-box h2,
    .latest-news-box h2 {
        font-size: 34px;
    }

    .testimonial-box {
        width: 72%;
    }
}


/* Tablet */
@media (max-width:991px) {

    .section-title {
        font-size: 34px;
    }

    .college-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .section-description {
        font-size: 15px;
        padding: 0 10px;
    }

    /* Statistics */

    .success-stats {
        gap: 30px;
        flex-wrap: wrap;
        margin: 40px auto;
    }

    .success-item {
        width: 45%;
        flex: unset;
    }

        .success-item h3 {
            font-size: 40px;
        }

        .success-item span {
            font-size: 34px;
        }

        .success-item p {
            font-size: 16px;
        }

    /* Programme */

    .programmes {
        gap: 25px;
    }

    .programme-card {
        width: 320px;
        padding: 60px 25px 35px;
    }

        .programme-card h3 {
            font-size: 24px;
        }

    /* Feature */

    .feature-section {
        flex-direction: column;
        text-align: center;
        padding: 70px 5%;
    }

    .feature-content,
    .feature-image {
        width: 100%;
    }

        .feature-content h2 {
            font-size: 32px;
        }

    .shape-blue,
    .shape-orange {
        display: none;
    }

    /* News */

    .news-section-home {
        margin: 20px;
    }

    .news-wrapper {
        flex-direction: column;
    }

    .updates-box,
    .latest-news-box {
        padding: 25px;
    }

    .news-item {
        flex-direction: column;
    }

        .news-item img {
            width: 100%;
            height: auto;
        }

    /* Recognition */

    .recognition-card {
        margin-bottom: 25px;
    }

    /* Testimonial */

    .testimonial-item {
        max-width: 450px;
    }

    .testimonial-image {
        width: 100%;
        height: 300px;
    }

    .testimonial-box {
        position: relative;
        width: 90%;
        left: 50%;
        right: auto;
        top: -45px;
        transform: translateX(-50%);
    }
}


/* Mobile */
@media (max-width:768px) {

    .section-title {
        font-size: 28px;
    }

    .college-title {
        font-size: 24px;
    }

    .success-stats {
        flex-direction: column;
        gap: 25px;
    }

    .success-item {
        width: 100%;
    }

        .success-item h3 {
            font-size: 36px;
        }

        .success-item span {
            font-size: 30px;
        }

        .success-item p {
            font-size: 15px;
        }

    .programme-card {
        width: 100%;
    }

        .programme-card h3 {
            font-size: 22px;
        }

    .feature-content h2 {
        font-size: 28px;
    }

    .feature-content p {
        font-size: 15px;
    }

    .updates-box h2,
    .latest-news-box h2 {
        font-size: 28px;
    }

    .update-item {
        flex-direction: column;
    }

    .date-box {
        width: 100%;
        margin-bottom: 10px;
    }

    .update-content {
        padding-left: 0;
    }

    .news-content h4 {
        font-size: 20px;
    }

    .recognition-card img {
        width: 120px;
        height: 120px;
    }

    .recognition-card h4 {
        font-size: 24px;
    }

    .recognition-card p {
        font-size: 16px;
    }

    .testimonial-heading h2 {
        font-size: 28px;
    }

    .testimonial-image {
        height: 260px;
    }

    .testimonial-box {
        width: 95%;
        padding: 20px;
    }
}


/* Small Mobile */
@media (max-width:576px) {

    .success-section .container {
        width: 95%;
    }

    .section-title {
        font-size: 24px;
    }

    .college-title {
        font-size: 22px;
    }

    .section-description {
        font-size: 14px;
        line-height: 1.7;
    }

    .success-item h3 {
        font-size: 32px;
    }

    .success-item span {
        font-size: 28px;
    }

    .success-item p {
        font-size: 14px;
    }

    .programme-card {
        padding: 55px 20px 25px;
    }

    .programme-icon {
        width: 60px;
        height: 60px;
        top: -30px;
        font-size: 22px;
    }

    .programme-card h3 {
        font-size: 20px;
    }

    .programme-card p {
        font-size: 14px;
    }

    .feature-section {
        padding: 50px 15px;
    }

    .feature-content h2 {
        font-size: 24px;
    }

    .feature-content p {
        font-size: 14px;
    }

    .updates-box,
    .latest-news-box {
        padding: 20px;
    }

        .updates-box h2,
        .latest-news-box h2 {
            font-size: 24px;
        }

    .date-box span {
        font-size: 28px;
    }

    .date-box small {
        font-size: 16px;
    }

    .update-content h4 {
        font-size: 18px;
    }

    .news-content h4 {
        font-size: 18px;
    }

    .news-content p {
        font-size: 14px;
    }

    .recognition-card {
        padding: 30px 20px;
    }

        .recognition-card img {
            width: 100px;
            height: 100px;
        }

        .recognition-card h4 {
            font-size: 22px;
        }

        .recognition-card p {
            font-size: 15px;
        }

    .testimonial-section {
        padding: 50px 0;
    }

    .testimonial-heading h2 {
        font-size: 24px;
    }

    .testimonial-image {
        height: 220px;
    }

    .testimonial-box {
        width: 100%;
        padding: 18px;
    }

    .review-text {
        font-size: 14px;
        line-height: 24px;
    }

    .testimonial-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .owl-nav button {
        width: 40px !important;
        height: 40px !important;
    }
}

.recognition-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

    .recognition-link:hover {
        text-decoration: none;
        color: inherit;
    }
