* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
}

.header.transparent {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header.transparent .top-bar {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    border-bottom: none;
}

/* Top Bar Styles */
.top-bar {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    font-size: 13px;
    height: 40px;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1300px;
    padding: 0 30px;
    margin: 0 auto;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar a:hover {
    color: #e74c3c;
}

.top-bar i {
    color: #e74c3c;
}

.volunteer-link {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    opacity: 0.8;
}

.social-icons a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Navbar Styles */
.navbar {
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    transition: all 0.4s ease;
}

.header.transparent .navbar {
    background: transparent;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 110px;
    max-width: 100%;
    margin: 0;
    width: 100%;
    transition: all 0.4s ease;
    position: relative;
}

.header.transparent .navbar .container {
    height: 85px;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

.header.transparent .logo-img {
    width: 70px;
    height: 70px;
}

.logo a:hover .logo-img {
    transform: scale(1.08) rotate(-5deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.logo-text span {
    color: #f1f1f1;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    font-family: 'Inter', sans-serif;
}

.logo-text strong {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    align-items: center;
    flex: 1;
    justify-content: center;
    padding-left: 50px;
}

/* Hide mobile-only items on desktop */
.mobile-only-nav {
    display: none !important;
}

.nav-menu li {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-menu a {
    color: #f1f1f1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    position: relative;
    font-family: 'Inter', sans-serif;
}

/* Elegant Center Underline Hover */
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #e74c3c;
    transition: width 0.3s ease;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #ffffff;
}

.nav-menu a:hover::after, .nav-menu a.active::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    min-width: 220px;
    padding: 15px 0;
    list-style: none;
    border-top: 3px solid #e74c3c;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
    width: 100%;
    padding: 0;
    justify-content: flex-start;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: #f1f1f1;
    font-size: 13px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    padding-left: 35px;
}

.dropdown a i {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

/* Mobile Dropdown */
@media (max-width: 992px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.03);
        min-width: 100%;
        box-shadow: none;
        border: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px 0;
    }

    .dropdown-menu a {
        text-align: center;
        padding: 12px 20px;
        font-size: 15px;
    }

    .dropdown-menu a:hover {
        padding-left: 20px;
        background: rgba(231, 76, 60, 0.2);
    }
}

.header-action {
    display: flex;
    align-items: center;
    gap: 15px;
}

.signup-dropdown .btn-signup {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.signup-dropdown:hover .btn-signup {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.signup-dropdown .dropdown-menu {
    right: 0;
    left: auto;
}

.btn-donate {
    background: #e74c3c;
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    border: 2px solid transparent;
}

.btn-donate:hover {
    background: transparent;
    border-color: #e74c3c;
    color: #e74c3c !important;
    box-shadow: none;
    transform: translateY(-2px);
}

.btn-donate i {
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    15% { transform: scale(1.2); }
    30% { transform: scale(1); }
    45% { transform: scale(1.2); }
    60% { transform: scale(1); }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 20px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

@media (max-width: 1024px) {
    .top-bar {
        display: none;
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.97);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
        z-index: 99999;
        padding: 80px 0 40px;
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        justify-content: center;
        text-align: center;
        flex-direction: column; /* Crucial for dropdowns to stack vertically instead of horizontally */
        align-items: center;
    }

    /* Show mobile-only action items in nav overlay */
    .mobile-only-nav {
        display: flex !important;
    }
    
    .nav-menu a {
        font-size: 16px;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu li:not(:last-child)::after { 
        content: none; 
    }
    
    /* Transform hamburger into X */
    .nav-menu.active ~ .hamburger span:nth-child(1),
    .nav-menu.active ~ .header-action ~ .hamburger span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .nav-menu.active ~ .hamburger span:nth-child(2),
    .nav-menu.active ~ .header-action ~ .hamburger span:nth-child(2) {
        opacity: 0;
    }
    .nav-menu.active ~ .hamburger span:nth-child(3),
    .nav-menu.active ~ .header-action ~ .hamburger span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    .header-action {
        display: none;
    }
    .navbar .container {
        padding: 0 20px;
    }
    .logo-text strong {
        font-size: 18px;
    }
    .logo-img {
        width: 60px;
        height: 60px;
    }
}

/* Hero Slider Styles */
.hero-slider {
    margin-top: 0;
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    width: 100%;
}

.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    top: 0;
    left: 0;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    text-align: left;
    color: #fff;
    z-index: 2;
    max-width: 650px;
    padding: 20px;
}

.slide-content h2 {
    font-size: 52px;
    margin-bottom: 25px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 3px;
    font-weight: bold;
    line-height: 1.3;
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 35px;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.3s;
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
}

.btn:hover {
    background: #c0392b;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    padding: 20px 18px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
    z-index: 3;
    border-radius: 3px;
}

.slider-btn:hover {
    background: #fff;
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #fff;
}

/* Mobile Responsiveness for Hero Slider */
@media (max-width: 768px) {
    .hero-slider {
        min-height: 70vh;
        height: 70vh;
    }
    
    .slide-content {
        left: 0;
        width: 100%;
        max-width: 100%;
        padding: 0 50px; /* Ensure space for arrows */
        text-align: center;
        top: 55%;
    }
    
    .slide-content h2 {
        font-size: 32px;
        letter-spacing: 1px;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .slide-content p {
        font-size: 15px;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    .slider-btn {
        width: 38px;
        height: 38px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
        border-radius: 50%;
    }
    
    .slider-btn:hover {
        background: rgba(255, 255, 255, 0.4);
        color: #fff;
    }
    
    .slider-btn.prev {
        left: 8px;
    }
    
    .slider-btn.next {
        right: 8px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
}

/* Impact Stories Section */
.impact-stories {
    padding: 80px 0;
    background: #fff;
}

.impact-stories h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 400;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.story-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    transition: transform 0.3s;
}

.story-card:hover {
    transform: scale(1.02);
}

.story-card.large {
    height: 400px;
}

.story-card.small {
    height: 400px;
}

.story-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.story-card:hover img {
    transform: scale(1.1);
}

.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
    padding: 30px;
    color: #fff;
}

.story-tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
    background: #e74c3c;
}

.story-overlay h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.story-overlay p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.95;
}

.story-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 2px solid #fff;
    padding-bottom: 2px;
    display: inline-block;
    transition: opacity 0.3s;
}

.story-link:hover {
    opacity: 0.8;
}


/* Crowdfunding Section */
.crowdfunding-section {
    padding: 80px 0;
    background: #fff;
}

.crowdfunding-header {
    text-align: center;
    margin-bottom: 60px;
}

.crowdfunding-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.crowdfunding-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #e74c3c;
}

.crowdfunding-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.7;
}

.crowdfunding-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.campaign-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.campaign-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.campaign-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.campaign-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.campaign-card:hover .campaign-image img {
    transform: scale(1.1);
}

.campaign-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e74c3c;
    color: #fff;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.campaign-badge.featured {
    background: #f39c12;
}

