/* Futuristic Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-blue: #101d56;
    --secondary-blue: #0d1846;
    --accent-orange: #f97918;
    --light-orange: #f3d566;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --text-dark: #101d56;
    --text-gray: #6c757d;
    --text-light: #adb5bd;
    --card-shadow: 0 10px 30px rgba(16, 29, 86, 0.1);
    --orange-shadow: 0 10px 30px rgba(249, 121, 24, 0.1);
    --hover-shadow: 0 15px 40px rgba(16, 29, 86, 0.2);
}

/* Global Custom Scrollbar Styling */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-blue) rgba(0, 0, 0, 0.1);
}

/* Webkit Scrollbar Styling for Chrome, Safari, Edge */
*::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

*::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 6px;
}

*::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 6px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

*::-webkit-scrollbar-thumb:hover {
    background: var(--accent-orange);
    border-color: rgba(249, 121, 24, 0.2);
}

*::-webkit-scrollbar-corner {
    background: rgba(0, 0, 0, 0.05);
}

/* Page Loading Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

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

/* Removed distracting animations for professional appearance */

/* Professional Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Specific animation delays for proper sequencing */
.section-header {
    animation-delay: 0.2s;
}

.news-card {
    animation-delay: 0.8s;
}

.explore-card {
    animation-delay: 0.8s;
}

.fresh-project-card {
    animation-delay: 0.8s;
}

body {
    font-family: 'Montserrat';
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    position: relative;
}

/* Global font family override */
* {
    font-family: 'Montserrat';
}

body::before {
    display: none;
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 29, 86, 0.02) 0%, transparent 50%, rgba(249, 121, 24, 0.02) 100%);
    z-index: -1;
    pointer-events: none;
}

/* General heading styles */
h2 {
    color: var(--primary-blue);
    font-weight: 700;
    line-height: 1.3;
}

/* Section paragraph styles */
section p, .section-content p {
    text-align: justify;
    line-height: 1.8;
    color: var(--text-gray);
}

/* Particles.js Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
}

/* Remove cyber loading - not needed for professional design */

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

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

.container-fluid {
    width: 100%;
    padding: 0;
}

/* Top Bar */
.top-bar {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0; /* flush like reference */
    font-size: 14px;
}

/* Make the top bar content a fixed height and stretch children to match */
.top-bar .container {
    max-width: 1600px; /* match header container width */
    padding-left: 20px;
    padding-right: 0; /* allow orange block to touch right edge */
    margin: 0 auto; /* center the container */
}

.top-bar-content { 
    min-height: 46px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.contact-info {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-left: 60px; /* shift email to match logo offset */
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 400;
}

/* Email pill styling */
.email-item {
    font-weight: 500;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
}

.email-item:hover {
    opacity: 0.8;
    transform: translateX(3px);
}

.email-icon {
    width: 34px;
    height: 34px;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    transition: all 0.3s ease;
}

.email-item:hover .email-icon {
    background: rgba(255, 255, 255, 0.1);
}

.contact-info i {
    font-size: 14px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--primary-blue);
    padding: 8px 15px;
    border-radius: 0 0 0 20px;
}

.social-links a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Follow Us Block */
.follow-us-block {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--accent-orange);
    padding: 8px 32px 8px 38px; /* increased horizontal padding */
    border-radius: 0 0 0 20px; /* rounded bottom-left corner */
    position: relative;
    box-shadow: 0 4px 12px rgba(249,121,24,0.35);
    align-self: flex-end; /* align to bottom */
}

.follow-label {
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.follow-us-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.follow-icon {
    text-decoration: none;
}

.icon-circle {
    width: 30px;
    height: 30px;
    background: #1a2a5e; /* slightly lighter navy */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #fff;
    font-size: 13px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.icon-circle:hover {
    background: #243a7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Nav link color to match reference (desktop header) */
.header .nav .nav-link,
.header .nav .nav-link:visited { 
    color: var(--accent-orange);
    font-weight: 600;
}
.header .nav .nav-link:hover { color: #e56410; }

@media (max-width: 768px) {
    .follow-us-block {
        padding: 0 14px 0 14px;
        gap: 12px;
        border-radius: 0;
    }
    .icon-circle, .email-icon { width: 26px; height: 26px; font-size: 12px; }
    .follow-label { font-size: 12px; }
    .email-item { font-size: 12px; }
}

/* Header */
.header {
    background: var(--white);
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideInFromBottom 0.8s ease-out;
    width: 100%;
    backdrop-filter: blur(10px);
}

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

.header-content {
    display: flex;
    align-items: center;
    justify-content: center; /* center whole block */
    width: 100%;
    max-width: 100%;
    gap: 70px; /* space between logo and nav */
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    animation: fadeInLeft 1s ease-out 0.3s both;
    flex-shrink: 0;
    margin-left: 60px; /* shift logo to right */
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
}

.logo-image {
    height: calc(100vh - 24px);
    max-height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 6px rgba(16, 29, 86, 0.15));
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.logo:hover .logo-image {
    transform: scale(1.08);
    filter: drop-shadow(0 5px 15px rgba(16, 29, 86, 0.25));
    background: rgba(255, 255, 255, 0.05);
}


.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: 'Montserrat';
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 11px;
    color: var(--accent-orange);
    font-weight: 500;
    margin-top: -2px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

/* Navigation */
.nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
    align-items: center;
    margin-left: 0; /* allow centering */
}

.nav-list li {
    animation: fadeInRight 0.6s ease-out both;
}

.nav-list li:nth-child(1) { animation-delay: 0.4s; }
.nav-list li:nth-child(2) { animation-delay: 0.5s; }
.nav-list li:nth-child(3) { animation-delay: 0.6s; }
.nav-list li:nth-child(4) { animation-delay: 0.7s; }
.nav-list li:nth-child(5) { animation-delay: 0.8s; }
.nav-list li:nth-child(6) { animation-delay: 0.9s; }
.nav-list li:nth-child(7) { animation-delay: 1.0s; }

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
    white-space: nowrap;
    padding: 6px 0;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-link:hover i {
    transform: rotate(180deg);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    justify-content: flex-end;
}

/* Desktop - hide mobile menu button */
.mobile-menu-btn {
    display: none;
}

.search-btn,
.cart-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
}

.search-btn:hover,
.cart-btn:hover {
    color: var(--primary-blue);
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-orange);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.donation-btn {
    background: var(--accent-orange);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.donation-btn:hover {
    background: #e85a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 121, 24, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
}

/* Custom Scrollbar for Mobile Navigation */
.mobile-nav-content::-webkit-scrollbar {
    width: 8px;
}

.mobile-nav-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.mobile-nav-content::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-nav-content::-webkit-scrollbar-thumb:hover {
    background: var(--accent-orange);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-close-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.mobile-nav {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    overflow-y: auto;
}

/* Custom Scrollbar for Mobile Navigation List */
.mobile-nav-list::-webkit-scrollbar {
    width: 6px;
}

.mobile-nav-list::-webkit-scrollbar-track {
    background: transparent;
}

.mobile-nav-list::-webkit-scrollbar-thumb {
    background: rgba(16, 29, 86, 0.3);
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.mobile-nav-list::-webkit-scrollbar-thumb:hover {
    background: rgba(16, 29, 86, 0.6);
}

.mobile-nav-item {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.5s ease-out forwards;
}

.mobile-nav-item:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-item:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav-item:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav-item:nth-child(4) { animation-delay: 0.4s; }
.mobile-nav-item:nth-child(5) { animation-delay: 0.5s; }
.mobile-nav-item:nth-child(6) { animation-delay: 0.6s; }
.mobile-nav-item:nth-child(7) { animation-delay: 0.7s; }

.mobile-nav-link {
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary-blue);
    padding-left: 15px;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Large Screen Adjustments */
@media (max-width: 1200px) {
    .nav-list {
        gap: 35px;
        margin-left: auto;
    }
    
    .nav-link {
        font-size: 15px;
    }
}

/* Medium Screen Adjustments */
@media (max-width: 1024px) {
    .nav-list { gap: 30px; }
    
    .nav-link {
        font-size: 15px;
    }
    
    .brand-name {
        font-size: 20px;
    }
}

@media (max-width: 900px) {
    .nav-list { gap: 25px; }
    
    .nav-link {
        font-size: 14px;
    }
}

@media (max-width: 820px) {
    .nav-list { gap: 20px; }
    
    .nav-link {
        font-size: 13px;
        padding: 10px 0;
    }
    
    .brand-name {
        font-size: 19px;
    }
}

/* Responsive Header */
@media (max-width: 768px) {
    .top-bar {
        padding: 8px 0;
        font-size: 12px;
    }
    
    .contact-info {
        gap: 20px;
    }
    
    .contact-info span:last-child {
        display: none;
    }
    
    .header {
        padding: 12px 0;
    }
    
    .header-content { justify-content: space-between; gap: 15px; }
    
    .nav {
        display: none;
    }
    
    .header-actions {
        display: flex;
        align-items: center;
        gap: 15px;
        flex-shrink: 0;
        min-width: auto;
        justify-content: flex-end;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .brand-name {
        font-size: 18px;
    }
    
    .tagline {
        font-size: 11px;
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
    }
}


@media (max-width: 480px) {
    .contact-info span {
        font-size: 12px;
    }
    
    .social-links {
        padding: 6px 12px;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .brand-name {
        font-size: 16px;
    }
    
    .tagline {
        font-size: 10px;
    }
    
    .mobile-menu-btn {
        width: 24px;
        height: 18px;
    }
    
    .hamburger-line {
        height: 2px;
    }
    
    .mobile-nav-content {
        padding: 15px;
    }
    
    .mobile-nav-link {
        font-size: 18px;
        padding: 12px 0;
    }
    
    .header-content {
        gap: 10px;
    }
    
    .container {
        padding: 0 15px;
    }
}


/* Professional Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hologram-container {
    position: relative;
}

.logo-hologram {
    position: relative;
    padding: 8px 0;
}

.logo-hologram::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-cyan), var(--primary-purple), var(--accent-orange));
    z-index: -1;
}

/* Removed floating animation for professional appearance */

/* Removed borderRotate animation for formal appearance */

.logo-text-main {
    font-family: 'Montserrat';
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: 0.05em;
    position: relative;
}

.logo-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--neural-grid);
    background-size: 10px 10px;
    opacity: 0.3;
    animation: gridMove 10s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

.logo-text .tagline {
    font-size: 12px;
    color: var(--accent-orange);
    font-weight: 500;
    font-family: 'Montserrat';
    letter-spacing: 0.1em;
    position: relative;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.tagline-pulse {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    opacity: 0.6;
}

/* Futuristic Navigation */
.nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 12px 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat';
    font-size: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    color: var(--primary-cyan);
    text-shadow: var(--glow-cyan);
    transition: opacity 0.3s ease;
    font-weight: 700;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
}

.nav-link:hover .link-text,
.nav-link.active .link-text {
    opacity: 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-orange);
    background: rgba(249, 121, 24, 0.1);
    transform: translateY(-2px);
}

.cyber-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-link:hover .cyber-arrow {
    transform: rotate(180deg);
    color: var(--primary-cyan);
}

.nav-glitch {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.nav-link:hover .nav-glitch {
    animation: glitchSweep 0.6s ease;
}

@keyframes glitchSweep {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Futuristic Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.cyber-search-btn {
    position: relative;
    background: var(--white);
    border: 2px solid var(--medium-gray);
    font-size: 18px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
    overflow: hidden;
}

.cyber-search-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.search-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
}

.cyber-cart {
    position: relative;
    cursor: pointer;
    padding: 12px;
    border: 2px solid var(--medium-gray);
    border-radius: 50%;
    background: var(--white);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.cyber-cart:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--orange-shadow);
}

/* Removed cart pulse animation for professional appearance */

.cart-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(16, 29, 86, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

.cyber-donate-btn {
    position: relative;
    background: var(--accent-orange);
    border: 2px solid var(--accent-orange);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Montserrat';
    overflow: hidden;
    transition: all 0.3s ease;
}

.cyber-donate-btn:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    box-shadow: var(--hover-shadow);
    transform: translateY(-3px);
}

.btn-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cyber-donate-btn:hover .btn-bg {
    left: 100%;
}

.btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.btn-particles::before,
.btn-particles::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-cyan);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 3s ease-in-out infinite;
}

.btn-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.btn-particles::after {
    top: 70%;
    right: 15%;
    animation-delay: 1.5s;
}

@keyframes particleFloat {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-10px); }
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 255, 255, 0.6);
    transform: scale(0);
    animation: rippleExpand 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleExpand {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* Hero Carousel Section */
.hero-carousel {
    height: calc(100vh - 140px);
    position: relative;
    overflow: hidden;
}

.hero-swiper {
    height: 100%;
}

.hero-slide {
    height: calc(100vh - 140px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    position: relative;
}

/* Hero Overlay Text */
.hero-overlay-text {
    position: absolute;
    bottom: 54px;
    left: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    color: white;
    font-size: 1.3rem;
    font-weight: 400;
    text-align: center;
    padding: 15px 120px;
    padding-top: 15px;
    padding-bottom: 15px;
    letter-spacing: 0.5px;
    line-height: 1.3;
    z-index: 5;
    height: 97px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Latest News Section */
.latest-news-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: stretch;
    background: transparent;
    overflow: hidden;
    height: 61px;
}

.latest-news-label {
    background: rgba(13, 24, 70, 0.95);
    color: white;
    padding: 18px 35px;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.latest-news-ticker {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: var(--accent-orange);
    gap: 15px;
}

.ticker-content-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    align-items: center;
    animation: scroll-ticker 45s linear infinite;
    white-space: nowrap;
}

.ticker-content:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-block;
    padding: 0 50px;
    font-size: 1rem;
    font-weight: 500;
    color: white;
    border-right: 2px solid rgba(255, 255, 255, 0.3);
}

.ticker-item:last-child {
    border-right: none;
}

.ticker-arrow {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    flex-shrink: 0;
}

.ticker-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.ticker-arrow:active {
    transform: scale(0.95);
}

@keyframes scroll-ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Remove old styles */
.latest-updates-container,
.latest-updates-header,
.latest-updates-ticker {
    /* These classes are now replaced by latest-news- versions */
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    background: var(--accent-orange);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    display: inline-block;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 1000px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #f3d566;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
    color: #f3d566 !important;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 3.2rem;
    font-weight: 700;
    color: #f97918;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-stats .stat-label {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-top: 5px;
    color: #f3d566 !important;
}

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

.hero-buttons .cta-primary,
.hero-buttons .cta-secondary {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.hero-buttons .cta-primary {
    background: var(--accent-orange);
    color: white;
}

.hero-buttons .cta-primary:hover {
    background: #e85a2b;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(249, 121, 24, 0.3);
}

.hero-buttons .cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-buttons .cta-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-3px);
}

/* Hero Navigation */
.hero-next,
.hero-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-next {
    right: 30px;
}

.hero-prev {
    left: 30px;
}

.hero-next:hover,
.hero-prev:hover {
    background: rgba(232, 90, 43, 0.9);
    border-color: rgba(232, 90, 43, 1);
    transform: translateY(-50%) scale(1.1);
}

.hero-next::after,
.hero-prev::after {
    content: none;
}

/* Hero Pagination */
.hero-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--accent-orange);
    transform: scale(1.3);
}

