/* ===============================
   HERO CAROUSEL SECTION
=================================*/

.hero-carousel {
    position: relative;
    height: 650px;
    overflow: hidden;
}

/* ===============================
   SLIDES
=================================*/
.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: right center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* ===============================
   OVERLAY (BLUE THEME)
=================================*/
.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;

    background: linear-gradient(
    to right,
    rgba(25, 25, 25, 0.82) 30%,
    rgba(35, 35, 35, 0.60) 55%,
    rgba(45, 45, 45, 0.28) 75%,
    transparent 100%
);
}

/* ===============================
   LEFT CONTENT
=================================*/
.hero-left {
    width: 38%;
    margin-left: 120px;
    position: relative;
}

/* ===============================
   TEXT ANIMATIONS
=================================*/

/* INITIAL STATE (hidden) */
.hero-left > * {
    opacity: 0;
    transform: translateX(-40px);
}

/* ACTIVE SLIDE ANIMATION */
.hero-slide.active .hero-tag {
    animation: fadeLeft 0.6s ease forwards;
}

.hero-slide.active h1 {
    animation: fadeLeft 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-slide.active p {
    animation: fadeLeft 1s ease forwards;
    animation-delay: 0.4s;
}

.hero-slide.active .hero-buttons {
    animation: fadeLeft 1.2s ease forwards;
    animation-delay: 0.6s;
}

/* KEYFRAMES */
@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ORANGE SIDE LINE */

/* TAG */
.hero-tag {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
    color: #EBF791;
}

/* HEADING */
.hero-left h1 {
    font-size: 50px;
    color: #EBF791;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* TEXT */
.hero-left p {
    font-size: 16px;
    color: #EBF791;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* ===============================
   BUTTONS
=================================*/
.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

/* PRIMARY BUTTON */
.btn.primary {
    background: #f37021;
    color: #fff;
}

.btn.primary:hover {
    background: #d95e18;
}

/* SECONDARY BUTTON */
.btn.secondary {
    border: 1px solid #fff;
    color: #fff;
}

.btn.secondary:hover {
    background: #fff;
    color: #0D5B7A;
}

/* ===============================
   ARROWS
=================================*/
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(13, 91, 122, 0.8);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 22px;
    z-index: 50;
    transition: 0.3s;
}

.hero-arrow:hover {
    background: #0D5B7A;
}

.hero-arrow.left {
    left: 20px;
}

.hero-arrow.right {
    right: 20px;
}

/* ===============================
   DOTS (ALWAYS VISIBLE)
=================================*/
.carousel-dots {
    position: absolute;
    bottom: 25px;
    width: 100%;
    text-align: center;
    z-index: 100;
}

.dot {
    width: 14px;
    height: 14px;
    margin: 0 6px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    border: 2px solid #fff;
    transition: 0.3s;
}

/* ACTIVE DOT */
.dot.active {
    background: #f37021;
    transform: scale(1.2);
}

/* HOVER */
.dot:hover {
    background: #f37021;
}

/* ===============================
   OPTIONAL: SMOOTH FADE EFFECT
=================================*/
.hero-slide {
    will-change: opacity;
}

/* ===============================
   STATS SECTION
=================================*/
/* ===============================
   STATS SECTION
=================================*/
/* ==========================================================================
   OUR IMPACT / STATS SECTION (UPDATED CLEAN MINIMALIST DESIGN)
   ========================================================================== */

.stats-section {
    background: #f8f9fa; /* Crisp light gray background match */
    padding: 80px 0;
    width: 100%;
    box-sizing: border-box;
}

.stats-main-wrapper {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Centered Impact Heading */
.stats-main-title {
    text-align: center;
    margin-bottom: 50px;
}

.stats-main-title h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111111;
    margin: 0;
    letter-spacing: -0.5px;
}

.stats-main-title h2 span {
    color: #f37021; /* Bright orange pop color */
}

/* Grid Framework for Counters */
.stats-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* Generates cleanly across 1 horizontal row */
    gap: 20px;
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
}

/* Individual Box Styles */
.stat-box {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.6s ease;
}

.stat-box.show {
    opacity: 1;
    transform: translateY(0);
}

/* Counter Metric Typography */
.stat-box h2 {
    font-size: 44px;
    font-weight: 800;
    color: #f37021; /* Clean orange metric numbers */
    margin: 0 0 10px 0;
    line-height: 1;
}

/* Reset individual colors assigned previously to keep design uniform */
.stat-box:nth-child(1) h2,
.stat-box:nth-child(2) h2,
.stat-box:nth-child(3) h2,
.stat-box:nth-child(4) h2,
.stat-box:nth-child(5) h2,
.stat-box:nth-child(6) h2 {
    color: #f37021 !important;
}

/* Description Typography */
.stat-box p {
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    line-height: 1.3;
    margin: 0;
}

.stat-box p span.patents-subtext {
    font-weight: 500;
    color: #555555;
    font-size: 13px;
    display: block;
    margin-top: 4px;
}

/* Impact Narrative Footnote Block */
.stats-narrative-box {
    border-left: 3px solid #f37021; /* Clean brand accent line on the left side */
    padding-left: 25px;
    margin-top: 20px;
    text-align: left;
}

.stats-narrative-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #333333;
    font-weight: 400;
    margin: 0;
}

/* ==========================================================================
   RESPONSIVE LAYOUT RESPONSES
   ========================================================================== */

@media (max-width: 1100px) {
    .stats-container {
        grid-template-columns: repeat(3, 1fr); /* 3 Columns on small screens/tablets */
        gap: 40px 20px;
    }
}

@media (max-width: 768px) {
    .stats-main-wrapper {
        width: 90%;
    }
    .stats-main-title h2 {
        font-size: 32px;
    }
    .stats-container {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns on smaller devices */
        gap: 30px 15px;
    }
    .stat-box h2 {
        font-size: 36px;
    }
    .stats-narrative-box {
        padding-left: 15px;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr; /* Stacks seamlessly into a neat list on mobile layout grids */
        gap: 30px;
    }
}

