/**
* Template Name: FlexStart
* Template URL: https://bootstrapmade.com/flexstart-bootstrap-startup-template/
* Updated: Mar 17 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}
@font-face {
  font-family: Recoleta ;
  src: url(../Recoleta-RegularDEMO.otf);
}
body {
  font-family:  "Plus Jakarta Sans", sans-serif;;
  color: #444444;
  height: 100vh;

}

a {
  color: #4154f1;
  text-decoration: none;
}

a:hover {
  color: #DB8B00;
  text-decoration: none;
}


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0;
  color: black;
  text-transform: uppercase;
}

.section-header p {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 38px;
  line-height: 42px;
  font-weight: 600;
  font-family: Recoleta;
  color: black;
}

@media (max-width: 768px) {
  .section-header p {
    font-size: 28px;
    line-height: 32px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #012970;
  min-height: 40px;
  margin-top: 82px;
  color: #fff;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 57px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol a {
  color: #fff;
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #8894f6;
  content: "/";
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #DB8B00;
  ;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6776f4;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header{
position: relative;
background-color: #00878A;
}
#header2{
  position: relative;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

.header.header-scrolled {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
  line-height: 0;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012970;
  font-family: "Nunito", sans-serif;
  margin-top: 3px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color:#DB8B00;
  ;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #DB8B00;
  padding: 8px 20px;
  margin-left: 200px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #DB8B00;

}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #4154f1;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .megamenu {
  position: static;
}

.navbar .megamenu ul {
  margin-top: 5px;
  right: 0;
  padding: 10px;
  display: flex;
}

.navbar .megamenu ul li {
  flex: 1;
}

.navbar .megamenu ul li a,
.navbar .megamenu ul li:hover>a {
  color: #013289;
}

.navbar .megamenu ul li a:hover,
.navbar .megamenu ul li .active,
.navbar .megamenu ul li .active:hover {
  color: #4154f1;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #DB8B00;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  position: fixedf;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 1200px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: teal;
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: black;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #DB8B00;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 5px;
  width: 150px ;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: teal;
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #4154f1;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* General Styles */
body {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  background-color: #00878A; /* Teal */
  padding: 60px 0;
  height: auto;

}
.hero h1{
  font-weight: 600;
  font-family: Recoleta;
  font-size: 60px;

}

.hero p{
  font-weight: 400;
  font-family:  "Plus Jakarta Sans", sans-serif;;
}
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.col-md-6 {
  flex: 0 0 50%;
  max-width: 100%;
  padding: 0 15px;
}

.hero-content {
  color: #fff;
}

.hero-content h1 {
  font-size: 600;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #DB8B00; /* Brown */
  color: #fff;
  text-decoration: none;
  border-radius: 9px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color:  wheat;
}

.hero-image img {
  width: 1000px;
  height: auto;
  margin-right: -70%;
   /* Increase the bus size */
}

/* Text Transition Animation */
@keyframes textTransition {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

.transition-text {
  animation: textTransition 2s infinite;
}
.gradienttext{
 background : linear-gradient(90deg, #DB8B00 0%, #CCE6E6 59.5%);

}

/* Responsive Styles */
@media (max-width: 767px) {
  .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .hero-content {
    text-align: center;
    margin-bottom: 10px;
  }

  .hero h1{
    font-size: 30px;
  }

  .hero-image img {
    width: 100%;
    height: auto;
  }
}


/* Bus Artwork Strip */
.bus-artwork {
  width: 100%;
  max-width: 1900px; /* Adjust the maximum width as needed */
  height: 100px; /* the desired height */
  overflow: hidden; /* any part of the image that exceeds the height */
  opacity: 98%;
}

.bus-artwork img {
  width: 100%;
  height: auto;
} 
@media (min-width: 1024px) {
  .hero {
    background-attachment: fixed;
  }
}


/* About */
.future-section {
  padding-left: 10px;
  padding-top: 5px;
}

.future-section h1{
  font-family: Recoleta;
  font-weight: 600;
  font-size: 48px;
}
.future-section p{
  font-family:  "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
 
}

.container2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 50px;
}

.row2 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.col-md-6 {
  flex: 0 0 48%;
  max-width: 48%;
  box-sizing: border-box;
  padding: 10px;
}

.content2 {
  padding: 20px;
}

.content2 h1 {
  color: #DB8B00;
}

.btn2.btn-primary {
  border: 2px solid #DB8B00;
  background-color: white;
  color: #DB8B00;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 9px ;
}

.btn2.btn-primary:hover {
  background-color: orange;
  color: white;
}

.image-gallery img {
  max-width: 80%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 10px;
    padding-top: 0px ;
  }

  .future-section h1{
    font-size: 30px;
  }
  
  .content2 {
    text-align: left;
    padding-right: 2px;
  }
  
  .image-gallery {
    text-align: left;
    padding-left: 12px;
  }
  
  .image-gallery img {
    margin-top: 20px;
  }
}



