/* Default State */
.splide__slide {
    opacity: 0;
    transition: all 1s ease-in-out;
  }
  .hero-slide .overlay h2 {
  color: #fff !important;
  font-weight: bold;
}


  .hero-slide {
    position: relative;
    height: 100vh; /* Full screen height on desktops */
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }
.hero-slide .overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fdfdfe;
  text-align: center;
  width: 100%;
  padding: 0 20px;
  z-index: 2; /* Keep overlay text above the blue layer */
}
   .hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 68, 204, 0.7); /* Blue transparent overlay */
  z-index: 1;
}
  
  
  
  @media (max-width: 991px) {
    .hero-slide {
      height: 80vh; /* Slightly smaller on tablets */
    }
  }
  
  @media (max-width: 767px) {
    .hero-slide {
      height: 70vh; /* Smaller on phones */
    }
  }
  
  @media (max-width: 480px) {
    .hero-slide {
      height: 60vh; /* Even smaller for very small screens */
    }
  }


  
  
  /* overlay on small devices */
  .hero-slide .overlay h2 {
    font-size: 2rem;
  }
  
  .hero-slide .overlay p {
    font-size: 1rem;
  }
  
  @media (max-width: 767px) {
    .hero-slide .overlay h2 {
      font-size: 1.5rem;
    }
  
    .hero-slide .overlay p {
      font-size: 0.9rem;
    }
  
    .hero-slide .btn {
      padding: 10px 20px;
      font-size: 0.9rem;
    }
  }
  



  /* SCALE ANIMATION     */
  /* =================== */
  .anim-scale {
    transform: scale(0.8);
  }
  .anim-scale.is-active {
    opacity: 1;
    transform: scale(1);
  }
  
  /* =================== */
  /* ROTATE ANIMATION    */
  /* =================== */
  .anim-rotate {
    transform: rotateY(90deg);
  }
  .anim-rotate.is-active {
    opacity: 1;
    transform: rotateY(0deg);
  }
  
  /* =================== */
  /* SLIDE-IN ANIMATION  */
  /* =================== */
  .anim-slidein {
    transform: translateX(100px);
  }
  .anim-slidein.is-active {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* =================== */
  /* Shared Overlay Fade In */
  /* =================== */
  .hero-slide .overlay h2,
  .hero-slide .overlay p,
  .hero-slide .overlay a {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-in-out;
  }
  
  .splide__slide.is-active .overlay h2,
  .splide__slide.is-active .overlay p,
  .splide__slide.is-active .overlay a {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
  }
  
  .services-section {
    /*padding: 80px 20px;*/
    background: url('assets/images/courier-bg1.jpg') no-repeat center center;
    background-size: cover;
    color: #113cb2;
    text-align: center;
    position: relative;
    width: 100%;
  }
  
  .services-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); /* overlay */
    z-index: 0;
  }
  
  .services-section h2 {
    position: relative;
    z-index: 1;
    font-size: 36px;
    color: #113cb2;
    font-weight: bold;
  }
  
  .services-heading-bar {
  background-color: #fff;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 40px 20px;
  z-index: 10;
  position: relative;
}

.services-heading-bar h2 {
  font-size: 36px;
  max-width: 800px;   /* Keeps it centered */
  margin: 0 auto;     /* Centers the block */
  text-align: left;   /* Aligns the text inside to the left */
  padding-left: 30px; /* Nudges it slightly from center */
  color: #113cb2;
  font-weight: bold;
}

