/* ============================================
   COMPLETE ENHANCED PORTFOLIO CSS
   ============================================ */

/* ===== RESET & GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark-mode {
    background-color: #1a1a1a;
    color: #e0e0e0;
}

/* ===== CONTAINER ===== */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 40px 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #1a2a6c;
    transition: color 0.3s ease;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
    color: #fff;
}

p {
    color: #666;
    transition: color 0.3s ease;
}

body.dark-mode p {
    color: #ccc;
}

/* ===== NAVIGATION ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #1a2a6c;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo i {
    color: #fdbb2d;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fdbb2d;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* ===== THEME TOGGLE ===== */
.theme-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(20deg);
}

.theme-toggle:active {
    transform: scale(0.95) rotate(20deg);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #1a2a6c 0%, #b21f1f 50%, #fdbb2d 100%);
    color: white;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(30px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: white;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero .tagline {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fdbb2d;
    font-weight: 600;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn i {
    font-size: 1.1rem;
}

.btn.primary {
    background: white;
    color: #1a2a6c;
    border-color: white;
}

.btn.primary:hover {
    background: #fdbb2d;
    color: #1a2a6c;
    border-color: #fdbb2d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn.primary:active {
    transform: scale(0.95);
}

.btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn.secondary:hover {
    background: white;
    color: #1a2a6c;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn.secondary:active {
    transform: scale(0.95);
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
    width: 100%;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background-color: #f9f9f9;
    padding: 60px 0;
    transition: background-color 0.3s ease;
}

body.dark-mode .about-section {
    background-color: #1a1a1a;
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a2a6c;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

body.dark-mode .section-intro {
    color: #ccc;
}

/* ===== STATS GRID ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.stat-card {
    background: white;
    padding: 35px 25px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #1a2a6c;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

body.dark-mode .stat-card {
    background: #2a2a2a;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1a2a6c, #b21f1f, #fdbb2d);
    animation: slideRight 0.6s ease;
}

@keyframes slideRight {
    to {
        left: 100%;
    }
}

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

.stat-icon {
    font-size: 2.5rem;
    color: #1a2a6c;
    margin-bottom: 15px;
}

body.dark-mode .stat-icon {
    color: #fdbb2d;
}

.stat-card h3 {
    font-size: 2rem;
    color: #1a2a6c;
    margin-bottom: 10px;
}

body.dark-mode .stat-card h3 {
    color: white;
}

.stat-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

body.dark-mode .stat-card p {
    color: #ccc;
}

.verified-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 10px;
}

.verified-badge i {
    margin-right: 5px;
}

/* ===== EXPERIENCE SECTION ===== */
.experience-section {
    background-color: white;
    padding: 60px 0;
    transition: background-color 0.3s ease;
}

body.dark-mode .experience-section {
    background-color: #2a2a2a;
}

.experience-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a2a6c;
}

.experience-card {
    background: #f9f9f9;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 10px;
    border-left: 5px solid #1a2a6c;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

body.dark-mode .experience-card {
    background: #1a1a1a;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.experience-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.exp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.exp-header h3 {
    font-size: 1.4rem;
    color: #1a2a6c;
}

body.dark-mode .exp-header h3 {
    color: white;
}

.exp-date {
    background: linear-gradient(135deg, #1a2a6c, #fdbb2d);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.exp-company {
    color: #b21f1f;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.exp-details {
    list-style: none;
    margin-bottom: 15px;
}

.exp-details li {
    color: #666;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

body.dark-mode .exp-details li {
    color: #ccc;
}

.exp-details li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #1a2a6c;
    font-weight: bold;
}

.exp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: #e1e8f0;
    color: #1a2a6c;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

body.dark-mode .tag {
    background: #444;
    color: #fdbb2d;
}

.tag:hover {
    background: #1a2a6c;
    color: white;
}

/* ===== PROJECTS SECTION ===== */
.projects-section {
    background: #f9f9f9;
    padding: 60px 0;
    transition: background-color 0.3s ease;
}

body.dark-mode .projects-section {
    background: #1a1a1a;
}

.projects-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a2a6c;
}

.project-card {
    background: white;
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

body.dark-mode .project-card {
    background: #2a2a2a;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #1a2a6c;
}

.project-card.mentor {
    border-left: 5px solid #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), transparent);
}

body.dark-mode .project-card.mentor {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), #2a2a2a);
}

.project-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.project-header h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    color: #1a2a6c;
    margin: 0;
}

body.dark-mode .project-header h3 {
    color: white;
}

.project-header i {
    color: #b21f1f;
}

.project-description {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}

body.dark-mode .project-description {
    color: #ccc;
}

.project-results {
    background: #f0f4f8;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

body.dark-mode .project-results {
    background: #1a1a1a;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

body.dark-mode .result-item {
    color: #ccc;
}

.result-item:last-child {
    margin-bottom: 0;
}

.result-item i {
    color: #10b981;
    font-weight: bold;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tech-tag {
    display: inline-block;
    background: #e1e8f0;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #1a2a6c;
    font-weight: 600;
    transition: all 0.3s ease;
}

body.dark-mode .tech-tag {
    background: #444;
    color: #fdbb2d;
}

.tech-tag:hover {
    background: #1a2a6c;
    color: white;
}

.project-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a2a6c;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 15px;
    border-radius: 5px;
    background: #f0f4f8;
    transition: all 0.3s ease;
}

body.dark-mode .project-link {
    background: #444;
    color: #fdbb2d;
}

.project-link:hover {
    background: #1a2a6c;
    color: white;
    transform: translateX(3px);
}

/* ===== SKILLS SECTION ===== */
.skills-section {
    background: white;
    padding: 60px 0;
    transition: background-color 0.3s ease;
}

body.dark-mode .skills-section {
    background: #2a2a2a;
}

.skills-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a2a6c;
}

.skills-category {
    margin-bottom: 50px;
}

.skills-category-title {
    font-size: 1.4rem;
    color: #1a2a6c;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

body.dark-mode .skills-category-title {
    color: white;
}

.skills-category-title i {
    color: #b21f1f;
    font-size: 1.6rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.skill-item {
    background: #f9f9f9;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

body.dark-mode .skill-item {
    background: #1a1a1a;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.skill-item:hover {
    transform: translateY(-10px);
    border-color: #1a2a6c;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.skill-icon {
    font-size: 2.5rem;
    color: #1a2a6c;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

body.dark-mode .skill-icon {
    color: #fdbb2d;
}

.skill-item p {
    color: #666;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
}

body.dark-mode .skill-item p {
    color: #ccc;
}

/* Vercel Icon Special Styling */
.vercel-icon {
    width: 40px;
    height: 40px;
    fill: #1a2a6c;
}

body.dark-mode .vercel-icon {
    fill: #fdbb2d;
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
    background: #f9f9f9;
    padding: 60px 0;
    transition: background-color 0.3s ease;
}

body.dark-mode .contact-form-section {
    background: #1a1a1a;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a2a6c;
}

.form-intro {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

body.dark-mode .form-intro {
    color: #ccc;
}

.contact-form {
    max-width: 650px;
    margin: auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

body.dark-mode .contact-form {
    background: #2a2a2a;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a2a6c;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

body.dark-mode .form-group label {
    color: white;
}

.form-group label i {
    color: #b21f1f;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: white;
    color: #333;
    transition: all 0.3s ease;
}

body.dark-mode input[type="text"],
body.dark-mode input[type="email"],
body.dark-mode textarea {
    background: #1a1a1a;
    color: #e0e0e0;
    border-color: #444;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: #1a2a6c;
    box-shadow: 0 0 0 3px rgba(26, 42, 108, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

input::placeholder,
textarea::placeholder {
    color: #999;
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
    color: #666;
}

/* ===== FOOTER SECTION ===== */
.footer-section {
    background: #1a2a6c;
    color: white;
    padding: 60px 0 20px 0;
    transition: background-color 0.3s ease;
}

body.dark-mode .footer-section {
    background: #0a0a0a;
    border-top: 2px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section-col h3 {
    color: #fdbb2d;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-section-col h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-section-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.7;
}

.footer-section-col ul {
    list-style: none;
}

.footer-section-col ul li {
    margin-bottom: 10px;
}

.footer-section-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section-col ul li a:hover {
    color: #fdbb2d;
    margin-left: 5px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #fdbb2d;
    border-color: #fdbb2d;
    color: #1a2a6c;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .nav-menu {
        gap: 15px;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .hero {
        height: auto;
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero .tagline {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 25px;
    }

    .experience-card {
        padding: 20px;
    }

    .project-card {
        padding: 20px;
    }

    .contact-form {
        padding: 25px;
    }

    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }

    .skill-item {
        padding: 20px;
    }

    .skill-icon {
        font-size: 2rem;
        height: 50px;
    }

    .footer-content {
        gap: 25px;
    }
}

/* Mobile (480px and below) */
/* 1. Style the 3-bar icon */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: white; /* Match your logo color */
    border-radius: 10px;
}

/* 2. Hide the menu and position it vertically */
.nav-menu {
    display: none; /* Hidden by default on mobile */
    flex-direction: column;
    position: absolute;
    top: 70px; /* Adjust based on your header height */
    left: 0;
    width: 100%;
    background: #1a2a6c; /* Match your theme */
    padding: 20px 0;
    text-align: center;
    z-index: 100;
}

/* 3. This class will be added by JavaScript when clicked */
.nav-menu.active {
    display: flex;
}



@media (max-width: 480px) {
    .navbar {
        padding: 15px 5%;
    }

    .nav-menu {
        gap: 10px;
        font-size: 0.85rem;
    }

    .nav-link::after {
        display: none;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo i {
        font-size: 1.3rem;
    }

    .hero {
        height: auto;
        padding: 40px 15px;
        background: linear-gradient(135deg, #1a2a6c 0%, #b21f1f 50%, #fdbb2d 100%);
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero .tagline {
        font-size: 0.9rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn i {
        font-size: 1rem;
    }

    .container {
        width: 95%;
        padding: 30px 0;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    .section-intro {
        font-size: 0.95rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 20px;
        margin-bottom: 10px;
    }

    .stat-card h3 {
        font-size: 1.5rem;
    }

    .exp-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .exp-date {
        width: 100%;
        text-align: center;
    }

    .project-card {
        padding: 15px;
        margin-bottom: 15px;
    }

    .project-header h3 {
        font-size: 1.1rem;
    }

    .project-links {
        gap: 8px;
    }

    .project-link {
        padding: 6px 10px;
        font-size: 0.8rem;
        flex: 1;
        justify-content: center;
    }

    .skills-category-title {
        font-size: 1.2rem;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .skill-item {
        padding: 15px;
    }

    .skill-icon {
        font-size: 1.8rem;
        height: 40px;
    }

    .skill-item p {
        font-size: 0.85rem;
    }

    .contact-form {
        padding: 20px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    input[type="text"],
    input[type="email"],
    textarea {
        padding: 10px;
        font-size: 16px;
    }

    textarea {
        min-height: 100px;
    }

    .btn-large {
        padding: 12px;
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-section-col h3,
    .footer-section-col h4 {
        font-size: 1rem;
    }

    .footer-section-col p {
        font-size: 0.9rem;
    }
}

/* Extra Small Devices */
@media (max-width: 320px) {
    .hero h1 {
        font-size: 1.4rem;
    }

    .hero .tagline {
        font-size: 0.8rem;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    .stat-card h3 {
        font-size: 1.2rem;
    }

    .project-header h3 {
        font-size: 1rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .theme-toggle,
    .contact-form-section,
    .footer-section {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .project-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideRight {
    to {
        left: 100%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(30px);
    }
}

/* ===== SMOOTH SCROLLING ===== */
html {
    scroll-behavior: smooth;
}






/* ================================================
   AWARDS & CERTIFICATIONS SECTION - COMPLETE
   ================================================ */

.awards-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 80px 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

body.dark-mode .awards-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.awards-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 42, 108, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.awards-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #1a2a6c;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

body.dark-mode .awards-section h2 {
    color: #ffffff;
}

.awards-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1a2a6c, #b21f1f, #fdbb2d);
    margin: 15px auto 0;
    border-radius: 2px;
}

body.dark-mode .awards-section h2::after {
    background: linear-gradient(90deg, #fdbb2d, #b21f1f, #1a2a6c);
}

.section-intro {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

body.dark-mode .section-intro {
    color: #ccc;
}

/* ================================================
   FILTER BUTTONS - ENHANCED
   ================================================ */

.awards-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.filter-btn {
    background: #ffffff;
    color: #1a2a6c;
    border: 2px solid #e5e7eb;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
}

body.dark-mode .filter-btn {
    background: #2a2a2a;
    color: #fdbb2d;
    border-color: #444;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.1), rgba(178, 31, 31, 0.1));
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.filter-btn:hover {
    border-color: #1a2a6c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 42, 108, 0.15);
}

body.dark-mode .filter-btn:hover {
    border-color: #fdbb2d;
    box-shadow: 0 5px 15px rgba(253, 187, 45, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, #1a2a6c 0%, #b21f1f 50%, #fdbb2d 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(26, 42, 108, 0.3);
    transform: translateY(-3px);
}

body.dark-mode .filter-btn.active {
    background: linear-gradient(135deg, #fdbb2d 0%, #b21f1f 50%, #1a2a6c 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(253, 187, 45, 0.3);
}

.filter-btn:active {
    transform: translateY(-1px);
}

/* ================================================
   AWARDS GRID - RESPONSIVE
   ================================================ */

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.award-item {
    animation: slideInUp 0.6s ease forwards;
}

.award-item.hidden {
    display: none;
    animation: none;
}

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

/* ================================================
   AWARD CARD - PREMIUM DESIGN
   ================================================ */

.award-card {
    background: white;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 6px solid #1a2a6c;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

body.dark-mode .award-card {
    background: #2a2a2a;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a2a6c, #b21f1f, #fdbb2d);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.award-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(26, 42, 108, 0.2);
    border-left-color: #fdbb2d;
}

body.dark-mode .award-card:hover {
    box-shadow: 0 20px 50px rgba(253, 187, 45, 0.15);
}

.award-card:hover::before {
    opacity: 1;
}

/* ================================================
   AWARD HEADER - ICON & BADGE
   ================================================ */

.award-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.award-icon {
    font-size: 3rem;
    color: #1a2a6c;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.1), rgba(178, 31, 31, 0.1));
    border-radius: 12px;
    transition: all 0.3s ease;
}

body.dark-mode .award-icon {
    color: #fdbb2d;
    background: rgba(253, 187, 45, 0.1);
}

.award-card:hover .award-icon {
    transform: scale(1.1) rotate(5deg);
}

.award-badge {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.scholarship-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.award-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.cert-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

/* ================================================
   AWARD CONTENT - TEXT
   ================================================ */

.award-card h3 {
    color: #1a2a6c;
    margin-bottom: 10px;
    font-size: 1.35rem;
    line-height: 1.4;
    font-weight: 700;
    transition: all 0.3s ease;
}

body.dark-mode .award-card h3 {
    color: #ffffff;
}

.award-card:hover h3 {
    color: #b21f1f;
}

body.dark-mode .award-card:hover h3 {
    color: #fdbb2d;
}

.award-issuer {
    color: #b21f1f;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.award-issuer::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #b21f1f;
    border-radius: 50%;
}

.award-date {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

body.dark-mode .award-date {
    color: #888;
}

.award-date::before {
    content: '📅';
    font-size: 0.9rem;
}

.award-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
    transition: all 0.3s ease;
}

body.dark-mode .award-description {
    color: #ccc;
}

/* ================================================
   AWARD HIGHLIGHTS - SKILLS/TAGS
   ================================================ */

.award-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.highlight {
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.08), rgba(178, 31, 31, 0.08));
    color: #1a2a6c;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(26, 42, 108, 0.2);
    transition: all 0.3s ease;
}

body.dark-mode .highlight {
    background: rgba(253, 187, 45, 0.1);
    color: #fdbb2d;
    border-color: rgba(253, 187, 45, 0.3);
}

.highlight:hover {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

body.dark-mode .highlight:hover {
    background: linear-gradient(135deg, #fdbb2d, #b21f1f);
    color: #1a2a6c;
}

/* ================================================
   AWARD ACTIONS - BUTTONS
   ================================================ */

.award-actions {
    display: flex;
    gap: 12px;
    padding-top: 25px;
    border-top: 2px solid #e5e7eb;
}

body.dark-mode .award-actions {
    border-top-color: #444;
}

.btn-small {
    flex: 1;
    padding: 12px 16px;
    background: linear-gradient(135deg, #1a2a6c 0%, #b21f1f 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 12px rgba(26, 42, 108, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-small::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-small:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 42, 108, 0.3);
}

body.dark-mode .btn-small {
    background: linear-gradient(135deg, #fdbb2d 0%, #b21f1f 100%);
    box-shadow: 0 4px 12px rgba(253, 187, 45, 0.2);
}

body.dark-mode .btn-small:hover {
    box-shadow: 0 8px 20px rgba(253, 187, 45, 0.3);
}

.btn-small:active {
    transform: scale(0.95);
}

.btn-small i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-small:hover i {
    transform: scale(1.2);
}

/* ================================================
   AWARDS STATS - STATISTICS
   ================================================ */

.awards-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin-top: 80px;
    padding: 40px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8ecf1 100%);
    border-radius: 15px;
    border: 2px solid #e5e7eb;
    position: relative;
    z-index: 1;
}

body.dark-mode .awards-stats {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-color: #444;
}

.awards-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(26, 42, 108, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.stat {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat h4 {
    font-size: 3rem;
    color: #1a2a6c;
    margin-bottom: 12px;
    font-weight: 800;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.dark-mode .stat h4 {
    background: linear-gradient(135deg, #fdbb2d, #b21f1f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat p {
    color: #666;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

body.dark-mode .stat p {
    color: #ccc;
}

.stat:hover h4 {
    transform: scale(1.1);
}

/* ================================================
   AWARD MODAL - ENHANCED
   ================================================ */

.award-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
}

.award-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content-award {
    position: relative;
    z-index: 2001;
    background: white;
    border-radius: 18px;
    padding: 40px;
    max-width: 650px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark-mode .modal-content-award {
    background: #2a2a2a;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2002;
    box-shadow: 0 5px 15px rgba(26, 42, 108, 0.3);
}

.modal-close:hover {
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 8px 25px rgba(26, 42, 108, 0.4);
}

.modal-close:active {
    transform: scale(0.95);
}

.award-modal-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 25px;
    max-height: 450px;
    object-fit: contain;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.award-modal-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.modal-info h3 {
    color: #1a2a6c;
    margin-bottom: 12px;
    font-size: 1.5rem;
    font-weight: 700;
}

body.dark-mode .modal-info h3 {
    color: #ffffff;
}

.modal-info p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

body.dark-mode .modal-info p {
    color: #ccc;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 1024px) {
    .awards-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .award-card {
        padding: 28px;
    }

    .awards-section h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .awards-section {
        padding: 60px 0;
    }

    .awards-section h2 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .awards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }

    .award-card {
        padding: 25px;
    }

    .award-icon {
        font-size: 2.5rem;
        width: 55px;
        height: 55px;
    }

    .award-card h3 {
        font-size: 1.15rem;
    }

    .awards-filter {
        gap: 10px;
        margin-bottom: 40px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .award-actions {
        gap: 10px;
    }

    .btn-small {
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    .awards-stats {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 30px;
    }

    .stat h4 {
        font-size: 2.5rem;
    }

    .stat p {
        font-size: 0.9rem;
    }

    .modal-content-award {
        padding: 30px;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .awards-section {
        padding: 40px 0;
    }

    .awards-section h2 {
        font-size: 1.7rem;
    }

    .section-intro {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }

    .award-header {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
    }

    .award-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }

    .award-card {
        padding: 20px;
    }

    .award-card h3 {
        font-size: 1.05rem;
    }

    .award-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .award-actions {
        flex-direction: column;
        gap: 8px;
        padding-top: 15px;
    }

    .btn-small {
        width: 100%;
        padding: 11px 14px;
        font-size: 0.8rem;
    }

    .awards-filter {
        gap: 8px;
        margin-bottom: 30px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .award-highlights {
        gap: 8px;
    }

    .highlight {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .awards-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px;
        margin-top: 50px;
    }

    .stat h4 {
        font-size: 2rem;
    }

    .stat p {
        font-size: 0.85rem;
    }

    .modal-content-award {
        padding: 20px;
        border-radius: 12px;
    }

    .modal-close {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        top: 15px;
        right: 15px;
    }

    .award-modal-image {
        max-height: 350px;
        border-radius: 8px;
        margin-bottom: 20px;
    }

    .modal-info h3 {
        font-size: 1.2rem;
    }

    .modal-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .awards-section h2 {
        font-size: 1.4rem;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    .award-card {
        padding: 15px;
    }

    .award-card h3 {
        font-size: 0.95rem;
    }

    .stat h4 {
        font-size: 1.6rem;
    }
}

/* ================================================
   ANIMATIONS & TRANSITIONS
   ================================================ */

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(30px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* ================================================
   DARK MODE ENHANCEMENTS
   ================================================ */

body.dark-mode .award-card {
    border-left-color: #fdbb2d;
}

body.dark-mode .award-card:hover {
    border-left-color: #1a2a6c;
}

/* ================================================
   PRINT STYLES
   ================================================ */

@media print {
    .awards-filter,
    .award-actions,
    .award-modal {
        display: none;
    }

    .award-card {
        box-shadow: none;
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }
}

/* ================================================
   ACCESSIBILITY
   ================================================ */

@media (prefers-reduced-motion: reduce) {
    .award-card,
    .filter-btn,
    .btn-small,
    .award-modal-image {
        animation: none;
        transition: none;
    }
}


/* ================================================
   BREADCRUMB NAVIGATION - COMPLETE
   ================================================ */

.breadcrumb-nav {
    background: linear-gradient(135deg, #1a2a6c 0%, #b21f1f 50%, #fdbb2d 100%);
    padding: 20px 0;
    margin-bottom: 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.breadcrumb-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

body.dark-mode .breadcrumb-nav {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.breadcrumb-nav .container {
    padding: 0 var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Back Link Styling */
.back-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.back-link:active {
    transform: translateX(-2px) scale(0.98);
}

.back-link i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.back-link:hover i {
    transform: translateX(-3px);
}

/* Breadcrumb Divider */
.breadcrumb-divider {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.3rem;
    font-weight: 300;
    margin: 0 5px;
}

/* Breadcrumb Current */
.breadcrumb-current {
    color: #fdbb2d;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: rgba(253, 187, 45, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(253, 187, 45, 0.3);
}

body.dark-mode .breadcrumb-current {
    background: rgba(253, 187, 45, 0.15);
    border-color: rgba(253, 187, 45, 0.4);
}

/* ================================================
   AWARDS PAGE HEADER
   ================================================ */

.awards-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.6s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.awards-header h1 {
    font-size: 3.2rem;
    color: #1a2a6c;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -1px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

body.dark-mode .awards-header h1 {
    color: #ffffff;
}

.awards-header h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #1a2a6c 0%, #b21f1f 50%, #fdbb2d 100%);
    margin: 20px auto 0;
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(26, 42, 108, 0.2);
}

body.dark-mode .awards-header h1::after {
    box-shadow: 0 4px 15px rgba(253, 187, 45, 0.2);
}

.awards-header .section-intro {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.8;
    font-weight: 500;
}

body.dark-mode .awards-header .section-intro {
    color: #ccc;
}

/* ================================================
   BACK BUTTON BOTTOM
   ================================================ */

.back-button-bottom {
    text-align: center;
    margin-top: 80px;
    padding: 50px 0;
    border-top: 3px solid #e5e7eb;
    position: relative;
}

body.dark-mode .back-button-bottom {
    border-top-color: #444;
}

.back-button-bottom::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: #f9f9f9;
    border: 3px solid #e5e7eb;
    border-radius: 50%;
}

body.dark-mode .back-button-bottom::before {
    background: #1a1a1a;
    border-color: #444;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #1a2a6c 0%, #b21f1f 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(26, 42, 108, 0.25);
    border: 2px solid transparent;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-back::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-back:hover::before {
    width: 300px;
    height: 300px;
}

body.dark-mode .btn-back {
    background: linear-gradient(135deg, #fdbb2d 0%, #b21f1f 100%);
    color: #1a2a6c;
    box-shadow: 0 8px 25px rgba(253, 187, 45, 0.25);
}

.btn-back:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(26, 42, 108, 0.35);
    border-color: rgba(255, 255, 255, 0.3);
}

body.dark-mode .btn-back:hover {
    box-shadow: 0 12px 35px rgba(253, 187, 45, 0.35);
}

.btn-back:active {
    transform: scale(0.96);
}

.btn-back i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-back:hover i {
    transform: translateX(-5px);
}

/* ================================================
   RESPONSIVE BREADCRUMB
   ================================================ */

@media (max-width: 1024px) {
    .awards-header h1 {
        font-size: 2.8rem;
    }

    .btn-back {
        padding: 14px 35px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .breadcrumb-nav {
        padding: 15px 0;
        margin-bottom: 35px;
    }

    .breadcrumb-nav .container {
        gap: 10px;
        padding: 0 var(--spacing-sm);
    }

    .back-link {
        font-size: 0.85rem;
        padding: 8px 14px;
        gap: 8px;
    }

    .back-link i {
        font-size: 1rem;
    }

    .breadcrumb-divider {
        display: none;
    }

    .breadcrumb-current {
        display: none;
    }

    .awards-header h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .awards-header h1::after {
        width: 70px;
        height: 4px;
        margin: 15px auto 0;
    }

    .awards-header .section-intro {
        font-size: 0.95rem;
        margin-top: 15px;
    }

    .back-button-bottom {
        margin-top: 60px;
        padding: 35px 0;
        border-top: 2px solid #e5e7eb;
    }

    .btn-back {
        padding: 12px 28px;
        font-size: 0.9rem;
        gap: 8px;
    }

    .btn-back i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .breadcrumb-nav {
        padding: 12px 0;
        margin-bottom: 25px;
    }

    .breadcrumb-nav .container {
        gap: 8px;
        padding: 0 var(--spacing-sm);
        justify-content: center;
    }

    .back-link {
        font-size: 0.8rem;
        padding: 7px 12px;
        gap: 6px;
    }

    .back-link i {
        font-size: 0.9rem;
    }

    .awards-header {
        margin-bottom: 40px;
    }

    .awards-header h1 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .awards-header h1::after {
        width: 50px;
        height: 3px;
        margin: 12px auto 0;
    }

    .awards-header .section-intro {
        font-size: 0.9rem;
        margin-top: 12px;
        line-height: 1.6;
    }

    .back-button-bottom {
        margin-top: 50px;
        padding: 30px 0;
    }

    .back-button-bottom::before {
        width: 25px;
        height: 25px;
        top: -13px;
        border-width: 2px;
    }

    .btn-back {
        padding: 11px 22px;
        font-size: 0.85rem;
        gap: 6px;
    }

    .btn-back i {
        font-size: 0.95rem;
    }
}

@media (max-width: 320px) {
    .awards-header h1 {
        font-size: 1.5rem;
    }

    .back-link {
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    .btn-back {
        padding: 10px 18px;
        font-size: 0.8rem;
    }
}




/* ================================================
   AWARDS PREVIEW SECTION - HOMEPAGE - COMPLETE
   ================================================ */

.awards-preview-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f0f4f8 100%);
    padding: 120px 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 60px 0;
}

body.dark-mode .awards-preview-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
}

/* Background Animated Elements */
.awards-preview-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 42, 108, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 0;
}

.awards-preview-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(253, 187, 45, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
    z-index: 0;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(30px);
    }
}

/* ================================================
   AWARDS PREVIEW WRAPPER - GRID LAYOUT
   ================================================ */

.awards-preview-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 1280px) {
    .awards-preview-wrapper {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 80px;
    }
}

@media (max-width: 1024px) {
    .awards-preview-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .awards-preview-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* ================================================
   AWARDS PREVIEW CONTENT - LEFT SIDE
   ================================================ */

.awards-preview-content {
    animation: slideInLeft 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Icon Styling */
.awards-preview-icon {
    font-size: 4.5rem;
    color: #1a2a6c;
    margin-bottom: 30px;
    display: inline-block;
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.12), rgba(178, 31, 31, 0.12));
    padding: 28px;
    border-radius: 18px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 20px rgba(26, 42, 108, 0.12);
    border: 2px solid rgba(26, 42, 108, 0.1);
    position: relative;
}

body.dark-mode .awards-preview-icon {
    color: #fdbb2d;
    background: linear-gradient(135deg, rgba(253, 187, 45, 0.12), rgba(178, 31, 31, 0.08));
    box-shadow: 0 8px 20px rgba(253, 187, 45, 0.12);
    border-color: rgba(253, 187, 45, 0.15);
}

.awards-preview-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.awards-preview-section:hover .awards-preview-icon::before {
    opacity: 1;
}

.awards-preview-section:hover .awards-preview-icon {
    transform: scale(1.15) rotate(8deg) translateY(-5px);
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.15), rgba(178, 31, 31, 0.15));
    box-shadow: 0 15px 40px rgba(26, 42, 108, 0.2);
    border-color: rgba(26, 42, 108, 0.2);
}

body.dark-mode .awards-preview-section:hover .awards-preview-icon {
    background: linear-gradient(135deg, rgba(253, 187, 45, 0.15), rgba(178, 31, 31, 0.12));
    box-shadow: 0 15px 40px rgba(253, 187, 45, 0.2);
    border-color: rgba(253, 187, 45, 0.2);
}

/* Main Title */
.awards-preview-content h2 {
    font-size: 3.2rem;
    color: #1a2a6c;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -1.2px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.15;
    transition: all 0.3s ease;
}

body.dark-mode .awards-preview-content h2 {
    color: #ffffff;
}

.awards-preview-section:hover .awards-preview-content h2 {
    color: #b21f1f;
}

body.dark-mode .awards-preview-section:hover .awards-preview-content h2 {
    color: #fdbb2d;
}

/* Title Underline */
.awards-preview-content h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 6px;
    background: linear-gradient(90deg, #1a2a6c 0%, #b21f1f 50%, #fdbb2d 100%);
    margin: 20px 0 0 0;
    border-radius: 3px;
    box-shadow: 0 6px 18px rgba(26, 42, 108, 0.2);
    transition: all 0.3s ease;
}

body.dark-mode .awards-preview-content h2::after {
    box-shadow: 0 6px 18px rgba(253, 187, 45, 0.2);
}

.awards-preview-section:hover .awards-preview-content h2::after {
    width: 140px;
    box-shadow: 0 8px 24px rgba(26, 42, 108, 0.3);
}

/* Subtitle */
.awards-preview-subtitle {
    font-size: 1.05rem;
    color: #b21f1f;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 12px;
}

body.dark-mode .awards-preview-subtitle {
    color: #fdbb2d;
}

.awards-preview-subtitle::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #b21f1f;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

body.dark-mode .awards-preview-subtitle::before {
    background: #fdbb2d;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/* Description Text */
.awards-preview-description {
    font-size: 1.08rem;
    color: #666;
    line-height: 1.85;
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 500;
    transition: all 0.3s ease;
}

body.dark-mode .awards-preview-description {
    color: #ccc;
}

.awards-preview-section:hover .awards-preview-description {
    color: #555;
}

body.dark-mode .awards-preview-section:hover .awards-preview-description {
    color: #ddd;
}

/* ================================================
   AWARDS PREVIEW STATISTICS
   ================================================ */

.awards-preview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 3px solid #e5e7eb;
    position: relative;
}

body.dark-mode .awards-preview-stats {
    border-bottom-color: #444;
}

.awards-preview-stats::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a2a6c, #b21f1f, #fdbb2d);
    transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.awards-preview-section:hover .awards-preview-stats::after {
    width: 100%;
}

/* Individual Stat */
.preview-stat {
    text-align: center;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 10px;
    border-radius: 8px;
}

.preview-stat:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.05), rgba(253, 187, 45, 0.05));
}

body.dark-mode .preview-stat:hover {
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.1), rgba(253, 187, 45, 0.1));
}

/* Stat Number */
.preview-stat h4 {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
    transition: all 0.3s ease;
}

body.dark-mode .preview-stat h4 {
    background: linear-gradient(135deg, #fdbb2d, #b21f1f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.preview-stat:hover h4 {
    transform: scale(1.15);
}

/* Stat Label */
.preview-stat p {
    color: #666;
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

body.dark-mode .preview-stat p {
    color: #ccc;
}

.preview-stat:hover p {
    color: #1a2a6c;
}

body.dark-mode .preview-stat:hover p {
    color: #fdbb2d;
}

/* ================================================
   AWARDS PREVIEW BUTTONS
   ================================================ */

.awards-preview-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
}

.awards-preview-buttons .btn {
    padding: 16px 38px;
    font-size: 1.02rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

/* Ripple Effect */
.awards-preview-buttons .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.7s, height 0.7s;
}

.awards-preview-buttons .btn:hover::before {
    width: 350px;
    height: 350px;
}

/* Primary Button */
.awards-preview-buttons .btn.primary {
    background: linear-gradient(135deg, #1a2a6c 0%, #b21f1f 100%);
    color: white;
    box-shadow: 0 12px 30px rgba(26, 42, 108, 0.3);
    border-color: transparent;
}

body.dark-mode .awards-preview-buttons .btn.primary {
    background: linear-gradient(135deg, #fdbb2d 0%, #b21f1f 100%);
    color: #1a2a6c;
    box-shadow: 0 12px 30px rgba(253, 187, 45, 0.3);
}

.awards-preview-buttons .btn.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(26, 42, 108, 0.4);
}

body.dark-mode .awards-preview-buttons .btn.primary:hover {
    box-shadow: 0 18px 45px rgba(253, 187, 45, 0.4);
}

/* Secondary Button */
.awards-preview-buttons .btn.secondary {
    background: transparent;
    color: #1a2a6c;
    border: 2.5px solid #1a2a6c;
    box-shadow: 0 6px 15px rgba(26, 42, 108, 0.15);
}

body.dark-mode .awards-preview-buttons .btn.secondary {
    color: #fdbb2d;
    border-color: #fdbb2d;
    box-shadow: 0 6px 15px rgba(253, 187, 45, 0.15);
}

.awards-preview-buttons .btn.secondary:hover {
    background: #1a2a6c;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(26, 42, 108, 0.35);
    border-color: #1a2a6c;
}

body.dark-mode .awards-preview-buttons .btn.secondary:hover {
    background: #fdbb2d;
    color: #1a2a6c;
    box-shadow: 0 18px 40px rgba(253, 187, 45, 0.35);
    border-color: #fdbb2d;
}

/* Button Active State */
.awards-preview-buttons .btn:active {
    transform: scale(0.96);
}

/* Button Icons */
.awards-preview-buttons .btn i {
    font-size: 1.25rem;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.awards-preview-buttons .btn.primary:hover i {
    transform: scale(1.2) rotate(5deg);
}

.awards-preview-buttons .btn.secondary:hover i {
    transform: translateX(6px);
}

/* ================================================
   AWARDS PREVIEW VISUAL - RIGHT SIDE
   ================================================ */

.awards-preview-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInRight 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Badge Showcase Grid */
.award-badge-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
    max-width: 480px;
}

/* ================================================
   SHOWCASE BADGES - INDIVIDUAL
   ================================================ */

.showcase-badge {
    background: white;
    border-radius: 20px;
    padding: 45px 28px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-left: 7px solid;
    border-top: 3px solid transparent;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    position: relative;
    overflow: hidden;
}

body.dark-mode .showcase-badge {
    background: #2a2a2a;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

/* Badge Top Border Gradient */
.showcase-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.showcase-badge:hover::before {
    opacity: 1;
}

/* Badge Background Gradient on Hover */
.showcase-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, currentColor 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
    pointer-events: none;
}

.showcase-badge:hover::after {
    opacity: 0.08;
}

/* Badge Icon */
.showcase-badge i {
    font-size: 3.2rem;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

/* Badge Text */
.showcase-badge span {
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    transition: all 0.35s ease;
    position: relative;
    z-index: 1;
}

/* Badge Hover State */
.showcase-badge:hover {
    transform: translateY(-18px) scale(1.1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

body.dark-mode .showcase-badge:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.showcase-badge:hover i {
    transform: scale(1.35) rotate(18deg);
}

.showcase-badge:hover span {
    transform: translateY(-4px);
}

/* ================================================
   BADGE COLORS - SCHOLARSHIP
   ================================================ */

.showcase-badge.scholarship {
    border-left-color: #10b981;
    color: #10b981;
}

.showcase-badge.scholarship:hover {
    border-top-color: #10b981;
    border-right-color: #10b981;
    border-bottom-color: #10b981;
}

body.dark-mode .showcase-badge.scholarship:hover {
    border-color: #10b981;
}

/* ================================================
   BADGE COLORS - AWARD
   ================================================ */

.showcase-badge.award {
    border-left-color: #3b82f6;
    color: #3b82f6;
}

.showcase-badge.award:hover {
    border-top-color: #3b82f6;
    border-right-color: #3b82f6;
    border-bottom-color: #3b82f6;
}

body.dark-mode .showcase-badge.award:hover {
    border-color: #3b82f6;
}

/* ================================================
   BADGE COLORS - CERTIFICATION
   ================================================ */

.showcase-badge.certification {
    border-left-color: #f59e0b;
    color: #f59e0b;
}

.showcase-badge.certification:hover {
    border-top-color: #f59e0b;
    border-right-color: #f59e0b;
    border-bottom-color: #f59e0b;
}

body.dark-mode .showcase-badge.certification:hover {
    border-color: #f59e0b;
}

/* ================================================
   RESPONSIVE - DESKTOP (1280px and up)
   ================================================ */

@media (min-width: 1280px) {
    .awards-preview-section {
        padding: 140px 0;
    }

    .awards-preview-wrapper {
        gap: 120px;
    }
}

/* ================================================
   RESPONSIVE - LARGE DESKTOP (1024px - 1279px)
   ================================================ */

@media (max-width: 1279px) and (min-width: 1025px) {
    .awards-preview-section {
        padding: 100px 0;
    }

    .awards-preview-content h2 {
        font-size: 2.8rem;
    }

    .awards-preview-icon {
        font-size: 4rem;
    }

    .preview-stat h4 {
        font-size: 2.4rem;
    }

    .awards-preview-buttons .btn {
        padding: 14px 32px;
        font-size: 0.95rem;
    }

    .showcase-badge {
        padding: 35px 22px;
        gap: 14px;
    }

    .showcase-badge i {
        font-size: 2.8rem;
    }

    .showcase-badge span {
        font-size: 0.95rem;
    }
}

/* ================================================
   RESPONSIVE - TABLET (768px - 1024px)
   ================================================ */

@media (max-width: 1024px) and (min-width: 769px) {
    .awards-preview-section {
        padding: 80px 0;
        margin: 40px 0;
    }

    .awards-preview-section::before {
        width: 350px;
        height: 350px;
        top: -20%;
        right: -5%;
    }

    .awards-preview-section::after {
        width: 280px;
        height: 280px;
        bottom: -10%;
    }

    .awards-preview-wrapper {
        gap: 50px;
    }

    .awards-preview-content h2 {
        font-size: 2.4rem;
        margin-bottom: 15px;
    }

    .awards-preview-content h2::after {
        width: 80px;
        height: 5px;
    }

    .awards-preview-icon {
        font-size: 3.5rem;
        padding: 24px;
        margin-bottom: 25px;
    }

    .awards-preview-subtitle {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .awards-preview-description {
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.75;
    }

    .awards-preview-stats {
        gap: 25px;
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .preview-stat h4 {
        font-size: 2.2rem;
    }

    .preview-stat p {
        font-size: 0.88rem;
    }

    .awards-preview-buttons {
        gap: 20px;
    }

    .awards-preview-buttons .btn {
        padding: 13px 30px;
        font-size: 0.92rem;
    }

    .award-badge-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 100%;
    }

    .showcase-badge {
        padding: 32px 20px;
        gap: 12px;
    }

    .showcase-badge i {
        font-size: 2.6rem;
    }

    .showcase-badge span {
        font-size: 0.92rem;
    }
}

/* ================================================
   RESPONSIVE - SMALL TABLET (600px - 767px)
   ================================================ */

@media (max-width: 768px) and (min-width: 601px) {
    .awards-preview-section {
        padding: 70px 0;
        margin: 30px 0;
    }

    .awards-preview-section::before {
        width: 300px;
        height: 300px;
        top: -15%;
        right: -10%;
    }

    .awards-preview-section::after {
        width: 250px;
        height: 250px;
        bottom: 0;
        left: -15%;
    }

    .awards-preview-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .awards-preview-content h2 {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .awards-preview-content h2::after {
        width: 70px;
        height: 4px;
    }

    .awards-preview-icon {
        font-size: 3rem;
        padding: 22px;
        margin-bottom: 20px;
    }

    .awards-preview-subtitle {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .awards-preview-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
        line-height: 1.7;
    }

    .awards-preview-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-bottom: 30px;
        padding-bottom: 25px;
    }

    .preview-stat h4 {
        font-size: 1.9rem;
    }

    .preview-stat p {
        font-size: 0.85rem;
    }

    .awards-preview-buttons {
        gap: 15px;
        flex-direction: column;
    }

    .awards-preview-buttons .btn {
        width: 100%;
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .award-badge-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .showcase-badge {
        padding: 28px 16px;
        gap: 10px;
    }

    .showcase-badge i {
        font-size: 2.3rem;
    }

    .showcase-badge span {
        font-size: 0.85rem;
    }
}

/* ================================================
   RESPONSIVE - MOBILE (481px - 600px)
   ================================================ */

@media (max-width: 600px) and (min-width: 481px) {
    .awards-preview-section {
        padding: 60px 0;
        margin: 25px 0;
    }

    .awards-preview-section::before,
    .awards-preview-section::after {
        width: 250px;
        height: 250px;
        opacity: 0.7;
    }

    .awards-preview-content h2 {
        font-size: 1.7rem;
        margin-bottom: 10px;
    }

    .awards-preview-content h2::after {
        width: 60px;
        height: 3px;
    }

    .awards-preview-icon {
        font-size: 2.6rem;
        padding: 20px;
        margin-bottom: 18px;
    }

    .awards-preview-subtitle {
        font-size: 0.85rem;
        margin-bottom: 10px;
        gap: 8px;
    }

    .awards-preview-description {
        font-size: 0.92rem;
        margin-bottom: 22px;
    }

    .awards-preview-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-bottom: 25px;
        padding-bottom: 20px;
    }

    .preview-stat h4 {
        font-size: 1.6rem;
    }

    .preview-stat p {
        font-size: 0.8rem;
    }

    .awards-preview-buttons {
        gap: 10px;
        flex-direction: column;
    }

    .awards-preview-buttons .btn {
        width: 100%;
        padding: 11px 24px;
        font-size: 0.85rem;
        gap: 8px;
    }

    .awards-preview-buttons .btn i {
        font-size: 1.1rem;
    }

    .award-badge-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .showcase-badge {
        padding: 24px 14px;
        gap: 8px;
        border-radius: 15px;
    }

    .showcase-badge i {
        font-size: 2rem;
    }

    .showcase-badge span {
        font-size: 0.8rem;
    }
}

/* ================================================
   RESPONSIVE - SMALL MOBILE (400px - 480px)
   ================================================ */

@media (max-width: 480px) and (min-width: 401px) {
    .awards-preview-section {
        padding: 50px 0;
        margin: 20px 0;
    }

    .awards-preview-icon {
        font-size: 2.2rem;
        padding: 18px;
        margin-bottom: 15px;
    }

    .awards-preview-content h2 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .awards-preview-content h2::after {
        width: 50px;
        height: 3px;
        margin: 10px 0 0 0;
    }

    .awards-preview-subtitle {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .awards-preview-description {
        font-size: 0.88rem;
        margin-bottom: 18px;
        line-height: 1.6;
    }

    .awards-preview-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .preview-stat h4 {
        font-size: 1.4rem;
    }

    .preview-stat p {
        font-size: 0.75rem;
    }

    .awards-preview-buttons {
        gap: 8px;
        flex-direction: column;
    }

    .awards-preview-buttons .btn {
        font-size: 0.8rem;
        padding: 10px 20px;
    }

    .award-badge-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .showcase-badge {
        padding: 20px 12px;
        gap: 7px;
        border-radius: 12px;
    }

    .showcase-badge i {
        font-size: 1.8rem;
    }

    .showcase-badge span {
        font-size: 0.75rem;
    }

    .showcase-badge:hover {
        transform: translateY(-12px) scale(1.08);
    }
}

/* ================================================
   RESPONSIVE - EXTRA SMALL (0px - 400px)
   ================================================ */

@media (max-width: 400px) {
    .awards-preview-section {
        padding: 40px 0;
        margin: 15px 0;
    }

    .awards-preview-section::before,
    .awards-preview-section::after {
        display: none;
    }

    .awards-preview-icon {
        font-size: 2rem;
        padding: 16px;
        margin-bottom: 12px;
    }

    .awards-preview-content h2 {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }

    .awards-preview-content h2::after {
        width: 40px;
        height: 2px;
    }

    .awards-preview-subtitle {
        font-size: 0.75rem;
        margin-bottom: 6px;
    }

    .awards-preview-description {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .awards-preview-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-bottom: 18px;
        padding-bottom: 12px;
    }

    .preview-stat h4 {
        font-size: 1.2rem;
    }

    .preview-stat p {
        font-size: 0.7rem;
    }

    .awards-preview-buttons {
        gap: 6px;
        flex-direction: column;
    }

    .awards-preview-buttons .btn {
        font-size: 0.75rem;
        padding: 9px 16px;
        gap: 6px;
    }

    .award-badge-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .showcase-badge {
        padding: 16px 10px;
        gap: 6px;
        border-radius: 10px;
    }

    .showcase-badge i {
        font-size: 1.6rem;
    }

    .showcase-badge span {
        font-size: 0.7rem;
    }

    .showcase-badge:hover {
        transform: translateY(-10px) scale(1.05);
    }
}

/* ================================================
   PRINT STYLES
   ================================================ */

@media print {
    .awards-preview-section {
        display: none;
    }
}

/* ================================================
   ACCESSIBILITY
   ================================================ */

@media (prefers-reduced-motion: reduce) {
    .awards-preview-section::before,
    .awards-preview-section::after,
    .awards-preview-content,
    .awards-preview-visual,
    .awards-preview-icon,
    .preview-stat,
    .showcase-badge,
    .awards-preview-buttons .btn {
        animation: none;
        transition: none;
    }
}