.travel-convenient {
  text-align: center;
  position: relative ;
  animation: fadeUpAnimation 3s ease;
  padding-top: 0px;
}
.travel-convenient h1{
  color: black;
  margin-bottom: 50px ;
  margin-top: 50px ;
  font-family: Recoleta;
  font-weight: 600;
}
.travel-container{
  position: relative ;
  display: inline-block;
}
.travel-container img:first-child{
  display: block;
  max-width: 100% ;
  height: auto;
}
.travel-container img:last-child{
  position: absolute;
  top: 50%;
  left: 50% ;
  transform: translate(-50%, -50%);
  max-width: 60% ;
  max-height: 60% ;
}
@media (max-width:767px) {
  .travel-container img:last-child{
    max-width: 85%;
    max-height: 80% ;
  } 
}


.our-story {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
}

.text-content {
  flex: 1;
  max-width: 60%;
}
.text-content h5{
  padding-left: 40px;
  font-size: small;
}

.story-text h1 {
  font-size: 35px;
  font-family: Recoleta;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #000;
  padding-left: 40px;
}

.story-text p {
  margin-bottom: 1.5rem;
  padding-left: 40px;
}

.story-text span {
  font-weight: bold;
}

.video-container {
  position: relative;
  max-width: 35%;
}

.video-container img {
  width: 100%;
  height: auto;
  border-radius: 9px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.8);
  color: #000;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50%;
  cursor: pointer;
}

@media (max-width: 767px) {
  .text-content {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .video-container {
    max-width: 100%;
  }
}


/*--------------------------------------------------------------
# What Sets Us Apart
--------------------------------------------------------------*/
.benefits-section {
  background-color: #ffffff;
  padding: 30px 20px;
  text-align: center;
}

.benefits-section p{
  font-family: "Plus Jakarta Sans", sans-serif;
}

.container5 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2px;
}

.section-subtitle {
  font-size: 1rem;
  color: black;
  margin-bottom: 10px;
  text-align: left;
}

.benefits-section h2 {
  color: #000;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: left;
  font-family: Recoleta;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.benefits h3{
  font-family: Recoleta;
  font-weight: 600;
  font-size: 36px;
  line-height: 48.96px;
  color: #000;
}

.benefits p{
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
}
.benefit-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 10px;
  flex: 1;
  min-width: 300px;
  box-sizing: border-box;
  max-width: 32%;
}

.benefit-icon {
  margin-bottom: 20px;
}

.benefit-icon img {
  width: 50px;
  height: 50px;
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-top: 10px;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 1rem;
  color: #666;
}

.benefit-card strong {
  color: #008080;
}

