/* ============================================
   MAIN STYLESHEET - COLLEGE WEBSITE
   Combined & Enhanced CSS (Top Bar, Slider, Footer, Documents, Placements)
   ============================================ */

/* ---------- GLOBAL RESET & FONTS ---------- */
* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e81b0;
    --primary-orange: #e28743;
    --primary-gold: #eab676;
    --secondary-blue-light: #76b5c5;
    --secondary-blue-deep: #063970;
    --secondary-navy: #154c79;
    --accent-terracotta: #873e23;
    --bg-light-cream: #eeeee4;
    --bg-soft-blue: #abdbe3;
    --text-dark: #21130d;
    --text-muted: #3a2a22;
    --white: #ffffff;
    --black: #000000;
}

body {
    background-color: var(--bg-light-cream);
    color: var(--text-dark);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ========== TOP BAR (REFINED SINGLE LINE) ========== */
.top-bar {
    background: linear-gradient(135deg, #0e2a3b, var(--secondary-navy));
    color: #f0f2f5;
    padding: 8px 0;
    border-bottom: 2px solid var(--primary-gold);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 0.85rem;
}

.top-bar .row {
    align-items: center;
}

.top-contact-info {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.2rem;
    align-items: center;
    justify-content: flex-start;
}

.top-contact-info a {
    color: #f0f2f5;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.top-contact-info a i {
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.top-contact-info a:hover {
    color: var(--primary-gold);
    transform: translateY(-1px);
}

.whatsapp-link i {
    color: #25D366;
}

.phone-icon i {
    color: var(--primary-gold);
}

.college-title-single {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.3px;
    color: white;
    background: rgba(0,0,0,0.25);
    padding: 6px 18px;
    border-radius: 40px;
    display: inline-block;
    backdrop-filter: blur(3px);
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    border-left: 2px solid var(--primary-gold);
    border-right: 2px solid var(--primary-gold);
}

.college-title-single i {
    margin-right: 6px;
    color: var(--primary-gold);
}

.top-social-links {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
}

.top-social-links a {
    color: #ddd;
    transition: 0.3s;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.top-social-links a:hover {
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.erp-badge {
    background-color: var(--primary-orange);
    padding: 5px 14px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.75rem;
    color: #21130d !important;
    margin-left: 5px;
}

.erp-badge i {
    color: #21130d;
}

.erp-badge:hover {
    background-color: #c57235;
    color: white !important;
}

/* Top Bar Responsive */
@media (max-width: 768px) {
    .top-contact-info { gap: 0.7rem; }
    .top-contact-info a { font-size: 0.7rem; }
    .college-title-single { font-size: 0.7rem; padding: 4px 10px; white-space: nowrap; }
    .top-social-links { gap: 12px; }
    .top-social-links a { font-size: 0.8rem; }
    .erp-badge { padding: 3px 8px; font-size: 0.65rem; }
}

@media (max-width: 576px) {
    .top-contact-info a span { display: none; }
    .top-contact-info a i { margin-right: 0; }
    .college-title-single { font-size: 0.65rem; padding: 4px 6px; }
    .top-social-links a:not(.erp-badge) span { display: none; }
}

/* ========== NAVIGATION BAR (STICKY) ========== */
.navbar {
    background: linear-gradient(135deg, var(--secondary-blue-deep), var(--secondary-navy));
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    padding: 0.3rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-gold) !important;
}

.navbar-brand img {
    height: 65px;
    width: auto;
    border-radius: 50%;
    background: white;
    padding: 3px;
    transition: transform 0.3s;
}

.navbar-nav {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.2rem;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-gold) !important;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.dropdown-menu {
    background-color: var(--secondary-navy);
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    min-width: 220px;
    border-radius: 10px;
}

.dropdown-item {
    color: white;
    font-size: 0.8rem;
    padding: 6px 18px;
}

.dropdown-item:hover {
    background-color: var(--primary-orange);
    color: var(--text-dark);
}

/* ========== HERO SLIDER MODERN (WITH <img> TAGS) ========== */
.hero-slider-modern {
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0,0,0,0.2);
    background-color: #0a1a2a;
}

.slider-container-modern {
    position: relative;
    width: 100%;
    height: 540px;
    background: #0a1a2a;
}

@media (max-width: 992px) {
    .slider-container-modern { height: 440px; }
}
@media (max-width: 768px) {
    .slider-container-modern { height: 320px; }
}

.slider-slide-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.slider-slide-modern.active {
    opacity: 1;
    z-index: 2;
}

.slider-slide-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    image-rendering: crisp-edges;
}

.slider-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(6,57,112,0.5), rgba(21,76,121,0.65));
    pointer-events: none;
}

