* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
  }
  h1, h2, h3, .card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600; /* You can adjust weight as needed */
  }
  p, a, span, .btn {
    font-family: 'Roboto', sans-serif;
    font-weight: 400; /* Normal for body text */
  }
    

  /* Navbar styling */
.navbar {
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-brand h1 {
  font-size: 1.5rem;
  color: #000;
}

.navbar .nav-link {
  color: #000;
  font-size: 1rem;
  margin-right: 15px;
}

.navbar .nav-link:hover {
  color: #00aa8f; /* Light teal color on hover */
}

.navbar .signup-btn {
  background-color: #00aa8f;
  color: black;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  text-decoration: none;
}

.navbar .mr-2 {
  height: 80px; /* Default height for large and medium devices */
}


.navbar .signup-btn:hover {
  background-color: #00907d; /* Darker teal on hover */
}

.collapse.navbar-collapse{
  justify-content: end;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .navbar .mr-2 {
        height: 50px !important; 
    }
  .navbar {
      padding: 15px;
  }
  
  .navbar .nav-link {
      font-size: 1.2rem;
      margin-right: 0;
  }
  
  .navbar .signup-btn {
      margin-top: 10px;
  }
}






.hero-section {
    background-image: url('../images/pattern_1.png');
    background-repeat: no-repeat;
    background-size: auto;
    background-position: top right;
    height: 100vh;
    padding-right: 7rem;
    padding-left: 7rem;
    margin-bottom: 45vh;
  }
  
  .pattern-2 {
    position: absolute;
    top: 30%; /* Start from the middle of the section */
    left: 0;
    width: 30%; 
    height: 100%; /* Extend to cover the section height */
    /* background: url('../images/pattern_2.png') no-repeat center center; */
    background-size: cover; /* Ensure the image covers the pseudo-element */
    z-index: -1; /* Place it behind the section content */
  }
  
  img.pattern_2{
    position: absolute;
    top: 70%;
    z-index: -1;
   
  }
  .text-content{
    width: 40%;
    margin-right: 50px;
  }
  .text-content h1 {
    font-size: 2rem;
  }
  
  .text-content p {
    margin: 20px 0;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .text-content .btn-primary {
    background-color: #00aa8f;
    border-color: #00aa8f;
    color: black;
  }
  
  .text-content .btn-primary:hover {
    background-color: #00907d;
    border-color: #00907d;
  }
  
  .video-placeholder {
    background-color: #ccc;
    height: 300px;
    position: relative;
  }
  .video-placeholder {
    flex: 1;
    max-width: 560px;
    position: relative;
    background-color: #fff; /* Ensures the shadow is visible */
    padding: 20px; /* Adds padding inside the box */
    border-radius: 10px; /* Rounds the corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow at the bottom */
  }
  .banner-img{
    width: 10000vw;
    height: 100%;
    border-radius: 10px;
  }
  
  .embed-responsive {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Ensures the video fits the rounded corners */
  }
  
  
  .video-placeholder:before {
    content: '';
    width: 100%;
    height: 100%;
    background: url('play-icon.png') no-repeat center center;
    background-size: 50px;
    opacity: 0.5;
  }
  @media (min-width: 768px) and (max-width: 1024px) {
    .text-content{
      width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .text-content h1{
      font-size: 1.5rem;
    }
    .text-content p{
        width: 150%;
    }
    .hero-section {
      flex-direction: column;
      padding: 120px 0px 20rem;
      background-image: url('../images/pattern_7\ \(1\).png');
      margin-bottom: 25rem;
    }
    
    .text-content {
      padding-right: 0;
      width: 50%;
    }
    
    .video-placeholder {
        display: none;
    }
  }
  





  .why-choose-land-expeditions {
    text-align: center;
    padding: 50px 0;
    /* background-color: #fff; */
    position: absolute;
    width: 100%;
    margin-top: -50vh;
  }

  .why-choose-land-expeditions h2 {
    font-size: 2rem;
    color: #2b2b2b;
    margin-bottom: 30px;
  }

  .why-choose-land-expeditions .cards-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .why-choose-land-expeditions .card {
    background-color: white;
    width: 30%;
    padding: 20px;
    margin: 10px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    align-items: center;
  }

  .why-choose-land-expeditions .card:hover {
    transform: translateY(-10px);
  }

  .why-choose-land-expeditions .card img {
    width: 150px;
    height: 100px;
    margin-bottom: 20px;
  }

  .why-choose-land-expeditions .card h3 {
    font-size: 1.5rem;
    color: #2b2b2b;
    margin-bottom: 15px;
  }

  .why-choose-land-expeditions .card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .why-choose-land-expeditions{
        position: static;
    }
    .why-choose-land-expeditions .cards-container {
      flex-direction: column;
      align-items: center;
    }

    .why-choose-land-expeditions .card {
      width: 80%;
      margin: 20px 0;
    }
  }





/* Section Background */
.how-it-works {
  background-color: #2d5161;
  height: 100vh;
  margin-bottom: 310vh;
}
.how-it-works .row.align-items-center{
margin-bottom: 50px;
}

.how-it-works img.img-fluid.rounded{
    width: 100%;
    height: 70vh;
}
.how-it-works .col-md-4.bg-white.p-4.rounded{
    height: 70vh;
}
.how-it-works h2 {
  font-size: 2.2em;
}

/* Step Number and Title Colors */
.step-number {
  font-size: 3em;
  color: black; /* Dark primary color */
  margin-bottom: 5vh;
    font-weight: 600;
}

.step-title {
  font-size: 1.8em;
  color: black; /* Dark primary color */
  margin-bottom: 5vh;
    font-weight: 600;
}

.step-description {
  color: #666; /* Light muted text color */
  font-size: 1em;
  margin-bottom: 20px;
  margin-bottom: 5vh;

}

/* Button Styling */
.request-demo-btn {
  background-color: #00aa8f;;
  color: black;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 1em;
  border: none;
  transition: background-color 0.3s ease;
}

.request-demo-btn:hover {
  background-color: #138f9c; /* Darken button color on hover */
}

.pattern-3 {
    position: absolute;
    top: 30%; /* Start from the middle of the section */
    left: 0;
    width: 30%; /* Full width of the section */
    height: 100%; /* Extend to cover the section height */
    /* background: url('../images/pattern_2.png') no-repeat center center; */
    background-size: cover; /* Ensure the image covers the pseudo-element */
    z-index: -1; /* Place it behind the section content */
  }


  img.pattern_3.d-none.d-md-flex {
    position: absolute;
    top: 260vh;
    z-index: -1;
}
img.pattern_4.d-none.d-md-flex {
  position: absolute;
  top: 360vh;
  z-index: -1;
}

img.pattern_7.d-none.d-md-flex {
  position: absolute;
  top: 460vh;
  z-index: -1;
}
img.pattern_5.d-none.d-md-flex {
  position: absolute;
  right: 0;
  top: 260vh;
  z-index: -1;
}
img.pattern_6.d-none.d-md-flex {
  position: absolute;
  right: 0;
  top: 360vh;
  z-index: -1;
  width: 38%;
}

img.pattern_8.d-none.d-md-flex {
  position: absolute;
  right: 0;
  top: 460vh;
  z-index: -1;
  width: 38%;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .how-it-works img.img-fluid.rounded{
    height: auto;
  }
  .step-title{
    font-size: 1.4em;
    margin-bottom: 3vh;
  }
  .how-it-works .col-md-4.bg-white.p-4.rounded{
    height: auto;
  }
  .how-it-works{
    margin-bottom: 70vh;
    padding-top: 5vh !important;
  }
  .case-studies-section{
    padding: 50px 50px !important;
  }
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .how-it-works{
        height: auto;
        margin-bottom: 10vh;
        padding: 20px;
        padding-top: 30px !important;
    }
    .rounded{
      margin-bottom: 10px;
    }
    .how-it-works .col-md-4.bg-white.p-4.rounded{
      height: auto;
    }
  .how-it-works h2 {
      font-size: 1.8em;
  }

  .step-number {
      font-size: 2.5em;
  }

  .step-title {
      font-size: 1.6em;
  }
  .how-it-works img.img-fluid.rounded{
    height: auto;
  }
  .step-title{
    font-size: 1.4rem;
  }
  
}





/* Background and Section Styles */
.clients-section .img-fluid {
  width: 100%;
}

.clients-section h2 {
  color: #173b4b; /* Dark blue heading color */
  font-size: 1.8rem;
}

.clients-section .row.justify-content-center {
  padding: 3rem 10rem;
}

.section-subtitle {
  color: #6c7a89; /* Subtle grey for subtitle text */
  margin-bottom: 2rem;
}

/* Image Styles */
.clients-section img {
  max-width: 100%; /* Ensure images can grow larger based on column width */
  height: auto;
  transition: transform 0.3s ease;
  padding: 10px; /* Add spacing around images */
}

.clients-section img.grayscale {
  filter: grayscale(100%);
}

.clients-section img:hover {
  filter: grayscale(0%);
  transform: scale(1.05); /* Slight zoom on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .clients-section .row.justify-content-center {
      padding: 0;
  }

  .clients-section h2 {
      font-size: 1.5rem;
  }

  .section-subtitle {
      font-size: 1rem;
  }

  /* Make images larger on mobile */
  .clients-section img {
      max-width: 80%; /* Increase image size on smaller screens */
      margin: 0 auto; /* Center the images */
  }
}

@media (max-width: 576px) {
  /* Further adjust for very small screens */
  .clients-section img {
      max-width: 90%; /* Larger images on the smallest screens */
  }
}





/* Stats Section */
.stats-section {
  /* background-color: #f4f4f4; */
  padding-top: 60px;
  padding-bottom: 60px;
}



.circle-content {
  background-color: #1b596c; /* Dark teal */
  border-radius: 50%;
  width: 170px;
  height: 170px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 1.5rem;
  flex-direction: column;
}

.circle-green {
  background-color: #ACEBE1;
  color: black;  
}

.stat-box h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.stat-box p {
  margin: 0;
  font-size: 1rem;
}

.description {
  font-size: 0.875rem;
  color: #666666;
  margin-top: 20px;
  line-height: 1.5;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .circle-content {
    width: 130px;
    height: 130px;
  }

  .stat-box h2 {
    font-size: 1.5rem;
  }

  .description {
    font-size: 0.75rem;
  }
}






/* Main section background */
.case-studies-section {
  background-color: #f7f7f7; /* Light background */
  padding: 50px 200px;
}
.main-case-study-card {
    position: relative;
    overflow: hidden;
  }
  
  .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem; /* Adjust padding as needed */
    color: white; /* Adjust text color if needed */
  }
  
  .badge {
    font-size: 0.875rem; /* Adjust font size if needed */
  }
  
  .learn-more-link {
    color: #1b596c; /* Adjust color as needed */
  }
  
  .learn-more-link:hover {
    text-decoration: underline;
  }
  

/* Section heading */
.case-studies-section h2 {
  font-size: 1.8rem;
  color: #173b4b; /* Dark blue */
}

/* Main case study card */
.main-case-study-card {
  background-color: #173b4b; /* Dark blue background */
  color: #ffffff; /* Text in white */
  margin-bottom: 10px;
}

.main-case-study-card h5 {
  font-size: 1.2rem;
  color: #ffffff;
}

.main-case-study-card p {
  color: #d9d9d9; /* Light grey for text */
}

.learn-more-link {
  text-decoration: none;
  border-bottom: 2px solid #1b596c;
}

.learn-more-link:hover {
  color: #ffdd57; /* A yellow hover effect for the link */
}

/* Small case study cards */
.small-case-study-card {
  color: #ffffff;
  margin-top: 45%;
  text-align: center;
}

.small-case-study-card h6 {
  font-size: 0.9rem;
  margin: 0;
  color: #ffffff;
}

.badge {
  font-size: 0.7rem;
  background-color: #ffffff;
  color: #173b4b; /* Dark blue for the badge text */
}

/* Media query for smaller devices */
@media (max-width: 768px) {
    .case-studies-section{
        padding: 0;
    }
  .case-studies-section h2 {
      font-size: 1.4rem;
  }

  .main-case-study-card {
      margin-bottom: 30px;
  }

  .small-case-study-card h6 {
      font-size: 0.85rem;
  }
}







.unique-testimonial-section {
padding: 50px 0;
}

.unique-testimonial-section h2 {
font-size: 2rem;
font-weight: bold;
margin-bottom: 30px;
color: #212121;
}

.testimonial-card {
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 10px;
color: #212121;
}

.testimonial-card:hover {
background-color: #254650;
color: #ffffff;
}

.light-card {
background-color: #ace8e1;
}

.testimonial-card p {
margin-bottom: 15px;
font-size: 1rem;
}

.testimonial-card strong {
display: block;
/* margin-bottom: 5px; */
}

@media (max-width: 768px) {
.unique-testimonial-section h2 {
  font-size: 1.5rem;
}

.testimonial-card {
  margin-bottom: 20px;
}
}






.unique-banner-section {
background-color: #254650;
background-image: url('../images/background_1.png'); /* You can add the background pattern */
background-size: cover;
background-position: center;
min-height: 400px;
color: white;
}

.unique-banner-section h1 {
font-size: 2.5rem;
font-weight: 600;
}

.custom-btn {
padding: 10px 20px;
font-size: 1rem;
background-color: #00aa8f;
}

@media (max-width: 768px) {
.unique-banner-section h1 {
  font-size: 1.8rem;
}

.custom-btn {
  width: 100%;
  margin-bottom: 10px;
}
.unique-banner-section .text-center{
  width: 100%;
}
}







.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #333; /* Adjust color as needed */
}

