:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #4f46e5;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    background: #ffffff;
}

/* Navbar Styles */
nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #fff;
    max-width: 1400px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.gd{
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.nav-links {
    list-style: none;
    display: flex;
    /* gap: 10px; */

    border-radius: 80px;
    padding: 2px;
}


.nav-links li a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
}

.cta-btn {
    color: rgb(0, 0, 0);
    padding: 5px 14px;
    border: none;
    border-radius: 85px;
    cursor: pointer;
    background-color: white;
    font-size: 14px;
    border: solid 1px;
}

/* .cta-btn:hover {
    background-color: #6E33EF;
} */

.cta-button {
    background: var(--primary-gradient);
    color: white;
    padding: 12px 32px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.logo img {
    max-width: 180px;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.logo img:hover {
    opacity: 0.85;
    transform: scale(1.05);
}

/* Main Content Section */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    width: 100%;
    max-width: 1400px;
    gap: 60px;
}

.left-content {
    text-align: center;
    margin-bottom: 0;
}

.left-content h1 {
    font-size: 4.5rem;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    justify-content: center;
}

.features li {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    padding: 16px 28px;
    border: 2px solid transparent;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-gradient);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.features li::after {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary-gradient);
    border-radius: 50%;
    color: white;
    font-size: 12px;
    font-weight: bold;
    margin-right: 16px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.features li:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2);
    transform: translateY(-4px);
}

.features li:hover::before {
    transform: scaleY(1);
}

.features li:nth-child(1)::after {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.features li:nth-child(2)::after {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.features li:nth-child(3)::after {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.features li:nth-child(4)::after {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.features li:nth-child(5)::after {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.gradient-button {
    background: var(--primary-gradient);
    color: white;
    padding: 16px 48px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.35);
    text-decoration: none;
    display: inline-block;
}

.gradient-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(102, 126, 234, 0.45);
}


/* Right-side Image */
.right-content img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    margin: auto;
    width: 85%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.right-content img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

/* Flexbox for Layout */
@media (min-width: 758px) {
    .main-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 80px;
        width: 95%;
    }

    .features{
        align-items: flex-start;
        justify-content: flex-start;
    }

    .left-content {
        text-align: left;
        max-width: 50%;
    }

    .right-content {
        max-width: 50%;
        display: flex;
    }
}

/* Mobile Styles */
@media (max-width: 540px) {
    nav {
        flex-direction: column;
    }

    .nav-links {
        border-radius: 20px;
    }
    

    .nav-links {
        align-items:center;
        flex-direction: column;
         gap: 25px; 
        margin-top: 10px;
        border:none !important;
    }

    .left-content h1 {
        font-size: 2.5rem;
    }

    .features {
        flex-direction: column;
    }

    .right-content img {
        width: 100%;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .gradient-button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}


/* Tablet */
@media (max-width: 1024px) and (min-width: 760px){
    nav {
        flex-direction: column;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .left-content h1 {
        font-size: 2.5rem;
    }

    .features {
        flex-direction: column;
        align-items: flex-start;
    }

    .right-content img {
        width: 100%;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .gradient-button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}


/* Footer */
footer {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    margin-top: 40px;
}
