
.highlight {
    color: var(--highlight-color);
}

.features {
    list-style: none;
    padding: 0;
}

.features li {
    margin: 0.5rem 0;
}

.cta-button {
    background: var(--primary-color);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--highlight-color);
}

.rating {
    margin-top: 1rem;
}

.image-container img {
    max-width: 100%;
    height: auto;
}
/* Main Container Adjustments */
body{
    padding-top: 2px;
}
/* Initial Background Image */
/* Initial Background Image */
.main-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem;
    height: 100vh;
    background-image: url('./f1.jpg'); /* Default background image */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    box-shadow: inset 0px -8px 8px -8px rgba(255, 255, 255, 1), inset 0px -24px 24px -24px rgba(255, 255, 255, 0.7), inset 0px -40px 40px -40px rgba(255, 255, 255, 0.5);
    transition: background-image 1s ease-in-out; /* Smooth transition */
}

/* Alternative Background Images */
.bg-image-1 {
    background-image: url('./f2.jpg');
}

.bg-image-2 {
    background-image: url('./f3.jpg');
}

.bg-image-3 {
    background-image: url('./f4.jpg');
}


/* Hide inactive content sets */
.content {
    display: none;
}

/* Show active content set */
.content.active {
    display: block;
}

.content {
    max-width: 50%; /* Adjust width for responsiveness */
    margin-left: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* Add background color for better readability */
    padding: 1rem;
    border-radius: 10px;
}

.content h1 {
    font-size: 2.5rem; /* Use rem for responsive font size */
}

.content ul li {
    font-size: 1.2rem; /* Use rem for responsive font size */
}

.cta-button {
    display: block;
    margin: 1rem 0;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    background-color: #f57c00;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Typewriter Effect */
.typewriter h1 {
    overflow: hidden;
    border-right: .15em solid orange;
    white-space: nowrap;
    margin: 0 auto; 
    letter-spacing: .15em;
    animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: orange; }
}



.content {
    max-width: 50%; /* Adjust width for responsiveness */
    margin-left: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* Add background color for better readability */
    padding: 1rem;
    border-radius: 10px;
}

.content h1 {
    font-size: 2.5rem; /* Use rem for responsive font size */
    text-align: left; /* Align text to the left */
}

.content ul li {
    font-size: 1.2rem; /* Use rem for responsive font size */
    margin-bottom: 0.5rem;
    text-align: left; /* Align text to the left */
}

.cta-button {
    display: block;
    margin: 1rem 0;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    background-color: #f57c00;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .main-container {
        height: auto; /* Adjust height for smaller screens */
        justify-content: left; /* Center content for smaller screens */
    }
body{
    padding-top: 80px;
}
    .content {
        max-width: 90%; /* Increase width for smaller screens */
        margin-left: 0; /* Center content for smaller screens */
        text-align: center; /* Center text for smaller screens */
    }

    .content h1 {
        font-size: 2rem; /* Adjust font size */
        text-align: center; /* Center text */
    }

    .content ul li {
        font-size: 1rem; /* Adjust font size */
        text-align: center; /* Center text */
    }

    .cta-button {
        font-size: 1rem; /* Adjust button size */
        margin: 1rem auto; /* Center button */
    }
}

@media (max-width: 576px) {
    .main-container {
        height: auto; /* Adjust height for mobile screens */
        justify-content: center; /* Center content for mobile screens */
    }

    .content {
        max-width: 100%; /* Full width for mobile screens */
        margin-left: 0; /* Center content for mobile screens */
        text-align: center; /* Center text */
    }

    .content h1 {
        font-size: 1.8rem; /* Adjust font size */
        text-align: center; /* Center text */
    }

    .content ul li {
        font-size: 0.9rem; /* Adjust font size */
        text-align: center; /* Center text */
    }

    .cta-button {
        font-size: 0.9rem; /* Adjust button size */
        margin: 1rem auto; /* Center button */
    }
}
