 /* General Styles */
 body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f8f8f8;
    scroll-behavior: smooth; /* Enables smooth scrolling */
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: top;
    padding: 20px 50px;
    background-color: #ffffff;
    
    border-bottom: 4mm ridge #09be9d;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 250%;
    font-weight: bold;
    color: #08a88a;
}


nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin-left: 20px;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    display: block;
    padding: 8px 10px;
}

nav ul li a:hover {
    color: #08a88a;
}

/* Dropdown Menu Styles */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.dropdown li {
    margin: 0;
}

.dropdown li a {
    padding: 10px 20px;
    color: #333;
    white-space: nowrap;
}

.dropdown li a:hover {
    background-color: #f5f5f5;
    color: #08a88a;
}

/* Show dropdown on hover */
nav ul li:hover .dropdown {
    display: block;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background-color: #000;
    color: #fff;
}

.hero .text {
    max-width: 50%;
}

.hero .text h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero .text p {
    font-size: 18px;
    line-height: 1.5;
}

.hero img {
    max-width: 40%;
    height: auto;
}

.scroll-btn {
    display: block;
    text-align: center;
    margin: 20px auto;
    background-color: #08a88a;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.scroll-btn:hover .star {
display: block;
filter: drop-shadow(0 0 10px
white);


}

/* Scroll Section */
.scroll-section {
    padding: 50px;
    background-color: #f8f8f8;
    text-align: center;
}

.scroll-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.scroll-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.option-card {
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.option-card:hover {
    transform: translateY(-10px);
    border-color: #08a88a;
}

.option-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.option-card p {
    font-size: 14px;
    color: #666;
}

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

footer p {
    margin: 0;
    color: #666;
    font-size: 14px;
}
.option-card button{
    background-color: #ffffff;
    border-color: #ffffff;
    box-shadow: none;
    color: #08a88a;
     cursor: pointer;
}
.container{
    display: block;
    
}
.add{
    background-color:#f8f8f8;
    text-align: center;
    color: #09be9d;
}
.add button{
background-color: #08a88a;
color: #f8f8f8;
border: none;
padding: 1.5% 1.5%;
margin: 3%;
border-radius: 8%;
cursor: pointer;
}

@media (max-width: 1024px){
    nav{
        display: none;
    }
    .logo{
        font-size: 100%;
        text-align: center;
    }
    .hero .text h1{
        font-size: 100%;
    }
    .hero img{
        width: 100%;
    }
}