@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@600&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #111;
    color: #fff;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

h2, h3, h4, h5 {
    color: #298cf1;
    font-family: 'Rajdhani', cursive;
}

p {
    color: white;
}

.center-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    width: 100%;
}

.center-content a {
    color: #298cf1;
    font-size: 1.5rem;
    margin: 20px auto;
    display: inline-block;
    background: white;
    padding: 1rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    transition: 0.3s ease;
}

.center-content a:hover {
    background: #e4e4e4;
}

.header {
    position: relative;
    text-align: center;
    padding: 0;
    overflow: hidden;
    height: 100vh;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-content {
    position: relative;
    padding: 2rem 0;
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    -webkit-backdrop-filter: saturate(1.5);
}

.header h1 {
    font-size: 2rem;
    line-height: 2.5rem;
    margin: 0;
}

.section {
    padding: 4rem 2rem;
    text-align: center;
}

.section h2 {
    font-size: 2rem;
    margin: 0;
    margin-bottom: 1rem;
}

.section p {
    font-size: 1.2rem;
}

.footer {
    text-align: center;
    padding: 1rem 0;
    background-color: #298cf1;
    margin-top: 8rem;
    border-top: 5px solid #1b65b1;
}

.footer p {
    font-size: 1rem;
}

.logo-img {
    max-width: 150px;
    filter: invert();
}

.contact-form form {
    max-width: 500px;
    margin: 30px auto 0 auto;
    padding: 0 1rem; /* Add some horizontal padding */
}

.contact-form label {
    font-size: 1.2rem;
    display: block;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    width: -webkit-fill-available;
    padding: 0.5rem;
    font-size: 1rem;
    border: 0;
    background: rgb(59, 59, 59);
    color: white;
    
}

.contact-form button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
}

.alert {
    background: #66c652;
    font-size: smaller;
    padding: 1rem;
    display: none;
    margin-top: 20px;
}

.chevron {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: bounce 1s infinite;
}

#chevron-arrow-left {
  display: inline-block;
    border-right: 4px solid white;
    border-bottom: 4px solid white;
    width: 15px;
    height: 15px;
    transform: rotate(-315deg);
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}
 
.gallery {
    padding: 4rem 2rem;
    display: flex;   
    flex-wrap: wrap; 
    margin: -15px; /* Create negative margin to offset padding */
}

.gallery-item {
    flex: 33.33%; /* Display 3 items in a row on desktop */
    padding: 15px; /* Add some spacing between items */
    box-sizing: border-box;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 250px;
    object-fit: cover;
    opacity: 0.5;
}

/* Media query for mobile devices */
@media (max-width: 767px) {
    .gallery-item {
        flex: 100%; /* Display 1 item per row on mobile */
    }
    
    .gallery-item:nth-child(1),.gallery-item:nth-child(2)  {
        display:none;
    }
    
}