@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&family=Ysabeau+Office:ital,wght@0,1..1000;1,1..1000&display=swap');

body{
  /* font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; */
  font-family: lato;
  font-weight: 300;

}




/* Yt css */

.video-section {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Optional: Adjusts section height */
  background-color: #f9f9f9; /* Optional: Background color */
}

@media screen and (max-width:720px){
  .video-section{
      height: 60vh;
  }
}
.video-container {
  height: 100%;
  width: 100%;
  /* max-width: 800px; */
 /* aspect-ratio: 16 / 9;  Maintains 16:9 aspect ratio */
}
iframe {
  width: 100%;
  height: 100%;
  border: none; /* Removes the default iframe border */
}

/* For Captions */
.caption{
    position: absolute;
    top: 38%;
    width: 100%;
    color: white;
}

.caption h1{
    font-size: 2rem;
    font-weight: 5em;
    letter-spacing: .1em;
    text-shadow: .1rem .1rem .8rem black;
    padding-bottom: 1rem;
}

.caption h3{
    font-size: 1rem;
    text-shadow: .1rem .1rem .5rem black;
    padding-bottom: 1.5rem;
}



.Flags{
  width: 18px;
}

/* process floe */


.process-flow-content h2 {
  font-size: 2rem;
  color: #012f6a;
  margin-bottom: 15px;
  padding-top: 15px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;

}

.process-flow-content ul{
  padding-left: 80px;
}


.process-flow-content li {
  font-size: 1.3rem;
  color: #555;
  list-style-type: circle;
  line-height: 50px;
  font-family: "poppins";
  font-weight: 500;
  
}

.process-flow-image{
  background-color: #f9f9f9;
}
.process-flow-image img {
  width: 100%;
  max-width: 700px;
 
  display: block;
  margin: 0 auto;
}

/* Background and Spacing */
.process-flow {
  padding: 0px;
  margin: 0px;
  background-color: #f9f9f9;
}

.process-flow .row {
  display: flex;
  align-items: stretch; /* Ensures both columns stretch to the same height */
}



.process-flow-content {
  height: 100%;
  
}


/* Responsive Design */
@media (max-width: 768px) {
  .process-flow-row {
      flex-direction: column;
      text-align: center;
      gap: 10px;
  }

  .process-flow-content h2 {
      font-size: 1.4rem;
  }
 
  .process-flow-content ul{
    padding-left: 30px;
  }

  .process-flow-content li {
    font-size: 0.8rem;
    color: #555;
    line-height: 20px;
    padding-left: 10px;
    text-align: left;
    
    
  }

  
}







  /* What we block */

.row-e {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-family: lato;
}

.row-e .col {
    flex: 0 0 48%;
    box-sizing: border-box;
    margin-bottom: 20px;
    /* border: 1px solid #ccc; */
    padding: 10px;
    border-radius: 8px;
    background: #fdfcfc;
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
    font-weight: 400;
}

.unit-4 {
    display: flex;
    align-items: center;
}

