/* =====================================

   GLOBAL FIX & BASE

===================================== */

html, body {

    width: 100%;

    overflow-x: hidden;

}

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

body, h1, h2, h3, h4, h5, h6, p, a, button, input {

    font-family:  'Roboto', Arial, sans-serif;
}

body {

    font-size: 16px;
    line-height: 1.7;
    color: #00204c;
    background: #ffffff;
}



img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {

text-decoration: none;

    color: #b90c14;
    transition: 0.3s;
}

a:hover {
    color: #00204c;

}



/* ===== GLOBAL SECTION SPACING ===== */

section {

    padding: 55px 0;

}

@media (max-width: 768px) {

    section {

        padding: 40px 0;

    }

}



/* ===== CONTAINER ===== */

.container {

    max-width: 1200px;

    margin: auto;

    padding: 0 20px;

}



/* =====================================

   BUTTONS

===================================== */

.btn {

    display: inline-block;

    padding: 12px 28px;

    border-radius: 8px;

    font-weight: 500;

    transition: 0.3s;

}



.btn-primary {

    background: #b90c14;

    color: #fff;

}



.btn-primary:hover {

    background: #00204c;

}



.btn-red {

    background: #00204c;

    color: #fff;

}



.btn-red:hover {

    background: #b90c14;

}



/* =====================================

   HERO

===================================== */




.hero-flex {

    max-width: 1200px;

    margin: auto;

    padding: 110px 20px 70px;

    display: grid;

    grid-template-columns: 1.2fr 1fr;

    gap: 40px;

    align-items: center;

}



.hero-left h1 {

    font-size: clamp(2rem, 4vw, 3rem);

    margin-bottom: 14px;

}



.hero-left p {

    color: rgba(255,255,255,0.9);

    margin-bottom: 18px;

}
/* HERO BASE */
/* =====================================
   HERO SLIDER FINAL
===================================== */

.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    min-height: 90vh; /* FIXED HEIGHT */
}

/* SLIDER BACKGROUND */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* SLIDES */
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

/* ACTIVE */
.slide.active {
    opacity: 1;
}

/* IMAGES */
.slide:nth-child(1) {
    background:
        linear-gradient(rgba(0,32,76,0.75), rgba(0,32,76,0.75)),
        url('../image/homepagecover.webp') center/cover no-repeat;
}

.slide:nth-child(2) {
    background:
        linear-gradient(rgba(0,32,76,0.75), rgba(0,32,76,0.75)),
        url('../image/request.webp') center/cover no-repeat;
}

.slide:nth-child(3) {
    background:
        linear-gradient(rgba(0,32,76,0.75), rgba(0,32,76,0.75)),
        url('../image/homepage5.webp') center/cover no-repeat;
}

/* CONTENT ABOVE SLIDER */
.hero-flex {
    position: relative;
    z-index: 2;

    max-width: 1200px;
    margin: auto;
    padding: 110px 20px 70px;

    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

/* MOBILE */
@media (max-width: 900px) {
    .hero-flex {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* =====================================
   TRACKING CARD
===================================== */

.tracking-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.tracking-card h4 {
    text-align: center;
    margin-bottom: 15px;
}

.tracking-card .form-group {
    margin-top: 12px;
    text-align: left;
}

.tracking-card label {
    font-size: 13px;
    font-weight: 600;
    color: #00204c;
    display: block;
    margin-bottom: 5px;
}

.tracking-card input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: 0.3s ease;
}

.tracking-card input:focus {
    border-color: #b90c14;
    outline: none;
    box-shadow: 0 0 0 3px rgba(185,12,20,0.1);
}

.tracking-card .btn-red {
    width: 100%;
    margin-top: 18px;
}

.error {
    color: #b90c14;
    font-size: 0.9rem;
    margin-top: 8px;
}


@media (max-width: 900px) {

    .hero-flex {

        grid-template-columns: 1fr;

        text-align: center;

    }

}
/* ================= COOKIE POPUP CENTER ================= */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);

    background: #00204c;
    color: #fff;
    padding: 20px 25px;
    border-radius: 10px;

    display: none;
    z-index: 9999;

    width: 90%;
    max-width: 500px;

    box-shadow: 0 8px 25px rgba(0,0,0,0.3);

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* TEXT */
.cookie-banner p {
    margin-bottom: 15px;
    font-size: 14px;
}

/* BUTTON CONTAINER */
.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* ACCEPT */
.accept-btn {
    background: #ffcc00;
    color: #000;
    border: none;
    padding: 8px 18px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

/* DECLINE */
.decline-btn {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 8px 18px;
    border-radius: 5px;
    cursor: pointer;
}

/* HOVER */
.accept-btn:hover {
    background: #e6b800;
}

.decline-btn:hover {
    background: #fff;
    color: #000;
}
/* TRACK SHIPMENT BUTTON */
button[name="track_submit"] {
    background-color: #b90c14;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
       margin-top: 8px;
}

/* Hover Effect */
button[name="track_submit"]:hover {
    background-color: #00204c;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* Click Effect */
button[name="track_submit"]:active {
    transform: scale(0.97);
    box-shadow: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    button[name="track_submit"] {
        width: 100%;
        padding: 14px;
        font-size: 16px;
    }
}


/* =====================================

   FEATURE SPLIT

===================================== */

.feature-grid {

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 50px;

    align-items: center;

}



.feature-image img {

    border-radius: 8px;

}



.feature-content h2 {

    font-size: 2rem;

    margin-bottom: 10px;

}



.feature-line {

    width: 60px;

    height: 4px;

    background: #b90c14;

    margin-bottom: 18px;

}



.feature-content p {

    color: #5a6f8f;

    margin-bottom: 14px;

}



@media (max-width: 900px) {

    .feature-grid {

        grid-template-columns: 1fr;

    }

}



/* =====================================

   ABOUT INTRO

===================================== */

.about-intro {

    text-align: center;

}



.about-title {

    margin-bottom: 14px;

}



.about-lead, .about-text {

    margin: auto;

    color: #5a6f8f;

    margin-bottom: 20px;

    max-width: 800px;

}



.about-features {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 28px;

    margin-top: 30px;

}



.about-feature img {

    width: 44px;

    margin: auto auto 8px;

}



.about-feature h6 {

    margin-bottom: 4px;

}



.about-feature p {

    font-size: 0.9rem;

    color: #6b7f9d;

}



@media (max-width: 900px) {

    .about-features {

        grid-template-columns: repeat(2,1fr);

    }

}



@media (max-width: 500px) {

    .about-features {

        grid-template-columns: 1fr;

    }

}



/* =====================================

   STORY GRID

===================================== */

.story-grid-section {

    padding: 55px 0;

}



.story-section-title {

    text-align: center;

    letter-spacing: 2px;

    margin-bottom: 35px;

}



.story-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 45px;

}



.story-item {

    text-align: center;

}



.story-item img {

    width: 100%;

    height: 320px;

    object-fit: cover;

    border-radius: 6px;

    margin-bottom: 16px;

}



.story-item p {

    max-width: 420px;

    margin: 0 auto 20px;

    line-height: 1.7;

    color: #5a6f8f;

}



.story-btn {

    display: inline-block;

    padding: 12px 28px;

    border-radius: 8px;

    font-weight: 500;

    transition: 0.3s;

    background: #b90c14;

    color: white;

}



.story-btn:hover {

     background: #fff;

    color: #00204c;

}



@media (max-width: 900px) {

    .story-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }



    .story-item img {

        height: 260px;

    }

}



/* =====================================

   SERVICES

===================================== */

.services-section {

    background: #f7f9fc;

}



.services-flex {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 40px;

    align-items: center;

}



.services-image img {

    border-radius: 14px;

}



.services-list {

    display: flex;

    flex-direction: column;

    gap: 16px;

}



.service-item {

    background: #fff;

    padding: 16px 18px;

    border-radius: 12px;

    display: flex;

    gap: 14px;

    box-shadow: 0 6px 18px rgba(0,0,0,0.06);

}



.service-icon {

    background: rgba(185,12,20,0.1);

    color: #b90c14;

    width: 44px;

    height: 44px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1rem;

}



.service-info h3 {

    font-size: 1rem;

    margin-bottom: 4px;

}



.service-info p {

    font-size: 0.9rem;

    color: #5a6f8f;

}



.service-info a {

    

    font-size: 1rem;

    color: #b90c14;

    margin-top: 4px;

    display: inline-block;

}



.service-info a:hover {

    

    

    color: #00204c;

}



@media (max-width: 900px) {

    .services-flex {

        grid-template-columns: 1fr;

    }

}

/* =====================================

   TESTIMONIAL SLIDER

===================================== */

.testimonial-section {

    background: #00204c;

    color: #fff;

    overflow: hidden;

}



.testimonial-wrapper {

    max-width: 1200px;

    margin: auto;

    padding: 80px 20px;

    display: grid;

    grid-template-columns: 1fr 1.2fr;

    gap: 40px;

    align-items: center;

}



/* LEFT TEXT */

.testimonial-text {

    position: relative;

}



.quote-mark {

    font-size: 5rem;

    opacity: 0.2;

    position: absolute;

    top: -30px;

    left: -10px;

}



.testimonial-text h2 {

    font-size: 1.6rem;

    line-height: 1.5;

    margin-bottom: 20px;

}



.testimonial-author strong {

    display: block;

    font-size: 1rem;

}



.testimonial-author span {

    font-size: 0.9rem;

    opacity: 0.7;

}



/* RIGHT SCROLL AREA */

.testimonial-cards {

    display: flex;

    gap: 20px;

    overflow-x: auto;

    scroll-snap-type: x mandatory;

    padding-bottom: 10px;

}



.testimonial-cards::-webkit-scrollbar {

    height: 6px;

}



.testimonial-cards::-webkit-scrollbar-thumb {

    background: rgba(255,255,255,0.3);

    border-radius: 10px;

}



.testimonial-card {

    min-width: 320px;

    height: 380px;

    border-radius: 16px;

    overflow: hidden;

    scroll-snap-align: start;

    background: #000;

}



.testimonial-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



/* MOBILE */

@media (max-width: 900px) {

    .testimonial-wrapper {

        grid-template-columns: 1fr;

        text-align: center;

    }



    .testimonial-cards {

        justify-content: start;

    }

}



/* =====================================

   FEATURES STRIP

===================================== */

.features .container {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 28px;

    margin-top: 1px;

     font-size: 1rem;

}



.feature-box h3 {

    margin-bottom: 6px;



     font-size: 1rem;

}



.feature-box p {

    color: #5a6f8f;

    font-size: 1rem;

}



@media (max-width: 768px) {

    .features .container {

        grid-template-columns: 1fr;

        text-align: center;

    }

}



/* =====================================

   CTA / SUPPORT

===================================== */

.getcall{

    background: #00204c;

    color: #fff;

}



.getcall-content {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;

}



.getcall-text p {

    color: rgba(255,255,255,0.85);

}

.getcall-button {
    display: flex;
    align-items: center;
}

.call-btn {

    background: #b90c14;

    color: #fff;

    padding: 12px 26px;

    border-radius: 8px;

    font-weight: 500;
    
    white-space: nowrap;

}



.call-btn:hover {

    background: #fff;

    color: #00204c;

}



.location-link {

    font-size: 0.8rem;

    color: #fff;

    opacity: 0.8;

}



@media (max-width: 768px) {

    .getcall-content {

        flex-direction: column;

        text-align: center;

    }

}

section {

    padding: 55px 0;

}

.about-visual-section {

  background: #00204c;

  color: #fff;

  padding: 100px 0;

}



.container {

  max-width: 1200px;

  margin: auto;

  padding: 0 20px;

}



.content-wrapper {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;

}



/* TEXT */

.text-content p {

  font-size: 18px;

  line-height: 1.8;

  margin-bottom: 25px;

  opacity: 0.9;

}



/* VIDEO */

.visual-content {

  position: relative;

}



.animated-video {

  width: 100%;

 

}







/* RESPONSIVE */

@media (max-width: 900px) {

  .content-wrapper {

    grid-template-columns: 1fr;

  }



  .stat-card {

    position: static;

    margin-top: 20px;

  }

}
/* Section setup */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

/* Video background */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay */
.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Content above video */
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 20px;
  text-align: center;
}

/* Text above cards */
.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 700px;
}

/* Cards */
.hero-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px;
  width: 260px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.card p {
  font-size: 1rem;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-cards {
    flex-direction: column;
  }
}