.services-heading-bar h2::after {
  content: "";
  display: block;
  width: 80px;             /* Adjust width of the underline */
  height: 4px;             /* Thickness of the underline */
  background-color: red;   /* Underline color */
  margin-top: 10px;
  margin-left: 40px;       /* Aligns with the text padding */
  border-radius: 2px;
}
  
  .services-slider {
    position: relative;
    z-index: 1;
    padding: 40px 0;
  }
  
  .service-item {
    background-color: #fff;
    /*padding: 20px;*/
    border-radius: 10px;
    width: 280px; /* width of each slide */
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    text-align: center;
  }
  
  .service-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
  }
  
  .service-item h3 {
    margin-top: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #113cb2;
  }
  
  .service-item p {
    margin-top: 10px;
    font-size: 15px;
    color: #666;
  }
  
 .about-section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  color: #333;
  overflow: hidden;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-image {
  flex: 1 1 45%;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.about-text {
  flex: 1 1 45%;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}
.about-text h2{
    font-weight: bold
}
.about-text h2::after{
  content: "";
  display: block;
  width: 60px;             /* Adjust width of the underline */
  height: 4px;             /* Thickness of the underline */
  background-color: red;   /* Underline color */
  margin-top: 10px;
  margin-left: 40px;       /* Aligns with the text padding */
  border-radius: 2px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  border: none;
  background: transparent;
  display: block;
}

/* Services Two-Column */
.about-services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}

.about-item {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: #113cb2;
  font-weight: bold;
}

.about-item img {
  width: 30px;
  height: 30px;
}

