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

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1rem 2rem;
}

.logo-container {
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 0.2rem; 
}

.logo {
    width: 50px; 
    height: auto;
}

.logo-title {
    font-size: 0.8rem; 
    font-weight: bold;
    color: #007bff; 
    text-align: center;
    margin: 0;
}

.navbar nav {
    display: flex;
    gap: 1rem; 
}

.navbar .btn-download {
    position: absolute;
    top: 50%; 
    right: 2rem; 
    transform: translateY(-50%); 
    padding: 0.5rem 1rem;
    background: #007bff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.navbar .btn-download:hover {
    background: #0056b3;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333; 
    background: #f4f7fc; 
    overflow-x: hidden;
}

header {
    background: #ffffff; 
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; 
    padding: 1rem 2rem;
}

.navbar nav {
    display: flex;
    gap: 1rem; 
}

.navbar .btn-download {
    position: absolute;
    top: 50%; 
    right: 2rem; 
    transform: translateY(-50%); 
    padding: 0.5rem 1rem;
    background: #007bff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0px;
    font-weight: bold;
    transition: background 0.3s;
}

.navbar .btn-download:hover {
    background: #0056b3;
}

.hero-section {
    text-align: center;
    padding: 5rem 1rem; 
    background: #007bffb5;
    color: #ffffff;
}

.hero-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem; 
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem; 
}

.hero-section .btn {
    padding: 0.8rem 2rem;
    background: #ffffff;
    color: #007bff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.hero-section .btn:hover {
    background: #0056b3;
    color: #ffffff;
}

.hero-logo-container {
    text-align: center;
}

.hero-logo-container p {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #ffffff;
}

.logo-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem; /* Space between logos and arrow */
    flex-wrap: nowrap; /* Prevent wrapping on smaller screens */
    overflow-x: auto; /* Allow horizontal scrolling if needed on smaller screens */
    padding: 1rem;
}

.logo {
    max-width: 100px; /* Reduce the logo size slightly */
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.logo:hover {
    transform: scale(1.1); /* Scale up on hover */
}

/* Arrow */
.arrow {
    font-size: 2.5rem; /* Adjust size for better balance */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}



/* Features Section */
.features-section {
    padding: 3rem 1rem;
    background: #f4f7fc;
    color: #333;
    text-align: center;
}

.features-section h2 {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.features-description {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
    max-width: 300px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

.feature-card i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Marks Memo Section */
.marks-memo-section {
    padding: 2rem 1rem;
    background: #ffffff; 
    color: #333; 
    text-align: center;
}

.marks-memo-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #007bff; 
}

.marks-memo-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.marks-memo-showcase {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
}

.marks-memo-img {
    max-width: 100%;
    width: 350px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.marks-memo-details {
    max-width: 400px;
    text-align: left;
}

.marks-memo-details h3 {
    font-size: 1.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.marks-memo-details ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    color: #555;
    line-height: 1.6;
}

.marks-memo-details li {
    margin-bottom: 0.5rem;
}

/* Action History Showcase Section */
.action-history-section {
    padding: 2rem 1rem;
    background: #f4f7fc;
    color: #333;
    text-align: center;
}

.action-history-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #007bff;
}

.action-history-section p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #555;
}

.showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.showcase img {
    max-width: 100%;
    width: 350px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.showcase p {
    font-size: 1rem;
    color: #777;
}

footer {
    text-align: center;
    padding: 2rem;
    background: #333;
    color: #ffffff;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        justify-content: space-between;
    }

    .navbar nav {
        flex-grow: 1;
        justify-content: flex-start;
    }

    .navbar .btn-download {
        right: 1rem; 
        padding: 0.4rem 0.8rem;
    }

    .logo {
        width: 40px; 
    }

    .logo-title {
        font-size: 0.7rem; 
    }

    .features-section h2 {
        font-size: 2rem;
    }

    .features-description {
        font-size: 1rem;
    }

    .feature-card i {
        font-size: 2.5rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .logo-showcase {
        gap: 1rem; /* Reduce spacing between elements */
    }

    .arrow {
        font-size: 2rem; /* Slightly smaller arrow for mobile */
    }

    .logo {
        max-width: 80px; /* Adjust logo size for smaller screens */
    }

    .hero-logo-container p {
        font-size: 0.9rem; /* Smaller font for labels */
    }
}

