:root {
    --primary: #4f46e5;
    --primary-dark: #3730a3;
    --accent: #06b6d4;
    --text-dark: #111827;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border: #e5e7eb;
    --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    --radius: 18px;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: #fff;
    line-height: 1.6;
    padding-top: 10px;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.custom-navbar {
    padding: 16px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: 0.3s ease;
    z-index: 999;
}

.brand-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
}

.logo-dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: inline-block;
    border-radius: 50%;
    margin-right: 6px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 14px !important;
    transition: 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.btn-brand {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.25);
}

.btn-brand:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-brand {
    border: 1.5px solid var(--primary);
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-outline-brand:hover {
    background-color: var(--primary);
    color: var(--white);
}

.hero-section {
    background:
        radial-gradient(circle at top right, rgba(6, 182, 212, 0.18), transparent 30%),
        radial-gradient(circle at bottom left, rgba(79, 70, 229, 0.18), transparent 25%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.hero-badge,
.section-tag {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.hero-title {
    font-size: clamp(2.4rem, 4vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 18px;
}

.hero-text {
    color: var(--text-light);
    font-size: 1.08rem;
    max-width: 600px;
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.hero-stats h3 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.hero-stats p {
    color: var(--text-light);
    margin: 0;
}

.hero-card {
    background: var(--white);
    padding: 30px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(79, 70, 229, 0.08);
}

.hero-card h4 {
    font-weight: 700;
    margin-bottom: 12px;
}

.hero-card p {
    color: var(--text-light);
    margin-bottom: 18px;
}

.hero-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.hero-card ul li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.hero-card ul li i {
    color: var(--primary);
    margin-right: 10px;
}

.section-space {
    padding: 90px 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 50px;
}

.section-heading h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.section-heading p {
    color: var(--text-light);
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    height: 100%;
    transition: 0.35s ease;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(79, 70, 229, 0.15);
}

.service-card.large {
    min-height: 250px;
}

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(6, 182, 212, 0.12));
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.service-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.bg-light-soft {
    background-color: var(--bg-light);
}

.shadow-soft {
    box-shadow: var(--shadow);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-item i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 4px;
}

.feature-item h5 {
    margin-bottom: 6px;
    font-weight: 700;
}

.feature-item p {
    margin-bottom: 0;
    color: var(--text-light);
}

.testimonial-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    border: 1px solid var(--border);
    height: 100%;
}

.testimonial-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.testimonial-card h6 {
    margin-bottom: 4px;
    font-weight: 700;
}

.testimonial-card span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.cta-section {
    padding-bottom: 90px;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.22);
}

.cta-box h2 {
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-box p {
    margin-bottom: 0;
    opacity: 0.95;
}

.page-banner {
    padding: 110px 0 70px;
    background:
        radial-gradient(circle at top left, rgba(79, 70, 229, 0.15), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.page-banner h1 {
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.page-banner p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
}

.info-card,
.process-card,
.counter-box,
.contact-info-card,
.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    height: 100%;
}

.info-card h4,
.contact-info-card h3,
.form-card h3 {
    font-weight: 700;
    margin-bottom: 12px;
}

.info-card p,
.contact-info-card p,
.process-card p,
.counter-box p {
    color: var(--text-light);
    margin-bottom: 0;
}

.counter-box h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.process-card span {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 14px;
}

.process-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 24px;
}

.contact-info-item i {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.contact-info-item h6 {
    margin-bottom: 4px;
    font-weight: 700;
}

.form-control {
    border-radius: 14px;
    padding: 13px 16px;
    border: 1px solid var(--border);
    box-shadow: none !important;
}

.form-control:focus {
    border-color: var(--primary);
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-section {
    background: #0f172a;
    color: #cbd5e1;
    padding: 70px 0 20px;
}

.footer-brand {
    color: #fff;
    font-weight: 800;
    margin-bottom: 14px;
}

.footer-text {
    color: #cbd5e1;
    max-width: 340px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e1;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact li i {
    margin-right: 8px;
    color: #fff;
}

.footer-section h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 8px;
}

.footer-bottom p {
    margin: 0;
    color: #94a3b8;
}

hr {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 30px 0 20px;
}

.alert {
    border-radius: 14px;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        padding: 18px 0 8px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .section-space {
        padding: 70px 0;
    }

    .cta-box {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 78px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        gap: 18px;
    }

    .page-banner {
        padding: 90px 0 55px;
    }

    .section-heading h2,
    .page-banner h1 {
        line-height: 1.2;
    }
}
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.05);
}
.service-card,
.testimonial-card,
.info-card,
.process-card,
.form-card,
.contact-info-card {
    transition: all 0.35s ease;
}

.service-card:hover,
.testimonial-card:hover,
.info-card:hover,
.process-card:hover,
.form-card:hover,
.contact-info-card:hover {
    transform: translateY(-6px);
}

.service-card,
.testimonial-card,
.info-card,
.process-card,
.counter-box {
    opacity: 0;
    transform: translateY(30px);
}

.show-reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 0.7s ease;
}

.dropdown-menu {
    min-width: 240px;
}

.dropdown-item {
    padding: 10px 14px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary);
}

@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.service-detail-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow);
    text-align: center;
}

