:root {
    --primary: #002347; /* SDMIT Navy */
    --secondary: #D32F2F; /* SDMIT Red */
    --accent: #FFC107;
    --text-dark: #1A1A1A;
    --text-light: #5A5A5A;
    --bg-light: #F7F9FC;
    --white: #FFFFFF;
    
    --font-heading: 'Playfair Display', serif; /* Lincoln-esque academic prestige */
    --font-body: 'Inter', sans-serif; /* Modern readability */
    
    --spacing-sm: 1rem;
    --spacing-md: 2.5rem;
    --spacing-lg: 5rem;
    --spacing-xl: 8rem;
    
    --radius-md: 8px;
    --radius-lg: 20px;
    
    --shadow-subtle: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--text-light); line-height: 1.6; background: var(--bg-light); }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--text-dark); line-height: 1.2; }

/* Announcement Bar */
.announcement-bar { background: var(--secondary); color: var(--white); padding: 0.5rem; text-align: center; font-size: 0.875rem; font-weight: 500; }

/* Header / Navigation */
.site-header { background: var(--white); padding: 1.5rem 5%; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow-subtle); }
.site-logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--primary); text-decoration: none; }
.main-nav ul { display: flex; gap: 2rem; list-style: none; }
.main-nav a { text-decoration: none; color: var(--text-dark); font-weight: 600; transition: color 0.3s; }
.main-nav a:hover { color: var(--secondary); }

/* Buttons */
.btn { display: inline-block; padding: 1rem 2rem; border-radius: 50px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; }
.btn-primary { background: var(--secondary); color: var(--white); }
.btn-primary:hover { background: #B71C1C; transform: translateY(-3px); box-shadow: var(--shadow-hover); }

/* Layouts */
.container { max-width: 1400px; margin: 0 auto; padding: 0 5%; }
.section { padding: var(--spacing-xl) 0; }

/* Typography Hierarchy */
.heading-xl { font-size: clamp(3rem, 5vw, 5rem); font-weight: 700; color: var(--primary); margin-bottom: 1rem; }
.heading-lg { font-size: clamp(2rem, 3.5vw, 3.5rem); margin-bottom: var(--spacing-md); }
.subtitle { font-size: 1.25rem; font-weight: 400; max-width: 600px; }

/* Hero Section */
.hero { min-height: 85vh; display: flex; align-items: center; background: url('../images/campus.jpg') center/cover; position: relative; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,35,71,0.9) 0%, rgba(0,35,71,0.4) 100%); }
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 800px; }
.hero-content h1 { color: var(--white); }
.hero-content .subtitle { color: rgba(255,255,255,0.9); margin-bottom: 2rem; }

/* Overlapping Stats Cards (Lincoln Style) */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: -80px; position: relative; z-index: 10; }
.stat-card { background: var(--white); padding: 3rem 2rem; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-subtle); border-top: 5px solid var(--secondary); transition: transform 0.3s; }
.stat-card:hover { transform: translateY(-10px); }
.stat-number { font-size: 3.5rem; font-family: var(--font-heading); color: var(--primary); font-weight: 700; }
.stat-label { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); }

/* Program Cards Grid */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2.5rem; }
.program-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-subtle); transition: all 0.3s; }
.program-card:hover { box-shadow: var(--shadow-hover); }
.program-image { height: 250px; background: #ddd; }
.program-content { padding: 2rem; }
.program-type { color: var(--secondary); font-weight: 700; font-size: 0.875rem; margin-bottom: 0.5rem; display: block; }
.program-content h3 { font-size: 1.5rem; margin-bottom: 1rem; }

/* Responsive */
@media (max-width: 768px) {
    .stats-grid { grid-template-columns: 1fr; margin-top: 2rem; padding: 0 5%; }
    .main-nav { display: none; /* Add JS toggle for mobile */ }
    .heading-xl { font-size: 2.5rem; }
}
/* public/assets/css/style.css - Pathway Grid Addition */
.pathway-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    padding: var(--spacing-lg) 5%;
}

.pathway-card {
    display: flex;
    align-items: flex-end;
    min-height: 320px;
    padding: 2rem;
    text-decoration: none;
    border-radius: var(--radius-md);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pathway-card::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Replicating the solid/gradient overlays from the reference */
    background: linear-gradient(to top, rgba(0, 35, 71, 0.9) 0%, rgba(0, 35, 71, 0.2) 100%);
}