@media (max-width: 768px) {
  .benefits {
    flex-direction: column;
    align-items: center;
    padding-right: 10px;
  }
  
  .benefit-card {
    max-width: 100%;
  }
  
  .benefits-section h2 {
    font-size: 2rem;
  }
  
  .benefit-card h3 {
    font-size: 1.25rem;
  }
  
  .benefit-card p {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
}

.counts .count-box {
  display: flex;
  align-items: center;
  padding: 30px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.counts .count-box i {
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
  color: #4154f1;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #0b198f;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
}

.sustainability-section {
  background-size: cover;
  padding: 40px 20px;
  text-align: center;
  border-radius: 15px;
}
.sustainability-section h2{
  font-family: Recoleta;
  font-weight: 600;
  font-size: 48px;

}
.sustainability-section p{
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 24px;

}

.container3 {
  max-width: 800px;
  background-image: url('../img/Bus\ Artwork-02.jpg') no-repeat center center;
  margin: 0 auto;
  background: #008083E5; /* This gives a slight overlay effect */
  padding: 20px;
  border-radius: 15px;
}

.sustainability-section h2 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.sustainability-section p {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn3.btn-primary {
  background-color: #ff9900;
  color: #ffffff;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

.btn3.btn-primary:hover {
  background-color: #cc7a00;
}

@media (max-width: 768px) {
  .sustainability-section h2 {
    font-size: 2rem;
  }
  
  .sustainability-section p {
    font-size: 1rem;
  }
  
  .btn3.btn-primary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}



/*--------------------------------------------------------------
# How we do what we do
--------------------------------------------------------------*/
.features-section {
  background-color: #ffffff;
  padding: 40px 20px;
  text-align: center;
}

.container4 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.section-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 10px;
  text-align: left;
}
.features-section p{
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #000;
  
}
.features-section h2 {
  font-family: Recoleta;
  font-weight: 600;
  font-size: 48px;
  margin-bottom: 40px;
  text-align: left;
  color: #000;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-right: 20px;
}

.features h3{
  font-family: "Plus Jakarta Sans", sans-serif;

}

.feature-card h3{
  font-family: "Plus Jakarta Sans", sans-serif;
}


.features p{
  font-family: "Plus Jakarta Sans", sans-serif;
}

.feature-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 10px;
  flex: 1;
  min-width: 300px;
  box-sizing: border-box;
}
.feature-card1{
  background: #E8FAF2;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 10px;
  flex: 1;
  min-width: 300px;
  box-sizing: border-box;
}

.feature-card-wide {
  flex: 1 0 100%;
  max-width: 100%;
}

.feature-number {
  font-size: 2rem;
  font-weight: bold;
  color: #555;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-top: 10px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 1rem;
  color: #666;
}

.feature-card strong {
  color: #ff9900;
}

@media (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature-card1{
    padding-right: 50px;
  }
  
  .feature-card, .feature-card-wide {
    max-width: 100%;
  }
  
  .features-section h2 {
    font-size: 2rem;
  }
  
  .feature-card h3 {
    font-size: 1.25rem;
  }
  
  .feature-card p {
    font-size: 0.9rem;
  }
}


/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .accordion-collapse {
  border: 0;
}

.faq p{
  font-family: Recoleta;
  font-weight: 600;
}

.faq .accordion-button {
  padding: 15px 15px 20px 0;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  color: #444444;
  text-align: left;
}

.faq .accordion-button:focus {
  box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
  background: none;
  color: #DB8B00;
  ;
  border-bottom: 0;
}

.faq .accordion-body {
  padding: 0 0 25px 0;
  border: 0;
}


/* /*-------------------------------------------------------------- */

.our-team {
  text-align: center;
  padding: 80px 0px;
}

.our-team h1{
  font-family: Recoleta;
  font-weight: 600;
  font-size: 48px;

}

.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.team-member {
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member img {
  max-width: 200px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.team-member h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: Recoleta;
}

.team-member p {
  font-size: 16px;
  color: #666;
  text-align: center;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .team-members {
    grid-template-columns: 1fr;
  }
}

/* Statistics */
.stats {
  background: #003334;
  color: #fff;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.stats-content {
  flex: 1;
  max-width: 600px;
  margin-right: 40px;
}

.stats-text h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: Recoleta;
}

.stats-text p{
font-family: "Plus Jakarta Sans", sans-serif;
}

.stats-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
}

.stat-item h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: Recoleta;
}