/* PANEL (FULL SCREEN SECTION) */
.cei-panel {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* ==========================================================================
   CEI TABBED ACCORDION WORKSPACE MODULE DESIGN FRAMEWORK
   ========================================================================== */

.cei-tabbed-dashboard-wrapper {
    width: 100% !important;
    display: block !important;
    margin: 0px 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    clear: both !important;
}

.cei-dashboard-main-container {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    height: 800px; /* Aligns proportionally with neighboring component block ratios */
    overflow: hidden !important;
    background-color: #0d5b7a !important;
}

/* WORKSPACE PORT FOR PANEL RENDERING */
.cei-viewport-frame {
    flex: 1 !important;
    height: 100% !important;
    position: relative !important;
    overflow: hidden !important;
}

.cei-content-panel {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: flex-start !important;
    padding: 40px !important;
    box-sizing: border-box !important;
    
    /* Layout Layer Mask Transitions */
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out !important;
    z-index: 1 !important;
}

.cei-content-panel.active-panel {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 3 !important;
}

/* Floating Content Card (Matches Reference Card Box) */
.cei-viewport-floating-card {
    background: #ffffff !important;
    padding: 35px !important;
    border-radius: 4px !important;
    width: 100% !important;
    max-width: 550px !important;
    box-sizing: border-box !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
    animation: ceiPanelCardSlideUp 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes ceiPanelCardSlideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cei-viewport-floating-card h2 {
    font-size: 40px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    margin: 0 0 15px 0 !important;
    line-height: 1.2 !important;
}

.cei-viewport-floating-card p {
    font-size: 20px !important;
    color: #444444 !important;
    line-height: 1.6 !important;
    margin: 0 0 25px 0 !important;
}

.cei-card-action-btn {
    display: inline-block !important;
    padding: 12px 32px !important;
    background-color: #0d5b7a !important; /* Contextual brand identity update */
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    letter-spacing: 1px !important;
    text-decoration: none !important;
    border-radius: 2px !important;
    transition: background-color 0.25s ease !important;
}

.cei-card-action-btn:hover {
    background-color: #093f54 !important;
}

/* SIDE MENU CONTROL COLUMN */
.cei-accordion-navigation-column {
    display: flex !important;
    flex-direction: row !important; /* Lines tabs side-by-side inside their parent box wrapper column layout structure */
    width: 320px !important;
    height: 100% !important;
    background-color: #093f54 !important;
}

.cei-nav-vertical-tab {
    flex: 1 !important;
    height: 100% !important;
    background-color: #6E3608 !important; /* Clean primary brand matching background */
    border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
    cursor: pointer !important;
    position: relative !important;
    transition: background-color 0.3s ease !important;
    box-sizing: border-box !important;
}

.cei-nav-vertical-tab:last-child {
    border-right: none !important;
}

/* Vertical Text Positioning Transformation System Wrapper */
.cei-vertical-tab-inner-wrapper {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) rotate(-90deg) !important; /* Centers and rotates text vertically */
    transform-origin: center center !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    white-space: nowrap !important;
    width: auto !important;
}

.cei-tab-arrow-icon {
    font-size: 15px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    transform: rotate(90deg) !important; /* Fixes relative orientation balance after main menu parent rotation tracking */
}

.cei-tab-label-text {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Tab Highlight Active Rules States */
.cei-nav-vertical-tab.active-tab,
.cei-nav-vertical-tab:hover {
    background-color: #C45F0E !important; /* Refined bright turquoise highlight tone context matching reference dashboard structure */
}

.cei-nav-vertical-tab.active-tab .cei-tab-label-text,
.cei-nav-vertical-tab:hover .cei-tab-label-text {
    color: #ffffff !important;
}

.cei-nav-vertical-tab.active-tab .cei-tab-arrow-icon {
    color: #ffffff !important;
}

/* ==========================================================================
   MOBILE & TABLET DESIGN INTERFACES
   ========================================================================== */

@media (max-width: 992px) {
    .cei-dashboard-main-container {
        flex-direction: column !important; /* Stack columns on tablets */
        height: auto !important;
    }
    .cei-viewport-frame {
        width: 100% !important;
        height: 450px !important;
    }
    .cei-accordion-navigation-column {
        width: 100% !important;
        height: 70px !important;
        flex-direction: row !important;
    }
    .cei-vertical-tab-inner-wrapper {
        transform: translate(-50%, -50%) rotate(0deg) !important; /* Restore normal readable text alignment horizontally on devices */
    }
    .cei-tab-arrow-icon {
        transform: rotate(0deg) !important;
    }
    .cei-tab-label-text {
        font-size: 12px !important;
    }
}

@media (max-width: 600px) {
    .cei-content-panel {
        padding: 20px !important;
    }
    .cei-viewport-floating-card {
        padding: 20px !important;
    }
    .cei-viewport-floating-card h2 {
        font-size: 20px !important;
    }
    .cei-accordion-navigation-column {
        height: auto !important;
        flex-direction: column !important; /* List columns cleanly downwards inside miniature view grids */
    }
    .cei-nav-vertical-tab {
        width: 100% !important;
        height: 55px !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
}

/* DARK OVERLAY */
.overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(13,91,122,0.9) 35%,
        rgba(13,91,122,0.6) 60%,
        transparent 100%
    );
    display: flex;
    align-items: center;
}

/* CONTENT */
.content {
    width: 40%;
    margin-left: 120px;
    color: #fff;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s;
}

.content.show {
    opacity: 1;
    transform: translateY(0);
}

/* TITLE */
.content h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

/* UNDERLINE */
.underline {
    width: 0;
    height: 3px;
    background: #f37021;
    display: block;
    margin-bottom: 20px;
    transition: 0.5s;
}

.content.show .underline {
    width: 80px;
}

/* TEXT */
.content p {
    line-height: 1.7;
    margin-bottom: 15px;
}

/* BUTTON */
.content a {
    color: #f37021;
    font-weight: 600;
    text-decoration: none;
}

/* LEFT INDICATOR */
.cei-indicator {
    position: fixed;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.cei-indicator .line {
    width: 2px;
    height: 200px;
    background: #ccc;
    display: block;
    margin: auto;
}

.cei-indicator .dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    display: block;
    margin: 15px auto;
    transition: 0.3s;
}

.cei-indicator .dot.active {
    background: #f37021;
    transform: scale(1.4);
}

.rd-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #F4B400; /* Yellow */
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* LEFT IMAGE */
.rd-image {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
}

.rd-image img {
    width: 120%;
    max-width: none;
}

/* RIGHT CONTENT */
.rd-content {
    margin-left: 55%;
    max-width: 500px;
    color: white;
}

.rd-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
}

.rd-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* BUTTON */
.explore-btn {
    display: inline-block;
    padding: 14px 30px;
    background: black;
    color: white;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s;
}

.explore-btn:hover {
    background: #222;
}

@media (max-width: 768px) {
    .rd-section {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .rd-image {
        position: relative;
        width: 100%;
    }

    .rd-image img {
        width: 100%;
    }

    .rd-content {
        margin-left: 0;
        padding: 20px;
    }

    .rd-content h1 {
        font-size: 32px;
    }
}

.ip-section {
    width: 100%;
    height: 100vh;
    background: #36B37E; /* change to yellow (#F4B400) if needed */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    overflow: hidden;
}

/* LEFT TEXT */
.ip-content {
    max-width: 500px;
    color: black;
}

.ip-content h1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
}

.ip-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* BUTTON */
.explore-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #e5e5e5;
    color: black;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.explore-btn:hover {
    background: #d4d4d4;
}

/* RIGHT IMAGE */
.ip-image {
    width: 50%;
    text-align: right;
}

.ip-image img {
    width: 90%;
}

/* INITIAL STATE */
.fade-left,
.fade-right,
.fade-up,
.fade-down {
    opacity: 0;
    transition: all 1s ease;
}

/* Directions */
.fade-left {
    transform: translateX(-80px);
}

.fade-right {
    transform: translateX(80px);
}

.fade-up {
    transform: translateY(40px);
}

.fade-down {
    transform: translateY(-40px);
}

/* ACTIVE (when visible) */
.show {
    opacity: 1;
    transform: translate(0, 0);
}

.purple-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #963596; /* purple */
    display: flex;
    align-items: center;
    overflow: hidden;
}

.navy-section {
    width: 100%;
    height: 100vh;
    background: #2569A9; /* blue  */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    overflow: hidden;
}


/* =========================================
   ANNOUNCEMENT SECTION
========================================= */
/* =========================================
   ANNOUNCEMENT SECTION
========================================= */

.announcement{
    background:#f7f7f9;
    padding:55px 0;
    position:relative;
    overflow:hidden;
}

/* OPTIONAL BACKGROUND PATTERN */
.announcement::before{
    content:"";
    position:absolute;
    inset:0;
    background:url('../assets/pattern.png') center/cover no-repeat;
    opacity:0.03;
    pointer-events:none;
}