.service-detail-icon {
    font-size: 56px;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-detail-list {
    padding-left: 20px;
    margin-top: 20px;
}

.service-detail-list li {
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 1rem;
}

.service-detail-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
}

.service-detail-icon {
    font-size: 56px;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-detail-image {
    width: 100%;
    max-width: 430px;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    margin: 0 auto 24px;
}

.service-detail-list {
    padding-left: 20px;
    margin-top: 20px;
}

.service-detail-list li {
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 1rem;
}

@media (max-width: 991px) {
    .service-detail-image {
        max-width: 100%;
        height: 280px;
    }
}

@media (max-width: 767px) {
    .service-detail-image {
        height: 220px;
        border-radius: 16px;
    }
}

.featured-section,
.happy-clients-section {
    position: relative;
    overflow: hidden;
}

.logo-slider-wrap {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-slider-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scrollLogos 28s linear infinite;
}

.clients-slider-track {
    animation-duration: 32s;
}

.logo-slide {
    flex: 0 0 auto;
    width: 220px;
    padding: 10px 14px;
}

.logo-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 22px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
    transition: all 0.35s ease;
}

.logo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(79, 70, 229, 0.15);
}

.brand-logo-img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: all 0.35s ease;
}

.logo-card:hover .brand-logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 991px) {
    .logo-slide {
        width: 190px;
    }

    .logo-card {
        height: 110px;
    }
}

@media (max-width: 767px) {
    .logo-slide {
        width: 160px;
        padding: 8px 10px;
    }

    .logo-card {
        height: 95px;
        padding: 16px;
        border-radius: 16px;
    }

    .brand-logo-img {
        max-height: 90px;
    }
}

.blog-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    height: 100%;
    transition: all 0.35s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.blog-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.blog-card-body {
    padding: 24px;
}

.blog-meta {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: 14px;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-card-title a {
    color: var(--text-dark);
    text-decoration: none;
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-text {
    color: var(--text-light);
    margin-bottom: 18px;
}

.blog-read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.blog-single-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.blog-single-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.blog-single-content {
    padding: 30px;
}

.blog-single-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.blog-full-content {
    color: var(--text-dark);
    line-height: 1.9;
    font-size: 1rem;
}

@media (max-width: 767px) {
    .blog-card-image {
        height: 210px;
    }

    .blog-single-image {
        max-height: 260px;
    }

    .blog-single-content {
        padding: 22px;
    }
}

.blog-sidebar-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    position: sticky;
    top: 110px;
}

.blog-sidebar-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.recent-post-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-post-list li {
    margin-bottom: 14px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
}

.recent-post-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-list a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
}

.recent-post-list a:hover {
    color: var(--primary);
}

.blog-filter-form .form-control {
    min-height: 50px;
}

.blog-category-badge {
    display: inline-block;
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
}

.pagination .page-link {
    color: var(--primary);
    border-radius: 10px;
    margin: 0 4px;
    border: 1px solid var(--border);
}

.pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.pain-point-section {
    position: relative;
}

.pain-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
    height: 100%;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    transition: all 0.35s ease;
}

.pain-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(79, 70, 229, 0.15);
}

.pain-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    line-height: 1;
}

.pain-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.pain-card p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

