/* Base Styles */
body {
    font-family: "Quicksand", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #2c3e50;
}

/* Header Styles */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 15px 5%;
}

/* Logo */
.logo img {
    max-height: 60px;
}

/* Navigation */
/* nav {
    flex-grow: 1;
    margin-left: 40px;
} */

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    justify-content: end;
    padding: 0;
    margin: 0;
}
.top-hdr {
    display: grid;
    gap: 10px;
}
.nav-links li a {
    text-decoration: none;
    color: #34495e;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #e68842;
}

/* Contact Info */
.contact-hdr {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.contact-hdr i {
    color: #e68842;
    font-size: 15px;
}

.phone-number, .email {
    font-weight: 500;
    color: #555;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Section Styles */
section {
    text-align: center;
}

section h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 30px;
}

/* Card Layouts */
.services, .mission, .vision, .about {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin-top: 0;
}

.service-card, .about-card {
    background-color: #fff;
    padding: 25px;
    flex: 1 1 22%;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.service-card:hover, .about-card:hover {
    transform: translateY(-5px);
}

.service-card h3, .about-card h3 {
    color: #34495e;
}

/* Enquiry Form */
.enquiry-form {
    background-color: #ecf0f1;
    padding: 40px;
    margin-top: 40px;
    border-radius: 12px;
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    padding: 12px;
    margin: 12px 0;
    border-radius: 6px;
    border: 1px solid #bdc3c7;
    font-size: 16px;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    border-color: #e68842;
    outline: none;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 15px;
}
.service-icon {
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}
/* Slider Styles */
.slider {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.slides {
    display: flex;
    width: 300%;
    height: 100%;
    animation: slideAnimation 15s infinite;
}

.slide {
    width: 100%;
    flex-shrink: 0;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.6);
}

.slide-text h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.slide-text p {
    font-size: 20px;
}


/* Header Top - Contact Info */
.header-top {
    background-color: #f7f7f7;
    border-bottom: 1px solid #ddd;
    padding: 8px 0;
    font-size: 14px;
}

.header-contact {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #34495e;
    font-weight: 500;
}

.contact-item i {
    color: #e68842;
}

/* Header Main - Logo & Nav */
.header-main {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    max-height: 60px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    padding: 0;
    margin: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #34495e;
    font-weight: 600;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.nav-links li a:hover {
    color: #e68842;
    border-bottom: 2px solid #e68842;
}
.nav-links li a.active {
    color: #e68842;
}
.about-us-section {
    padding: 60px 0;
    background-color: #fff;
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-content {
    flex: 1 1 50%;
    text-align: left;
}

.about-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.about-highlights {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.about-highlights li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #34495e;
}

.about-highlights li i {
    color: #e68842;
    margin-right: 10px;
}

.about-image {
    flex: 1 1 40%;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}




@keyframes slideAnimation {
    0% { transform: translateX(0%); }
    33% { transform: translateX(0%); }
    38% { transform: translateX(-100%); }
    71% { transform: translateX(-100%); }
    76% { transform: translateX(-200%); }
    100% { transform: translateX(-200%); }
}

/* Responsive Text */
@media (max-width: 768px) {
    .slide-text h1 {
        font-size: 28px;
    }

    .slide-text p {
        font-size: 16px;
    }
    .about-grid {
        flex-direction: column;
    }

    .about-content, .about-image {
        width: 100%;
    }

    .about-content h2 {
        font-size: 28px;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .services, .mission, .vision, .about {
        flex-direction: column;
    }

    .service-card, .about-card {
        width: 100%;
    }

    .contact-hdr {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* Background Image Slider */
.slider {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.slides {
    display: flex;
    width: 300%;
    height: 100%;
    animation: slideAnimation 15s infinite;
}

.slide {
    width: 100%;
    flex-shrink: 0;
    height: 100%;
    background-size: contain;
    background-position: center;
    position: relative;
}

/* Background Images for each slide */
.slide1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                      url('../images/slider1.jpg');
}

.slide2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                      url('../images/slider2.png');
}

.slide3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                      url('../images/slider3.jpg');
}

/* Slide Text */
.slide-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.6);
    max-width: 600px;
}

.slide-text h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.slide-text p {
    font-size: 20px;
}
.vehicle-rental-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
}

.rental-cards-container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.rental-card {
    background-color: #ffffff;
    padding: 30px 15px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 280px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
}

.rental-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.icon-container {
    background-color: #e68842;
    border-radius: 50%;
    padding: 20px 17px;
    display: inline-block;
    margin-bottom: 0;
}

.rental-icon {
    font-size: 35px;
    color: #fff;
}

.rental-card h3 {
    font-size: 22px;
    color: #34495e;
    margin-bottom: 10px;
}

.rental-card p {
    font-size: 16px;
    color: #555;
    margin: 8px 0;
}

.rental-card p strong {
    font-weight: bold;
    color: #e68842;
}

.rental-card a {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 30px;
    background-color: #2c3e50;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.rental-card a:hover {
    background-color: #e68842;
}
.enquiry-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background-color: #2c3e50;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.enquiry-btn:hover {
    background-color: #e68842;
}

/* Animation */
@keyframes slideAnimation {
    0% { transform: translateX(0%); }
    33% { transform: translateX(0%); }
    38% { transform: translateX(-100%); }
    71% { transform: translateX(-100%); }
    76% { transform: translateX(-200%); }
    100% { transform: translateX(-200%); }
}
.enquiry-section {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
  }
  
  .enquiry-section .section-title {
    font-size: 2em;
    margin-bottom: 10px;
    color: #222;
  }
  
  .enquiry-description {
    color: #555;
    margin-bottom: 30px;
    font-size: 1rem;
  }
  
  .enquiry-form {
    max-width: 700px;
    margin: auto;
    text-align: left;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .submit-btn {
    background-color: #fd6e36;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .submit-btn i {
    margin-right: 8px;
  }
  
  .footer-section {
    background: #222;
    color: #ddd;
    padding: 40px 20px;
    text-align: center;
  }
  
  .footer-content {
    max-width: 800px;
    margin: auto;
  }
  
  .footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .footer-contact p {
    margin: 10px 0;
    font-size: 0.95rem;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}
  .footer-copy {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #fff;
  }
  /* Adjust the slick container if needed */
  .slick-marquee-container {
    width: 100%;
    max-width: 100%;
  }
  
  .slick-slide img {
    width: 150px;
    height: auto;
  }
  .slick-list.draggable {
    background: #ffffff;
    /* border: 1px solid #d5d5d5; */
    padding: 25px 0 !important;
}
.tech {
    width: 100%;
    margin: 0;
    overflow: hidden;
}
.tech img {
    width: 100%;
    height: auto;
}
.mob-icon {
    display: none;
}
.map-container {
    margin-top: 50px;
}
.inner {
    margin: 0 40px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
}
    /* Media Queries for Responsive Design */  
/* Responsive */
@media (max-width: 768px) {
    .slide-text h1 {
        font-size: 28px;
    }
    .mob-icon {
        display: block;
    }
    .slide-text p {
        font-size: 16px;
    }

    .slide-text {
        left: 5%;
        right: 5%;
        max-width: 90%;
    }
    .rental-cards-container {
        flex-direction: column;
        align-items: center;
    }

    .rental-card {
        margin-bottom: 30px;
        width: 90%;
    }
}
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background-color: #fff;
    padding: 30px;
    flex: 1 1 22%;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #34495e;
    margin-top: 15px;
}

.service-card p {
    color: #555;
}

/* Custom Icon Styles */
.service-icon {
    font-size: 48px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.icon-logistics {
    color: #2980b9;
}

.icon-vehicle {
    color: #e74c3c;
}

.icon-spareparts {
    color: #27ae60;
}

.icon-supplychain {
    color: #f39c12;
}

.icon-cargo {
    color: #8e44ad;
}

/* Hover Effects */
.service-card:hover .service-icon {
    transform: scale(1.2);
}
.btn-contact {
    display: inline-block;
    margin-top: 15px;
    padding: 15px 30px;
    background-color: #ffffff26;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: 2px solid #fff;
}
  
  .btn-contact:hover {
    background-color: #ffffff26;
}
/* .slick.marquee.slick-marquee-container.slick-initialized.slick-slider {
    display: none;
} */
.social-icons {
    margin-top: 10px;
  }
  
  .social-icons a {
    color: #fff;
    margin-right: 10px;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #00aced; /* Or any accent color you prefer */
  }


  .about-banner {
    background: linear-gradient(
        rgba(0, 0, 0, 0.5), 
        rgba(0, 0, 0, 0.5)
      ), 
      url('../images/about-banner.jpg') center/cover no-repeat;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .banner-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .about-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .about-banner p {
    font-size: 1.1rem;
    line-height: 1.8;
  }
  
/* Section Styling */
.mission-vision-section {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 60px 0;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    margin: 40px 0;
    border-radius: 10px;
    margin-top: 0;
    padding-top: 0;
  }
  
  /* Mission & Vision Boxes */
  .mission, .vision {
    width: 48%; /* Adjusted for responsiveness */
    padding: 30px;
    background-color: #f1f1f1;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }
  
  /* Mission Box (Blue Accent) */
  .mission {
    background-color: #e3f2fd;
    border-left: 5px solid #2196f3;
  }
  
  /* Vision Box (Green Accent) */
  .vision {
    background-color: #e8f5e9;
    border-left: 5px solid #4caf50;
  }
  
  /* Hover Effect */
  .mission:hover, .vision:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  }


  .inner-mission {
    display: flex
;
    gap: 30px;
    text-align: center;
}
.mission h2 {
    margin-bottom: 0;
    margin-top: 0;
    line-height: inherit;
    height: auto;
}
.vision h2 {
    margin-bottom: 0;
    margin-top: 0;
    line-height: inherit;
    height: auto;
}
section.about-banner h2 {
    color: #fff;
}
.contact-item a {
    color: #34495e;
    text-decoration: none;
}
.footer-contact a {
    color: #ddd;
    text-decoration: none;
}
.contact-info a {
    color: #2c3e50;
    text-decoration: none;
}
.inner {
    margin: 0 40px;
}
.footer-copy a {
    color: #fff;
    text-decoration: none;
}
/* Responsive */
@media (max-width: 768px) {
    .service-card {
        flex: 1 1 100%;
        margin-bottom: 30px;
    }

    .service-card h3 {
        font-size: 24px;
    }

    .service-icon {
        font-size: 40px;
    }
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        width: 100%;
        background: #302727;
        top: 0;
        left: 0;
        right: 0;
        padding: 20px;
        gap: 20px;
        margin-top: 95px;
        display: none;
    }
    .nav-links.active {
        display: flex;
    }
    div#mob-icon svg {
        width: 25px;
    }
    .header-contact {
        display: flex;
        justify-content: flex-end;
        gap: 10px;
        flex-wrap: wrap;
        align-items: center;
    }
    .header-top {
        background-color: #f7f7f7;
        border-bottom: 1px solid #ddd;
        padding: 10px 0;
        font-size: 14px;
    }
    .slider {
        position: relative;
        height: 300px;
        overflow: hidden;
    }
    .slides {
        width: 100%;
    }
    .slide {
        width: 100%;
        flex-shrink: 0;
        height: 100%;
        background-size: cover;
        background-position: center;
        position: relative;
    }
    .about-us-section {
        padding: 5px 0;
        background-color: #fff;
    }
    .about-content h2 {
        font-size: 26px;
        line-height: 33px;
        margin-bottom: 10px;
    }
    .about-grid {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 9px;
    }
    .service-card {
        flex: 1 1 100%;
        margin-bottom: 30px;
        padding: 20px 0px;
    }
    .services {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0px;
        margin-top: 30px;
    }
    .service-card p {
        color: #555;
        padding: 0 20px;
    }
    .service-card h3 {
        font-size: 24px;
        margin-bottom: 0;
    }
    .vehicle-rental-section {
        background-color: #f9f9f9;
        padding: 0px 20px;
        text-align: center;
    }
    .section-title {
        font-size: 30px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 25px;
    }
    .submit-btn {
        background-color: #fc6f37;
        color: white;
        border: none;
        padding: 12px 25px;
        font-size: 1rem;
        border-radius: 4px;
        cursor: pointer;
    }
    .enquiry-form {
        max-width: 700px;
        margin: auto;
        text-align: left;
        padding-left: 15px;
    }
    .enquiry-section {
        padding: 15px 20px;
        background: #f9f9f9;
        text-align: center;
        margin-bottom: 25px;
    }
    .nav-links.active {
        display: flex;
        width: auto;
        gap: 0;
        padding-top: 0;
    }
    ul#nav-links li {
        display: block;
        width: 100%;
        border-bottom: 1px solid #ccc;
        padding: 10px 0;
    }
    .nav-links li a {
        text-decoration: none;
        color: #ffffff;
        font-weight: 600;
        transition: color 0.3s ease, border-bottom 0.3s ease;
        padding: 5px 0;
        border-bottom: 2px solid transparent;
        font-weight: 500;
        font-size: 14px;
    }
    section#enquiry-form .container {
        width: 100%;
    }
    .slide-text h1 {
        font-size: 28px;
        line-height: 30px;
        margin-bottom: 0;
    }
    .slide-text p {
        font-size: 16px;
        padding: 0;
        margin: 10px;
    }
    .btn-contact {
        display: inline-block;
        margin-top: 5px;
        padding: 8px 15px;
        background-color: #ffffff26;
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
        font-weight: 400;
        transition: background-color 0.3s ease;
        border: 2px solid #fff;
        font-size: 13px;
    }
    .mission-vision-section {
        flex-direction: column;
        gap: 20px;
      }
    
      .mission, .vision {
        width: auto;
      }
      .inner-mission {
        display: grid;
    }
    .about-infoimg {
        display: none;
    }
    .mission {
        background-color: #e3f2fd;
        border-left: none;
        border-top: 5px solid #2196f3;
    }
    .vision {
        background-color: #e8f5e9;
        border-left: none;
        border-top: 5px solid #4caf50;
    }
    section.about-banner {
        padding: 20px;
        margin-top: 0;
        height: 260px;
        display: grid;
        align-items: center;
    }
    section.about-banner h2 {
        color: #fff;
        font-size: 28px;
        line-height: 30px;
        margin-bottom: 0;
        text-transform: capitalize;
    }
    .about-banner p {
        line-height: 24px;
        font-size: 16px;
        padding: 0;
        margin: 10px;
    }
    .inner {
        margin: 0 10px;
    }
    .footer-contact p {
        margin: 10px 0;
        font-size: 0.95rem;
        display: block;
        gap: 5px;
        align-items: center;
        justify-content: center;
    }
    .footer-contact p i {
        margin-right: 5px;
    }
}