.announcement .container-fluid{
    width:92%;
    max-width:1450px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* =========================================
   MAIN WRAPPER
========================================= */

.announcement-wrapper{
    display:flex;
    gap:28px;
    align-items:stretch;
}

/* =========================================
   COMMON CARD STYLE
========================================= */

.news-left,
.news-right{
    background:#ffffff;
    border-radius:18px;
    padding:26px;
    box-shadow:
        0 8px 30px rgba(0,0,0,0.05);
    border:1px solid #ececec;
}

/* =========================================
   LEFT SECTION
========================================= */

.news-left{
    flex:1.12;
    display:flex;
    flex-direction:column;
}

/* =========================================
   UPDATED LEFT SECTION TITLE & UNDERLINE
========================================= */

/* =========================================
   LEFT SECTION TITLE (LEFT-ALIGNED MATCH)
========================================= */

.news-left .section-title {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 25px; /* Added margin space so the title text doesn't overlap the red line */
    line-height: 1.1;
    position: relative;
    letter-spacing: -1px;
    
    /* FORCES THE ELEMENT TO WRAP TIGHTLY AROUND THE TEXT ONLY */
    display: table;      
    text-align: left;
}

/* RED LINE PERFECT LEFT SNAP */
.news-left .section-title::after {
    content: "";
    position: absolute;
    left: 0;             /* Snaps perfectly to the left edge of the text */
    bottom: -14px;       /* Positions the line cleanly below the text */
    width: 110px;
    height: 5px;
    background: linear-gradient(to right, #d71920, #ff5a5f);
    border-radius: 50px;
}

/* SUBTITLE */
.news-subtitle{
    margin-top:24px;
    margin-bottom:22px;
    font-size:18px;
    color:#4b5563;
    font-weight:500;
}

/* =========================================
   NEWS WRAPPER
========================================= */

.news-wrapper{
    height:560px;
    overflow:hidden;
    position:relative;
    border-radius:14px;
    border:1px solid #e5e7eb;
    background:#fafafa;
}

/* TRACK */
.news-track{
    display:flex;
    flex-direction:column;
    animation:scrollUp 26s linear infinite;
}

/* PAUSE ON HOVER */
.news-wrapper:hover .news-track{
    animation-play-state:paused;
}

/* =========================================
   NEWS ITEM
========================================= */

.news-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:18px;
    background:#ffffff;
    border-bottom:1px solid #ededed;
    transition:0.35s ease;
    position:relative;
}

/* HOVER */
.news-item:hover{
    background:#fffdfd;
    transform:translateX(3px);
}

/* LEFT ICON BOX */
.news-icon{
    width:68px;
    height:68px;
    min-width:68px;
    border-radius:10px;
    overflow:hidden;
    border:1px solid #e5e7eb;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.news-icon img{
    width:100%;
    height:100%;
    object-fit:contain;
}

/* CONTENT */
.news-item a{
    flex:1;
    text-decoration:none;
}

/* META */
.news-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;
    gap:10px;
}

/* SOURCE */
.news-meta small:first-child{
    font-size:13px;
    color:#6b7280;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:0.5px;
}

/* TIME */
.news-meta small:last-child{
    font-size:13px;
    color:#6b7280;
    white-space:nowrap;
}

/* TITLE */
.news-item p{
    margin:0;
    color:#111827 !important;
    font-size:18px;
    line-height:1.45;
    font-weight:600;
    transition:0.3s ease;
}

/* HOVER TITLE */
.news-item:hover p{
    color:#c1121f !important;
}

/* ARROW */
.news-arrow{
    color:#d71920;
    font-size:24px;
    font-weight:700;
    margin-top:14px;
    transition:0.3s ease;
}

.news-item:hover .news-arrow{
    transform:translateX(6px);
}

/* =========================================
   RIGHT SECTION
========================================= */

.news-right{
    flex:1;
    display:flex;
    flex-direction:column;
}

/* HEADER */
.publication-header{
    margin-bottom:22px;
}

/* TITLE */
.publication-header h3{
    font-size:42px;
    font-weight:800;
    color:#111827;
    margin-bottom:10px;
    line-height:1.1;
    position:relative;
    letter-spacing:-1px;
}

/* RED LINE */
.publication-header h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-14px;
    width:110px;
    height:5px;
    background:linear-gradient(to right,#d71920,#ff5a5f);
    border-radius:50px;
}

/* SUBTITLE */
.publication-subtitle{
    margin-top:24px;
    font-size:18px;
    color:#4b5563;
    font-weight:500;
}

/* =========================================
   PUBLICATION CARD
========================================= */

.publication-card{
    flex:1;
    border:1px solid #e5e7eb;
    border-radius:14px;
    overflow:hidden;
    background:#fff;
    height:560px;
    display:flex;
    flex-direction:column;
}

/* IMAGE */
.publication-image{
    height:240px;
    overflow:hidden;
}

.publication-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s ease;
}

.publication-card:hover .publication-image img{
    transform:scale(1.05);
}

/* CONTENT */
.publication-content{
    flex:1;
    background:#c1121f;
    padding:28px;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

/* DATE */
.publication-date{
    font-size:16px;
    margin-bottom:12px;
    opacity:0.9;
}

/* TITLE */
.publication-content h4{
    font-size:34px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:18px;
}

/* TEXT */
.publication-content p{
    font-size:18px;
    line-height:1.7;
    margin-bottom:22px;
}

/* BUTTON */
.publication-btn{
    margin-top:auto;
    display:inline-flex;
    align-items:center;
    gap:10px;
    width:max-content;
    padding:13px 24px;
    background:#fff;
    color:#c1121f;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:0.3s ease;
}

.publication-btn:hover{
    transform:translateY(-2px);
    background:#f9f9f9;
}

/* =========================================
   SCROLL ANIMATION
========================================= */

@keyframes scrollUp{

    0%{
        transform:translateY(0);
    }

    100%{
        transform:translateY(-50%);
    }

}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

    .section-title,
    .publication-header h3{
        font-size:36px;
    }

    .news-wrapper,
    .publication-card{
        height:520px;
    }

}

@media(max-width:991px){

    .announcement-wrapper{
        flex-direction:column;
    }

    .news-left,
    .news-right{
        width:100%;
    }

    .news-wrapper,
    .publication-card{
        height:500px;
    }

}

@media(max-width:768px){

    .announcement{
        padding:40px 0;
    }

    .news-left,
    .news-right{
        padding:18px;
        border-radius:14px;
    }

    .section-title,
    .publication-header h3{
        font-size:30px;
    }

    .news-subtitle,
    .publication-subtitle{
        font-size:15px;
    }

    .news-item{
        padding:14px;
        gap:14px;
    }

    .news-icon{
        width:54px;
        height:54px;
        min-width:54px;
    }

    .news-item p{
        font-size:15px;
    }

    .news-wrapper,
    .publication-card{
        height:420px;
    }

    .publication-image{
        height:180px;
    }

    .publication-content{
        padding:20px;
    }

    .publication-content h4{
        font-size:24px;
    }

    .publication-content p{
        font-size:15px;
        line-height:1.6;
    }

}
/* IMAGE */
/* IMAGE CONTAINER */
/* IMPORTANT: remove old #career img styles */

/* CONTAINER */
.career-image {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* MUST */
}

/* IMAGE */
.career-image img {
    width: 85%;
    max-width: 900px;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

/* HOVER EFFECT */
.career-image:hover img {
    transform: scale(1.1);
}

/* CONTENT */
.career-content {
    text-align: center;
    margin-top: 0px;
}

.career-content h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
}

/* BUTTON */
.btn-career {
    display: inline-block;
    padding: 14px 40px;
    background: black;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 14px;
    transition: 0.3s;
}

/* HOVER */
.btn-career:hover {
    background: transparent;
    color: black;
    border: 1px solid black;
}

.career-image img {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   SECTION BASE
=================================*/
#stackholders {
    background: #d5db6e;
    padding: 80px 0;
    font-family: 'Open Sans', sans-serif;
}

/* CONTAINER */
#stackholders .container {
    width: 90%;
    margin: auto;
}

/* ===============================
   TITLE
=================================*/
.section-title {
    text-align: center;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: #000000;
    position: relative;
    display: inline-block;
}

