/* Hero Section */

.hero {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-content {
    background: rgba(0, 43, 92, 0.8);
    padding: 30px;
    border-radius: 8px;
}

.hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #0073e6;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #005bb5;
    transform: scale(1.05);
}

.cta-button:active {
    background-color: #004999;
    transform: scale(0.98);
}

/* Services Section */

#services {
    
    background: white;
    text-align: center;
}

#services h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #002b5c;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 30%;
    text-align: center;
}

.service-box img {
    width: 60px;
    height: auto;
    margin-bottom: 10px;
}

.service-box h3 {
    color: #005bb5;
    font-size: 20px;
    margin-bottom: 10px;
}


#backgroundVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
}

#linkedin-latest {
    padding: 50px 10%;
    background: white;
    text-align: center;
}

header img {
  background: rgba(0, 43, 92, 0.8);
  padding: 10px;
}