.slider-caption-modern {
    position: absolute;
    bottom: 5%;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    z-index: 1;
    padding: 20px 30px;
    animation: fadeInUp 0.8s ease-out;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.15), transparent);
    border-radius: 20px;
    max-width: 55%;
    margin: 0 auto;
    backdrop-filter: blur(3px);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.slider-caption-modern h2 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.slider-caption-modern h4 {
    font-size: 1rem;
    font-weight: 700;
}

.slider-caption-modern p {
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.btn-slider-modern {
    background-color: var(--primary-orange);
    color: white;
    font-weight: bold;
    padding: 10px 32px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,215,140,0.6);
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn-slider-modern:hover {
    background-color: #c57235;
    transform: scale(1.05);
    color: white;
    border-color: var(--primary-gold);
}

.slider-dots-modern {
    position: absolute;
    bottom: 22px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 15;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot-modern {
    width: 12px;
    height: 12px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot-modern.active {
    background-color: var(--primary-gold);
    width: 32px;
    border-radius: 12px;
    transform: scale(1.1);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);
    color: white;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    font-size: 1.5rem;
    transition: all 0.25s ease;
    border: 1px solid rgba(255,215,140,0.6);
}

.slider-arrow:hover {
    background: var(--primary-orange);
    transform: translateY(-50%) scale(1.08);
    color: #21130d;
}

.arrow-left { left: 25px; }
.arrow-right { right: 25px; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== ABOUT SECTION ========== */
.about-section-wrapper {
    margin: 50px 0;
}

.about-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-image-container img {
    width: 100%;
    max-width: 550px;
    height: auto;
    aspect-ratio: 550 / 450;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.about-text-container {
    padding: 35px 30px;
    background: white;
}

.about-text-container h2 {
    color: var(--primary-blue);
    border-left: 5px solid var(--primary-orange);
    padding-left: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}

.feature-box {
    flex: 1;
    min-width: 180px;
    background: #fdf8ed;
    padding: 12px 15px;
    border-radius: 12px;
    border-left: 3px solid var(--primary-orange);
}

/* ========== NEWS & ANNOUNCEMENTS ========== */
.news-announcement-row { margin: 50px 0; }

.info-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
    height: 100%;
    border: 1px solid rgba(226, 135, 67, 0.25);
}

.card-header-custom {
    background: linear-gradient(135deg, var(--secondary-blue-deep), var(--primary-blue));
    color: white;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 1.3rem;
    border-bottom: 3px solid var(--primary-gold);
}

.news-auto-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.news-slide-container {
    position: relative;
    width: 100%;
    height: 320px;
}

.news-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.news-slide.active { opacity: 1; z-index: 1; }
.news-slide img { width: 100%; height: 100%; object-fit: cover; }

.news-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #000000cc, transparent);
    color: white;
    padding: 12px;
    font-weight: 600;
}

.marquee-up-wrapper {
    padding: 15px;
    background: var(--bg-soft-blue);
    height: 380px;
    overflow: hidden;
    position: relative;
}

.marquee-up {
    display: flex;
    flex-direction: column;
    animation: scrollUp 22s linear infinite;
}

.marquee-up:hover { animation-play-state: paused; }

.announcement-item {
    padding: 12px 12px;
    border-bottom: 1px dashed #8ba9b5;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* ========== PLACEMENTS SECTION ========== */
.placements-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    text-align: center;
    overflow-x: hidden;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #3498db;
    border-radius: 2px;
}

.section-subtitle {
    color: #7f8c8d;
    margin-bottom: 50px;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.placements-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.placement-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    width: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.placement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.placement-card:hover .card-img {
    transform: scale(1.05);
}

.card-info {
    padding: 20px;
}

.card-info h3 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.card-info p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Carousel for placements (mobile only) */
@media (max-width: 768px) {
    .placements-grid {
        display: none;
    }
    .carousel-container {
        display: block;
        position: relative;
        max-width: 100%;
        overflow: hidden;
        margin: 0 auto;
    }
    .carousel-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }
    .carousel-slide {
        flex: 0 0 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 10px;
    }
    .carousel-slide .placement-card {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 30px;
    }
    .dot {
        width: 10px;
        height: 10px;
        background-color: #bbb;
        border-radius: 50%;
        cursor: pointer;
    }
    .dot.active {
        background-color: #3498db;
        transform: scale(1.2);
    }
}

@media (min-width: 769px) {
    .carousel-container, .carousel-dots {
        display: none;
    }
}

/* ========== DOCUMENTS SECTION (TABLE + CARD HYBRID) ========== */
.document-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fc 0%, #eef2f7 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 45px;
}

.section-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-blue-deep);
    border-left: 5px solid var(--primary-orange);
    border-right: 5px solid var(--primary-orange);
    display: inline-block;
    padding: 0 25px;
}