/* SUBTITLE */
.subtitle {
    text-align: center;
    max-width: 700px;
    margin: 10px auto 50px;
}

.subtitle p {
    font-size: 16px;
     font-weight: 800;
    color: #000000;
    line-height: 1.7;
}

/* ===============================
   GRID LAYOUT
=================================*/
.row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.col-lg-4 {
    width: 32%;
}

/* ===============================
   CARD DESIGN
=================================*/
.eventlist {
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

/* HOVER EFFECT */
.eventlist:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* IMAGE */
.eventlist img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

/* TITLE */
.eventlist h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

/* DESCRIPTION */
.eventlist p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ===============================
   BUTTON
=================================*/
.btn-orange {
    display: inline-block;
    background: #f37021;
    color: #fff;
    padding: 10px 20px;
    margin-top: 40px;
    border-radius: 4px;
    font-size: 40px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-orange:hover {
    background: #d85e17;
}

/* ===============================
   CENTER BUTTON
=================================*/
#stackholders center {
    display: block;
    margin-top: 20px;
}

/* ===============================
   RESPONSIVE
=================================*/
@media (max-width: 992px) {
    .col-lg-4 {
        width: 48%;
    }
}

@media (max-width: 600px) {
    .col-lg-4 {
        width: 100%;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .eventlist img {
        height: 100px;
    }
}

/* ===============================
   SECTION
=================================*/
#mentors {
    background: #ffffff;
    padding: 70px 0;
}

.container {
    width: 90%;
    margin: auto;
}

/* ===============================
   TITLE
=================================*/
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

/*.section-title h2::after {*/
/*    content: "";*/
/*    display: block;*/
/*    width: 60px;*/
/*    height: 3px;*/
/*    background: #0D5B7A;*/
/*    margin: 8px auto 0;*/
/*}*/

/* ===============================
   CAROUSEL WRAPPER
=================================*/
.logo-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 50px;
}

/* ===============================
   TRACK (MOVING PART)
=================================*/
.logo-track {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: scrollLogos 20s linear infinite;
}

/* LOOP ANIMATION */
@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ===============================
   LOGO ITEM
=================================*/
.logo-item {
    flex: 0 0 auto;
    width: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-item img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    opacity: 0.8;
    transition: 0.3s;
}

/* HOVER EFFECT */
.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* ===============================
   ARROWS
=================================
.logo-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.logo-arrow.left {
    left: 10px;
}

.logo-arrow.right {
    right: 10px;
}

.logo-arrow:hover {
    background: #000;
} */

/* ===============================
   RESPONSIVE
=================================*/
@media (max-width: 768px) {
    .logo-track {
        gap: 30px;
    }

    .logo-item {
        width: 100px;
    }
}

/* ===============================
   SECTION BASE
=================================*/
#incubationprogram {
    background: #ffffff;
    padding: 80px 0;
    font-family: 'Open Sans', sans-serif;
}

#incubationprogram .container {
    width: 90%;
    margin: auto;
}

/* ===============================
   TITLE
=================================*/
.section-title {
    text-align: center;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 34px;
    font-weight: 700;
    color: #222;
    position: relative;
    display: inline-block;
}

/* BLUE UNDERLINE */
.section-title h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #0D5B7A;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* ===============================
   SUBTITLE
=================================*/
.subtitle {
    text-align: center;
    max-width: 700px;
    margin: 15px auto 40px;
}

.subtitle p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* ===============================
   SECTION HEADINGS
=================================*/
/* ===============================
   PROGRAM ROW FIX (FORCE 6 ITEMS)
=================================*/
#incubationprogram .row {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 equal columns */
    gap: 25px;
    margin-top: 20px;
}

/* REMOVE BOOTSTRAP WIDTH EFFECT */
#incubationprogram .col-lg-2,
#incubationprogram .col-sm-6,
#incubationprogram .col-6 {
    width: 100%;
    max-width: 100%;
    flex: unset;
}

/* CARD DESIGN */
.programlist {
    background: #fff;
    padding: 25px 15px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 140px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* IMAGE */
.programlist img {
    max-height: 55px;
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto 10px;
}

/* TITLE */
.programlist h4 {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

/* HOVER */
.programlist:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

@media (max-width: 992px) {
    .col-lg-2 {
        width: calc(33.33% - 14px); /* 3 per row */
    }
}

@media (max-width: 600px) {
    .col-lg-2 {
        width: calc(50% - 10px); /* 2 per row */
    }
}

@media (max-width: 400px) {
    .col-lg-2 {
        width: 100%; /* 1 per row */
    }
}

/* ==========================================
   STARTUP COMMUNITY SECTION
========================================== */

#startups {
    background: #ffffff;
    padding: 70px 0;
    font-family: Arial, sans-serif;
}

/* CONTAINER */
#startups .container {
    width: 92%;
    margin: auto;
}

/* ==========================================
   SECTION TITLE
========================================== */

#startups .section-title {
    text-align: center;
    margin-bottom: 20px;
}

#startups .section-title h2 {
    font-size: 52px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

/* BLUE UNDERLINE */
#startups .section-title h2::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #1d73d4;
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* SUBTITLE */
#startups .subtitle {
    text-align: center;
    max-width: 900px;
    margin: 35px auto 50px;
}

#startups .subtitle p {
    font-size: 20px;
    line-height: 1.7;
    color: #222;
}

/* ==========================================
   COUNTER ROW
========================================== */

.couter-row {
    background: #eef5fb;
    padding: 30px 20px;
    border-radius: 2px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* COUNTER BOX */
.couter-row .item {
    text-align: center;
}

/* NUMBER */
.couter-row .item h3 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
}

/* DIFFERENT COLORS */
.couter-row .item:nth-child(1) h3 {
    color: #2f89d7;
}

.couter-row .item:nth-child(2) h3 {
    color: #6bc018;
}

.couter-row .item:nth-child(3) h3 {
    color: #d89318;
}

.couter-row .item:nth-child(4) h3 {
    color: #d76c00;
}

.couter-row .item:nth-child(5) h3 {
    color: #d0a300;
}

.couter-row .item:nth-child(6) h3 {
    color: #7a11d8;
}

/* TEXT */
.couter-row .item {
    font-size: 16px;
    color: #111;
    line-height: 1.6;
    font-weight: 500;
}

/* ==========================================
   STARTUP CARDS ROW
========================================== */

.portfolio-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* CARD */
.startup_community {
    background: #ffffff;
    border-radius: 4px;
    padding: 20px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: 0.3s;
    min-height: 620px;
}

/* HOVER */
.startup_community:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* COMPANY NAME */
.startup_community h5 {
    font-size: 26px;
    font-weight: 700;
    color: #00428c;
    margin-bottom: 18px;
}

/* IMAGE HOLDER */
.image-holder {
    background: #fafafa;
    border-radius: 14px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    overflow: hidden;
    border: 1px solid #eee;
}

/* IMAGE */
.image-holder img {
    max-width: 75%;
    max-height: 140px;
    object-fit: contain;
}

/* DESCRIPTION */
.startup_community p {
    font-size: 17px;
    line-height: 1.9;
    color: #222;
    margin-bottom: 30px;
}

/* ==========================================
   BUTTON
========================================== */

.btn-own,
.btn-orange {
    display: inline-block;
    background: #f37021;
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

/* BUTTON HOVER */
.btn-own:hover,
.btn-orange:hover {
    background: #f37021;
    transform: translateY(-2px);
}

/* CENTER BUTTON */
#startups center {
    margin-top: 45px;
}

/* ==========================================
   SOCIAL ICONS
========================================== */

.social {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-right: 10px;
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}

/* FACEBOOK */
.social.facebook {
    background: #1877f2;
}