.contact-item i {
  margin-right: 10px;
  color: #1b596c; /* Color for icons */
  font-size: 1.2rem; /* Adjust icon size */
}

.contact-item a {
  color: #1b596c;
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-item span {
  font-weight: 400;
}

.unique-contact-section {
background-color: #ffffff;
padding: 50px 0;
}

.unique-contact-section h2 {
font-size: 2rem;
font-weight: bold;
margin-bottom: 20px;
}

.unique-contact-section p {
font-size: 1rem;
color: #6c757d;
}

.unique-contact-form input, 
.unique-contact-form textarea {
background-color: #d1d5d9;
border-radius: 10px;
border: none;
padding: 10px;
color: #212529;
}

.unique-contact-form input::placeholder,
.unique-contact-form textarea::placeholder {
color: #6c757d;
}

.custom-submit-btn {
background-color: #00a99d;
border: none;
padding: 10px 20px;
font-size: 1rem;
border-radius: 5px;
}

.custom-submit-btn:hover {
background-color: #007b71;
}

@media (max-width: 768px) {
.unique-contact-section h2 {
  font-size: 1.5rem;
}

.custom-submit-btn {
  width: 100%;
}
.contact-info{
  margin-bottom: 10vh;
}
}

/* General Form Styles */
.unique-contact-form .form-control {
  border-radius: 10px;
  padding: 10px 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  color: #333;
}

.unique-contact-form .form-control:focus {
  border-color: #1b596c;
  box-shadow: 0 0 5px rgba(27, 89, 108, 0.3);
}

.unique-contact-form textarea.form-control {
  resize: none; /* Prevents resizing */
}

/* Margin for each input */
.unique-contact-form .mb-3 {
  margin-bottom: 15px;
}

/* Submit Button */
.custom-submit-btn {
  background-color: #1b596c;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  transition: background-color 0.3s ease;
}

.custom-submit-btn:hover {
  background-color: #146070;
}

/* Styling the dropdown */
.unique-contact-form select.form-control {
  height: 45px;
  background-color: #ccc; /* Change the background color */
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 5px 15px;
  color: #333;
  font-size: 1rem;
}

/* Input placeholder styling */
.unique-contact-form .form-control::placeholder {
  color: #888;
  font-size: 0.95rem;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .unique-contact-form .form-control {
    font-size: 0.875rem;
    padding: 8px 12px;
  }

  .custom-submit-btn {
    padding: 8px 15px;
    font-size: 0.875rem;
  }
}






.footer-expeditions {
  background-color: #173b4b; 
}
.logo_footer{
    margin-bottom:20px ;
}
.footer-expeditions .footer-brand h4 {
  font-family: 'Arial', sans-serif;
  text-transform: uppercase;
  font-size: 1.5rem;
}

.footer-expeditions ul {
  padding: 0;
}

.footer-expeditions ul li {
  list-style: none;
  margin-bottom: 10px;
}

.footer-expeditions ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-expeditions ul li a:hover {
  text-decoration: underline;
}

.footer-expeditions .fab {
  font-size: 1.2rem;
}

.footer-expeditions p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.footer-expeditions .small {
  font-size: 0.8rem;
  color: #bbbbbb;
}


.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; /* Adjust size of the circular background */
    height: 40px; /* Adjust size of the circular background */
    background-color: white; /* Background color of the circle */
    color: #1b596c !important; /* Icon color */
    border-radius: 50%; /* Rounded border */
    border: 2px solid #1b596c; /* Border color */
    text-decoration: none; /* Remove underline from links */
    font-size: 1.5rem; /* Adjust icon size as needed */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for hover effects */
}

.social-icons a:hover {
    background-color: #1b596c; /* Background color on hover */
    color: white; /* Icon color on hover */
}

@media (max-width: 768px) {
  .footer-expeditions {
      text-align: center;
  }

  .footer-expeditions ul {
      display: inline-block;
  }

  .footer-expeditions .col-md-3 {
      margin-bottom: 20px;
  }
}