/* Tick Style */
.about-core {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.about-core-block {
  flex: 1 1 100%;
  margin-top: 20px;
}

.about-core-block p {
  font-size: 16px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Circle inside faint box */
.about-circle-tick-box {
  border: 1px solid rgba(212, 175, 55, 0.3); /* faint gold border */
  padding: 5px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-circle-tick {
  background-color: #d4af37;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
}

/* Heading */
.about-text h2 {
  font-size: 36px;
  color: #113cb2;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

/* Animation active class */
.about-container.visible .about-image,
.about-container.visible .about-text {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 800px) {
  .about-container {
    flex-direction: column;
  }

  .about-image,
  .about-text {
    flex: 1 1 100%;
    transform: translateX(0);
    opacity: 1;
    transition: none;
  }

  .about-services {
    flex-direction: column;
  }
}
  
   .our-people-section {
  padding: 60px 20px;
}

.our-people-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.our-people-image {
  flex: 1;
  order: 2; /* Image on the right */
}
.core {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.core-block {
  flex: 1;
  min-width: 250px;
}

.core-block h3 {
  font-size: 22px;
  color: #113cb2;
  margin-bottom: 10px;
  font-weight: bold;
}

.core-block p {
  font-size: 16px;
  color: #555;
  display: flex;
  align-items: center;
}

.circle-tick {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: red;
  color: white;
  font-size: 15px;
  width: 25px;
  height: 20px;
  border-radius: 50%;
  margin-right: 10px;
  font-weight: bold;
  line-height: 1;
}


.our-people-text {
  flex: 1;
  order: 1; /* Text on the left */
}

.our-people-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgb(0 0 0 / 0.15);
}

.our-people-text h2 {
  font-size: 36px;
  color: #113cb2;
  margin-bottom: 20px;
  font-weight: bold;
}

.our-people-text h2::after{
  content: "";
  display: block;
  width: 60px;             /* Adjust width of the underline */
  height: 4px;             /* Thickness of the underline */
  background-color: red;   /* Underline color */
  margin-top: 10px;
  margin-left: 40px;       /* Aligns with the text padding */
  border-radius: 2px;
}

.our-people-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

/* Responsive */
@media (max-width: 800px) {
  .our-people-container {
    flex-direction: column;
  }

  .our-people-image,
  .our-people-text {
    order: unset;
    flex: 1 1 100%;
  }
}

/*vault section*/
.vault-section {
  padding: 60px 20px;
}

.vault-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.vault-text {
  flex: 1;
  order: 2;
}

.vault-text h2 {
  font-size: 36px;
  color: #113cb2;
  margin-bottom: 20px;
  font-weight: bold;
}

.vault-text h2::after{
  content: "";
  display: block;
  width: 60px;             /* Adjust width of the underline */
  height: 4px;             /* Thickness of the underline */
  background-color: red;   /* Underline color */
  margin-top: 10px;
  margin-left: 40px;       /* Aligns with the text padding */
  border-radius: 2px;
}

.vault-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

.vault-image {
  flex: 1;
  order: 1;
}

.vault-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: none;
}

.vault-core {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.vault-core-block {
  flex: 1;
  min-width: 250px;
}

.vault-core-block h3 {
  font-size: 22px;
  color: #1f64d2;
  margin-bottom: 10px;
  font-weight: bold;
}

.vault-core-block p {
  font-size: 16px;
  color: #555;
  display: flex;
  align-items: center;
}

.circle-tick {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: red;
  color: white;
  font-size: 17px;
  width: 28px;
  height: 20px;
  border-radius: 50%;
  margin-right: 10px;
  font-weight: bold;
  line-height: 1;
}

/* Responsive */
@media (max-width: 800px) {
  .vault-container {
    flex-direction: column;
  }

  .vault-image,
  .vault-text {
    order: unset;
    flex: 1 1 100%;
  }
}

  
   /* Tracking section*/ 
 /* General styling */
.tracking-section {
  padding: 2rem;
  background-color: #f4f4f4;
  font-family: Arial, sans-serif;
}

.tracking-container {
  max-width: 1000px;
  margin: auto;
  background: #f4f4f4;
  padding: 2rem;
  border-radius: 10px;
 
}

/* Form Styling */
#trackForm {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#trackForm input[type="search"] {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

 .tracking-heading-bar {
 font-size: 2.2rem;
  color: #113cb2;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: left;
  position: relative;
}

.tracking-heading-bar{
  font-size: 36px;
  max-width: 800px;   /* Keeps it centered */
  margin: 0 auto;     /* Centers the block */
  text-align: left;   /* Aligns the text inside to the left */
  padding-left: 30px; /* Nudges it slightly from center */
  color: #113cb2;
  font-weight: bold;
}

.tracking-heading-bar::after {
  content: "";
  display: block;
  width: 80px;             /* Adjust width of the underline */
  height: 4px;             /* Thickness of the underline */
  background-color: red;   /* Underline color */
  margin-top: 10px;
  margin-left: 40px;       /* Aligns with the text padding */
  border-radius: 2px;
}
.tr-p {
  margin: 1rem auto 2rem auto;
  /*font-size: 1.1em;*/
  line-height: 1.6;
  max-width: 700px;
  /*text-align: center;*/
  color: #444;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}

.tr-cons{
  display: block;
  margin: 0.5rem auto;
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
}

#trackForm button {
  padding: 0.75rem 1.5rem;
  background-color: #113cb2;
  border: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

/* Logo & Barcode */
.logo {
  max-width: 250px;
  display: block;
  margin: 1rem auto;
}

.barcode {
  max-width: 150px;
  display: block;
  margin: 1rem auto;
}

.ref-number {
  display: block;
  margin: 0.5rem auto;
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
}

/* Shipper & Receiver Info */
.flex-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.box {
  flex: 1;
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #ddd;
}

/* Status Bar */
.status-bar {
  height: 20px;
  background-color: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  margin: 1rem 0;
}

.status-bar-progress {
  height: 100%;
  background-color: #113cb2;
}

/* Section Headings */
.track-h3 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 0.25rem;
  text-transform: uppercase;
}

.track-h3::after {
  content: "";
  display: block;
  height: 3px;
  background: #113cb2;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* Shipment Information in Row */
.shipment-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.info-block {
  flex: 1 1 300px;
  background: #f1f1f1;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  border: 1px solid #ddd;
}

/* Shipment History Table */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.95rem;
}

thead {
  background-color: #113cb2;
  color: white;
}

th, td {
  padding: 0.75rem;
  border: 1px solid #ccc;
  text-align: left;
}

tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.print-btn {
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background: #113cb2;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Layout container for tracking form and image */
.track-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

/* Left side: form */
.track-left {
  flex: 1;
  min-width: 300px;
}

/* Right side: image */
.track-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tracking-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
  .track-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .track-left,
  .track-right {
    flex: 1 1 100%;
  }
}
.track-left h2,
.track-left .tr-p,
.track-left .tr-cons,
#trackForm {
  margin-bottom: 1rem;
}

  
    
  .gallery-section {
    padding: 60px 20px;
    background: #ffff;
    text-align: center;
  }
  
  .splide__slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }
  
  /* Optional: Add spacing between slides */
  .splide__slide {
    padding: 10px;
  }
  
  /* Adjust Splide container */
  .splide {
    margin-top: 30px;
  }
  
  
  .faqs-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
  }
  
  .faqs-section h2 {
    font-size: 2em;
    color: #113cb2;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .faqs-section h2::after{
  content: "";
  display: block;
  width: 60px;             
  height: 4px;             
  background-color: red;   
  margin-top: 10px;
  margin: 10px auto 0 auto; 
}
  
  .faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
  }
  
  .faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1em;
   /* padding: 15px 10px;*/
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color:#113cb2;
    font-weight: 600;
  }
  
  .faq-question:focus {
    outline: none;
  }
  
  .faq-icon {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding-left: 10px;
    color: #444;
  }
  
  .faq-answer p {
    margin: 10px 0 20px 0;
    font-size: 1em;
  }
  
  /* Active state styles */
  .faq-item.active .faq-answer {
    max-height: 200px; /* enough to show content */
  }
  
  .faq-item.active .faq-icon {
    transform: rotate(45deg);
  }
  
  
