@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&display=swap');

:root {
    --navy: #00008A;
    --orange: #ee5421;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius-xl: 35px;
}


.hero-full {
    position: relative;
    width: 100%;
    height: 800px; 
    display: flex;
    align-items: center;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    
    background-image: var(--bg-desktop);
    background-size: cover;
    background-position: center;
}

.hero-full::before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 138, 0.9) 0%, rgba(0, 0, 138, 0.5) 25%, rgba(0, 0, 138, 0) 40%);
    z-index: 1;
}

.hero-full .container { 
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1600px; 
    margin: auto; 
    padding: 0 80px; 
}

.hero-content-full {
    width: 33.33%; 
    min-width: 450px;
    text-align: left;
    animation: fadeInUp 1s var(--transition-smooth);
}

.hero-badge-inline {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}

.hero-badge-inline i { color: #ffce00; margin-right: 12px; }

.hero-content-full h1 {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.text-orange { color: var(--orange); }

.hero-content-full p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-tis-v3 {
    display: inline-block;
    text-decoration: none;
    background: var(--orange);
    color: #fff;
    padding: 20px 50px;
    border-radius: var(--radius-xl);
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(238, 84, 33, 0.4);
}


@media (max-width: 1024px) {
    .hero-full {
        height: auto;
        min-height: 100vh; 
        aspect-ratio: 1080 / 1920; 
        display: block; 
        
        background-image: var(--bg-mobile) !important;
        background-position: center top; 
    }

    .hero-full::before {
        background: linear-gradient(to bottom, 
            rgba(0, 0, 138, 1) 0%, 
            rgba(0, 0, 138, 0.8) 10%, 
            rgba(0, 0, 138, 0) 30%);
        z-index: 1;
    }

    .hero-full .container {
        position: absolute;
        top: 40px;
        left: 0;
        width: 100%;
        padding: 0 20px;
        z-index: 5;
    }

    .hero-content-full {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-width: unset;
        margin-top: 0;
    }

    .hero-content-full h1 { 
        font-size: 26px; 
        margin-bottom: 10px; 
        text-shadow: 0 2px 10px rgba(0,0,0,0.5); 
    }
    
    .hero-content-full p { 
        font-size: 14px; 
        margin-bottom: 20px;
        line-height: 1.4;
        max-width: 80%;
        text-shadow: 0 1px 5px rgba(0,0,0,0.5);
    }
    
    .btn-tis-v3 { 
        font-size: 14px; 
        padding: 12px 35px; 
        border-radius: 50px; 
    }
    
    .hero-badge-inline { 
        font-size: 10px; 
        padding: 6px 15px; 
        border-radius: 50px; 
        margin-bottom: 15px; 
        background: rgba(0, 0, 138, 0.5);
    }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}


.tis-form-section { padding: 100px 0; background: var(--soft-bg); font-family: 'Plus Jakarta Sans', sans-serif; position: relative; }

.tis-form-section::before { 
    content: ""; position: absolute; top: 10%; left: 5%; font-size: 100px; color: rgba(238, 84, 33, 0.05); transform: rotate(-15deg);
}

.tis-form-section .container { max-width: 1200px; margin: auto; padding: 0 20px; position: relative; z-index: 2; }

.tis-form-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }

.tis-form-content .tag { 
    background: var(--orange); color: #fff; padding: 6px 15px; 
    font-size: 12px; font-weight: 700; display: inline-block; margin-bottom: 25px; border-radius: 4px;
}
.tis-form-content h2 { font-size: 42px; font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 25px; }
.tis-form-content h2 span { color: var(--orange); }
.tis-form-content p { font-size: 17px; color: #475569; line-height: 1.8; margin-bottom: 40px; }

.tis-points { display: grid; grid-template-columns: 1fr; gap: 15px; }
.point { display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 600; color: var(--navy); }
.point .icon { 
    width: 28px; height: 28px; background: rgba(0, 0, 138, 0.1); color: var(--navy); 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; 
}

.tis-form-card { background: #fff; padding: 50px; box-shadow: 0 40px 80px rgba(0,0,138,0.06); border-radius: 20px; border: 1px solid #edf2f7; }
.tis-form-card form { display: grid; gap: 20px; }

.field-group { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 12px; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; }

.field input, .field select, .field textarea { 
    padding: 14px 18px; border: 1.5px solid #eef2f6; border-radius: 12px; 
    font-family: inherit; font-size: 15px; transition: 0.3s; background: #fcfdfe;
}
.field input:focus, .field select:focus, .field textarea:focus { 
    outline: none; border-color: var(--navy); background: #fff; box-shadow: 0 10px 20px rgba(0,0,138,0.04);
}

.tis-submit { 
    background: var(--navy); color: #fff; padding: 18px; border: none; 
    font-weight: 800; font-size: 16px; cursor: pointer; transition: 0.4s; 
    border-radius: 12px; text-transform: uppercase; letter-spacing: 1px; margin-top: 10px;
}
.tis-submit:hover { background: var(--orange); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(238, 84, 33, 0.25); }

.consent-box { font-size: 13px; color: #64748b; line-height: 1.5; margin-top: 10px; display: flex; gap: 10px; }
.consent-box input { width: 18px; height: 18px; accent-color: var(--navy); margin-top: 2px; flex-shrink: 0; }

@media (max-width: 991px) {
    .tis-form-grid { grid-template-columns: 1fr; gap: 50px; }
    .tis-form-content { text-align: center; }
    .tis-points { justify-content: center; }
    .tis-form-card { padding: 30px; }
}

  .nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1.5px solid var(--navy);
    background: transparent;
    color: var(--navy);
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}


.primary-bento-section {
    font-family: 'Montserrat', sans-serif;
    padding: 80px 0;
    background: #fcfdfe;
}

.bento-header h2.text-navy {
    color: var(--navy);
    font-weight: 800;
    font-size: 32px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 25px;
    margin-bottom: 40px;
}

.bento-header h2.text-navy::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: var(--orange);
    margin: 20px auto 0;
    border-radius: 2px;
}

.tis-bento-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 220px);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-item {
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid #edf2f7;
    transition: var(--transition-smooth);
    overflow: hidden;
    position: relative;
}

.bento-inner {
    padding: 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.bento-item p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
    font-weight: 400;
}

.item-1 { grid-column: 1 / 3; grid-row: 1 / 3; background: #f0f4ff; } 
.item-2 { grid-column: 3 / 4; grid-row: 1 / 3; background: #fff; }
.item-3 { grid-column: 4 / 5; grid-row: 1 / 2; background: #fefaf0; }
.item-4 { grid-column: 4 / 5; grid-row: 2 / 3; background: var(--navy); color: #fff; }
.item-4 h3 { color: #fff; }
.item-4 p { color: rgba(255,255,255,0.8); }

.item-5 { grid-column: 1 / 3; grid-row: 3 / 4; background: #fff; }
.item-6 { grid-column: 3 / 4; grid-row: 3 / 4; background: #f5f5ff; }
.item-7 { grid-column: 4 / 5; grid-row: 3 / 4; background: var(--orange); color: #fff; }
.item-7 h3 { color: #fff; }

.bento-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,138,0.1);
    border-color: var(--navy);
}

@media (max-width: 1024px) {
    .tis-bento-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        padding: 0 20px;
    }
    .item-1, .item-2, .item-3, .item-4, .item-5, .item-6, .item-7 {
        grid-column: span 1;
        grid-row: auto;
        min-height: 200px;
    }
    .bento-header h2.text-navy {
        font-size: 24px;
    }
}

.tis-curriculum-pillars { background: #fff; font-family: 'Montserrat', sans-serif; }

.pillar-wrapper { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    margin-bottom: 50px;
}

.pillar-card {
    background: #f8faff;
    padding: 40px 30px;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid #edf2f7;
    transition: var(--transition-smooth);
}

.pillar-card.featured {
    background: var(--navy);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,138,0.15);
}

.pillar-card.featured h3 { color: #fff; }
.pillar-card h3 { color: var(--navy); font-weight: 800; margin: 20px 0; font-size: 20px; }
.pillar-icon { font-size: 40px; color: var(--orange); }
.pillar-card.featured .pillar-icon { color: #fff; }

.intl-info ul { text-align: left; padding-left: 15px; margin-top: 15px; font-size: 14px; }
.intl-info ul li { margin-bottom: 8px; }

.outcome-banner {
    background: #fff;
    border: 2px dashed var(--navy);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.outcome-label {
    background: var(--navy);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 18px;
    white-space: nowrap;
}

.outcome-flex { display: flex; gap: 30px; flex-grow: 1; justify-content: space-around; }
.outcome-item { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--navy); }
.outcome-item i { color: var(--orange); font-size: 24px; }

@media (max-width: 1024px) {
    .pillar-wrapper { grid-template-columns: 1fr; }
    .pillar-card.featured { transform: scale(1); }
    .outcome-banner { flex-direction: column; text-align: center; }
    .outcome-flex { flex-direction: column; gap: 15px; }
}

.tis-daily-routine {
    background: #ffffff;
    padding: 80px 0;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: #e1e8f0;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 30px;
    width: 100%;
}

.timeline-item.right {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 2px solid #ee5421; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: #00008A;
}

.timeline-content {
    background: #fff;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    width: 85%;
    border: 1px solid #f0f0f0;
}

.timeline-item.left .timeline-content { margin-right: 30px; text-align: right; }
.timeline-item.right .timeline-content { margin-left: 30px; text-align: left; }

.time-tag {
    display: inline-block;
    background: #00008A;
    color: #fff;
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-content h4 {
    font-size: 16px;
    color: #333;
    margin: 0;
}

@media (max-width: 768px) {
    .timeline-line { left: 20px; }
    .timeline-dot { left: 20px; }
    .timeline-item { padding-left: 50px !important; padding-right: 0 !important; justify-content: flex-start !important; }
    .timeline-content { width: 100% !important; text-align: left !important; margin: 0 !important; }
}

.tis-student-care {
    background-color: #f8faff;
    padding: 100px 0;
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.care-item {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid #edf2f7;
}

.care-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,138,0.08);
    border-color: var(--orange);
}

.care-item.full-width {
    grid-column: span 2;
}

.care-icon {
    min-width: 65px;
    height: 65px;
    background: var(--navy);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 20px rgba(0,0,138,0.2);
}

.care-item:nth-child(even) .care-icon {
    background: var(--orange);
    box-shadow: 0 10px 20px rgba(238,84,33,0.2);
}

.care-text h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.care-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

@media (max-width: 991px) {
    .care-grid { grid-template-columns: 1fr; }
    .care-item.full-width { grid-column: span 1; }
    .care-item { padding: 30px; }
}

@media (max-width: 576px) {
    .care-item { flex-direction: column; text-align: center; align-items: center; }
    .care-text h3 { margin-top: 15px; }
}

.tis-facilities {
    background: #fff;
    padding: 100px 0;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.facility-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.facility-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,138,0.1);
    border-color: var(--navy);
}

.facility-image {
    width: 80px;
    height: 80px;
    background: #f0f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 35px;
    color: var(--navy);
    transition: 0.3s;
}

.facility-card:hover .facility-image {
    background: var(--orange);
    color: #fff;
    transform: rotateY(360deg);
}

.facility-info h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 15px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1100px) {
    .facility-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .facility-grid { grid-template-columns: 1fr; }
    .facility-card { padding: 30px 20px; }
}

.primary-bento-section .bento-item {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.primary-bento-section .bento-item[style*="background-image"] .bento-inner {
    background: rgba(255, 255, 255, 0.75); 
    height: 100%;
    transition: all 0.3s ease;
}

.primary-bento-section .bento-item[style*="background-image"]:hover .bento-inner {
    background: rgba(255, 255, 255, 0.9);
}

.primary-bento-section .item-4 .bento-inner,
.primary-bento-section .item-7 .bento-inner {
    background: transparent !important;
}
.facility-carousel-wrapper {
    overflow: hidden;
    padding: 40px 0;
}

.tis-facility-slider .slider-item {
    padding: 20px;
    transition: all 0.5s ease;
    outline: none;
}

.tis-facility-slider .slider-item img {
    width: 100%;
    height: 400px; 
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0.5; 
    transform: scale(0.85); 
    transition: all 0.5s ease;
}

.tis-facility-slider .slick-center img {
    opacity: 1; 
    transform: scale(1.1);
    box-shadow: 0 20px 40px rgba(0,0,138,0.2);
    border: 5px solid #fff;
}

.tis-facility-slider .slick-prev, .tis-facility-slider .slick-next {
    z-index: 10;
    width: 50px;
    height: 50px;
}
.facility-slider-wrapper { padding: 40px 0; overflow: hidden; }
.tis-facility-carousel .fac-slide-item { padding: 15px; transition: all 0.5s ease; outline: none; }
.tis-facility-carousel .fac-slide-item img { 
    width: 100%; border-radius: 20px; 
    opacity: 0.4; transform: scale(0.8); 
    transition: all 0.5s ease; height: 350px; object-fit: cover; 
}
.tis-facility-carousel .slick-center img { 
    opacity: 1 !important; transform: scale(1.1) !important; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.2); 
}

.simple-facility-slider::-webkit-scrollbar {
    display: none;
}
.simple-item img:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}
.facility-card-top { background: #fff; padding: 25px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; }
.facility-card-top i { font-size: 30px; color: #00008A; margin-bottom: 15px; }
.facility-card-top h3 { font-size: 18px; color: #00008A; margin-bottom: 10px; font-weight: 800; }

.modern-slider-container { padding: 50px 0; background: linear-gradient(to bottom, #fff, #f0f4ff); border-radius: 30px; }

.tis-modern-slider .modern-item {
    padding: 30px 15px;
    outline: none;
    transition: all 0.5s ease;
}

.tis-modern-slider .card-inner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    transform: scale(0.85); 
    opacity: 0.5;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tis-modern-slider .slick-center .card-inner {
    transform: scale(1.1);
    opacity: 1; 
    box-shadow: 0 20px 50px rgba(0,0,138,0.3);
    z-index: 10;
}

.tis-modern-slider .card-inner img {
    width: 100%; height: 100%; object-fit: cover;
}

.card-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%;
    padding: 30px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    text-align: left;
}

.card-tag {
    font-size: 10px; font-weight: 800; padding: 4px 10px;
    border-radius: 5px; margin-bottom: 10px; display: inline-block;
}

.card-title { font-size: 18px; font-weight: 700; margin: 10px 0; }
.card-loc { font-size: 12px; opacity: 0.8; }

.slick-dots { bottom: -50px; }
.slick-dots li button:before { font-size: 12px; color: #00008A; }

.modern-slider-container {
    padding: 60px 0;
    overflow: hidden;
}

.tis-modern-slider .modern-item {
    padding: 40px 0; 
    outline: none;
}

.tis-modern-slider .card-inner {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    transform: scale(0.8);
    opacity: 0.4;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tis-modern-slider .slick-center .card-inner {
    transform: scale(1.1);
    opacity: 1; 
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0,0,138,0.2);
}

.tis-modern-slider .card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: #fff;
    text-align: left;
}

.card-tag {
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 10px;
}

.card-title { font-size: 18px; font-weight: 700; margin-bottom: 5px; color: #fff; }
.card-loc { font-size: 12px; opacity: 0.8; }

.slick-dots li button:before { color: #00008A; font-size: 12px; }
.slide-card-inner:hover img {
    transform: scale(1.1);
}
.tis-main-slideshow .slick-dots {
    bottom: -50px;
}
.tis-main-slideshow .slick-dots li button:before {
    font-size: 12px;
    color: #00008A;
}
.tis-facilities-section { padding: 80px 0; background: #fff; overflow: hidden; }

.tag-sub { color:#ee5421; font-weight:700; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 10px; }
.text-navy { font-weight:900; font-size: 36px; color: #00008A; }
.header-line { width: 60px; height: 3px; background: #ee5421; margin: 20px auto; }

.facility-top-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
    gap: 30px; 
    margin-bottom: 60px; 
}
.f-icon { font-size: 35px; color: #00008A; margin-bottom: 15px; transition: 0.3s; }
.f-top-item:hover .f-icon { transform: translateY(-5px); color: #ee5421; }
.f-top-item h3 { font-size: 19px; color: #00008A; font-weight: 800; margin-bottom: 12px; }
.f-top-item p { font-size: 14px; line-height: 1.6; color: #555; }

.modern-slider-wrapper { padding: 40px 0; }

.slide-card-item { padding: 40px 15px; outline: none; }

.slide-card-inner {
    position: relative; 
    border-radius: 25px; 
    overflow: hidden; 
    height: 400px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: scale(0.85);
    opacity: 0.4; 
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tis-main-slideshow .slick-center .slide-card-inner {
    transform: scale(1.15);
    opacity: 1;
    box-shadow: 0 20px 50px rgba(0,0,138,0.25);
    z-index: 10;
}

.slide-card-inner img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }

.slide-info-overlay { 
    position: absolute; bottom: 0; left: 0; width: 100%; 
    padding: 35px 25px 25px; 
    background: linear-gradient(transparent, rgba(0,0,0,0.9)); 
}

.fac-badge { color:#fff; font-size:10px; font-weight:800; padding:4px 12px; border-radius:5px; text-transform:uppercase; }
.slide-info-overlay h4 { color: #fff; margin: 12px 0 5px; font-size: 20px; font-weight: 700; }
.slide-info-overlay p { color: rgba(255,255,255,0.8); font-size: 13px; margin: 0; }

@media (max-width: 768px) {
    .slide-card-inner { height: 300px; }
    .text-navy { font-size: 28px; }
}