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

:root {
    --primary-green: #16a34a;
    --light-green: #22c55e;
    --dark-green: #15803d;
    --bg-primary: #fafafa;
    --bg-secondary: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

body {
    font-family: 'Inter', 'Noto Sans Bengali', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
}

.bengali {
    font-family: 'Noto Sans Bengali', sans-serif;
}

/* Header & Top Bar Wrapper */
.fixed-top-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.top-bar {
    background: #0f172a;
    color: #cbd5e1;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.4rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.header {
    position: relative;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
}

.site-logo {
    height: 44px;
    width: auto;
    max-width: 260px;
    display: block;
    object-fit: contain;
}


.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: rgba(22, 163, 74, 0.1);
    color: var(--primary-green);
}

.header-cta {
    background: var(--primary-green);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.header-cta:hover {
    background: var(--dark-green);
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
}

/* Hero Section */
.hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.05), rgba(34, 197, 94, 0.1));
    border-radius: 0 0 0 100px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(22, 163, 74, 0.1);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(22, 163, 74, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.hero-feature i {
    color: var(--primary-green);
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.3);
}

.btn-secondary {
    color: var(--primary-green);
    padding: 1rem 2rem;
    border: 2px solid var(--primary-green);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
    height: 54px;
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: white;
}

/* Hero Visual - Grand HQ Building Showcase */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-hq-main-showcase {
    position: relative;
    width: 100%;
    max-width: 550px;
    background: #0f172a;
    border-radius: var(--radius-xl);
    padding: 10px;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.35), 0 0 25px rgba(22, 163, 74, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 5;
    animation: float 6s ease-in-out infinite;
}

.hero-hq-main-showcase:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px -12px rgba(22, 163, 74, 0.4), 0 0 35px rgba(34, 197, 94, 0.4);
    border-color: var(--light-green);
}

.hero-hq-img-wrapper {
    position: relative;
    width: 100%;
    height: 440px;
    border-radius: calc(var(--radius-xl) - 6px);
    overflow: hidden;
}

.hero-hq-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-hq-main-showcase:hover .hero-hq-img {
    transform: scale(1.06);
}

.hero-hq-badge-pill {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.6);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-hq-zoom-hint {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 3;
    transition: all 0.3s ease;
}

.hero-hq-main-showcase:hover .hero-hq-zoom-hint {
    background: var(--primary-green);
}

.hero-hq-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.25rem;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 65%, transparent 100%);
    color: white;
    z-index: 2;
    text-align: left;
}

.hero-hq-caption h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.hero-hq-caption p {
    font-size: 0.9rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    animation: float 4s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 5%;
    right: -25px;
    z-index: 10;
    animation-delay: -1s;
}

.floating-card.card-2 {
    bottom: -15px;
    left: -25px;
    z-index: 10;
    animation-delay: -2s;
}

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

