        :root {
            --primary: #1800AD;
            --accent: #FF7C0C;
            --white: #fff;
            --black: #000;
            --gray-light: #f8f9fa;
            --gray: #666;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--black);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }
        
        /* Navigation */
      .navbar {
    background: rgb(255 255 255 / 0%);
    /* backdrop-filter: blur(10px); */
    padding: 20px 0;
    transition: all 0.3s 
ease;
    /* box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05); */
}
        
      .navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
}
        
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--black);
            letter-spacing: -0.5px;
        }
        
        .navbar-brand span {
            color: var(--accent);
        }
        
        .nav-link {
            color: var(--black);
            font-weight: 500;
            padding: 8px 20px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 20px;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: calc(100% - 40px);
        }
        
        .btn-primary {
            background:var(--accent) ;
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }
        
        .btn-primary:hover::before {
            left: 100%;
        }
        
        .btn-primary:hover {
            background: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 124, 12, 0.3);
        }
        
        .btn-outline-custom {
            border: 2px solid var(--black);
            color: var(--black);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            background: transparent;
        }
        
        .btn-outline-custom:hover {
            background: var(--black);
            color: var(--white);
            transform: translateY(-2px);
        }
        
        /* Hero Section */
       .hero-section {
    min-height: 100vh;
    display: flex
;
    align-items: center;
    background: #0863af;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}
      .hero-section    .btn-outline-custom {
    border: 2px solid #ffffff;
    color: #000000;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s 
ease;
    background: #fff !important;
}
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('./img/hero.jpg');
            opacity: 0.3;
        }
        
        .hero-section .container {
            position: relative;
            z-index: 2;
        }
        
        .hero-content h1 {
            font-size: 4rem;
            font-weight: 900;
            color: var(--white);
            margin-bottom: 24px;
            line-height: 1.1;
            letter-spacing: -2px;
            animation: fadeInUp 0.8s ease;
        }
        
        .hero-content p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 32px;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }
        
        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.4s backwards;
        }
        
        .hero-buttons .btn {
            padding: 16px 40px;
            font-size: 1.1rem;
        }
        
        .quote-card {
            background: var(--white);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            animation: fadeInUp 0.8s ease 0.6s backwards;
        }
        
        .quote-card h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: var(--black);
        }
        
        .form-label {
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--black);
        }
        
       .form-control, .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 9px 18px;
    transition: all 0.3s 
