* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

/* Default transparent */
.navbar {
    transition: all 0.3s ease;
    background: transparent;
}

/* When scrolled */
.navbar.scrolled {
    background: #0f1f2a;
    backdrop-filter: blur(6px);
}

/* Demo hero section */
/* .hero-section {
    height: 100vh;
    background: url(./images/header-top.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 50% 20%;
} */


.slider-section {
    height: 100vh;
}

.carousel-item {
    height: 100vh;
}

.carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    /* control speed here */
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.btn-gradient-cus {
    padding: 14px 28px;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 2px;
    color: white;
    cursor: pointer;
    background: linear-gradient(90deg, #5fd0ff, #f5b37f);
    transition: 0.3s ease;
}

/* Hover effect */
.btn-gradient-cus:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* Overlay Styling */
.custom-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    text-align: center;
}

.custom-caption h1 {
    font-size: 3rem;
    font-weight: bold;
}

.custom-caption p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Optional dark overlay for readability */
.carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.carousel-caption {
    animation: fadeUp 1s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}


/* avbout section start */

.about-section {
    background: #0f1f2b;
}

/* Image wrapper */
.image-wrapper {
    border: 2px solid #1da1f2;
    border-radius: 20px;
    padding: 10px;
}

/* Badge circle */
.badge-circle {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: #4aa3c0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.badge-circle span {
    font-size: 15px;
    color: #fff;
    padding: 10px;
    font-weight: 900;
}

/* Gradient button */
.btn-gradient {
    background: linear-gradient(90deg, #4aa3c0, #f4b183);
    color: #fff;
    border: none;
    border-radius: 30px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .badge-circle {
        width: 90px;
        height: 90px;
        font-size: 10px;
    }

    .about-section h2 {
        font-size: 1.8rem;
    }
}

#cus-about {
    font-weight: bold !important;
}

#about-us-btn-text {
    border-radius: 50px !important;
    color: white !important;
}

/* avbout section end */

/* logistics section start */


.logistics-section {
    background: #0f1f2a;
    padding: 50px;
}

.logistics-section .container {
    display: flex;
    gap: 20px;
}

/* LEFT CARD */
.logistics-section .left-card {
    flex: 2;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: url("your-image.jpg") center/cover no-repeat;
}

.logistics-section .left-card .overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    height: 100%;
    color: #fff;
}

.logistics-section .tag {
    color: white;
    font-size: 12px;
    margin-bottom: 10px;
    font-weight: 900;
}

.logistics-section .left-card h1 {
    font-size: 40px;
    margin-bottom: 15px;
    font-weight: bold;
}

