* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gabriola', cursive, serif;
    font-size: larger;
    line-height: 1.6;
    overflow-x: hidden;
    background: white;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Floating Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 15px 30px;
    box-shadow: 0 8px 32px rgba(0, 128, 128, 0.15);
    position: fixed;
    top: -10px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    width: calc(100% - 40px);
    max-width: 1160px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 128, 128, 0.1);
}

nav.visible {
    transform: translateX(-50%) translateY(20px);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 40px rgba(0, 128, 128, 0.2);
    border: 1px solid rgba(0, 128, 128, 0.2);
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #008080;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    border-radius: 8px;
    background: rgba(0, 128, 128, 0.1);
    padding: 8px;
    transition: all 0.3s ease;
}

.logo:hover img {
    background: rgba(0, 128, 128, 0.2);
    transform: rotate(5deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li {
    color: #333;
    cursor: pointer;
    padding: 10px 18px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.nav-menu li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 128, 128, 0.15), transparent);
    transition: left 0.6s ease;
}

.nav-menu li:hover::before {
    left: 100%;
}

.nav-menu li:hover {
    background: rgba(0, 128, 128, 0.1);
    color: #008080;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 128, 128, 0.2);
}

.nav-menu li a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(0, 128, 128, 0.1);
}

.hamburger {
    width: 25px;
    height: 3px;
    background: #008080;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
#home {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* min-height: 100vh; */
    padding: 120px 0 60px;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    animation: slideInLeft 1s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #008080;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 480px;
}

/* Background Animation */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: rgba(0, 128, 128, 0.08);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 70%;
    left: 5%;
    animation-delay: 3s;
}

.shape:nth-child(3) {
    width: 90px;
    height: 90px;
    bottom: 15%;
    right: 20%;
    animation-delay: 6s;
}

.shape:nth-child(4) {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 80%;
    animation-delay: 1.5s;
}

.shape:nth-child(5) {
    width: 80px;
    height: 80px;
    top: 30%;
    left: 10%;
    animation-delay: 4.5s;
}

/* Idea Section */
.idea {
    padding: 80px 0;
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
}

.idea-content {
    flex: 1;
}

.idea-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.idea-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 128, 128, 0.2);
    transition: transform 0.3s ease;
}

.idea-image img:hover {
    transform: scale(1.05);
}

.head {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #008080;
    margin-bottom: 30px;
}

.head img {
    width: 60px;
    margin-right: 12px;
}

.ideaHead {
    color: #008080;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.idea-content p,
.idea-content ol,
.idea-content ul {
    text-align: justify;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #444;
}

.idea-content ol,
.idea-content ul {
    padding-left: 20px;
}

.idea-content li {
    margin-bottom: 8px;
}

.onboard {
    color: #008080;
    text-align: center;
    padding: 40px 0 20px;
    font-size: 3rem;
    margin-bottom: 0;
}

.onboarding-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.onboarding-intro {
    text-align: center;
    margin-bottom: 60px;
}

.onboarding-intro h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.onboarding-intro p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.onboarding-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.step {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 128, 128, 0.1);
    border: 1px solid rgba(0, 128, 128, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 128, 128, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.step:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 128, 128, 0.2);
    border-color: rgba(0, 128, 128, 0.3);
}

.step-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(0, 128, 128, 0.3);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.step h3 {
    font-size: 1.4rem;
    color: #008080;
    margin-bottom: 15px;
    font-weight: 600;
}

.step p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.onboarding-features {
    text-align: center;
}

.onboarding-features h3 {
    font-size: 2rem;
    color: #008080;
    margin-bottom: 40px;
    font-weight: 600;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.feature-item {
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.05) 0%, rgba(32, 178, 170, 0.05) 100%);
    border-radius: 15px;
    padding: 25px 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 128, 128, 0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 128, 128, 0.15);
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.08) 0%, rgba(32, 178, 170, 0.08) 100%);
}