.data-table-wrapper {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    overflow-x: auto;
    margin-bottom: 30px;
}

.document-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 800px;
}

.document-table th {
    background: linear-gradient(135deg, var(--secondary-blue-deep), var(--primary-blue));
    color: white;
    padding: 16px 15px;
    font-weight: 600;
    text-align: center;
    border-bottom: 3px solid var(--primary-gold);
}

.document-table td {
    padding: 14px 12px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    color: #2d3e50;
    font-weight: 500;
}

.document-table tr:hover {
    background-color: #fef9e6;
}

.pdf-btn {
    background: linear-gradient(135deg, var(--primary-orange), #c57235);
    border: none;
    padding: 8px 18px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pdf-btn:hover {
    transform: translateY(-2px);
    background: var(--secondary-blue-deep);
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* Mobile cards for documents */
.cards-container {
    display: none;
    gap: 20px;
    flex-direction: column;
}

.document-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    overflow: hidden;
    border-left: 5px solid var(--primary-orange);
    animation: cardFadeIn 0.4s ease-out forwards;
}

.card-row {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #f0e6d2;
    padding: 12px 18px;
    align-items: center;
}

.card-label {
    width: 130px;
    font-weight: 700;
    color: var(--secondary-blue-deep);
    font-size: 0.85rem;
    text-transform: uppercase;
}

.card-value {
    flex: 1;
    color: #2c3e50;
    font-weight: 500;
}

.card-action {
    background-color: #fef5e8;
    padding: 14px 18px;
    text-align: right;
}

@keyframes cardFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .data-table-wrapper { display: none; }
    .cards-container { display: flex; }
}

/* ========== FOOTER (ENHANCED 4-COLUMN LAYOUT) ========== */
footer {
    background: linear-gradient(135deg, #0b2b3b, var(--secondary-blue-deep));
    color: #eef2f5;
    padding: 50px 0 20px;
    margin-top: 50px;
    border-top: 4px solid var(--primary-orange);
}

.footer-bottom {
    background-color: #06212e;
    text-align: center;
    padding: 15px 0;
    margin-top: 30px;
    font-size: 0.85rem;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col {
    background: rgba(255,255,255,0.03);
    border-radius: 24px;
    padding: 20px 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.footer-col:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
    color: var(--primary-gold);
    border-left: 4px solid var(--primary-orange);
    padding-left: 12px;
}

.address-map-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.address-half {
    background: rgba(0,0,0,0.2);
    border-radius: 18px;
    padding: 12px 15px;
}

.address-half i {
    color: var(--primary-gold);
    width: 28px;
    margin-right: 8px;
}

.address-half p {
    margin-bottom: 8px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.map-half {
    background: rgba(0,0,0,0.2);
    border-radius: 18px;
    overflow: hidden;
    min-height: 180px;
}

.map-half iframe {
    width: 100%;
    height: 180px;
    border: 0;
    border-radius: 16px;
    display: block;
}

.links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-list li {
    margin-bottom: 10px;
}

.links-list a {
    color: #eef2f5;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.links-list a i {
    color: var(--primary-gold);
    font-size: 0.75rem;
}

.links-list a:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

.sub-section-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 15px 0 8px 0;
    color: var(--primary-gold);
    border-bottom: 1px dashed rgba(234,182,118,0.4);
    display: inline-block;
}

/* Video Column */
.video-player-wrapper {
    background: #00000030;
    border-radius: 20px;
    padding: 6px;
}

.video-thumb-container {
    position: relative;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    background: #0a1a2a;
}

.video-thumb-container img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.video-thumb-container:hover img {
    transform: scale(1.02);
}

.play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.65);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    border: 2px solid var(--primary-gold);
}

.play-icon-overlay i {
    font-size: 28px;
    color: white;
    margin-left: 4px;
}

.video-caption {
    font-size: 0.75rem;
    text-align: center;
    margin-top: 10px;
    color: #cfdfed;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    max-width: 85%;
    width: 880px;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 2px solid var(--primary-gold);
}

.video-modal-content iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
}

