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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ef4444;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ef4444;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ef4444;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.join-btn {
    background: #ef4444;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.join-btn:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: #22c55e;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)),
        url('images/website_cover.jpg'),
        url('images/website_cover.png'),
        url('images/website_cover.jpeg');
    background-size: contain;
    background-position: center left;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: #ef4444;
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
    opacity: 1.0;
}

.hero-container {
    max-width: 1200px;
    margin: 0;
    padding: 0 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-text-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
    position: relative;
    z-index: 3;
    margin-left: 0;
    margin-right: auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: smoothAppear 1.5s ease-out 0.5s forwards;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.slideshow-text {
    display: inline-block;
    min-height: 2.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

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

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background: #ef4444;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.3);
    color: #fff;
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: #ef4444;
    border: 2px solid #ef4444;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: #ef4444;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Payment methods - Removed */

/* Hero Widget - Removed */

/* Services Preview */
.services-preview {
    padding: 5rem 0;
    background: #fff;
    position: relative;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, transparent 48%, #22c55e 48%, #22c55e 52%, transparent 52%, transparent 100%);
    opacity: 1.0;
    z-index: 0;
}

.services-preview .container {
    position: relative;
    z-index: 2;
}

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

.service-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #dc2626;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #dc2626;
}

.service-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Digital Banking Section */
.digital-banking {
    padding: 6rem 0;
    background: #f8fafc;
    color: #333;
    position: relative;
}

.digital-banking::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30%;
    height: 60%;
    background: #ef4444;
    clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 1.0;
    z-index: 1;
}

.digital-banking .container {
    position: relative;
    z-index: 2;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.content-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #1e293b;
}

.content-text p {
    margin-bottom: 1.5rem;
    color: #64748b;
    line-height: 1.7;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #dc2626;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
}

.banking-dashboard {
    background: #1e293b;
    border-radius: 15px;
    padding: 2rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.dashboard-header h4 {
    margin-bottom: 2rem;
    color: #cbd5e1;
}

.chart-area {
    height: 200px;
    margin-bottom: 2rem;
    position: relative;
}

.chart-placeholder {
    width: 100%;
    height: 100%;
    background: #22c55e;
    border-radius: 10px;
    opacity: 0.8;
}

.dashboard-stats {
    display: flex;
    justify-content: space-between;
}

.dashboard-stat {
    display: flex;
    flex-direction: column;
}

.dashboard-stat .amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #16a34a;
}

.dashboard-stat .label {
    color: #cbd5e1;
    font-size: 0.9rem;
}

/* Trust Section */
.trust-section {
    padding: 6rem 0;
    background: #fff;
    position: relative;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 100%;
    background: #22c55e;
    clip-path: polygon(0% 0%, 80% 0%, 60% 100%, 0% 100%);
    opacity: 1.0;
    z-index: 1;
}

.trust-section .container {
    position: relative;
    z-index: 2;
}

.trust-visual {
    position: relative;
}

.trust-card {
    background: #fff;
    color: #1e293b;
    padding: 2.5rem;
    border-radius: 15px;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.trust-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.trust-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Payment Service */
.payment-service {
    padding: 6rem 0;
    background: #f8fafc;
    color: #333;
    position: relative;
}

.payment-service::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    width: 35%;
    height: 60%;
    background: #ef4444;
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 1.0;
    z-index: 1;
}

.payment-service .container {
    position: relative;
    z-index: 2;
}

.payment-cards {
    position: relative;
    height: 300px;
}

.card {
    position: absolute;
    width: 280px;
    height: 180px;
    border-radius: 15px;
    background: #dc2626;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-1 {
    top: 0;
    left: 0;
    transform: rotate(-10deg);
}

