/* ============================================
   Custom Variables & Bootstrap Overrides
   ============================================ */
:root {
    --primary-color: #f15b2c;
    --secondary-color: #0c0a30;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --text-color: #333333;
    --border-color: #dee2e6;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Bootstrap Primary Color Override */
.btn-primary,
.bg-primary,
.badge-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #1b54a8 !important;
    border-color: #1b54a8 !important;
}

.btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

/* Bootstrap Secondary Color Override */
.btn-secondary,
.bg-secondary {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

/* Form Controls Override */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(35, 105, 212, 0.25) !important;
}

.form-control {
    border-color: var(--border-color);
    padding: 0.75rem 1rem;
}

/* Button Overrides */
.btn {
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Link Colors */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}


.header_logo{
    width: 200px;
}
.central_hero{
    min-height: 80vh;
}
.form-control:focus{
    box-shadow: none !important;
}
/* ============================================
   Navbar Styles
   ============================================ */
.navbar {
    padding: .5rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff !important;
}

.navbar-brand i {
    font-size: 1.5rem;
}

.nav-link {
    /* color: rgba(255, 255, 255, 0.8) !important; */
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    /*color: #fff !important;*/
    transform: translateY(-2px);
}

.blog_form{
    position:sticky;
    top:20px;
}
/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-image: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(0 0 0 / 85%) 0%, rgba(7, 135, 217, 0.85) 100%);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Quote Form Card */
.quote-form-card {
    background: #fff;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    color: var(--text-color);
}

.form-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.quote-form-card .form-label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 3rem 0;
}

.stat-item {
    padding: 1.5rem;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
}

/* ============================================
   Section Titles
   ============================================ */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    padding: 5rem 0;
}

.about-section img {
    border-radius: 15px;
}

.feature-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works-section {
    padding: 5rem 0;
}

.work-step {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.work-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.work-step h4 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.work-step p {
    color: #666;
    line-height: 1.6;
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
    padding: 5rem 0;
}

.service-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #fff;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

.service-content h4 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* ============================================
   Benefits Section
   ============================================ */
.benefits-section {
    padding: 5rem 0;
}

.benefit-item {
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.benefit-item p {
    color: #666;
    font-size: 0.95rem;
}

/* ============================================
   Reviews Section
   ============================================ */
.reviews-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.reviews-slider {
    display: flex;
    overflow: hidden;
    gap: 2rem;
    margin-bottom: 2rem;
}

.review-card {
    min-width: 100%;
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.review-header img:first-child {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-info {
    flex: 1;
}

.review-info h5 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.stars {
    color: #ffc107;
}

.stars i {
    font-size: 0.9rem;
}

.google-logo {
    width: 60px;
    height: auto;
}

.review-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
}

.slider-control {
    background: var(--primary-color);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.slider-control:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* ============================================
   Vehicle Types Section
   ============================================ */
.vehicle-types-section {
    padding: 5rem 0;
}

.vehicle-type-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #fff;
}

.vehicle-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.vehicle-type-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.vehicle-type-card h5 {
    padding: 1.5rem;
    text-align: center;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 4rem 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    opacity: 0.95;
}

.cta-section .btn-light {
    background: #fff;
    color: var(--primary-color);
    font-weight: 600;
}

.cta-section .btn-light:hover {
    background: #f0f0f0;
}

.cta-section .btn-outline-light:hover {
    background: #fff;
    color: var(--primary-color);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    padding: 5rem 0;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.accordion-button {
    background: #fff;
    color: var(--dark-color);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 1.5rem;
    color: #666;
    line-height: 1.7;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    padding: 5rem 0;
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    flex: 1;
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: #676767;
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0 1.5rem;
}

.footer-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-text {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-heading {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1.5rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-copyright a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-copyright a:hover {
    color: var(--primary-color);
}

/* ============================================
   Scroll to Top Button
   ============================================ */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.scroll-top-btn.show {
    display: flex;
}



.reviews-section { padding: 60px 20px; }

.container { max-width: 1200px; margin: 0 auto; }

.section-title { font-size: 36px; font-weight: 700; text-align: center; margin-bottom: 50px; color: #333; }

.reviewsSwiper { padding: 0 50px 50px; }

.review-card { background: #fff; border-radius: 12px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); height: 100%; }

.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }

.review-header img:first-child { width: 48px; height: 48px; border-radius: 50%; }

.review-info { flex: 1; }

.review-info h4 { font-size: 16px; font-weight: 600; color: #333; margin-bottom: 4px; }

.review-info p { font-size: 13px; color: #999; }

.google-logo { width: 60px; height: auto; }

.stars { color: #fbbc04; font-size: 18px; margin-bottom: 12px; }

.review-text { font-size: 15px; color: #666; line-height: 1.6; }

/* Swiper Navigation */
.swiper-button-prev, .swiper-button-next { width: 44px; height: 44px; background: #fff; border-radius: 50%; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }

.swiper-button-prev:after, .swiper-button-next:after { font-size: 18px; color: #333; font-weight: 700; }

.swiper-button-prev.swiper-button-disabled, .swiper-button-next.swiper-button-disabled { opacity: 0.3; }

/* Responsive */
@media (max-width: 1024px) {
    .reviewsSwiper { padding: 0 40px 40px; }
}
.swiper-button-prev, .swiper-button-next{
    background: var(--primary-color);
}
.swiper-button-prev:after, .swiper-button-next:after{
    color: white;
}
.process-card{
    background: var(--primary-color);
}
.process-number{
    color: white !important;
    opacity: 1 !important;
}
.bg-light .bg-white{
    background-color: var(--light-gray) !important;
}
@media (max-width: 768px) {
    .section-title { font-size: 28px; }
    .reviewsSwiper { padding: 0 30px 30px; }
    .swiper-button-prev, .swiper-button-next { width: 36px; height: 36px; }
    .swiper-button-prev:after, .swiper-button-next:after { font-size: 14px; }
    .contact-info{
            flex-direction: column;
    }
    .contact-item{
        margin-bottom: 0;
    }
    .contact-item i{
        margin-right: 12px;
    }
    .contact-item p{
        font-size: 14px;
    }
    .contact-item p a{
        margin-left: 0;
    }
    .map-container iframe{
        height: 300px;
    }
    .central_hero a{
        font-size: 14px;
                padding-left: 15px;
        padding-right: 15px;
    }
    .cta-section a{
        margin-left: 0 !important;
    }
    .mb_center_cee img{
        margin: auto;
    }
    .why_content img{
        margin: auto;
        
    }
    .mb_ccc{
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .blog-content{
        margin-top: 20px;
    }
    .related_blogs{
        margin-top: 30px;
    }
    .ccrrr .card-body{
        padding: 0 !important;
    }
    .quote-form-card{
        margin-bottom: 30px;
    }
}
/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .quote-form-card {
        margin-top: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-section .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding-top: 70px;
    }

    .quote-form-card {
        padding: 1.5rem;
    }

    .work-step,
    .benefit-item {
        margin-bottom: 2rem;
    }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   Utility Classes
   ============================================ */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.box-shadow {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.rounded-lg {
    border-radius: 15px;
}
.normaly_hide{
    display: none;
}
.blog_banner{
        background-size: cover;
    background-position: center;
}