.unit-4-icon {
    margin-right: 5px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.unit-4-icon img{
  height: 100%;
  width: 200px;
  border-radius: 5px;
}



@media screen  and (max-width:1200px) {
 
  .unit-4-icon img{
   
  }
}

@media screen  and (max-width:800px) {
  .unit-4-icon img{
    width: 200px;
  }
}

@media screen  and (max-width:500px) {
  .unit-4-icon img{
    width: 100px;
  }
  .unit-4 p{
    font-size: 12px !important;
  }
}




h3 {
    margin-top: 0;
}

p {
    margin: 10px 0 0;
}

@media (max-width: 768px) {
    .row-e .col {
        flex: 0 0 100%;
    }
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mr-4 {
    margin-right: 1.5rem;
}

.what-service-blocks:hover{
  box-shadow: 0 0 15px rgba(238, 89, 34, 0.5);  /* Glow effect on hover */
  border-color: rgba(238, 89, 34, 0.5);  /* Border color change on hover */
}










/* Parallax */
  

#parallax{
  background-color: #1d002c;
  overflow-x: hidden;
  overflow-y: hidden;
}

.parallax-home{
  min-height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
@media screen and (max-width:500px) {
  .parallax-home{
    min-height: 50vh;
  }
}



.wave {
  position: absolute;
  /* top: -75px; */
  bottom: 0px;
  /* left: 50%; */
  width: 200%;
  height: 200px;
  /* background: rgba(255, 255, 255, 0.2); */
  background-color: rgba(80, 184, 207, 0.66);
  opacity: 0.5;
  border-radius: 43%;
  animation: wave 6s infinite linear;
}

@keyframes wave {
  0% {
      transform: translateX(-50%) translateY(0);
  }
  50% {
      transform: translateX(-50%) translateY(50px);
  }
  100% {
      transform: translateX(-50%) translateY(0);
  }
}


.wave:nth-child(2) {
  animation: wave 6s infinite linear reverse;
  bottom: 30px;
  opacity: 0.7;
  
}

.wave:nth-child(3) {
  animation: wave 6s infinite linear reverse;
  bottom: 90px;
  opacity: 0.7;
  
}


.parallax-home img{
  position: absolute !important;
  font-size: 2.5rem;
  text-shadow: 0 10px 4px grba(0,0,0, 0.85);
  height: 100%;
  width: 100%;

  
}

.wind{
  opacity: 0;
}

.wind.active {
  opacity: 1 !important;
}

.wheels,.wheels2,.wheels3,.wheels4{
  opacity: 0;
}
.wheels.active,.wheels2.active,.wheels3.active,.wheels4.active {
  opacity: 1 !important;
}

.lines,.water,.img10{
  opacity: 0;
}

.lines.active,.water.active ,.img10.active{
  opacity: 1 !important;
}
.hidden {
  display: none;
}

.electricity, .E2,.E3{
  opacity: 0;
}
.electricity.active , .E2.active, .E3.active{
  opacity: 1;
}


@keyframes right {
  0% {
    left: 50%;
  }
  100% {
    left: -100%;
  }
}


@keyframes left{
  0%{
    right: 50%;
  }
  100%{
    right: -100%;
  }
}

@keyframes flight{
  0%{
    right: 50%;
    top: -5%;
  }
  50%{
    top: 6%;
  }
  100%{
    right: -100%;
    top: 15%;
  }
}



.img10 {
  animation: right 20s linear infinite;
}

.img8{
  animation: left 20s linear infinite;
}

.wheels, .wheels2, .wheels3, .wheels4{
  animation: left 20s linear infinite;
}

.img9{
  animation: flight 16s linear infinite;
}


@media screen and (max-width:600px){
  .img8{
    animation: left 10s linear infinite;
  }
  .wheels,.wheels2,.wheels3,.wheels4{
    animation: left 10s linear infinite;
  }
  
  .img9{
    animation: flight 8s linear infinite;
  }
}

.img11{
  z-index: 10;
}
 
 
   /* Logistics section */
 
 
 
 .Logistics-section{
     margin-top: 30px;
 }
 
 .Logistics-section h2{
     color: rgb(238, 89, 34);
     /* text-transform: uppercase; */
     font-family: Lato;
     font-weight: 500;
     padding-top: 40px;
 }


 .Logistics-section h6{
  font-size: 1.1rem;
  font-weight: 200;
 }
/* i.fa-solid {
    font-size: 35px;
    color: white; 
    display: inline-block;
    border-radius: 90px;
    box-shadow: 0 0 2px #ffffff;
    padding: 0.5em 0.6em;
 }
     */
  
  

/* Our SErvices */

.site-section{
    margin-top: 50px;
    margin-bottom: 50px;
    color: #444444;
    font-family: lato;
    
}

.site-section h3{
    color: rgb(238, 89, 34);
}

.site-section h2{
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(90deg, #012f6a, rgb(238, 89, 34));
  -webkit-background-clip: text;
  background-clip: text;
  color:#012f6a;  !important;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  margin-top: 20px !important;
}

.site-section h2::after{
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: rgb(238, 89, 34);
  border-radius: 2px;
}

.site-section p{
  font-size: 18px;
}
.site-section  .fa-solid{
    /* color: #f89d13 !important; */
    color: #012f6a;
}



















/* logistics */


/* Logistics Block */

.Logistics-section
{
    /* background : url('../Dotted_Map.png'); */
    height: 100%;
    color: #444444;
}

.logistics-moto
{
  margin-top: 5rem;
}


.process-section {
  position: relative;
  padding: 120px 0 80px
}

.process-section .dotted-map {
  position: absolute;
  left: 0;
  top: 0;
  top: 60px;
  height: 100%;
  width: 100%;
  background-image: url(/_next/static/media/dotted-map-2.7f1c9706.png);
  background-repeat: no-repeat;
  background-position: top;
  content: ""
}

.process-block {
  position: relative;
  margin-bottom: 40px
}

.process-block:last-child .image-box:before {
  display: none
}

.process-block .inner-box {
  position: relative;
  text-align: center
}

.process-block .inner-box:hover .info-box:before {
  border-bottom-color: rgb(238, 89, 34);
}

.process-block .inner-box:hover .inner:before {
  max-height: 100%;
}

.process-block .inner-box:hover .count {
  transform: scale(-1) rotate(-180deg)
}

.process-block .inner-box:hover .text,.process-block .inner-box:hover .title {
  color: #fff
}

.process-block .inner-box:hover .icon-box .fa-solid {
  background-color: rgb(238, 89, 34);
  color: #fff;
  transform: scaleX(-1)
}


.process-block .inner-box:hover .icon-box .fa-solid:after {
  opacity: 0
}


.process-block .inner-box:hover .info-box .inner .title, .process-block .inner-box:hover .info-box .inner .text{
  color: #012f6a;
  color: white;
}

.info-box h4{
  color: rgb(238, 89, 34);
}

.inner-box:hover h4{
  color: rgb(238, 89, 34) !important;
}


.process-block .icon-box {
  height: 154px;
  width: 154px;
  display: flex;
  display: inline-flex;
  margin-bottom: 50px;
  border-radius: 50%;
  border: 1px solid #d4d9e6
}

.process-block .icon-box,.process-block .icon-box .fa-solid {
  position: relative;
  align-items: center;
  justify-content: center
}

.process-block .icon-box .fa-solid {
  display: flex;
  height: 130px;
  width: 130px;
  font-size: 62px;
  border-radius: 50%;
  color: #012f6a;;
  transition: all .3s linear
}

.process-block .icon-box .fa-solid:before {
  position: relative;
  z-index: 2
}

.process-block .icon-box .fa-solid:after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(0deg,#ebeef5,transparent,transparent);
  content: "";
  border-radius: 50%;
  transition: all .1s ease
}

.process-block .icon-box .count {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 48px;
  width: 48px;
  background: (#f89d13);
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 2;
  transition: all .3s linear
}

.process-block .info-box {
  position: relative
}

.process-block .info-box:before {
  position: absolute;
  left: 50%;
  margin-left: -25px;
  bottom: 100%;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 10px solid #fff;
  content: "";
  z-index: 2;
  transition: all .3s ease
}

.process-block .info-box .inner {
  position: relative;
  background-color: #fff;
  padding: 25px 30px;
  border-radius: 100px;
  box-shadow: 0 10px 60px rgba(0,0,0,.07);
  transition: all .3s ease;
  overflow: hidden
}

.process-block .info-box .inner:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url(../Process_BG.png);
  max-height: 0;

  content: "";
  transition: all .3s ease
}

.process-block .info-box .title {
  position: relative;
  z-index: 2;
  font-size: 20px;
  margin-bottom: 8px
}

.process-block .info-box .text {
  position: relative;
  z-index: 2;
  line-height: 26px;
  transition: all .3s ease
}

.logistics-img
{
  border-radius: 30px;
    filter: contrast(.8);
    width: 300px;
    transition: all .5s;
}

.logistics-img:hover
{
  filter: contrast(1);
}











/* about_styles.css (or test_styles.css) */

/* Wave Head Section */
.wave-head {
  position: relative;
  padding: 2rem 0; /* Vertical padding for breathing room */
  background-color: #f8f9fa; /* Light gray base, consistent with other sections */
  overflow: hidden; /* Contain wave */
  text-align: center; /* Centralize text */
  z-index: 0; /* Below content, won’t affect navbar (z-index: 1000) */
}

/* Wave Background */
.wave-head::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(0, 128, 128, 0.2), rgba(147, 112, 219, 0.2)); /* Teal to purple */
  clip-path: polygon(0 0, 100% 0, 100% 70%, 80% 100%, 60% 70%, 40% 100%, 20% 70%, 0 100%); /* Wave shape */
  animation: waveFlow 10s infinite ease-in-out; /* Slow, smooth wave */
  z-index: -1; /* Behind text */
}

/* Wave Animation */
@keyframes waveFlow {
  0%, 100% {
      clip-path: polygon(0 0, 100% 0, 100% 70%, 80% 100%, 60% 70%, 40% 100%, 20% 70%, 0 100%);
  }
  50% {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 80% 70%, 60% 100%, 40% 70%, 20% 100%, 0 70%);
  }
}

