/* --- Root Variables --- */
:root {
    --primary: #003366;
    --secondary: #ff6600;
    --light-bg: #f4f7f6;
    --white: #ffffff;
    --text: #333;
    --gray: #666;
    --border: #d1d8e0;
    --danger: #e74c3c;
}

/* --- Global Reset --- */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
}

/* ============================= */
/* Global */
/* ============================= */
body {
    background-color: var(--light-bg);
    color: var(--text);
    overflow-x: hidden;
    margin: 0;
}

/* ============================= */
/* Ticker */
/* ============================= */
.ticker {
    background: var(--primary);
    color: #fff;
    padding: 10px;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0.85rem;
    position: relative;
    z-index: 1001;
}

.ticker-wrap {
    display: inline-block;
    animation: ticker 25s linear infinite;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ============================= */
/* Header */
/* ============================= */
header {
    background: var(--white);
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
}

.logo {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--primary);
    z-index: 1002;
}

.logo span { color: var(--secondary); }

.menu-toggle {
    display: none;
    font-size: 1.6rem;
    color: var(--primary);
    cursor: pointer;
    z-index: 1002;
}

/* ============================= */
/* Navigation */
/* ============================= */
nav { height: 100%; }

nav ul.main-nav {
    display: flex;
    list-style: none;
    gap: 10px;
    height: 100%;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    height: 100%;
    display: flex;
    align-items: center;
    position: static;
}

.nav-item > a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

/* ============================= */
/* Mega Menu */
/* ============================= */
.mega-menu {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    display: none;
    grid-template-columns: repeat(3, 1fr) 300px;
    gap: 20px;
    padding: 40px 8%;
    border-bottom: 4px solid var(--secondary);
    z-index: 1100;
}

.nav-item:hover .mega-menu { display: grid; }

.mega-col h4 {
    color: var(--primary);
    margin-bottom: 15px;
    border-left: 4px solid var(--secondary);
    padding-left: 10px;
}

.mega-col ul { list-style: none; padding: 0; }

.mega-col ul li a {
    text-decoration: none;
    color: #555;
    font-size: 0.9rem;
    padding: 8px 0;
    display: block;
    border-bottom: 1px solid #f0f0f0;
}

/* ============================= */
/* Menu Ad Slider */
/* ============================= */
.menu-ad-slider {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    height: auto;
    overflow: hidden;
}

.menu-ad-slide { display: none; text-align: center; }

.menu-ad-slide.active {
    display: block;
    animation: fadeIn 0.5s;
}

.menu-ad-slide img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.menu-ad-slide h5 {
    color: var(--primary);
    margin-bottom: 5px;
}

.menu-ad-slide p {
    font-size: 0.8rem;
    color: #666;
}

/* ============================= */
/* Auth Buttons */
/* ============================= */
.auth-btns {
    display: flex;
    align-items: center;
}