/* Trust Section */
.trust-section {
    padding: 3rem 2rem;
    background: white;
    border-bottom: 1px solid var(--border-color);
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.trust-stat {
    padding: 1.5rem;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    display: block;
    margin-bottom: 0.5rem;
}

.trust-label {
    color: var(--text-secondary);
    font-weight: 500;
}

/* How It Works */
.how-it-works {
    padding: 6rem 2rem;
    background: var(--bg-primary);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.step-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Features Showcase */
.features-showcase {
    padding: 6rem 2rem;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-showcase {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: var(--radius-xl);
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-showcase:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.feature-showcase-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.feature-showcase-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-showcase-content p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    position: relative;
    overflow: hidden;
}

.pricing-section::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"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.pricing-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 3rem;
    margin-top: 2rem;
}

.pricing-highlight {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.pricing-subtext {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Four equal columns for four features */
    gap: 1rem;
    margin-top: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.pricing-feature i {
    color: rgba(255, 255, 255, 0.8);
}

        /* Calculator Styles */
        .calculator-card {
            background: rgba(255, 255, 255, 0.95);
            color: #333;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .calculator-title {
            color: var(--dark-green);
            font-size: 1.8rem;
            margin-bottom: 2rem;
        }

        .input-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .input-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #333;
        }

        .input-field {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: var(--radius-lg);
            font-size: 1.1rem;
            background: white;
            transition: all 0.3s ease;
        }

        .input-field:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 0 3px rgba(0, 184, 148, 0.1);
        }

        .currency-symbol {
            position: relative;
        }

        .currency-symbol::before {
            content: '৳';
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
            font-weight: 600;
        }

        .currency-symbol .input-field {
            padding-right: 2.5rem;
        }

        .result-section {
            margin-top: 2rem;
            padding: 1.5rem;
            background: rgba(0, 184, 148, 0.1);
            border-radius: var(--radius-lg);
            border-left: 4px solid var(--primary-green);
        }

        .result-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            padding: 0.5rem 0;
        }

        .result-row:last-child {
            margin-bottom: 0;
            padding-top: 1rem;
            border-top: 2px solid rgba(0, 184, 148, 0.2);
            font-weight: 700;
            font-size: 1.1rem;
        }

        .result-label {
            color: #555;
        }

        .result-value {
            font-weight: 600;
            color: var(--dark-green);
        }

        .total-value {
            color: var(--primary-green);
            font-size: 1.2rem;
        }

        .calculation-note {
            margin-top: 1rem;
            padding: 1rem;
            background: rgba(0, 184, 148, 0.05);
            border-radius: var(--radius-md);
            font-size: 0.9rem;
            color: #666;
            text-align: center;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .pricing-highlight {
                font-size: 2.5rem;
            }

            .pricing-features {
                grid-template-columns: 1fr;
            }

            .pricing-section {
                padding: 4rem 1rem;
            }

            .result-section{
                padding: 1rem;
            }
        }

        /* Animation */
        .animate-slide-up {
            animation: slideUp 0.6s ease-out;
        }

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

/* Agent CTA */
.agent-cta {
    padding: 6rem 2rem;
    background: var(--bg-primary);
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.cta-benefits i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

.cta-visual {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
}

.commission-highlight {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(34, 197, 94, 0.1));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(22, 163, 74, 0.2);
}

.commission-highlight h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.commission-highlight p {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-brand h3 {
    color: var(--light-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    color: var(--light-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--light-green);
}

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


/* NEW CLASS: Optimized Footer Logo */
.footer-logo {
    display: inline-block;
    margin-bottom: 0.5rem;
    line-height: 0;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.02);
}

.footer-logo svg {
    width: 220px;
    height: auto;
    max-width: 100%;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.footer-section h4 {
    color: var(--light-green);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a i {
    margin-right: 0.5rem;
    width: 16px;
    color: var(--accent-yellow);
}

.footer-section a:hover {
    color: var(--light-green);
}

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


/* CSS for Testimonials, Security & Live Activity Sections */

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #16a34a;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.2rem;
}

.testimonial-info p {
    color: #64748b;
    font-size: 0.9rem;
}

.testimonial-rating {
    margin-left: auto;
    color: #fbbf24;
    font-size: 0.9rem;
}

.testimonial-text {
    color: #0f172a;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-meta {
    color: #64748b;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: rgba(22, 163, 74, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
    font-size: 1.3rem;
}

.trust-text h4 {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.3rem;
}

.trust-text p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Security Section */
.security-section {
    padding: 6rem 2rem;
    background: white;
}

.security-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.security-card {
    padding: 3rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.05), rgba(34, 197, 94, 0.1));
    border: 1px solid rgba(22, 163, 74, 0.1);
}

.security-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.security-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.security-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.security-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(22, 163, 74, 0.1);
}

.security-feature-icon {
    width: 40px;
    height: 40px;
    background: #16a34a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.security-feature-text h4 {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.3rem;
}

