/* styles.css in the public folder */
/*font*/
*{ 
    font-family: 'Patua One', cursive;
}
body {
  font-size: 16px;
  line-height: 1.5;
}

/* Style paragraph tags */
p {
  font-weight: 500; /* Lighter font weight */
  font-family: 'Mulish', sans-serif;
}

/* Style anchor tags */
a {
  color: #007bff; /* Blue color for normal links */
  text-decoration: none; /* Remove underlines by default */
  transition: color 0.3s; /* Smooth color transition on hover */
}

/* Style anchor tags on hover */
a:hover {
  color: #0056b3; /* Darker blue color on hover */
  text-decoration: none; /* Remove underline on hover */
}

/* Style anchor tags when active */
a:active {
  text-decoration: underline; /* Underline when active */
}


/* Style h1 tags */
h1 {
  font-size: 2rem; /* Larger font size */
}


/* Custom styles */
.navbar-logo {
    background-image: url('/images/logo.png');
    background-size: cover;
    background-repeat: no-repeat;
    width: 250px;
    height: 55px;
    display: inline-block;
}

/* Custom styles */
.navbar-custom {
    background-color: #fff; /* Change the background color as desired */
    border-bottom: 4px solid #af0000; /* Add a 2px bottom border with the desired color */
}

/* Custom styles for the navigation links */
.navbar-custom .navbar-nav .nav-link {
    color: #343a40; /* Set the color of the navigation links */
}

.carousel-caption{
  background-color: rgb(0, 8, 110, 0.7);
}
  
  /* Image styles */
  .image {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 10px 0;
  }

  /*project management section in home page*/
.pmsection{
  background-color: #c4c1c156;
  color: #0e0d0d;
  margin-top: 10px;
}

.whyus{
  color: #007bff;/* Blue text color */
  text-shadow: 2px 2px 4px white; /* White drop shadow */
}



/* Styles for the section2 */
.bg-image {
  background-image: url('/images/geowellriggray.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Background image doesn't move when scrolling */
  padding: 60px 0;
  height: 700px; /* Set the desired fixed height */
}

.section-header {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.section-content {
  background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent background */
  padding: 20px;
  border-radius: 5px;
}

/* section for our client */
.client-section {
  background-color: #f8f8f8;
  padding: 50px 0;
}

.client-container {
  position: relative;
  height: 100px;
  overflow: hidden;
}

.client-images {
  position: absolute;
  display: flex;
  animation: moveImages 30s linear infinite;
}

.client-image {
  width: 120px;
  height: 80px;
  object-fit: contain;
  margin: 0 10px;
}
.gap{
  width: 20px;
}

@keyframes moveImages {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Custom styles for box scrollbar on smaller screens */
@media (max-width: 767px) {
  .scrollable-div {
    max-height: 500px; /* Adjust this value as needed */
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: #555555 #f0f0f0; /* Adjust colors as needed */
  }

  /* Webkit browsers (Chrome, Safari) */
  .scrollable-div::-webkit-scrollbar {
    width: 8px;
  }

  .scrollable-div::-webkit-scrollbar-thumb {
    background-color: #555555;
    border-radius: 4px;
  }

  .scrollable-div::-webkit-scrollbar-track {
    background-color: #f0f0f0;
    border-radius: 4px;
  }
}

.logoholder{
  margin-top: 50px;
  margin-left: 50px;
}

.footerlogo{
  width: 200px;
  margin-bottom: 20px;
}



/*Mission and vision*/
.vision-mission-section {
  position: relative;
  background-color: #fff;
  padding: 50px;
}

.quotation-mark {
  position: absolute;
  font-size: 10rem;
  color: #ff0000;
}

.vision {
  top: 0;
  left: 0;
}

.image-box {
  text-align: center;
  margin: 0 auto;
}

.image-box img {
  max-width: 100%;
  height: auto;
  display: block;
}

.mission {
  bottom: 0;
  right: 0;
}

.statement {
  font-size: 2rem;
  text-align: center;
  padding-top: 20px;
}

.liner{
  background-color: #f8f9fa;
}
   /* Custom styles for the core value section */
   .core-values-section {
    background-color: #f8f9fa;
    padding: 50px 0;
    text-align: center;
  }

  .core-values-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .core-value-btn {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .core-value-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.7);
  }


  .core-value-description {
    display: none;
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    margin-top: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: left;
  }

 /* Custom styles for the fixed background section in services page */
 .servicesimage {
  position: relative;
  background-image: url('/images/geowellnigeria.jpg'); /* Replace with your image path */
  background-size: cover;
  background-attachment: fixed;
  color: rgb(250, 248, 248);
  text-align: center;
  padding: 50px 0;
}

.serviceholder{
  width: 100%;
}
/* .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay color 
} */


   /* Custom styles for the contact form and company info section */
   .contact-section {
    padding: 100px 0;
    background-color: #f7f7f7;
  }
  .contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
  }
  .company-info {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
  }
  .fixed-bg {
    position: relative;
    background-image: url('/images/dock.jpg'); /* Replace with your image path */
    background-size: cover;
    background-attachment: fixed;
    height: 500px;
  }
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay color */
  }

   /* Custom class for news page background */
   .custom-bg {
    background-image: url('/images/geowellriggray.jpg'); /* Replace with your background image path */
    background-size: cover;
    /* background-attachment: fixed; */
  }

  .newsbox{
    padding-top: 300px;
    height: 1000px;
    width: 100%;
  }

  .sustainabilityback{
    background-image: url('/images/geowellsustainability.jpg');
  }

  .footerbutton:hover {
    color: #555555;
  }

  /* stylying for the circle in home page with services */

  .container-fluid {
    display: flex;
    width: 100%;
  }

  .left-div {
    width: 40%;
    overflow: hidden;
    position: relative;
  }

  .rotating-image {
    width: 100%;
    max-height: 100%;
    animation: rotate 10s linear infinite;
  }

  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  .right-div {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .changing-text {
    font-weight: bold;
    font-size: 18px;
    padding: 10px;
    transition: background-color 0.3s;
  }

  .changing-text:hover {
    background-color: lightgray;
  }


  /*Services page, services*/
  .serv-container {
    margin-top: 20px;
    display: flex;
  }
  .serv-sidebar {
    width: 200px;
    background-color: #AF0000;
    color: white;
    padding: 20px;
  }
  .serv-content {
    flex: 1;
    padding: 20px;
  }
  .serv-button {
    display: block;
    margin-bottom: 15px;
    color: white;
    text-decoration: none;
    padding: 10px;
    transition: background-color 0.3s;
  }
  .serv-button:hover {
    background-color: #fff;
  }

  .serv-hidden {
    display: none;
  }

  /* service-card */
  
  .service-card {
    background: linear-gradient(to bottom, #af0000, #0056b3);
    color: white;
    transition: all 0.3s;
    text-decoration: none;
  }
  .service-card:hover {
    background: linear-gradient(to bottom, #fff, #fff);
    color: #af0000;
    border: 2px #AF0000;
  }
  .service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }