:root {
    --primary-blue: #0A1F44;
    --secondary-gold: #D4AF37;
    --light-gold: #f4cf5a;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e0e0e0;
    --text-dark: #333333;
    --text-light: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.language-bar {
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
}

.language-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lang-selector {
    display: flex;
    gap: 15px;
}

.lang-selector a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 12px;
}

.lang-selector a:hover,
.lang-selector a.active {
    color: var(--secondary-gold);
}

.top-contact {
    display: flex;
    gap: 25px;
}

.top-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.top-contact i {
    color: var(--secondary-gold);
}

.main-header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0;
}

.header-content {
    display: flex;
    flex-direction: column;
}

.header-nav-row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    position: relative;
}

.header-logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 5px 0 10px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.header-logo-row a {
    display: inline-block;
}

.header-logo-row img {
    width: 100px;
    height: 100px;
    display: inline-block;
    object-fit: contain;
}

.logo-right {
    flex-shrink: 0;
}

.logo-right img {
    width: 200px;
    height: auto;
    display: block;
    object-fit: contain;
}

.logo-center {
    text-align: center;
    flex-shrink: 0;
}

.logo-center img {
    width: 200px;
    height: auto;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-blue);
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.top-header {
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 0;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-selector select {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-info span {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-info i {
    color: var(--secondary-gold);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-blue);
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.logo img {
    height: 60px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-family: 'Playfair Display', serif;
}

.logo-text strong {
    color: var(--secondary-gold);
    font-weight: 700;
}

.main-nav {
    display: flex;
    align-items: center;
}

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

.nav-menu > li {
    margin: 0 5px;
    white-space: nowrap;
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 10px 8px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--secondary-gold);
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary-gold);
    transition: width 0.3s;
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    width: 80%;
}

.has-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
    transition: all 0.3s;
    list-style: none;
    padding: 10px 0;
    border-radius: 8px;
    z-index: 1000;
    margin-top: 0;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

.dropdown-menu li a:hover {
    background: var(--light-gray);
    color: var(--secondary-gold);
    padding-left: 25px;
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-blue);
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a3a6b 100%);
}

.hero-skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: url('../images/skyline.svg') repeat-x bottom;
    background-size: auto 100%;
    opacity: 0.3;
    animation: skylineMove 60s linear infinite;
}

@keyframes skylineMove {
    0% { background-position: 0 bottom; }
    100% { background-position: 2000px bottom; }
}

.hero-flags {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
    z-index: 10;
}

.flag-container {
    position: relative;
    width: 80px;
    height: 120px;
}

.flag-pole {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #999, #666);
    border-radius: 2px;
}

.flag {
    position: absolute;
    top: 10px;
    left: 50%;
    width: 70px;
    height: 50px;
    transform-origin: left center;
    animation: waveFlag 3s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes waveFlag {
    0%, 100% { transform: rotateY(0deg) rotateX(0deg); }
    25% { transform: rotateY(-10deg) rotateX(5deg); }
    50% { transform: rotateY(0deg) rotateX(0deg); }
    75% { transform: rotateY(10deg) rotateX(-5deg); }
}

.flag-container:nth-child(1) .flag { animation-delay: 0s; }
.flag-container:nth-child(2) .flag { animation-delay: 0.2s; }
.flag-container:nth-child(3) .flag { animation-delay: 0.4s; }
.flag-container:nth-child(4) .flag { animation-delay: 0.6s; }
.flag-container:nth-child(5) .flag { animation-delay: 0.8s; }

.hero-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-content .tagline {
    font-size: 20px;
    font-weight: 300;
    max-width: 800px;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--secondary-gold);
    color: var(--primary-blue);
}

.btn-primary:hover {
    background: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.intro-section {
    background: var(--white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
}

.intro-content p {
    margin-bottom: 20px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--medium-gray);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-gold);
}

