* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arimo';
}

.hero-content {
    padding-left: 25px;
    padding-right: 25px;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    padding-top: 100px;
}

body {
    font-family: 'Arimo', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1, h2, h4 {
    font-weight: 700;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
    background-color: #00b0cb; /* Solid color */
    box-shadow: 0 2px 12px rgba(0, 176, 203, 0.08);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 2em;
    color: black;
    user-select: none;
    text-decoration: none;
    cursor: pointer;
}

.logo-icon {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.header-logo-image {
    display: block;
    height: 42px;
    width: auto;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 100;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.menu-toggle .bar {
    width: 28px;
    height: 3px;
    background-color: rgb(0, 0, 0);
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.4s;
    position: relative;
}

.menu-toggle.active .bar1 {
    transform: rotate(45deg) translate(0, 18px);
}

.menu-toggle.active .bar2 {
    opacity: 0;
}

.menu-toggle.active .bar3 {
    transform: rotate(-45deg) translate(0, -18px);
}

.navigation {
    display: flex;
    align-items: center;
}

.navigation a {
    position: relative;
    font-size: 1em;
    color: #fff; /* Solid color */
    text-decoration: none;
    font-weight: 700;
    margin-left: 16px;
    padding: 10px 14px;
    border-radius: 10px;
    background-color: #00b0cb; /* Solid color */
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0, 176, 203, 0.07);
    display: inline-block;
    white-space: nowrap;
}

/* .navigation a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: black;
    border-radius: 5px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .5s;
} */

.navigation a:hover {
    background-color: #007a8a; /* Darker shade */
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 176, 203, 0.15);
}

/* .navigation a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
} */

.navigation.active {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
    max-width: 400px;
    flex-direction: column;
    align-items: center;
    padding: 28px 0 24px 0;
    background-color: #00b0cb; /* Solid color */
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 176, 203, 0.15);
    border: 1px solid #00b0cb; /* Solid color */
    z-index: 1000;
}

.navigation.active a {
    margin: 15px 0;
    font-size: 1.3em;
    color: #fff; /* Solid color */
    font-weight: 700;
    width: 80%;
    text-align: center;
    border-radius: 8px;
    padding: 10px 0;
    transition: background-color 0.2s, color 0.2s;
}

.navigation.active a:hover {
    background-color: #007a8a; /* Darker shade */
    color: #fff;
}

.main-logo {
    max-width: 100%;
    width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
}

h1 {
    color: black;
    font-size: 100px;
}

.main-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.main-btn {
    padding: 12px 24px;
    font-size: 1.2em;
    background-color: #00b0cb; /* Solid color */
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    transition: background-color 0.3s, transform 0.2s;
    display: inline-flex;
    align-items: center;
}

.main-btn .icon {
    font-size: 1.3em;
    margin-right: 10px;
}

.main-btn:hover {
    background-color: #007a8a; /* Darker shade */
    transform: scale(1.05);
    color: #fff;
}

.hero {
    width: 100%;
    padding: 40px 0 20px 0;
    text-align: center;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-desc {
    font-size: 1.3em;
    color: #333;
    margin: 30px 0 10px 0;
    line-height: 1.5;
}

.main-buttons button {
    padding: 12px 24px;
    font-size: 1.2em;
    background-color: #00b0cb; /* Solid color */
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.main-buttons button:hover {
    background-color: #007a8a; /* Darker shade */
    transform: scale(1.05);
}

footer {
    width: 100%;
    background-color: #f0f0f0;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
    color: #333;
    margin-top: auto;
    border-top: 1px solid #ddd;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #00b0cb; /* Solid color */
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #007a8a; /* Darker shade */
    text-decoration: underline;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin: 50px auto;
    max-width: 1000px;
    padding: 0 20px;
}

.feature-item {
    background-color: #e0f7fa; /* Solid color */
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 176, 203, 0.08);
    padding: 32px 24px;
    min-width: 220px;
    max-width: 300px;
    flex: 1 1 220px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.3s;
}

.feature-item:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px rgba(0, 176, 203, 0.15);
}

.feature-icon {
    font-size: 2.5em;
    margin-bottom: 16px;
    color: #00b0cb; /* Solid color */
}

.feature-title {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0090a8; /* Solid color */
}

.feature-desc {
    font-size: 1em;
    color: #333;
    line-height: 1.5;
}
@media (max-width: 1100px) {
    header {
        padding: 10px 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .navigation {
        display: none;
    }

    .navigation.active {
        display: flex;
    }
}

@media (max-width: 768px) {

    h1 {
        font-size: 60px;
    }

    .main-logo {
        width: 80%;
    }

    .hero-desc {
        background-color: #e0f7fa;
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(0, 176, 203, 0.08);
        padding: 24px 16px;
        margin: 30px 0 10px 0;
        color: #333;
        font-size: 1.1em;
        line-height: 1.5;
    }
    
}
@media (max-width: 768px) {
    .main-logo {
        width: 100%;
        padding: 0px;  
        box-sizing: border-box;
    }
     .features {
        padding: 0 16px; /* Matches hero-desc horizontal padding */
    }

}
