/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    font-size: 2rem;
    background: #4a90e2;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.logo h1 {
    color: #4a90e2;
    font-size: 1.8rem;
}

/* Navigation */
.nav-tabs {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-tabs li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-tabs li a:hover {
    background-color: #e8f4ff;
    color: #4a90e2;
}

.nav-tabs li a.active {
    background-color: #4a90e2;
    color: white;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .nav-tabs li a:hover,
    .nav-tabs li a.active {
        background-color: #4a90e2;
        color: #4a90e2;
    }
}

/* ==========================================================================
   RESPONSIVE NAVIGATION
   ========================================================================== */

/* Mobile Navigation Toggle Button */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.5rem;
    color: #4a90e2;
    z-index: 1001;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

/* Mobile Navigation Styles */
@media (max-width: 1024px) {
    /* Prevent horizontal scrolling */
    body, html {
        overflow-x: hidden;
        width: 100%;
    }
    
    header .container {
        position: relative;
        padding: 0.8rem 60px 0.8rem 20px;
        max-width: 100%;
        overflow: hidden;
    }
    
    .nav-toggle {
        display: block !important;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        margin: 0;
    }
    
    .nav-tabs {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 5rem 2rem 2rem 2rem;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
        gap: 0;
    }
    
    .nav-tabs.active {
        right: 0;
    }
    
    .nav-tabs li {
        width: 100%;
    }
    
    .nav-tabs li a {
        display: block;
        padding: 1rem;
        border-radius: 8px;
        margin-bottom: 0.5rem;
        border-left: 3px solid transparent;
        transition: all 0.3s ease;
        white-space: nowrap; /* Prevent text wrapping */
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .nav-tabs li a:hover,
    .nav-tabs li a.active {
        border-left: 3px solid #4a90e2;
        background-color: #e8f4ff;
    }
    
    /* Overlay when menu is open */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        backdrop-filter: blur(3px);
        z-index: 999;
        display: none;
    }
    
    .nav-overlay.active {
        display: block;
    }
    
    /* Adjust header for mobile */
    .logo {
        position: relative;
        z-index: 1;
        max-width: calc(100% - 70px); /* Leave space for hamburger */
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo img {
        max-width: 100%;
        height: auto;
    }
    
    /* Ensure container doesn't cause overflow */
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
}

/* Smaller screens adjustments */
@media (max-width: 768px) {
    .nav-tabs {
        width: 80%;
    }
    
    .nav-toggle {
        right: 15px;
        font-size: 1.4rem;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    header .container {
        padding: 0.8rem 50px 0.8rem 15px;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .nav-toggle {
        right: 10px;
        font-size: 1.3rem;
    }
    
    header .container {
        padding: 0.8rem 45px 0.8rem 10px;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
}

/* Large laptop screens */
@media (min-width: 1025px) {
    .nav-toggle {
        display: none !important;
    }
    
    .nav-tabs {
        display: flex !important;
    }
    
    .nav-overlay {
        display: none !important;
    }
}


/* Logo Link */
.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

/* Hero Section with Video Background */
.hero {
    position: relative;
    height: 80vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 80px;
}

.video-background {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1.05);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.8) 0%, rgba(135, 206, 235, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Mission, Vision & Values Section */
.mv-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.mv-title {
    text-align: center;
    color: #4a90e2;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.mv-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #4a90e2;
    border-radius: 2px;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mv-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2 0%, #357abd 100%);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.mv-icon {
    margin-bottom: 1.5rem;
    color: #4a90e2;
}

.mv-card h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.mv-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

.values-list p {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Modern Partnership Section */
.modern-partnership-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    position: relative;
}

.modern-partnership-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #4a90e2 50%, transparent 100%);
}

.partnership-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.partnership-header h2 {
    color: #4a90e2;
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.partnership-header p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.partnership-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.15);
}

.feature-card-partnership {
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.partnership-details {
    margin-bottom: 80px;
}

.tiers-section h3 {
    color: #4a90e2;
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.tier-card {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e8f4ff;
    position: relative;
    overflow: hidden;
}

.tier-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2 0%, #357abd 100%);
}

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(74, 144, 226, 0.15);
}

.tier-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.tier-header h4 {
    color: #333;
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
}

.tier-badge {
    background: #e8f4ff;
    color: #4a90e2;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tier-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.tier-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tier-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.tier-card li::before {
    content: "✓";
    color: #4a90e2;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.partnership-cta {
    background: linear-gradient(135deg, #4a90e2 0%, white 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.partnership-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.05"><circle cx="50" cy="50" r="2" fill="white"/></svg>');
    background-size: 50px 50px;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    background: white;
    color: #4a90e2;
    border: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Partnership Modal */
.partnership-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.partnership-modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 0;
    margin-bottom: 20px;
}

.modal-header h3 {
    color: #4a90e2;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 600;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: #e74c3c;
    background: #f8f9fa;
}

.modal-body {
    padding: 0 30px 30px;
}

.modal-body p {
    color: #666;
    margin-bottom: 25px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background: #f8fbff;
}

.form-control:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #4a90e2;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

/* Collaborated With Section */
.collaborated-with {
    padding: 80px 0;
    background-color: #f8fbff;
}

.collaborated-with .section-title {
    text-align: center;
    color: #4a90e2;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-item {
    background: white;
    padding: 1rem;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    width: 120px;
    overflow: hidden;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.logo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Collaboration Section */
.collaboration-section {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.collaboration-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.collaboration-section .section-title {
    text-align: center;
    color: #4a90e2;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
}

.collaboration-section .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #4a90e2;
    margin: 15px auto 0;
}

.collaboration-section h3 {
    color: #4a90e2 !important;
    font-weight: 700 !important;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.collaboration-section p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Direct Email Form */
.direct-email-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #e8f4ff;
    margin-top: 40px;
}

.direct-email-form h3 {
    margin-bottom: 30px;
    color: #4a90e2;
    text-align: center;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background: #f8fbff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #333;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #4a90e2;
    color: white;
    border: 1px solid #4a90e2;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #357abd;
    border-color: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}


footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
}


/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    background-color: #357abd;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .logos-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .logo-item {
        height: 110px;
        width: 110px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mv-card {
        padding: 2rem;
    }
    
    .modern-partnership-section {
        padding: 60px 0;
    }
    
    .partnership-header h2 {
        font-size: 2.2rem;
    }
    
    .partnership-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .tiers-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .partnership-cta {
        padding: 40px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .modal-content {
        margin: 10px;
    }
    
    .modal-header,
    .modal-body {
        padding: 20px;
    }
    
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .logo-item {
        height: 100px;
        width: 100px;
        padding: 0.8rem;
    }
    
    .direct-email-form {
        padding: 30px 20px;
    }
    
    .direct-email-form h3 {
        font-size: 1.5rem;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .partnership-header h2 {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .logo-item {
        height: 90px;
        width: 90px;
    }
    
    .direct-email-form {
        padding: 25px 15px;
    }
    
    .direct-email-form h3 {
        font-size: 1.3rem;
    }
    
    .submit-btn {
        padding: 12px;
        font-size: 0.9rem;
    }
}
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .benefit-item {
        padding: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .benefit-item {
        padding: 1rem !important;
    }
    
    .benefit-icon {
        margin-bottom: 1rem !important;
    }
    
    .benefit-icon i {
        font-size: 2.5rem !important;
    }
}

/* Collaboration Definition Card */
.definition-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e8f4ff;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.definition-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2 0%, #357abd 100%);
}

.definition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.15);
}

.definition-icon {
    margin-bottom: 1.5rem;
}

.definition-icon i {
    color: #4a90e2;
}

.definition-card h3 {
    color: #4a90e2;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.definition-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Responsive Design for Definition Card */
@media (max-width: 768px) {
    .definition-card {
        padding: 2rem;
        margin: 0 20px;
    }
    
    .definition-card h3 {
        font-size: 1.5rem;
    }
    
    .definition-card p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .definition-card {
        padding: 1.5rem;
    }
    
    .definition-card h3 {
        font-size: 1.3rem;
    }
    
    .definition-icon i {
        font-size: 2.5rem;
    }
}

/* Heart Donation Button - Option 3: Minimalist */
.heart-donation {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: visible;
    animation: heartbeat 3s infinite ease-in-out;
}

.donation-tooltip {
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1001;
    letter-spacing: 0.5px;
}

/* Arrow connecting tooltip to button */
.donation-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid #333;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.heart-donation:hover {
    background: #c0392b;
    transform: scale(1.05);
}

.heart-donation:hover .donation-tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

/* Heartbeat animation not sure :} */
@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    5% {
        transform: scale(1.1);
    }
    10% {
        transform: scale(1);
    }
    15% {
        transform: scale(1.1);
    }
    20% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive design for heart button */
@media (max-width: 768px) {
    .heart-donation {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .donation-tooltip {
        font-size: 0.8rem;
        padding: 6px 10px;
        right: 55px;
    }
    
    .donation-tooltip::after {
        right: -4px;
        border-width: 4px 0 4px 4px;
    }
}

/* Benefits of Partnering Section - Modern Non-Card Design */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #4a90e2 50%, transparent 100%);
}

.benefits-section .section-title {
    text-align: center;
    color: #4a90e2;
    font-size: 2.8rem;
    margin-bottom: 5rem;
    font-weight: 700;
    position: relative;
}

.benefits-section .section-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2 0%, #357abd 100%);
    border-radius: 2px;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.benefits-timeline {
    position: relative;
    padding-left: 50px;
}

.benefits-timeline::before {
    content: "";
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #4a90e2, #87ceeb);
    border-radius: 1px;
}

.benefit-item {
    position: relative;
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    border: 1px solid rgba(74, 144, 226, 0.1);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(74, 144, 226, 0.08);
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-item::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: #4a90e2;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.2);
    z-index: 2;
    transform: translateX(10px);
}

.benefit-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.benefit-icon::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    animation: shine 3s infinite linear;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.benefit-icon i {
    font-size: 1.8rem;
    color: white;
    position: relative;
    z-index: 1;
}

.benefit-text {
    padding-right: 1rem;
}

.benefit-text h3 {
    color: #333;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.benefit-text h3::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #4a90e2 0%, #357abd 100%);
    border-radius: 2px;
}

.benefit-text p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 0;
}

.benefit-highlight {
    display: inline-block;
    background: linear-gradient(120deg, rgba(74, 144, 226, 0.1) 0%, rgba(74, 144, 226, 0.05) 100%);
    padding: 2px 8px;
    border-radius: 4px;
    color: #4a90e2;
    font-weight: 500;
}

/* Hide benefit icons on mobile */
@media (max-width: 780px) {
    .benefit-icon {
        display: none !important;
    }
    
    .benefit-content {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .benefit-text {
        padding-right: 0 !important;
    }
}