@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Public+Sans:ital,wght@0,100..900;1,100..900&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&family=Syne:wght@400..800&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background: white;
    width: 100%;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}
.title{
    font-family: Outfit, sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    color: rgb(18, 19, 21);
}

header{
  width:100%;
  border-bottom:1px solid var(--border);
  background:transparent;
  position:sticky; /* optional */
  top:0;
  z-index:1000;
}

.site-nav{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:15px 75px;
  gap:24px;
}

.logo img{
  width:90px;height:90px;object-fit:cover;
}

/* Hamburger button */
.menu-toggle{
  display:none;
  position:relative;
  width:44px;height:44px;
  border:0;background:transparent;cursor:pointer;
}
.menu-toggle .bar{
  position:absolute; left:9px; right:9px; height:2px; background:#000; border-radius:1px;
  transition:transform .3s ease, opacity .2s ease, top .3s ease;
}
.menu-toggle .bar:nth-child(1){ top:14px; }
.menu-toggle .bar:nth-child(2){ top:21px; }
.menu-toggle .bar:nth-child(3){ top:28px; }
.menu-toggle.is-active .bar:nth-child(1){ top:21px; transform:rotate(45deg); }
.menu-toggle.is-active .bar:nth-child(2){ opacity:0; }
.menu-toggle.is-active .bar:nth-child(3){ top:21px; transform:rotate(-45deg); }

/* Panel layout (desktop) */
.nav-panel{
  display:flex; align-items:center; gap:40px; flex:1; justify-content:flex-end;
}
.nav-links{
  display:flex; align-items:center; gap:37px; list-style:none; margin:0; padding:0;
}
.nav-links a{
  text-decoration:none; font-weight:500; color:#000; transition:color .25s ease;
}
.nav-links a:hover{ color:var(--accent); }

.call-delivery{ display:flex; align-items:center; gap:40px; }
.call-box{ display:flex; align-items:center; gap:14px; }
.call-box img{ width:50px;height:50px; }
.call-box p{ margin:0; display:flex; flex-direction:column; align-items:flex-start; font-weight:500; color:#000; }
.call-box p span:first-child{ background:#cecece; font-size:13px; padding:3px 11px; }
.delivery-box{ background:#cecece; padding:12px 22px; transition:all .25s ease; cursor:pointer; }
.delivery-box a{ color:#000; text-decoration:none; }
.delivery-box:hover{ background:red; }
.delivery-box:hover a{ color:#fff; }

/* ===== Responsive ===== */
@media (max-width:1024px){
  .site-nav{ padding:15px 28px; }
  .logo img{ width:70px; height:70px; }
}

@media (max-width:900px){
  /* show hamburger, make panel collapsible */
  .menu-toggle{ display:block; }
  .nav-panel{
    position:absolute; left:0; right:0; top:100%;
    background:#fff;
    box-shadow:0 10px 20px rgba(0,0,0,.08);
    display:flex; flex-direction:column; align-items:stretch;
    gap:0;
    max-height:0; overflow:hidden;
    transition:max-height .32s ease;
  }
  .nav-panel.open{ max-height:1000px; } /* big enough to fit contents */

  .nav-links{
    flex-direction:column; align-items:flex-start; gap:14px;
    padding:16px 20px; border-bottom:1px solid var(--border);
  }
  .nav-links a{ padding:6px 0; }

  .call-delivery{
    display:flex; flex-direction:column; align-items:flex-start; gap:14px;
    padding:14px 20px 18px;
  }
  body.no-scroll{ overflow:hidden; } /* prevent body scroll when menu is open */
}

@media (max-width:480px){
  .logo img{ width:60px;height:60px; }
  .nav-links a{ font-size:14px; }
  .call-box p span:first-child{ font-size:11px; }
  .call-box p span:last-child{ font-size:13px; }
}
/* Unique Carousel Styles */
.jv-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
}

.jv-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.jv-carousel-slide.active {
    opacity: 1 !important;
    z-index: 1;
}

.jv-carousel-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 1;
    pointer-events: none;
}


.jv-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.jv-carousel-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
    max-width: 500px;
    animation: jv-fadeUp 1s ease-in-out;
}

.jv-carousel-content small {
    letter-spacing: 2px;
    font-size: 14px;
    color: #FFD2B1;
}

.jv-carousel-content h2 {
    font-size: 42px;
    font-weight: bold;
    line-height: 1.2;
    margin: 10px 0;
    animation: jv-fadeUp 1.2s ease-in-out;
}

.jv-carousel-btn {
    display: inline-block;
    background: #d62828;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    animation: jv-fadeUp 1.4s ease-in-out;
}

.jv-carousel-btn:hover {
    background: #e63946;
}

/* Navigation buttons */
.jv-carousel-prev,
.jv-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 12px 18px;
    cursor: pointer;
    font-size: 20px;
    z-index: 2;
    transition: background 0.3s ease;
}

.jv-carousel-prev:hover,
.jv-carousel-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.jv-carousel-prev {
    left: 10px;
}

.jv-carousel-next {
    right: 10px;
}

/* Fade-up animation */
@keyframes jv-fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap; /* stack on smaller screens */
    padding: 20px;
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
    gap: 20px;
}

