/* section 1 */

/* Mobile adjustments */
/* =========================
   MOBILE STYLES
========================= */
@media (max-width: 768px) {
  .carousel-item .container {
    padding-top: 0px;
    padding-bottom: 10px;
  }

  .carousel {
    padding-top: 10px;
  }

  .carousel-item .row.align-items-center {
    align-items: flex-start !important;
    margin-top: 0;
    margin-bottom: 0;
  }

  .carousel-item {
    min-height: auto !important;
    padding-top: 30px;
    padding-bottom: 0;
  }

  /* Text size same feel ke liye dono phones par (S8+ aur S20+) */
  .carousel-item h1 {
    font-size: clamp(26px, 7.5vw, 35px) !important;
    line-height: 1.15;
    text-align: left;
  }

  .carousel-item h2 {
    font-size: clamp(26px, 7.5vw, 35px) !important;
    line-height: 1.15;
    text-align: left;
  }

  .carousel-item p {
    font-size: clamp(15px, 4.2vw, 16px);
    text-align: left;
    margin-bottom: 15px;
  }

  .carousel-item .btn {
    display: block;
    margin: 10px auto 0;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    font-size: clamp(14px, 4vw, 16px);
    padding: 10px 22px;
  }

  .carousel-item .col-lg-6.text-center {
    display: flex;
    flex-direction: column;
    justify-content: flex-start !important;
  }

  .carousel-item .col-lg-6.text-center img {
    margin-top: 10px;
    max-width: 90%;
    height: auto;
  }
}

/* =========================
   TABLET STYLES
========================= */
@media (max-width: 992px) and (min-width: 769px) {
  .carousel-item h1 {
    font-size: 28px;
  }
  .carousel-item h2 {
    font-size: 28px;
  }

  .carousel-item p {
    font-size: 18px;
  }

  .carousel-item .btn {
    position: relative;
    z-index: 10;
    pointer-events: auto;
  }
}

/* =========================
   DESKTOP FIX (IMPORTANT)
========================= */

/* Prevent carousel overlay blocking clicks */
.carousel,
.carousel-inner,
.carousel-item {
  pointer-events: auto;
}

#rtc{
  font-size: 39px;
}

/* Ensure button is always on top */
.carousel-item a.btn {
  position: relative;
  z-index: 20;
  pointer-events: auto;
}

/* Keep image at bottom as per original design */
.carousel-item .col-lg-6.text-center {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none; /* image column won’t block button */
}

/* Re-enable pointer events ONLY for image */
.carousel-item .col-lg-6.text-center img {
  pointer-events: auto;
}

/* slider  */

