/* Root Variables */
:root {
    --primary-red: #E31E24;
    --primary-green: #4CAF50;
    --dark-bg: #0C424A;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --white: #ffffff;
    --light-bg: #f8f9fa;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* Section Tags */
.section-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-red);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-heading {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

.section-desc {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Buttons */
.btn-red {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-red:hover {
    background: #c91a1f;
    color: var(--white);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    /* background: var(--dark-bg); */
    /* background: rgba(12, 66, 74, 0.5); */
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(12, 66, 74, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.logo-img {
    height: 45px;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-red) !important;
}

.dropdown-menu {
    background: var(--dark-bg);
    border: none;
    border-radius: 10px;
}

.dropdown-item {
    color: var(--white);
    padding: 10px 20px;
}

.dropdown-item:hover {
    background: var(--primary-red);
    color: var(--white);
}

.btn-get-started {
    background: var(--primary-red);
    color: var(--white);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-get-started:hover {
    background: #c91a1f;
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(0deg, rgba(12, 66, 74, 0.95), rgba(12, 66, 74, 0.2)), 
                url('../images/hero-bg.jpg') center/cover no-repeat;
    min-height: 100vh;
    padding-top: 250px;
    padding-bottom: 20px;
    position: relative;
    /* overflow: hidden; */
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.text-red {
    color: var(--primary-red);
}

.text-green {
    color: var(--primary-green);
}

.hero-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 580px;
}

.btn-request-quote {
    background: var(--primary-red);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-request-quote:hover {
    background: #c91a1f;
    color: var(--white);
    transform: translateY(-2px);
}

.hero-info-box {
    margin-top: 40px;
}

.info-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.7;
    max-width: 500px;
}

.customer-images {
    display: flex;
}

.customer-images img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -12px;
    object-fit: cover;
}

.customer-images img:first-child {
    margin-left: 0;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.couple-img {
    max-width: 100%;
    border-radius: 20px;
}

.truck-container {
    position: absolute;
    bottom: -50px;
    right: 0;
    z-index: 3;
}

.line-bw {
    border-left: 2px solid rgba(255, 255, 255, 1);
    padding-left: 40px;
}

.truck-img {
    max-width: 280px;
}

/* About Section */
.about-section {
    background: var(--white);
}

.about-image img,
.about-image-2 img {
    border-radius: 25px;
}

.stats-box {
    padding: 20px 0;
}

.stats-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.stats-text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.quote-box {
    border-left: 4px solid var(--primary-red);
    padding-left: 24px;
}

.quote-text {
    font-size: 15px;
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.quote-author {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-red);
}

/* Services Section */
.services-section {
    background: var(--dark-bg);
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 3px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon img {
    width: 40px;
    height: 40px;
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-link {
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.service-link:hover {
    color: var(--text-dark);
}


/* Services Slider Container */
.services-slider-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 70px;
}

/* Swiper Configuration */
.servicesSwiper {
    overflow: hidden !important;
    padding: 30px 10px 50px;
}

.servicesSwiper .swiper-wrapper {
    align-items: stretch;
}

.servicesSwiper .swiper-slide {
    height: auto;
    display: flex;
}

/* Service Card Link - Make entire card clickable */
.service-card-link {
    display: block;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

/* Service Card adjustments for slider */
.servicesSwiper .service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    /* min-height: 380px; */
}

/* .servicesSwiper .service-desc {
    flex-grow: 1;
} */

/* Custom Navigation Arrows - Matching your screenshot */
.slider-nav-prev,
.slider-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.slider-nav-prev {
    left: 0;
}

.slider-nav-next {
    right: 0;
}

.slider-nav-prev i,
.slider-nav-next i {
    color: #E31E24;
    font-size: 20px;
    font-weight: bold;
}

.slider-nav-prev:hover,
.slider-nav-next:hover {
    background: #E31E24;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav-prev:hover i,
.slider-nav-next:hover i {
    color: white;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .services-slider-container {
        padding: 0 60px;
    }
}

@media (max-width: 991px) {
    .services-slider-container {
        padding: 0 55px;
    }
    
    .slider-nav-prev,
    .slider-nav-next {
        width: 45px;
        height: 45px;
    }
    
    .slider-nav-prev i,
    .slider-nav-next i {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .services-slider-container {
        padding: 0 50px;
    }
    
    .slider-nav-prev,
    .slider-nav-next {
        width: 40px;
        height: 40px;
    }
    
    .slider-nav-prev i,
    .slider-nav-next i {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .services-slider-container {
        padding: 0 45px;
    }
}
/* Projects Section */
.projects-section {
    background: var(--white);
}

.project-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 280px;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 24px;
}

.project-name {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* Moving Guides Section */
.guides-section {
    /* background: var(--dark-bg); */
    background: rgba(6, 46, 57, 1);
    position: relative;
}

.guide-item {
    margin-bottom: 30px;
    position: relative;
}

.guide-item::after {
    content: "";
    display: block;
    background-image: url('../images/work-process-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 20px; /* Adjust based on your spacing */
    left: 50%;
    transform: translateX(50%);
    width: 150px;
    height: 80px;
    z-index: 1;
}
.row > .col-lg-3:last-child .guide-item::after {
    display: none;
}

@media (min-width: 1200px) {
    .row > .col-lg-3:nth-child(4n).guide-item::after {
        display: none; /* Hide arrow on 4th item in each row */
    }
}

@media (max-width: 1024px) {
    .guide-item::after {
        width: 120px;
        height: 70px;
    }
}

/* For 2-column layout on tablet */
@media (max-width: 768px) {
    .guide-item::after {
        width: 150px;
        height: 80px;
        top: 0;
        left: 55%;
    }
   .row > .col-md-6:nth-child(2n) .guide-item::after {
        display: none;
    }
}

/* For mobile - hide all arrows or adjust */
@media (max-width: 767px) {
    .row > .col-12 .guide-item::after {
        display: none; /* Hide arrows on mobile, or adjust positioning */
    }
}


.guide-icon {
    width: 120px;
    height: 120px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.guide-icon img {
    width: 60px;
    height: 60px;
}

.guide-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.guide-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* Experience Section */
.experience-section {
    background: var(--white);
}

.experience-images-grid .col-12 {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.experience-badge i {
    font-size: 48px;
    color: var(--white);
}

.skill-bars {
    margin-top: 30px;
}

.skill-name,
.skill-percent {
    font-size: 14px;
    font-weight: 600;
}

.progress {
    height: 10px;
    background: #e9ecef;
    border-radius: 10px;
}

.progress-bar {
    border-radius: 10px;
}

/* Quote Request Section */
.quote-request-section {
    background: var(--dark-bg);
}

.feature-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--white);
}

.feature-item i {
    color: var(--primary-red);
    font-size: 20px;
    margin-right: 16px;
}

.quote-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
}

.form-heading {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
}

.quote-form .form-control {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 14px;
}

.quote-form .form-control:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(227, 30, 36, 0.15);
}

.btn-submit {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #c91a1f;
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--white);
    position: relative;
    padding-bottom: 120px !important;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.rating i {
    color: #FFA500;
    font-size: 14px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

.cargo-container {
    position: absolute;
    left: 0;
    bottom: -150px;
    z-index: 1;
}

.cargo-container img {
    max-width: 300px;
}

/* FAQ Section */
.faq-section {
    background: var(--white);
}

.faq-accordion {
    margin-top: 30px;
}

.faq-item {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background: var(--primary-red);
    color: var(--white);
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Trust Banner */
.trust-banner {
    background: var(--light-bg);
}

.trust-text {
    font-size: 48px;
    font-weight: 900;
    color: #e0e0e0;
    letter-spacing: 3px;
}

/* Team Section */
.team-section {
    background: var(--dark-bg);
}

.team-card {
    text-align: center;
}

.team-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.team-image-wrapper img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.team-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.team-role {
    font-size: 14px;
    color: var(--primary-red);
    font-weight: 500;
}

/* Map Section CSS - Add this to your style.css file */

.map-section {
    background: var(--dark-bg);
}

.contact-info-box {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: var(--light-bg);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-red);
    margin-right: 20px;
    margin-top: 5px;
    min-width: 30px;
}

.contact-item h6 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: 0;
    display: block;
}

/* Responsive */
@media (max-width: 991px) {
    .map-container iframe {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .map-container iframe {
        height: 350px;
    }
    
    .contact-item {
        padding: 15px;
    }
}

/* Blog Section */
.blog-section {
    background: var(--white);
}

.blog-card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.blog-image-wrapper img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 24px;
}

.blog-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.4;
}

.blog-link {
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.blog-link:hover {
    color: var(--text-dark);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
}

.footer-logo {
    height: 120px;
}

.footer-about {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 350px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-contact i {
    margin-right: 12px;
    margin-top: 4px;
    color: var(--primary-red);
}

.footer-newsletter-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.newsletter-form {
    margin-bottom: 20px;
}

.newsletter-input-group {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    background: var(--white);
}

.newsletter-input-group .form-control {
    border: none;
    padding: 12px 20px;
    font-size: 14px;
}

.newsletter-input-group .form-control:focus {
    box-shadow: none;
}

.newsletter-btn {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #c91a1f;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-red);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.15);
    margin: 40px 0 30px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 56px;
    }
    
    .section-heading {
        font-size: 36px;
    }
    
    .truck-container {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-heading {
        font-size: 32px;
    }
    
    .trust-text {
        font-size: 28px;
    }
    
    .guide-icon {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-heading {
        font-size: 28px;
    }
}