/* --- Landing Page Specific Styles --- */
:root {
    --primary-color: #2563EB;
    --primary-hover: #1D4ED8;
    --secondary-color: #FFFFFF;
    --background-color: #F8FAFC;
    --text-color: #1E293B;
    --text-light: #64748B;
    --border-color: #E2E8F0;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}
a{
    text-decoration: none;
}
body {
    background-color: var(--background-color);
    color: var(--text-color);
}
nav {
    width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px); 
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
   
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.5px;
}


.brand-name span {
    color: var(--primary-color);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary-color);
}

.btn-outline {
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    padding: 8px 16px;
    border: 1.5px solid var(--primary-color);
    border-radius: 6px;
    transition: all 0.2s ease;
}
.btn-outline:last-child{
      background-color: var(--primary-color);
    color: white;
}
.btn-outline:last-child:hover{
      color: var(--primary-color);
    background-color: white;
}
.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* 1. Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 140px 5% 100px; /* Extra top padding for the fixed navbar */
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    min-height: 80vh;
}

.hero-content {
    flex: 1.2;
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--text-color);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 540px;
}

/* 2. Buttons */
.hero-btns {
    display: flex;
    gap: 16px;
}

.btn-primary {
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s, background 0.2s;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 14px 28px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background-color: #f1f5f9;
    border-color: #cbd5e1;
}

/* 3. Hero Image/Graphic */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transform: perspective(1000px) rotateY(-5deg); /* Subtle 3D effect */
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* 4. Features Section */
.features {
    background-color: white;
    padding: 100px 5%;
    border-top: 1px solid var(--border-color);
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 16px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 48px;
    border-radius: 20px;
    background: var(--background-color);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    transform: translateY(-8px);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 5% 80px;
        gap: 30px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2.6rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1.05rem;
        margin: 0 auto 25px;
        max-width: 90%;
    }

    .hero-btns {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image img {
        max-width: 90%;
        transform: none;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}
@media (max-width: 480px) {
        .brand-name{
        font-size: 1.2rem;
    }
    .nav-link {
        font-size: 0.85rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .feature-card {
        padding: 28px;
    }

    .section-title h2 {
        font-size: 1.7rem;
    }
    .nav-right {
    gap: 10px;
    padding-left: 18px;
    }
}