/* Hero Responsive Styles */
@media (max-width: 768px) {
    .hero-carousel {
        height: 100vh;
    }
    
    .hero-slide {
        height: 100vh;
    }
    
    .hero-overlay-text {
        font-size: 1rem;
        padding: 12px 50px;
        bottom: 46px;
        line-height: 1.25;
        height: 46px;
    }
    
    .latest-news-label {
        padding: 20px 25px;
        font-size: 1.3rem;
    }
    
    .latest-news-ticker {
        padding: 12px 10px;
    }
    
    .ticker-item {
        font-size: 0.95rem;
        padding: 0 30px;
    }
    
    .ticker-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 40px;
        margin-bottom: 30px;
    }
    
    .hero-stats .stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .cta-primary,
    .hero-buttons .cta-secondary {
        padding: 12px 25px;
        font-size: 14px;
        width: 200px;
        justify-content: center;
    }
    
    .hero-next,
    .hero-prev {
        width: 50px;
        height: 50px;
        font-size: 14px;
    }
    
    .hero-next {
        right: 15px;
    }
    
    .hero-prev {
        left: 15px;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        height: 100vh;
    }
    
    .hero-slide {
        height: 100vh;
    }
    
    .hero-overlay-text {
        font-size: 0.85rem;
        padding: 10px 30px;
        bottom: 46px;
        line-height: 1.2;
        height: 46px;
    }
    
    .latest-news-container {
        flex-direction: column;
    }
    
    .latest-news-label {
        padding: 15px 20px;
        font-size: 1.1rem;
    }
    
    .latest-news-ticker {
        padding: 10px 8px;
        gap: 10px;
    }
    
    .ticker-item {
        font-size: 0.85rem;
        padding: 0 25px;
    }
    
    .ticker-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 15px;
        margin-bottom: 20px;
    }
    
    .hero-stats {
        gap: 30px;
        margin-bottom: 25px;
    }
    
    .hero-stats .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-next,
    .hero-prev {
        display: none;
    }
    
    .hero-pagination {
        bottom: 20px;
    }
}

.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--neural-grid);
    background-size: 50px 50px;
    opacity: 0.1;
    animation: gridMove 20s linear infinite;
}

.hero-neural-network {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.neural-connection {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-cyan);
    border-radius: 50%;
    box-shadow: var(--glow-cyan);
    animation: neuralPulse 3s ease-in-out forwards;
}

@keyframes neuralPulse {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(2);
    }
}

.hero-content {
    z-index: 2;
    padding-left: 40px;
}

.hero-text {
    color: var(--white);
    max-width: 600px;
}

.hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #f3d566;
    letter-spacing: 0.1em;
}

.cyber-bracket {
    color: var(--primary-cyan);
    font-weight: 700;
}

.glitch-text {
    position: relative;
    color: var(--text-primary);
    animation: glitchAnimation 3s ease-in-out infinite;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    animation: glitch1 0.5s ease-in-out infinite alternate;
    color: var(--primary-cyan);
    z-index: -1;
}

.glitch-text::after {
    animation: glitch2 0.5s ease-in-out infinite alternate;
    color: var(--accent-orange);
    z-index: -2;
}

@keyframes glitch1 {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

@keyframes glitch2 {
    0% { transform: translate(0); }
    20% { transform: translate(2px, 2px); }
    40% { transform: translate(2px, -2px); }
    60% { transform: translate(-2px, 2px); }
    80% { transform: translate(-2px, -2px); }
    100% { transform: translate(0); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: 'Montserrat';
}

.title-line {
    display: block;
    position: relative;
    overflow: hidden;
}

.title-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-purple));
    transform: translateX(-100%);
    animation: titleUnderline 1s ease-out 2s forwards;
}

@keyframes titleUnderline {
    to { transform: translateX(0); }
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-label {
    font-family: 'Montserrat';
    font-size: 0.9rem;
    color: #f3d566;
    margin-bottom: 8px;
    display: block;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

.stat-divider {
    width: 2px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.hero-cta {
    display: flex;
    gap: 25px;
    align-items: center;
}

.cta-primary {
    position: relative;
    background: var(--accent-orange);
    border: none;
    color: var(--white);
    padding: 18px 35px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Montserrat';
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--orange-shadow);
}

.cta-primary:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
}

.btn-scanner {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: scanner 2s linear infinite;
}

@keyframes scanner {
    0% { left: -100%; }
    100% { left: 100%; }
}

.cta-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    padding: 16px 30px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat';
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--primary-blue);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image-container:hover .hero-image {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(16, 29, 86, 0.2), rgba(249, 121, 24, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-image-container:hover .image-overlay {
    opacity: 1;
}

.holographic-display {
    position: relative;
    width: 400px;
    height: 400px;
    perspective: 1000px;
}

.holo-frame {
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-cyan);
    border-radius: 20px;
    background: rgba(0, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* Removed holoRotate animation for formal appearance */

.holo-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
}

.ai-visualization {
    position: relative;
    width: 100%;
    height: 100%;
}

.neural-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 3px solid var(--primary-cyan);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3) 0%, transparent 70%);
    animation: coreRotate 5s linear infinite;
}

.neural-core::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-purple);
    border-radius: 50%;
    animation: coreRotate 3s linear infinite reverse;
}

@keyframes coreRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.data-streams {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.stream {
    position: absolute;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--primary-cyan), transparent);
    animation: streamFlow 2s ease-in-out infinite;
}

.stream:nth-child(1) {
    left: 20%;
    height: 60%;
    top: 20%;
    animation-delay: 0s;
}

.stream:nth-child(2) {
    right: 20%;
    height: 70%;
    top: 15%;
    animation-delay: 0.5s;
}

.stream:nth-child(3) {
    left: 50%;
    height: 80%;
    top: 10%;
    animation-delay: 1s;
}

.stream:nth-child(4) {
    left: 70%;
    height: 50%;
    top: 25%;
    animation-delay: 1.5s;
}

@keyframes streamFlow {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

.holo-scanlines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 255, 0.1) 2px,
        rgba(0, 255, 255, 0.1) 4px
    );
    animation: scanlines 3s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(20px); }
}

/* Floating Elements */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-cyan);
    border-radius: 50%;
    box-shadow: var(--glow-cyan);
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--delay);
    left: var(--x);
    top: var(--y);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

/* Categories Section */
.categories {
    padding: 40px 0;
    background: linear-gradient(135deg, #0d1846 0%, #101d56 50%, #0d1846 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(249, 121, 24, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(243, 213, 102, 0.08) 0%, transparent 50%);
    animation: moveBackground 20s ease-in-out infinite;
    z-index: 0;
}

.categories::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.02) 35px, rgba(255, 255, 255, 0.02) 70px);
    z-index: 0;
}

.categories > * {
    position: relative;
    z-index: 1;
}

@keyframes moveBackground {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10%); }
}

.section-title {
    font-family: 'Montserrat';
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 50px;
    position: relative;
    color: var(--white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background: var(--white);
    opacity: 0.3;
}

@keyframes titleGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 255, 0.5); }
    50% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.8); }
}

/* Categories Carousel Styles */
.categories-carousel-container {
    position: relative;
    margin-top: 30px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    overflow: visible;
    height: 500px;
    display: flex;
    align-items: center;
}

.categories-swiper {
    padding: 40px 60px;
    position: relative;
    overflow: visible;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.categories-swiper .swiper-wrapper {
    align-items: center;
    height: 100%;
}

.categories-swiper .swiper-slide {
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease;
    overflow: visible;
    position: relative;
}

/* Active card styling for dynamic highlighting - Center card */
.category-card.active {
    background: var(--white);
    z-index: 10;
    position: relative;
    opacity: 1;
}



.category-card.active .category-number {
    color: var(--accent-orange);
    font-weight: 800;
    transform: scale(1.05);
    text-shadow: none;
}

.category-card.active .category-icon {
    background: var(--accent-orange);
    color: var(--white);
    transform: none;
    box-shadow: none;
}

.category-card.active h3 {
    color: var(--primary-blue);
    font-weight: 800;
    transform: scale(1.05);
    text-shadow: none;
}

.backers-swiper {
    overflow: hidden;
}

.backers-swiper .swiper-slide {
    width: auto;
    margin-right: 15px;
}

.backers-swiper .swiper-slide img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.backers-swiper .swiper-slide img:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Projects Endless Scroll Styles */
.projects-scroll-container {
    margin-top: 50px;
    overflow: hidden;
    position: relative;
}

.projects-scroll-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.projects-scroll-track {
    display: inline-flex;
    animation: scrollLeftProjects 45s linear infinite;
    gap: 30px;
}

/* Projects endless scroll animation */
@keyframes scrollLeftProjects {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.projects-scroll-container:hover .projects-scroll-track {
    animation-play-state: paused;
}

/* Carousel Navigation */
.categories .carousel-navigation {
    display: block; /* Show navigation for categories */
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 20;
    pointer-events: none;
}

.categories .swiper-button-prev,
.categories .swiper-button-next {
    position: absolute;
    top: 0;
    transform: translateY(0);
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    color: var(--primary-blue);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    margin: 0;
    z-index: 25;
    box-shadow: 0 6px 20px rgba(16, 29, 86, 0.25);
    backdrop-filter: blur(10px);
    pointer-events: all;
}

/* Subtle breathing animation for visibility */
.categories .swiper-button-prev,
.categories .swiper-button-next {
    animation: categoryNavBreathe 3s ease-in-out infinite;
}

@keyframes categoryNavBreathe {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(16, 29, 86, 0.25);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(16, 29, 86, 0.35);
    }
}

.categories .swiper-button-prev:hover,
.categories .swiper-button-next:hover {
    animation: none;
}

.categories .swiper-button-prev:active,
.categories .swiper-button-next:active {
    transform: scale(0.95);
    box-shadow: 0 4px 15px rgba(249, 121, 24, 0.6);
}

.categories .swiper-button-prev {
    left: 20px;
}

.categories .swiper-button-next {
    right: 20px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: none;
}

.categories .swiper-button-prev:hover,
.categories .swiper-button-next:hover {
    background: var(--accent-orange);
    color: var(--white);
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(249, 121, 24, 0.4);
    border-color: var(--accent-orange);
    border-color: var(--accent-orange);
}

.categories .swiper-button-prev.swiper-button-disabled,
.categories .swiper-button-next.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(16, 29, 86, 0.3);
    transform: translateY(-50%);
}

.categories .swiper-button-prev.swiper-button-disabled:hover,
.categories .swiper-button-next.swiper-button-disabled:hover {
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(16, 29, 86, 0.3);
    box-shadow: 0 6px 20px rgba(16, 29, 86, 0.25);
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Categories Pagination - Hidden */
.categories .swiper-pagination {
    display: none;
}

/* Pagination Styles for other sections */
.swiper-pagination {
    position: static;
    margin-top: 20px;
    text-align: center;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(16, 29, 86, 0.3);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--primary-blue);
    transform: scale(1.2);
}