.close-modal {
    position: absolute;
    top: 12px;
    right: 20px;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 28px;
    cursor: pointer;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    z-index: 10;
}

.close-modal:hover {
    background: var(--primary-orange);
    color: #21130d;
}

.social-icon-small {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.social-icon-small a {
    color: #ccc;
    font-size: 1.1rem;
    transition: 0.2s;
}

.social-icon-small a:hover {
    color: var(--primary-gold);
    transform: translateY(-2px);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}
@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional Utility Classes */
.section-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.section-card h2 {
    color: var(--primary-blue);
    border-left: 5px solid var(--primary-orange);
    padding-left: 15px;
    margin-bottom: 25px;
}

.btn-gold {
    background-color: var(--primary-orange);
    color: white;
    font-weight: bold;
    border-radius: 30px;
    padding: 10px 25px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    border: none;
}

.btn-back {
    background: var(--primary-blue);
    color: white;
    border-radius: 40px;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    display: inline-block;
    margin-top: 20px;
}

.btn-back:hover {
    background: var(--primary-orange);
    color: #21130d;
}

/* Print Styles */
@media print {
    .document-section {
        background: white;
        padding: 20px;
    }
    .pdf-btn, .btn-back, .card-action, .video-modal, .slider-arrow, .navbar {
        display: none;
    }
    .data-table-wrapper {
        display: block;
        box-shadow: none;
    }
    .cards-container {
        display: none;
    }
}

/* Responsive Navbar */
@media (max-width: 992px) {
    .navbar-collapse {
        background: linear-gradient(135deg, var(--secondary-blue-deep), var(--secondary-navy));
        border-radius: 15px;
        margin-top: 10px;
        padding: 10px;
    }
    .navbar-nav {
        flex-direction: column;
        max-height: 60vh;
        overflow-y: auto;
    }
    .navbar-nav .nav-link {
        white-space: normal;
        text-align: center;
    }
    .slider-caption-modern h2 { font-size: 2rem; }
    .slider-caption-modern h4 { font-size: 1.5rem; }
}

@media (max-width: 768px) {
    .slider-caption-modern h2 { font-size: 1.4rem; }
    .slider-caption-modern p { font-size: 0.9rem; }
    .btn-slider-modern { padding: 6px 18px; font-size: 0.75rem; }
    .slider-arrow { width: 34px; height: 34px; font-size: 1rem; }
}
/*testimonial slider*/