.campaign-badge.success {
    background: #27ae60;
}

.campaign-content {
    padding: 30px;
}

.campaign-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.4;
}

.campaign-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.campaign-progress {
    margin-bottom: 20px;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.progress-stats .raised {
    color: #e74c3c;
    font-weight: 600;
}

.progress-stats .goal {
    color: #999;
}

.campaign-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.meta-item i {
    color: #e74c3c;
    font-size: 16px;
}

.campaign-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: #e74c3c;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.campaign-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.crowdfunding-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
}

.crowdfunding-cta p {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
}

.cta-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


/* Areas of Work Section */
.areas-of-work {
    padding: 80px 0;
    background: #f9f9f9;
}

.areas-of-work .container {
    padding: 0 15px;
    max-width: 100%;
}

.areas-of-work h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 400;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    max-width: 100%;
}

.work-item {
    position: relative;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    width: 100%;
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-item:hover img {
    transform: scale(1.1);
}

.work-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.work-item:hover .work-item-overlay {
    bottom: 0;
    background: rgba(231, 76, 60, 0.9);
}

.work-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.work-item:hover .work-icon {
    background: rgba(255, 255, 255, 0.3);
}

.work-icon i {
    font-size: 22px;
    color: #fff;
}

.work-item-overlay h3 {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin: 0;
}

.work-item:nth-child(1):hover .work-item-overlay {
    background: rgba(46, 204, 113, 0.9);
}

.work-item:nth-child(2):hover .work-item-overlay {
    background: rgba(241, 196, 15, 0.9);
}

.work-item:nth-child(3):hover .work-item-overlay {
    background: rgba(231, 76, 60, 0.9);
}

.work-item:nth-child(4):hover .work-item-overlay {
    background: rgba(52, 152, 219, 0.9);
}

.work-item:nth-child(5):hover .work-item-overlay {
    background: rgba(192, 57, 43, 0.9);
}

.work-item:nth-child(6):hover .work-item-overlay {
    background: rgba(155, 89, 182, 0.9);
}

.work-item:nth-child(7):hover .work-item-overlay {
    background: rgba(230, 126, 34, 0.9);
}

.work-item:nth-child(8):hover .work-item-overlay {
    background: rgba(231, 76, 60, 0.9);
}

.work-item:nth-child(9):hover .work-item-overlay {
    background: rgba(52, 73, 94, 0.9);
}

.work-item:nth-child(10):hover .work-item-overlay {
    background: rgba(39, 174, 96, 0.9);
}

/* About Organization Section */
.about-organization {
    padding: 80px 0;
    background: #fff;
}

.about-org-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-org-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 400;
}