/* Dynamic pagination bullets for testimonials */
.testimonials-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(16, 29, 86, 0.2);
    opacity: 1;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    background: var(--primary-blue);
    width: 30px;
    border-radius: 6px;
    transform: scale(1);
}

/* Responsive Carousel Adjustments */
@media (max-width: 768px) {
    .categories-swiper {
        padding: 20px 70px 30px 70px;
    }
    
    .categories .swiper-button-prev,
    .categories .swiper-button-next {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .categories .swiper-button-prev {
        left: -20px;
    }
    
    .categories .swiper-button-next {
        right: -20px;
    }
    
    .carousel-navigation {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .categories-swiper {
        padding: 20px 60px 30px 60px;
    }
    
    .categories .swiper-button-prev {
        left: -15px;
    }
    
    .categories .swiper-button-next {
        right: -15px;
    }
    
    .backers-swiper .swiper-slide img {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
        width: 320px;
        min-height: 280px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .testimonials-scroll-track {
        gap: 20px;
    }
    
    .project-card {
        width: 320px;
    }
    
    .projects-scroll-track {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .categories-swiper {
        padding: 0 10px 20px 10px;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .testimonial-card {
        padding: 25px 15px;
        width: 280px;
        min-height: 260px;
    }
    
    .testimonial-author img {
        width: 50px;
        height: 50px;
    }
    
    .testimonials-scroll-track {
        gap: 15px;
        animation-duration: 50s; /* Slower on mobile for readability */
    }
    
    .project-card {
        width: 280px;
    }
    
    .projects-scroll-track {
        gap: 15px;
        animation-duration: 55s; /* Slower on mobile for readability */
    }
}

/* Testimonials Endless Scroll Styles */
.testimonials {
    padding: 100px 0;
    background: #f8f9fa;
}

.testimonials-scroll-container {
    margin-top: 50px;
    overflow: hidden;
    position: relative;
}

.testimonials-scroll-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.testimonials-scroll-track {
    display: inline-flex;
    animation: scrollLeft 40s linear infinite;
    gap: 30px;
}

/* Endless scroll animation */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.testimonials-scroll-container:hover .testimonials-scroll-track {
    animation-play-state: paused;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-height: 300px;
    width: 400px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    white-space: normal;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(16, 29, 86, 0.15);
}

.testimonial-content {
    flex: 1;
}

.quote-icon {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-blue);
}

.author-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.author-info span {
    color: var(--primary-blue);
    font-size: 0.9rem;
    font-weight: 500;
}

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

.category-card {
    background: var(--white);
    color: var(--text-dark);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: left;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    height: 350px;
    width: 100%;
    max-width: 380px;
    transform: scale(0.9);
    opacity: 0.7;
    transform-origin: center center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
}

.category-card:hover {
    background: var(--white);
}

/* Ensure smooth transitions for all card states */
.category-card * {
    transition: all 0.3s ease;
}



.category-icon {
    width: 55px;
    height: 55px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    font-size: 1.4rem;
    color: var(--white);
    transition: all 0.3s ease;
}

/* Active card icon styling */
.category-card.active .category-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-orange);
    font-size: 1.8rem;
    transform: none;
    box-shadow: 0 4px 15px rgba(249, 121, 24, 0.2);
}



.category-card.active h3 {
    color: var(--accent-orange) !important;
    font-size: 1.4rem;
    font-weight: 700;
    opacity: 1 !important;
    position: relative;
    z-index: 2;
}

.category-card.active p {
    color: var(--text-dark) !important;
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 1 !important;
    font-weight: 500;
    text-shadow: none;
    position: relative;
    z-index: 2;
}

.category-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-dark);
    transition: all 0.3s ease;
    line-height: 1.3;
    text-align: center;
}

.category-card p {
    color: var(--text-gray);
    font-size: 0.82rem;
    line-height: 1.6;
    opacity: 0.8;
    transition: all 0.3s ease;
    text-align: center;
    flex-grow: 1;
    margin: 0;
    overflow: visible;
}

.business-backers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.business-backers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.05), rgba(139, 92, 246, 0.05));
    animation: backgroundShift 5s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.backers-avatars {
    display: flex;
    gap: -15px;
    position: relative;
}

.backers-avatars img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -10px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.backers-avatars img:first-child {
    margin-left: 0;
    z-index: 4;
}

.backers-avatars img:nth-child(2) { z-index: 3; }
.backers-avatars img:nth-child(3) { z-index: 2; }
.backers-avatars img:nth-child(4) { z-index: 1; }

.backers-avatars:hover img {
    margin-left: 5px;
}

.backers-avatars:hover img:first-child {
    margin-left: 0;
}

.backers-avatars img:hover {
    transform: scale(1.2);
    border-color: var(--accent-orange);
    box-shadow: 
        0 0 30px rgba(249, 121, 24, 0.5),
        inset 0 0 20px rgba(249, 121, 24, 0.2);
    z-index: 10;
}

.backers-text {
    text-align: center;
    position: relative;
    z-index: 2;
}

.backers-text h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--white);
}

.backers-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.backers-text p strong {
    color: var(--white);
    font-weight: 700;
}

/* Ready To Go Section */
.ready-to-go {
    min-height: 100vh;
    height: 100vh;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.ready-to-go::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 121, 24, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBackground 20s ease-in-out infinite;
}

.ready-to-go::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 29, 86, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBackground 25s ease-in-out infinite reverse;
}

@keyframes floatBackground {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.ready-to-go .container {
    padding: 0 60px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.ready-content {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 20px;
    align-items: center;
    height: 100%;
    position: relative;
}

.ready-content::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 35%;
    width: 300px;
    height: 300px;
    background: url('data:image/svg+xml,<svg width="300" height="300" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(16,29,86,0.03)" stroke-width="1"/></pattern></defs><rect width="300" height="300" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.ready-left {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

/* Ready Images Grid Layout */
.ready-images-grid {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.ready-single-image {
    width: 100%;
    max-width: 500px;
    position: relative;
}

.about-collage-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(16, 29, 86, 0.25);
    transition: all 0.4s ease;
    object-fit: cover;
}

.about-collage-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 80px rgba(16, 29, 86, 0.35);
}

.ready-right {
    padding-left: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

.ready-header {
    margin-bottom: 30px;
}

.ready-subtitle {
    display: inline-block;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 0.9rem;
}

.ready-title {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 18px;
}

.ready-description {
    font-size: 0.95rem;
    color: black;
    line-height: 1.6;
    margin-bottom: 0;
}

.ready-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.ready-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 20px 12px;
    background: rgba(16, 29, 86, 0.05);
    border-radius: 12px;
    border-top: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.ready-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(16, 29, 86, 0.15);
    background: rgba(16, 29, 86, 0.08);
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

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

.feature-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    text-align: center;
}

.feature-content p {
    color: black;
    line-height: 1.4;
    margin: 0;
    font-size: 0.85rem;
    text-align: center;
    width: 100%;
}

.about-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    width: 100%;
}

.about-us-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(16, 29, 86, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-us-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;
}

.about-us-btn:hover::before {
    left: 100%;
}

.about-us-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 121, 24, 0.4);
}