/* TWITTER */
.social.twitter {
    background: #1da1f2;
}

/* LINKEDIN */
.social.linkedin {
    background: #0a66c2;
}

/* HOVER */
.social:hover {
    transform: translateY(-4px);
}

/* ==========================================
   COUNTER SECTION
========================================== */

.couter-row {
    background: #eef5fb;
    border-radius: 8px;
    padding: 35px 25px;
    margin: 40px 0;

    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;

    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

/* COUNTER ITEM */
.couter-row .item {
    text-align: center;
    position: relative;
    transition: 0.3s;
}

/* HOVER EFFECT */
.couter-row .item:hover {
    transform: translateY(-5px);
}

/* NUMBER */
.couter-row .item h3 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1;
}

/* TEXT */
.couter-row .item p {
    font-size: 17px;
    color: #222;
    line-height: 1.7;
    font-weight: 500;
}

/* DIFFERENT COLORS */
.couter-row .item:nth-child(1) h3 {
    color: #2f89d7;
}

.couter-row .item:nth-child(2) h3 {
    color: #67c41c;
}

.couter-row .item:nth-child(3) h3 {
    color: #d89b1b;
}

.couter-row .item:nth-child(4) h3 {
    color: #d96b00;
}

.couter-row .item:nth-child(5) h3 {
    color: #000000;
}

.couter-row .item:nth-child(6) h3 {
    color: #7a11d8;
}

/* OPTIONAL DIVIDER */
.couter-row .item::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 20%;
    width: 1px;
    height: 60%;
    background: rgba(0,0,0,0.08);
}

/* REMOVE LAST DIVIDER */
.couter-row .item:last-child::after {
    display: none;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1200px) {

    .couter-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

    .couter-row {
        grid-template-columns: repeat(2, 1fr);
        padding: 25px 15px;
    }

    .couter-row .item h3 {
        font-size: 42px;
    }

    .couter-row .item p {
        font-size: 15px;
    }

    .couter-row .item::after {
        display: none;
    }
}

@media (max-width: 480px) {

    .couter-row {
        grid-template-columns: 1fr;
    }

    .couter-row .item h3 {
        font-size: 36px;
    }
}
/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1200px) {

    .couter-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .portfolio-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    #startups .section-title h2 {
        font-size: 38px;
    }

    #startups .subtitle p {
        font-size: 17px;
    }

    .couter-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-container {
        grid-template-columns: 1fr;
    }

    .startup_community {
        min-height: auto;
    }
}

@media (max-width: 480px) {

    .couter-row {
        grid-template-columns: 1fr;
    }

    .couter-row .item h3 {
        font-size: 42px;
    }

    .startup_community h5 {
        font-size: 22px;
    }

    .image-holder {
        height: 180px;
    }
}

/* ===== EVENTS SECTION ===== */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: Arial, sans-serif;
  background:#ffffff;
}

.events-section{
  width:100%;
  padding:60px 0 40px;
  background:#ffffff;
}

.container{
  width:90%;
  margin:auto;
}

/* TITLE */

.section-title{
  text-align:center;
  margin-bottom:50px;
}

.section-title h2{
  font-size:56px;
  font-weight:700;
  color:#000;
  margin-bottom:18px;
}

.section-title .line{
  width:50px;
  height:3px;
  background:#2d6cdf;
  margin:0 auto 20px;
}

.section-title p{
  font-size:20px;
  color:#222;
}

/* EVENTS GRID */

.events-wrapper{
  display:flex;
  gap:30px;
  justify-content:center;
  flex-wrap:wrap;
}

/* CARD */

.event-card{
  width:31%;
  background:#fff;
  box-shadow:0 4px 15px rgba(0,0,0,0.08);
  transition:0.3s;
}

.event-card:hover{
  transform:translateY(-5px);
}

.event-image{
  position:relative;
  width:100%;
  height:400px;
  overflow:hidden;
}

.event-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.date-time{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  background:rgba(0,0,0,0.45);
  color:#fff;
  text-align:center;
  padding:10px 0;
  font-size:22px;
  font-weight:600;
}

/* CONTENT */

.event-content{
  padding:22px;
  min-height:300px;
}

.event-content h3{
  color:#003b78;
  font-size:18px;
  font-weight:700;
  line-height:1.5;
  margin-bottom:12px;
}

.event-content h4{
  font-size:16px;
  color:#111;
  margin-bottom:22px;
  font-weight:700;
}

.event-content h4 span{
  margin:0 8px;
}

.offline{
  color:#0095c8;
}

.event-content p{
  color:#222;
  font-size:16px;
  line-height:1.9;
  margin-bottom:35px;
}

/* VIEW MORE */

.view-more{
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  color:#ff6b2c;
  font-size:16px;
  font-weight:700;
}

.view-more span{
  width:20px;
  height:20px;
  background:#ff6b2c;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:12px;
}

/* BUTTON */

.bottom-btn{
  text-align:center;
  margin-top:45px;
}

.bottom-btn a{
  display:inline-block;
  background:#c96d1c;
  color:#fff;
  padding:14px 30px;
  border-radius:4px;
  text-decoration:none;
  font-size:18px;
  font-weight:700;
  transition:0.3s;
}

.bottom-btn a:hover{
  background:#a85811;
}

/* RESPONSIVE */

@media(max-width:992px){

  .event-card{
    width:48%;
  }
}

@media(max-width:768px){

  .section-title h2{
    font-size:42px;
  }

  .event-card{
    width:100%;
  }

  .event-image{
    height:250px;
  }
}

/* =========================
   ROYAL SECTION
========================= */

.royal-section{
    width:100%;
    min-height:100vh;

    /* BACKGROUND IMAGE */
    background:
        url("../assets/iitbg1.webp");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    align-items:center;
    justify-content:flex-end;

    padding:80px 8%;
    position:relative;
    overflow:hidden;
}

/* CONTENT */

.rd-content{
    max-width:650px;
    color:#fff;
    z-index:2;
}

/* TITLE */

.rd-content h1{
    font-size:64px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:25px;
    color:#fff;
}

/* PARAGRAPH */

.rd-content p{
    font-size:20px;
    line-height:1.9;
    margin-bottom:35px;
    color:#f2f2f2;
    max-width:600px;
}

/* BUTTON */

.explore-btn{
    display:inline-block;
    padding:16px 42px;
    background:#f37021;
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:700;
    letter-spacing:1px;
    border-radius:4px;
    transition:0.3s ease;
}

.explore-btn:hover{
    background:#0D5B7A;
    transform:translateY(-4px);
}

/* =========================
   ANIMATIONS
========================= */

.fade-up{
    opacity:0;
    transform:translateY(40px);
    animation:fadeUp 1s ease forwards;
}

.delay-1{
    animation-delay:0.2s;
}

.delay-2{
    animation-delay:0.5s;
}

.delay-3{
    animation-delay:0.8s;
}

@keyframes fadeUp{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .royal-section{
        justify-content:center;
        text-align:center;
        padding:80px 6%;
    }

    .rd-content h1{
        font-size:48px;
    }

    .rd-content p{
        font-size:18px;
    }
}

@media(max-width:768px){

    .royal-section{
        min-height:80vh;
    }

    .rd-content h1{
        font-size:36px;
    }

    .rd-content p{
        font-size:16px;
        line-height:1.8;
    }

    .explore-btn{
        padding:14px 32px;
        font-size:15px;
    }
}

/* MAIN BAR */
/* ==========================================================================
   ISOLATED MAIN NEWS TICKER BAR
   ========================================================================== */
/* ==========================================================================
   FIXED TICKER SLIDER SYSTEM
   ========================================================================== */

/* ==========================================================================
   GLOBAL BULLETPROOF NEWS TICKER CSS ENGINE
   ========================================================================== */

