/* ===== RESET & BASE STYLES ===== */
:root {
    --primary-blue: #0b3c5d;
    --secondary-blue: #1e88e5;
    --accent-orange: #ff9800;
    --accent-gold: #ffca28;
    --dark-bg: #06263d;
    --light-bg: #f6f8fb;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e1e5eb;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;

}

section {
    padding: 80px 0;
}

.section-light {
    background: var(--white);
}

.section-dark {
    background: linear-gradient(135deg, var(--dark-bg), var(--primary-blue));
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: inherit;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-orange);
}

.section-subtitle {
    font-size: 1.1rem;
    color: inherit;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== HEADER STYLES ===== */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.header-social a {
    color: var(--white);
    margin-left: 15px;
    transition: color 0.3s;
}

.header-social a:hover {
    color: var(--accent-gold);
}

.main-nav {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.nav-brand .logo {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.nav-brand img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.brand-text h1 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin: 0;
    font-weight: 700;
}

.brand-text p {
    font-size: 0.85rem;
    color: var(--secondary-blue);
    margin: 0;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    gap: 5px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
    background: var(--light-bg);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-nav {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
    color: var(--text-dark);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #0b3c5d 0%, #1e88e5 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #ff9800, #ffca28);
    color: #333;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
    background: linear-gradient(135deg, #ff8f00, #ffb300);
}

.btn-outline {
    background: transparent;
    border-color: white;
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffca28;
    margin-bottom: 5px;
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* ===== CARDS GRID ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
    text-align: center;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-blue), #42a5f5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--white);
}

.card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== PROCESS FLOW ===== */
.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
}

.process-step {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    width: 180px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.process-step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff9800, #ffca28);
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 15px;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 2rem;
    color: #ffca28;
    margin-bottom: 15px;
    height: 60px;
}

.process-step h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
}

.process-arrow {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 80px 0;
    background: var(--white);
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.features-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-orange);
}

.features-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== 4 COLUMN FEATURE CARDS ===== */
.features-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card-4 {
    background: var(--white);
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card-4:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-blue);
}

.feature-icon-4 {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-blue), #42a5f5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
}

.feature-card-4 h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
}