.carousel-bottom-first,
.carousel-bottom-second {
    flex: 1 1 300px; /* grow/shrink, min 300px */
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f7f7f7;
    border-radius: 12px;
    padding: 20px 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.carousel-bottom-first:hover,
.carousel-bottom-second:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.carousel-bottom-first img,
.carousel-bottom-second img {
    height: 70px;
    width: 70px;
    object-fit: cover;
    background: #c40000; /* matches your accent */
    padding: 10px;
    border-radius: 50%; /* makes it a circle */
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.carousel-bottom-first h2,
.carousel-bottom-second h2 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.about-company {
    padding: 60px 20px;
    background: #fff;
    margin-bottom: 37px;
}

.about-company .container {
    max-width: 1200px;
    margin: auto;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

/* Left Text Section */
.about-text {
    flex: 1 1 500px;
}

.about-tag {
    color: red;
    font-size: 14px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.about-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
    line-height: 1.3;
}

.about-desc {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

.about-feature {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.feature-icon {
    color: red;
    font-size: 22px;
    margin-right: 10px;
}

.feature-text h4 {
    margin: 0;
    font-weight: bold;
}

.feature-text p {
    margin: 2px 0 0;
    font-size: 14px;
    color: #666;
}

/* Bullet List */
.about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.about-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #000;
}

.about-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: red;
}

/* Button */
.about-btn {
    display: inline-block;
    padding: 12px 25px;
    background: red;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 0;
    transition: background 0.3s ease;
}

.about-btn:hover {
    background: #c40000;
}

/* Right Image */
.about-image {
    position: relative;
    flex: 1 1 400px;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: red;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
}

.experience-badge h3 {
    font-size: 28px;
    margin: 0;
}

.experience-badge span {
    font-size: 14px;
}

.quote-bg {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.quote-bg::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.quote-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-tabs {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
}

.tab {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
    cursor: pointer;
}

.tab.active {
    background: red;
    color: #fff;
}

.tab i {
    font-size: 18px;
}

/* Form Container */
.quote-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    background: #fff;
    padding: 50px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 57px;
}

/* Left Form */
.quote-form {
    flex: 1 1 600px;
}

.quote-form h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row.no-wrap {
    flex-wrap: nowrap; /* force all 3 to stay in the same row */
}

.form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-weight: 500;
    margin-bottom: 5px;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row select {
    padding: 12px;
    padding-left: 17px;
    padding-right: 17px;
    height: 50px;
    border: 1px solid #ddd;
    background: #F3F4F7;
    border-radius: 4px;
}

.form-row input[type="text"]::placeholder,
.form-row input[type="email"]::placeholder,
.form-row select::placeholder{
    font-family: "Open Sans", sans-serif;
}

.form-row.full-width {
    flex-direction: column;
}

.price-range-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-row.full-width input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    background: transparent;
    --percent: 60%; /* default 6000 value */
}

/* Track styling (WebKit browsers) */
input[type="range"]::-webkit-slider-runnable-track {
    height: 6px;
    background: linear-gradient(to right, red var(--percent), #ddd var(--percent));
    border-radius: 3px;
}

/* Thumb styling (WebKit) */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: red;
    cursor: pointer;
    margin-top: -6px;
}

/* Firefox track */
input[type="range"]::-moz-range-track {
    height: 6px;
    background: #ddd;
    border-radius: 3px;
}

/* Firefox filled portion */
input[type="range"]::-moz-range-progress {
    background: red;
    height: 6px;
    border-radius: 3px;
}

/* Firefox thumb */
input[type="range"]::-moz-range-thumb {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: red;
    cursor: pointer;
}

.submit-btn {
    background: red;
    color: white;
    font-weight: bold;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

.submit-btn:hover {
    background: #c40000;
}



/* Right Image */
.quote-image {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quote-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
}

.quote-bottom {
    width: 100%;
    display: flex;
    min-height: 0; /* Fixes flexbox sizing issues */
}

.quote-bottom-image, 
.quote-bottom-content {
    width: 50%;
    display: flex;
}

/* Image Section */
.quote-bottom-image img {
    width: 100%;
    height: 180px; /* Fixed ideal height */
    object-fit: cover;
    object-position: center;
}

/* Content Section */
.quote-bottom-content {
    justify-content: center;
    align-items: center;
    background: #c40000;
    padding: 1.5rem 2rem; /* Perfect padding */
    height: 180px; /* Matches image height */
    box-sizing: border-box;
}

.quote-bottom-content p {
    font-size: 1rem; /* Perfect readable size */
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.4; /* Tighter but readable */
    max-width: 500px; /* Prevents over-stretching */
}

#courier-services-section {
    background-color: #1a1a1a;
    color: white;
    padding: 50px 20px;
}

.courier-services-container {
    display: flex;
    max-width: 1200px;
    gap: 50px;
    margin: auto;
    align-items: stretch; /* Makes both columns same height */
}

.courier-services-left {
    flex: 1 1 300px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.courier-services-subtitle {
    color: #ff3b3b;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
}

.courier-services-heading {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
}

.courier-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1; /* Makes list stretch */
}

.courier-services-list li {
    padding: 15px 10px;
    border-bottom: 1px solid #333;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}

.courier-services-list li.active,
.courier-services-list li:hover {
    background-color: #111;
    color: #ff3b3b;
}

.courier-services-right {
    flex: 1 1 300px;
    position: relative;
}

.courier-services-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.courier-services-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.courier-services-image img.fade-out {
    opacity: 0;
}

.courier-services-caption {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
    border-radius: 5px;
}

.courier-services-caption h3 {
    margin: 0;
    font-size: 18px;
}

.courier-services-caption a {
    color: white;
    text-decoration: underline;
    font-size: 14px;
}

#whychooseus-section {
  padding: 60px 20px;
  background: #fff;
  /* margin-top: 37px; */
  margin-bottom: 47px;
}
.whychooseus-inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}
.whychooseus-left {
  flex: 1 1 45%;
}
.whychooseus-subtitle {
  color: #d50000;
  font-weight: bold;
  margin-bottom: 10px;
}
.whychooseus-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}
.whychooseus-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.whychooseus-right {
  flex: 1 1 45%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.whychooseus-card {
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 5px;
  background: #fff;
}
.whychooseus-card h4 {
  font-weight: bold;
  margin-bottom: 10px;
}
.whychooseus-card p {
  font-size: 0.95rem;
  color: #555;
}

/* ABOUT US */
#custom-aboutus-page {
  color: #111;
}
.custom-aboutus-intro {
  padding: 60px 20px;
  background: #fff;
}
.custom-aboutus-intro-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.custom-aboutus-text {
  flex: 1 1 50%;
}
.custom-aboutus-subtitle {
  color: #d50000;
  font-weight: bold;
  margin-bottom: 10px;
}
.custom-aboutus-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.custom-aboutus-desc {
  margin-bottom: 20px;
  color: #555;
}
.custom-aboutus-list h4 {
  color: #d50000;
  margin-bottom: 5px;
}
.custom-aboutus-list p {
  margin-bottom: 15px;
  color: #666;
}
.custom-aboutus-list ul {
  padding-left: 20px;
}
.custom-aboutus-list ul li {
  margin-bottom: 8px;
}