.news-ticker {
    width: 100% !important;
    height: 55px !important;
    background: #F8D874 !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    position: relative !important;
    clear: both !important;
    z-index: 10 !important;
}

.ticker-wrapper {
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
}

/* THE MOVING TRACK ELEMENT */
.ticker-track {
    display: flex !important;
    width: max-content !important;
    white-space: nowrap !important;
    /* This connects explicitly to the keyframe below */
    animation: globalTickerMove 25s linear infinite !important; 
}

/* INDIVIDUAL NEWS NODES */
.ticker-track span {
    padding: 0 30px !important;
    white-space: nowrap !important;
    line-height: 55px !important;
    font-size: 16px !important;
    display: inline-block !important;
}

.ticker-track span a {
    color: #000000 !important;
    text-decoration: none !important;
}

.ticker-track span::after {
    content: "•" !important;
    color: #f37021 !important;
    margin-left: 30px !important;
    display: inline-block !important;
}

/* PAUSE ON HOVER */
.news-ticker:hover .ticker-track {
    animation-play-state: paused !important;
}

/* UNIFIED GLOBAL KEYFRAME FOR INFINITE SCROLL */
@keyframes globalTickerMove {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* ==========================================================================
   PRODUCTION RECOVERY: PERFECT VERTICAL CENTERING FOR MOBILE TICKER
   ========================================================================== */

/* ==========================================================================
   PRODUCTION BUGFIX: PREVENT HEADER OVERLAP & FIX TICKER CLIPPING
   ========================================================================== */

@media screen and (max-width: 1024px) {
    /* 1. Reset sticky behavior on mobile to standard boundaries */
    header {
        position: relative !important; /* Temporarily removes sticky behavior if it conflicts with content stack */
        top: 0 !important;             /* Fixes the desktop 27px layout shift bug */
        height: auto !important;
        margin: 0 !important;
    }

    /* 2. Clear out any ghost spaces left by top-bar shifts */
    .top-bar {
        position: relative !important;
        height: auto !important;
        min-height: 35px !important;
    }

    /* 3. FORCE FULL HEIGHT AND EXPANSION ON TICKER SYSTEM */
    section.news-ticker {
        display: flex !important;
        height: 44px !important;       /* Forces bar to expand to full visible height */
        min-height: 44px !important;
        position: relative !important;
        clear: both !important;        /* Breaks completely away from logo layers above */
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #F8D874 !important;
    }

    /* Reset ticker wrapper internal layout track */
    section.news-ticker .ticker-wrapper {
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
    }

    section.news-ticker .ticker-track {
        display: flex !important;
        align-items: center !important;
        height: 100% !important;
    }

    /* 4. Perfect layout alignment inside text track nodes */
    section.news-ticker .ticker-track span {
        display: inline-flex !important;
        align-items: center !important; /* Modern vertical center lock */
        height: 44px !important;
        line-height: 44px !important;
        font-size: 13px !important;
        padding: 0 15px !important;
    }

    section.news-ticker .ticker-track span a {
        font-size: 13px !important;
        line-height: inherit !important;
    }
}

/* --- DONT LEAVE CRASHING TRACK ELEMENTS AT THE BOTTOM OF THE FILE --- */

/* Sidebar Fix */
/* Sidebar Fix */
/*.sticky-left-nav {*/
/*    position: fixed;*/
/*    left: 40px;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    z-index: 99999;*/
/*}*/

/*.stick-left-nav-ul {*/
/*    list-style: none;*/
/*    padding: 0;*/
/*    margin: 0;*/
/*}*/

/*.opensidenav {*/
  /*  margin-bottom: 35px; /* Adjust spacing between lines */
/*    position: relative;*/
   /* height: 20px; /* Fixed height so lines never move */
/*    display: flex;*/
/*    align-items: center;*/
/*}*/

/* THE LINE - Static state */
/*.activeclass::before {*/
/*    content: "";*/
/*    display: block;*/
/*    width: 25px;*/
/*    height: 1.5px;*/
/*    background-color: #333;*/
/*    transition: all 0.4s ease;*/
/*}*/

/* THE TITLE (SPAN) - Forced hidden by default */
/*.activeclass span {*/
/*    position: absolute;*/
/*    left: 0;*/
   /* top: 15px; /* Position text directly under the line */
/*    width: 150px;*/
/*    font-size: 11px;*/
/*    font-weight: 700;*/
/*    color: #333;*/
/*    text-transform: uppercase;*/
/*    line-height: 1.2;*/
    
    /* The Vanishing Logic */
/*    opacity: 0 !important;*/
/*    visibility: hidden !important;*/
/*    transform: translateY(-5px);*/
/*    transition: opacity 0.3s ease, transform 0.3s ease;*/
/*    pointer-events: none;*/
/*}*/

/* ==========================================
   ACTIVE STATE: Only one active at a time
========================================== */

/* 1. Expand the line */
/*.activeclass.current::before {*/
/*    width: 55px !important;*/
/*    height: 2.5px !important;*/
/*    background-color: #000;*/
/*}*/

/* 2. Show the text */
/*.activeclass.current span {*/
/*    opacity: 1 !important;*/
/*    visibility: visible !important;*/
/*    transform: translateY(0);*/
/*}*/

/* Black Background Logic (for dark sections) */
/*.sticky-left-nav.blackbg .activeclass::before { background-color: #fff; }*/
/*.sticky-left-nav.blackbg .activeclass span { color: #fff; }*/
        
    /* ============================= */
/* PROGRAM SECTION */
/* ============================= */

/* ============================= */
/* PROGRAM SECTION */
/* ============================= */
/* ==========================================================================
   ISOLATED SINGLE-ROW PROGRAMS GRID WRAPPER CSS MODULE
   ========================================================================== */
/* ==========================================================================
   PRODUCTION CSS: IIMJ ISOLATED PROGRAMS SECTION ONLY
   ========================================================================== */
/* ==========================================================================
   UNIFIED STYLES: DESKTOP & MOBILE ACCURATE CENTERING ENGINE
   ========================================================================== */

/* --- 1. BASE DESKTOP STYLES (Fixes Left Alignment on Webpage) --- */

.iimj-isolated-container {
    background-color: #ffffff ; /* FORCED DEEP BLUE THEME BACKGROUND */
    padding: 60px 0 !important;
    margin: 40px 0 !important;
    width: 100% !important;
    display: block !important;
    box-sizing: border-box !important;
    clear: both !important;
}

.iimj-heading-flex-row {
    display: flex !important;
    flex-direction: column !important; /* Forces layout to stack cleanly */
    align-items: center !important;    /* Centers children horizontally on Desktop */
    justify-content: center !important;
    text-align: center !important;      /* Centers inner text fields */
    padding: 0 40px !important;
    margin-bottom: 30px !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

.iimj-title-left-column {
    text-align: center !important;     /* Force Desktop Center */
    max-width: 100% !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;     /* Structural Desktop Flex Centering */
}

/* Force Desktop text color adjustments over inline styles */
section.iimj-isolated-container div.iimj-title-left-column h2 {
    color: #000000 ; 
    font-size: 38px !important;
    font-weight: 700 !important;
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
    text-align: center !important;
}

section.iimj-isolated-container div.iimj-title-left-column p {
    color: #000000 !important; 
    font-size: 16px !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.6 !important;
    text-align: center !important;
    max-width: 800px; /* Prevents text from stretching too wide on massive screens */
}

/* Base structural adjustments for desktop tracking layout */
.iimj-nav-buttons-right-column {
    display: flex !important;
    gap: 12px !important;
    margin-top: 15px !important;
    margin-bottom: 5px !important;
    justify-content: center !important; /* Center navigation buttons on desktop */
}

/* Nav Control Arrows Button circles */
.iimj-nav-arrow-btn {
    width: 44px !important;
    height: 44px !important;
    border: 1px solid #f37021 !important;
    background: transparent !important;
    color: #000000 !important;
    border-radius: 50% !important;
    font-size: 16px !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.25s ease !important;
    outline: none !important;
    padding: 0 !important;
}

.iimj-nav-arrow-btn:hover {
    background: #f37021 !important;
    border-color: #f37021 !important;
}

/* Horizontal Axis Scroller view window track */
.iimj-scroller-track {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 20px 40px 40px 40px !important;
    box-sizing: border-box !important;
    display: block !important;
    white-space: nowrap !important;
    clear: both !important;
}

.iimj-programs-flex-row-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 30px !important;
    width: max-content !important;
}

/* Individual Card Engine Frames */
.iimj-rigid-card {
    position: relative !important;
    width: 380px !important;
    min-width: 380px !important;
    max-width: 380px !important;
    height: 420px !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4) !important;
    white-space: normal !important;
}