.service-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-blue), #1a3a6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--secondary-gold);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card .btn-link {
    color: var(--secondary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-card .btn-link:hover {
    gap: 12px;
}

.facilities-section {
    background: var(--light-gray);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.facility-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

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

.facility-card .image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.facility-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.facility-card:hover .image img {
    transform: scale(1.1);
}

.facility-card .content {
    padding: 25px;
}

.facility-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.facility-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.news-section {
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid var(--medium-gray);
}

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

.news-card .image {
    height: 200px;
    overflow: hidden;
}

.news-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-card:hover .image img {
    transform: scale(1.1);
}

.news-card .content {
    padding: 25px;
}

.news-card .date {
    color: var(--secondary-gold);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.news-card h3 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-card .read-more {
    color: var(--secondary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.partners-section {
    background: var(--light-gray);
    padding: 60px 0;
}

.partners-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.partners-strip img {
    height: 60px;
    width: auto;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.partners-strip img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.main-footer {
    background: var(--primary-blue);
    color: var(--white);
}

.footer-top {
    padding: 60px 0 40px;
}

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

.footer-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-gold);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

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

.social-links a:hover {
    background: var(--secondary-gold);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-gold);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--secondary-gold);
    margin-top: 3px;
}

.btn-footer-cta {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: var(--secondary-gold);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-footer-cta:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-flags {
    display: flex;
    gap: 10px;
}

.footer-flags img {
    height: 20px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-flags img:hover {
    opacity: 1;
}

@media (max-width: 1200px) {
    .nav-menu > li > a {
        font-size: 12px;
        padding: 10px 6px;
    }
    
    .nav-menu > li {
        margin: 0 3px;
    }
}

@media (max-width: 992px) {
    .nav-menu > li > a {
        font-size: 11px;
        padding: 10px 5px;
    }
}

@media (max-width: 768px) {
    .logo-center img, .logo-right img,
    .header-logo-row img {
        width: 80px;
        height: 80px;
        object-fit: contain;
    }

    .header-nav-row {
        justify-content: flex-start;
        padding: 8px 0;
    }

    .header-logo-row {
        padding: 6px 0 10px;
    }

    .mobile-menu-toggle {
        display: block !important;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        z-index: 10000;
        overflow-y: auto;
        transition: transform 0.3s ease;
    }
    
    .main-nav.active {
        display: block;
        transform: translateX(0);
    }
    
    .nav-menu {
        display: block !important;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content .tagline {
        font-size: 16px;
    }
    
    .hero-flags {
        gap: 20px;
    }
    
    .flag-container {
        width: 50px;
        height: 80px;
    }
    
    .flag {
        width: 45px;
        height: 35px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .cards-grid,
    .facilities-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* BRICS Countries Section */
.brics-countries-section .country-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.brics-countries-section .country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(10, 31, 68, 0.15);
    background: white;
}

.brics-countries-section .country-card:hover div[style*="border-radius: 50%"] {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.brics-countries-section .country-card-small {
    cursor: pointer;
    transition: all 0.3s ease;
}

.brics-countries-section .country-card-small:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(10, 31, 68, 0.1);
    background: white;
}

.brics-countries-section .country-card-small:hover img {
    transform: scale(1.15);
}

.brics-countries-section img {
    transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 9999;
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .mobile-menu-close {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
    }
    
    .mobile-menu-close {
        display: block !important;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--primary-blue);
        cursor: pointer;
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 60px 20px 20px;
        width: 100%;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .nav-menu > li {
        margin: 0;
    }
    
    .nav-menu > li > a {
        padding: 15px 10px;
        display: block;
        font-size: 15px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: var(--light-gray);
    }
    
    .has-dropdown.active .dropdown-menu {
        max-height: 500px;
    }
    
    .dropdown-menu li {
        border-bottom: none;
    }
    
    .dropdown-menu li a {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .top-header-content {
        font-size: 12px;
    }
    
    .contact-info span {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 32px;
    }
    
    .cards-grid,
    .facilities-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .brics-countries-section h2 {
        font-size: 24px !important;
    }
    
    .brics-countries-section h3 {
        font-size: 20px !important;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .top-header {
        padding: 8px 0;
    }
    
    .flags-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
    }
    
    .flag-item {
        padding: 8px;
    }
    
    .flag-icon {
        width: 50px;
        height: 33px;
    }
    
    .country-name {
        font-size: 9px;
    }
    
    .time-zone {
        font-size: 8px;
    }
}

/* BRICS Flags Bar - Horizontal Layout */
.brics-flags-bar {
    background: #f5f5f5;
    padding: 20px 0;
    border-bottom: 2px solid var(--secondary-gold);
}

.flags-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    align-items: center;
}

.flag-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.flag-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.flag-icon {
    width: 60px;
    height: 40px;
    margin-bottom: 8px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.flag-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flag-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.flag-info i:first-child {
    font-size: 18px;
    color: var(--secondary-gold);
    margin-bottom: 4px;
}

.country-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
}

.time-zone {
    font-size: 10px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 3px;
}

.time-zone i {
    font-size: 9px;
}


/* Blog Cards */
.blog-card {
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(10, 31, 68, 0.15) !important;
}

.blog-card h3 a:hover {
    color: var(--secondary-gold) !important;
}

.blog-card .btn-link:hover {
    text-decoration: underline;
}

.blog-image img {
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

/* Placeholder for missing images */
.placeholder-image {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--medium-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 48px;
}

.no-image {
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}