#carouselExample {
  background-image: url(/images/backgroundimg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.logo-section {
  background-color: #07344E;
  padding: 30px 0;
  overflow: hidden;
}

.logo-title {
  color: #ffffff;
  font-size: 30px;
  margin-bottom: 25px;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.logo-track img {
  width: 180px;
  height: auto;
  margin: 0 20px;
  filter: brightness(0) invert(1);
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .logo-track img {
    width: 130px;
    margin: 0 15px;
  }

  .logo-title {
    font-size: 16px;
  }
}

/* section 3 slider  */

.hyloship-section {
  background: #f7f7f7;
  padding: 80px 0;
}

/* section 1 */

/* Mobile adjustments */
/* =========================
   MOBILE STYLES
========================= */
@media (max-width: 768px) {
  .carousel-item .container {
    padding-top: 0px;
    padding-bottom: 10px;
  }

  .carousel {
    padding-top: 10px;
  }

  .carousel-item .row.align-items-center {
    align-items: flex-start !important;
    margin-top: 0;
    margin-bottom: 0;
  }

  .carousel-item {
    min-height: auto !important;
    padding-top: 30px;
    padding-bottom: 0;
  }

  /* Text size same feel ke liye dono phones par (S8+ aur S20+) */
  .carousel-item h1 {
    font-size: clamp(26px, 7.5vw, 35px) !important;
    line-height: 1.15;
    text-align: left;
  }

  .carousel-item h2 {
    font-size: clamp(26px, 7.5vw, 35px) !important;
    line-height: 1.15;
    text-align: left;
  }

  .carousel-item p {
    font-size: clamp(15px, 4.2vw, 16px);
    text-align: left;
    margin-bottom: 15px;
  }

  .carousel-item .btn {
    display: block;
    margin: 10px auto 0;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    font-size: clamp(14px, 4vw, 16px);
    padding: 10px 22px;
  }

  .carousel-item .col-lg-6.text-center {
    display: flex;
    flex-direction: column;
    justify-content: flex-start !important;
  }

  .carousel-item .col-lg-6.text-center img {
    margin-top: 10px;
    max-width: 90%;
    height: auto;
  }
}

/* =========================
   TABLET STYLES
========================= */
@media (max-width: 992px) and (min-width: 769px) {
  .carousel-item h1 {
    font-size: 28px;
  }
  .carousel-item h2 {
    font-size: 28px;
  }

  .carousel-item p {
    font-size: 18px;
  }

  .carousel-item .btn {
    position: relative;
    z-index: 10;
    pointer-events: auto;
  }
}

/* =========================
   DESKTOP FIX (IMPORTANT)
========================= */

/* Prevent carousel overlay blocking clicks */
.carousel,
.carousel-inner,
.carousel-item {
  pointer-events: auto;
}

#rtc{
  font-size: 39px;
}

/* Ensure button is always on top */
.carousel-item a.btn {
  position: relative;
  z-index: 20;
  pointer-events: auto;
}

/* Keep image at bottom as per original design */
.carousel-item .col-lg-6.text-center {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none; /* image column won’t block button */
}

/* Re-enable pointer events ONLY for image */
.carousel-item .col-lg-6.text-center img {
  pointer-events: auto;
}

/* slider  */

#carouselExample {
  background-image: url(/images/backgroundimg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.logo-section {
  background-color: #07344E;
  padding: 30px 0;
  overflow: hidden;
}

.logo-title {
  color: #ffffff;
  font-size: 30px;
  margin-bottom: 25px;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.logo-track img {
  width: 180px;
  height: auto;
  margin: 0 20px;
  filter: brightness(0) invert(1);
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .logo-track img {
    width: 130px;
    margin: 0 15px;
  }

  .logo-title {
    font-size: 16px;
  }
}

/* section 3 slider  */

.hyloship-section {
  background: #f7f7f7;
  padding: 80px 0;
}

.section-title {
  font-size: 39px;
  font-weight: 700;
}

#hylo {
  font-size: 32px;
  font-weight: 700;
}

@media (max-width: 768px) {
  #hylo {
    font-size: 30px!important;
    text-align: left!important;
  }

}

.section-title span {
  color: #07344E;
}

.section-subtitle {
  max-width: 900px;
  margin: 15px auto 0;
  color: #555;
  font-size: 18px;
}

.card-stack {
  position: relative;
  max-width: 1100px;
  margin: auto;
}

.main-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  display: none;
}

.main-card.active {
  display: block;
}

.card-header span {
  font-size: 14px;
  opacity: 0.7;
}