.security-feature-text p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.compliance-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.compliance-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.compliance-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.compliance-card h4 {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.compliance-card p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.compliance-badge {
    display: inline-block;
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(22, 163, 74, 0.2);
}

/* Live Activity Section */
.live-activity-section {
    padding: 6rem 2rem;
    background: #fafafa;
}

.live-activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.activity-card {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.activity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.activity-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #16a34a;
    font-weight: 600;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #16a34a;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.activity-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #16a34a;
    margin-bottom: 0.5rem;
}

.activity-content p {
    color: #64748b;
    font-weight: 500;
}

.recent-transactions {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.recent-transactions h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.transaction-feed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.transaction-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.transaction-amount {
    font-weight: 700;
    color: #0f172a;
    font-size: 1.1rem;
}

.transaction-route {
    color: #64748b;
    font-size: 0.9rem;
}

.transaction-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.transaction-status i {
    color: #16a34a;
}

/* Section Header Styles */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Glass morphism effect */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

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


/* Services Overview Section */
.services-overview {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.services-overview::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"><defs><pattern id="service-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(22,163,74,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23service-pattern)"/></svg>');
}

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

.service-highlight {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(22, 163, 74, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-highlight:hover::before {
    left: 100%;
}

.service-highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(22, 163, 74, 0.15);
    border-color: var(--primary-green);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-highlight:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
}

.service-highlight h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-highlight p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Mobile responsive for services */
@media (max-width: 768px) {
    /* Header & Nav Mobile Fix */
    .top-bar-container {
        padding: 0.35rem 0.5rem !important;
        font-size: 0.75rem !important;
        justify-content: center !important;
        text-align: center;
    }

    .helpline-email {
        display: none !important;
    }

    .header {
        padding: 0;
    }

    .nav {
        padding: 0.4rem 0.75rem !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }

    .site-logo {
        height: 32px !important;
        width: auto !important;
        max-width: 165px !important;
        object-fit: contain !important;
    }

    /* Hide desktop nav links */
    .nav-links {
        display: none !important;
    }

    .header-cta {
        padding: 0.4rem 0.75rem !important;
        font-size: 0.78rem !important;
        white-space: nowrap !important;
        border-radius: var(--radius-md) !important;
        flex-shrink: 0;
    }

    /* Hero Section Spacing for Fixed Header */
    .hero {
        padding: 7rem 1rem 3rem !important;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        order: 1; /* Ensure text comes first */
        margin: 0 auto;
    }

    .hero-visual {
        order: 2;
        margin: 0 auto;
        transform: scale(0.9); /* Slightly smaller on mobile */
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.25;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-features {
        justify-content: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    /* Grids & Layouts - Unified Single Column */
    .trust-stats,
    .steps-grid,
    .features-grid,
    .services-grid,
    .testimonials-grid,
    .security-grid,
    .live-activity-grid,
    .pricing-features,
    .pricing-grid,
    .footer-grid,
    .cta-container,
    .compliance-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    /* General Section Padding */
    .trust-section,
    .services-overview,
    .how-it-works,
    .features-showcase,
    .testimonials-section,
    .security-section,
    .live-activity-section,
    .pricing-section,
    .agent-cta,
    .footer {
        padding: 3rem 1rem;
    }

    /* Typography Adjustments */
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* Card Adjustments */
    .feature-showcase,
    .service-highlight,
    .step-card,
    .testimonial-card,
    .security-card,
    .activity-card,
    .pricing-card,
    .calculator-card,
    .compliance-card {
        padding: 1.5rem;
    }

    /* Specific Elements */
    .feature-showcase {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .testimonial-rating {
        margin: 0.5rem 0;
    }

    .security-feature {
        flex-direction: column; 
        text-align: center;
        align-items: center;
    }

    .security-header h3 {
        font-size: 1.5rem;
    }

    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .transaction-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .transaction-status {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {

    .testimonials-section,
    .security-section,
    .live-activity-section {
        padding: 3rem 0.75rem;
    }

    .testimonial-card,
    .security-card,
    .activity-card,
    .recent-transactions {
        padding: 1rem;
    }

    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .testimonial-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .trust-indicator {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .security-feature {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .security-feature-icon {
        margin: 0 auto;
    }
}

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

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

/* Additional Modern Elements */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   Corporate Headquarters Building Showcase Styles
   ========================================================================== */

.hq-hero-floating-card {
    position: absolute;
    bottom: -20px;
    right: -30px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(34, 197, 94, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.hq-hero-floating-card:hover {
    transform: translateY(-5px) scale(1.03);
    border-color: var(--light-green);
    box-shadow: 0 15px 35px rgba(22, 163, 74, 0.4);
}

.hq-thumb-img {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: cover;
    border: 1.5px solid var(--light-green);
}

.hq-floating-text {
    display: flex;
    flex-direction: column;
}

.hq-floating-title {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
}

.hq-floating-sub {
    color: #94a3b8;
    font-size: 0.75rem;
}

/* About Section HQ Showcase Grid */
.about-corporate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    margin-top: 2rem;
}

.about-text-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.text-left-box {
    text-align: left;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-light);
}

.highlight-header {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

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

/* HQ Card Showcase Container */
.about-hq-column {
    display: flex;
}

.hq-card-container {
    width: 100%;
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
}

.hq-card-container:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(22, 163, 74, 0.25);
    border-color: rgba(34, 197, 94, 0.5);
}

.hq-image-box {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.hq-building-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.2, 1);
}

.hq-card-container:hover .hq-building-img {
    transform: scale(1.06);
}

.hq-badge-pill {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 0.4rem 0.9rem;
    border-radius: 30px;
    font-size: 0.825rem;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 3;
}

.live-dot-green {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: pulse-dot-anim 2s infinite;
}

@keyframes pulse-dot-anim {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hq-zoom-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
    transition: all 0.3s ease;
    z-index: 3;
}

.hq-card-container:hover .hq-zoom-overlay {
    background: var(--primary-green);
    opacity: 1;
}

.hq-info-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.25rem 1.25rem;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 70%, transparent 100%);
    color: white;
    z-index: 2;
}

.hq-info-banner h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
    letter-spacing: -0.3px;
}

.hq-info-banner p {
    font-size: 0.875rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hq-card-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 1rem 1.25rem;
    background: rgba(15, 23, 42, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    gap: 0.5rem;
}

.hq-stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #e2e8f0;
    font-weight: 500;
}

/* Lightbox Modal */
.hq-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(12px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hq-modal.active {
    display: flex;
    opacity: 1;
}

.hq-modal-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    background: #0f172a;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(34, 197, 94, 0.3);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.hq-modal.active .hq-modal-content {
    transform: scale(1);
}

.hq-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hq-modal-body {
    display: flex;
    flex-direction: column;
}

.hq-modal-img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    background: #020617;
}

.hq-modal-caption {
    padding: 1.5rem 2rem;
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.hq-modal-caption h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.hq-modal-caption p {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* Responsive adjustments for HQ section */
@media (max-width: 992px) {
    .about-corporate-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hq-image-box {
        height: 320px;
    }
}

@media (max-width: 576px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .hq-card-footer {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .hq-hero-floating-card {
        right: 0;
        bottom: -15px;
    }

    .hq-image-box {
        height: 260px;
    }
}