/* General Styles */
/* 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 {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

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

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    color: white;
    z-index: 2;
    padding: 20px;
}

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

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: auto;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 18px;
    background: #0047cc;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.btn:hover {
    background: #e6b800;
}

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

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

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

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

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

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

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

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

/* Future Plans */
.future-plans {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
}

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

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

/* 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;
    padding: 12px 25px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

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

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

    .hero h1 {
        font-size: 2.5rem;
    }

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