@charset "utf-8";
/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;
  background-color: #000000;
  line-height: 1.6;
}

/* Header */
.header {
  position: relative;
  height: 50vh;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.header video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0; /* Video as background */
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for readability */
  z-index: 1;
}

.header .container {
  position: relative;
  z-index: 2; /* Text on top of overlay and video */
  text-align: center;
  padding: 1rem;
}

.header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.header p {
  font-size: 1.2rem;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .header {
    height: 50vh; /* Reduce header height on smaller screens */
  }

  .header h1 {
    font-size: 2rem; /* Adjust heading size */
  }

  .header p {
    font-size: 1rem; /* Adjust paragraph size */
  }
}

@media (max-width: 480px) {
  .header {
    height: 40vh; /* Further reduce height on very small screens */
  }

  .header h1 {
    font-size: 1.8rem; /* Smaller heading for small devices */
  }

  .header p {
    font-size: 0.9rem; /* Smaller paragraph text */
  }
}
/* Fixed Navbar styling */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.8); /* Adjust opacity here, 0.8 is 80% opacity */
    padding: 10px 0;
    z-index: 1000; /* Make sure it's on top of other content */
}

.navbar ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
}

.navbar ul li {
    margin: 0 20px;
}

.navbar ul li a {
    color: #b4e8fe;
    text-decoration: none;
    font-size: 18px;
}

.navbar ul li a:hover {
    color: #ffffff;
}

/* Content styling to add space below navbar */
.content {
    padding-top: 60px; /* This is to avoid content being hidden under the navbar */
    text-align: center;
}

/* Make navbar responsive */
@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column;
    }
    .navbar ul li {
        margin: 10px 0;
    }
}

/* Main Section */
.main {
  padding: 2rem 0;
}

.customer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.customer-card {
  background-color: #1a1a1a;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.customer-card:hover {
    background-color: #333333;
	visibility: visible;
}

.customer-card h2 {
  margin-top: 0;
}

.customer-card p {
  font-size: 1rem;
}

.customer-card .cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: #026aa3;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.customer-card .cta:hover {
  background-color: #038ec9;
}
 .hero {
            width: 100%;
            height: 300px;
            background-image: url('images/');
            background-size: cover;
            background-position: center;
        }
        .container {
		    display: flex;
            flex-direction: column;
            gap: 15px;
            width: 80%;
            max-width: 600px;
            margin-top: 20px;
			 }
			  .bar .material-icons {
    margin-right: 10px; /* Adjust the value as needed */
  
        }
        .bar {
		    position: relative;
            top: -150px; /* Move up by 50px */
			z-index: 1000; /* Ensure it stays above other content */
		    background-color: #1a1a1a;
            color: #b4e8fe;
            padding: 15px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            opacity: 0;
            transform: translateY(50px);
            animation: floatUp 0.8s ease-out forwards;
        }
        .bar:nth-child(1) { animation-delay: 0.2s; }
        .bar:nth-child(2) { animation-delay: 0.4s; }
        .bar:nth-child(3) { animation-delay: 0.6s; }
        .bar:nth-child(4) { animation-delay: 0.8s; }
        .bar:nth-child(5) { animation-delay: 1s; }
        
        @keyframes floatUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .icon {
            width: 30px;
            height: 30px;
            background-color: #b4e8fe;
            margin-right: 15px;
        }

a:link {
  color: #b4e8fe;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: #b4e8fe;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: #b4e8fe;
  background-color: transparent;
  text-decoration: underline;
}

.contact-form {
    position: relative;
    top: -240px; /* Move up by 50px */
    z-index: 1000; /* Ensure it stays above other content */
    width: 40%; /* Full width */
    background: #1a1a1a;
    padding: 20px;
    color:#b4e8fe;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: bottom 1.5s ease-in-out;
    transform: translateY(100px);
    animation: floatUp 1.5s ease-out forwards;
    text-align: left; /* Align all text and form content to the left */
}

.contact-form.active {
    bottom: 20px;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    text-align: left; /* Ensure labels are aligned to the left */
}

.form-group input, .form-group textarea {
    width: 97%; /* Full width for inputs and textareas */
    padding: 8px;
    margin-top: 5px;
}

.form-group .radio-group {
    display: flex;
    flex-direction: row; /* Align radio buttons and labels horizontally */
    align-items: left; /* Vertically center the radio buttons and labels */
    margin-top: 5px;
}

.form-group .radio-group input {
    margin-right: 10px; /* Space between radio button and label */
}

/* Footer */
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: transparent;
  text-align: center;
  color: #262626;
  padding: 1rem 0;
}

.footer p {
  margin: 0;
  font-size: 0.9rem;
}
 footer.container {
            display: flex;
            flex-direction: column;
            gap: 15px;
            width: 80%;
            align: center;
			 }