/* Heading Text */
.wave-head-text {
  font-size: 2.5rem;
  font-weight: bold;
  color: rgb(238, 89, 34) ; /* Teal for contrast */
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0; /* Remove default margin */
  position: relative;
  z-index: 1; /* Above wave */
}

.wave-head-text::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #9370db; /* Medium purple underline */
  border-radius: 2px;
  transition: width 0.3s ease;
}

.wave-head:hover .wave-head-text::after {
  width: 80px; /* Extend on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .wave-head {
      padding: 1.5rem 0; /* Less padding on mobile */
  }

  .wave-head-text {
      font-size: 1.8rem; /* Smaller text */
  }

  .wave-head-text::after {
      width: 40px; /* Shorter underline */
  }

  .wave-head:hover .wave-head-text::after {
      width: 60px;
  }
}
















/* Creative Cards */


.creative-cards{
    padding: 120px 0;
    position: relative;
}
.creative-cards .container {
    max-width: 1320px;
    width: 100%;
    padding-right: .75rem;
    padding-left: .75rem;
    margin-right: auto;
    margin-left: auto;
}
.creative-cards .container .row{
    display: flex;
    flex-wrap: wrap;
}
.creative-cards .container .row .card-column {
    flex: 0 0 auto;
    width: 33.33333333%;
    text-align: center;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.card-details {
    width: 80%;
    margin: auto;
    position: relative;
    transition: .3s ease-in-out;
}
.card-details:before {
    content: "";
    width: 190px;
    height: 380px;
    background: #f7f6f2;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) skew(-20deg, 0deg);
    z-index: -1;
    transition: .3s ease-in-out;
}
.card-details:hover:before{
    background-color: #fbd8c0;
}
.card-icons {
    width: 140px;
    height: 150px;
    position: relative;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-icons:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid;
    width: 100%;
    height: 100%;
    transform: skew(-20deg, 0deg);
    background: #fff;
    border-color: #ff8a5e;
    transition: .3s ease-in-out;
}
.card-details:hover .card-icons:before{
    background-color: #ff8a5e;
}
.card-icons img{
    position: relative;
    width: 85px;
    height: 85px;
}
.card-details h3{
    margin-bottom: 15px;
    margin-top: 50px;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.2;
}
.card-details h3 a{
  color: #000;
  text-decoration: none;
}
.card-details p{
    font-size: 16px;
    line-height: 30px;
    font-weight: 550;
    color: #444;
    margin-bottom: 30px;
}
.read-more-btn {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid;
    border-radius: 100%;
    margin: auto;
    background: #fff;
    transform: translateX(-10px);
    opacity: 0;
    visibility: hidden;
    border-color: #ff8a5e;
    transition: .3s ease-in-out;
    text-decoration: none;
}
.read-more-btn i{
    color: #000;
    font-size: 12px;
}
.card-details:hover .read-more-btn{
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

/* ============= Responsive Ipad ==================== */
@media (max-width: 992px) {
 .creative-cards .container .row .card-column {
    flex: 0 0 auto;
    width: 50%;
    margin-bottom: 40px;
}
}

/* ============= Responsive Iphone ==================== */
@media (max-width: 480px) {
 .creative-cards .container .row .card-column {
    flex: 0 0 auto;
    width: 100%;
    margin-bottom: 20px;
  }
  .card-details{
      width: 100%;
  }
  .read-more-btn{
      transform: translateX(0px);
      opacity: 1;
      visibility: visible;
  }
}








/* Caard Section */
/* Caard Section */
/* Caard Section */
/* Caard Section */










:root {
  --dark-blue: hsl(234, 12%, 34%);
  --gray-blue: hsl(229, 6%, 66%);
  --light-gray: hsl(0, 0%, 98%);
  --border-default: hsl(0, 0%, 50%);
  --font-light: 200;
  --font-regular: 400;
  --font-bold: 600;

  color: var(--gray-blue);
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: var(--font-regular);
}


.cyan-caard {
  --border-default: hsl(180, 62%, 55%);
  grid-area: 1 / 1 / 3 / 2;
}

.red-caard {
  --border-default: hsl(0, 78%, 62%);
}

.orange-caard {
  --border-default: hsl(34, 97%, 64%);
}

.blue-caard {
  --border-default: hsl(212, 86%, 64%);
  grid-area: 1 / 3 / 3 / 4;
}

.header-section {
  text-align: center;
}

.subtitle,
.main-title {
  font-size: clamp(1.6rem, 5vw, 2rem);
}

.subtitle {
  font-weight: var(--font-light);
}

.main-title {
  margin-bottom: 1rem;
}

.main-title,
.caard-heading {
  color: var(--dark-blue);
}

.description {
  max-width: 500px;
  margin: 0 auto;
}

.caard-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 50px;
  border-bottom: 1px solid rgb(230, 222, 222);
}

.info-caard {
  max-width: 400px;
  margin: 0 auto;
  padding: 2rem;

  border-top: 5px solid var(--border-default);
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(23, 79, 138, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.info-caard:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 20px rgba(23, 79, 138, 0.2);
  border-color: hsl(210, 22%, 49%);
}

.info-caard img {
  transition: transform 0.3s ease;
}

.info-caard:hover img {
  transform: translateY(-5px);
}

.caard-heading {
  margin-bottom: 1rem;
  font-size: 24px;
  font-weight: var(--font-bold);
}

.caard-text {
  margin-bottom: 1.5rem;
  font-weight: 300 !important;
  font-size:18px;
  line-height: 30px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif !important;
}

.caard-image {
  margin-left: auto;
  display: block;
}
.info-caard:hover .caard-image{
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .caard-grid {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    align-items: stretch;
  }

  .cyan-caard {
    grid-area: auto;
  }

  .blue-caard {
    grid-area: auto;
  }

  .info-caard {
    max-width: 300px;
  }
}

@media screen and (max-width: 500px) {
  .caard-grid {
    grid-template-columns: repeat(1, minmax(200px, 1fr));
  }
}