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

body {
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
}

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

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: auto;
}

.hero-banner {
    width: 100%;
    height: auto;
    display: block;
}

/* Trust Badges */
.trust-badges {
    padding: 40px 20px;
    background: #f8f9fa;
}

.trust-badges .container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    background: white;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .trust-badges {
        padding: 30px 15px;
    }
    
    .badge {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

/* Services */
.services {
    padding: 100px 20px;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1E3A8A;
}

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

/* Products Section (NEW) */
.products-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.products-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1E3A8A;
}

.products-main-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-main-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.product-main-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-main-content {
    padding: 40px;
}

.product-main-content h3 {
    color: #1E3A8A;
    font-size: 2rem;
    margin-bottom: 15px;
}

.product-main-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.8;
}

.btn-product {
    display: inline-block;
    background: #D4AF37;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-product:hover {
    background: #b8941f;
    transform: translateX(5px);
}

/* Career Banner (NEW) */
.career-banner {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1E3A8A 0%, #50C878 100%);
    color: white;
}

.career-banner-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.career-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.career-banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-career {
    display: inline-block;
    background: white;
    color: #1E3A8A;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-career:hover {
    background: #D4AF37;
    color: white;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .products-main-grid {
        grid-template-columns: 1fr;
    }
    
    .career-banner h2 {
        font-size: 2rem;
    }
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card h3 {
    color: #D4AF37;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
}

.service-link {
    display: inline-block;
    color: #1E3A8A;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.service-link:hover {
    color: #50C878;
}

/* Why Choose */
.why-choose {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1E3A8A 0%, #50C878 100%);
    color: white;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

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

.feature {
    text-align: center;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Process */
.process {
    padding: 100px 20px;
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1E3A8A;
}

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

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37, #50C878);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    color: #1E3A8A;
    margin-bottom: 10px;
}

/* Contact */
.contact {
    padding: 100px 20px;
    background: #f8f9fa;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1E3A8A;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.info-item h3 {
    color: #D4AF37;
    margin-bottom: 15px;
}

.info-item a {
    color: #50C878;
    text-decoration: none;
    font-weight: 600;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Language Menu */
.language-menu {
    padding: 8px 15px;
    display: flex;
    justify-content: flex-end;
    background: white;
}

.language-toggle {
    background: white;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.language-toggle:hover {
    background: #D4AF37;
    color: white;
}

.language-toggle .arrow {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.language-toggle.active .arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 40px;
    right: 15px;
    background: white;
    border: 1px solid #D4AF37;
    border-radius: 8px;
    overflow: hidden;
    display: none;
    min-width: 140px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1001;
}

.language-dropdown.show {
    display: block;
}

.language-dropdown button {
    width: 100%;
    padding: 10px 15px;
    border: none;
    background: white;
    color: #333;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 500;
    font-size: 0.85rem;
}

.language-dropdown button:hover {
    background: #f8f9fa;
    color: #D4AF37;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .language-menu {
        padding: 5px 10px;
    }
    
    .language-toggle {
        padding: 5px 12px;
        font-size: 0.8rem;
    }
}
    min-width: 150px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.language-dropdown.show {
    display: block;
}

.language-dropdown button {
    width: 100%;
    padding: 12px 20px;
    border: none;
    background: white;
    color: #333;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 500;
}

.language-dropdown button:hover {
    background: #f8f9fa;
    color: #D4AF37;
}

.language-dropdown button:not(:last-child) {
    border-bottom: 1px solid #eee;
}

/* Responsive */
@media (max-width: 768px) {
    /* Hero */
    .hero {
        height: auto;
        min-height: 300px;
    }
    
    .hero-banner {
        object-position: center;
    }
    
    /* Trust Badges */
    .trust-badges .container {
        gap: 15px;
    }
    
    .badge {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
    
    /* Services */
    .services {
        padding: 60px 15px;
    }
    
    .services h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    /* Why Choose */
    .why-choose {
        padding: 60px 15px;
    }
    
    .why-choose h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature h3 {
        font-size: 1.3rem;
    }
    
    /* Process */
    .process {
        padding: 60px 15px;
    }
    
    .process h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    /* Contact */
    .contact {
        padding: 60px 15px;
    }
    
    .contact h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* WhatsApp Float */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero {
        min-height: 250px;
    }
    
    .badge {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .services h2, .why-choose h2, .process h2, .contact h2 {
        font-size: 1.5rem;
    }
    
    .service-card, .feature, .step {
        padding: 20px 15px;
    }
    
    .whatsapp-float {
        padding: 10px 20px;
        font-size: 0.85rem;
        bottom: 15px;
        right: 15px;
    }
}

/* Featured Products Section */
.featured-products {
    padding: 80px 20px;
    background: white;
}

.featured-products h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: #2c3e50;
}

.product-card p {
    font-size: 15px;
    color: #666;
    margin: 0 20px 20px;
    line-height: 1.6;
}

.product-card .btn-link {
    display: inline-block;
    margin: 0 20px 20px;
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-card .btn-link:hover {
    color: #c0392b;
}

.btn-view-all {
    display: inline-block;
    padding: 15px 40px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-view-all:hover {
    background: #c0392b;
}


/* Career Page Styles */
.career-hero {
    background: linear-gradient(135deg, #1E3A8A 0%, #50C878 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.career-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.career-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.career-split {
    padding: 80px 20px;
    background: #f8f9fa;
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.leader-section {
    position: relative;
}

.leader-section img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.leader-info {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-top: -30px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.leader-info h3 {
    color: #1E3A8A;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.leader-info p {
    color: #666;
    margin: 5px 0;
}

.career-tracks h2 {
    color: #1E3A8A;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.track-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 5px solid #D4AF37;
}

.track-card.featured {
    background: linear-gradient(135deg, #1E3A8A 0%, #50C878 100%);
    color: white;
    border-left: 5px solid #D4AF37;
}

.track-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.track-card.featured h3 {
    color: white;
}

.income {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 20px;
}

.track-card.featured .income {
    color: #FFD700;
}

.track-card ul {
    list-style: none;
    padding: 0;
}

.track-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.track-card.featured ul li {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.whatsapp-btn {
    display: block;
    background: #25D366;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 30px;
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    background: #1da851;
    transform: scale(1.05);
}

.millionaire-program {
    padding: 80px 20px;
    background: white;
}

.millionaire-program h2 {
    color: #1E3A8A;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
}

.program-subtitle {
    text-align: center;
    color: #D4AF37;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 50px;
}

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

.program-card {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.program-card h3 {
    color: #1E3A8A;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.highlight-box {
    background: linear-gradient(135deg, #D4AF37, #50C878);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    text-align: center;
}

.highlight-box.secondary {
    background: linear-gradient(135deg, #1E3A8A, #50C878);
}

.highlight-box p {
    margin: 8px 0;
    font-weight: 600;
}

.program-card ul {
    list-style: none;
    padding: 0;
}

.program-card ul li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid #ddd;
}

.program-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #50C878;
    font-weight: bold;
}

.why-join {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1E3A8A 0%, #50C878 100%);
    color: white;
}

.why-join h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.benefit-item {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.benefit-item h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #FFD700;
}

.cta-section {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.cta-section h2 {
    color: #1E3A8A;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #1da851;
    transform: scale(1.05);
}

.contact-info {
    margin-top: 30px;
    color: #666;
    font-size: 1.1rem;
}

/* Mobile Responsive - Career Page */
@media (max-width: 768px) {
    .career-hero h1 {
        font-size: 2rem;
    }
    
    .split-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .career-tracks h2 {
        font-size: 2rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
}

/* Products Page Styles */
.products-hero {
    background: linear-gradient(135deg, #1E3A8A 0%, #50C878 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.products-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.products-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.products-section {
    padding: 80px 20px;
    background: white;
}

.products-section.alt-bg {
    background: #f8f9fa;
}

.products-section h2 {
    color: #1E3A8A;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 4px solid #D4AF37;
    position: relative;
}

.product-card.featured {
    border-top: 4px solid #50C878;
    background: linear-gradient(135deg, rgba(30,58,138,0.05) 0%, rgba(80,200,120,0.05) 100%);
}

.product-card .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #50C878;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-card h3 {
    color: #1E3A8A;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.product-type {
    color: #D4AF37;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.product-details {
    margin: 25px 0;
}

.detail-item {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.detail-item strong {
    display: block;
    color: #1E3A8A;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.detail-item span {
    color: #666;
    font-size: 0.95rem;
}

.product-btn {
    display: block;
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    margin-top: 25px;
    transition: all 0.3s;
}

.product-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.products-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1E3A8A 0%, #50C878 100%);
    color: white;
    text-align: center;
}

.products-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.products-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Mobile Responsive - Products Page */
@media (max-width: 768px) {
    .products-hero h1 {
        font-size: 2rem;
    }
    
    .products-section h2 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card h3 {
        font-size: 1.5rem;
    }
}

/* Corporate Page Styles */
.corporate-hero {
    background: linear-gradient(135deg, #1E3A8A 0%, #50C878 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.corporate-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.corporate-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.corporate-section {
    padding: 80px 20px;
    background: white;
}

.corporate-section.alt-bg {
    background: #f8f9fa;
}

.corporate-section h2 {
    color: #1E3A8A;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.corporate-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 1000px;
    margin: 0 auto;
    border-left: 5px solid #D4AF37;
}

.corporate-card.featured {
    border-left: 5px solid #50C878;
    background: linear-gradient(135deg, rgba(30,58,138,0.03) 0%, rgba(80,200,120,0.03) 100%);
}

.corporate-card h3 {
    color: #1E3A8A;
    font-size: 2rem;
    margin-bottom: 15px;
}

.corporate-desc {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 35px 0;
}

.benefit-item h4 {
    color: #1E3A8A;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.corporate-btn {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 25px;
    transition: all 0.3s;
}

.corporate-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.corporate-why {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1E3A8A 0%, #50C878 100%);
    color: white;
}

.corporate-why h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-item {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.why-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #FFD700;
}

.why-item p {
    font-size: 1rem;
    opacity: 0.95;
}

.corporate-cta {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.corporate-cta h2 {
    color: #1E3A8A;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.corporate-cta p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Mobile Responsive - Corporate Page */
@media (max-width: 768px) {
    .corporate-hero h1 {
        font-size: 2rem;
    }
    
    .corporate-section h2 {
        font-size: 2rem;
    }
    
    .corporate-card {
        padding: 25px;
    }
    
    .corporate-card h3 {
        font-size: 1.5rem;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
}
/* Global Clean Design - Products, Corporate, Career Pages */

/* Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

/* Containers */
.container-narrow {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Minimal */
.hero-minimal {
    padding: 120px 40px 80px;
    text-align: center;
    background: #fff;
}

.hero-minimal h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1E3A8A;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Sections */
.section-clean {
    padding: 100px 40px;
}

.section-clean.bg-light {
    background: #fafafa;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 60px;
    text-align: center;
}

/* Grid */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Cards Minimal */
.card-minimal {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
}

.card-minimal:hover {
    border-color: #1E3A8A;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.card-minimal h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.card-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin: 0 0 30px;
    font-weight: 400;
}

.card-details {
    margin: 30px 0;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 0.9rem;
    color: #999;
    font-weight: 500;
}

.detail-value {
    font-size: 0.9rem;
    color: #1a1a1a;
    font-weight: 500;
    text-align: right;
}

/* Featured Card */
.card-featured {
    border-color: #50C878;
    background: linear-gradient(135deg, rgba(80,200,120,0.02) 0%, rgba(80,200,120,0.05) 100%);
}

.badge-minimal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #50C878;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Buttons */
.btn-minimal {
    display: inline-block;
    padding: 12px 28px;
    background: #1E3A8A;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-minimal:hover {
    background: #152a6b;
    transform: translateY(-1px);
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1da851;
    transform: translateY(-2px);
}

/* CTA Minimal */
.cta-minimal {
    padding: 100px 40px;
    text-align: center;
    background: #fff;
}

.cta-minimal h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px;
}

.cta-minimal p {
    font-size: 1.15rem;
    color: #666;
    margin: 0 0 40px;
}

/* Footer Minimal */
.footer-minimal {
    padding: 60px 40px;
    background: #fafafa;
    text-align: center;
    border-top: 1px solid #e5e5e5;
}

.footer-minimal p {
    color: #666;
    font-size: 0.9rem;
    margin: 0 0 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.footer-links a {
    color: #1E3A8A;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #50C878;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container-narrow {
        padding: 0 20px;
    }
    
    .hero-minimal {
        padding: 80px 20px 60px;
    }
    
    .hero-minimal h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-clean {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 40px;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card-minimal {
        padding: 30px;
    }
    
    .card-minimal h3 {
        font-size: 1.3rem;
    }
    
    .cta-minimal {
        padding: 60px 20px;
    }
    
    .cta-minimal h2 {
        font-size: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}


/* Corporate Page Specific Styles */
.card-corporate {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 50px;
    transition: all 0.3s ease;
}

.card-corporate:hover {
    border-color: #1E3A8A;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.card-corporate h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.benefit-box {
    padding: 25px;
    background: #fafafa;
    border-radius: 8px;
    transition: all 0.3s;
}

.benefit-box:hover {
    background: #f0f0f0;
}

.benefit-box h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.benefit-box p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .card-corporate {
        padding: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}


/* Career Page Specific Styles */
.split-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.career-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 40px;
}

.track-box {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    position: relative;
}

.track-box.featured {
    border-color: #50C878;
    background: linear-gradient(135deg, rgba(80,200,120,0.02) 0%, rgba(80,200,120,0.05) 100%);
}

.track-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 15px;
}

.track-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.track-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: #666;
}

.track-list li:last-child {
    border-bottom: none;
}

.track-list strong {
    color: #1a1a1a;
    font-weight: 600;
}

.leader-photo {
    position: sticky;
    top: 100px;
}

.leader-photo img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.leader-badge {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
    text-align: center;
}

.leader-badge h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1E3A8A;
    margin: 0 0 10px;
}

.leader-badge p {
    font-size: 0.95rem;
    color: #666;
    margin: 5px 0;
}

.income-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: #50C878;
    margin: 0 0 20px;
}

.program-highlight {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1E3A8A;
    margin: 0 0 30px;
    padding: 15px;
    background: rgba(30,58,138,0.05);
    border-radius: 8px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #D4AF37;
    font-weight: 600;
    margin: -40px 0 50px;
}

@media (max-width: 768px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .leader-photo {
        position: relative;
        top: 0;
    }
}


/* Auto-scrolling Image Carousel */
.carousel-section {
    padding: 0;
    overflow: hidden;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    animation: scroll 30s linear infinite;
}

.carousel-track img {
    height: 300px;
    width: auto;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 8px;
}

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

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

@media (max-width: 768px) {
    .carousel-track img {
        height: 200px;
    }
}