.auth-btns .btn {
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-left: 10px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-login {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-reg {
    background: var(--secondary);
    color: #fff;
}

/* ============================= */
/* Tablet View */
/* ============================= */
@media (max-width: 1280px) {

    header {
        height: 70px;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 260px;
        height: 100vh;
        background: #fff;
        box-shadow: 5px 0 20px rgba(0,0,0,0.1);
        transition: 0.3s;
        padding-top: 20px;
    }

    nav.active { left: 0; }

    nav ul.main-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        height: auto;
    }

    .nav-item > a {
        padding: 15px 20px;
        width: 100%;
    }

    .mega-menu {
        position: static;
        width: 100%;
        display: none;
        grid-template-columns: 1fr;
        padding: 20px;
        box-shadow: none;
        border: none;
    }

    .nav-item:hover .mega-menu {
        display: none;
    }

    .auth-btns {
        flex-direction: column;
        width: 100%;
        padding: 20px;
    }

    .auth-btns .btn {
        width: 100%;
        margin: 10px 0 0 0;
        text-align: center;
    }
}

/* ============================= */
/* Mobile View */
/* ============================= */
@media (max-width: 480px) {

    .logo { font-size: 1.3rem; }

    .ticker {
        font-size: 0.75rem;
        padding: 8px;
    }

    header {
        padding: 0 4%;
    }

    .auth-btns .btn {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}

/* --- Hero Section & Main Slider --- */
.content-container {
    width: 100%;
    margin: 0;
    padding: 5%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;

    /* Lightened Gradient: Steel Blue, Soft Gray, and Peach-Orange */
    background: linear-gradient(
        135deg, 
        #ffc385 0%,    /* Lightened Navy (Steel Blue) starts */
        #ffc385 15%,   /* Steel Blue ends */
        #e8e8e8 30%,   /* Transition to Very Light Gray */
        #e8e8e8 70%,   /* Soft Gray dominates center */
        #5c7a99 85%,   /* Transition to Light Peach-Orange */
        #5c7a99 100%   /* Light Orange ends */
    );

    background-size: 180% 180%;
    animation: gradientFlow 16s ease infinite;
}

/* Smooth animated gradient */
@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.hero-section { display: flex; height: 500px; gap: 25px; }
.main-slider { width: 75%; position: relative; border-radius: 20px; overflow: hidden; }
.slide { position: absolute; width: 100%; height: 100%; opacity: 0; transition: 1s; display: flex; align-items: center; padding: 0 8%; background-size: cover; background-position: center; }
.slide.active { opacity: 1; }
.slide::after { content: ""; position: absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(to right, rgba(0,0,0,0.8), transparent); }
.slide-content { color: white; max-width: 600px; z-index: 2; }
.slide-content h1 { font-size: clamp(1.8rem, 5vw, 3.2rem); line-height: 1.1; margin-bottom: 1rem; }

.sponsored-slider { width: 25%; background: white; border-radius: 20px; padding: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); display: flex; flex-direction: column; }
.sp-badge { background: #fff3e0; color: var(--secondary); font-size: 0.7rem; padding: 4px 10px; border-radius: 20px; font-weight: bold; margin-bottom: 10px; display: inline-block; }
/* Orange Variation */
.bg-orange { 
    background: #fff3e0; 
    color: #ff9800; 
    border: 1px solid #ffe0b2;
}

/* Navy Blue Variation */
.bg-navy { 
    background: #e1e9f4; 
    color: #1a237e; 
    border: 1px solid #c5cae9;
}

/* --- Feature Cards --- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 30px; }
.feature-card { background: white; padding: 30px 15px; border-radius: 15px; text-align: center; border-top: 5px solid var(--primary); transition: 0.3s; }
.feature-card:hover { transform: translateY(-5px); }
.feature-card i { font-size: 2rem; color: var(--secondary); margin-bottom: 15px; }

/* --- About Section (Responsive Updates) --- */
.about-section { padding: 60px 5%; background: var(--white); margin: 40px 0; border-radius: 12px; }
.about { display: flex; align-items: center; gap: 50px; max-width: 1200px; margin: 0 auto; }
.about-img { 
    flex: 1; height: 450px; background: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=800&q=80');
    background-size: cover !important; background-position: center !important; border-radius: 20px; position: relative; box-shadow: 20px 20px 0px var(--light-bg);
}
.img-overlay { position: absolute; bottom: 20px; left: -20px; background: var(--secondary); color: white; padding: 15px 25px; border-radius: 8px; font-weight: bold; box-shadow: 0 10px 20px rgba(0,0,0,0.1); z-index: 5; }
.about-container { flex: 1; }
.about-subtitle { color: var(--secondary); font-weight: 700; font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 10px; }
.about-title { font-size: 2.5rem; color: var(--primary); line-height: 1.2; margin-bottom: 20px; }
.about-title span { color: var(--secondary); }
.about-description { color: var(--gray); line-height: 1.8; font-size: 1.05rem; margin-bottom: 25px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 30px; }
.feature-item { font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 10px; }
.feature-item i { color: var(--secondary); }
.sponsored-by { border-top: 1px solid #eee; padding-top: 20px; }
.sponsored-by p { font-size: 0.8rem; color: #999; margin-bottom: 8px; text-transform: uppercase; }
.bank-partner { display: flex; align-items: center; gap: 12px; color: var(--primary); font-size: 1.2rem; }
.bank-partner i { font-size: 1.5rem; color: #0066b3; }

/* --- Grid & Registration Container (Responsive Updates) --- */
.container { width: 90%; margin: 0 auto; max-width: 1200px; padding: 40px 0; }
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
[class*="col-"] { padding: 0 15px; width: 100%; }
.col-4 { flex: 0 0 33.33%; max-width: 33.33%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* --- Forms & Cards --- */
.card { 
    background: white; padding: 40px; border-radius: 15px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); margin-bottom: 30px;
}
.form-group { margin-bottom: 20px; }
label { display: block; font-weight: 600; margin-bottom: 8px; color: var(--primary); font-size: 0.9rem; }
label.required::after { content: " *"; color: var(--danger); }

input, select, textarea {
    width: 100%; padding: 12px; border: 1px solid var(--border);
    border-radius: 8px; font-size: 1rem; outline: none; transition: 0.3s;
}
input:focus { border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1); }

/* --- Unified Buttons --- */
.btn { padding: 12px 25px; border-radius: 8px; font-weight: bold; cursor: pointer; border: none; transition: 0.3s; text-align: center; display: inline-block; }
.btn-primary { background: var(--primary); color: white; width: 100%; font-size: 1.1rem; }

/* --- Toggle Switch Logic --- */
.toggle-container { text-align: center; margin-bottom: 40px; }
.toggle-btn-group { 
    background: #e2e8f0; padding: 8px; border-radius: 50px; 
    display: inline-flex; gap: 5px; cursor: pointer; box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}
.toggle-option { 
    padding: 5px 12px; border-radius: 40px; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    font-weight: 300; color: #64748b;
}
.toggle-option.active { 
    background: var(--secondary); color: white; box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.section-head { 
    border-left: 4px solid var(--secondary); padding-left: 15px; 
    margin: 30px 0 20px 0; color: var(--primary); text-transform: uppercase;
    font-size: 0.85rem; letter-spacing: 1px;
}

.role-form-section { display: none; }
.role-form-section.active { display: block; animation: fadeIn 0.5s ease; }

/* --- Responsive & Animations --- */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1024px) {
    .hero-section { height: auto; flex-direction: column; }
    .main-slider, .sponsored-slider { width: 100%; height: 400px; }
    .features { grid-template-columns: repeat(2, 1fr); }
    .mega-menu { grid-template-columns: repeat(3, 1fr); }
    .menu-ad-slider { display: none; }
    .about { gap: 30px; }
}

@media (max-width: 768px) {
    [class*="col-"] { flex: 0 0 100% !important; max-width: 100% !important; }
    .menu-toggle { display: block; }
    nav {
        position: fixed; top: 0; left: -100%; width: 100%; height: 100vh;
        background: white; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
        padding: 100px 25px; box-shadow: 10px 0 30px rgba(0,0,0,0.1); z-index: 1001; overflow-y: auto;
    }
    nav.active { left: 0; } 
    nav ul.main-nav { flex-direction: column; height: auto; align-items: flex-start; gap: 15px; }
    .nav-item { width: 100%; height: auto; flex-direction: column; align-items: flex-start; }
    .nav-item > a { width: 100%; padding: 15px 0; font-size: 1.1rem; border-bottom: 1px solid #eee; }
    .mega-menu { position: relative; top: 0; width: 100%; display: none; grid-template-columns: 1fr; padding: 10px; box-shadow: none; border: none; }
    .nav-item:hover .mega-menu { display: block; } 
    .mega-col h4 { font-size: 0.9rem; margin-top: 15px; }
    /*.auth-btns { display: none; }*/
    
    /* About & Register Mobile Center Optimization */
    .about { flex-direction: column; text-align: center; }
    .about-img { width: 100%; height: 300px; box-shadow: none; order: -1; }
    .about-features { grid-template-columns: 1fr; }
    .feature-item, .bank-partner { justify-content: center; }
    .img-overlay { left: 50%; transform: translateX(-50%); bottom: -15px; width: 80%; text-align: center; }
    
    .card { padding: 30px 15px; }
    .container { width: 95%; }
}

/* Listing Section Styles */
.listing-section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.listing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Desktop View */
    gap: 20px;
}

.list-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.list-card:hover {
    transform: translateY(-5px);
}

.card-poster {
    position: relative;
    height: 160px;
}

.card-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 12px;
    border-radius: 6px; /* Slightly more rounded for a modern look */
    font-size: 0.72rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle glass border */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* --- Gradient-Based Attractive Classes --- */

/* Primary & Projects - Electric Blue */
.badge.project { background: linear-gradient(135deg, #0d6efd, #0043a8); } 

/* General Hiring - Deep Slate */
.badge.job { background: linear-gradient(135deg, #6c757d, #343a40); }

/* Established Companies - Emerald Forest */
.badge.company { background: linear-gradient(135deg, #198754, #0d5132); }

/* Startups - Fire Orange */
.badge.startup { background: linear-gradient(135deg, #f093fb, #f5576c); }

/* Business Units - Royal Indigo */
.badge.business { background: linear-gradient(135deg, #6610f2, #3b078a); }

/* Banks & NBFCs - Neon Cyan (Black text for readability) */
.badge.banks { 
    background: linear-gradient(135deg, #0dcaf0, #0aa2c0); 
    color: #fff; 
    text-shadow: none; 
}

/* Investors & VCs - Velvet Rose */
.badge.investor { background: linear-gradient(135deg, #d63384, #8b1352); }

/* CAs & Financial Experts - Fresh Teal */
.badge.ca { background: linear-gradient(135deg, #20c997, #13795b); }

/* Mentors & Experts - Amber Gold (Black text for readability) */
.badge.mentor { 
    background: linear-gradient(135deg, #ffc107, #cc9a06); 
    color: #000; 
    text-shadow: none; 
}

/* Legal & Compliance - Iron Grey */
.badge.legal { background: linear-gradient(135deg, #495057, #212529); }

.card-info {
    padding: 15px;
    flex-grow: 1;
}

.card-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-info p {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 15px;
}

.card-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.card-footer button {
    padding: 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

.btn-view {
    background: transparent;
    border: 1px solid #ddd;
    color: var(--text);
}

.btn-apply {
    background: var(--primary);
    border: none;
    color: white;
}

.btn-apply:hover {
    background: var(--secondary);
}

/* MOBILE VIEW: 2x4 GRID LOGIC */
@media (max-width: 768px) {
    .listing-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 items per row */
        gap: 12px;
    }

    .card-poster {
        height: 120px; /* Smaller height for mobile posters */
    }

    .card-info h4 {
        font-size: 0.9rem;
    }

    .card-footer {
        grid-template-columns: 1fr; /* Stack buttons on very small screens if needed */
    }
}

/* --- Project Details Specific Layout --- */
.project-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

/* --- Media Slider Styles --- */
.media-container {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9; 
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.media-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.media-slide.active { 
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-slide iframe, .media-slide img {
    width: 100%; height: 100%; object-fit: cover; border: none;
}

/* Thumbnail Navigation */
.thumb-nav {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    padding-bottom: 5px;
    overflow-x: auto;
    scrollbar-width: thin; 
}

.thumb-nav::-webkit-scrollbar { height: 4px; }
.thumb-nav::-webkit-scrollbar-thumb { background: #ddd; border-radius: 10px; }

.thumb {
    flex: 0 0 100px;
    height: 70px;
    border-radius: 10px;
    cursor: pointer;
    border: 3px solid transparent;
    overflow: hidden;
    opacity: 0.6;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.thumb.active { border-color: var(--secondary); opacity: 1; transform: scale(1.05); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

/* --- Description & Icon Lists --- */
.card ul {
    list-style: none; /* Removes standard dots */
    padding: 0;
    margin-top: 15px;
}

.card ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.card ul li i {
    color: var(--secondary);
    margin-top: 4px;
    flex-shrink: 0;
}

/* --- Review Section --- */
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0 20px;
}

.btn-review-write {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-review-write:hover {
    background: var(--secondary);
    color: #fff;
}

.review-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-top: 15px;
    border-left: 5px solid var(--secondary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* --- Sidebar --- */
.project-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.stat-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* --- Responsive Breakpoints --- */
@media (max-width: 992px) {
    .project-grid { grid-template-columns: 1fr; }
    .project-sidebar { position: static; order: -1; }
    .reviews-header { flex-direction: row; } /* Keeps button next to title on mobile */
}

@media (max-width: 480px) {
    .thumb { flex: 0 0 80px; height: 55px; }
    .btn-review-write { padding: 6px 12px; font-size: 0.8rem; }
}

/* Layout & Grid */
.project-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; margin-top: 20px; }

/* Media Slider */
.media-container { 
    background: #000; border-radius: 20px; overflow: hidden; 
    position: relative; aspect-ratio: 16 / 9; width: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); 
}
.media-slide { display: none; width: 100%; height: 100%; }
.media-slide.active { display: flex; align-items: center; justify-content: center; }
.media-slide iframe, .media-slide img { width: 100%; height: 100%; object-fit: cover; border: none; }

/* Thumbs */
.thumb-nav { display: flex; gap: 12px; margin-top: 15px; overflow-x: auto; padding-bottom: 5px; }
.thumb { 
    flex: 0 0 110px; height: 75px; border-radius: 12px; cursor: pointer; 
    border: 3px solid transparent; overflow: hidden; transition: 0.3s; opacity: 0.7;
}
.thumb.active { border-color: var(--secondary); opacity: 1; transform: translateY(-3px); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Highlights Grid */
.highlights-grid { 
    display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
    gap: 15px; margin: 25px 0; 
}
.highlight-card { 
    background: #f8f9fa; padding: 15px; border-radius: 12px; text-align: center;
    border: 1px solid #eee;
}
.highlight-card i { color: var(--primary); font-size: 1.5rem; margin-bottom: 8px; }
.highlight-card span { display: block; font-size: 0.8rem; color: #666; }
.highlight-card strong { font-size: 1rem; color: var(--primary); }

/* Custom Icon List */
.clean-list { list-style: none; padding: 0; }
.clean-list li { 
    display: flex; align-items: flex-start; gap: 12px; 
    margin-bottom: 15px; line-height: 1.6; color: #444;
}
.clean-list li i { color: #27ae60; margin-top: 4px; font-size: 1.1rem; }

/* Sidebar & Sticky */
.project-sidebar { position: sticky; top: 100px; height: fit-content; }
.stat-card { 
    background: #fff; padding: 30px; border-radius: 20px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #f0f0f0;
}
.stat-row { 
    display: flex; justify-content: space-between; padding: 15px 0; 
    border-bottom: 1px solid #f8f8f8; font-size: 0.95rem; 
}

/* Reviews */
.reviews-header { 
    display: flex; justify-content: space-between; align-items: center; 
    margin-top: 40px; padding-bottom: 15px; border-bottom: 2px solid #f0f0f0;
}
.review-box { 
    background: #fff; padding: 20px; border-radius: 15px; margin-top: 20px;
    border: 1px solid #eee; transition: 0.3s;
}
.review-box:hover { border-color: var(--secondary); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }

/* Responsive */
@media (max-width: 992px) {
    .project-grid { grid-template-columns: 1fr; }
    .project-sidebar { position: static; order: -1; }
}