.custom-aboutus-image {
  flex: 1 1 40%;
  position: relative;
}
.custom-aboutus-image img {
  width: 100%;
  border-radius: 5px;
}
.custom-aboutus-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #d50000;
  color: #fff;
  padding: 15px;
  text-align: center;
  border-radius: 4px;
}
.badge-number {
  font-size: 2rem;
  font-weight: bold;
  display: block;
}
.badge-text {
  font-size: 0.9rem;
}
.custom-aboutus-marquee {
  background: #fff;
  text-align: center;
  padding: 15px;
  font-weight: bold;
  font-size: 1.2rem;
  color: #555;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.custom-aboutus-marquee span{
  padding-left: 21px;
  padding-right: 21px;
}
.custom-aboutus-process {
  padding: 60px 20px;
  background: #f9f9f9;
}
.custom-aboutus-process-header {
  max-width: 1200px;
  margin: auto;
  text-align: left;
  margin-bottom: 40px;
  position: relative;
}
.process-subtitle {
  color: #d50000;
  font-weight: bold;
  margin-bottom: 10px;
}
.process-title {
  font-size: 1.8rem;
  font-weight: bold;
}
.process-btn {
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  border: 1px solid #111;
  padding: 8px 15px;
  text-decoration: none;
  color: #111;
  border-radius: 3px;
}
.process-btn:hover {
  background: #111;
  color: #fff;
}
.custom-aboutus-process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}
.process-step {
  background: #fff;
  flex: 1 1 calc(33.333% - 20px);
  padding: 20px;
  border-radius: 5px;
  position: relative;
}
.process-number {
  font-size: 2rem;
  font-weight: bold;
  color: #ccc;
  position: absolute;
  top: 10px;
  right: 15px;
}
.custom-aboutus-stats {
  position: relative;
}

