/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header & Navigation */
header {
    background: transparent;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
  }
  
  .containerHeader {
    width: 100%;
    max-width: 1760px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
  }
  
  .logo img {
    height: 85px;
    cursor: pointer; /* Changes cursor to a hand */

  }


  .logo a {
    display: inline-block; /* Makes sure the whole logo is clickable */
  }

  /* Body section */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Hero Section with Video Background */
.hero {
    position: relative;
    width: 100%;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire section */
    z-index: -1; /* Pushes video behind the text */
}

/* Dark Overlay to Improve Text Visibility */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

/* Buttons */
.btn, .cta-button {
    padding: 12px 25px;
    background: #0047cc;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
}

.btn:hover, .cta-button:hover {
    background: #0033a0;
    transform: scale(1.05);
}

/* About Section */
.about-vm {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
}

.about-vm h2 {
    color: #1f4068;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-vm p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Our Approach */
.our-approach {
    background: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
}

.our-approach h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1f4068;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

.step {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 100%;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #0047cc;
}

/* Benefits */
.benefits {
    padding: 60px 20px;
    text-align: center;
    background: #fff;
}

.benefits h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1f4068;
}

.benefits ul {
    list-style: none;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: left;
}

.benefits li {
    margin-bottom: 10px;
}

/* Call to Action */
.cta {
    text-align: center;
    padding: 60px 20px;
    background: #1f4068;
    color: white;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta .cta-button {
    background: #ffcc00;
    color: #1f4068;
    font-weight: bold;
}

.cta .cta-button:hover {
    background: #e6b800;
}

/* Responsive */
@media (max-width: 768px) {
    .steps {
        flex-direction: column;
        align-items: center;
    }
}