.about-us-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .ready-to-go {
        height: auto;
        min-height: 100vh;
        padding: 40px 0;
    }

    .ready-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .ready-right {
        padding-left: 0;
    }
    
    .ready-images-grid {
        height: 420px;
    }
    
    .ready-image-container.main-image {
        top: 100px;
        left: 10px;
        width: 300px;
    }
    
    .ready-image-container.secondary-image-1 {
        top: 0px;
        right: 20px;
        width: 250px;
    }
    
    .ready-image-container.secondary-image-2 {
        bottom: 10px;
        right: 60px;
        width: 260px;
    }
    
    .main-image .ready-image-wrapper {
        height: 240px;
    }
    
    .secondary-image-1 .ready-image-wrapper {
        height: 190px;
    }
    
    .secondary-image-2 .ready-image-wrapper {
        height: 190px;
    }
    
    .ready-title {
        font-size: 1.8rem;
    }

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

    .ready-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .ready-feature {
        padding: 20px 10px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .feature-content h4 {
        font-size: 1rem;
    }

    .feature-content p {
        font-size: 0.85rem;
    }

    .about-button-container {
        margin-top: 30px;
    }

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

    .feature-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .ready-to-go {
        padding: 30px 0;
        height: auto;
        min-height: 100vh;
    }
    
    .ready-to-go .container {
        padding: 0 30px;
    }
    
    .ready-images-grid {
        height: 380px;
    }
    
    .ready-image-container.main-image {
        top: 90px;
        left: 5px;
        width: 250px;
    }
    
    .ready-image-container.secondary-image-1 {
        top: 0px;
        right: 15px;
        width: 200px;
    }
    
    .ready-image-container.secondary-image-2 {
        bottom: 10px;
        right: 50px;
        width: 210px;
    }
    
    .main-image .ready-image-wrapper {
        height: 200px;
        transform: rotate(-1deg);
    }
    
    .secondary-image-1 .ready-image-wrapper {
        height: 160px;
        transform: rotate(2deg);
    }
    
    .secondary-image-2 .ready-image-wrapper {
        height: 160px;
        transform: rotate(-1deg);
    }
    
    .ready-title {
        font-size: 1.6rem;
    }

    .ready-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .ready-feature {
        padding: 18px 8px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .feature-content h4 {
        font-size: 0.95rem;
    }

    .feature-content p {
        font-size: 0.8rem;
    }

    .about-us-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .ready-to-go {
        height: auto;
        min-height: auto;
        padding: 40px 0;
    }

    .ready-to-go .container {
        padding: 0 20px;
    }
    
    .ready-images-grid {
        height: 350px;
        position: relative;
    }
    
    .ready-image-container.main-image {
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        width: 220px;
    }
    
    .ready-image-container.secondary-image-1 {
        top: 0;
        right: 10px;
        width: 160px;
    }
    
    .ready-image-container.secondary-image-2 {
        bottom: 10px;
        right: 35px;
        width: 170px;
    }
    
    .main-image .ready-image-wrapper {
        height: 180px;
    }
    
    .secondary-image-1 .ready-image-wrapper,
    .secondary-image-2 .ready-image-wrapper {
        height: 130px;
    }

    .ready-title {
        font-size: 1.4rem;
    }

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

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

    .ready-feature {
        padding: 20px 15px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .feature-content h4 {
        font-size: 1rem;
    }

    .feature-content p {
        font-size: 0.85rem;
    }

    .about-button-container {
        margin-top: 25px;
    }

    .about-us-btn {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background: white;
}

.trust-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.trust-left {
    flex: 1;
}

.trust-badge {
    background: #101d56;
    color: white;
    padding: 20px 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

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

.trust-right {
    flex: 1;
}

.trust-right img {
    width: 100%;
    border-radius: 15px;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #2C3E50;
    color: white;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-subtitle {
    color: #27AE60;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.benefits-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #f97918;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.benefit-text p {
    opacity: 0.8;
    line-height: 1.6;
}

.benefits-right img {
    width: 100%;
    border-radius: 15px;
}

/* ========================================
   UNIFIED CARD ANIMATIONS SYSTEM
   Applied to: Explore Projects, Recommended Projects, News & Articles, Newsletter Form
   
   Standard Animations:
   - Card Hover: translateY(-8px) + enhanced shadow
   - Image Hover: scale(1.05) 
   - Button Hover: translateY(-2px) + enhanced shadow
   - Transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1)
   ======================================== */

/* Shared Professional Card Animation - High Priority */
.explore-card, .fresh-project-card, .news-card, .newsletter-form {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.explore-card img, .fresh-project-card img, .news-card img {
    transition: transform 0.4s ease !important;
}

.explore-card:hover, .fresh-project-card:hover, .news-card:hover, .newsletter-form:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
}

.explore-card:hover img, .fresh-project-card:hover img, .news-card:hover img {
    transform: scale(1.05) !important;
}

/* Explore Projects Section */
.explore-projects {
    padding: 80px 0;
    background: #F8F9FA;
    position: relative;
}

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

.explore-projects .section-subtitle {
    color: #f97918;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.explore-projects h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #2C3E50;
    margin-top: 15px;
}

.explore-carousel {
    position: relative;
}

.explore-swiper {
    padding: 15px 0 35px;
}

.explore-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(224, 224, 224, 0.2);
    width: 420px;
    margin: 0 auto;
    height: 480px;
    display: flex;
    flex-direction: column;
}

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

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

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

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

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f97918;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.card-stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px 10px;
    background: white;
}

.stat-raised, .stat-goal {
    text-align: center;
}

.stat-label {
    font-size: 0.75rem;
    color: #f3d566;
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.stat-raised .stat-amount {
    font-size: 1rem;
    font-weight: 700;
    color: #f97918;
}

.stat-goal .stat-amount {
    font-size: 1rem;
    font-weight: 700;
    color: #2ECC71;
}

.stat-percentage {
    font-size: 1.8rem;
    font-weight: 800;
    color: #f97918;
    background: linear-gradient(135deg, #f97918, #f97918);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.progress-bar-container {
    padding: 0 25px 15px;
}

.progress-bar-track {
    width: 100%;
    height: 8px;
    background: #E5E7EB;
    border-radius: 4px;
    position: relative;
    overflow: visible;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #f97918, #f97918);
    border-radius: 4px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: #f97918;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(249, 121, 24, 0.3);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-content {
    padding: 20px 25px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    height: 260px;
}

.card-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2C3E50;
    line-height: 1.4;
    margin-bottom: 15px;
    height: 70px;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}

.card-content p {
    color: #718096;
    line-height: 1.5;
    margin-bottom: 25px;
    font-size: 0.9rem;
    flex: 1;
    height: 70px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.project-location-date {
    color: #f97918;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.project-full-content {
    max-height: 400px;
    overflow-y: auto;
    text-align: left;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.project-full-content h4 {
    color: #2C3E50;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 20px 0 10px 0;
    border-bottom: 2px solid #f97918;
    padding-bottom: 5px;
}

.project-full-content h4:first-child {
    margin-top: 10px;
}

.project-full-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
    text-align: justify;
}

.project-full-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.project-full-content li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.project-full-content em {
    font-style: italic;
    color: #2C3E50;
}

.project-full-content::-webkit-scrollbar {
    width: 6px;
}

.project-full-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.project-full-content::-webkit-scrollbar-thumb {
    background: #f97918;
    border-radius: 3px;
}

.project-full-content::-webkit-scrollbar-thumb:hover {
    background: #e67c17;
}

.explore-donate-btn {
    background: linear-gradient(135deg, #f97918, #f97918);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.explore-donate-btn:hover {
    background: linear-gradient(135deg, #f97918, #CC4F26);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 121, 24, 0.4);
}

.explore-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.explore-prev, .explore-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: 1px solid #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    color: #101d56;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    pointer-events: auto;
}

.explore-prev:hover, .explore-next:hover {
    background: #101d56;
    color: white;
    border-color: #101d56;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(16, 29, 86, 0.3);
}

/* Responsive Design for Explore Projects */
@media (max-width: 1024px) {
    .explore-projects h2 {
        font-size: 2.5rem;
    }
    
    .explore-card {
        width: 350px;
        height: 450px;
    }
    
    .card-image {
        height: 200px;
    }
    
    .card-content {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .explore-projects {
        padding: 60px 0;
    }
    
    .explore-projects h2 {
        font-size: 2rem;
    }
    
    .explore-card {
        width: 320px;
        height: 400px;
    }
    
    .card-image {
        height: 180px;
    }
    
    .card-content {
        padding: 15px 20px 20px;
        height: 220px;
    }
    
    .card-content h3 {
        font-size: 1.1rem;
        height: 60px;
    }
    
    .card-content p {
        font-size: 0.85rem;
        height: 55px;
    }
    
    .card-stats-row {
        padding: 15px 20px 8px;
    }
    
    .progress-bar-container {
        padding: 0 20px 12px;
    }
    
    .explore-navigation {
        display: none;
    }
}

@media (max-width: 480px) {
    .explore-card {
        width: 300px;
        height: 360px;
    }
    
    .card-image {
        height: 160px;
    }
    
    .card-content {
        padding: 12px 15px 15px;
        height: 200px;
    }
    
    .card-content h3 {
        font-size: 1rem;
        height: 55px;
        line-height: 1.3;
    }
    
    .card-content p {
        font-size: 0.8rem;
        height: 50px;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
    
    .explore-donate-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.why-choose .container {
    padding: 0 60px;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-section {
    color: white;
    position: relative;
    padding-left: 30px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #101d56;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.trust-badge i {
    font-size: 1rem;
}

.benefits-header {
    margin-bottom: 40px;
    position: relative;
}

.benefits-header .section-subtitle {
    color: #f97918;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.benefits-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.decorative-arrow {
    display: none;
    position: absolute;
    top: -20px;
    right: -50px;
    opacity: 0.8;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #f97918;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.benefit-content p {
    color: #B8C5D1;
    line-height: 1.6;
    font-size: 1rem;
}

.impact-images {
    position: relative;
    height: 650px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 20px;
}

.impact-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
}

.impact-image-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.top-impact {
    /* Top image takes equal space */
    flex: 1;
}

.bottom-impact {
    /* Bottom image takes equal space */
    flex: 1;
}

.impact-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.impact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.impact-image-container:hover .impact-image {
    transform: scale(1.1);
}

.impact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 29, 86, 0.3) 0%, rgba(249, 121, 24, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.impact-image-container:hover .impact-overlay {
    opacity: 1;
}

.impact-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.impact-image-container:hover .impact-badge {
    transform: translateY(0);
}

/* President Message Section */
.president-message-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.president-message-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 29, 86, 0.02) 0%, rgba(249, 121, 24, 0.02) 100%);
    pointer-events: none;
}

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

.section-header-center .section-subtitle {
    color: var(--accent-orange);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
}

.section-header-center .section-title-main {
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.president-message-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.president-photo-container {
    display: flex;
    flex-direction: column;
}

.president-photo {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(16, 29, 86, 0.15);
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a2d7a 100%);
}

.president-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    gap: 15px;
}

.photo-placeholder i {
    font-size: 5rem;
    opacity: 0.5;
}

.photo-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.7;
}

.president-info {
    text-align: center;
    padding: 18px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(16, 29, 86, 0.08);
}

.president-info h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.president-info .president-designation {
    color: var(--accent-orange);
    font-size: 1rem;
    font-weight: 600;
    margin: 5px 0;
}

.president-info .president-org {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 5px 0;
}

.president-message-body {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(16, 29, 86, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.message-preview p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--accent-orange);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    width: fit-content;
}

.read-more-btn:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 121, 24, 0.3);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

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

.president-signature-preview {
    margin-top: 30px;
}

.president-name-preview {
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.president-role-preview {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* President Message Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 29, 86, 0.95);
    z-index: 99999;
    padding: 20px;
    overflow-y: auto;
    overflow-x: hidden;
}

.modal-overlay.active {
    display: block !important;
}

.modal-content {
    background: #ffffff;
    border-radius: 20px;
    max-width: 1100px;
    width: 92%;
    margin: 60px auto;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.4s ease-out forwards;
    opacity: 1;
    transform: translateY(0);
}

@keyframes modalSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FF6B35;
    color: #ffffff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100;
    line-height: 1;
}

.modal-close:hover {
    background: #101D56;
    transform: rotate(90deg);
}

.modal-header {
    background: linear-gradient(135deg, #101D56 0%, #1a2d7a 100%);
    color: #ffffff;
    padding: 40px 50px;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
}

.modal-body {
    padding: 50px;
    background: #ffffff;
    border-radius: 0 0 20px 20px;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.president-quote-modal {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
}

.president-quote-modal .quote-icon {
    font-size: 2.5rem;
    color: #FF6B35;
    margin-bottom: 15px;
    opacity: 0.3;
}

.president-quote-modal .quote-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #101D56;
    line-height: 1.5;
    font-style: italic;
    margin: 0;
}

.message-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333333;
    margin-bottom: 25px;
    text-align: justify;
}

.closing-message {
    font-weight: 600;
    font-style: italic;
    color: #101D56;
}

.president-signature {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.president-signature p {
    margin: 5px 0;
    text-align: left;
}

.signature-line {
    font-size: 1rem;
    color: #666666;
    font-style: italic;
}

.signature-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #101D56;
    margin-top: 10px !important;
}

.signature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    display: inline;
}

.signature-title::after {
    content: ", ";
}

.signature-org {
    font-size: 1rem;
    color: #666666;
    display: inline;
}

/* Responsive Design for President Message */
@media (max-width: 1024px) {
    .president-message-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .president-photo-container {
        position: relative;
        top: 0;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .president-message-section {
        padding: 60px 0;
    }
    
    .section-header-center .section-title-main {
        font-size: 2rem;
    }

    .president-photo-container {
        max-width: 300px;
    }

    .president-quote {
        padding: 25px 20px;
    }

    .president-quote .quote-text {
        font-size: 1.2rem;
    }

    .president-message-body {
        padding: 30px 20px;
    }

    .message-preview p {
        font-size: 1rem;
    }

    .modal-overlay {
        padding: 10px;
    }

    .modal-content {
        margin: 20px auto;
        width: 95%;
    }

    .modal-header {
        padding: 30px 20px;
    }

    .modal-header h2 {
        font-size: 1.6rem;
    }

    .modal-body {
        padding: 30px 20px;
        max-height: calc(100vh - 150px);
    }

    .president-quote-modal .quote-text {
        font-size: 1.2rem;
    }

    .message-content p {
        font-size: 1rem;
    }

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

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--primary-blue);
    position: relative;
}

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

.stats-header .section-subtitle {
    color: var(--accent-orange);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.stats-header h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.stats-header p {
    color: var(--white);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 70px;
    max-width: 2200px;
    margin: 0 auto;
    width: 100%;
}

.stat-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow);
    border: 2px solid transparent;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-color: var(--accent-orange);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: var(--primary-blue);
    transform: scale(1.1);
}

.stat-content {
    position: relative;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: inline-block;
    line-height: 1;
    min-width: 140px;
    text-align: center;
}

.stat-suffix {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-orange);
    margin-left: 3px;
}

.stat-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 10px 0 0;
    line-height: 1.3;
    text-align: center;
    width: 100%;
}

/* Stats Animation */
.stat-number.counting {
    animation: pulse 0.1s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Stats Responsive Design */
@media (max-width: 1024px) {
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-header h2 {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        gap: 55px;
        max-width: 1000px;
    }
    
    .stat-card {
        min-height: 150px;
    }
    
    .stat-number {
        font-size: 2.2rem;
        min-width: 120px;
    }
    
    .stat-suffix {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 50px 0;
    }
    
    .stats-header {
        margin-bottom: 40px;
    }
    
    .stats-header h2 {
        font-size: 2rem;
    }
    
    .stats-header p {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 45px;
        max-width: 700px;
    }
    
    .stat-card {
        padding: 25px 15px;
        min-height: 140px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
        min-width: 100px;
    }
    
    .stat-suffix {
        font-size: 1.4rem;
    }
    
    .stat-content h4 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 40px 0;
    }
    
    .stats-header .section-subtitle {
        font-size: 1rem;
    }
    
    .stats-header h2 {
        font-size: 1.8rem;
    }
    
    .stats-header p {
        font-size: 0.95rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 45px;
        max-width: 350px;
    }
    
    .stat-card {
        padding: 20px 10px;
        min-height: 120px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .stat-number {
        font-size: 1.8rem;
        min-width: 90px;
    }
    
    .stat-suffix {
        font-size: 1.3rem;
    }
    
    .stat-content h4 {
        font-size: 0.9rem;
        line-height: 1.2;
    }
}

/* Recommended Projects Section */
.recommended-projects {
    padding: 80px 0;
    background: #F8F9FA;
    position: relative;
}

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

.recommended-projects .section-subtitle {
    color: #f97918;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.recommended-projects h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #2C3E50;
    line-height: 1.2;
}

.fresh-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.fresh-project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(224, 224, 224, 0.2);
}

/* Professional hover effect matching Explore Projects */
.fresh-project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f97918;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.project-content {
    padding: 25px;
}

.project-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2C3E50;
    line-height: 1.4;
    margin-bottom: 20px;
}