/* Background Gradients mapping */
.card-bg-pre-incubation     { background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.2)), url('../assets/light.jpg') !important; background-size: cover; background-position: center; }
.card-bg-physical-incubation{ background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.2)), url('../assets/business.jpg') !important; background-size: cover; background-position: center; }
.card-bg-virtual-incubation { background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.2)), url('../assets/innovation.jpg') !important; background-size: cover; background-position: center; }
.card-bg-nidhi-fellowship   { background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.2)), url('../assets/woman.jpg') !important; background-size: cover; background-position: center; }
.card-bg-corporate-program  { background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.2)), url('../assets/business.jpg') !important; background-size: cover; background-position: center; }
.card-bg-skill-development  { background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.2)), url('../assets/career.jpg') !important; background-size: cover; background-position: center; }

.iimj-static-badge {
    width: 90% !important;
    background: #ffffff !important;
    color: #000000 !important;
    text-align: center !important;
    padding: 16px 10px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
    border-radius: 4px !important;
    z-index: 2 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    transition: transform 0.35s ease, opacity 0.3s ease !important;
}

.iimj-hover-panel-box {
    position: absolute !important;
    width: 88% !important;
    height: 84% !important;
    top: 8% !important;
    left: 6% !important;
    background: #ffffff !important;
    border-radius: 6px !important;
    padding: 25px 20px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: scale(0.85) !important;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.35s ease, visibility 0.35s ease !important;
    z-index: 5 !important;
    box-shadow: 0 12px 35px rgba(0,0,0,0.3) !important;
}

.iimj-rigid-card:hover .iimj-static-badge { opacity: 0 !important; transform: translateY(20px) !important; }
.iimj-rigid-card:hover .iimj-hover-panel-box { opacity: 1 !important; visibility: visible !important; transform: scale(1) !important; }
.iimj-hover-panel-box h3 { font-size: 22px !important; color: #000000 !important; margin: 0 0 12px 0 !important; font-weight: 700 !important; }
.iimj-hover-panel-box p { font-size: 14px !important; color: #444444 !important; line-height: 1.5 !important; margin: 0 0 20px 0 !important; }

.iimj-action-btn-pill a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 10px 24px !important;
    border: 1.5px solid #28a745 !important;
    color: #28a745 !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
}
.iimj-action-btn-pill a:hover { background-color: #28a745 !important; color: #ffffff !important; }
.iimj-action-btn-pill a span { transition: transform 0.2s ease !important; }
.iimj-action-btn-pill a:hover span { transform: translateX(4px) !important; }

/* Custom Scrollbar */
.iimj-scroller-track::-webkit-scrollbar { height: 8px !important; display: block !important; }
.iimj-scroller-track::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.05) !important; border-radius: 6px !important; }
.iimj-scroller-track::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.2) !important; border-radius: 6px !important; }
.iimj-scroller-track::-webkit-scrollbar-thumb:hover { background: #28a745 !important; }


/* --- 2. CRITICAL MOBILE MEDIA QUERY STYLES (TRIPLE SPECIFICITY DEFEATER) --- */

@media (max-width: 1024px) {
    .iimj-isolated-container {
        padding: 40px 0 !important;
        margin: 20px 0 !important;
    }

    .iimj-heading-flex-row {
        padding: 0 20px !important;
        margin-bottom: 20px !important;
    }

    /* TRIPLE ATTRIBUTE SPECIFICITY TO CRUSH DESKTOP LEFT SHIFTS & INLINE MARGINS */
    section.iimj-isolated-container div.iimj-title-left-column h2[style] {
        margin-left: 0px !important;
        margin-right: 0px !important;
        text-align: center !important;
        font-size: 26px !important;
        color: #ffffff !important; 
        display: block !important;
        width: 100% !important;
    }

    section.iimj-isolated-container div.iimj-title-left-column p[style] {
        margin-left: 0px !important;
        margin-right: 0px !important;
        text-align: center !important;
        font-size: 14px !important;
        color: #e2f1f8 !important; 
        display: block !important;
        width: 100% !important;
        line-height: 1.5 !important;
    }

    .iimj-title-left-column br,
    .iimj-isolated-container > br {
        display: none !important;
    }

    .iimj-nav-buttons-right-column {
        display: none !important; /* Hidden completely on mobile devices */
    }

    .iimj-scroller-track {
        padding: 10px 20px 30px 20px !important;
        -webkit-overflow-scrolling: touch !important; 
    }

    .iimj-programs-flex-row-track {
        gap: 20px !important;
    }

    .iimj-rigid-card {
        width: 290px !important;
        min-width: 290px !important;
        max-width: 290px !important;
        height: 370px !important;
    }

    .iimj-static-badge {
        font-size: 16px !important;
        padding: 14px 10px !important;
        margin-bottom: 20px !important;
    }

    .iimj-hover-panel-box {
        width: 92% !important;
        height: 88% !important;
        top: 6% !important;
        left: 4% !important;
        padding: 20px 15px !important;
    }

    .iimj-hover-panel-box h3 { font-size: 18px !important; margin-bottom: 8px !important; }
    .iimj-hover-panel-box p { font-size: 13px !important; margin-bottom: 15px !important; line-height: 1.4 !important; }
}

@media (max-width: 480px) {
    section.iimj-isolated-container div.iimj-title-left-column h2[style] {
        font-size: 22px !important;
    }
}

/* General Section Styles */
/* =========================================
   CAMPUS SECTION
========================================= */
/* ==========================================================================
   SYMMETRICAL EQUAL HEIGHT/WIDTH CAMPUS GRID LAYOUT MODULATOR
   ========================================================================== */

.campus-section {
    padding: 90px 0;
    background: #ffffff;
    width: 100%;
    box-sizing: border-box;
}

.campus-container {
    width: 90%;
    max-width: 1500px;
    margin: 0 auto;
}

/* HEADING */
.campus-heading {
    text-align: center;
    margin-bottom: 50px;
}

.campus-heading h2 {
    font-size: 52px; /* Standard balanced viewport size ratio */
    font-weight: 900;
    margin-bottom: 15px;
    color: #111111;
}

.campus-heading h2 span {
    color: #214aab; /* Aligned custom matching background brand color */
}

.campus-heading p {
    font-size: 20px;
    color: #555555;
}

/* MAIN WRAPPER CONTAINER GRID SYSTEM */
.campus-main-wrapper {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important; /* Compels both left/right child nodes to have identical heights */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    width: 100%;
    height: 700px !important; /* Fixed height constraint across desktop monitors */
}

/* =========================================
   LEFT SLIDER PANEL (EXACT 50% SHARE)
   ========================================= */
.campus-slider {
    position: relative !important;
    width: 50% !important; /* Identical equal split metric */
    height: 100% !important;
    overflow: hidden;
}

.campus-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.campus-slide.active {
    opacity: 1;
    z-index: 2;
}

.campus-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campus-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 45px;
    color: #ffffff;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 40%, transparent 100%);
    z-index: 3;
    box-sizing: border-box;
}