.about-org-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-org-text h3 {
    font-size: 20px;
    margin: 30px 0 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.about-org-text .btn {
    margin-top: 20px;
}

.about-org-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.about-org-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-org-image:hover img {
    transform: scale(1.05);
}


/* Voices Section */
.voices-section {
    padding: 80px 0;
    background: #e74c3c;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.voices-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 400;
}

.voices-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
}

.voice-tab {
    padding: 12px 35px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
}

.voice-tab:first-child {
    border-radius: 25px 0 0 25px;
}

.voice-tab:last-child {
    border-radius: 0 25px 25px 0;
    border-left: none;
}

.voice-tab.active {
    background: #fff;
    color: #e74c3c;
}

.voice-tab:hover {
    background: rgba(255, 255, 255, 0.2);
}

.voice-tab.active:hover {
    background: #fff;
}

.voices-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.voices-slider {
    display: flex;
    overflow: hidden;
    position: relative;
}

.voice-item {
    min-width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 40px;
}

.voice-item.active {
    display: flex;
}

.voice-images {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
}

.voice-image {
    width: 180px;
    height: 180px;
    border-radius: 0;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.voice-image.main {
    width: 220px;
    height: 220px;
    border: 4px solid #fff;
}

.voice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voice-quote {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    max-width: 800px;
}

.voice-author {
    font-size: 15px;
    font-weight: 500;
    opacity: 0.95;
}

.voices-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    border: none;
    padding: 15px 18px;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
    border-radius: 3px;
}

.voices-nav:hover {
    background: rgba(255, 255, 255, 0.5);
}

.voices-nav.prev {
    left: 0;
}

.voices-nav.next {
    right: 0;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Latest News Section */
.latest-news {
    padding: 80px 0;
    background: #f5f5f5;
}

.latest-news h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 400;
}

.news-carousel-wrapper {
    position: relative;
}

.news-carousel {
    display: flex;
    gap: 30px;
    overflow: hidden;
    padding: 0 50px;
}

