/* ===============================
   TESTIMONIAL SECTION CSS
================================= */

/* VARIABLES */
:root {
    --primary-color: #E54D0E;
    --dark-color: #1f2937;
    --text-color: #6b7280;
    --section-bg-color: #f8fafc;
    
}
.premium-card {
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.premium-img {
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.premium-card:hover .premium-img {
    transform: scale(1.06);
}

/* Placement Badge */
.placement-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255,255,255,0.95);
    color: #E44A0C;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Rating */
.rating-stars {
    color: #F2711F;
    font-size: 14px;
    letter-spacing: 2px;
}

/* Career Box */
.career-highlight {
    background: #fff7f2;
    border: 1px solid rgba(228,74,12,0.15);
}

/* Brand Button */
.brand-btn {
    background: linear-gradient(135deg, #E44A0C, #F2711F);
    color: #fff;
    font-weight: 600;
    padding: 10px;
    transition: all 0.3s ease;
    border: none;
}

.brand-btn:hover {
    background: linear-gradient(135deg, #c73f09, #d95f16);
    color: #fff;
    transform: translateY(-2px);
}

/* SECTION */
.testimonial-section {
    /* background-color: var(--section-bg-color); */
    padding: 0px 0;
}

/* TITLE */
.testimonial-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.testimonial-title p {
    font-size: 15px;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* SLIDER ITEM SPACING */
.tiny-slider-inner > div {
    padding: 10px 15px;
    box-sizing: border-box;
}

/* CARD */
.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e5e7eb;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

/* AVATAR */
.avatar-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

/* NAME */
.testimonial-card h6 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 2px;
}

.testimonial-card small {
    font-size: 13px;
    color: var(--primary-color);
}

/* STARS */
.testimonial-stars i {
    font-size: 14px;
    color: #fbbf24;
}

/* TEXT */
.testimonial-text {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text-color);
    margin-top: 18px;
}

/* QUOTE ICON */
.testimonial-card::after {
    content: "\f10e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: 20px;
    right: 25px;
    font-size: 22px;
    color: #e5e7eb;
    pointer-events: none;
}

/* ARROWS */
.tns-controls {
    text-align: center;
    margin-top: 25px;
}

.tns-controls button {
    background: var(--primary-color);
    border-radius: 50%;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    margin: 0 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tns-controls button:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}


 :root {
    --primary: linear-gradient(135deg, #E44A0C, #F2711F);
    --light: #FEF2E7;
}

/* Banner */
.bg-blue {
    background: var(--primary);
}

/* Filters */
.filter-btn {
    border: 1px solid var(--primary);
    padding: 7px 18px;
    border-radius: 25px;
    background: white;
    color: var(--primary);
    margin: 4px;
    font-size: 14px;
    cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: white;
}

/* Placement Card */
.placement-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #eee;
    text-align: center;
    transition: .3s;
    position: relative;
}

.placement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.placement-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
}

/* Student Image */
.student-img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--light);
    margin: 0 auto 12px auto;
}

/* Student Name */
.student-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

/* Company */
.company {
    font-size: 14px;
    color: #444;
    margin-bottom: 10px;
}

/* Info */
.student-info {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 13px;
    color: #777;
    margin-bottom: 12px;
}

.student-info span {
    background: #f7f7f7;
    padding: 4px 10px;
    border-radius: 6px;
}

/* Percentage */
.percentage {
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 12px;
}

/* Social Icons */
.social-icons {
    margin-bottom: 12px;
}

.social-icons a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
    color: #444;
    margin: 0 4px;
}

.social-icons a:hover {
    background: var(--primary);
    color: white;
}

/* Testimonial Button */
.btn-testimonial {
    background: var(--primary);
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 13px;
}

.btn-testimonial:hover {
    background: #e17313;
}

/* ===== CLEAN MODAL ===== */

.custom-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
}

.custom-modal-box {
    background: #fff;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    position: relative;
    overflow: hidden;
    animation: popupFade 0.3s ease;
}

.custom-modal-box img {
    width: 100%;
    height: auto;
    display: block;
}

/* Close Button */
.close-modal {
    position: absolute;
    top: 10px;
    right: 12px;
    background: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Animation */
@keyframes popupFade {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


/* Collapsed buttons default (white bg, dark text) */
.curriculum-btn {
    background-color: #fff;
    color: #333;
    font-weight: 500;
}

 /* Expanded/open buttons (orange bg, white text) */
.accordion-button:not(.collapsed) {
    background-color: #ff6600 !important;
    color: #fff !important;
}                         

 /* Optional: change the arrow color for expanded state */
.accordion-button::after {
    filter: invert(0.9);
/* makes arrow white on orange */
}
/* Hover effect for partner cards */                          
.hover-shadow:hover {
    transform: translateY(-5px);
    transition: 0.3s ease-in-out;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.tiny-slider .item {
     padding: 0 10px;
}


footer .nav-link {
    color: #ffffff !important;
}
footer hr {
    border-color: rgba(255,255,255,0.15);
}

.blog-card {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.blog-img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* Preloader Background */
#preloader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Logo Animation */
.logo-loader img {
    width: 120px;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Smooth Pulse Effect */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

/* Fade out */
.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}


.whatsapp_float {
        position: fixed;
        bottom: 60px;
        right: 60px;
        z-index: 9999;
        /* Ensure it's above other elements */
    }

    .whatsapp_float a img {
        width: 50px;
        height: 50px;
        object-fit: contain;
        border-radius: 50px;
    }