.stats-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.stats-overlay {
  position: absolute;
  top: 20%;
  left: 10%;
  color: #111;
  display: flex;
  flex-direction: column;
  background: white;
  gap: 20px;
  padding: 40px;
  max-width: 400px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
}

.stats-overlay hr {
  height: 2px;
  width: 100%;
  background: #d50000;
}

.stats-box h3 {
  font-size: 2rem;
  font-weight: bold;
}

.stats-box p {
  margin-top: 5px;
  font-size: 1rem;
}

.stats-flex {
  display: flex;
  gap: 30px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.stats-flex .stats-btn {
  background: transparent;
  border: 1px solid #111;
  padding: 8px 15px;
  text-decoration: none;
  color: #111;
  border-radius: 3px;
  height: 45px;
  display: flex;
  align-items: center;
}

.stats-flex .stats-btn:hover {
  background: #111;
  color: #fff;
}


/* SERVICES PAGE */
#srv-services-section, #prc-process-section, #faq-section {
  padding: 60px 5%;
}
.srv-subtitle, .prc-subtitle, .faq-subtitle {
  color: red;
  font-weight: bold;
  text-transform: uppercase;
}
.srv-title, .prc-title, .faq-title {
  font-size: 2rem;
  margin: 10px 0 30px;
}

/* ===== OUR SERVICES ===== */
.srv-container {
  display: flex;
  gap: 40px;
}
.srv-left {
  flex: 1;
}
.srv-right {
  flex: 2;
  max-height: 600px;
  overflow-y: auto;
  padding-right: 20px;
  scrollbar-width: thin;
}
.srv-service-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.srv-service-text {
  flex: 1;
}
.srv-service-image {
  flex: 1;
  overflow: hidden;
}
.srv-service-image img {
  width: 100%;
  transition: transform 0.4s ease;
}
.srv-service-image:hover img {
  transform: scaleY(1.05);
}

/* ===== OUR PROCESS ===== */
/* .prc-steps {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.prc-step {
  flex: 1 1 30%;
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.prc-step h3 {
  font-size: 2rem;
  color: red;
}
.prc-step h4 {
  margin: 10px 0;
} */