.pricing-section {
  padding: 80px 20px;
  background: #f5f5f5;
  font-family: 'Lato', sans-serif;
  text-align: center;
}

.pricing-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
}

.pricing-card {
  background: #fff;
  border-radius: 0px;
  width: 360px;
  padding: 80px 55px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  position: relative;
  transition: 0.3s;
}

.pricing-card h3 {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.price-wrapper {
  position: relative;
  margin-bottom: 20px;
  text-align: left;
  padding-left: 10px;
}

.currency {
  font-size: 16px;
  position: relative;
  top: -10px;
  margin-right: 2px;
}

.amount {
  font-size: 40px;
  font-weight: bold;
  color: #131111;
}

.duration {
  display: block;
  font-size: 14px;
  margin-top: 5px;
  color: #888;
}

.features {
  list-style: none;
  padding: 20px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.01));
  margin-bottom: 30px;
  border-radius: 6px;
  text-align: left;
}

.features li {
  padding: 10px 0;
  font-size: 16px;
}

.features li i {
  margin-right: 8px;
  color: #e62a36;
}

.select-btn {
  background: #e62a36;
  color: #fff;
  padding: 22px 30px;
  border-radius: 0px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: 0.3s;
}

.select-btn:hover {
  background: #c5202c;
}

/* Popular Plan Styling */
.popular {
  background: #e62a36;
  color: #fff;
  transform: scale(1.05);
  z-index: 1;
}

.popular .amount,
.popular .duration {
  color: #fff;
}

.popular .features li i {
  color: #fff;
}

