/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #f4f6f9;
    color: #333;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

.logo {
    height: 40px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #333;
}

.contact, .auth {
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth .trial-button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
}

/* Banner Section */
.banner-section {
    background-color: #12006a; /* Dark blue background */
    color: #ffffff; /* White text color */
    text-align: center;
    padding: 10px 20px;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.banner-title {
    font-weight: bold;
    color: #c8a2ff; /* Light purple color for the title */
    font-size: 1em;
}

.banner-text {
    font-size: 1em;
    margin-left: 5px;
}

.banner-link {
    color: #ffffff; /* White color for link */
    font-weight: bold;
    text-decoration: underline;
    margin-left: 10px;
}


/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    padding: 50px 20px;
    background-color: #e6f7ff;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.buttons {
    margin-bottom: 30px;
}

.start-trial, .watch-demo {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 0 10px;
}

.start-trial {
    background-color: #0070d2;
    color: #fff;
}

.watch-demo {
    background-color: #fff;
    color: #0070d2;
    border: 1px solid #0070d2;
}

/* Image Container */
.image-container {
    position: relative;
    display: inline-block;
    margin-top: 20px;
}

.hero-image {
    max-width: 100%;
    border-radius: 8px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 8px;
}

.image-container:hover .overlay {
    opacity: 1;
}

.play-video {
    background-color: #fff;
    color: #0070d2;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Product Section */
.product-section {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.product-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
}

.product-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 220px;
    text-align: center;
}

.card-icon {
    width: 100%; /* Set the width to fill the card container */
    height: auto; /* Adjust height proportionally */
    max-width: 220px; /* Set max-width for image to maintain proportions */
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.card p {
    font-size: 0.9em;
    margin-bottom: 20px;
}

.card a {
    text-decoration: none;
    color: #0070d2;
    font-weight: bold;
}


/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-top: 1px solid #ddd;
}










