/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    z-index: 100;
}

.navbar .logo img {
    height: 30px;
    margin-right: 50px;
}

/* Fullscreen Video Container */
.video-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Fullscreen height */
    overflow: hidden;
}

video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 80px;
    background: rgba(0, 0, 0, 0.5); /* Optional dark overlay */
    color: white;
}

/* Fade-in heading */
.fade-popup {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 1s ease, transform 1s ease;
    font-size: 3.5em;
}

.fade-popup.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.scrolling-content {
    margin-top: 40px;
}

.logos {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    white-space: nowrap;
    overflow: hidden;
    animation: scroll 15s linear infinite;
}

.logos span {
    display: inline-block;
    font-size: 1.5em;
    padding: 0 10px;
}

/* Scrolling animation */
@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.cta {
    padding: 15px 30px;
    font-size: 1.2em;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta:hover {
    background-color: #333;
}

/* Features Section */
.features {
    padding: 50px 0;
    background-color: #f4f4f4;
}

.feature-row {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
}

/* Feature Link */
.feature-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for transform and box-shadow */
}

/* Feature Box */
.feature {
    cursor: pointer;
    background: white; /* Background color of the feature box */
    border-radius: 8px; /* Rounded corners */
    padding: 20px; /* Spacing inside the box */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Initial shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for transform and box-shadow */
    text-align: center;
    width: 100%; /* Ensures the feature takes up full width of its parent */
}

/* Feature Image */
.feature-image {
    width: 100%; /* Makes the image fit the width of the feature box */
    height: 150px; /* Set a fixed height for the image */
    object-fit: cover; /* Ensures the image covers the area without stretching */
    border-radius: 8px; /* Rounded corners to match the feature box */
    margin-bottom: 15px; /* Space between the image and text */
}

/* Hover Effect */
.feature-link:hover .feature {
    transform: translateY(-10px); /* Moves the box up */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Increases the shadow for more depth */
}

/* Optional: Add hover effect on button as well */
.feature button {
    border: none;
    background-color: black;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Smooth transition for background-color */
}

.feature button:hover {
    background-color: #333;
}

/* Read More News Section */
.read-more-news {
    padding: 50px;
    text-align: center;
    background-color: #f4f4f4;
    position: relative;
}

.read-more-news h2 {
    margin-bottom: 20px;
}

/* White Line */
.read-more-news .line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: white;
}

/* Button Styling */
.read-more-news button {
    padding: 15px 30px;
    border: none;
    background-color: black;
    color: white;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.read-more-news button:hover {
    background-color: #333;
}

/* Footer Section */
footer {
    padding: 20px;
    background-color: black;
    color: white;
    text-align: center;
}

footer p {
    margin: 5px 0;
}