.popular .features {
  background: linear-gradient(to bottom, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
}

.white-btn {
  background: #fff;
  color: #e62a36;
}

.white-btn:hover {
  background: #f8f8f8;
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #e62a36;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Save Tag Badge */
.save-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f00528;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: bold;
}

 .pricing-heading-bar {
  background-color: #f5f5f5;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 40px 20px;
  z-index: 10;
  position: relative;
}

.pricing-heading-bar h2 {
  font-size: 36px;
  max-width: 800px;   /* Keeps it centered */
  margin: 0 auto;     /* Centers the block */
  text-align: center;   /* Aligns the text inside to the left */
  padding-left: 30px; /* Nudges it slightly from center */
  color: #113cb2;
  font-weight: bold;
}

.pricing-heading-bar h2::after {
  content: "";
  display: block;
  width: 80px;             /* Adjust width of the underline */
  height: 4px;             /* Thickness of the underline */
  background-color: red;   /* Underline color */
  margin-top: 10px;
 margin: 10px auto 0 auto;       /* Aligns with the text padding */
  border-radius: 2px;
}

.save-tag-popular {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f3f4f3;
  color: #0b0b0b;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: bold;
}

@media (max-width: 992px) {
  .pricing-container {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 90%;
  }
}




.contact-section {
    padding: 60px 20px;
    background-color: #e9ecef;
    text-align: center;
  }
  
  .contact-details {
    margin-bottom: 30px;
    font-size: 1em;
    color: #333;
  }
  
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .contact-form button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: #fff;
    border: none;
    font-size: 1em;
    border-radius: 4px;
    cursor: pointer;
  }
  

  .site-footer {
    background-color: #212529;
    color: #fff;
    padding: 60px 20px 30px;
    font-size: 0.95em;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-about,
  .footer-links,
  .footer-contact {
    flex: 1 1 250px;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links ul li {
    margin: 8px 0;
  }
  
  .footer-links a {
    color: #ccc;
    text-decoration: none;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
    color: #fff;
  }
  
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    margin-top: 30px;
    padding-top: 20px;
    color: #aaa;
  }
  .footer-logo {
    height: 70px;           /* Adjust as needed */
    margin-right: 10px;     /* Space between logo and text */
    vertical-align: middle; /* Aligns image with text */
  }
  
  
  @media (max-width: 768px) {
    .hero-content {
      padding: 60px 20px;
    }
  
    .hero-content h1 {
      font-size: 2em;
    }
  
    .services-section,
    .gallery-section,
    .faqs-section,
    .pricing-section,
    .contact-section,
    .site-footer {
      padding: 40px 15px;
    }
  
    .service-card,
    .pricing-card {
      width: 100%;
      max-width: 100%;
    }
  
    .footer-content {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  
  @media (max-width: 480px) {
    .hero-content h1 {
      font-size: 1.6em;
    }
  
    .hero-content p {
      font-size: 1em;
    }
  
    .splide__slide img {
  height: 220px;
  object-fit: cover;
}

  
    .contact-form input,
    .contact-form textarea {
      font-size: 0.95em;
    }
  
    .footer-links ul li {
      margin: 6px 0;
    }
  }
  
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Top Bar */
  .top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #d32f2f;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*padding: 0 2rem;*/
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 1000;
    transition: top 0.3s;
  }
  
  .top-bar-left,
  .top-bar-center,
  .top-bar-right {
    flex: 1;
    text-align: center;
  }
  .top-bar-left {
    text-align: left;
  }
  .top-bar-right {
    text-align: right;
  }
  
  /* Navbar */
  .navbar {
    position: fixed;
    top: 40px; /* Push navbar below the top bar */
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  
  .navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .logo img {
    height: 80px;
  }
  
  .logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
   margin-right: 40px; /* Adjust this value as needed */
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #113cb2;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  .nav-links li a:hover {
    color: #d32f2f;
    text-decoration: underline;
  }
  
  .menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .top-bar {
      flex-direction: column;
      padding: 0.3rem 1rem;
      height: auto;
    }
  
    .top-bar-left,
    .top-bar-center,
    .top-bar-right {
      flex: none;
      width: 100%;
      text-align: center;
      padding: 0.2rem 0;
    }
  
    .navbar-container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .menu-toggle {
      display: block;
      margin-left: auto;
    }
  
    .nav-links {
      flex-direction: column;
      display: none;
      width: 100%;
      background-color: #fff;
      border-top: 1px solid #eee;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-links li {
      width: 100%;
      border-bottom: 1px solid #e0e0e0;
    }
  
    .nav-links li a {
      padding: 1rem;
      display: block;
    }
  }
  
  /* Offset content so it's not hidden behind fixed bars */
  body {
    padding-top: 120px; /* 40px top-bar + ~80px navbar height */
  }
  
  
  
  

    /* Main container background */
  .contact-section {
    width: 100%;
    background-color: #f9f9f9;
    padding: 80px 0;
  }
  
  .contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
  }
  
  /* Left - Image */
  .contact-image {
    flex: 1 1 50%;
    max-width: 600px;
  }
  
  .contact-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* Right - Contact Form */
  .contact-details {
    flex: 1 1 45%;
  }
  
  .contact-details h2 {
    font-size: 32px;
    color: #113cb2;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
    .contact-details h2::after{
  content: "";
  display: block;
  width: 60px;             
  height: 4px;             
  background-color: red;   
  margin-top: 10px;
  margin: 10px auto 0 auto;       
  border-radius: 2px;
}
  
  .contact-details p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .contact-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
  }
  
  .contact-details li {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .contact-details li i {
    color: #113cb2;
    margin-right: 10px;
  }
  
  .contact-details form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-details label {
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 14px;
  }
  
  .contact-details input,
  .contact-details textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
  }
  
  .contact-details button {
    padding: 10px;
    background-color: #113cb2;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .contact-details button:hover {
    background-color: #261dd9;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
    }
  
    .contact-image,
    .contact-details {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }
  
  /* Reliability and innovation section*/