.feature-card-4 p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== RESPONSIVE ADJUSTMENTS FOR 4 COLUMNS ===== */
@media (max-width: 1200px) {
    .features-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .feature-card-4 {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .features-grid-4 {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-card-4 {
        padding: 25px;
    }

    .features-header h2 {
        font-size: 2rem;
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #0b3c5d, #1e88e5);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-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 1000 100" preserveAspectRatio="none"><path d="M0,100 L250,50 L500,100 L750,50 L1000,100 L1000,0 L0,0 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
    opacity: 0.1;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.5;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff9800, #ffca28);
    color: #333;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
    margin-bottom: 30px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 152, 0, 0.6);
    background: linear-gradient(135deg, #ff8f00, #ffb300);
}

.btn-cta i {
    font-size: 1.4rem;
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-top: 20px;
    flex-wrap: wrap;
}

.cta-note-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-note-separator {
    color: rgba(255, 255, 255, 0.5);
}

.cta-note i {
    color: #ffca28;
    font-size: 1rem;
}

/* ===== PROFESSIONAL FOOTER STYLES ===== */
.main-footer {
    background: linear-gradient(135deg, #0b3c5d, #06263d);
    color: #fff;
    padding: 60px 0 30px;
    border-top: 4px solid #ff9800;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Footer Logo Section */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    padding: 8px;
    border: 2px solid #1e88e5;
}

.logo-text h3 {
    font-size: 1.5rem;
    color: #fff;
    margin: 0 0 5px 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.tagline {
    color: #1e88e5;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

.company-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-icon:hover {
    background: #1e88e5;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
}

.social-icon:first-child:hover {
    background: #1877f2;
    /* Facebook blue */
}

/* Footer Headings */
.footer-heading {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 12px;
    position: relative;
    letter-spacing: 0.5px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ff9800;
    border-radius: 2px;
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 3px 0;
    position: relative;
}

.footer-menu a:hover {
    color: #ffca28;
    transform: translateX(5px);
}

.footer-menu a::before {
    content: '›';
    margin-right: 8px;
    color: #ff9800;
    font-weight: bold;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: #ff9800;
    font-size: 1.1rem;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.contact-detail {
    flex: 1;
}

.contact-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail a,
.contact-detail p {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

.contact-detail a:hover {
    color: #ffca28;
    text-decoration: underline;
}

/* Legal Links */
.legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.legal-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.legal-links li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.legal-links a:hover {
    color: #ffca28;
    padding-left: 5px;
}

.legal-links a::before {
    content: '•';
    color: #ff9800;
    margin-right: 10px;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.copyright p {
    margin: 0;
}

.disclaimer {
    color: #ffca28;
    font-size: 0.85rem;
    max-width: 600px;
    margin: 0 auto;
}

.disclaimer p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.disclaimer i {
    font-size: 1rem;
}

/* ===== LEGAL PAGES STYLES ===== */
.legal-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e9ecef;
}

.legal-header h1 {
    color: #0b3c5d;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-subtitle {
    color: #666;
    font-size: 1rem;
    font-style: italic;
}

.legal-content {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.legal-section-item {
    margin-bottom: 30px;
}

.legal-section-item h2 {
    color: #0b3c5d;
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.legal-section-item p {
    color: #444;
    line-height: 1.6;
    font-size: 1rem;
}

.legal-contact {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.legal-contact h3 {
    color: #0b3c5d;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

/* ===== RESPONSIVE DESIGN ===== */

/* RESPONSIVE FOR CTA */
@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .btn-cta {
        padding: 16px 35px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }

    .cta-note {
        flex-direction: column;
        gap: 10px;
    }

    .cta-note-separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .btn-cta {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* RESPONSIVE FOR FOOTER */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .footer-top {
        padding-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .main-footer {
        padding: 50px 0 25px;
    }

    .footer-heading {
        margin-bottom: 20px;
    }

    .footer-logo {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .company-desc {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
    }

    .contact-detail {
        text-align: center;
    }

    .legal-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .legal-links li {
        border: none;
        padding: 0;
    }

    .legal-links a {
        padding: 8px 15px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 4px;
    }

    .legal-links a::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        gap: 35px;
    }

    .footer-heading {
        text-align: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-menu {
        text-align: center;
    }

    .footer-menu a:hover {
        transform: none;
    }

    .legal-links {
        gap: 10px;
    }

    .legal-links a {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .footer-bottom-content {
        gap: 10px;
    }

    .copyright,
    .disclaimer {
        font-size: 0.85rem;
    }
}

/* GENERAL RESPONSIVE */
@media (max-width: 1100px) {
    .nav-menu {
        gap: 0;
    }

    .nav-link {
        padding: 10px 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 900px) {
    .header-top .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .header-contact span {
        margin: 0 10px;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .nav-menu {
        order: 3;
        width: 100%;
        margin-top: 20px;
        justify-content: space-between;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 8px 12px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-section .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        max-width: 80%;
    }

    .process-flow {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .stat-number {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .process-step {
        width: 100%;
        max-width: 300px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    /* Responsive for legal pages */
    .legal-section {
        padding: 60px 0;
    }

    .legal-header h1 {
        font-size: 2rem;
    }

    .legal-content {
        padding: 30px 20px;
    }

    .legal-section-item h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

/* ===== MOBILE NAV FIX ===== */
@media (max-width: 900px) {

    .nav-container {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-menu {
        display: none;
        /* HIDE by default */
        flex-direction: column;
        width: 100%;
        background: var(--white);
        border-radius: 10px;
        box-shadow: var(--shadow);
        padding: 10px 0;
    }

    .nav-menu.active {
        display: flex;
        /* SHOW when toggled */
    }

    .nav-link {
        justify-content: center;
        padding: 14px;
        font-size: 1rem;
    }

    .nav-actions {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 8px;
    }
}




/* ===== BLOGS SECTION ===== */
.blogs-section {
    padding: 80px 0;
    background: #f8fafc;
}

.blog-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.blog-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    width: 100%;
    padding: 10px 2px;
}

.blog-slider::-webkit-scrollbar {
    display: none;
}

.blog-card {
    min-width: 350px;
    max-width: 350px;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #e2e8f0;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-card-content h3 {
    font-size: 22px;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 700;
}

.blog-card-content p {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 18px;
    flex-grow: 1;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.read-more-btn:hover {
    color: #1d4ed8;
    gap: 12px;
}

.blog-nav {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border: none;
    outline: none;
    background: #1e293b;
    color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    padding: 0;
}

.blog-nav i {
    color: #ffffff;
    font-size: 16px;
    line-height: 1;
}

.blog-nav:hover {
    background: #2563eb;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .blog-card {
        min-width: 280px;
        max-width: 280px;
    }

    .blog-card-image {
        height: 180px;
    }

    .blog-card-content h3 {
        font-size: 18px;
    }

    .blog-nav {
        display: none;
    }
}


/* ===============================
   BLOG LISTING PAGE
================================= */
.blog-listing-page {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef4ff 100%);
}

.blog-page-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
}

.blog-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.12);
    color: #2563eb;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.blog-page-header h1 {
    font-size: 42px;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.blog-page-header p {
    font-size: 17px;
    color: #475569;
    line-height: 1.8;
}

.blog-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-list-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    transition: all 0.35s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.blog-list-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
}

.blog-list-image {
    height: 230px;
    overflow: hidden;
    background: #e2e8f0;
}

.blog-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.blog-list-card:hover .blog-list-image img {
    transform: scale(1.06);
}

.blog-list-content {
    padding: 24px;
}

.blog-meta-top {
    margin-bottom: 14px;
}

.blog-meta-top span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.blog-list-content h3 {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.4;
}

.blog-list-content h3 a {
    text-decoration: none;
    color: #0f172a;
    transition: color 0.3s ease;
}

.blog-list-content h3 a:hover {
    color: #2563eb;
}

.blog-list-content p {
    color: #475569;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 22px;
}

.blog-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}

.blog-read-btn:hover {
    color: #1d4ed8;
    gap: 14px;
}

.no-blog-found {
    grid-column: 1 / -1;
    background: #fff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.no-blog-found i {
    font-size: 42px;
    color: #2563eb;
    margin-bottom: 18px;
}

.no-blog-found h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #0f172a;
}

.no-blog-found p {
    color: #64748b;
    font-size: 16px;
}

/* ===============================
   BLOG DETAILS PAGE
================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

/* ===============================
   BLOG DETAILS PAGE PREMIUM MODERN
================================= */
.blog-details-page {
    position: relative;
    padding: 90px 0;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 30%),
        radial-gradient(circle at bottom right, rgba(14, 165, 233, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}

.blog-details-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    z-index: 0;
}

.blog-details-bg-shape.shape-one {
    width: 220px;
    height: 220px;
    top: 80px;
    left: -60px;
    background: rgba(37, 99, 235, 0.15);
}

.blog-details-bg-shape.shape-two {
    width: 280px;
    height: 280px;
    bottom: 40px;
    right: -80px;
    background: rgba(14, 165, 233, 0.14);
}

.blog-details-wrap {
    position: relative;
    z-index: 2;
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 36px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.10);
    border: 1px solid rgba(226, 232, 240, 0.85);
    overflow: hidden;
}

.blog-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 24px;
    color: #64748b;
    min-width: 0;
    overflow: hidden;
}

.blog-breadcrumb a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.blog-breadcrumb a:hover {
    text-decoration: underline;
}

.blog-breadcrumb .separator {
    color: #94a3b8;
    flex-shrink: 0;
}

.blog-breadcrumb .current-breadcrumb {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
}

.single-blog-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(37, 99, 235, 0.12));
    color: #0369a1;
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    border: 1px solid rgba(14, 165, 233, 0.15);
}

.blog-details-header h1 {
    font-size: 42px;
    line-height: 1.22;
    color: #0f172a;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.blog-short-description {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 24px;
    max-width: 820px;
}

.blog-details-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    margin-bottom: 30px;
    padding: 18px 20px;
    background: linear-gradient(180deg, #f8fbff 0%, #f8fafc 100%);
    border-radius: 18px;
    border: 1px solid #e2e8f0;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #475569;
    font-size: 15px;
    font-weight: 600;
}

.meta-item i {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.10);
    color: #2563eb;
    font-size: 13px;
}

.blog-featured-image {
    width: 100%;
    height: auto;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 34px;
    background: #e2e8f0;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.blog-details-content {
    color: #334155;
    font-size: 17px;
    line-height: 1.95;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
    overflow-x: hidden;
}

.blog-details-content h1,
.blog-details-content h2,
.blog-details-content h3,
.blog-details-content h4,
.blog-details-content h5,
.blog-details-content h6 {
    color: #0f172a;
    margin-top: 30px;
    margin-bottom: 14px;
    line-height: 1.4;
    font-weight: 800;
}

.blog-details-content p {
    margin-bottom: 18px;
}

.blog-details-content img,
.blog-details-content iframe,
.blog-details-content video,
.blog-details-content canvas {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    margin: 24px 0;
    display: block;
}

.blog-details-content ul,
.blog-details-content ol {
    padding-left: 22px;
    margin-bottom: 18px;
}

.blog-details-content li {
    margin-bottom: 8px;
}

.blog-details-content a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.blog-details-content a:hover {
    text-decoration: underline;
}

.blog-details-content blockquote {
    border-left: 4px solid #2563eb;
    background: linear-gradient(180deg, #eff6ff 0%, #f8fbff 100%);
    padding: 20px 22px;
    border-radius: 14px;
    margin: 26px 0;
    color: #1e3a8a;
    font-style: italic;
}

.blog-details-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    display: block;
    overflow-x: auto;
    max-width: 100%;
    white-space: nowrap;
    border-radius: 12px;
}

.blog-details-content table th,
.blog-details-content table td {
    border: 1px solid #e2e8f0;
    padding: 12px 14px;
    text-align: left;
}

.blog-details-content table th {
    background: #f8fafc;
    color: #0f172a;
}

.blog-details-content pre,
.blog-details-content code {
    max-width: 100%;
    white-space: pre-wrap;
    word-break: break-word;
}

.blog-share-box {
    margin-top: 36px;
    padding: 24px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
}

.blog-share-box h4 {
    font-size: 18px;
    color: #0f172a;
    margin-bottom: 16px;
    font-weight: 700;
}

.blog-share-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.share-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.share-btn:hover {
    transform: translateY(-3px) scale(1.04);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #111827;
}

.share-btn.linkedin {
    background: #0a66c2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.blog-author-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 28px;
    padding: 24px;
    background: linear-gradient(135deg, #eff6ff, #f8fafc);
    border: 1px solid #dbeafe;
    border-radius: 20px;
}

.author-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}

.author-info h4 {
    margin: 0 0 8px;
    font-size: 20px;
    color: #0f172a;
    font-weight: 800;
}

.author-info p {
    margin: 0;
    color: #475569;
    line-height: 1.8;
    font-size: 15px;
}

.blog-details-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.back-blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.24);
}

.back-blog-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.28);
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 992px) {
    .blog-details-wrap {
        max-width: 100%;
        padding: 28px;
    }

    .blog-details-header h1 {
        font-size: 34px;
    }

    .blog-featured-image {
        height: auto;
    }
}

@media (max-width: 768px) {
    .blog-details-page {
        padding: 55px 0;
    }
  
    .blog-details-wrap {
        padding: 22px;
        border-radius: 20px;
    }

    .blog-breadcrumb {
        font-size: 13px;
        gap: 6px;
    }

    .blog-details-header h1 {
        font-size: 28px;
        line-height: 1.35;
    }

    .blog-short-description {
        font-size: 15px;
    }

    .blog-details-meta {
        gap: 12px;
        padding: 15px;
    }

    .meta-item {
        font-size: 14px;
    }

    .blog-featured-image {
        height: auto;
        border-radius: 16px;
    }

    .blog-details-content {
        font-size: 16px;
        line-height: 1.85;
    }
    


    .blog-author-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .back-blog-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .blog-breadcrumb {
        font-size: 12px;
        gap: 5px;
    }
    .blog-details-wrap {
        padding: 16px;
    }

    .single-blog-badge {
        font-size: 12px;
        padding: 7px 14px;
    }

    .blog-details-header h1 {
        font-size: 23px;
    }

    .blog-details-meta {
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
    }

    .blog-featured-image {
        height: auto;
    }

    .blog-details-content {
        font-size: 15px;
    }
    

    .blog-share-box,
    .blog-author-box {
        padding: 18px;
    }

    .back-blog-btn {
        font-size: 14px;
        padding: 12px 18px;
    }
}