.stats-image {
  flex: 1;
  max-width: 600px;
}

.stats-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

@media (max-width: 991px) {
  .stats {
    flex-direction: column;
  }

  .stats-content {
    margin-right: 0;
    margin-bottom: 40px;
  }

  .stats-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .stats-items {
    grid-template-columns: 1fr;
  }
}

/* Vrs page */
.vrs-container {
  text-align: center;
  padding-top: 0px;
}
.vrs-container h1{
  font-family: Recoleta;
  font-weight: 600;
  color: #000;

}
.Juma h1{
  font-family: Recoleta;
  color: white;
}

.Juma p{
  font-family: "Plus Jakarta Sans", sans-serif;
}

.vrs-container img {
  max-width: 100%;
  height: auto;
}
.vrs img {
  max-height: 500px; 
  max-width: 100%;
  height: auto;  /* Adjust as needed */
  /* padding-top: 15px; */
}

.vrs img:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .vrs img {
    max-width: 60%;  /* Adjust as needed */
    padding-bottom: 90px;
    padding-top: 90px;
  }

  .What-is-VRS p {
    padding-left: 10px;
    padding-right: 10px;
  }

  .vrs-container{
    padding-bottom: 20px;
  }
  .vrs-cards{
    padding-left: 10px;
    padding-right: 10px;
  }


}
/* Meet Juma */
.Juma {
  background-color: #003334; 
  color: white;
  text-align: center; 
  /* font-family: ; */
  /* padding: 20px;  */
}

.Juma h1 {
  font-weight: bold; 
}

@media screen and (max-width: 768px) {
  .Juma {
    padding: 50px;
    margin-top: 100px ; 
  }
}

/* VRS */
.What-is-VRS {
  color: black;
  padding-bottom: 20px;
  text-align: center;
}

.What-is-VRS h1 {
  font-weight: bold;
  font-size: 48px;
  font-family: Recoleta;
  margin-bottom: 20px; /* Add some space below the H1 */
}
.What-is-VRS p{
font-family: "Plus Jakarta Sans", sans-serif;
}

.vrs-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* Space between cards */
}

.vrs-cards h2{
  font-family: Recoleta;
  font-weight: 600;
  font-size: 32px;
}

.vrs-card {
  background: #F8E8CC;
  padding: 20px;
  border-radius: 5px; /* Rounded corners */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  width: 23%; /* Adjust width as needed */
}

@media screen and (max-width: 768px) {
  .vrs-cards {
    flex-direction: column; /* Stack cards on smaller screens */
  }

  .vrs-card {
    width: 100%; /* Full width on small screens */
  }
  
}


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.overide-sliders{
   padding-left:0; 
   overflow: hidden;
   max-width: 100% ;
  display: flex;
  justify-content: center;
  align-items: center;


}
.overide-sliders img{
  width: 100px;

}
.clients-slider .swiper-slide {
  display: flex;
  justify-content: center; 
  align-items: center; 
}
.clients-slider img {
  max-width: 100%; 
  height: auto; 
  max-height: 100px; 
}
@media (max-width: 767px) {
  .clients-slider img {
    max-height: 90px; /* Reduce the maximum height for smaller screens */
  }
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #ffff;
  background: #fafbff;
  background-image: url(../img/Bus\ Artwork-02.jpg);
  padding: 30px;
  border-radius: 5px;
}

.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color:  #DB8B00;

}