.news-card {
    min-width: calc(33.333% - 20px);
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.news-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: #fff;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.4;
}

.news-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.news-link {
    display: inline-block;
    padding: 10px 25px;
    background: #333;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.3s;
}

.news-link:hover {
    background: #000;
}

.news-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    padding: 15px 18px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
    z-index: 10;
}

.news-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.news-nav.prev {
    left: 0;
}

.news-nav.next {
    right: 0;
}


/* Core Areas Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.core-areas-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.core-areas-header h2 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 700;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.core-areas-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #fff, #e74c3c);
    border-radius: 10px;
}

.core-intro {
    font-size: 18px;
    line-height: 1.9;
    max-width: 900px;
    margin: 35px auto 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.about-section .work-areas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.about-section .work-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.about-section .work-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #fff, #ffd700, #fff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.about-section .work-card:hover::before {
    transform: scaleX(1);
}

.about-section .work-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.about-section .work-card:hover::after {
    opacity: 1;
}

.about-section .work-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 30px 80px rgba(231, 76, 60, 0.4);
}

.work-card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
    position: relative;
}

.work-card-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c0392b, #a93226);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.about-section .work-card:hover .work-card-icon {
    transform: rotateY(360deg) scale(1.1);
}

.about-section .work-card:hover .work-card-icon::before {
    opacity: 1;
}

.work-card-icon i {
    font-size: 45px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.about-section .work-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.about-section .work-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* Responsive for Core Areas */