.feature-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.feature-item strong {
    color: #008080;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 15px;
        margin-top: 10px;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 128, 128, 0.2);
        border: 1px solid rgba(0, 128, 128, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        animation: slideDown 0.3s ease-out;
    }

    .nav-menu li {
        padding: 15px 25px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(0, 128, 128, 0.1);
        margin: 0;
        border-radius: 0;
        width: 100%;
        text-align: center;
        transform: none;
    }

    .nav-menu li:last-child {
        border-bottom: none;
        border-radius: 0 0 15px 15px;
    }

    .nav-menu li:first-child {
        border-radius: 15px 15px 0 0;
    }

    .nav-menu li:hover {
        transform: none;
        box-shadow: none;
    }

    nav {
        width: calc(100% - 20px);
        padding: 15px 20px;
        border-radius: 15px;
        position: relative;
    }

    nav.visible {
        transform: translateX(-50%) translateY(15px);
    }

    #home {
        flex-direction: column;
        text-align: center;
        gap: 0px;
        padding: 50px 0 60px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .idea {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .idea-image {
        order: -1;
        padding: 20px 0;
    }

    .idea-image img {
        max-width: 90%;
        margin: 0 auto;
    }

    .head {
        justify-content: center;
    }

    .head img {
        width: 50px;
    }

    .onboard {
        font-size: 2rem;
        padding: 40px 0 20px;
    }

    .onboarding-intro h2 {
        font-size: 1.8rem;
    }

    .onboarding-intro p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .onboarding-steps {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .step {
        padding: 25px 20px;
    }

    .step-icon {
        font-size: 2.5rem;
    }

    .step h3 {
        font-size: 1.2rem;
    }

    .onboarding-features h3 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }

    .feature-item {
        padding: 20px 15px;
    }

    .feature-emoji {
        font-size: 2rem;
    }

    .idea-content p,
    .idea-content ol,
    .idea-content ul {
        text-align: left;
    }
}

/* Smaller mobile devices */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .phone-mockup {
        width: 250px;
        height: 350px;
    }

    .idea-image img {
        max-width: 95%;
    }
}

.onboard {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #008080;
}

.onboard img {
    width: 60px;
    margin-right: 12px;
}


/* Footer Styling */
footer {
    background-color: #008080;
    color: #ffffff;
    padding: 40px 20px 0;
    font-size: 20px;
}

.footer-main-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
    padding-right: 20px;
}

/* Brand Info Section */
.footer-brand-info {
    flex: 1.5;
    min-width: 250px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    width: 80px;
    height: auto;
    display: block;
}

.footer-brand-info h1 {
    font-size: 2.2rem;
    margin: 0 0 5px;
    font-weight: bold;
}

.footer-brand-info h4 {
    font-size: 1.1rem;
    margin: 0;
}

/* Links Group Sections */
.footer-links-group {
    min-width: 150px;
}

.footer-links-group h5 {
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: bold;
}

.footer-links-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-group ul li {
    margin-bottom: 10px;
}

.footer-links-group ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-group ul li a:hover {
    color: #e0f2f1;
}

/* Footer Bottom Section (Copyright & Policy Links) */
.footer-bottom {
    border-top: 1px solid #fff;
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 20px;
}

.footer-bottom .copyright {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-bottom .bottom-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.footer-bottom .bottom-links a:hover {
    color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-main-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-section {
        width: 100%;
        min-width: unset;
        padding-right: 0;
        margin-bottom: 20px;
    }

    .footer-brand-info {
        text-align: left;
    }

    .footer-logo img {
        margin: 0;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom .copyright {
        margin-bottom: 10px;
    }

    .footer-bottom .bottom-links a {
        margin-left: 0;
        margin-right: 20px;
    }
}

#toTopBtn {
    cursor: pointer;
    font-size: 2.5rem;
    color: #ffffff;
    transition: transform 0.3s ease;
}

#toTopBtn:hover {
    transform: scale(1.2);
    color: #e0f2f1;
}