ease;
    font-size: 1rem;
}
        .form-control:focus, .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(24, 0, 173, 0.1);
        }
        
        /* Trust Badges */
        .trust-badges {
            background: var(--black);
            color: var(--white);
            padding: 30px 0;
        }
        
        .trust-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-weight: 600;
        }
        
        .trust-badge i {
            color: var(--accent);
            font-size: 1.5rem;
        }
        
        /* Section Styles */
      section {
    padding: 60px 0;
}section.still-have-quetion section.cta-section {
    border-radius: 20px;
}
        
        .section-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 16px;
            color: var(--black);
            letter-spacing: -1px;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 60px;
        }
        
        /* Service Cards */
        .service-card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            transition: all 0.4s ease;
            border: 2px solid #f0f0f0;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            border-color: var(--primary);
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: all 0.4s ease;
        }
        
        .service-icon i {
            font-size: 2rem;
            color: var(--white);
        }
        
        .service-card:hover .service-icon {
            transform: rotate(10deg) scale(1.1);
        }
        
        .service-card h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--black);
        }
        
        .service-card p {
            color: var(--gray);
            margin-bottom: 20px;
        }
        
        .service-card ul {
            list-style: none;
            padding: 0;
        }
        
        .service-card ul li {
            padding: 8px 0;
            color: var(--gray);
            display: flex;
            align-items: start;
            gap: 12px;
        }
        
        .service-card ul li i {
            color: var(--accent);
            margin-top: 4px;
        }
        
        /* CTA Section */
      .cta-section {
    background: linear-gradient(135deg, #1800ad 0%, #ff9833 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 16px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 32px;
            opacity: 0.95;
        }
        
        .cta-section .btn {
            background: var(--white);
            color: var(--accent);
            border: none;
        }
        
        .cta-section .btn:hover {
            background: var(--black);
            color: var(--white);
        }
        
        /* Process Steps */
        .process-step {
            text-align: center;
            padding: 30px;
            transition: all 0.3s ease;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-weight: 800;
            font-size: 2rem;
            position: relative;
            transition: all 0.4s ease;
        }
        
        .process-step:hover .step-number {
            transform: scale(1.15);
        }
        
        .process-step h4 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--black);
        }
        
        .process-step p {
            color: var(--gray);
        }
        
        /* Stats Section */
        .stats-section {
            background: var(--black);
            color: var(--white);
            padding: 80px 0;
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
        }
        
       .stat-number {
    font-size: 30px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: -1px;
    display: block;
}
        
        .stat-item h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 4px;
        }
        
        .stat-item p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
        }
        
        /* Testimonials */
        .testimonial-card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            border-left: 4px solid var(--accent);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-stars {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .testimonial-text {
            font-style: italic;
            color: var(--gray);
            margin-bottom: 24px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .testimonial-author {
            font-weight: 700;
            color: var(--black);
            margin-bottom: 4px;
        }
        
        .testimonial-location {
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        /* FAQ */
        .faq-item {
            background: var(--white);
            border-radius: 12px;
            margin-bottom: 16px;
            overflow: hidden;
            border: 2px solid #f0f0f0;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            border-color: var(--primary);
        }
        
        .faq-question {
            padding: 24px;
            font-weight: 600;
            color: var(--black);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            color: var(--primary);
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent);
            transition: transform 0.3s ease;
        }
        
        .faq-question[aria-expanded="false"]::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 24px 24px;
            color: var(--gray);
        }
        
        /* Contact Section */
        .contact-card {
            background: var(--white);
            border-radius: 24px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }
        
      .contact-info {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
    padding: 5px 40px;
    color: var(--white);
    margin-bottom: 30px;
}
       .contact-info h5 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
}
        .contact-info p {
            margin-bottom: 8px;
            opacity: 0.95;
        }
        
        .contact-info i {
            margin-right: 12px;
            color: var(--white);
        }
        
        /* Footer */
      footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 30px;
    text-align: center;
}
        
        .footer-brand {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 16px;
        }
        
        .footer-brand span {
            color: var(--accent);
        }
        
        footer h5 {
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--white);
        }
        
        footer ul {
            list-style: none;
            padding: 0;
        }
        
        footer ul li {
            margin-bottom: 12px;
        }
        
        footer a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        footer a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 12px;
            transition: all 0.3s ease;
        }
        
       .social-links a:hover {
    background: var(--accent);
    transform: translateY(-5px);
    color: #fff;
    padding: 0;
}
ul.contact-header {
    display: flex;
    justify-content: end;
    width: 100%;
    gap: 20px;
    align-items: center;
}li.quote a {
    font-size: 17px !important;
    background: #ff7c0c !important;
}

ul.contact-header li a {
    color: #fff !important;
    text-decoration: none;
    font-size: 21px;
}

ul.contact-header li a i {
    color: #ff7c0c;
}

ul.contact-header li {
    list-style: none;
}
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 60px;
            padding-top: 30px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .hero-section {
                padding: 100px 0 60px;
            }
            
            section {
                padding: 60px 0;
            }
            
            .quote-card {
                margin-top: 40px;
            }
        }.navbar-brand img {
    width: 132px;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
}section.trust-badges {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: transparent;
}.process-step .step-number img {
    width: 52px;
}

.process-step span.num {
    font-size: 38px;
    font-weight: bold;
    color: #808080;
    display: none;
}

.process-step {
    background: #fff;
    border-radius: 10px;
}

section.ready-to-best-move-wrapper h2.section-title {
    text-align: center;
}

section.ready-to-best-move-wrapper p {
    text-align: center;
    margin-bottom: 35px;
}

section.ready-to-best-move-wrapper ul li {
    font-size: 21px;
}
section.ready-to-best-move-wrapper .row {
    align-items: start !important;
}
section.ready-to-best-move-wrapper img.img-fluid.rounded.shadow {
    width: 83%;
    display: flex
;
    justify-content: end;
    align-items: end;
    margin-left: 44px;
}.text-success {
    --bs-text-opacity: 1;
    color: rgb(255 124 12) !important;
}.footer-brand img {
    width: 131px;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
}#backToTop {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1800ad 0%, #ff7c0c 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex
;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s 
ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}
.navbar.scrolled ul li a {
    color: #000 !important;
}

.navbar.scrolled ul li.quote a {
    color: #fff;
}section#contact {
    background: #f8f9fa;
}
        #backToTop.show {
            opacity: 1;
            visibility: visible;
        }

        #backToTop:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }

        #backToTop:active {
            transform: translateY(-2px);
        }

        #backToTop svg {
            width: 24px;
            height: 24px;
            fill: white;
        }.row.contact-wrap-side {
    flex-direction: column;
    width: 100%;
}.row.contact-wrap-side .cta-wrap .service-area {
    background: #170b0b24;
    padding: 13px;
    border-radius: 10px;
}