@media (max-width: 1024px) {
    .about-section .work-areas {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .core-areas-header h2 {
        font-size: 40px;
    }
    
    .about-section .work-card {
        padding: 40px 30px;
    }
    
    .work-card-icon {
        width: 85px;
        height: 85px;
    }
    
    .work-card-icon i {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-section .work-areas {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .core-areas-header h2 {
        font-size: 32px;
    }
    
    .core-intro {
        font-size: 16px;
    }
    
    .about-section .work-card {
        padding: 35px 25px;
    }
    
    .work-card-icon {
        width: 75px;
        height: 75px;
    }
    
    .work-card-icon i {
        font-size: 32px;
    }
    
    .about-section .work-card h3 {
        font-size: 20px;
    }
    
    .about-section .work-card p {
        font-size: 15px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, transparent);
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #fff;
}

.footer-section p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 15px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #fff, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.footer-section ul li a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.footer-section ul li a:hover {
    color: #e74c3c;
    padding-left: 10px;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.social-links a:hover {
    background: #e74c3c;
    transform: translateY(-5px);
    border-color: #e74c3c;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.footer-contact-info {
    margin-top: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item i {
    color: #e74c3c;
    font-size: 18px;
    margin-top: 3px;
}

.footer-newsletter {
    margin-top: 25px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
}

.newsletter-input:focus {
    outline: none;
    border-color: #e74c3c;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    padding: 12px 25px;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 15px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #e74c3c;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}


/* Responsive Styles */
@media (max-width: 1200px) {
    .work-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .crowdfunding-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .logo {
        padding: 18px 20px;
    }

    .social-icons {
        padding: 18px 20px;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .story-card.large,
    .story-card.small {
        height: 350px;
    }

    .about-org-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-org-image {
        height: 400px;
    }

    .about-org-text h2 {
        font-size: 30px;
    }

    .voice-images {
        flex-wrap: wrap;
    }

    .voice-image {
        width: 150px;
        height: 150px;
    }

    .voice-image.main {
        width: 180px;
        height: 180px;
    }

    .news-card {
        min-width: calc(50% - 15px);
    }

    .about-section .work-areas {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .core-areas-header h2 {
        font-size: 36px;
    }

    .crowdfunding-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .work-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .crowdfunding-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .crowdfunding-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .slide-content {
        left: 5%;
        max-width: 90%;
        padding: 15px;
    }

    .slide-content h2 {
        font-size: 32px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .hero-slider {
        height: 500px;
    }

    .slider-btn {
        padding: 15px 12px;
        font-size: 14px;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    .social-icons a {
        font-size: 14px;
    }

    .impact-stories h2 {
        font-size: 28px;
    }

    .story-card.large,
    .story-card.small {
        height: 300px;
    }

    .story-overlay h3 {
        font-size: 18px;
    }

    .story-overlay p {
        font-size: 13px;
    }

    .crowdfunding-section {
        padding: 60px 0;
    }

    .crowdfunding-grid {
        grid-template-columns: 1fr;
    }

    .crowdfunding-header h2 {
        font-size: 30px;
    }

    .crowdfunding-header p {
        font-size: 16px;
    }

    .campaign-image {
        height: 220px;
    }

    .campaign-content {
        padding: 25px;
    }

    .campaign-content h3 {
        font-size: 20px;
    }

    .campaign-meta {
        flex-direction: column;
        gap: 12px;
    }

    .crowdfunding-cta {
        padding: 30px 20px;
    }

    .crowdfunding-cta p {
        font-size: 16px;
    }

    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .work-item {
        height: 280px;
    }

    .areas-of-work h2 {
        font-size: 28px;
    }

    .work-item-overlay h3 {
        font-size: 13px;
    }

    .work-icon {
        width: 40px;
        height: 40px;
    }

    .work-icon i {
        font-size: 18px;
    }

    .about-organization {
        padding: 60px 0;
    }

    .about-org-text h2 {
        font-size: 26px;
    }

    .about-org-text p {
        font-size: 15px;
    }

    .about-org-image {
        height: 350px;
    }

    .voices-section {
        padding: 60px 0;
    }

    .voices-section h2 {
        font-size: 28px;
    }

    .voice-tab {
        padding: 10px 25px;
        font-size: 14px;
    }

    .voice-item {
        padding: 0 20px;
    }

    .voice-quote {
        font-size: 16px;
    }

    .voice-images {
        gap: 10px;
    }

    .voice-image {
        width: 120px;
        height: 120px;
    }

    .voice-image.main {
        width: 150px;
        height: 150px;
    }

    .voices-nav {
        padding: 12px 15px;
        font-size: 16px;
    }

    .latest-news {
        padding: 60px 0;
    }

    .latest-news h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .news-carousel {
        padding: 0 40px;
        gap: 20px;
    }

    .news-card {
        min-width: 100%;
    }

    .news-image {
        height: 220px;
    }

    .news-content h3 {
        font-size: 18px;
    }

    .news-content p {
        font-size: 14px;
    }

    .news-nav {
        padding: 12px 15px;
        font-size: 16px;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-section .work-areas {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .core-areas-header h2 {
        font-size: 30px;
    }

    .core-intro {
        font-size: 16px;
    }

    .about-section .work-card {
        padding: 35px 25px;
    }

    .work-card-icon {
        width: 75px;
        height: 75px;
    }

    .work-card-icon i {
        font-size: 35px;
    }
}

@media (max-width: 480px) {
    .work-grid {
        grid-template-columns: 1fr;
    }
}


/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: #fff;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.blog-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #e74c3c;
}

.blog-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.7;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #e74c3c;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #999;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    color: #e74c3c;
}

.blog-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s;
}

.blog-card:hover .blog-content h3 {
    color: #e74c3c;
}

.blog-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.blog-read-more:hover {
    gap: 12px;
}

.blog-read-more i {
    transition: transform 0.3s;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
    margin-top: 60px;
}

.cta-btn-outline {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.cta-btn-outline:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive for Blog */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-header h2 {
        font-size: 32px;
    }
    
    .blog-header p {
        font-size: 16px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-image {
        height: 220px;
    }
    
    .blog-content {
        padding: 25px;
    }
    
    .blog-content h3 {
        font-size: 20px;
    }
}