.reliability-section {
  position: relative;
  background-image: url("assets/images/section-2.jpeg");
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  z-index: 0;
  color: #fff;
}

.overlay-reliability {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 40, 120, 0.7); /* Blue overlay */
  z-index: 1;
}

.reliability-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.reliability-heading {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}

.reliability-heading h2 {
  font-size: 46px;
  color: #fff;
  margin: 0;
  font-weight: bold;
}

.reliability-heading h2::after{
  content: "";
  display: block;
  width: 60px;             /* Adjust width of the underline */
  height: 4px;             /* Thickness of the underline */
  background-color: red;   /* Underline color */
  margin-top: 10px;
   margin: 10px auto 0 auto; /* Top margin + center horizontally */
  border-radius: 2px;
}

.reliability-block {
  flex: 1 1 250px;
  padding-top: 60px;
}

.breathing-icon {
  margin-bottom: 20px;
}

.red-box {
  width: 70px;
  height: 70px;
  background-color: rgb(245, 245, 245);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.red-box img.breathing-icon-img {
  width: 30px;
  height: 30px;
  object-fit: contain;

  animation: iconPulse 1.8s infinite ease-in-out;
}

@keyframes iconPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

.reliability-block h3 {
  font-size: 22px;
  margin: 10px 0;
  color: #fff;
  font-weight: bold;
}

.reliability-block p {
  font-size: 16px;
  color: #ddd;
  max-width: 300px;
  margin: 0 auto;
  font-weight: bold;
}

@media (max-width: 800px) {
  .reliability-container {
    flex-direction: column;
    align-items: center;
  }
}


/*what our clients ssay about us section*/
.what-our-clients-say-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
  font-family: Arial, sans-serif;
}

.clients-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: flex-start;
}

.clients-image {
  flex: 1 1 400px;
}

.clients-image img {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.clients-faqs {
  flex: 1 1 600px;
}

.clients-faqs h2 {
  font-size: 2em;
  color:#113cb2;
  margin-bottom: 30px;
  font-weight: bold;
}

.clients-faqs h2::after{
  content: "";
  display: block;
  width: 60px;             /* Adjust width of the underline */
  height: 4px;             /* Thickness of the underline */
  background-color: red;   /* Underline color */
  margin-top: 10px;
  margin-right: 40px;       /* Aligns with the text padding */
  border-radius: 2px;
}

.client-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}

.client-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.1em;
  padding: 15px 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color:#113cb2;
  font-weight: 600;
}

.client-question:focus {
  outline: none;
}

.client-icon {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.client-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding-left: 10px;
  color: #444;
}

.client-answer p {
  margin: 10px 0 20px 0;
  font-size: 1em;
}

/* Active state */
.client-item.active .client-answer {
  max-height: 200px;
}

.client-item.active .client-icon {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 900px) {
  .clients-container {
    flex-direction: column;
    align-items: center;
  }

  .clients-image, .clients-faqs {
    width: 100%;
  }
}


  
