        /* Modernized Hero Section based on Screenshot 1 */
        .placement-hero {
            background: linear-gradient(to right, #2B32B2, #1488CC);
            padding: 80px 0;
            color: white;
            position: relative;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
        }

        /* Stats Cards based on Screenshot 2 */
        .stat-grid-box {
            background: #003366;
            color: #fff;
            padding: 25px;
            border: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            height: 100%;
            transition: 0.3s;
        }
        .stat-grid-box:hover { background: #004080; }
        .stat-grid-box h2 { font-weight: 700; margin-bottom: 5px; }
        .stat-grid-box p { font-size: 0.9rem; margin: 0; opacity: 0.8; }

        /* CDC Team Section based on Screenshot 5 */
        .cdc-team-section {
            background: linear-gradient(135deg, #b0d8f6 0%, #003366 100%);
            padding: 60px 0;
            color: white;
        }
        .team-card-main {
            background: white;
            color: #333;
            border-radius: 4px;
            padding: 20px;
            display: flex;
            align-items: center;
            max-width: 600px;
            margin: 0 auto;
        }
        .team-img-circle {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border: 5px solid #eee;
            margin-right: 20px;
        }

        /* Collapsible List based on Screenshot 3 */
        .placement-accordion .accordion-button {
            background-color: #000080;
            color: white;
            font-size: 1.25rem;
            text-align: center;
            justify-content: center;
        }
        .placement-accordion .accordion-button:not(.collapsed) {
            background-color: #555;
            box-shadow: none;
        }

        /* Coordinator Cards based on Screenshot 6 */
        .coord-card {
            border: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            text-align: center;
            padding: 20px;
            background: #fff;
            border-top: 5px solid #003366;
        }
        .coord-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin-bottom: 15px;
            border: 3px solid #003366;
        }
    
/* ================= PREVIOUS PLACEMENT SECTION ================= */

/* ================= FIXED HEIGHT PREVIOUS YEAR SECTION ================= */

.previous-placement-section{
    width:100%;
    background:#f5f7fa;
    padding:0;
}

/* ================= BIG CENTERED YEAR HEADER ================= */

.placement-year-bar{
    width:100%;
    height:140px;                /* FIXED HEADER HEIGHT */
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:48px;              /* BIGGER FONT */
    font-weight:700;
    letter-spacing:2px;
    color:#ffffff;
    background:linear-gradient(90deg,#0d1b8c,#1b29c9);
    cursor:pointer;
    transition:all 0.3s ease;
}

.placement-year-bar:hover{
    background:linear-gradient(90deg,#1b29c9,#2736f0);
}

.placement-year-bar i{
    font-size:30px;
    margin-left:20px;
    transition:0.3s ease;
}

.placement-year-bar.active i{
    transform:rotate(180deg);
}

/* ================= FIXED CONTENT HEIGHT ================= */

.placement-year-content{
    display:none;
    height:600px;              /* FIXED SECTION HEIGHT */
    background:#ffffff;
    padding:40px 8%;
    overflow-y:auto;           /* TABLE SCROLLS INSIDE */
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

/* ================= TABLE ================= */

.placement-table{
    width:100%;
    border-collapse:collapse;
}

.placement-table thead{
    background:#2f3542;
    color:#fff;
    position:sticky;           /* HEADER STAYS FIXED */
    top:0;
}

.placement-table th{
    padding:16px;
    text-align:center;
    font-weight:600;
}

.placement-table td{
    padding:14px;
    text-align:center;
}

.placement-table tbody tr:nth-child(even){
    background:#f1f2f6;
}

.placement-table tbody tr:hover{
    background:#e2e6ff;
}

      .header-nav {
            position: sticky; top: 0; width: 100%;
            background: #ffffff; padding: 15px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            z-index: 1000; display: flex; justify-content: center;
        }

        .btn-box { display: flex; gap: 15px; }

        .tab-btn {
            padding: 10px 25px; font-size: 14px; font-weight: 700; cursor: pointer;
            border: 2px solid #003366; background: #fff; color: #003366;
            border-radius: 50px; transition: 0.3s; text-transform: uppercase;
        }

        .tab-btn.active { background: #003366; color: #fff; }

        .wrapper { max-width: 1000px; margin: 30px auto; padding: 0 20px; }

        .year-card {
            display: none; background: #fff; border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            overflow: hidden; border: 1px solid #d1d9e0;
            animation: fadeInDown 0.4s ease;
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .year-card.active { display: block; }

        /* Modernized Table - Clear and Uniform */
        .data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
        
        .data-table thead tr { background-color: #003366; color: #ffffff; }
        .data-table th { padding: 12px 15px; text-align: center; text-transform: uppercase; font-weight: 600; letter-spacing: 0.5px; }
        
        .data-table td { padding: 10px 15px; border-bottom: 1px solid #eee; color: #333; }

        /* Zebra Stripes */
        .data-table tbody tr:nth-of-type(odd) { background-color: #ffffff; }
        .data-table tbody tr:nth-of-type(even) { background-color: #f9fbfd; }
        .data-table tbody tr:hover { background-color: #f1f4f8; }

        /* Uniform Alignment */
        .col-sno { width: 60px; text-align: center; color: #888; }
        .col-org { text-align: left; font-weight: 500; }
        .col-qty { text-align: center; }
        
        /* CTC Column: Plain text, centered, no extra colors */
        .col-salary { text-align: center; width: 140px; font-weight: 600; }

           
        
        .dashboard-header { text-align: center; color: #003366; margin-bottom: 30px; text-transform: uppercase; letter-spacing: 1px; }

        /* The 2x2 Grid System */
        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* Two equal columns (50% each) */
            gap: 25px;
            max-width: 1200px;
            margin: auto;
        }

        /* Fixed Height Wrapper to stop infinite growth */
        /* 1. Increased the chart-card wrapper height and padding */
    .chart-card {
        background: #ffffff;
        border-radius: 12px;
        padding: 30px; /* Increased from 20px to provide more background area */
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        height: 480px; /* Slightly reduced height to keep graphs compact */
        display: flex;
        flex-direction: column;
        border: 1px solid #e1e8ed;
        box-sizing: border-box; /* Ensures padding doesn't increase total size */
    }

    /* 2. Scaled the canvas down slightly to prevent overflow */
    .chart-card canvas {
        width: 95% !important;
        height: 95% !important; /* Forces the graph to occupy 90% of the box */
        margin: auto;
    }

        .chart-title {
            text-align: center;
            font-size: 16px;
            font-weight: 600;
            color: #444;
            margin-bottom: 15px;
        }

        /* Responsive scaling */
        @media (max-width: 992px) {
            .dashboard-grid { grid-template-columns: 1fr; }
            .chart-card { height: 350px; }
        }

        .news-section {
        padding: 80px 20px;
        background-color: #fdf2e9; /* Light peach background from image */
    }

    .news-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 50px;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* NEWS CARD STYLE */
    .news-card {
        background: #fff;
        width: 320px;
        min-height: 400px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        overflow: hidden;
        text-align: center;
        padding-bottom: 30px;
        border: 1px solid #eee;
        
    }

    /* Ribbon Header */
    .company-ribbon {
        background: #003366;
        color: white;
        padding: 10px 0;
        font-weight: bold;
        font-size: 1.2rem;
        margin-top: 40px;
        position: relative;
    }

    .congrats-bar {
        background: #004a94;
        color: white;
        font-size: 0.9rem;
        padding: 5px 0;
        margin-bottom: 20px;
        
    }
    

    .news-body {
        padding: 0 25px;
        font-style: italic;
        color: #555;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .package-highlight {
        color: #28a745;
        font-weight: bold;
        font-size: 1.1rem;
        margin-top: 20px;
    }

    
    .cdc-team-section {
        background: #f8fafc;
        padding: 60px 20px;
        color: #334155;
        font-family: 'Segoe UI', sans-serif;
    }

    

    /* Vibrant Head Card */
    .head-card-enhanced {
        max-width: 750px;
        margin: 0 auto 50px;
        display: flex;
        align-items: center;
        padding: 25px;
        background: white;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 51, 102, 0.08);
        border: 1px solid #e2e8f0;
        transition: transform 0.3s ease;
    }

    .head-card-enhanced:hover { transform: scale(1.02); }

    /* Colorful image container */
    .head-img-box {
        flex: 0 0 220px;
        height: 250px;
        background: linear-gradient(135deg, #e0f2fe 0%, #003366 100%);
        padding: 8px;
        border-radius: 15px;
    }

    .head-img-enhanced {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
        background: white;
    }

    .head-info-enhanced { padding-left: 35px; text-align: left; }
    
    .role-badge {
        display: inline-block;
        background: #dcfce7;
        color: #166534;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    /* Manager Cards */
    .manager-row-colorful {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }

    .manager-card-colorful {
        width: 280px;
        background: white;
        border-radius: 20px;
        padding: 20px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }

    .manager-card-colorful:hover {
        border-color: #003366;
        box-shadow: 0 10px 25px rgba(0, 51, 102, 0.1);
    }

    .manager-img-wrapper {
        height: 220px;
        background: linear-gradient(135deg, #003366 0%, #0ea5e9 100%);
        border-radius: 15px;
        margin-bottom: 15px;
        padding: 6px;
    }

    .manager-img-colorful {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    .contact-link {
        color: #0369a1;
        text-decoration: none;
        font-weight: 600;
    }

    .contact-link:hover { color: #003366; }
    /* Responsive Fix for Mobile View */
@media (max-width: 768px) {
    .head-card-enhanced {
        flex-direction: column; /* Stacks image and text vertically */
        text-align: center;      /* Centers text for a better mobile look */
        padding: 15px;
        max-width: 95%;         /* Prevents card from hitting screen edges */
    }

    .head-img-box {
        flex: 0 0 auto;         /* Allows box to size naturally */
        width: 100%;            /* Full width of the card */
        max-width: 250px;       /* Keeps the photo from getting too huge */
        height: 250px;
        margin-bottom: 20px;    /* Adds space between photo and text */
    }

    .head-info-enhanced {
        padding-left: 0;        /* Removes the side padding used in desktop */
    }

    .head-info-enhanced h3 {
        font-size: 1.25rem;     /* Slightly smaller font for mobile screens */
    }
}


    .coordinators-section {
        padding: 80px 0;
        background-color: #f1f5f9;
        overflow: hidden;
    }

    .marquee-wrapper {
        display: flex;
        width: max-content;
        /* Adjust 40s to make it faster (lower number) or slower (higher number) */
        animation: scroll-marquee 14s linear infinite; 
    }

    @keyframes scroll-marquee {
        from { transform: translateX(0); }
        to { transform: translateX(-50%); }
    }

    /* Pause on hover so users can read contact details */
    .marquee-wrapper:hover {
        animation-play-state: paused;
    }

    .coord-card-wrapper {
        width: 280px;
        background: #ffffff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        position: relative;
        flex: 0 0 auto;
        margin: 0 15px; /* Spacing between cards */
    }

    .coord-info-box {
        background-color: #003366;
        color: #ffffff;
        text-align: center;
        padding: 75px 15px 30px; 
        margin-top: 100px; 
        min-height: 200px;
    }

    .coord-portrait {
        width: 130px;
        height: 150px;
        object-fit: cover;
        border-radius: 12px;
        position: absolute;
        top: 30px;
        left: 50%;
        transform: translateX(-50%);
        border: 4px solid #003366;
        z-index: 5;
        background: #eee;
    }

    .coord-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 5px;margin-top: 10px; line-height: 1.2; }
    .coord-dept { font-size: 0.9rem; color: #ffc107; font-weight: 800; margin-bottom: 12px; }
    .coord-email-text { font-size: 0.8rem; opacity: 0.9; margin-bottom: 5px; word-break: break-all; }
    .coord-phone { font-size: 0.85rem; font-weight: 600; color: #fff; }

    
    .partners-section {
        background-color: #f8fafc; /* Slightly off-white for better contrast */
        padding: 60px 20px;
        font-family: 'Segoe UI', system-ui, sans-serif;
    }

    .partners-container {
        max-width: 1100px;
        margin: 0 auto;
        background: white;
        padding: 40px;
        border-radius: 16px; /* Smoother corners */
        box-shadow: 0 10px 30px rgba(0,0,0,0.04);
        border: 1px solid #eef2f6;
    }

    .partners-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 12px 25px;
    }

    .partner-item {
        display: flex;
        align-items: center;
        font-size: 0.95rem;
        font-weight: 500;
        color: #475569;
        padding: 8px 0;
        transition: all 0.3s ease;
        cursor: default;
    }

    /* THE BEAUTIFUL BULLET */
    .custom-bullet {
        width: 8px;
        height: 8px;
        background-color: #f59e0b; /* Original Orange Accent */
        margin-right: 15px;
        transform: rotate(45deg); /* Diamond shape */
        border-radius: 1px;
        flex-shrink: 0;
        transition: all 0.3s ease;
        box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
    }

    /* HOVER EFFECTS */
    .partner-item:hover {
        color: #003366;
        transform: translateX(5px);
    }

    .partner-item:hover .custom-bullet {
        background-color: #003366; /* Changes to Deep Blue on hover */
        transform: rotate(225deg) scale(1.2); /* Subtle spin and grow */
        box-shadow: 0 0 12px rgba(0, 51, 102, 0.4);
    }

     .selection-roadmap {
        background: radial-gradient(circle at top right, #fdfdfd, #f4f7f9);
        padding: 80px 0;
        overflow: hidden;
    }

    .roadmap-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        position: relative;
        padding: 40px 0;
        flex-wrap: wrap;
        gap: 20px;
    }

    /* Connecting line for Desktop */
    @media (min-width: 992px) {
        .roadmap-wrapper::before {
            content: '';
            position: absolute;
            top: 100px;
            left: 10%;
            right: 10%;
            height: 3px;
            /*background: repeating-linear-gradient(90deg, #003974, #003974 10px, transparent 10px, transparent 20px);*/
            opacity: 0.2;
            z-index: 0;
        }
    }

    .step-card {
        flex: 1;
        min-width: 220px;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 20px;
        padding: 30px 20px;
        text-align: center;
        transition: all 0.4s ease;
        position: relative;
        z-index: 1;
        box-shadow: 0 10px 30px rgba(0, 57, 116, 0.05);
    }

    .step-card:hover {
        transform: translateY(-12px);
        background: #fff;
        box-shadow: 0 20px 40px rgba(0, 57, 116, 0.12);
    }

    .step-icon-circle {
        width: 70px;
        height: 70px;
        margin: 0 auto 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: white;
        box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    }

    /* Phase-specific colors */
    .bg-gmr-blue { background-color: #003974; }
    .bg-gmr-orange { background-color: #FAAB53; }
    .bg-gmr-red { background-color: #ED1C24; }

    .step-title {
        font-weight: 700;
        color: #003974;
        margin-bottom: 10px;
        font-size: 1.1rem;
    }

    .step-text {
        font-size: 0.85rem;
        color: #556b82;
        line-height: 1.6;
    }

    .step-badge {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        padding: 4px 15px;
        border-radius: 50px;
        font-size: 0.7rem;
        font-weight: 800;
        color: white;
        letter-spacing: 1px;
    }

      .placement-hero {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }
    /* GMR Color Accents */
    .text-gmr-blue { color: #003974; }
    .bg-gmr-blue { background-color: #003974; }
    .bg-gmr-red { background-color: #ED1C24; }
    .bg-gmr-orange { background-color: #FAAB53; }

    .hero-image-wrapper {
        position: relative;
        padding: 20px;
    }
    .hero-image-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100px;
        height: 100px;
        background: #FAAB53; /* GMR Orange */
        border-radius: 50%;
        opacity: 0.1;
        z-index: 0;
    }
    .floating-badge {
        position: absolute;
        bottom: 30px;
        left: 0;
        background: white;
        padding: 15px 25px;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        display: flex;
        align-items: center;
        gap: 10px;
        border-left: 5px solid #ED1C24; /* GMR Red */
    }

    /* Hide sub-sub menu by default */
.submenu-level2 {
    display: none;
    padding-left: 18px;
    margin-top: 6px;
}

/* Smaller bullet for level 2 */
.small-dot {
    transform: scale(0.7);
    margin-right: 6px;
}

/* Arrow styling */
.submenu-arrow {
    float: right;
    font-size: 12px;
    transition: 0.3s ease;
}

/* Active state */
.mega-submenu.active .submenu-level2 {
    display: block;
}

.mega-submenu.active .submenu-arrow {
    transform: rotate(180deg);
}

/* ===============================
   PLACEMENTS NEWS – GMR ACCENT STYLE
   =============================== */

.news-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f4f8fc 0%, #ffffff 100%);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* BASE CARD */
.news-card {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 25px 30px 25px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    overflow: hidden;
}

.news-card:hover {
    transform: translateY(-8px);
}

/* ===============================
   TOP BORDER COLORS (GMR)
   =============================== */

/* 🔵 BLUE */
.news-card:nth-child(1)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: #003060;
}

/* 🟠 ORANGE */
.news-card:nth-child(2)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: #f37021;
}

/* 🔴 RED */
.news-card:nth-child(3)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: #ed1c24;
}

/* ===============================
   COMPANY RIBBON COLORS
   =============================== */

.company-ribbon {
    position: absolute;
    top: 15px;
    right: -35px;
    color: #fff;
    padding: 6px 40px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
    letter-spacing: 0.5px;
}

/* Ribbon colors */
.news-card:nth-child(1) .company-ribbon {
    background: #003060;
}

.news-card:nth-child(2) .company-ribbon {
    background: #f37021;
}

.news-card:nth-child(3) .company-ribbon {
    background: #ed1c24;
}

/* ===============================
   CONGRATS TEXT COLORS
   =============================== */

.congrats-bar {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
}

.news-card:nth-child(1) .congrats-bar {
    color: #003060;
    color: white;
}

.news-card:nth-child(2) .congrats-bar {
    color: #f37021;
    color: white;
}

.news-card:nth-child(3) .congrats-bar {
    color: #ed1c24;
    color: white;
}

/* ===============================
   PACKAGE HIGHLIGHT
   =============================== */

.package-highlight {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

/* Package colors */
.news-card:nth-child(1) .package-highlight {
    background: #003060;
    
}

.news-card:nth-child(2) .package-highlight {
    background: #f37021;
}

.news-card:nth-child(3) .package-highlight {
    background: #ed1c24;
}

/* ===============================
   BODY TEXT
   =============================== */

.news-body {
    font-size: 14.5px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}
