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

body {
    font-family: "Inter", "Segoe UI", sans-serif;
    background-color: #ffffff;
    color: #1e293b;
    scroll-behavior: smooth;
}

.text-primary-custom {
    color: #1e40af;
}
.bg-primary-custom {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
}

.btn-primary-custom {
    background: linear-gradient(100deg, #1e40af, #2563eb);
    border: none;
    color: white;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid #0011ff;
}
.btn-primary-custom:hover {
    /* transform: translateY(-2px); */
    /* box-shadow: 0 8px 20px rgba(37,99,235,0.25); */
    background: white;
    color: #0011ff;
    border: 2px solid #0011ff;
}

.btn-outline-primary-custom {
    border: 2px solid #2563eb;
    color: #2563eb;
    background: transparent;
    font-weight: 600;
    border-radius: 40px;
}
.btn-outline-primary-custom:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.navbar-brand {
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.4px;
    color: #1e40af !important;
    padding-left: 5px;
}
.navbar-brand span {
    color: #1e293b;
}
.nav-link {
    font-weight: 500;
    margin: 0 0.2rem;
    color: #334155 !important;
    font-size: 0.9rem;
    transition: 0.2s;
}
.nav-link:hover {
    color: #2563eb !important;
}

/* Mega Menu Styles - Fixed for Mobile with proper collapse */
.mega-menu {
    position: static !important;
}
.mega-menu .dropdown-menu {
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 0.5rem;
    border: none;
    border-radius: 24px;
    box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    background: white;
    max-height: 80vh;
    overflow-y: auto;
}
@media (min-width: 992px) {
    .mega-menu .dropdown-menu {
        max-width: 1400px;
        left: 50%;
        transform: translateX(-50%);
        max-height: 75vh;
        overflow-y: auto;
    }
}
/* Custom scrollbar for mega menu */
.mega-menu .dropdown-menu::-webkit-scrollbar {
    width: 6px;
}
.mega-menu .dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.mega-menu .dropdown-menu::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}
.mega-menu-section {
    margin-bottom: 1.2rem;
}
.mega-menu-title {
    font-weight: 800;
    font-size: 0.85rem;
    color: #1e40af;
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid #e0e7ff;
    display: inline-block;
    letter-spacing: 0.3px;
}
.mega-menu-item {
    padding: 0.4rem 0;
    font-size: 0.8rem;
    color: #475569;
    display: flex;
    align-items: center;
    transition: 0.2s;
    border-radius: 8px;
    text-decoration: none;
}
.mega-menu-item i {
    width: 28px;
    color: #2563eb;
    font-size: 0.8rem;
}
.mega-menu-item:hover {
    color: #1e40af;
    transform: translateX(5px);
    background: #f8fafc;
    padding-left: 5px;
    text-decoration: none;
}