.card-2 {
    top: 40px;
    left: 60px;
    background: #22c55e;
    transform: rotate(5deg);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: #fff;
    position: relative;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 50%;
    background: #22c55e;
    clip-path: polygon(0% 0%, 70% 0%, 100% 100%, 0% 100%);
    opacity: 1.0;
    z-index: 1;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.about-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.vision-mission {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.vm-item h3 {
    color: #dc2626;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.vm-item p {
    color: #64748b;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.value-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    border-color: #dc2626;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #16a34a;
}

.value-card h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.value-card p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: #f8fafc;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 0;
    width: 30%;
    height: 80%;
    background: #ef4444;
    clip-path: polygon(0% 0%, 60% 0%, 80% 100%, 0% 100%);
    opacity: 1.0;
    z-index: 1;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
    font-weight: 700;
}

.services-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card-main {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card-main:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: #fff;
    border-color: #dc2626;
}

.service-icon-main {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #16a34a;
}

.service-card-main h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.service-card-main p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.learn-more-btn {
    background: transparent;
    color: #dc2626;
    border: 2px solid #dc2626;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.learn-more-btn:hover {
    background: #dc2626;
    color: #fff;
    border-color: transparent;
    text-decoration: none;
}

/* Why Choose Us */
.why-choose {
    padding: 6rem 0;
    background: #1e293b;
    color: #fff;
}

.why-choose .section-title {
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: #dc2626;
}

.feature-icon {
    font-size: 2rem;
    color: #16a34a;
    flex-shrink: 0;
}

.feature-item h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-item p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: #fff;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 70%;
    background: #22c55e;
    clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 1.0;
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.contact-info p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.contact-item h4 {
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #64748b;
    margin: 0;
}

.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.contact-form h3 {
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1e293b;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #16a34a;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #dc2626;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #dc2626;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #cbd5e1;
}

.social-link:hover {
    background: #dc2626;
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-top: 1px solid #e2e8f0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 0.5rem 0;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .hero::before {
        width: 60%;
        clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
    
    .hero-container {
        justify-content: center;
        text-align: center;
        padding: 2rem 20px;
    }
    
    .hero-text-card {
        padding: 2rem 1.5rem;
        margin: 1rem 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-grid-main {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile-specific background blocks */
    .build-dreams::after,
    .financial-solutions::before,
    .member-benefits::after,
    .about-section::after,
    .services-section::before,
    .contact-section::before,
    .digital-banking::after,
    .trust-section::before,
    .payment-service::before {
        width: 50%;
        opacity: 0.8;
    }
    
    /* Mobile card adjustments */
    .dreams-text-card,
    .content-text-card,
    .about-content-card {
        padding: 2rem;
        margin: 1rem 0;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.3rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-text-card {
        padding: 1.5rem 1rem;
        margin: 0.5rem 0;
    }
    
    .content-text h2,
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 1rem;
    }
    
    .dreams-features {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .journey-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .payment-methods {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .payment-icons {
        flex-wrap: wrap;
    }
    
    /* Smaller background blocks on mobile */
    .hero::before {
        width: 70%;
    }
    
    .build-dreams::after,
    .financial-solutions::before,
    .member-benefits::after,
    .about-section::after,
    .services-section::before,
    .contact-section::before,
    .digital-banking::after,
    .trust-section::before,
    .payment-service::before {
        width: 60%;
        opacity: 0.6;
    }
}
/* Build Your Dreams Section */
.build-dreams {
    padding: 6rem 0;
    background: #fff;
    position: relative;
}

.build-dreams::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25%;
    height: 50%;
    background: #22c55e;
    clip-path: polygon(0% 0%, 70% 0%, 100% 100%, 0% 100%);
    opacity: 1.0;
    z-index: 1;
}

.dreams-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.dreams-text-card {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    position: relative;
    z-index: 3;
}

.dreams-text-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.dreams-subtitle {
    font-size: 1.2rem;
    color: #dc2626;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.dreams-text-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.dreams-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dream-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.dream-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #dc2626;
}

.dream-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.dream-content h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.dream-content p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.dreams-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.dreams-card h3 {
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    text-align: center;
}

.journey-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.step.active {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.step-number {
    width: 30px;
    height: 30px;
    background: #e2e8f0;
    color: #64748b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.step.active .step-number {
    background: #dc2626;
    color: #fff;
}

.step-text {
    color: #64748b;
    font-weight: 500;
}

.step.active .step-text {
    color: #dc2626;
}

.journey-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

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

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #dc2626;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
}

/* Financial Solutions Section */
.financial-solutions {
    padding: 6rem 0;
    background: #f8fafc;
    position: relative;
}

.financial-solutions::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: #ef4444;
    clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 20% 100%);
    opacity: 1.0;
    z-index: 1;
}

.financial-solutions .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
}

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

.solution-category {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.solution-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.solution-category.featured {
    border-color: #dc2626;
    position: relative;
}

.solution-category.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #dc2626;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.category-header {
    margin-bottom: 2rem;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #16a34a;
}

.solution-category.featured .category-icon {
    color: #dc2626;
}

.category-header h3 {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 600;
}

.solution-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.solution-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.solution-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 600;
}

.solution-category.featured .solution-list li::before {
    color: #dc2626;
}

.solution-btn {
    background: transparent;
    color: #16a34a;
    border: 2px solid #16a34a;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.solution-btn:hover {
    background: #22c55e;
    color: #fff;
}

.solution-category.featured .solution-btn {
    background: #dc2626;
    color: #fff;
    border-color: #dc2626;
}

.solution-category.featured .solution-btn:hover {
    background: #b91c1c;
}

/* Member Benefits Section */
.member-benefits {
    padding: 6rem 0;
    background: #fff;
    position: relative;
}

.member-benefits::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 25%;
    height: 40%;
    background: #22c55e;
    clip-path: polygon(60% 0%, 100% 0%, 100% 100%, 40% 100%);
    opacity: 1.0;
    z-index: 1;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.benefit-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 2rem;
    color: #16a34a;
    flex-shrink: 0;
}

.benefit-card h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.benefit-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.benefits-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.benefits-subtitle {
    font-size: 1.2rem;
    color: #dc2626;
    margin-bottom: 2rem;
    font-weight: 500;
}

.benefit-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon {
    font-size: 1.5rem;
    color: #16a34a;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.highlight-item h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.highlight-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .dreams-content,
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .dreams-features {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .benefit-cards {
        order: 2;
    }
    
    .benefits-text {
        order: 1;
    }
}
/* Content Text Cards */
.content-text-card {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    position: relative;
    z-index: 3;
}

.content-text-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #1e293b;
}

.content-text-card p {
    margin-bottom: 1.5rem;
    color: #64748b;
    line-height: 1.7;
}

.about-content-card {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    position: relative;
    z-index: 3;
}

.about-content-card h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.about-content-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-content-card .vision-mission {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-content-card .vm-item h3 {
    color: #dc2626;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.about-content-card .vm-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Active Nav Link */
.nav-link.active {
    color: #4CAF50;
    font-weight: 600;
}

/* Quick Links Section */
.quick-links-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.quick-links-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quick-link-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.quick-link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.quick-link-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.quick-link-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.quick-link-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Social Section in Contact */
.social-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.social-section h4 {
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-links-large .social-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #1a1a2e;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-links-large .social-link:hover {
    background: #4CAF50;
    color: white;
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
}

/* Social Media Icons Styling */
.social-links .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links .social-link:hover {
    background: #4CAF50;
    transform: translateY(-3px);
}

.social-links .social-link svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.social-links-large .social-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-links-large .social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}