.pathway-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.pathway-title {
    position: relative;
    z-index: 2;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
}
/* Mega Menu Structure */
.nav-item {
    position: relative;
    padding: 1rem 0;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: -20vw; /* Center alignment adjustment */
    width: 60vw;
    background: var(--white);
    box-shadow: var(--shadow-hover);
    border-radius: var(--radius-md);
    padding: 3rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    z-index: 1000;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-column h4 {
    font-size: 1.125rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 0.5rem;
}

.mega-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mega-menu-list a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.mega-menu-list a:hover {
    color: var(--secondary);
}
/* public/assets/css/style.css - Placement Additions */
.recruiter-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background: var(--white);
    padding: 3rem 0;
    box-shadow: var(--shadow-subtle);
    border-radius: var(--radius-lg);
}

.marquee-content {
    display: inline-block;
    animation: scroll 30s linear infinite;
}

.marquee-content img {
    height: 60px;
    margin: 0 3rem;
    vertical-align: middle;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.marquee-content img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.counter-value {
    visibility: hidden; /* Hidden until JS intersection observer triggers */
}
.counter-value.visible {
    visibility: visible;
}
/* public/assets/css/style.css - Student Life Grid */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
}

/* Feature specific cards to span two columns on larger screens */
@media (min-width: 768px) {
    .span-2 {
        grid-column: span 2;
    }
}

.facility-card {
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 350px;
    box-shadow: var(--shadow-hover);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.facility-card:hover {
    transform: translateY(-5px);
}

.facility-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}
/* Updated Hero Background with Photographic Blend */
.dark-hero {
    /* The linear gradient creates the solid black on the left that smoothly fades out to reveal the image on the right */
    background: linear-gradient(to right, #000000 25%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0) 100%), 
                url('/public/assets/images/campus-students.jpg') center right/cover no-repeat;
    min-height: 100vh;
    color: #ffffff;
    font-family: Georgia, serif;
    position: relative;
    overflow: hidden;
}

/* Floating Search Card */
.hero-content {
    padding: 4rem;
    position: relative;
}
.search-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 4rem 3rem;
    max-width: 550px;
    position: relative;
    color: #000000;
    font-family: Arial, sans-serif;
}

/* Highly Condensed Typography */
.impact-heading {
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: 5.5rem;
    color: #003355; /* Dark navy blue from reference */
    line-height: 0.85;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

/* Form Styles */
.input-group {
    display: flex;
    align-items: center;
    border: 1px solid #cccccc;
    border-radius: 5px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}
.input-group input {
    border: none;
    outline: none;
    width: 100%;
    margin-left: 0.5rem;
    font-size: 1rem;
}
.btn-teal {
    background-color: #26B5C4; /* Teal color from reference */
    color: #ffffff;
    border: none;
    width: 100%;
    padding: 1rem;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 2rem;
}

/* Bottom Link */
.browse-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #003355;
    text-decoration: none;
    font-weight: bold;
}
.arrow-circle {
    border: 1px solid #003355;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Abstract Overlap Graphics */
.abstract-graphics {
    position: absolute;
    top: -50px;
    right: -100px;
    width: 250px;
    z-index: 10;
    pointer-events: none;
}
/* Action Cards Grid Container */
.action-section {
    padding: 4rem;
    margin-top: -80px; /* Pulls the grid up slightly to overlap the dark hero if desired, or set to 0 for flush layout */
    position: relative;
    z-index: 20;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Base Card Styles */
.action-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 320px;
}

.action-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Specific Card Themes */
.light-card {
    background-color: #ffffff;
    color: #000000;
}

.orange-card {
    background-color: #E84A15; /* Bright orange from the reference */
    color: #ffffff;
    justify-content: center;
}

/* Typography & Elements */
.card-heading {
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: 2.2rem;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #003355;
    letter-spacing: -0.5px;
}

.text-white {
    color: #ffffff !important;
}

.card-text {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: auto; /* Pushes the link to the bottom */
    color: #444444;
}

/* Pill Tags (Green & Purple from reference) */
.card-pill {
    font-family: Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.green-pill {
    background-color: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #C8E6C9;
}

.purple-pill {
    background-color: #F3E5F5;
    color: #7B1FA2;
    border: 1px solid #E1BEE7;
}

/* Bottom Links */
.card-link {
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #26B5C4; /* Teal accent */
    margin-top: 2rem;
    display: inline-block;
}