.row.contact-wrap-side .cta-wrap .service-area h3 {
    font-size: 20px;
}.row.contact-wrap-side .cta-wrap a {
    color: #fff;
    text-decoration: none;
}

.row.contact-wrap-side .cta-wrap {
    border-bottom: 1px dashed #dddddd69;
    margin-top: 15px;
    padding: 10px 0;
}.form-header {
    text-align: center;
}

.form-header h2 {
    font-size: 30px;
    font-weight: bold;
}

.form-header {
    border-bottom: 1px dashed #ddd;
    margin-bottom: 31px;
}
.left-content-wr {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            background-color: #f0f7ff;
            border-radius: 10px;
            max-width: 400px;
            margin: 20px auto;
            background: linear-gradient(135deg, var(--primary), var(--accent));
        }

      .left-content-wr  .cta-container {
            /* background-color: #f28c38; */
            color: white;
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            width: 100%;
        }

      .left-content-wr  .cta-container h2 {
            font-size: 24px;
            margin: 0 0 10px 0;
            font-family: Arial, sans-serif;
        }

    .left-content-wr    .cta-container p {
            font-size: 16px;
            margin: 0 0 15px 0;
            font-family: Arial, sans-serif;
        }

       .left-content-wr .cta-button {
            background-color: #ff7c0c;
            color: white;
            /* border: 2px solid white; */
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 16px;
            font-family: Arial, sans-serif;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            border-radius: 100px;
        }

     .left-content-wr   .cta-button i {
            margin-right: 8px;
        }

      .left-content-wr  .cta-container i.fa-clock {
            font-size: 24px;
            margin-bottom: 10px;
        }
@media(max-width:767px){
    button.navbar-toggler {
    background: #fff;
}.navbar-brand img {
    width: 94px;
    
}    .hero-content h1 {
        font-size: 32px;
        text-align: center;
        padding-top: 13px;
    }.hero-content p {
    font-size: 16px;
    

    text-align: center;
}.hero-buttons {
   
    justify-content: center;
}.quote-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 17px;
    color: var(--black);
}.hero-section {
   
    flex-direction: column;
}section.trust-badges {
    position: relative;
}

    section.trust-badges .row {
        text-align: left;
        gap: 10px;
        justify-content: center;
    }

    section.trust-badges .row .col-md-2 {
        justify-content: start;
        width: 44%;
        display: flex
;
        background: #1800ad;
        padding: 8px;
        border-radius: 5px;
    }   .section-title {
        font-size: 30px;
    }.cta-section h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 16px;
}section.ready-to-best-move-wrapper ul li {
    display: flex
;
    align-items: baseline;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 11px;
}section.ready-to-best-move-wrapper img.img-fluid.rounded.shadow {
    width: 100%;
    display: flex
;
    justify-content: end;
    align-items: end;
    margin-left: 0;
}.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
}.btn-groupp {
    flex-direction: column;
    gap: 20px;
    display: inline-flex
;
}.cta-section

 {
        background: linear-gradient(135deg, #1800ad 0%, #ff9833 100%);
        color: var(--white);
        text-align: center;
        padding: 30px 10px;
        position: relative;
        overflow: hidden;
    }.contact-card {
    background: var(--white);
    border-radius: 24px;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0;
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}ul.contact-header {
    display: flex
;
    justify-content: end;
    width: 100%;
    gap: 20px;
    align-items: center;
    flex-direction: column;
    background: #000;
    justify-content: start;
    text-align: left;
    padding: 17px;
    border-radius: 20px;
}nav.navbar.navbar-expand-lg.fixed-top {
    background: #fff !important;
}
.navbar {
    background: rgb(255 255 255 / 0%);
    /* backdrop-filter: blur(10px); */
    padding: 10px 0;
    transition: all 0.3s 
ease;
    /* box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05); */
}.hero-buttons .btn {
    padding: 12px 12px;
    font-size: 16px;
}    .hero-content h1 {
        font-size: 32px;
        text-align: center;
        padding-top: 13px;
        margin: 0;
    }.quote-card {
    background: var(--white);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s 
ease 0.6s backwards;
}.hero-section {
        padding: 110px 0 26px;
    }form#contact-form {
    padding: 0px 17px;
}footer {
    background: var(--black);
    color: var(--white);
    padding: 40px 0 30px;
    text-align: center;
}
}