/* ===== FAQ ===== */
/* .faq-container {
  display: flex;
  gap: 60px;
}
.faq-left {
  flex: 1;
}
.faq-left img {
  width: 100%;
  height: auto;
}
.faq-right {
  flex: 1;
}
.faq-item {
  border-bottom: 1px solid #ddd;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 15px 0;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  font-weight: bold;
    display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-arrow {
  transition: transform 0.3s ease;
}
.faq-question.active .faq-arrow {
  transform: rotate(90deg);
}
.faq-answer {
  display: none;
  padding-bottom: 15px;
}
.faq-question.active {
  color: red;
} */



#custom-faq-section {
  padding: 60px;
}

.custom-faq-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.custom-faq-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 4px;
}

.custom-faq-content {
  flex: 1;
  min-width: 300px;
}

.custom-faq-subtitle {
  color: red;
  font-weight: bold;
  margin-bottom: 10px;
}

.custom-faq-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.custom-faq-item {
  border-bottom: 1px solid #eee;
}

.custom-faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
}

.custom-faq-question.active {
  color: red;
}

.custom-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding-left: 0;
}

.custom-faq-answer p {
  margin: 0;
  padding: 10px 0;
  color: #555;
}

.custom-faq-item.active .custom-faq-answer {
  padding-bottom: 15px;
}


#custom-contact-section {
  padding: 60px 5%;
}

.custom-contact-container {
  max-width: 1200px;
  margin: auto;
}

.custom-contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}

.custom-contact-card {
  flex: 1;
  min-width: 250px;
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.custom-contact-card h4 {
  margin: 0;
  font-weight: bold;
  font-size: 1.1rem;
}

.custom-contact-card p {
  margin: 5px 0 0;
  color: #555;
  font-size: 0.95rem;
}

.custom-contact-icon {
  font-size: 1.5rem;
  color: red;
}

.custom-contact-form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 50px;
}

.custom-contact-form-wrapper {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 30px;
  border-top: 3px solid red;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.custom-contact-form-wrapper h3 {
  margin-bottom: 20px;
}

.custom-contact-form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.custom-contact-form-wrapper input,
.custom-contact-form-wrapper textarea {
  padding: 10px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
  width: 100%;
}

.custom-contact-form-wrapper textarea {
  min-height: 120px;
  resize: vertical;
}

.custom-contact-form-wrapper button {
  background: red;
  color: #fff;
  padding: 12px 20px;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.custom-contact-form-wrapper button:hover {
  background: #c00;
}

.custom-contact-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 5px;
}

.custom-contact-map iframe {
  width: 100%;
  border: none;
}





#custom-footer {
  background: linear-gradient(to right, #004d66, #00334d);
  color: #fff;
    padding-top: 20px;
}
.custom-footer-inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
  padding: 30px;
}
.custom-footer-logo img {
  width: 150px;
  height: auto;
}
.custom-footer-contact, .custom-footer-links {
  flex: 1 1 250px;
}
.custom-footer-links ul {
  list-style: none;
  padding: 0;
}
.custom-footer-links li {
  margin-bottom: 8px;
}
.custom-footer-links a {
  color: #fff;
  text-decoration: none;
}
.custom-footer-links a:hover {
  text-decoration: underline;
}
.custom-footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 15px 20px;
  font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  #custom-faq-section {
    padding: 50px;
  }
  .custom-faq-container {
    gap: 40px;
  }
  .custom-faq-title {
    font-size: 1.8rem;
  }
  .courier-services-container {
        gap: 40px;
        padding: 0 15px;
    }
    .courier-services-heading {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .quote-container {
        gap: 30px;
        padding: 40px;
    }
    .stats-overlay {
    left: 5%;
    top: 15%;
    padding: 30px;
  }
  .stats-box h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 992px) {
  .stats-overlay {
    position: relative;
    top: auto;
    left: 50%;             /* move to center */
    margin: 20px 0;        /* vertical spacing */
    max-width: 90%;        /* not too wide */
  }
  .stats-image img {
    height: 400px;
  }
  .stats-flex {
    flex-direction: column;
    align-items: center;   /* center items horizontally */
    gap: 15px;
  }
  .stats-box {
    text-align: center;    /* center text inside */
  }
  .stats-box h3 {
    font-size: 1.6rem;
  }
  .stats-box p {
    font-size: 0.95rem;
  }
    .custom-aboutus-intro-inner {
        flex-direction: column;
    }
    .custom-aboutus-process-steps {
        flex-direction: column;
    }
    .process-btn {
        position: static;
        margin-top: 15px;
        display: inline-block;
    }
    .stats-overlay {
        flex-direction: column;
        left: 5%;
        top: 10%;
    }
    .about-content {
        flex-direction: column;
    }

    .experience-badge {
        top: 15px;
        right: 15px;
    }
    .form-row input {
        flex: 1 1 calc(50% - 10px);
    }
    .quote-container {
        flex-direction: column;
        align-items: stretch;
    }

    .quote-form, 
    .quote-image {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .quote-image img {
        height: auto;
        max-height: 300px;
    }
    .whychooseus-right {
        grid-template-columns: 1fr;
    }
    .courier-services-container {
        gap: 30px;
    }
    .courier-services-left {
        flex: 1 1 250px;
        padding: 15px;
    }
    .courier-services-heading {
        font-size: 26px;
    }
    .courier-services-list li {
        padding: 12px 8px;
    }
    .courier-services-caption {
        padding: 12px;
    }
    .quote-bottom-image img,
    .quote-bottom-content {
        height: 160px; /* Slightly shorter */
    }
    .quote-bottom-content p {
        font-size: 0.95rem;
    }
    #custom-faq-section {
    padding: 40px 30px;
  }
  .custom-faq-container {
    gap: 40px;
  }
  .custom-faq-title {
    font-size: 1.6rem;
    text-align: center;
  }
  .custom-faq-subtitle {
    text-align: center;
  }
  .custom-faq-content {
    flex: 1 1 100%;
  }
  .custom-faq-image {
    flex: 1 1 100%;
    display: flex;
    justify-content: center;
  }
  .custom-faq-image img {
    max-width: 400px;
  }
}