.card-header h3 {
  font-size: 28px;
  margin-top: 10px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.feature-card {
  background: #fafafa;
  border-radius: 16px;
  padding: 20px;
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.feature-card h5 {
  font-weight: 600;
}

.feature-card a {
  text-decoration: none;
  color: #07344E;
  font-weight: 500;
}

/* Gradients */
.gradient-blue {background: linear-gradient(135deg, #e9edff, #ffffff);}
.gradient-green {background: linear-gradient(135deg, #e9fff4, #ffffff);}
.gradient-orange {background: linear-gradient(135deg, #fff3e4, #ffffff);}
.gradient-purple {background: linear-gradient(135deg, #f3e9ff, #ffffff);}

.feature-card img {
  width: 210px;
  height: auto;
  margin-bottom: 12px;
}

.feature-card {
  background: #fafafa;
  border-radius: 16px;
  padding: 22px;
  transition: 0.3s;
}

.feature-card:hover img {
  transform: scale(1.1);
  transition: 0.3s;
}

@media (max-width: 768px) {
  /* .section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: left;
  } */

  .section-title span {
    color: #07344E;
  }

  .section-subtitle {
    max-width: 900px;
    margin: 15px auto 0;
    color: #555;
    font-size: 18px;
    text-align: left;
  }
}

/* section 4  */

.hyloship-adv-section {
  background: #f7f7f7;
  padding: 10px 15px;
  font-family: sans-serif;
}

.hyloship-adv-section .section-title {
  font-size: 32px;
  font-weight: 700;
}

.hyloship-adv-section .section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.adv-section {
  padding: 60px 15px;
}

/* Row base (NO hover here) */
.adv-row {
  background: #F0F1F3;
  border-radius: 20px;
  margin-bottom: 40px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  color: #000;
  display: flex;
  flex-wrap: wrap;
}

/* Card content */
.adv-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1 1 50%;
  padding: 25px;
  border-radius: 16px;
  transition: background 0.3s ease, transform 0.3s ease;
}

/* Individual card hover */
.adv-card:hover {
  background: linear-gradient(135deg, #A5130C, #05344F);
  transform: translateY(-5px);
}

#card3:hover {
  background: linear-gradient(135deg, #A5130C, #05344F);
  transform: translateY(-5px);
  color: #e9edff;
}

#card3:hover h3,
#card3:hover p,
#card3:hover ul li {
  color: #fff;
}

#card3:hover h3 span {
  color: #fff;
}

/* Text color change only inside hovered card */
.adv-card:hover h3,
.adv-card:hover p,
.adv-card:hover ul li {
  color: #fff;
}

.adv-card:hover h3 span {
  color: #fff;
}

.adv-card:hover .btn {
  background: #fff;
  color: #05344F;
  border: 1px solid #fff;
}

.adv-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #07344E;
}

.adv-card h3 span {
  color: #A41009;
}

.adv-card p {
  font-size: 16px;
  color: #06354E;
  margin-bottom: 20px;
  font-weight: bold;
}

.adv-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.adv-card ul li {
  margin-bottom: 10px;
  font-weight: 500;
}

/* Image aligned at bottom */
.adv-image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex: 1 1 50%;
  padding-right: 15px;
  padding-left: 15px;
}

.adv-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .adv-card h3 {
    font-size: 22px;
  }

  .adv-card p,
  .adv-card ul li {
    font-size: 14px;
  }

  .adv-image {
    margin-top: 30px;
    align-items: center;
  }

  .adv-row {
    flex-direction: column;
  }
}

/* b2b shipping */

.b2b {
  background: linear-gradient(135deg, #05344F, #A5130C);
  padding: 70px 0;
  color: #ffffff;
}

/* Container-style spacing */
.b2b .row,
.b2b .text-center {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* Headings */
.b2b .section-title {
  font-size: 36px;
  font-weight: 700;
}

.b2b h2 {
  font-size: 34px;
  font-weight: 700;
}

/* Text */
.b2b p {
  font-size: 16px;
  line-height: 1.7;
  color: #f1f1f1;
}

/* Images */
.b2b .hero-images {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* Spacing between rows */
.b2b .row {
  margin-top: 60px;
}

/* Responsive */

/* Tablet */
@media (max-width: 991px) {
  .b2b h2 {
    font-size: 30px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .b2b {
    padding: 50px 0;
    text-align: center;
  }

  .b2b .section-title {
  font-size: 30px;
  font-weight: 700;
}

  .b2b .row {
    margin-top: 40px;
  }

  .b2b h2 {
    font-size: 26px;
    text-align: center;
  }

  #heavy {
    text-align: center;
  }

  #depend {
    padding-top: 20px;
  }
}

/* section 5 */

.services-timeline {
  background: #f8f9fa;
  padding-top: 40px;
}

.timeline {
  position: relative;
  padding: 2rem 0;
  color: #07344E;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #07344E;
  transform: translateX(-50%);
}

.timeline-item {
  margin-bottom: 4rem;
  position: relative;
}

.circle-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 1;
  border: 3px solid white;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.service-img {
  max-width: 500px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.service-img:hover {
  z-index: 1;
  border: 3px solid white;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.timeline-item h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 30px;
}

.timeline-item p {
  color: #555;
}

/* Mobile Responsive Version */
@media (max-width: 767px) {
  .timeline::before {
    left: 10px; /* vertical line left side */
  }

  .circle-icon {
    left: 20px;
    top: 0;
    transform: translateY(0);
  }

  .timeline-item {
    margin-bottom: 3rem;
  }

  .timeline-item .col-md-5,
  .timeline-item .col-md-2 {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: left !important;
    padding-left: 10px;
  }

  .timeline-item .col-md-2 {
    height: 50px;
    margin-bottom: 1rem;
    padding-left: 0;
  }

  .timeline-item img.service-img {
    max-width: 90%;
    width: auto;
    height: auto;
    margin-left: 30px;
    margin-bottom: 1rem;
    display: block;
    border-radius: 15px;
  }

  .timeline-item h5 {
    font-size: 22px;
    padding-left: 25px;
  }

  .timeline-item p {
    font-size: 14px;
    padding-left: 25px;
  }
}

/* Desktop version */
.service-img {
  max-width: 500px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

/* Mobile & Tablet */
@media (max-width: 1024px) {
  .service-img {
    max-width: 320px;
    border-radius: 20px;
  }
}

/* section 6 */

.marquee-section {
  background: linear-gradient(135deg, #05344F, #A5130C);
  padding: 40px 0;
  text-align: center;
}

.marquee-section h2 {
  color: #fff;
  margin-bottom: 30px;
}

.marquee {
  overflow: hidden;
  width: 100%;
  margin: 15px 0;
}

.track {
  display: flex;
  width: max-content;
}

.track img {
  background: #fff;
  padding: 10px;
  margin: 0 25px;
  border-radius: 8px;
  width: 120px;
  height: 80px;
  object-fit: contain;
}

.marquee.left .track {
  animation: scrollLeft 15s linear infinite;
}

.marquee.right .track {
  animation: scrollRight 15s linear infinite;
}

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (max-width: 768px) {
  .track img {
    width: 90px;
    height: 60px;
    margin: 0 15px;
  }
}

#hylo {
  font-size: 32px;
  font-weight: 700px;
}

@media (max-width: 768px) {
  #hylo {
    font-size: 30px;
  }

}

.section-title span {
  color: #07344E;
}

.section-subtitle {
  max-width: 900px;
  margin: 15px auto 0;
  color: #555;
  font-size: 18px;
}

.card-stack {
  position: relative;
  max-width: 1100px;
  margin: auto;
}

.main-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  display: none;
}

.main-card.active {
  display: block;
}

.card-header span {
  font-size: 14px;
  opacity: 0.7;
}

.card-header h3 {
  font-size: 28px;
  margin-top: 10px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.feature-card {
  background: #fafafa;
  border-radius: 16px;
  padding: 20px;
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.feature-card h5 {
  font-weight: 600;
}

.feature-card a {
  text-decoration: none;
  color: #07344E;
  font-weight: 500;
}

/* Gradients */
.gradient-blue {background: linear-gradient(135deg, #e9edff, #ffffff);}
.gradient-green {background: linear-gradient(135deg, #e9fff4, #ffffff);}
.gradient-orange {background: linear-gradient(135deg, #fff3e4, #ffffff);}
.gradient-purple {background: linear-gradient(135deg, #f3e9ff, #ffffff);}

.feature-card img {
  width: 210px;
  height: auto;
  margin-bottom: 12px;
}

.feature-card {
  background: #fafafa;
  border-radius: 16px;
  padding: 22px;
  transition: 0.3s;
}

.feature-card:hover img {
  transform: scale(1.1);
  transition: 0.3s;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: left;
  }

  .section-title span {
    color: #07344E;
  }

  .section-subtitle {
    max-width: 900px;
    margin: 15px auto 0;
    color: #555;
    font-size: 18px;
    text-align: left;
  }
}

/* section 4  */

.hyloship-adv-section {
  background: #f7f7f7;
  padding: 10px 15px;
  font-family: sans-serif;
}

.hyloship-adv-section .section-title {
  font-size: 32px;
  font-weight: 700;
}

.hyloship-adv-section .section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.adv-section {
  padding: 60px 15px;
}

/* Row base (NO hover here) */
.adv-row {
  background: #F0F1F3;
  border-radius: 20px;
  margin-bottom: 40px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  color: #000;
  display: flex;
  flex-wrap: wrap;
}

/* Card content */
.adv-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1 1 50%;
  padding: 25px;
  border-radius: 16px;
  transition: background 0.3s ease, transform 0.3s ease;
}

/* Individual card hover */
.adv-card:hover {
  background: linear-gradient(135deg, #A5130C, #05344F);
  transform: translateY(-5px);
}

#card3:hover {
  background: linear-gradient(135deg, #A5130C, #05344F);
  transform: translateY(-5px);
  color: #e9edff;
}

#card3:hover h3,
#card3:hover p,
#card3:hover ul li {
  color: #fff;
}

#card3:hover h3 span {
  color: #fff;
}

/* Text color change only inside hovered card */
.adv-card:hover h3,
.adv-card:hover p,
.adv-card:hover ul li {
  color: #fff;
}

.adv-card:hover h3 span {
  color: #fff;
}

.adv-card:hover .btn {
  background: #fff;
  color: #05344F;
  border: 1px solid #fff;
}

.adv-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #07344E;
}

.adv-card h3 span {
  color: #A41009;
}

.adv-card p {
  font-size: 16px;
  color: #06354E;
  margin-bottom: 20px;
  font-weight: bold;
}

.adv-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.adv-card ul li {
  margin-bottom: 10px;
  font-weight: 500;
}

/* Image aligned at bottom */
.adv-image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex: 1 1 50%;
  padding-right: 15px;
  padding-left: 15px;
}

.adv-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .adv-card h3 {
    font-size: 22px;
  }

  .adv-card p,
  .adv-card ul li {
    font-size: 14px;
  }

  .adv-image {
    margin-top: 30px;
    align-items: center;
  }

  .adv-row {
    flex-direction: column;
  }
}

/* b2b shipping */

.b2b {
  background: linear-gradient(135deg, #05344F, #A5130C);
  padding: 70px 0;
  color: #ffffff;
}

/* Container-style spacing */
.b2b .row,
.b2b .text-center {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* Headings */
.b2b .section-title {
  font-size: 36px;
  font-weight: 700;
}

.b2b h2 {
  font-size: 34px;
  font-weight: 700;
}

/* Text */
.b2b p {
  font-size: 16px;
  line-height: 1.7;
  color: #f1f1f1;
}

/* Images */
.b2b .hero-images {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* Spacing between rows */
.b2b .row {
  margin-top: 60px;
}

/* Responsive */

/* Tablet */
@media (max-width: 991px) {
  .b2b h2 {
    font-size: 30px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .b2b {
    padding: 50px 0;
    text-align: center;
  }

  .b2b .section-title {
  font-size: 30px;
  font-weight: 700;
}

  .b2b .row {
    margin-top: 40px;
  }

  .b2b h2 {
    font-size: 26px;
    text-align: center;
  }

  #heavy {
    text-align: center;
  }

  #depend {
    padding-top: 20px;
  }
}

/* section 5 */

.services-timeline {
  background: #f8f9fa;
  padding-top: 40px;
}

.timeline {
  position: relative;
  padding: 2rem 0;
  color: #07344E;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #07344E;
  transform: translateX(-50%);
}

.timeline-item {
  margin-bottom: 4rem;
  position: relative;
}

.circle-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 1;
  border: 3px solid white;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.service-img {
  max-width: 500px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.service-img:hover {
  z-index: 1;
  border: 3px solid white;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.timeline-item h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 30px;
}

.timeline-item p {
  color: #555;
}

/* Mobile Responsive Version */
@media (max-width: 767px) {
  .timeline::before {
    left: 10px; /* vertical line left side */
  }

  .circle-icon {
    left: 20px;
    top: 0;
    transform: translateY(0);
  }

  .timeline-item {
    margin-bottom: 3rem;
  }

  .timeline-item .col-md-5,
  .timeline-item .col-md-2 {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: left !important;
    padding-left: 10px;
  }

  .timeline-item .col-md-2 {
    height: 50px;
    margin-bottom: 1rem;
    padding-left: 0;
  }

  .timeline-item img.service-img {
    max-width: 90%;
    width: auto;
    height: auto;
    margin-left: 30px;
    margin-bottom: 1rem;
    display: block;
    border-radius: 15px;
  }

  .timeline-item h5 {
    font-size: 22px;
    padding-left: 25px;
  }

  .timeline-item p {
    font-size: 14px;
    padding-left: 25px;
  }
}

/* Desktop version */
.service-img {
  max-width: 500px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

/* Mobile & Tablet */
@media (max-width: 1024px) {
  .service-img {
    max-width: 320px;
    border-radius: 20px;
  }
}

/* section 6 */

.marquee-section {
  background: linear-gradient(135deg, #05344F, #A5130C);
  padding: 40px 0;
  text-align: center;
}

.marquee-section h2 {
  color: #fff;
  margin-bottom: 30px;
}

.marquee {
  overflow: hidden;
  width: 100%;
  margin: 15px 0;
}

.track {
  display: flex;
  width: max-content;
}

.track img {
  background: #fff;
  padding: 10px;
  margin: 0 25px;
  border-radius: 8px;
  width: 120px;
  height: 80px;
  object-fit: contain;
}

.marquee.left .track {
  animation: scrollLeft 15s linear infinite;
}

.marquee.right .track {
  animation: scrollRight 15s linear infinite;
}

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (max-width: 768px) {
  .track img {
    width: 90px;
    height: 60px;
    margin: 0 15px;
  }
}

/* Footer */

.footer-section {
  background: #0C334C;
  padding: 70px 0;
  color: #fff;
  border-top-right-radius: 50px;
  border-top-left-radius: 50px;
  margin-top: 50px;
}

.footer-sec-logo {
  max-width: 250px;
  margin-bottom: 15px;
}

.footer-sec-text {
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.7;
}

.footer-sec-title {
  font-size: 17px;
  margin-bottom: 20px;
  position: relative;
}

.footer-sec-title::after {
  content: "";
  width: 35px;
  height: 2px;
  background: #AA140E;
  position: absolute;
  left: 0;
  bottom: -8px;
}

.footer-sec-list {
  list-style: none;
  padding: 0;
}

.footer-sec-list li {
  margin-bottom: 12px;
}

.footer-sec-list a {
  color: #cfcfcf;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-sec-list a i {
  margin-right: 8px;
  color: #AA140E;
}

.footer-sec-list a:hover {
  color: #AA140E;
  padding-left: 5px;
}

.footer-sec-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  margin-right: 10px;
  color: #AA140E;
  transition: 0.3s;
}

.footer-sec-social a:hover {
  background: #AA140E;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-section {
    text-align: start;
  }

  .footer-sec-title::after {
    left: 20px;
    transform: translateX(-50%);
  }
}

.footer-bottom {
  background: #0C334C;
  color: #fff;
  font-size: 0.9rem;
  padding-left: 20px;
  padding-right: 20px;
  border-top: 1px solid #ffffff;
}

.footer-bottom a {
  text-decoration: none;
  transition: color 0.3s;
  color: #fff;
}

.footer-bottom a:hover {
  color: #AA140E;
}

  

  .float-enquiry {
  position: fixed;
  bottom: 90px;               /* enquiry button se upar */
  right: 0px;
  background-color: #8E0F08;  /* WhatsApp green */
  color: white;
  border-bottom-left-radius: 50px;
  border-top-left-radius: 50px;
  padding: 12px 22px;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.float-enquiry:hover {
  background-color: #07344E;
  transform: translateY(-3px);
}




    /* Floating WhatsApp Button */
.float-whatsapp {
  position: fixed;
  bottom: 90px;               /* enquiry button se upar */
  right: 0px;
  background-color: #25D366;  /* WhatsApp green */
  color: white;
  border-bottom-left-radius: 50px;
  border-top-left-radius: 50px;
  padding: 12px 22px;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.float-whatsapp:hover {
  background-color: #1ebe5d;
  transform: translateY(-3px);
}

.float-whatsapp i {
  font-size: 22px;
}

@media (max-width: 576px) {
  .float-whatsapp {
    bottom: 80px;
    font-size: 15px;
    padding: 10px 18px;
  }
}

/* ================================
   HOSTINGER LIVE FIX (FINAL)
   DO NOT CHANGE ANYTHING ELSE
================================ */

/* Footer must not cut fixed buttons */
.footer-section {
  overflow: visible !important;
}

/* Force fixed buttons above everything */
.float-whatsapp,
.float-enquiry {
  position: fixed !important;
  right: 0 !important;
  z-index: 99999 !important;
  pointer-events: auto !important;
}

/* WhatsApp Button */
.float-whatsapp {
  bottom: 90px !important;
}

/* Enquiry Button */
.float-enquiry {
  bottom: 30px !important;
}

/* Prevent transform breaking fixed on hosting */
body {
  overflow-x: hidden;
  transform: none !important;
}




/* ===== Custom Right Scrollbar ===== */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background-color: #07425E;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #052f45;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #07425E #f1f5f9;
}
