@import url('../floating-button.css');

/* Gradient text utility */
.gradient-text {
    background: linear-gradient(135deg, #ffd700 0%, #ff6b35 50%, #f7931e 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Gradient text utility */
.gradient-text {
    background: linear-gradient(135deg, #ffd700 0%, #ff6b35 50%, #f7931e 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Header Shrink Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.shrink {
    padding: 10px 40px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

header.shrink .logo img {
    height: 40px;
}

header.shrink .logo h1 {
    font-size: 1em;
}

header.shrink nav ul li a {
    padding: 8px 15px;
}

@media (max-width: 768px) {
    header.shrink {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 10px 15px;
    }

    .logo h1 {
        font-size: 1.2em;
    }

    .logo img {
        height: 40px;
    }
}

/* Ensure body has padding to account for fixed header */
body {
    padding-top: 80px;
    margin: 0;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Logo Styles */
.logo {
    display: flex;
    flex-direction: column; 
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 50px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    filter: brightness(1);
}

.logo:hover img {
    filter: brightness(1.1);
    transform: translateY(-2px);
}


.logo h1 {
    font-size: 1.2em;
    margin: 0;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #1a237e 0%, #000080 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.9;
}

.logo:hover h1 {
    opacity: 1;
    transform: translateY(-2px);
    text-shadow: 0 2px 10px rgba(26, 35, 126, 0.2);
}

/* Navigation Styles */
nav {
    margin-right: 20px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0 40px;
    display: flex;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    padding: 12px 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    white-space: nowrap;
    position: relative;
    background: none;
}

nav ul li a:hover {
    background-position: left bottom;
    color: #000080;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 128, 0.2);
    background: linear-gradient(135deg, rgba(0, 0, 128, 0.1) 0%, rgba(0, 0, 128, 0.2) 100%);
}

nav ul li a.active {
    color: #000080;
    background: rgba(0, 0, 128, 0.1);
    font-weight: 600;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 128, 0.2);
    background: linear-gradient(135deg, rgba(0, 0, 128, 0.1) 0%, rgba(0, 0, 128, 0.2) 100%);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #000080;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 80%;
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 85%;
        max-width: 300px;
        background: white;
        padding: 20px 30px 20px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        margin-right: 0;
        border-left: 1px solid rgba(0, 0, 128, 0.1);
    }
    
    .nav-header {
        display: none;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px 40px;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        display: block;
        padding: 15px 20px;
        width: 100%;
        box-sizing: border-box;
        font-size: 1.1em;
        border-radius: 8px;
        background: rgba(0, 0, 128, 0.03);
        margin: 5px 0;
    }

    nav ul li a:hover {
        background: rgba(0, 0, 128, 0.08);
        transform: translateX(5px);
    }

    .mobile-menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-menu-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    body.nav-active {
        overflow: hidden;
    }

    .mobile-menu-toggle {
        display: block;
        z-index: 1001;
    }
}

@media (max-width: 480px) {
    header {
        padding: 10px 15px;
    }

    .logo h1 {
        font-size: 1.2em;
    }

    .logo img {
        height: 40px;
    }
}

/* Project Hero Banner Styles */
.project-hero-banner {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: clamp(80px, 10vw, 120px) 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: clamp(60px, 8vw, 100px);
    height: clamp(60px, 8vw, 100px);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: clamp(40px, 6vw, 80px);
    height: clamp(40px, 6vw, 80px);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: clamp(50px, 7vw, 90px);
    height: clamp(50px, 7vw, 90px);
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-container {
    max-width: min(90%, 1200px);
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 40px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 6vw, 60px);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: clamp(6px, 1vw, 8px);
    background: rgba(244, 164, 96, 0.2);
    color: #f4a460;
    padding: clamp(6px, 1vw, 8px) clamp(12px, 2vw, 16px);
    border-radius: 20px;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    font-weight: 600;
    margin-bottom: clamp(15px, 3vw, 20px);
    backdrop-filter: blur(10px);
}

.hero-heading {
    font-size: clamp(2rem, 5vw, 4rem);
    color: white;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: clamp(15px, 3vw, 20px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Montserrat', sans-serif;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: clamp(25px, 4vw, 40px);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 2vw, 15px);
    margin-bottom: clamp(25px, 4vw, 40px);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 12px);
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.feature-item i {
    color: #f4a460;
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-cta {
    display: flex;
    gap: clamp(15px, 3vw, 20px);
    flex-wrap: wrap;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 10px);
    padding: clamp(12px, 2vw, 15px) clamp(20px, 3vw, 30px);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.cta-btn.primary {
    background: linear-gradient(135deg, #f4a460, #000080);
    color: white;
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 3vw, 30px);
    max-width: 400px;
}

.tech-circle {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: clamp(20px, 3vw, 30px);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.tech-circle:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.tech-icon {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #f4a460;
    margin-bottom: clamp(8px, 1.5vw, 10px);
}

.tech-label {
    color: white;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    font-weight: 500;
}

/* Projects Section Styles */
.projects-section {
    padding: clamp(60px, 8vw, 100px) clamp(15px, 5vw, 40px);
    background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path fill="%23ffffff" fill-opacity="0.05" d="M0 0h100v100H0z M50 25l25 43.3h-50L50 25z"/></svg>');
    opacity: 0.08;
    animation: backgroundFloat 20s linear infinite;
    backdrop-filter: blur(10px);
}

.projects-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.projects-section h1 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: clamp(40px, 6vw, 80px);
    color: white;
    position: relative;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: clamp(1px, 0.5vw, 3px);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.projects-section h1::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(to right, #f4a460, #ffffff, #f4a460);
    border-radius: 2px;
}

.project-category {
    background: rgba(255, 255, 255, 0.08);
    border-radius: clamp(15px, 3vw, 30px);
    padding: clamp(20px, 4vw, 40px);
    margin: 0 auto clamp(30px, 5vw, 60px);
    max-width: min(95%, 1200px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 2px 10px rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.project-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.project-category:hover {
    transform: translateY(-15px) scale(1.03);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.3),
        inset 0 2px 20px rgba(255, 255, 255, 0.2);
}

.project-category:hover::before {
    transform: translateX(100%);
}

.category-header {
    display: flex;
    align-items: center;
    gap: clamp(15px, 4vw, 40px);
    margin-bottom: clamp(20px, 3vw, 30px);
    padding-bottom: clamp(15px, 2vw, 25px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
    flex-wrap: wrap;
}

.category-logos {
    flex-shrink: 0;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: clamp(10px, 3vw, 25px);
    border-radius: clamp(10px, 2vw, 20px);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.15),
        inset 0 2px 5px rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    min-width: clamp(120px, 20vw, 200px);
}

.category-logos:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.2),
        inset 0 2px 8px rgba(255, 255, 255, 0.6);
}

.category-logos img {
    width: 100%;
    height: auto;
    max-width: 200px;
    object-fit: contain;
}

.category-title {
    font-size: clamp(1.3rem, 3vw, 2.4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #f4a460 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: clamp(0.5px, 0.3vw, 1px);
    position: relative;
    flex: 1;
    min-width: min-content;
}

.project-details {
    background: rgba(255, 255, 255, 0.07);
    border-radius: clamp(15px, 2vw, 25px);
    padding: clamp(20px, 3vw, 35px);
    backdrop-filter: blur(8px);
    position: relative;
}

.project-details ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(15px, 3vw, 30px);
    padding: 0;
}

.project-details li {
    background: rgba(255, 255, 255, 0.95);
    padding: clamp(15px, 3vw, 30px);
    border-radius: clamp(10px, 2vw, 20px);
    color: #000080;
    font-size: clamp(0.9rem, 2vw, 1.15rem);
    line-height: 1.6;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.12),
        inset 0 2px 5px rgba(255, 255, 255, 0.8);
    border-left: clamp(4px, 1vw, 6px) solid #f4a460;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: translateY(10px);
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.project-details li:hover {
    transform: translateY(-12px) scale(1.04);
    background: #ffffff;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        inset 0 2px 10px rgba(255, 255, 255, 1);
    border-left-width: 10px;
}

.project-details p {
    color: #ffffff;
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 600;
    margin-bottom: clamp(15px, 2vw, 25px);
    padding-left: clamp(10px, 2vw, 20px);
    border-left: clamp(3px, 1vw, 4px) solid #f4a460;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* News Section Styles */
.news-section {
    padding: clamp(60px, 8vw, 100px) clamp(15px, 5vw, 40px);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .news-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .news-section h1 {
        font-size: 2em;
    }
    
    .news-item {
        margin-bottom: 20px;
    }
    
    .news-item img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .news-section h1 {
        font-size: 1.8em;
    }
    
    .news-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-item img {
        height: 180px;
    }
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path fill="%23000080" fill-opacity="0.02" d="M0 0h100v100H0z"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

.news-section h1 {
    text-align: center;
    font-size: clamp(1.2rem, 4vw, 3rem);
    color: #000080;
    margin-bottom: clamp(10px, 2vw, 15px);
    font-weight: 800;
    position: relative;
    text-transform: uppercase;
    letter-spacing: clamp(0.2px, 0.2vw, 2px);
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
    padding: 0 clamp(10px, 2vw, 20px);
    word-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    overflow-wrap: break-word;
}

.news-section h1:hover {
    color: #f4a460;
    text-shadow: 0 0 10px rgba(244, 164, 96, 0.8);
    transform: scale(1.05);
}

.news-section h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #000080, #f4a460);
    border-radius: 2px;
}

.subtitle {
    text-align: center;
    color: #666;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin: clamp(20px, 3vw, 30px) 0 clamp(30px, 5vw, 50px);
    font-weight: 500;
    max-width: min(90%, 700px);
    margin-left: auto;
    margin-right: auto;
}

.news-container {
    max-width: min(90%, 1200px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: clamp(20px, 4vw, 40px);
    padding: clamp(15px, 3vw, 20px);
}

.news-item {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.news-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-item:hover img {
    transform: scale(1.05);
}

.news-content {
    padding: clamp(20px, 4vw, 30px);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), #ffffff);
}

.news-content h3 {
    color: #000080;
    font-size: clamp(1.2em, 2.5vw, 1.5em);
    margin-bottom: clamp(10px, 2vw, 15px);
    font-weight: 700;
    line-height: 1.4;
}

.date {
    color: #f4a460;
    font-size: 0.95em;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.date::before {
    content: '\f073';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.excerpt {
    color: #555;
    line-height: 1.7;
    margin-bottom: clamp(15px, 3vw, 20px);
    font-size: clamp(0.95em, 2vw, 1.1em);
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: #000080;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    gap: 8px;
}

.read-more::after {
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #f4a460;
    gap: 12px;
}

.read-more:hover::after {
    transform: translateX(5px);
}

/* Project Popup Styles */
.project-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 128, 0.9);
    z-index: 1000;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
    .project-popup .popup-content {
        width: 95%;
        max-height: 90vh;
        margin: 5% auto;
        padding: 15px;
    }

    .project-popup .popup-content img {
        max-height: 40vh;
    }

    .popup-details {
        padding: 15px;
        margin-top: 15px;
    }

    .popup-details h3 {
        font-size: 1.2em;
    }

    .popup-details li {
        font-size: 1em;
        padding: 6px 0;
    }
}

@media (max-width: 480px) {
    .project-popup .popup-content {
        width: 98%;
        margin: 2% auto;
        padding: 10px;
        border-radius: 15px;
    }

    .project-popup .popup-content img {
        max-height: 35vh;
    }

    .popup-details {
        padding: 10px;
        margin-top: 10px;
    }

    .popup-details h3 {
        font-size: 1.1em;
        margin-bottom: 10px;
    }

    .popup-details li {
        font-size: 0.9em;
        padding: 5px 0;
    }

    .project-popup .close-popup {
        top: 8px;
        right: 8px;
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}

.project-popup.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.project-popup .popup-content {
    background: white;
    max-width: 90vw;
    width: min(800px, 90vw);
    max-height: 95vh;
    margin: 20px;
    border-radius: 20px;
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.3s ease;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.project-popup.active .popup-content {
    transform: translateY(0);
    opacity: 1;
}

.project-popup .popup-content img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
}

.project-popup .close-popup {
    position: absolute;
    top: clamp(15px, 2vw, 25px);
    right: clamp(15px, 2vw, 25px);
    width: clamp(30px, 4vw, 40px);
    height: clamp(30px, 4vw, 40px);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: clamp(18px, 3vw, 24px);
    color: #000080;
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.project-popup .close-popup:hover {
    background: #000080;
    color: white;
    transform: rotate(90deg);
}

.popup-details {
    margin-top: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.popup-details h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.popup-details ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.popup-details li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #666;
    font-size: 1.1em;
}

.popup-details li:last-child {
    border-bottom: none;
}

/* News Popup Styles */
.news-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 128, 0.9);
    z-index: 1000;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-popup.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.news-popup .popup-content {
    background: white;
    max-width: 90vw;
    width: min(800px, 90vw);
    max-height: 95vh;
    margin: 20px;
    border-radius: 20px;
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.news-popup.active .popup-content {
    transform: translateY(0);
    opacity: 1;
}

.news-popup .popup-content img {
    width: 100%;
    height: auto;
    max-height: 50vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.news-popup .popup-text {
    padding: clamp(15px, 2vw, 20px);
    overflow-y: auto;
    flex: 1;
    max-height: 40vh;
}

.news-popup h3 {
    color: #000080;
    font-size: clamp(1.1rem, 2.5vw, 1.5em);
    margin-bottom: 10px;
    line-height: 1.3;
}

.news-popup .popup-date {
    color: #f4a460;
    font-size: clamp(0.8rem, 1.8vw, 1em);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-popup .popup-description {
    color: #555;
    font-size: clamp(0.9rem, 1.8vw, 1em);
    line-height: 1.6;
    overflow-y: auto;
}

.news-popup .close-popup {
    position: fixed;
    top: clamp(15px, 2vw, 25px);
    right: clamp(15px, 2vw, 25px);
    width: clamp(30px, 4vw, 40px);
    height: clamp(30px, 4vw, 40px);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: clamp(18px, 3vw, 24px);
    color: #000080;
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.news-popup .close-popup:hover {
    background: #000080;
    color: white;
    transform: rotate(90deg);
}

/* Responsive adjustments for news popup */
@media (max-width: 768px) {
    .news-popup .popup-content {
        width: 95vw;
        max-height: 95vh;
        margin: 10px;
    }

    .news-popup .popup-content img {
        max-height: 45vh;
    }
}

@media (max-width: 480px) {
    .news-popup .popup-content {
        width: 98vw;
        max-height: 98vh;
        margin: 5px;
        border-radius: 15px;
    }

    .news-popup .popup-content img {
        max-height: 40vh;
    }

    .news-popup .close-popup {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

/* Ensure body doesn't scroll when popup is open */
body.popup-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* News Popup Modal */
.news-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 128, 0.9);
    z-index: 1000;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
    padding: clamp(10px, 2vw, 20px);
}

.news-popup.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.news-popup .popup-content {
    background: white;
    max-width: min(90vw, 800px);
    width: 100%;
    max-height: min(90vh, 85vh);
    border-radius: clamp(15px, 2vw, 20px);
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.4s ease forwards;
    display: flex;
    flex-direction: column;
}

@keyframes modalSlideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.news-popup .popup-content img {
    width: 100%;
    height: clamp(200px, 30vh, 300px);
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.news-popup .popup-text {
    padding: clamp(20px, 3vw, 30px);
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.news-popup h3 {
    color: #000080;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    margin-bottom: clamp(10px, 2vw, 15px);
    line-height: 1.3;
}

.news-popup .popup-date {
    color: #f4a460;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 600;
    margin-bottom: clamp(20px, 3vw, 25px);
    display: flex;
    align-items: center;
    gap: clamp(6px, 1vw, 8px);
}

.news-popup .popup-description {
    color: #333;
    line-height: 1.7;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.news-popup .popup-description h4 {
    color: #000080;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 700;
    margin: clamp(20px, 3vw, 25px) 0 clamp(10px, 2vw, 15px) 0;
    padding-bottom: clamp(6px, 1vw, 8px);
    border-bottom: 2px solid rgba(244, 164, 96, 0.3);
}

.news-popup .popup-description p {
    margin-bottom: clamp(15px, 2vw, 20px);
    text-align: justify;
}

.news-popup .close-popup {
    position: absolute;
    top: clamp(15px, 2vw, 20px);
    right: clamp(15px, 2vw, 20px);
    width: clamp(35px, 5vw, 45px);
    height: clamp(35px, 5vw, 45px);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: clamp(16px, 3vw, 20px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
    backdrop-filter: blur(10px);
}

.news-popup .close-popup:hover {
    background: rgba(244, 164, 96, 0.9);
    transform: rotate(90deg) scale(1.1);
}

@media (max-width: 768px) {
    .news-popup .popup-content {
        max-height: 95vh;
    }
    
    .news-popup .popup-content img {
        height: clamp(180px, 25vh, 250px);
    }
}

@media (max-width: 480px) {
    .news-popup {
        padding: 5px;
    }
    
    .news-popup .popup-content {
        max-height: 98vh;
        border-radius: 15px;
    }
    
    .news-popup .popup-content img {
        height: clamp(150px, 20vh, 200px);
    }
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        position: fixed;
        top: 20px;
        right: 30px;
    }

    header.shrink .nav-toggle {
        top: 15px;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background: white;
        padding: 80px 30px 20px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
        padding: 0 10px 40px;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        display: block;
        padding: 15px 20px;
        width: 100%;
        box-sizing: border-box;
        font-size: 1.1em;
        border-radius: 8px;
        background: rgba(0, 0, 128, 0.03);
    }

    nav ul li a:hover {
        background: rgba(0, 0, 128, 0.08);
        transform: translateX(5px);
    }

    .mobile-menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-menu-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    body.nav-active {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .nav-toggle {
        right: 20px;
    }
    
    nav {
        padding: 80px 25px 20px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .logo h1 {
        font-size: 1em;
    }
    
    header.shrink .logo img {
        height: 32px;
    }
    
    header.shrink .logo h1 {
        font-size: 0.9em;
    }
}

/* Hamburger Menu Styles */
.nav-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hamburger-menu {
    width: 30px;
    height: 20px;
    position: relative;
}

.hamburger-menu span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #000080;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu span:first-child {
    top: 0;
}

.hamburger-menu span:nth-child(2) {
    top: 8px;
}

.hamburger-menu span:last-child {
    top: 16px;
}

/* Active state for hamburger menu */
.nav-active .hamburger-menu span:first-child {
    transform: rotate(45deg);
    top: 8px;
}

.nav-active .hamburger-menu span:nth-child(2) {
    opacity: 0;
}

.nav-active .hamburger-menu span:last-child {
    transform: rotate(-45deg);
    top: 8px;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        position: fixed;
        top: 20px;
        right: 30px;
    }

    header.shrink .nav-toggle {
        top: 15px;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background: white;
        padding: 80px 30px 20px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
        padding: 0 10px 40px;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        display: block;
        padding: 15px 20px;
        width: 100%;
        box-sizing: border-box;
        font-size: 1.1em;
        border-radius: 8px;
        background: rgba(0, 0, 128, 0.03);
    }

    nav ul li a:hover {
        background: rgba(0, 0, 128, 0.08);
        transform: translateX(5px);
    }

    .mobile-menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-menu-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    body.nav-active {
        overflow: hidden;
    }
}

/* Institutions Modal Styles */
.institutions-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    backdrop-filter: blur(5px);
    padding: clamp(10px, 2vw, 20px);
}

.institutions-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.institutions-modal .modal-content {
    background: white;
    border-radius: clamp(15px, 2vw, 20px);
    max-width: min(90vw, 800px);
    width: 100%;
    max-height: min(90vh, 80vh);
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.institutions-modal .modal-header {
    padding: clamp(20px, 3vw, 30px);
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.institutions-modal .modal-header h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #000080;
    margin: 0;
}

.institutions-modal .modal-close {
    background: none;
    border: none;
    font-size: clamp(20px, 3vw, 24px);
    cursor: pointer;
    color: #666;
    padding: clamp(5px, 1vw, 8px);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.institutions-modal .modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000080;
}

.institutions-modal .modal-body {
    padding: clamp(20px, 3vw, 30px);
}

.modal-image {
    text-align: center;
    margin-bottom: clamp(20px, 3vw, 30px);
}

.modal-image img {
    max-width: 100%;
    height: auto;
    max-height: clamp(150px, 20vw, 200px);
    object-fit: contain;
    border-radius: clamp(10px, 1.5vw, 15px);
}

.institution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(15px, 2vw, 20px);
}

.institution-card {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: clamp(10px, 1.5vw, 15px);
    padding: clamp(15px, 2vw, 20px);
    border-left: clamp(3px, 0.5vw, 4px) solid #000080;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.institution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.institution-name {
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 700;
    color: #000080;
    margin-bottom: clamp(5px, 1vw, 8px);
    line-height: 1.3;
}

.institution-type {
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    color: #f4a460;
    font-weight: 600;
    margin-bottom: clamp(5px, 1vw, 8px);
}

.institution-location {
    font-size: clamp(0.8rem, 1.5vw, 0.85rem);
    color: #666;
    display: flex;
    align-items: center;
    gap: clamp(5px, 1vw, 8px);
}

.institution-location i {
    color: #000080;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #cacaeb 0%, #283593 100%);
    padding: 25px 40px;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-left, .footer-right {
    display: flex;
    align-items: center;
}

.footer-copyright {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.9);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
}

.footer-email {
    color: rgba(0, 0, 0, 0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    background: rgba(255, 255, 255, 0.1);
}

.footer-email:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.footer-email i {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .footer {
        padding: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-left, .footer-right {
        justify-content: center;
    }
}

/* Responsive adjustments */
.category-icon {
    width: clamp(50px, 8vw, 70px);
    height: clamp(50px, 8vw, 70px);
    background: linear-gradient(135deg, #000080, #1a237e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    flex-shrink: 0;
}

.category-info {
    flex: 1;
    min-width: 0;
}

.project-count {
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.category-actions {
    display: flex;
    gap: clamp(8px, 1.5vw, 12px);
    flex-shrink: 0;
}

.view-institutions-btn, .expand-btn {
    padding: clamp(8px, 1.5vw, 12px) clamp(12px, 2vw, 16px);
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    display: flex;
    align-items: center;
    gap: clamp(4px, 1vw, 6px);
}

.view-institutions-btn:hover, .expand-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.project-item {
    display: flex;
    gap: clamp(15px, 3vw, 20px);
    align-items: flex-start;
    margin-bottom: clamp(20px, 3vw, 25px);
}

.project-icon {
    width: clamp(40px, 6vw, 50px);
    height: clamp(40px, 6vw, 50px);
    background: linear-gradient(135deg, #f4a460, #000080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: clamp(1rem, 2vw, 1.2rem);
    flex-shrink: 0;
}

.project-content {
    flex: 1;
    min-width: 0;
}

.project-content h4 {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #000080;
    margin-bottom: clamp(8px, 1.5vw, 10px);
    font-weight: 600;
}

.project-content p {
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    color: #666;
    line-height: 1.5;
    margin-bottom: clamp(10px, 2vw, 12px);
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(6px, 1vw, 8px);
}

.tag {
    background: rgba(0, 0, 128, 0.1);
    color: #000080;
    padding: clamp(4px, 1vw, 6px) clamp(8px, 1.5vw, 10px);
    border-radius: 12px;
    font-size: clamp(0.7rem, 1.3vw, 0.8rem);
    font-weight: 500;
}

.project-description h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: white;
    margin-bottom: clamp(15px, 3vw, 20px);
    font-weight: 600;
    padding-left: clamp(10px, 2vw, 15px);
    border-left: clamp(3px, 0.5vw, 4px) solid #f4a460;
}

@media (max-width: 768px) {
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: clamp(15px, 3vw, 20px);
    }
    
    .category-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .view-institutions-btn {
        flex: 1;
        justify-content: center;
    }

    .project-item {
        flex-direction: column;
        text-align: center;
    }
    
    .project-tags {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .category-header {
        text-align: center;
    }
    
    .category-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .view-institutions-btn, .expand-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .projects-section {
        padding: 40px 15px;
    }

    .project-category {
        padding: 20px 15px;
    }

    .category-logos {
        padding: 15px;
    }

    .project-details {
        padding: 15px;
    }

    .project-details li {
        padding: 15px;
        font-size: 0.9rem;
    }
}

/* Touch device optimizations */
@media (hover: none) {
    .project-category:hover,
    .project-details li:hover,
    .news-item:hover,
    .category-logos:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    .project-category:active,
    .project-details li:active,
    .news-item:active {
        transform: scale(0.98) !important;
    }
}

/* Modern Project Card Styles */
.modern-project-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    margin-bottom: 25px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    overflow: hidden;
}

.modern-project-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modern-project-card .category-header {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f4a460, #000080);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.category-icon i {
    font-size: 1.8em;
    color: white;
}

.category-info {
    flex: 1;
}

.modern-project-card .category-title {
    font-size: 1.6em;
    color: white;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.project-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
    font-weight: 500;
}

.category-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.expand-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expand-btn:hover {
    background: rgba(244, 164, 96, 0.3);
    transform: scale(1.1);
}

.expand-btn.active {
    transform: rotate(180deg);
}

.modern-project-card .project-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(255, 255, 255, 0.05);
}

.modern-project-card .project-details.expanded {
    max-height: 1000px;
    padding: 20px 30px 30px;
}

.project-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid #f4a460;
}

.project-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.project-item:last-child {
    margin-bottom: 0;
}

.project-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #000080, #f4a460);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.project-icon i {
    color: white;
    font-size: 1.2em;
}

.project-content h4 {
    color: #000080;
    font-size: 1.1em;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.project-content p {
    color: #555;
    font-size: 0.95em;
    line-height: 1.5;
    margin: 0 0 12px 0;
}

.project-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(0, 0, 128, 0.1);
    color: #000080;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 128, 0.2);
}

.project-description {
    margin-bottom: 20px;
}

.project-description h4 {
    color: #f4a460;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(244, 164, 96, 0.9);
    border-color: #f4a460;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 164, 96, 0.3);
}

/* Project Hero Section */
.project-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.3"/><circle cx="80" cy="40" r="1" fill="%23f4a460" opacity="0.5"/><circle cx="40" cy="80" r="1.5" fill="%23ffffff" opacity="0.4"/></svg>');
    animation: float 20s linear infinite;
}

.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(244, 164, 96, 0.2) 0%, transparent 50%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 164, 96, 0.2);
    color: #f4a460;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f4a460, #000080);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    color: white;
    font-size: 1.5em;
}

.stat-label {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1em;
}

.hero-btn.primary {
    background: linear-gradient(135deg, #f4a460, #000080);
    color: white;
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px;
}

.tech-item {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: techFloat 6s ease-in-out infinite;
}

.tech-item:nth-child(even) {
    animation-delay: -3s;
}

.tech-item i {
    font-size: 2em;
    color: #f4a460;
}

.tech-item:hover {
    transform: translateY(-10px) scale(1.1);
    background: rgba(244, 164, 96, 0.2);
}

@keyframes float {
    0% { transform: translateX(0px); }
    100% { transform: translateX(-100px); }
}

@keyframes techFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Project Hero Banner */
.project-hero-banner {
    min-height: 80vh;
    background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(244, 164, 96, 0.1);
    animation: floatShape 8s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: -3s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 70%;
    animation-delay: -6s;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 164, 96, 0.2);
    color: #f4a460;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.hero-heading {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: white;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 500;
}

.feature-item i {
    color: #f4a460;
    font-size: 1.1em;
}

.hero-cta {
    display: flex;
    gap: 15px;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1em;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #f4a460, #000080);
    color: white;
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.tech-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px;
}

.tech-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 15px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: techPulse 4s ease-in-out infinite;
}

.tech-circle:nth-child(even) {
    animation-delay: -2s;
}

.tech-circle:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(244, 164, 96, 0.2);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f4a460, #000080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.tech-icon i {
    font-size: 1.5em;
    color: white;
}

.tech-label {
    color: white;
    font-size: 0.9em;
    font-weight: 600;
    line-height: 1.3;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes techPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .tech-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 20px;
    }
}

.modal-image {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(0, 0, 128, 0.05);
    border-radius: 15px;
}

.modal-image img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.institutions-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.institutions-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 2px solid rgba(0, 0, 128, 0.1);
    background: linear-gradient(135deg, #000080, #1a237e);
    color: white;
    border-radius: 20px 20px 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5em;
    font-weight: 700;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

.institution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.institution-card {
    background: rgba(0, 0, 128, 0.05);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #f4a460;
    transition: all 0.3s ease;
}

.institution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 128, 0.08);
}

.institution-name {
    font-weight: 700;
    color: #000080;
    font-size: 1.1em;
    margin-bottom: 8px;
}

.institution-type {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 10px;
    font-style: italic;
}

.institution-location {
    color: #888;
    font-size: 0.85em;
    display: flex;
    align-items: center;
    gap: 5px;
}

.institution-location i {
    color: #f4a460;
}

.view-institutions-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(244, 164, 96, 0.1), rgba(0, 0, 128, 0.1));
    border: 2px solid rgba(244, 164, 96, 0.6);
    color: #f4a460;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-institutions-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.view-institutions-btn:hover::before {
    left: 100%;
}

.view-institutions-btn:hover {
    background: linear-gradient(135deg, #f4a460, #000080);
    color: white;
    border-color: #f4a460;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(244, 164, 96, 0.4);
}

.view-institutions-btn i {
    transition: transform 0.3s ease;
}

.view-institutions-btn:hover i {
    transform: scale(1.2) rotate(10deg);
}

.view-institutions-btn:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

/* Modern News Section */
.news-hero {
    text-align: center;
    margin-bottom: 60px;
}

.news-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 164, 96, 0.2);
    color: #f4a460;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.news-section h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #000080;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.modern-news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.modern-news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.news-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.modern-news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-news-card:hover .news-overlay {
    opacity: 1;
}

.news-category {
    background: rgba(244, 164, 96, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-expand-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.news-expand-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.news-content {
    padding: 30px;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85em;
    color: #666;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-meta i {
    color: #f4a460;
}

.news-content h3 {
    color: #000080;
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-content .excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1em;
}

.news-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.news-tags .tag {
    background: rgba(0, 0, 128, 0.1);
    color: #000080;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 128, 0.2);
}

.read-more-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f4a460, #000080);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 164, 96, 0.3);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

/* Modern News Section */
.news-hero {
    text-align: center;
    margin-bottom: 60px;
}

.news-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 164, 96, 0.2);
    color: #f4a460;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.news-section h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #000080;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.modern-news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.modern-news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.news-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.modern-news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-news-card:hover .news-overlay {
    opacity: 1;
}

.news-category {
    background: rgba(244, 164, 96, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-expand-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.news-expand-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.news-content {
    padding: 30px;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85em;
    color: #666;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-meta i {
    color: #f4a460;
}

.news-content h3 {
    color: #000080;
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-content .excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1em;
}

.news-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.news-tags .tag {
    background: rgba(0, 0, 128, 0.1);
    color: #000080;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 128, 0.2);
}

.read-more-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f4a460, #000080);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 164, 96, 0.3);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}