@media (max-width: 900px) {
  .custom-contact-form-wrapper{
    width: 100%;
  }
  .custom-contact-form-section {
    flex-direction: column;
  }
  .custom-contact-image img {
    max-width: 100%;
  }
    .srv-container, .faq-container {
    flex-direction: column;
  }
  .prc-step {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .stats-image img {
    height: 350px;
  }
  .stats-overlay {
    padding: 25px;
    gap: 15px;
  }
  .stats-box h3 {
    font-size: 1.4rem;
  }
  .stats-box p {
    font-size: 0.9rem;
  }
  .stats-flex .stats-btn {
    width: 100%;
    justify-content: center;
  }
.about-image {
    flex: 1 1;
}
  .carousel-bottom-first,
    .carousel-bottom-second {
        justify-content: flex-start;
        padding: 18px;
    }

    .carousel-bottom-first h2,
    .carousel-bottom-second h2 {
        font-size: 18px;
    }

    .carousel-bottom-first img,
    .carousel-bottom-second img {
        height: 60px;
        width: 60px;
        padding: 8px;
    }
  #custom-faq-section {
    padding: 30px 20px;
  }
  .custom-faq-container {
    flex-direction: column;
    gap: 30px;
    padding: 0;
  }
  .custom-faq-title {
    font-size: 1.4rem;
  }
  .custom-faq-question {
    font-size: 1rem;
    padding: 12px 0;
  }
  .custom-faq-answer p {
    font-size: 0.95rem;
  }
  .custom-faq-image img {
    max-width: 100%;
  }
  .about-content {
        flex-direction: column-reverse; /* Image on top */
    }
    .experience-badge {
        top: 10px;
        right: 10px;
        padding: 10px 15px;
    }
    .experience-badge h3 {
        font-size: 20px;
    }
    .custom-faq-container {
        flex-direction: column;
    }
    .custom-faq-image img {
        max-width: 100%;
    }
    .custom-service-item {
        flex-direction: column;
    }
    .process-btn {
        position: static;
        margin-bottom: 20px;
        display: inline-block;
    }
    .jv-carousel {
        height: 80vh; /* Reduced height on mobile */
    }
    .jv-carousel-content {
        left: 5%;
        right: 5%;
        max-width: 90%;
        padding: 20px;
        background: rgba(0,0,0,0.5); /* Better readability */
        border-radius: 8px;
    }
    .jv-carousel-content h2 {
        font-size: 24px;
        line-height: 1.3;
    }
    .jv-carousel-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    .form-row.no-wrap {
        flex-wrap: wrap; /* no more forcing on mobile */
    }

    .form-field {
        flex: 1 1 100%;
    }

    .quote-container {
        padding: 30px;
        gap: 20px;
    }

    .quote-bg {
        height: 150px;
    }

    .quote-tabs {
        top: 10px;
        left: 10px;
        gap: 6px;
    }

    .tab {
        padding: 8px 14px;
        font-size: 14px;
    }

    .form-row input[type="text"],
    .form-row input[type="email"],
    .form-row select {
        height: 45px;
        padding: 10px 14px;
    }
    #courier-services-section {
        padding: 40px 15px;
    }
    .courier-services-container {
        flex-direction: column;
        gap: 25px;
    }
    .courier-services-right {
        height: 350px; /* Fixed height for consistency */
    }
    .courier-services-heading {
        font-size: 24px;
        margin-bottom: 15px;
    }
    .courier-services-list li {
        font-size: 15px;
    }
    .whychooseus-inner {
    flex-direction: column;
    }
    .custom-footer-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .custom-footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .custom-footer-contact, .custom-footer-links {
  flex: 1 1;
}
.quote-bottom {
        flex-direction: column;
    }
    .quote-bottom-image, 
    .quote-bottom-content {
        width: 100%;
        height: auto; /* Natural height on mobile */
    }
    .quote-bottom-image img {
        height: 140px; /* Shorter mobile image */
    }
    .quote-bottom-content {
        padding: 1.25rem;
    }
}

