    html, body {
 
      background: linear-gradient(to bottom, #87ceeb, #f0f0f0);
    }
    .hero {
      position: relative;
      width: 100vw;
      max-width: 100vw !important;
      height: 100vh;
      overflow: hidden;
      background: url('../img_covers/hero_bg.jpeg') no-repeat center center;
      background-size: cover;     
    }
    
	.hero::before {
	  content: "";
	  position: absolute;
	  inset: 0;
	  background: rgba(173, 216, 230, 0.2); /* light blue with 50% opacity */
	  z-index: 1;
	}
    
    .car-container {
      position: absolute;
      bottom: 10%;
      right: -300px;
      width: 200px;
      cursor: pointer;
      z-index:10;
    }
    .car {
      width: 100%;
    }
    .smoke {
      position: absolute;
      right: -30px;
      bottom: 15px;
      width: 60px;
      height: 60px;
      background: radial-gradient(circle, rgba(128,128,128,0.8), rgba(255,255,255,0));
      border-radius: 50%;
      opacity: 0;
      animation: puff 1.5s infinite;
      pointer-events: none;
    }
    @keyframes puff {
      0% { transform: translateY(0) scale(0.5); opacity: 0.7; }
      50% { transform: translateY(-20px) scale(1.2); opacity: 0.5; }
      100% { transform: translateY(-40px) scale(1.5); opacity: 0; }
    }
    .banner {
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      background: #ffcc00;
      color: #000;
      font-weight: bold;
      font-family: sans-serif;
      padding: 5px 10px;
      border-radius: 10px;
      animation: wave 1s infinite alternate;
      white-space: nowrap;
    }
    @keyframes wave {
      0% { transform: translateX(-50%) rotate(-3deg); }
      100% { transform: translateX(-50%) rotate(3deg); }
    }




  
#company-name {
  position: relative;
  width: 100%;
  max-width: 100vw;
  padding: 0 5vw;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  font-size: clamp(1.2rem, 5vw, 2.5rem); /* responsive font size */
  font-weight: bold;
  font-family: sans-serif;
  overflow-wrap: break-word;
  word-break: break-word;
  text-align: center;
}  

  .letter {
    display: inline-block;
    text-shadow: 2px 2px #FFFFFF;
    transform: translateX(100vw);
    opacity: 0;
    animation: flyIn 0.8s forwards;
  }

  @keyframes flyIn {
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  .carousel-item {
  	max-width: 90%;
  	max-height: 90%;
  }
  
  .modal-pop-img {
  	width: 100% !important;
  	max-height : 90%;
  	object-fit: cover;
  }
  
  .popup-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    visibility: hidden;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }

  .popup-modal {
    position: relative;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    max-width: 90vw;
    width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1000;
  }

  .popup-modal .close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
  }  
  
 .carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.8));
}

.mySwiper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.swiper-wrapper {
  align-items: center;
}

.popup-modal .swiper-slide-active {
  transform: none !important;
}

.swiper-slide {
  flex-shrink: 0;
  width: auto;
  max-width: 100%;
  /*display: flex;*/
  justify-content: center;  
}


.responsive-box {
  width: 30vw; /* default for desktop */
  max-height:75vh;
  border-radius:10px; 
  height:30vh; 
  object-fit:cover; 
  transition:transform 0.3s ease;
}
 
@media (max-width: 1024px) {
  .responsive-box {
    width: 50vw; /* tablets / medium devices */
  }
}

@media (max-width: 600px) {
  .responsive-box {
    width: 100vw; /* phones / small devices */
  }
}

.arrows {
  width: 60px;
  height: 72px;
  position: absolute;
  left: 50%;
  margin-left: -30px;
  bottom: 30vh;
}

.arrows path {
  stroke: #2994D1;
  fill: transparent;
  stroke-width: 1px;  
  animation: arrow 2s infinite;
  -webkit-animation: arrow 2s infinite; 
}

@keyframes arrow
{
0% {opacity:0}
40% {opacity:1}
80% {opacity:0}
100% {opacity:0}
}

@-webkit-keyframes arrow 
{
0% {opacity:0}
40% {opacity:1}
80% {opacity:0}
100% {opacity:0}
}

.arrows path.a1 {
  animation-delay:-1s;
  -webkit-animation-delay:-1s; 
}

.arrows path.a2 {
  animation-delay:-0.5s;
  -webkit-animation-delay:-0.5s; 
}

.arrows path.a3 { 
  animation-delay:0s;
  -webkit-animation-delay:0s;
}

.demo{ 

background: #6c6a6a; 
max-width: 100vw;

}
.testimonial .pic{
    width: 22%;
    padding: 20px 0;
    margin: 0 6% 0 2%;
    float: left;
    position: relative;
    z-index: 1;
}
.testimonial .pic:before,
.testimonial .pic:after{
    content: "";
    width: 130px;
    height: 150px;
    background: #e1c37d;
    position: absolute;
    z-index: -1;
}
.testimonial .pic:before{
    top: 0;
    right: -20px;
}
.testimonial .pic:after{
    bottom: 0;
    left: -20px;
}
.testimonial .pic img{
    width: 100%;
    height: auto;
    border: 3px solid #e1c37d;
}
.testimonial .testimonial-content{
    width: 70%;
    float: right;
}
.testimonial .title{
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    padding-top: 65px;
    padding-left: 15px;
}
.testimonial .post{
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 27px;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 25px;
    padding-left: 15px;
}
.testimonial .description{
    font-size: 16px;
    color: #fff;
    padding: 0 10px;
    margin: 0;
    position: relative;
}
.testimonial .description:before,
.testimonial .description:after{
    font-family: "Font Awesome 5 Free"; font-weight: 900;
    font-size: .5em;
    color: #e1c37d;
    position: relative;
}
.testimonial .description:before{
    content: "\f10d";
    margin-right: 5px;
    top: 0;
    left: 0;
}
.testimonial .description:after{
    content: "\f10e";
    margin-left: 5px;
    position: relative;
    bottom: 0;
    right: 0;
}
.owl-theme .owl-controls{
    width: 70%;
    margin: 0;
    text-align: left;
    position: absolute;
    bottom: 0;
    right: 0;
}
.owl-theme .owl-controls .owl-buttons div{
    width: 70px;
    height: 90px;
    line-height: 90px;
    background: transparent;
    border-radius: 0;
    opacity: 1;
    position: relative;
}
.owl-prev:before,
.owl-next:before{
    content: "\f177";
    font-family: "fontawesome";
    font-size: 45px;
    font-weight: 900;
    color: #ddd;
    position: absolute;
    top: 0;
    left: 25%;
}
.owl-next:before{
    content: "\f178";
}
.owl-next:after{
    content: " / ";
    font-size: 40px;
    color: #ddd;
    position: absolute;
    top: 0;
    left: -10px;
}
@media only screen and (max-width: 990px){
    .testimonial{ text-align: center; }
    .testimonial .pic{
        width: 200px;
        margin: 0 auto;
        float: none;
    }
    .testimonial .pic:before,
    .testimonial .pic:after{
        width: 80px;
        height: 100px;
    }
    .testimonial .testimonial-content{
        width: 100%;
        float: none;
    }
    .testimonial .title{
        padding: 0 0 0 0;
    }
    .testimonial .post{
        padding: 0;
        margin-bottom: 10px;
    }
    .owl-theme .owl-controls{
        width: 100%;
        position: static;
        text-align: center;
    }
    .owl-theme .owl-controls .owl-buttons div{
        height: 50px;
        line-height: 50px;
    }
}