.logistics-section .desc {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.logistics-section .btn {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(90deg, #5fd0ff, #f5b37f);
    color: #fff;
    cursor: pointer;
}

/* RIGHT SIDE */
.logistics-section .right-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.logistics-section .small-card {
    background: #5aaac7;
    padding: 25px;
    border-radius: 15px;
    color: #fff;
    position: relative;
}

.logistics-section .small-card.light {
    background: #8cc9da;
}

/* ARROWS */
.logistics-section .arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #6fd3ff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
}

.logistics-section .arrow.small {
    width: 40px;
    height: 40px;
    background: #0f1f2a;
    color: #6fd3ff;

}

/* RESPONSIVE */
@media (max-width: 900px) {
    .logistics-section .container {
        flex-direction: column;
    }
}

/* logistics section end */


/* ------------------------- why section start   --------------------------------------  */
.why-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

.why-section {
    background: #0f1f2a;
    padding: 80px 50px;
    color: #fff;
}

.why-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* LEFT CONTENT */
.why-section .content {
    flex: 1;
}

.why-section .content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.why-section .desc {
    color: #b0c4d4;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* PROGRESS BARS */
.why-section .progress-item {
    margin-bottom: 25px;
}

.why-section .label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.why-section .bar {
    width: 100%;
    height: 10px;
    background: #2a3b47;
    border-radius: 10px;
    overflow: hidden;
}

.why-section .fill {
    height: 100%;
    width: 0;
    /* for animation */
    background: linear-gradient(to right, #5fd0ff, #7ad7ff);
    border-radius: 10px;
    transition: width 1.5s ease-in-out;
}

/* RIGHT IMAGE */
.why-section .image {
    flex: 1;
    text-align: center;
}

.why-section .image img {
    max-width: 100%;
    height: auto;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .why-section .container {
        flex-direction: column;
    }

    .why-section .content h1 {
        font-size: 28px;
    }
}

/* ------------------------- why section end   --------------------------------------  */


/* truks type section start */

.specialties {
    display: flex;
    background: #f4f4f4;
    font-family: sans-serif;
}

.specialties .container {
    display: flex;
    width: 100%;
}

/* LEFT SIDE */
.specialties .tabs {
    width: 250px;
    background: #0f1f2a;
    display: flex;
    flex-direction: column;
    color: white;
}

.specialties .tab {
    padding: 20px;
    border-bottom: 1px solid white;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.specialties .tab:hover {
    background: #000;
    color: #fff;
}

.specialties .tab.active {
    background: #000;
    color: #fff;
}

/* RIGHT SIDE */
.specialties .content {
    flex: 1;
    padding: 60px;
    background: url("truck-bg.jpg") center/cover no-repeat;
    position: relative;
}

/* overlay */
.specialties .content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
}

.specialties .tab-content {
    position: relative;
    z-index: 2;
    display: none;
}

.specialties .tab-content.active {
    display: block;
}

.specialties .tab-content h2 {
    font-size: 32px;
    margin-bottom: 0px;
    padding-top: 10px;
}

.specialties .tab-content p {
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* BUTTONS */
.specialties button {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    background: #000;
    color: #fff;
    margin-right: 10px;
    cursor: pointer;
}

.specialties button.light {
    background: linear-gradient(90deg, #5fd0ff, #f5b37f);
    color: white;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .specialties .container {
        flex-direction: column;
    }

    .specialties .tabs {
        flex-direction: row;
        overflow-x: auto;
        width: 100%;
    }

    .specialties .tab {
        flex: 1;
        text-align: center;
    }
}

/* responsive start */

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {

    .specialties {
        flex-direction: column;
    }

    .specialties .container {
        flex-direction: column;
    }

    /* TABS → horizontal scroll */
    .specialties .tabs {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
    }

    .specialties .tabs::-webkit-scrollbar {
        display: none;
    }

    .specialties .tab {
        flex: 0 0 auto;
        padding: 15px 20px;
        font-size: 14px;
        text-align: center;
        border-right: 1px solid #00000020;
        border-bottom: none;
    }

    /* CONTENT */
    .specialties .content {
        padding: 30px 20px;
        background-position: center;
    }

    .specialties .tab-content h2 {
        font-size: 24px;
    }

    .specialties .tab-content p {
        font-size: 14px;
        max-width: 100%;
    }

    /* BUTTONS FULL WIDTH */
    .specialties button {
        width: 100%;
        margin-bottom: 10px;
    }

}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {

    .specialties .tab {
        font-size: 12px;
        padding: 12px 15px;
    }

    .specialties .tab-content h2 {
        font-size: 20px;
    }

}

/* responsive end */

.cus-box-heading {
    font-weight: 600;
    font-size: 50px;
    line-height: 1.1714;
}

/* truks type section end */

/* ----------------------- timeline start ------------------------- */

.timeline-header h2 {
    padding-bottom: 25px;
}

.timeline3 {
    background: #0f1f2a;
    padding: 80px 40px;
    color: #fff;
}

.timeline3 .container {
    max-width: 1200px;
    margin: auto;
}

/* GRID */
.timeline3 .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

/* ITEM */
.timeline3 .item {
    position: relative;
}

/* DOT */
.timeline3 .dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 10px;
    box-shadow: 0 0 10px white;
}

/* NUMBER */
.timeline3 h2 {
    color: white;
    margin-bottom: 10px;
}

/* TITLE */
.timeline3 h4 {
    margin-bottom: 10px;
    font-weight: 500;
}

/* TEXT */
.timeline3 p {
    font-size: 14px;
    color: #ddd;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .timeline3 .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .timeline3 .grid {
        grid-template-columns: 1fr;
    }
}

/* ----------------------- timeline end ------------------------- */

/* ----------------------- FAQS start ------------------------- */

.faq {
    padding: 80px 40px;
    background: #f5f5f5;
    text-align: center;
}

.faq .container {
    max-width: 1100px;
    margin: auto;
}

.faq h2 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #000;
}

.faq .subtitle {
    color: #666;
    margin-bottom: 50px;
}

/* GRID */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    text-align: left;
}

/* ITEM */
.faq-item {
    background: #eaeaea;
    padding: 20px;
    border-radius: 6px;
    cursor: pointer;
}

/* QUESTION */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

/* PLUS BUTTON */
.faq-question span {
    background: #ffd84d;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

/* ANSWER */
.faq-answer {
    margin-top: 15px;
    display: none;
    color: #444;
    line-height: 1.6;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question span {
    content: "-";
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq {
        padding: 60px 20px;
    }

    .faq h2 {
        font-size: 26px;
    }
}




/* ----------------------- FAQS end ------------------------- */


/*------------------------ footer start ---------------------------*/
.footer {
    background: #0f1f2a;
    padding: 60px 40px;
    color: #b0c4d4;
}

.footer .container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

/* LOGO */
.footer .logo {
    color: #5fd0ff;
    font-size: 32px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

/* TEXT */
.footer p {
    line-height: 1.6;
    margin-bottom: 20px;
}

/* HEADINGS */
.footer h4 {
    color: #fff;
    margin-bottom: 15px;
}

/* LINKS */
.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #b0c4d4;
    text-decoration: none;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: #5fd0ff;
}

/* SOCIAL ICONS */
.footer .socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #163342;
    border-radius: 50%;
    margin-right: 10px;
    color: #5fd0ff;
    transition: 0.3s;
    text-decoration: none;
}

.footer .socials a:hover {
    background: #5fd0ff;
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer .container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 40px 20px;
    }

    .footer .container {
        grid-template-columns: 1fr;
    }
}

.footer-col ul {
    padding-left: 0;
}

.navbar-logo-img {
    width: 200px;
}

/*------------------------ footer end ---------------------------*/

/* contact section */

/* FULL WIDTH BACKGROUND */
.contact-section {
    width: 100%;
    background: #0f1f2a;
    color: #fff;
    padding: 80px 20px;
    border-bottom: 1px solid white;
}

/* CENTER CONTAINER */
.contact-section .container {
    max-width: 1200px;
    margin: auto;
}

/* TEXT */
.contact-section .sub-title {
    color: #3ec1d3;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-section .title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-section .description {
    color: #bcd0d9;
    max-width: 700px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

/* ITEMS */
.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-item h4 {
    margin-bottom: 5px;
    font-size: 14px;
    color: #ffffff;
}

.contact-item p {
    color: #cbd5dc;
    font-size: 14px;
    line-height: 1.5;
}

/* ICON STYLE */
.icon {
    width: 50px;
    height: 50px;
    background: #2bbcd3;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    flex-shrink: 0;
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 15px;
    }

    .contact-section .title {
        font-size: 28px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* contact section */

.footer-bottom {
  width: 100%;
  background: #0b1f2a;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 15px;
}

.footer-bottom .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Text */
.footer-bottom p {
  color: #9fb3bd;
  font-size: 14px;
}

/* Links */
.footer-links {
  display: flex;
  gap: 25px;
}

.footer-links a {
  color: #9fb3bd;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

/* Hover Effect */
.footer-links a:hover {
  color: #2bbcd3;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .footer-bottom .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-links {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
}


@media (min-width: 320px) and (max-width: 786px) {
  .badge-circle span{
      font-size: 10px;
  }
  .logistics-section .left-card h1{
      font-size: 18px;
  }
  .logistics-section .desc{
    font-size: 14px;
  }
}

/* dispatch services section start */


/* SECTION */
.dispatch-services {
    background: gray;
    padding: 60px 20px;
    color: #fff;
    font-family: Arial, sans-serif;
}

.dispatch-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADING */
.dispatch-top {
    text-align: center;
    color: #4fb3d9;
    font-size: 16px;
    margin-top: 50px;
    width: 100%;
    font-weight: bold;
}

.dispatch-heading {
    text-align: center;
    font-size: 32px;
    /* margin-bottom: 40px; */
    width: 100%;
}

/* GRID */
.dispatch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* CARD */
.dispatch-card {
    position: relative;
    border: 1px solid #000;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.4s;
}

/* IMAGE */
.dispatch-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.4s;
}

/* OVERLAY */
.dispatch-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    transition: 0.4s;
}

/* CONTENT */
.dispatch-card-content {
    position: absolute;
    bottom: 0;
    padding: 20px;
    z-index: 2;
}

.dispatch-card h3 {
    margin: 5px 0 15px;
}

/* TAG */
.dispatch-tag {
    font-size: 16px;
    color: red;
    font-weight: bold;
}

/* INFO */
.dispatch-info p {
    font-size: 23px;
    margin: 2px 0;
    color: #ddd;
}

/* HOVER EFFECT */
.dispatch-card:hover .dispatch-card-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.dispatch-card:hover .dispatch-overlay {
    background: rgba(0, 0, 0, 0.3);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .dispatch-grid {
        grid-template-columns: repeat(2, 1fr);
    }


}

@media (max-width: 576px) {
    .dispatch-grid {
        grid-template-columns: 1fr;
    }

    .dispatch-heading {
        font-size: 24px;
    }

    .dispatch-card-content {
        left: 0;
        right: 0;
    }
}

/* dispatch services section end */