.contact .info-box h3 {
  font-size: 20px;
  color: #ffff;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: #fafbff;
  background-image: url(../img/Bus\ Artwork-02.jpg);
  padding: 30px;
  height: 100%;
  border-radius: 5px ;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #4154f1;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #DB8B00;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #5969f3;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/* A Trip For Trees */
.Trip-Trees {
  align-items: center;
  padding: 2rem;
}
.Trip-Trees h1{
  text-align: center;
  font-family: Recoleta;
  font-weight: 600;
  font-size: 48px;
  color: #000;

}
.Trip-Trees img {
  max-width: 100%;
  height: auto;
}

.Trip-Trees div {
  text-align: center;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .Trip-Trees {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .Trip-Trees div {
    text-align: left;
    margin-right: 2rem;
    margin-bottom: 0;
  }
}
.climate-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
}

.climate-section h3{
  font-family: Recoleta;
  font-size: 24px;
}

.climate-section p {
  font-family:'Plus Jakarta' sans;
}

.text-content {
  flex: 1;
  max-width: 100%;
  margin-bottom: 2rem;
  
}

.stat-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.brown-text{
  color: #DB8B00;
}
.green-text{
  color: #008083;
  ;
}

.stat-card {
  background-color: #DB8B00;
  padding: 1rem;
  text-align: center;
  flex: 0 0 calc(33.33% - 1rem);
  margin-bottom: 1rem;
  color: white;
  border-radius: 10px;
}

.stat-card:nth-child(3n) {
  margin-right: 0;
}

.stat-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.stat-card span {
  font-weight: bold;
}

.video-container {
  position: relative;
  max-width: 100%;
}

.video-container img {
  width: 100%;
  height: auto;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.8);
  color: #000;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50%;
  cursor: pointer;
}

@media (min-width: 768px) {
  .text-content {
    max-width: 60%;
    margin-bottom: 0;
  }

  .stat-card {
    flex: 0 0 calc(33.33% - 1rem);
  }

  .stat-cards{
      display: grid;
      grid-template-columns: repeat(3, 1fr); /* Three columns of equal width */
      grid-gap: 1rem;  /* Optional spacing between cards */
  }

  .video-container {
    max-width: 35%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #f6f9ff;
  padding: 0 0 30px 0;
  font-size: 14px;
  bottom: 0;
}

.footer .footer-newsletter {
  padding: 50px 0;
  background: white;
  border-top: 1px solid #e1ecff;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  color: black;
}
.footer .footer-newsletter p{
  color: black;
}
.footer .footer-newsletter form {
  margin-top: 20px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  border: 1px solid #e1ecff;
}

.footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 8px;
  width: calc(100% - 140px);
}

.footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 30px;
  margin: 3px;
  background: #DB8B00;;
  color: #fff;
  transition: 0.3s;
  border-radius: 4px;
}

.footer .footer-newsletter form input[type=submit]:hover {
  background: teal;
}

.footer .footer-top {
  background: teal url(../img/footer-bg.png) no-repeat right top;
  background-size: contain;
  border-top: 1px solid #e1ecff;
  border-bottom: 1px solid #e1ecff;
  padding: 60px 0 30px 0;
}

@media (max-width: 992px) {
  .footer .footer-top {
    background-position: center bottom;
  }
}

.footer .footer-top .footer-info {
  margin-bottom: 30px;
}

.footer .footer-top .footer-info .logo {
  line-height: 0;
  margin-bottom: 15px;
}

.footer .footer-top .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-top .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012970;
  font-family: "Nunito", sans-serif;
  margin-top: 3px;
}

.footer .footer-top .footer-info p {
  color: white;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Nunito", sans-serif;
}

.footer .footer-top .social-links a {
  font-size: 20px;
  display: inline-block;
  color: white;
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .footer-top .social-links a:hover {
  color: #012970;
}

.footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-top .footer-links {
  margin-bottom: 30px;
  color: white;
}

.footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #d0d4fc;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-top .footer-links ul a {
  color: white;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-top .footer-links ul a:hover {
  color: #4154f1;
}

.footer .footer-top .footer-contact p {
  line-height: 26px;
  color: white;
}

.footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: black;


}

.footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color:  black;

}