/* Mobile view fixes - proper collapse and scroll */
@media (max-width: 991px) {
    .navbar-collapse {
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    .mega-menu .dropdown-menu {
        position: static !important;
        width: 100% !important;
        transform: none !important;
        box-shadow: none;
        background: #f8fafc;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        padding: 1rem;
        border-radius: 16px;
        border: 1px solid #eef2ff;
        max-height: none;
        overflow-y: visible;
    }
    .navbar-nav .nav-item {
        margin: 0.2rem 0;
    }

    .mega-menu-section {
        margin-bottom: 1rem;
    }
    .mega-menu-title {
        font-size: 0.85rem;
    }
    .mega-menu-item {
        font-size: 0.75rem;
        padding: 0.35rem 0;
    }
    /* Ensure dropdown toggles work on mobile */
    .dropdown-toggle::after {
        display: inline-block;
        margin-left: 0.255em;
        vertical-align: 0.255em;
        content: "";
        border-top: 0.3em solid;
        border-right: 0.3em solid transparent;
        border-bottom: 0;
        border-left: 0.3em solid transparent;
    }
    .show > .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

/* Profile avatar */
.profile-avatar {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
}

/* Hero section */
.hero-section {
    background: linear-gradient(115deg, #f5f6fa 0%, #f5f6fa 100%);
    padding: 3rem 0 4rem 0;
    border-bottom: 1px solid #eef2ff;
}
.hero-title {
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.25;
    color: #0f172a;
}
.hero-highlight {
    color: #2563eb;
    background: linear-gradient(120deg, #dbeafe 0%, #eff6ff 100%);
    padding: 0 0.2rem;
    display: inline-block;
    border-radius: 12px;
}
.hero-lead {
    font-size: 1rem;
    color: #475569;
    line-height: 1.5;
}

/* Search bar */
 .address-suggestions {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            z-index: 1000;
            max-height: 220px;
            overflow-y: auto;
            display: none;
        }
        .suggestion-item {
            padding: 10px 15px;
            cursor: pointer;
            border-bottom: 1px solid #f1f5f9;
            font-size: 0.85rem;
        }
.search-wrapper {
    background: white;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 2px solid #006eff;
}
.search-wrapper .form-control {
    border: none;
    padding: 0.75rem 1.4rem;
    border-radius: 60px 0 0 60px;
    font-size: 0.9rem;
    background: transparent;
}
.search-wrapper .form-control:focus {
    box-shadow: none;
    outline: none;
}
.search-wrapper .input-group-append .btn {
    padding: 0.3rem 1.2rem;
    border-radius: 10px;
    font-weight: 600;
    margin-right: 5px;
}
.search-results-area {
    /* background: white;
    border-radius: 24px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
    margin-top: 12px;
    max-height: 380px;
    overflow-y: auto;
    display: none;
    z-index: 1000; */
        margin-left: 15px;
        margin-right: 15px;
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        z-index: 1000;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        max-height: 400px;
        overflow-y: auto;
        border-radius: 10px;
}

.search-result-item {
    padding: 12px 18px;
    border-bottom: 1px solid #f1f5f9;
    transition: 0.2s;
}
.search-result-item:hover {
    background: #f8fafc;
    border-radius: 20px;
}

/* Service Cards */
.service-card {
    border: none;
    border-radius: 28px;
    background: #fdfdfd;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
    border: 2px solid #0341fd;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(37, 99, 235, 0.15);
    border-color: #015aff;
}
.service-img {
    /* height: 170px;
            object-fit: cover; */
    width: 30%;
}
.service-body {
    padding: 1.2rem;
}
.service-badge {
    background: #eef4ff;
    color: #1e40af;
    border-radius: 40px;
    padding: 3px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}

/* Companies */
.company-logo {
    background: white;
    border-radius: 48px;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: 0.2s;
    border: 1px solid #eef2ff;
}
.company-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: #cbdff2;
}
.company-logo i {
    font-size: 1.8rem;
    color: #3b82f6;
    margin-right: 8px;
}

/* Why choose us */
.why-card {
    text-align: center;
    padding: 1.3rem;
    border-radius: 24px;
    background: white;
    transition: 0.25s;
    height: 100%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
    border: 2px solid #027ffc;
}
.why-card:hover {
    transform: translateY(-4px);
    background: #ffffff;
    border-color: #08469d;
}
.why-icon {
    width: 60px;
    height: 60px;
    background: #eef4ff;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}
.why-icon i {
    font-size: 28px;
    color: #2563eb;
}

/* Stats */
.stats-section {
    background: linear-gradient(105deg, #0066ff 0%, #0046e9 100%);
    padding: 2rem 0;
    border-radius: 48px;
    margin: 2rem 0;
}
.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0;
}

/* Footer */
.footer-lookrative {
    background: #0011ff;
    color: #ffffff;
    padding-top: 2.5rem;
    /* border-top-left-radius: 40px;
            border-top-right-radius: 40px; */
    /* margin-top: 3rem; */
    font-size: 0.8rem;
}
.footer-lookrative a {
    color: #cbd5e1;
    transition: 0.2s;
    text-decoration: none;
}
.footer-lookrative a:hover {
    color: white;
    transform: translateX(3px);
    display: inline-block;
}
.footer-social-circle {
    width: 34px;
    height: 34px;
    background: rgb(255, 253, 253);
    font-size: 14px !important;
    font-weight: 900 !important;
    color: #2563eb !important;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    transition: 0.2s;
}
.footer-social-circle:hover {
    width: 34px !important;
    height: 34px !important;
    background: rgb(101, 121, 209) !important;
    font-size: 14px !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: 0.2s !important;
}
.footer-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.footer-list li {
    margin-bottom: 8px;
    cursor: pointer;
}
.footer-list li:hover {
    color: #ff9500;
}
.footer-list li i {
    width: 18px;
    font-size: 11px;
    margin-right: 6px;
}
.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}
hr.footer-divider {
    background: #ffffff;
    margin: 1.2rem 0;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.7rem;
    }
    .stat-number {
        font-size: 1.3rem;
    }
    .why-icon {
        width: 48px;
        height: 48px;
    }
    .why-icon i {
        font-size: 22px;
    }
    .search-wrapper .form-control {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
    .search-wrapper .input-group-append .btn {
        padding: 0 1rem;
        font-size: 0.8rem;
    }
}

/* sliders */

.logo-slider-section {
    background: linear-gradient(115deg, #f8fcff 0%, #ffffff 100%);
    border-top: 1px solid #eef2ff;
    border-bottom: 1px solid #eef2ff;
    overflow: hidden;
}

.logo-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.logo-slider {
    display: flex;
    gap: 30px;
    animation: slideLogos 25s linear infinite;
    width: fit-content;
}

.logo-slider:hover {
    animation-play-state: paused;
}

.logo-slide {
    flex-shrink: 0;
    width: 180px;
    padding: 5px;
}

.logo-card {
    /* background: white; */
    /* border-radius: 8px; */
    padding: 0.8rem;
    text-align: center;
    transition: all 0.3s ease;
    /* border: 1px solid #f0f2f8; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 130px;
}

.logo-card:hover {
    transform: translateY(-6px);
    /* box-shadow: 0 20px 30px -12px rgba(37, 99, 235, 0.15); */
    /* border-color: #d9e6ff; */
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
}

.logo-card i {
    color: #1e40af;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    font-size: 2.5rem;
}

.logo-card:hover i {
    color: #2563eb;
    transform: scale(1.05);
}

.logo-card span {
    font-weight: 600;
    font-size: 0.85rem;
    color: #1e293b;
    letter-spacing: -0.2px;
}

.logo-card:hover span {
    color: #1e40af;
}

/* Animation for continuous horizontal scroll */
@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .logo-slide {
        width: 160px;
    }
    .logo-card {
        height: 120px;
        padding: 1.2rem 0.6rem;
    }
    .logo-card i {
        font-size: 2.2rem;
    }
    .logo-card span {
        font-size: 0.8rem;
    }
    .logo-slider {
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .logo-slide {
        width: 140px;
    }
    .logo-card {
        height: 110px;
        padding: 1rem 0.5rem;
    }
    .logo-card i {
        font-size: 2rem;
    }
    .logo-card span {
        font-size: 0.75rem;
    }
    .logo-slider {
        gap: 20px;
    }
    @keyframes slideLogos {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
}

@media (max-width: 768px) {
    .logo-slide {
        width: 120px;
    }
    .logo-card {
        height: 100px;
        padding: 0.8rem 0.4rem;
    }
    .logo-card i {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    .logo-card span {
        font-size: 0.7rem;
    }
    .logo-slider {
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .logo-slide {
        width: 100px;
    }
    .logo-card {
        height: 90px;
        border-radius: 18px;
    }
    .logo-card i {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }
    .logo-card span {
        font-size: 0.65rem;
    }
    .logo-slider {
        gap: 12px;
    }
    .logo-slider-wrapper {
        padding: 15px 0;
    }
}

/* Optional: Add gradient fade effect on edges for better UX */
.logo-slider-wrapper::before,
.logo-slider-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.logo-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f8fcff, transparent);
}

.logo-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

/* Remove gradient fade on small screens if needed */
@media (max-width: 768px) {
    .logo-slider-wrapper::before,
    .logo-slider-wrapper::after {
        width: 30px;
    }
}

/* Scroll to Top Button Styles */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: white;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top-btn.show {
    display: flex;
    opacity: 1;
    visibility: visible;
    animation: fadeInUp 0.3s ease;
}

.scroll-to-top-btn:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.scroll-to-top-btn:active {
    transform: translateY(0);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .scroll-to-top-btn {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .scroll-to-top-btn {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
        font-size: 1rem;
    }
}

/* Trustpilot Widget Styles */
.tp-row {
    background: linear-gradient(115deg, #f8fcff 0%, #ffffff 100%);
    border-top: 1px solid #eef2ff;
    border-bottom: 1px solid #eef2ff;
    margin: 0;
}

.tp-pricing-widget {
    padding: 0 15px;
}

/* Left Column - Rating Summary */
.tp-rating-big {
    text-align: center;
    padding: 20px 10px;
    background: white;
    border-radius: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f2f8;
    transition: all 0.3s ease;
}

.tp-rating-big:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.08);
    border-color: #d9e6ff;
}

.tp-widget-humanscore a {
    font-size: 2rem;
    font-weight: 800;
    color: #1e40af;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.tp-widget-stars {
    margin: 10px 0;
}

.tp-stars i {
    color: #00b67a;
    font-size: 1.2rem;
    margin: 0 1px;
}

.tp-widget-businessinfo {
    font-size: 0.8rem;
    color: #475569;
    margin: 8px 0;
}

.tp-widget-businessinfo a {
    color: #475569;
    text-decoration: none;
}

.tp-widget-businessinfo a:hover {
    color: #1e40af;
}

.bold-underline {
    font-weight: 700;
    color: #1e40af !important;
}

.tp-widget-logo {
    margin-top: 12px;
}

.tp_logo {
    height: 28px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.tp_logo:hover {
    opacity: 1;
}

/* Right Column - Review Cards */
.tp-widget-review {
    background: white;
    border-radius: 24px;
    padding: 1.3rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #7c89b3;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.tp-widget-review:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -12px rgba(0, 81, 255, 0.12);
    border-color: #0056f5;
}

.tp-widget-stars .tp-stars {
    margin-bottom: 12px;
}

.tp-widget-stars .tp-stars i {
    font-size: 0.9rem;
    margin-right: 2px;
}

.tp-review-date {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.tp-review-title {
    font-weight: 700;
    font-size: 1rem;
    color: #0f172a;
    margin-bottom: 8px;
}

.tp-review-text {
    font-size: 0.8rem;
    color: #475569;
    line-height: 1.45;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tp-review-username {
    font-size: 0.75rem;
    font-weight: 600;
    color: #2563eb;
    border-top: 1px solid #eef2ff;
    padding-top: 10px;
    margin-top: 5px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .tp-rating-big {
        margin-bottom: 20px;
    }
    .tp-widget-humanscore a {
        font-size: 1.6rem;
    }
    .tp-widget-review {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .tp-row {
        padding: 2rem 0 !important;
    }
    .tp-widget-review {
        margin-bottom: 1rem;
    }
    .tp-review-text {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
    }
    .tp-stars i {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .tp-widget-humanscore a {
        font-size: 1.4rem;
    }
    .tp_logo {
        height: 22px;
    }
    .tp-review-title {
        font-size: 0.85rem;
    }
    .tp-widget-review {
        padding: 0.9rem;
    }
}

/* login */

        /* Login Card - fully responsive */
        .login-card {
            background:white;
            border-radius: 32px;
            box-shadow: 0 25px 45px -12px rgba(1, 76, 251, 0.2);
            border:none;
            overflow: hidden;
            margin: 0 15px;
        }
        @media (max-width: 576px) {
            .login-card {
                margin: 0 10px;
                border-radius: 24px;
            }
        }

        .login-header {
            background: #0011ff;
            padding: 1.8rem 1.2rem 1.2rem 1.2rem;
            border-bottom: 1px solid #eef2ff;
            text-align: center;
            color: white;
        }
        .login-header h3 {
            font-size: 1.8rem;
            font-weight: 800;
        }
        @media (max-width: 576px) {
            .login-header h3 { font-size: 1.5rem; }
            .login-header p { font-size: 0.85rem; }
        }

        .login-body {
            padding: 2rem;
        }
        @media (max-width: 576px) {
            .login-body {
                padding: 1.5rem;
            }
        }

        /* Password toggle button */
        .password-toggle {
            cursor: pointer;
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #94a3b8;
            z-index: 10;
            background: transparent;
            border: none;
        }
        .password-wrapper {
            position: relative;
        }
        .password-wrapper .form-control {
            padding-right: 45px;
        }

        /* Footer */
        .footer-simple {
            background: #0a0f1c;
            color: #9ca3af;
            padding: 1.2rem 0;
            margin-top: 3rem;
            font-size: 0.7rem;
            text-align: center;
        }

        .required-star {
            color: #ef4444;
            margin-left: 2px;
        }