.campus-overlay h3 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 12px;
}

.campus-overlay p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 85%;
    margin-bottom: 25px;
    white-space: normal;
}

.campus-overlay a {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid #ffffff;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.campus-overlay a:hover {
    background: #ffffff;
    color: #111111;
}

/* CAROUSEL BUTTONS */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #111111;
    font-size: 20px;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.prev-btn:hover, .next-btn:hover {
    background: #f37021;
    color: #ffffff;
}
.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    opacity: 0.5;
    transition: all 0.3s ease;
}
.dot.active {
    background: #f37021;
    opacity: 1;
}

/* =========================================
   RIGHT GRID PANEL (EXACT 50% SHARE)
   ========================================= */
.campus-right-panel {
    width: 50% !important; /* Identical equal split metric */
    height: 100% !important;
    background: #214AAB; /* Aligned custom matching background brand color */
    padding: 40px;
    box-sizing: border-box;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important; /* Distributes vertical internal whitespace padding flow */
}

.campus-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    height: calc(100% - 80px) !important; /* Leaves precise allocation floor padding spacing for bottom wrap pill button links */
}

.campus-grid-box {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 25px 20px;
    color: #ffffff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.campus-grid-box:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
}

.campus-icon {
    font-size: 36px;
    color: #bcc0bd; /* Accent orange brand color */
    margin-bottom: 10px;
}

.campus-grid-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.campus-grid-box p {
    font-size: 13px;
    line-height: 1.5;
    color: #e2f1f8;
    margin: 0 0 12px 0;
}

.campus-grid-box a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s ease;
}
.campus-grid-box a:hover {
    color: #f37021;
}

/* BOTTOM CENTER PANEL EXPLORE BUTTON LINK PILL */
.campus-btn-wrap {
    margin-top: 20px;
    text-align: center;
    width: 100%;
}

.campus-btn {
    display: inline-block;
    background: #ffffff;
    color: #0d5b7a;
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 800;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.campus-btn:hover {
    background: #f37021;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVE DESIGN ADAPTATIONS
   ========================================================================== */

@media(max-width: 1200px) {
    .campus-main-wrapper {
        flex-direction: column !important;
        height: auto !important; /* Relaxes strict row tracking heights on down-scaled monitor views */
    }
    .campus-slider, .campus-right-panel {
        width: 100% !important;
    }
    .campus-slider {
        height: 500px !important;
    }
    .campus-right-panel {
        height: auto !important;
        padding: 40px 20px;
    }
    .campus-grid {
        height: auto !important;
    }
}

@media(max-width: 768px) {
    .campus-heading h2 { font-size: 36px; }
    .campus-heading p { font-size: 16px; }
    
    .campus-grid {
        grid-template-columns: 1fr !important; /* Collapses into crisp single-stack items seamlessly */
        gap: 15px !important;
    }
    .campus-slider {
        height: 400px !important;
    }
    .campus-overlay {
        padding: 25px;
    }
    .campus-overlay h3 {
        font-size: 24px;
    }
}
/* =========================================
   CAREER HIGHLIGHT SECTION
========================================= */

.career-highlight-section{
    position:relative;
    padding:90px 0;
    overflow:hidden;
    background:url('../assets/career-bg2.jpg') center center/cover no-repeat;
    min-height:700px;
}

/* OVERLAY */
.career-overlay{
    position:absolute;
    inset:0;
    /*background:rgba(255,255,255,0.88);*/
}

/* MAIN CONTAINER */
.career-highlight-container{
    position:relative;
    z-index:2;
    width:90%;
    max-width:1500px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

/* =========================================
   LEFT SIDE
========================================= */

.career-left{
    flex:1;
}

/* SMALL TITLE */
.career-left h4{
    font-size:70px;
    font-weight:300;
    margin:0;
    letter-spacing:4px;

    background:linear-gradient(90deg,#000000,#000000);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* BIG TITLE */
.career-left h2{
    font-size:110px;
    font-weight:900;
    line-height:0.92;
    margin-top:10px;

    background:linear-gradient(90deg,#02417c,#0a84ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    text-shadow:
        0 4px 20px rgba(0,0,0,0.08);
}

/* =========================================
   RIGHT SIDE
========================================= */

.career-right{
    flex:1.2;
    position:relative;
}

/* SCROLL BOX */
.career-scroll-area{
    height:560px;
    overflow-y:auto;
    background:#f7f7f7;
    border-radius:24px;
    padding:25px;
    padding-right:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* SCROLLBAR */
.career-scroll-area::-webkit-scrollbar{
    width:8px;
}

.career-scroll-area::-webkit-scrollbar-thumb{
    background:#999;
    border-radius:20px;
}

/* =========================================
   CARD
========================================= */

.career-mini-card{
    display:flex;
    gap:22px;
    padding:24px;
    border:1px solid #bdbdbd;
    border-radius:20px;
    background:#fff;
    margin-bottom:22px;
    cursor:pointer;
    transition:0.3s ease;
}

.career-mini-card:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 24px rgba(0,0,0,0.08);
}

/* =========================================
   LOGO
========================================= */

.career-card-logo{
    width:100px;
    min-width:100px;
    height:100px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#ffffff;
    border-radius:14px;
    overflow:hidden;
}

.career-card-logo img{
    width:90px;
    height:90px;
    object-fit:contain;
}

/* =========================================
   CONTENT
========================================= */

.career-card-content{
    flex:1;
}

/* TITLE */
.career-card-content h3{
    margin:0;
    font-size:15px;
    font-weight:700;
    color:#222;
    margin-bottom:14px;

    display:-webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* DESC */
.career-card-content p{
    font-size:15px;
    color:#555;
    line-height:1.7;
    margin-bottom:18px;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* META */
.career-meta{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
    margin-bottom:18px;
}

.career-meta span{
    font-size:13px;
    color:#666;
}

.career-meta i{
    color:#0056d2;
    margin-right:6px;
}

/* BOTTOM */
.career-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.posted-date{
    font-size:12px;
    color:#888;
}

.career-bottom a{
    text-decoration:none;
    color:#0056ff;
    font-weight:600;
    font-size:16px;
}

/* =========================================
   BUTTON
========================================= */

.career-btn-wrap{
    position:absolute;
    bottom:10px;
    right:30px;
}

.career-view-btn{
    display:inline-block;
    background:#f37021;
    color:#fff;
    padding:16px 34px;
    border-radius:10px;
    font-size:20px;
    font-weight:700;
    text-decoration:none;
    transition:0.3s ease;
}

.career-view-btn:hover{
    transform:translateY(-2px);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

    .career-left h4{
        font-size:50px;
    }

    .career-left h2{
        font-size:75px;
    }

}

@media(max-width:991px){

    .career-highlight-container{
        flex-direction:column;
        gap:40px;
    }

    .career-left{
        text-align:center;
    }

    .career-left h4{
        font-size:42px;
    }

    .career-left h2{
        font-size:60px;
    }

    .career-right{
        width:100%;
    }

    .career-scroll-area{
        height:500px;
    }

}

@media(max-width:768px){

    .career-mini-card{
        flex-direction:column;
    }

    .career-card-logo{
        width:100px;
        min-width:100px;
        height:100px;
    }

    .career-card-content h3{
        font-size:22px;
    }

    .career-card-content p{
        font-size:15px;
    }

    .career-btn-wrap{
        position:static;
        margin-top:20px;
        text-align:right;
    }

    .career-view-btn{
        font-size:16px;
        padding:12px 20px;
    }

}