body {
    font-family: 'Montserrat', sans-serif;
    background-color: #1c1c1e;
    color: #f5f5f7;
}
 .hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    -background: url('img/header/video-bg.png') no-repeat center center/cover;
    text-align: center;
    color: white;
    flex-direction: column;
    position: relative;
    padding: 40px;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -background: rgba(0, 0, 0, 0.5);
    z-index: 1;
} 
.hero-content {
    z-index: 2;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  
   position: relative;
    z-index: 2;
   color: #60A5FA;
    max-width: 800px;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
} 
 .stat-box {
    -background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    min-width: 120px;
    transition: transform 0.3s ease-in-out, background 0.3s;
}
.stat-box:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.container {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: center;
    padding: 40px 0;
}
.showcase-item {
    -width: 32%;
    -flex-shrink: 0;
    -text-align: center;
    background: #2c2c2e;
    border-radius: 10px;
    -overflow: hidden;
    -transition: transform 0.3s;
}
.showcase-item p {
    margin-top: 5px;
    font-size: 16px;
    color: #fff;
    padding: 15px;
    text-align: center;
    -font-family: "Roboto", serif;
    font-optical-sizing: auto;
    -font-style: normal;
}
.rounded-full {
    width: 2rem;
    padding: .31rem; 
}
.dots {
    text-align: center;
    margin-top: 10px;
}
.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    border: solid 1px #555;
    color: red;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}
.contact {
text-align: center;
padding: 40px 20px;
background: #2c2c2e;
}
.contact form {
display: flex;
flex-direction: column;
gap: 10px;
max-width: 400px;
margin: auto;
}
.contact input, .contact textarea {
-width: 100%;
padding: 10px;
border-radius: 5px;
border: none;
}
.contact button {
background: #ff9500;
color: white;
font-size: 18px;
font-weight: bold;
padding: 12px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background 0.3s;
} 