/**
* Template Name: OnePage
* Template URL: https://bootstrapmade.com/onepage-multipurpose-bootstrap-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
body {
    margin: 0;
    font-family: Arial, sans-serif;
  }

  /* Preloader styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  border: 8px solid #f3f3f3; /* Light grey background */
  border-top: 8px solid #006d77; /* Blue color */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
  
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);

    /* Logo image styles */
.logo img {
    height: 80px; /* Adjust the size of your logo image */
    width: auto;
  }
}
  
  .logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: red;
    margin-bottom: 50px;
  }
  
  .navbar ul {
    list-style: none;
    display: flex;
    gap: 1rem;
  }
  
  .navbar a {
    text-decoration: none;
    color: #333;
  }
  
  .hero video {
    width: 100%;
    height: 90vh; /* Ensures the video covers the full height of the viewport */
    object-fit: cover; /* This makes sure the video covers the area without stretching */
  }
  
  /* Add styles for the content section */
.content-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  gap: 20px;
}

/* Style for the left content */
.content-left {
  flex: 1;
  max-width: 50%; /* Make sure it doesn't take more than half the width */
}

.content-left h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.content-left .services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.content-left .service {
  background-color: #f0f0f0;
  padding: 10px;
  border-radius: 5px;
  flex: 1;
}

/* Style for the right image */
.content-right {
  flex: 1;
  max-width: 50%; /* Image will occupy the other half */
}

.content-right img {
  width: 100%; /* Make image fill the container */
  height: auto;
  border-radius: 8px;
}

/* Responsive design */
@media screen and (max-width: 768px) {
  .content-section {
    flex-direction: column; /* Stack content vertically on small screens */
    align-items: center;
  }

  .content-left,
  .content-right {
    max-width: 100%; /* Allow them to take full width on mobile */
  }

  .content-right img {
    width: 80%; /* Limit image size on smaller screens */
  }
}

  
  .highlight {
    color: #007bff;
  }
  
  .services {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
  }
  
  .values-section {
    padding: 60px 20px;
    text-align: center;
  }
  
  .values-section h2 {
    color: #00728c;
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  

  
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 100px;
  }
  
  .value-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    padding: 20px;
    transition: transform 0.3s ease;
  }
  
  .value-card:hover {
    transform: translateY(-5px);
  }
  .value-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 2px;
  }
  
  
  .icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 60px;
    margin: 0 auto 5px auto;
  }
  
  .value-card h2 {
    color: #00728c;
    margin-bottom: 20px;
  }
  
  .value-card button {
    margin-top: auto;
    padding: 10px 80px;
    background-color: #006d77;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .value-card button:hover {
    background-color: #46c1d1;
    font-size: 20px;
  }
  
  