@media (max-width: 576px) {
  .stats-image img {
    height: 300px;
  }
  .stats-overlay {
    padding: 20px;
  }
  .stats-box h3 {
    font-size: 1.2rem;
  }
  .stats-box p {
    font-size: 0.85rem;
  }
    .quote-container {
        padding: 20px;
    }

    .quote-bg {
        height: 120px;
    }

    .tab {
        padding: 6px 10px;
        font-size: 13px;
    }

    h2 {
        font-size: 20px;
    }

    .submit-btn {
        font-size: 14px;
        padding: 10px 16px;
    }

    /* Make range slider touch-friendly */
    input[type="range"]::-webkit-slider-thumb {
        height: 22px;
        width: 22px;
        margin-top: -8px;
    }
    input[type="range"]::-moz-range-thumb {
        height: 22px;
        width: 22px;
    }
}

@media (max-width: 600px) {
  .custom-contact-card {
        flex: 1 1 100%;
    }
    .custom-contact-form-wrapper {
        padding: 20px;
    }
  .whychooseus-right {
        grid-template-columns: 1fr;
    }
    .whychooseus-card {
        padding: 15px;
    }
    .quote-container {
        padding: 15px;
        width: 95%;
    }
    .quote-tabs {
        flex-wrap: wrap;
    }
    .tab {
        flex: 1 1 100%;
        margin-bottom: 5px;
    }
    .quote-bottom {
        flex-direction: column;
        height: auto;
    }
    .quote-bottom-image, 
    .quote-bottom-content {
        width: 100%;
    }
    .form-row input {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .carousel-bottom {
        padding: 10px;
        gap: 15px;
    }

    .carousel-bottom-first,
    .carousel-bottom-second {
        flex-direction: column;
        text-align: center;
    }

    .carousel-bottom-first h2,
    .carousel-bottom-second h2 {
        font-size: 16px;
    }

    .carousel-bottom-first img,
    .carousel-bottom-second img {
        height: 55px;
        width: 55px;
    }
}

@media (max-width: 400px) {
  .custom-faq-title {
    font-size: 1.1rem;
  }
  .custom-faq-question {
    font-size: 0.9rem;
    padding: 10px 0;
  }
  .custom-faq-answer p {
    font-size: 0.85rem;
  }
}