.project-stats {
    margin-top: 20px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.stat-item.archive i {
    color: #f97918;
}

.stat-item.goal i {
    color: #101d56;
}

.stat-item span {
    color: #666;
}

.stat-item strong {
    color: #2C3E50;
    font-weight: 600;
}

.progress-section {
    margin-top: 15px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.progress-label {
    color: #101d56;
    font-size: 0.9rem;
    font-weight: 500;
}

.progress-percentage {
    color: #2C3E50;
    font-size: 0.9rem;
    font-weight: 600;
}

.progress-bar-wrapper {
    position: relative;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #E5E7EB;
    border-radius: 3px;
    position: relative;
    overflow: visible;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f97918, #f97918);
    border-radius: 3px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-dot {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: #f97918;
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(249, 121, 24, 0.3);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive Design for Fresh Projects */
@media (max-width: 1024px) {
    .fresh-projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .fresh-projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .recommended-projects h2 {
        font-size: 2.2rem;
    }
    
    .project-content {
        padding: 20px;
    }
    
    .stat-row {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

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

.gallery-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.gallery-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 400;
    text-align: center;
}

.gallery-scroll-container {
    display: flex;
    gap: 20px;
    height: 500px;
    overflow: hidden;
    position: relative;
    width: calc(100% - 80px);
    max-width: none;
    margin: 0 40px 40px 40px;
}

/* Blur effects at top and bottom */
.gallery-scroll-container::before,
.gallery-scroll-container::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 10;
    pointer-events: none;
}

.gallery-scroll-container::before {
    top: 0;
    background: linear-gradient(to bottom, 
        rgba(248, 249, 250, 1) 0%, 
        rgba(248, 249, 250, 0.8) 30%, 
        rgba(248, 249, 250, 0.4) 60%, 
        rgba(248, 249, 250, 0) 100%);
}

.gallery-scroll-container::after {
    bottom: 0;
    background: linear-gradient(to top, 
        rgba(248, 249, 250, 1) 0%, 
        rgba(248, 249, 250, 0.8) 30%, 
        rgba(248, 249, 250, 0.4) 60%, 
        rgba(248, 249, 250, 0) 100%);
}

.gallery-column {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.gallery-track {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: marqueeUp 20s linear infinite;
}

.gallery-column:nth-child(2) .gallery-track {
    animation-delay: -4s;
    animation-duration: 24s;
}

.gallery-column:nth-child(3) .gallery-track {
    animation-delay: -8s;
    animation-duration: 22s;
}

.gallery-column:nth-child(4) .gallery-track {
    animation-delay: -12s;
    animation-duration: 20s;
}

.gallery-column:nth-child(5) .gallery-track {
    animation-delay: -16s;
    animation-duration: 21s;
}

@keyframes marqueeUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* Pause animation on hover */
.gallery-scroll-container:hover .gallery-track {
    animation-play-state: paused;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Gallery overlay effect */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.6), rgba(52, 152, 219, 0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* View Gallery Button */
.gallery-button-container {
    text-align: center;
    margin-top: 40px;
}

.view-gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: transparent;
    border: 2px solid #2c3e50;
    border-radius: 50px;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.view-gallery-btn:hover {
    background: #2c3e50;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
}

.view-gallery-btn svg {
    transition: transform 0.3s ease;
}

.view-gallery-btn:hover svg {
    transform: translateX(5px);
}

/* Gallery Page Styles */
.gallery-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.gallery-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.gallery-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    opacity: 0.6;
}

.gallery-grid-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 12px 24px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    color: #666;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.filter-tab:hover,
.filter-tab.active {
    background: #2c3e50;
    color: white;
    border-color: #2c3e50;
    transform: translateY(-2px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.gallery-grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
}

.gallery-grid-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-grid-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-grid-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

.load-more-container {
    text-align: center;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.load-more-btn:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
}

/* Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.image-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.image-modal .modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.image-modal .modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s ease;
}

.image-modal .modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

#modalImage {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.modal-info {
    padding: 20px;
    background: white;
}

.modal-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.modal-info p {
    color: #666;
    line-height: 1.6;
}

.modal-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.modal-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
}

.modal-nav-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

/* Project Detail Modal */
.project-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.project-modal.active {
    display: block;
    opacity: 1;
}

.project-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.project-modal .modal-content {
    background: #fff;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
    margin: auto;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.project-modal .modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.project-modal .modal-close:hover {
    background: rgba(249, 121, 24, 0.9);
    transform: scale(1.1);
    border-color: rgba(249, 121, 24, 0.3);
}

.modal-header {
    position: relative;
    padding: 0 0 30px 0;
}

.modal-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    position: relative;
}

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

.modal-header-content {
    padding: 30px 40px 0;
    position: relative;
}

.project-badge {
    background: linear-gradient(135deg, #f97918, #ff8c42);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(249, 121, 24, 0.3);
    position: relative;
    overflow: hidden;
}

.project-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.project-badge:hover::before {
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.modal-header-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.project-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.project-meta span {
    background: linear-gradient(135deg, #fff5f0, #ffeee5);
    color: #2c3e50;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #ffe0d1;
    box-shadow: 0 2px 8px rgba(249, 121, 24, 0.1);
    transition: all 0.3s ease;
}

.project-meta span:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 121, 24, 0.2);
}

.modal-main-content {
    padding: 0 40px 40px;
    line-height: 1.7;
}

.modal-main-content p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
}

.modal-main-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.modal-main-content li {
    margin-bottom: 8px;
    color: #666;
    line-height: 1.6;
}

.project-overview h3,
.project-agenda h3,
.project-challenges h3,
.project-support h3,
.project-announcements h3,
.project-join h3,
.project-about h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 30px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
    position: relative;
}

.project-overview h3:first-child,
.project-agenda h3:first-child {
    margin-top: 0;
}

.modal-main-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.modal-main-content ul {
    margin: 15px 0 20px 0;
    padding-left: 0;
}

.modal-main-content li {
    list-style: none;
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.modal-main-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.1rem;
}

.announcement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.announcement-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #3498db;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.announcement-card:hover {
    transform: translateY(-5px);
}

.announcement-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 10px 0;
}

.announcement-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Project Modal Responsive */
@media (max-width: 768px) {
    .project-modal .modal-content {
        max-width: 95%;
        margin: 20px auto;
        border-radius: 15px;
    }
    
    .modal-image {
        height: 200px;
        border-radius: 15px 15px 0 0;
    }
    
    .modal-header-content {
        padding: 20px 25px 0;
    }
    
    .modal-header-content h2 {
        font-size: 1.8rem;
    }
    
    .modal-main-content {
        padding: 0 25px 25px;
    }
    
    .project-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .announcement-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .announcement-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .project-modal .modal-overlay {
        padding: 5px;
    }
    
    .project-modal .modal-content {
        max-height: 95vh;
        border-radius: 12px;
    }
    
    .modal-image {
        height: 180px;
        border-radius: 12px 12px 0 0;
    }
    
    .modal-header-content {
        padding: 15px 20px 0;
    }
    
    .modal-main-content {
        padding: 0 20px 20px;
    }
    
    .modal-header-content h2 {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .project-badge {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .project-modal .modal-close {
        width: 35px;
        height: 35px;
        font-size: 18px;
        top: 10px;
        right: 10px;
    }
    
    .project-badge {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Loading Spinner */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.gallery-loading {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #2c3e50;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.gallery-loading p {
    font-size: 1.1rem;
    margin: 0;
}

/* Gallery Page Responsive */
@media (max-width: 768px) {
    .gallery-hero {
        padding: 100px 0 60px;
    }
    
    .gallery-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .gallery-hero-content p {
        font-size: 1.1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .filter-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .modal-navigation {
        padding: 0 10px;
    }
    
    .modal-nav-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .gallery-filter-tabs {
        gap: 8px;
        margin-bottom: 40px;
    }
    
    .filter-tab {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* Gallery Responsive Design */
@media (max-width: 1024px) {
    .gallery-scroll-container {
        width: calc(100% - 60px);
        margin: 0 30px 40px 30px;
        height: 450px;
        gap: 15px;
    }
    
    .gallery-header h2 {
        font-size: 2.5rem;
    }
    
    .gallery-scroll-container::before,
    .gallery-scroll-container::after {
        height: 60px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-header {
        margin-bottom: 40px;
    }
    
    .gallery-header h2 {
        font-size: 2rem;
    }
    
    .gallery-header p {
        font-size: 1rem;
    }
    
    .gallery-scroll-container {
        height: 400px;
        gap: 12px;
        width: calc(100% - 40px);
        margin: 0 20px 40px 20px;
    }
    
    .gallery-column:nth-child(n+4) {
        display: none;
    }
    
    .gallery-item {
        border-radius: 12px;
    }
    
    .view-gallery-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .gallery-scroll-container::before,
    .gallery-scroll-container::after {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 40px 0;
    }
    
    .gallery-header h2 {
        font-size: 1.8rem;
    }
    
    .gallery-header {
        margin-bottom: 30px;
    }
    
    .gallery-scroll-container {
        height: 350px;
        gap: 10px;
        width: calc(100% - 20px);
        margin: 0 10px 40px 10px;
    }
    
    .gallery-column:nth-child(n+3) {
        display: none;
    }
    
    .gallery-column {
        gap: 10px;
    }
    
    .gallery-item {
        border-radius: 10px;
    }
    
    .gallery-item:hover {
        transform: translateY(-5px);
    }
    
    .view-gallery-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        gap: 8px;
    }
    
    .gallery-scroll-container::before,
    .gallery-scroll-container::after {
        height: 40px;
    }
}

/* Recommended Section */
.recommended {
    padding: 80px 0;
    background: #F8F9FA;
}

.recommended h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 60px;
}

.project-stats-simple {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

.stat-item i {
    color: #f97918;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-left h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 30px;
    line-height: 1.3;
}

.guide-list {
    list-style: none;
}

.guide-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #666;
}

.guide-list i {
    color: #f97918;
    font-size: 1.1rem;
}

.newsletter-form {
    background: #F8F9FA;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(224, 224, 224, 0.2);
}

/* Professional hover effect matching other sections */
.newsletter-form:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.newsletter-form h3 {
    font-size: 1.3rem;
    color: #2C3E50;
    margin-bottom: 30px;
    line-height: 1.4;
}

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

.newsletter-form input {
    width: 100%;
    padding: 15px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #f97918;
    box-shadow: 0 0 0 3px rgba(249, 121, 24, 0.1);
    outline: none;
}

.newsletter-form button {
    width: 100%;
    background: #f97918;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 121, 24, 0.2);
}

.newsletter-form button:hover {
    background: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 121, 24, 0.3);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #666;
    text-align: left;
}

.stats-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-circle {
    width: 120px;
    height: 120px;
    background: #f97918;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin: 0 auto;
}

.stat-circle.large {
    width: 150px;
    height: 150px;
    background: #101d56;
}

.stat-circle .number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.stat-circle .label {
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 5px;
    line-height: 1.2;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #101d56, #101d56);
    color: white;
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.video-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
}

.cta-btn {
    background: #f97918;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #E55A2B;
    transform: translateY(-2px);
}

.video-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.video-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #101d56;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

/* News Section */
.news {
    padding: 80px 0;
    background: #F8F9FA;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(224, 224, 224, 0.2);
}

/* Hover effect handled by unified animation system */

.news-card:first-child {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #666;
}

.news-meta span {
    background: #f97918;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    align-self: flex-start;
}

.news-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 15px;
}

.read-more {
    color: #f97918;
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: 600;
}

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

.news-card.featured .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.news-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C3E50;
    display: block;
}

.news-date .month {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

.news-content {
    padding: 25px;
}

/* CTA Section */
.cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #101d56, #101d56);
    color: white;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-icon {
    font-size: 4rem;
    color: #f97918;
}

.cta-text span {
    font-size: 1.1rem;
    opacity: 0.9;
    display: block;
    margin-bottom: 10px;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Global Partners Section */
.global-partners {
    padding: 80px 0;
    background: white;
    border-top: 1px solid #E8E8E8;
}

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

.global-partners .section-subtitle {
    color: #f97918;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.global-partners h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.global-partners .section-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.partners-carousel {
    overflow: hidden;
    position: relative;
    margin-top: 40px;
}

.partners-carousel:hover .partners-track {
    animation-play-state: paused;
}

.partners-track {
    display: flex;
    animation: scroll-partners 30s linear infinite;
    align-items: center;
}

.partner-logo {
    flex-shrink: 0;
    width: 350px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 0.3s ease;
    box-sizing: border-box;
    position: relative;
}

.partner-logo:hover {
    transform: translateY(-5px) scale(1.08);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.05);
    opacity: 0.95;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 2;
}

.partner-logo:hover img {
    filter: brightness(1.2) contrast(1.15) saturate(1.1);
    opacity: 1;
    transform: scale(1.02);
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Partners Section Responsive */
@media (max-width: 1200px) {
    .partners-track {
        gap: 50px;
    }
    
    .partner-logo {
        width: 200px;
        height: 150px;
        padding: 15px;
    }
}

@media (max-width: 992px) {
    .global-partners {
        padding: 70px 0;
    }
    
    .partners-track {
        gap: 40px;
    }
    
    .partner-logo {
        width: 180px;
        height: 135px;
        padding: 12px;
    }
}

@media (max-width: 768px) {
    .global-partners {
        padding: 60px 0;
    }
    
    .global-partners h2 {
        font-size: 2rem;
    }
    
    .global-partners .section-description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .partners-track {
        gap: 30px;
        animation: scroll-partners 35s linear infinite;
    }
    
    .partner-logo {
        width: 150px;
        height: 110px;
        padding: 12px;
    }
    
    .partner-logo:hover {
        transform: translateY(-4px) scale(1.05);
    }
}

@media (max-width: 480px) {
    .global-partners {
        padding: 50px 0;
    }
    
    .global-partners h2 {
        font-size: 1.8rem;
    }
    
    .global-partners .section-header {
        margin-bottom: 40px;
    }
    
    .partners-carousel {
        margin-top: 30px;
    }
    
    .partners-track {
        gap: 25px;
        animation: scroll-partners 30s linear infinite;
    }
    
    .partner-logo {
        width: 130px;
        height: 90px;
        padding: 10px;
    }
    
    .partner-logo:hover {
        transform: translateY(-3px) scale(1.05);
    }
}

@media (max-width: 360px) {
    .partners-track {
        gap: 20px;
    }
    
    .partner-logo {
        width: 100px;
        height: 60px;
        padding: 8px;
    }
}

/* Latest News & Articles Section */
.latest-news {
    padding: 100px 0;
    background: #f8f9fa;
}

.latest-news .section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

/* Section header appears first */
.latest-news .section-header.animated {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.latest-news .section-subtitle {
    color: var(--accent-orange);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.latest-news h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-description {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: black;
}

.news-swiper-container {
    position: relative;
    overflow: visible;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
    transition-delay: 0.6s;
}

.news-swiper-container.animated {
    opacity: 1;
    transform: translateY(0);
}

.news-swiper {
    padding: 0 50px 40px;
    overflow: visible;
}

.news-swiper .swiper-wrapper {
    align-items: stretch;
}

.news-swiper .swiper-slide {
    height: auto;
    display: flex;
    transform-style: preserve-3d;
}

/* Ensure news cards can be transformed */
.news-swiper .swiper-slide .news-card {
    transform-origin: center;
    will-change: transform, box-shadow;
}

/* News Cards - Using same professional animations as Explore Projects */
.news-card {
    background: white !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    height: 100% !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    border: 1px solid rgba(224, 224, 224, 0.2) !important;
    text-align: center !important;
    opacity: 0;
    transform: translateY(50px);
}

/* News cards will be animated via JavaScript with proper timing */

/* Specific news card hover to ensure it works */
.news-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
}

.news-card:hover .news-image img {
    transform: scale(1.05) !important;
}

/* News Header - Orange bar at top */
.news-header {
    background: var(--accent-orange);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.news-header .news-date {
    background: white;
    color: var(--primary-blue);
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    min-width: 50px;
}

.news-header .news-date .day {
    display: block;
    font-size: 1.2rem;
    line-height: 1;
}

.news-header .news-date .month {
    display: block;
    font-size: 0.7rem;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-meta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.author-info, .comments-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
}

.author-info i, .comments-info i {
    font-size: 0.8rem;
}

/* News Image */
.news-image {
    height: 220px;
    overflow: hidden;
    flex: 1;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

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

/* News Content - Bottom section */
.news-content {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
}

.news-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0;
    flex: 1;
    transition: color 0.3s ease;
}

.news-card:hover .news-title {
    color: var(--primary-blue);
}

.read-more {
    color: var(--accent-orange);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 15px;
}

.read-more:hover {
    color: var(--primary-blue);
    transform: translateX(3px);
}

.read-more i {
    font-size: 0.8rem;
}

/* Simple Navigation */
.news-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.news-prev, .news-next {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    color: var(--primary-blue);
    font-size: 1rem;
}

.news-prev:hover, .news-next:hover {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1);
}

/* View All Articles Button */
.news-cta {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
}

.view-all-btn i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.view-all-btn:hover i {
    transform: translateX(3px);
}

.news-prev {
    left: 0;
}

.news-next {
    right: 0;
}

/* Responsive Design for Latest News */
@media (max-width: 768px) {
    .latest-news {
        padding: 60px 0;
    }
    
    .latest-news h2 {
        font-size: 2rem;
    }
    
    .news-swiper {
        padding: 0 20px 40px;
    }
    
    .news-card {
        max-width: 100%;
    }
    
    .news-card h3 {
        font-size: 1.1rem;
    }
    
    .news-image {
        height: 200px;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-navigation {
        display: none;
    }
}

/* Footer */
.footer {
    background: #2C3E50;
    color: white;
    padding: 60px 0 0 0;
}

.footer .container {
    padding: 0 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: white;
    font-weight: 600;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #f97918;
}

/* Footer Brand Column */
.footer-brand .footer-logo {
    margin-bottom: 25px;
}

.footer-logo-image {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.footer-description {
    color: #A0ADB8;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1rem;
    max-width: 350px;
}



/* Links Column */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links li a {
    color: #A0ADB8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #f97918;
    padding-left: 5px;
}

/* Newsletter Column */
.newsletter-text {
    color: #A0ADB8;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-newsletter-form .input-group {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #4A5568;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: #3A4A5C;
    color: white;
    font-size: 0.95rem;
}

.footer-newsletter-form input::placeholder {
    color: #A0ADB8;
}

.footer-newsletter-form input:focus {
    outline: none;
    background: #434F63;
}

.footer-newsletter-form button {
    background: #f97918;
    color: white;
    border: none;
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 50px;
    box-shadow: 0 2px 8px rgba(249, 121, 24, 0.2);
}

.footer-newsletter-form button:hover {
    background: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 121, 24, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #4A5568;
    padding: 25px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright p {
    color: #A0ADB8;
    font-size: 0.9rem;
    margin: 0;
}



/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0 0;
    }
    
    .footer .container {
        padding: 0 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer-description {
        max-width: 100%;
    }
    
    .footer-logo-image {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 0 0;
    }
    
    .footer .container {
        padding: 0 20px;
    }
    
    .footer-content {
        gap: 30px;
        margin-bottom: 25px;
    }
    
    .footer-col h4 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .footer-description {
        font-size: 0.95rem;
    }
    
    .footer-logo-image {
        height: 50px;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
}

/* Futuristic Responsive Design */
@media (max-width: 1200px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 0;
    }
    
    .hero-visual {
        margin-top: 60px;
    }
    
    .holographic-display {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .business-backers {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav ul {
        gap: 20px;
    }
    
    .nav-link {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cyber-text {
        margin-right: 0;
        margin-bottom: 10px;
        font-size: 0.8rem;
    }
    
    .header .container {
        flex-direction: column;
        gap: 25px;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .nav-link {
        padding: 12px 20px;
        width: 100%;
        justify-content: center;
    }
    
    .header-right {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    
    .logo-text-main {
        font-size: 1.4rem;
    }
    
    .hero {
        min-height: 80vh;
        grid-template-columns: 1fr;
        padding: 40px 0;
    }
    
    .hero-content {
        padding-left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .holographic-display {
        width: 250px;
        height: 250px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .category-card {
        padding: 40px 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .business-backers {
        padding: 40px 20px;
    }
    
    .backers-avatars img {
        width: 50px;
        height: 50px;
    }
    
    .floating-element {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .hero-stats {
        padding: 20px 0;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .hero-cta {
        gap: 15px;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 15px 25px;
        font-size: 0.9rem;
    }
    
    .cyber-donate-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .holographic-display {
        width: 200px;
        height: 200px;
    }
    
    .category-card {
        padding: 30px 20px;
    }
    
    .category-icon {
        width: 80px;
        height: 80px;
        font-size: 1.8rem;
    }
    
    .category-number {
        font-size: 2rem;
    }
    
    .business-backers {
        padding: 30px 15px;
    }
    
    .backers-text h4 {
        font-size: 1.4rem;
    }
    
    .backers-text p {
        font-size: 1rem;
    }
    
    .top-bar-right {
        padding: 6px 15px;
        gap: 10px;
    }
    
    .logo-hologram {
        padding: 8px 15px;
    }
    
    .logo-text-main {
        font-size: 1.2rem;
    }
    
    .tagline {
        font-size: 0.7rem;
    }
}

/* Universal Futuristic Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    }
    50% { 
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.8), 0 0 40px rgba(0, 255, 255, 0.3);
    }
}

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

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

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes glitchAnimation {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-1px, 1px); }
    40% { transform: translate(-1px, -1px); }
    60% { transform: translate(1px, 1px); }
    80% { transform: translate(1px, -1px); }
}

/* Futuristic Utility Classes */
.cyber-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cyber-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.cyber-card:hover::before {
    left: 100%;
}

.cyber-card:hover {
    border-color: var(--primary-cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-5px);
}

.section-title-futuristic {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-title-futuristic::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-purple), var(--accent-orange));
    border-radius: 2px;
}

.section-title-futuristic::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
}

/* Smooth scrolling with futuristic easing */
html {
    scroll-behavior: smooth;
}

/* Futuristic Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-cyan), var(--primary-purple));
    border-radius: 6px;
    border: 2px solid var(--darker-bg);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-orange), var(--primary-cyan));
    box-shadow: var(--glow-cyan);
}

/* Enhanced Card Styles */
.category-card,
.project-card,
.news-card {
    animation: fadeInUp 0.8s ease forwards;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }

/* Hover Effects */
.interactive-element {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interactive-element:hover {
    transform: translateY(-5px) scale(1.02);
    filter: brightness(1.1);
}

/* Glowing Text Effect */
.glow-text {
    color: var(--primary-cyan);
    text-shadow: 
        0 0 5px var(--primary-cyan),
        0 0 10px var(--primary-cyan),
        0 0 15px var(--primary-cyan);
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from {
        text-shadow: 
            0 0 5px var(--primary-cyan),
            0 0 10px var(--primary-cyan),
            0 0 15px var(--primary-cyan);
    }
    to {
        text-shadow: 
            0 0 10px var(--primary-cyan),
            0 0 20px var(--primary-cyan),
            0 0 30px var(--primary-cyan);
    }
}

/* Projects Section Responsive */
@media (max-width: 768px) {
    .project-card {
        max-width: 100%;
    }
    
    .stat-percentage {
        font-size: 1.5rem;
    }
    
    .stat-amount {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .project-stats-bar {
        padding: 12px 15px;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .stat-amount {
        font-size: 0.85rem;
    }
    
    .stat-percentage {
        font-size: 1.3rem;
    }
}

/* Why Choose Section Responsive */
@media (max-width: 1024px) {
    .why-choose-content {
        gap: 40px;
    }
    
    .benefits-header h2 {
        font-size: 2.5rem;
    }
    
    .decorative-arrow {
        display: none;
    }
    
    .why-choose .container {
        padding: 0 60px;
    }
}

@media (max-width: 768px) {
    .why-choose {
        padding: 60px 0;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-choose .container {
        padding: 0 40px;
    }
    
    .benefits-header h2 {
        font-size: 2rem;
    }
    
    .benefit-item {
        gap: 15px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .benefit-content h4 {
        font-size: 1.1rem;
    }
    
    .benefit-content p {
        font-size: 0.9rem;
    }
    
    .impact-images {
        order: -1;
        height: 500px;
        gap: 60px;
        margin-bottom: 30px;
    }
    
    .top-impact,
    .bottom-impact {
        flex: 1;
    }
    
    .floating-element {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .why-choose .container {
        padding: 0 20px;
    }
    .trust-badge {
        font-size: 0.8rem;
        padding: 10px 16px;
    }
    
    .benefits-header h2 {
        font-size: 1.8rem;
    }
    
    .benefits-list {
        gap: 25px;
    }
    
    .benefit-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .impact-images {
        height: 400px;
        gap: 50px;
        padding: 15px;
    }
    
    .floating-element {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .impact-badge {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

/* Recommended Projects Responsive */
@media (max-width: 1024px) {
    .recommended-projects h2 {
        font-size: 2.5rem;
    }
    
    .card-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .recommended-projects {
        padding: 60px 0;
    }
    
    .recommended-projects h2 {
        font-size: 2rem;
    }
    
    .card-image {
        height: 200px;
    }
    
    .card-content h3 {
        font-size: 1.1rem;
    }
    
    .stat-group {
        gap: 20px;
    }
    
    .stat-value {
        font-size: 0.9rem;
    }
    
    .recommended-nav {
        gap: 15px;
    }
    
    .recommended-prev,
    .recommended-next {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .recommended-projects .section-subtitle {
        font-size: 1rem;
    }
    
    .recommended-projects h2 {
        font-size: 1.8rem;
    }
    
    .card-content {
        padding: 18px;
    }
    
    .card-content h3 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .stat-group {
        gap: 15px;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .stat-value {
        font-size: 0.85rem;
    }
    
    .progress-handle {
        width: 14px;
        height: 14px;
    }
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.newsletter-left {
    padding-right: 20px;
}

.newsletter-header {
    margin-bottom: 30px;
}

.newsletter-subtitle {
    color: #f97918;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.newsletter-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C3E50;
    line-height: 1.2;
}

.newsletter-left .benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-left .benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.newsletter-left .benefit-item i {
    color: #f97918;
    font-size: 1rem;
    flex-shrink: 0;
}

.newsletter-left .benefit-item span {
    color: #2C3E50;
    font-size: 1rem;
    line-height: 1.4;
}

.newsletter-center {
    background: #F5F5F5;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #E8E8E8;
}

.newsletter-form-container h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 25px;
    line-height: 1.3;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    max-width: 100%;
}

.newsletter-form .form-row {
    display: flex;
    gap: 15px;
    width: 100%;
}

.newsletter-form .form-row .newsletter-input {
    flex: 1;
    min-width: 0;
}

.newsletter-form .form-row .newsletter-input.full-width {
    flex: 1;
    width: 100%;
}

.newsletter-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #E8E8E8;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.newsletter-input::placeholder {
    color: #999;
    font-weight: 400;
}

.newsletter-input:focus {
    outline: none;
    border-color: #101d56;
    box-shadow: 0 0 0 3px rgba(16, 29, 86, 0.1);
    transform: translateY(-1px);
}

.newsletter-btn {
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, #f97918, #ff8c3a);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 121, 24, 0.2);
    margin-top: 10px;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #e86b15, #f97918);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 121, 24, 0.4);
}

.newsletter-agreement {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    margin-top: 15px;
    justify-content: center;
    width: 100%;
}

.agreement-checkbox {
    width: 16px;
    height: 16px;
    margin: 0;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #101d56;
}

.newsletter-agreement label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    cursor: pointer;
    margin: 0;
    padding: 0;
    text-align: left;
    max-width: 300px;
}

.newsletter-right {
    display: flex;
    justify-content: center;
}

.stats-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.stat-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    position: relative;
}

.stat-card.projects .stat-circle {
    background: #f97918;
}

.stat-card.raised .stat-circle {
    background: #101d56;
}

.stat-card.customers .stat-circle {
    background: #f97918;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #101d56;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    text-align: center;
    line-height: 1.2;
}

/* Projects Carousel Responsive Styles */
@media (max-width: 768px) {
    .projects {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .projects-nav {
        margin-top: 30px;
    }
    
    .projects-prev,
    .projects-next {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .project-card h3 {
        font-size: 1.2rem;
        margin: 15px 15px 8px;
    }
    
    .project-card p {
        margin: 0 15px 12px;
        font-size: 0.9rem;
    }
    
    .project-progress {
        padding: 0 15px 15px;
    }
    
    .project-donate {
        margin: 0 15px 15px;
    }
    
    .donate-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .project-stats {
        padding: 15px;
        gap: 15px;
    }
    
    .stat .amount {
        font-size: 1rem;
    }
    
    .percentage {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .projects-swiper {
        padding: 10px 0 30px;
    }
    
    .project-image img {
        height: 200px;
    }
    
    .project-badge {
        width: 40px;
        height: 40px;
        top: 15px;
        right: 15px;
        font-size: 1rem;
    }
    
    .project-heart {
        width: 35px;
        height: 35px;
        top: 15px;
        left: 15px;
        font-size: 1rem;
    }
}

/* Newsletter Section Responsive */
@media (max-width: 1024px) {
    .newsletter-content {
        gap: 40px;
    }
    
    .newsletter-left h2 {
        font-size: 2.2rem;
    }
    
    .stat-circle {
        width: 100px;
        height: 100px;
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .newsletter-left {
        padding-right: 0;
        text-align: center;
    }
    
    .newsletter-left h2 {
        font-size: 2rem;
    }
    
    .newsletter-center {
        padding: 30px 25px;
    }
    
    .stats-container {
        flex-direction: row;
        gap: 30px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stat-circle {
        width: 90px;
        height: 90px;
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 1024px) {
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .newsletter-left {
        padding-right: 0;
    }
    
    .newsletter-center {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-content {
        gap: 30px;
    }
    
    .newsletter-left h2 {
        font-size: 2rem;
    }
    
    .newsletter-center {
        padding: 30px 25px;
    }
    
    .newsletter-form .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form .form-row .newsletter-input {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .newsletter-left h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-center {
        padding: 25px 20px;
    }
    
    .newsletter-form-container h3 {
        font-size: 1.1rem;
    }
    
    .newsletter-input,
    .newsletter-btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .newsletter-form .form-row {
        gap: 12px;
    }
    
    .stats-container {
        gap: 20px;
    }
    
    .stat-circle {
        width: 80px;
        height: 80px;
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .newsletter-agreement label {
        font-size: 0.85rem;
    }
}

/* Footer */
.footer {
    background: #2C3E50;
    padding: 40px 0;
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.footer-logo p {
    color: #B8C5D1;
    font-size: 0.9rem;
}

.footer-right p {
    color: #B8C5D1;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ===== DYNAMIC ANIMATIONS ===== */

/* Floating Elements */
.floating-element {
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(2n) {
    animation-delay: -2s;
}

.floating-element:nth-child(3n) {
    animation-delay: -4s;
}

/* Parallax Elements */
.parallax-element {
    will-change: transform;
}

/* Enhanced Button Animations */
.btn, .cta-button, .read-more-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::before, .cta-button::before, .read-more-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;
}

.btn:hover::before, .cta-button:hover::before, .read-more-btn:hover::before {
    left: 100%;
}

/* Card Glow Effect */
.category-card, .project-card, .news-card {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card::before, .news-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-orange), var(--primary-blue));
    border-radius: inherit;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.project-card:hover::before, .news-card:hover::before {
    opacity: 0.3;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Text Animations */
.typing-effect {
    display: inline-block;
    /* Removed typing animation for formal appearance */
}

/* Counter Animation */
.counter {
    font-weight: bold;
    color: var(--primary-blue);
}

/* Staggered Animations */
.stagger-animation > * {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.stagger-animation > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-animation > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-animation > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-animation > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-animation > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-animation > *:nth-child(6) { animation-delay: 0.6s; }

/* Page Transitions */
.page-transition {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-transition.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Magnetic Effect for Interactive Elements */
.magnetic-element {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Enhanced Hover States */
.enhanced-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.enhanced-hover:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 8px 15px rgba(0,0,0,0.1));
}

/* Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    pointer-events: none;
    transform: scale(0);
    animation: ripple 0.6s linear;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.page-loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===================================
   PROJECT DETAIL PAGES STYLES
   =================================== */

/* Project Hero Section */
.project-hero {
    margin-top: 0;
    position: relative;
    overflow: hidden;
    height: 600px;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.project-hero-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    position: relative;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.carousel-btn:hover {
    background: rgba(249, 121, 24, 0.8);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--accent-orange);
    width: 30px;
    border-radius: 6px;
}

.project-hero-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-orange);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb span:last-child {
    color: var(--white);
    font-weight: 600;
}

.project-badge {
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    animation: fadeInUp 0.6s ease;
    box-shadow: 0 8px 20px rgba(249, 121, 24, 0.4);
}

.project-badge i {
    font-size: 28px;
    color: var(--white);
}

.project-hero-title {
    font-size: 32px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
    animation: fadeInUp 0.6s ease 0.2s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.meta-item i {
    color: var(--accent-orange);
    font-size: 18px;
}

/* Project Content Section */
.project-content-section {
    padding: 30px 0 35px;
    background: var(--light-gray);
}

.project-content-wrapper {
    width: 100%;
    margin: 0;
}

/* Main Content */
.project-main-content {
    background: var(--white);
    border-radius: 12px;
    padding: 22px 20px;
    box-shadow: var(--card-shadow);
}

.content-block {
    margin-bottom: 20px;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block h2 {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 8px;
}

.content-block h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.content-block p {
    font-size: 15px;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-gray);
    margin-bottom: 10px;
    text-align: justify;
}

.content-block ul {
    margin-left: 20px;
    color: var(--text-gray);
}

.content-block li {
    margin-bottom: 10px;
    line-height: 1.7;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
}

/* Event Details Inline */
.event-details-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
    border-left: 3px solid var(--accent-orange);
}

.detail-item i {
    font-size: 24px;
    color: var(--accent-orange);
    min-width: 24px;
}

.detail-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-item strong {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-blue);
    font-family: 'Montserrat', sans-serif;
}

.detail-item span {
    font-size: 14px;
    color: var(--text-gray);
    font-family: 'Montserrat', sans-serif;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.highlight-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 29, 86, 0.08);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 29, 86, 0.15);
    border-color: var(--accent-orange);
}

.highlight-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--accent-orange), #ff8b3d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 5px 15px rgba(249, 121, 24, 0.3);
}

.highlight-icon i {
    font-size: 26px;
    color: var(--white);
}

.highlight-card h3 {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    margin-bottom: 10px;
    line-height: 1.3;
}

.highlight-card p {
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-gray);
    line-height: 1.6;
    text-align: justify;
}

/* Focus & Training Lists */
.focus-list,
.training-list {
    list-style: none;
    margin-left: 0;
}

.focus-list li,
.training-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.focus-list li::before,
.training-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 16px;
}

.focus-list li strong,
.training-list li strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* Impact Cards */
.impact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.impact-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(249, 121, 24, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(16, 29, 86, 0.4);
}

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

.impact-number {
    font-size: 32px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 8px;
    color: var(--accent-orange);
}

.impact-label {
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    opacity: 0.95;
    line-height: 1.4;
}

/* Sidebar */
.project-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-card {
    background: var(--white);
    border-radius: 10px;
    padding: 15px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(16, 29, 86, 0.06);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    box-shadow: 0 10px 30px rgba(16, 29, 86, 0.15);
    border-color: rgba(249, 121, 24, 0.2);
}

.sidebar-card h3 {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

/* Sidebar Info */
.sidebar-info {
    display: flex;
    flex-direction: column;
.sidebar-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(249, 121, 24, 0.05);
    transform: translateX(5px);
}

.info-item i {
    font-size: 18px;
    color: var(--accent-orange);
    margin-top: 2px;
}

.info-item div {
    flex: 1;
}

.info-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.info-item span {
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-gray);
    font-weight: 500;
}

/* Share Buttons */
.share-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.share-btn {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.email {
    background: var(--accent-orange);
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 121, 24, 0.15) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-card h3 {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 14px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 1;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(249, 121, 24, 0.3);
}

.cta-btn:hover {
    background: #e56410;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 121, 24, 0.4);
}

/* Related Projects Section */
.related-projects-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.related-projects-section h2 {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.related-projects-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.related-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .related-projects-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
    }
}

.related-project-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(16, 29, 86, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(16, 29, 86, 0.05);
    height: 100%;
}

.related-project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(16, 29, 86, 0.15);
    border-color: var(--accent-orange);
}

.related-project-image {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: var(--light-gray);
    flex-shrink: 0;
}

.related-project-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(16, 29, 86, 0) 0%, rgba(16, 29, 86, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.related-project-card:hover .related-project-image::after {
    opacity: 1;
}

.related-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
}

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

.project-badge-small {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-orange), #ff8b3d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(249, 121, 24, 0.4);
    z-index: 2;
}

.project-badge-small i {
    font-size: 18px;
    color: var(--white);
}

.related-project-content {
    padding: 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.related-project-content h3 {
    font-size: 16px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    margin-bottom: 8px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.related-project-card:hover .related-project-content h3 {
    color: var(--accent-orange);
}

.related-project-content p {
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.related-project-content p::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-orange);
    font-size: 12px;
}

/* Footer Styles for Project Pages */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 30px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 20px;
}

.footer-section h3 {
    font-size: 17px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 14px;
    color: var(--accent-orange);
}

.footer-section p {
    line-height: 1.6;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.85);
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--accent-orange);
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 18px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
}

/* Responsive Design for Project Pages */
@media (max-width: 1024px) {
    .project-content-wrapper {
        grid-template-columns: 1fr;
    }

    .project-sidebar {
        order: -1;
    }

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

    .impact-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-projects-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
    
    .related-project-image {
        height: 150px;
    }
    
    .project-main-content {
        padding: 20px 18px;
    }
}

@media (max-width: 768px) {
    .project-hero {
        margin-top: 60px;
    }
    
    .project-hero-bg {
        padding: 28px 0 24px;
    }

    .project-hero-title {
        font-size: 24px;
    }
    .project-main-content {
        padding: 20px 16px;
    }

    .content-block h2 {
        font-size: 20px;
    }
    
    .content-block {
        margin-bottom: 18px;
    }

    .impact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .related-projects-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .related-project-image {
        height: 180px;
    }
    
    .related-project-content {
        padding: 16px;
    }
    
    .related-project-content h3 {
        font-size: 15px;
    }

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

    .project-meta {
        gap: 10px;
    }
    
    .meta-item {
        font-size: 12px;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .project-hero-bg {
        padding: 30px 0 25px;
    }

    .project-hero-title {
        font-size: 20px;
    }
    
    .project-badge {
        width: 50px;
        height: 50px;
    }
    
    .project-badge i {
        font-size: 24px;
    }

    .share-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .highlights-grid {
        gap: 12px;
    }

    .project-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .content-block {
        margin-bottom: 20px;
    }
    
    .project-main-content {
        padding: 18px 14px;
    }
}
}
/* ===================================
   About Us Page Styles
   =================================== */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 121, 24, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.about-hero-tagline {
    font-size: 1.8rem;
    color: var(--accent-orange);
    font-weight: 600;
    font-style: italic;
}

/* About Main Content */
.about-main-content {
    padding: 80px 0;
    background: var(--white);
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 60px;
    align-items: start;
}

.about-image-section {
    position: sticky;
    top: 100px;
}

.about-main-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(16, 29, 86, 0.2);
    transition: all 0.4s ease;
}

.about-main-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(16, 29, 86, 0.3);
}

.about-info-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(16, 29, 86, 0.03);
    border-radius: 15px;
    border-left: 5px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.about-info-card:hover {
    background: rgba(16, 29, 86, 0.06);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(16, 29, 86, 0.1);
}

.about-info-card.highlight {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
    border-left: 5px solid var(--accent-orange);
    color: var(--white);
}

.about-info-card.highlight:hover {
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-blue));
}

.about-info-card.highlight .info-content p,
.about-info-card.highlight .info-content h4 {
    color: var(--white);
}

.info-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.about-info-card.highlight .info-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.about-info-card:hover .info-icon {
    transform: rotate(360deg) scale(1.1);
}

.info-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.info-content p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for About Page */
@media (max-width: 968px) {
    .about-hero {
        padding: 100px 0 60px;
    }

    .about-hero-title {
        font-size: 2.2rem;
    }

    .about-hero-tagline {
        font-size: 1.4rem;
    }

    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-section {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0 50px;
    }

    .about-hero-title {
        font-size: 1.8rem;
    }

    .about-hero-tagline {
        font-size: 1.2rem;
    }

    .about-main-content {
        padding: 60px 0;
    }

    .about-info-card {
        padding: 20px;
        gap: 15px;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .info-content h4 {
        font-size: 1.1rem;
    }

    .info-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 1.5rem;
    }

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

    .about-info-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* Simple About Us Page Styles */
.about-simple-section {
    padding: 100px 0 80px;
    background: var(--white);
    min-height: 80vh;
}

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

.about-simple-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

.about-simple-tagline {
    font-size: 1.5rem;
    color: var(--accent-orange);
    font-weight: 600;
    font-style: italic;
}

.about-simple-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-simple-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-simple-list li {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 25px;
    padding-left: 40px;
    position: relative;
}

.about-simple-list li::before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-size: 1.5rem;
    font-weight: bold;
}

.about-simple-list li strong {
    color: var(--primary-blue);
    font-weight: 700;
}

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

    .about-simple-title {
        font-size: 1.8rem;
    }

    .about-simple-tagline {
        font-size: 1.2rem;
    }

    .about-simple-list li {
        font-size: 1rem;
        padding-left: 35px;
    }
}

@media (max-width: 480px) {
    .about-simple-title {
        font-size: 1.5rem;
    }

    .about-simple-tagline {
        font-size: 1rem;
    }

    .about-simple-list li {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
}

/* YESIST-Style About Section */
.about-yesist-style {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    margin-top: -60px;
    background: var(--white);
}

.about-yesist-style .container {
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.about-header-tag {
    margin-bottom: 5px;
}

.about-tag {
    display: inline-block;
    color: var(--accent-orange);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.about-main-wrapper {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 20px;
    align-items: center;
    margin-top: 5px;
}

.about-left-content {
    padding-right: 20px;
}

.about-main-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-blue);
    line-height: 1.1;
    margin-bottom: 6px;
}

.about-main-tagline {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 8px;
    font-weight: 400;
}

.about-description {
    margin-bottom: 8px;
}

.about-description p {
    font-size: 0.98rem;
    line-height: 1.5;
    color: var(--text-dark);
    text-align: justify;
    margin-bottom: 20px;
}

.about-award-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(16, 29, 86, 0.15);

}

.award-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.award-icon i {
    font-size: 1.4rem;
    color: var(--white);
}

.award-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.award-text p {
    font-size: 0.92rem;
    color: var(--white);
    margin: 0;
}

.about-features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--accent-orange);
    font-size: 1rem;
    flex-shrink: 0;
}

.about-right-images {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-collage {
    position: sticky;
    top: 100px;
    width: 100%;
    max-width: 450px;
}

.collage-img {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(16, 29, 86, 0.15);
    transition: all 0.4s ease;
}

.collage-img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(16, 29, 86, 0.25);
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-yesist-style {
        min-height: auto;
        padding: 60px 0;
    }

    .about-yesist-style .container {
        padding: 0 30px;
    }

    .about-main-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-left-content {
        padding-right: 0;
    }

    .image-collage {
        position: relative;
        top: 0;
    }

    .about-main-title {
        font-size: 1.9rem;
    }

    .about-main-tagline {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .about-yesist-style {
        padding: 50px 0;
    }

    .about-yesist-style .container {
        padding: 0 20px;
    }

    .about-main-title {
        font-size: 1.7rem;
    }

    .about-main-tagline {
        font-size: 1rem;
    }

    .about-award-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .award-icon {
        width: 55px;
        height: 55px;
    }

    .award-icon i {
        font-size: 1.5rem;
    }

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

    .feature-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-yesist-style {
        padding: 40px 0;
    }

    .about-main-title {
        font-size: 1.4rem;
    }

    .about-main-tagline {
        font-size: 0.9rem;
    }

    .about-description p {
        font-size: 0.9rem;
    }

    .feature-item {
        font-size: 0.9rem;
    }

    .feature-item i {
        font-size: 1rem;
    }
}

/* Why Brahmam Section */
.why-brahmam-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(16, 29, 86, 0.03) 0%, rgba(249, 121, 24, 0.03) 100%);
}

.why-brahmam-section .container {
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.why-brahmam-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.why-brahmam-left {
    flex: 0 0 45%;
    padding-left: 40px;
}

.why-brahmam-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(16, 29, 86, 0.15);
}

.why-brahmam-right {
    flex: 1;
    padding-right: 40px;
}

.why-brahmam-header {
    text-align: left;
    margin-bottom: 30px;
}

.why-brahmam-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.why-brahmam-subtitle {
    font-size: 1.3rem;
    color: var(--accent-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: left;
}

.why-brahmam-content {
    max-width: 100%;
}

.why-features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.why-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.why-feature-item i {
    color: var(--accent-orange);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.why-feature-item span {
    line-height: 1.6;
}

/* Responsive Design for Why Brahmam Section */
@media (max-width: 968px) {
    .why-brahmam-title {
        font-size: 2.2rem;
    }

    .why-brahmam-subtitle {
        font-size: 1.1rem;
    }

    .why-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

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

    .why-brahmam-header {
        margin-bottom: 40px;
    }

    .why-brahmam-title {
        font-size: 1.8rem;
    }

    .why-brahmam-subtitle {
        font-size: 1rem;
    }

    .why-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-feature-card {
        padding: 25px 20px;
    }

    .why-icon {
        width: 70px;
        height: 70px;
    }

    .why-icon i {
        font-size: 1.7rem;
    }

    .why-feature-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .why-brahmam-title {
        font-size: 1.5rem;
    }

    .why-brahmam-subtitle {
        font-size: 0.9rem;
    }

    .why-icon {
        width: 60px;
        height: 60px;
    }

    .why-icon i {
        font-size: 1.5rem;
    }
}

/* Brahmam Framework Section */
.framework-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 20px 0;
    background: #f5f5f5;
}

.framework-section .container {
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.framework-header {
    text-align: center;
    margin-bottom: 40px;
}

.framework-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.4;
}

.framework-subtitle {
    color: var(--accent-orange);
    font-size: 2rem;
    font-weight: 700;
}

.framework-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Venn Diagram */
.framework-venn-diagram {
    position: relative;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.venn-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.venn-container img {
    width: 100%;
    height: auto;
    max-width: 600px;
}

/* Framework Description */
.framework-description {
    padding: 0 20px;
}

.framework-description > p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 40px;
}

.framework-pillars {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.pillar-color {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
}

.engineering-color {
    background: #1a2a5e;
}

.community-color {
    background: var(--accent-orange);
}

.policy-color {
    background: #4a7abf;
}

.pillar-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.pillar-text p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .framework-title {
        font-size: 1.6rem;
    }

    .framework-subtitle {
        font-size: 1.4rem;
    }

    .framework-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .framework-venn-diagram {
        padding: 30px;
    }
    
    .venn-container img {
        max-width: 500px;
    }
}

    .venn-center {
        width: 80px;
        height: 80px;
    }

    .framework-logo {
        width: 60px;
    }

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

    .framework-title {
        font-size: 1.4rem;
    }

    .framework-subtitle {
        font-size: 1.2rem;
    }

    .framework-venn-diagram {
        padding: 20px;
    }
    
    .venn-container img {
        max-width: 400px;
    }

    .framework-description > p {
        font-size: 1rem;
    }

    .pillar-color {
        width: 40px;
        height: 40px;
    }

    .pillar-text h4 {
        font-size: 1.1rem;
    }

    .pillar-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .framework-title {
        font-size: 1.2rem;
    }

    .framework-subtitle {
        font-size: 1rem;
    }

    .framework-venn-diagram {
        padding: 15px;
    }
    
    .venn-container img {
        max-width: 100%;
    }

    .pillar-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Key Offerings Section */
.key-offerings-section {
    padding: 80px 0;
    background: var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.key-offerings-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: var(--accent-orange);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.key-offerings-section::after {
    content: '';
    position: absolute;
    top: 50px;
    right: 50px;
    width: 100px;
    height: 100px;
    background: var(--accent-orange);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.key-offerings-section .container {
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.offerings-header {
    text-align: center;
    margin-bottom: 50px;
}

.offerings-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.offerings-subtitle {
    font-size: 2rem;
    color: var(--accent-orange);
    font-weight: 700;
    text-align: center;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    justify-items: center;
}

.offering-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 380px;
}

.offering-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(16, 29, 86, 0.15);
    border-color: var(--accent-orange);
}

.offering-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.offering-card:hover .offering-icon {
    background: linear-gradient(135deg, var(--accent-orange), #ff8c42);
    transform: rotate(360deg);
}

.offering-icon i {
    font-size: 2rem;
    color: var(--white);
}

.offering-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    line-height: 1.4;
    text-align: center;
}

.offering-card p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.offering-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-color: var(--accent-orange);
}

.offering-card.featured h3 {
    color: var(--white);
}

.offering-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.offering-card.featured .offering-icon {
    background: var(--accent-orange);
}

.offering-card.featured:hover .offering-icon {
    background: var(--white);
}

.offering-card.featured:hover .offering-icon i {
    color: var(--primary-blue);
}

/* Responsive Design */
@media (max-width: 968px) {
    .offerings-title {
        font-size: 2rem;
    }

    .offerings-subtitle {
        font-size: 1.1rem;
    }

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

    .offering-card.featured {
        grid-column: span 1;
    }
}

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

    .offerings-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .offerings-subtitle {
        font-size: 1rem;
    }

    .offering-icon {
        width: 70px;
        height: 70px;
    }

    .offering-icon i {
        font-size: 1.8rem;
    }

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

    .offering-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .key-offerings-section {
        padding: 50px 0;
    }

    .offerings-title {
        font-size: 1.5rem;
    }

    .offerings-subtitle {
        font-size: 0.95rem;
    }

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

    .offering-card {
        padding: 30px 20px;
    }

    .offering-icon {
        width: 60px;
        height: 60px;
    }

    .offering-icon i {
        font-size: 1.5rem;
    }

    .offering-card h3 {
        font-size: 1.1rem;
    }

    .offering-card p {
        font-size: 0.9rem;
    }
}

/* Additional responsive padding adjustments */
@media (max-width: 968px) {
    .why-brahmam-section .container,
    .framework-section .container,
    .key-offerings-section .container {
        padding: 0 30px;
    }
    
    .framework-section {
        padding: 80px 0;
    }
    
    .key-offerings-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .why-brahmam-section {
        padding: 60px 0;
    }
    
    .why-brahmam-section .container,
    .framework-section .container,
    .key-offerings-section .container {
        padding: 0 20px;
    }
    
    .framework-section {
        padding: 60px 0;
    }
    
    .key-offerings-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .why-brahmam-section .container,
    .framework-section .container,
    .key-offerings-section .container {
        padding: 0 15px;
    }
}

/* Our Focus Pillars Section */
.focus-pillars-section {
    padding: 100px 0;
    background: var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.focus-pillars-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: var(--accent-orange);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.focus-pillars-section::after {
    content: '';
    position: absolute;
    top: 50px;
    right: 50px;
    width: 100px;
    height: 100px;
    background: var(--accent-orange);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.focus-pillars-section .container {
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pillars-header {
    text-align: center;
    margin-bottom: 80px;
}

.pillars-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.pillars-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--accent-orange) 0%, 
        var(--accent-orange) 25%, 
        #3b9dd9 25%, 
        #3b9dd9 50%, 
        #6fb847 50%, 
        #6fb847 75%, 
        #1e5a9e 75%, 
        #1e5a9e 100%);
    z-index: 0;
}

.pillar-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pillar-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-orange);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--primary-blue);
    z-index: 2;
}

.pillar-people .pillar-number {
    background: var(--accent-orange);
}

.pillar-technology .pillar-number {
    background: var(--accent-orange);
}

.pillar-ecosystem .pillar-number {
    background: var(--accent-orange);
}

.pillar-partnership .pillar-number {
    background: var(--accent-orange);
}

.pillar-arrow {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.pillar-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pillar-people .pillar-icon {
    background: var(--accent-orange);
}

.pillar-technology .pillar-icon {
    background: #3b9dd9;
}

.pillar-ecosystem .pillar-icon {
    background: #6fb847;
}

.pillar-partnership .pillar-icon {
    background: #1e5a9e;
}

.pillar-icon i {
    font-size: 3rem;
    color: var(--white);
}

.pillar-card:hover .pillar-icon {
    transform: rotateY(360deg);
}

.pillar-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.pillar-people .pillar-title {
    color: var(--accent-orange);
}

.pillar-technology .pillar-title {
    color: #3b9dd9;
}

.pillar-ecosystem .pillar-title {
    color: #6fb847;
}

.pillar-partnership .pillar-title {
    color: #1e5a9e;
}

.pillar-description {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 968px) {
    .focus-pillars-section .container {
        padding: 0 30px;
    }

    .pillars-title {
        font-size: 2.2rem;
    }

    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }

    .pillars-grid::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .focus-pillars-section {
        padding: 80px 0;
    }

    .focus-pillars-section .container {
        padding: 0 20px;
    }

    .pillars-header {
        margin-bottom: 60px;
    }

    .pillars-title {
        font-size: 1.8rem;
    }

    .pillar-card {
        padding: 35px 25px;
    }

    .pillar-icon {
        width: 80px;
        height: 80px;
    }

    .pillar-icon i {
        font-size: 2.5rem;
    }

    .pillar-title {
        font-size: 1.5rem;
    }

    .pillar-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .focus-pillars-section .container {
        padding: 0 15px;
    }

    .pillars-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .pillar-card {
        padding: 30px 20px;
    }

    .pillar-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        top: -25px;
    }

    .pillar-icon {
        width: 70px;
        height: 70px;
    }

    .pillar-icon i {
        font-size: 2rem;
    }

    .pillar-title {
        font-size: 1.3rem;
    }
}