.pain-point-cta {
    max-width: 760px;
    margin: 0 auto;
}

.pain-point-text {
    font-size: 1.08rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .pain-card {
        padding: 22px;
        border-radius: 18px;
    }

    .pain-icon {
        font-size: 1.7rem;
    }

    .pain-point-text {
        font-size: 1rem;
    }
}
.process-section {
    position: relative;
}

.process-timeline {
    position: relative;
}

.process-step-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 30px 24px;
    text-align: center;
    height: 100%;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    transition: all 0.35s ease;
    overflow: hidden;
}

.process-step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(79, 70, 229, 0.15);
}

.process-step-number {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(79, 70, 229, 0.25);
    letter-spacing: 1px;
}

.process-step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.10), rgba(6, 182, 212, 0.10));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.process-step-card h4 {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-step-card p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

@media (min-width: 992px) {
    .process-timeline .row {
        position: relative;
    }

    .process-timeline .row::before {
        content: "";
        position: absolute;
        top: 60px;
        left: 8%;
        right: 8%;
        height: 2px;
        background: linear-gradient(to right, rgba(79, 70, 229, 0.15), rgba(6, 182, 212, 0.2));
        z-index: 0;
    }

    .process-timeline .col-lg-3 {
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 767px) {
    .process-step-card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .process-step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        border-radius: 16px;
    }
}
.trust-section {
    position: relative;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-width: 700px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.comparison-header {
    padding: 20px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
}

.comparison-header.highlight {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(6, 182, 212, 0.08));
    color: var(--primary);
}

.comparison-row {
    display: contents;
}

.comparison-col {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
    line-height: 1.7;
    background: #fff;
}

.comparison-col.highlight {
    color: var(--text-dark);
    font-weight: 500;
    background: rgba(79, 70, 229, 0.02);
}

.comparison-table .comparison-col:nth-last-child(-n+2) {
    border-bottom: none;
}

.trust-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
    height: 100%;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    transition: all 0.35s ease;
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(79, 70, 229, 0.15);
}

.trust-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    line-height: 1;
}

.trust-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.trust-card p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .comparison-table {
        min-width: 600px;
        border-radius: 18px;
    }

    .comparison-header,
    .comparison-col {
        padding: 16px;
        font-size: 0.95rem;
    }

    .trust-card {
        padding: 22px;
        border-radius: 18px;
    }

    .trust-icon {
        font-size: 1.7rem;
    }
}
.error-page-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background:
        radial-gradient(circle at top right, rgba(6, 182, 212, 0.14), transparent 25%),
        radial-gradient(circle at bottom left, rgba(79, 70, 229, 0.14), transparent 25%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.error-page-box {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 60px 30px;
    box-shadow: var(--shadow);
}

.error-code {
    display: inline-block;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.error-page-box h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.error-page-box p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto 24px;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.error-mini-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.error-mini-link:hover {
    background: var(--primary);
    color: #fff;
}

@media (max-width: 767px) {
    .error-page-box {
        padding: 40px 20px;
        border-radius: 22px;
    }

    .error-actions .btn {
        width: 100%;
    }
    
    .pt-5{
        padding-bottom: 2rem;
    }
}

.legal-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
}

/* Header Logo */
.site-logo-header {
    height: auto;
    width: 300px;
    max-width: 300px;
    object-fit: contain;
    display: block;
}

.brand-logo {
    padding: 0;
    display: inline-flex;
    align-items: center;
}

/* Footer Logo */
.footer-brand-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.site-logo-footer {
    height: auto;
    width: 300px;
    max-width: 300px;
    object-fit: contain;
    display: block;
}

/* Tablet View */
@media (max-width: 1024px) {

    /* Header Logo */
    .site-logo-header {
        width: 200px;
        max-width: 200px;
    }

    /* Footer Logo */
    .site-logo-footer {
        width: 200px;
        max-width: 200px;
    }

}

/* Mobile Header & Footer Logo Fix */
@media (max-width: 600px) {
    .site-logo-header {
        height: 50px;
        max-width: 150px;
    }

    .navbar-brand.brand-logo {
        display: flex;
        align-items: center;
        min-height: 42px;
    }

     .site-logo-footer {
        height: 100px;
        max-width: 270px;
    }

    
}

