@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary-blue: #007bff;
    --dark-blue: #0056b3;
    --text-color-dark: #333;
    --text-color-light: #666;
    --bg-light-gray: #f9f9f9;
    --border-color: #e0e0e0;
    --card-bg: #fff;
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: var(--bg-light-gray);
    overflow-x: hidden;
    background-color: #F5F5F5;
    /* Prevent horizontal scroll due to absolute positioning */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--card-bg);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 4px var(--shadow-light);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-color-dark);
}

.logo-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-blue);
    /* A placeholder blue, adjust if needed */
    border-radius: 50%;
    margin: 0 1px;
}

.logo-dot:nth-child(1) {
    margin-left: 0;
}

.logo-dot:nth-child(4) {
    margin-right: 8px;
}


.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color-light);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-blue);
}

.auth-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.sign-in {
    text-decoration: none;
    color: var(--text-color-light);
    font-weight: 500;
    transition: color 0.3s ease;
}

.sign-in:hover {
    color: var(--primary-blue);
}

.get-demo-btn {
    background-color: #1A76FF;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    /* margin-top: 30px; */
}

.get-demo-btn:hover {
    background-color: var(--dark-blue);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 100px 0 150px;
    /* Increased padding for cards */
    text-align: center;
    background-color: var(--bg-light-gray);
    overflow: hidden;
    /* Ensure cards don't overflow */
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    /* Ensure text is above background elements */
}

.hero-section h1 {
    padding-top: 90px;
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--text-color-dark);
}

.hero-section h1 br {
    display: block;
    /* Ensures line break */
}

.hero-section h1 span {
    color: var(--primary-blue);
    /* Style for "all in one place" if needed */
}

.hero-section .subtitle {
    font-size: 1.2rem;
    color: var(--text-color-light);
    margin-bottom: 40px;
}

.get-free-demo-btn {
    /* background-color: var(--primary-blue); */
    background-color: #1A76FF;
    /* margin-top:0px; */
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px var(--shadow-medium);
}

.get-free-demo-btn:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
}

/* Hero Cards & Icons */
.hero-card {
    /* background-color: var(--card-bg); */
    /* background-color: #ff5722; */
    border-radius: 15px;
    padding: 20px;
    position: absolute;
    box-shadow: 0 8px 16px var(--shadow-medium);
    text-align: left;
    width: 250px;
    /* Adjust width as needed */
    z-index: 1;
    /* Below text, but above background */
}

.note-card {
    background-color: #FFF088;
    top: 50px;
    right: 1020px;
    transform: rotate(-20deg);
    padding-top: 30px;
    /* Space for the pin */
}

.note-card .pin {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    /* right: 650px; */
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.note-card p {
    font-size: 0.95rem;
    color: var(--text-color-dark);
}

.hero-check-card {
    /* background-color: var(--card-bg); */
    /* background-color: aqua; */
    border-radius: 15px;
    padding: 15px;
    position: absolute;
    box-shadow: 0 8px 16px var(--shadow-medium);
    top: 350px;
    left: 12%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    transform: rotate(10deg);
}


.reminder-card {
    background-color: #F1F3F4;
    top: 70px;
    left: 1100px;
    transform: rotate(20deg);
    width: 280px;
    /* Larger width for reminders */
}

.reminder-card .card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-color-dark);
    font-weight: 600;
}

.reminder-card .card-header i {
    font-size: 1.5rem;
    margin-right: 10px;
    color: var(--primary-blue);
}

.reminder-item {
    background-color: var(--bg-light-gray);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid var(--border-color);
}

.reminder-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-color-dark);
}

.reminder-item p {
    font-size: 0.85rem;
    color: var(--text-color-light);
    margin-bottom: 5px;
}

.reminder-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-blue);
}

.hero-icon-large {

    /* background-color: var(--prim/ary-blue); */
    background-color: rgb(230, 230, 230);

    border-radius: 20px;
    width: 80px;
    height: 80px;
    position: absolute;
    top: 0px;
    /* Adjust position */
    left: 50%;
    /* transform: translateX(-50%) rotate(15deg);  */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 16px var(--shadow-medium);
}

.hero-icon-large .icon-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);
    /* 2x2 grid */
    gap: 10px;
    /* Spacing between dots */
}

.hero-icon-large .icon-grid :first-child {
    background-color: rgb(30, 201, 255);
}

.hero-icon-large .icon-grid span {
    background-color: rgb(53, 50, 51);

    width: 20px;
    height: 20px;
    border-radius: 50%;
}


/* Bottom Section */
.bottom-section {
    padding: 80px 0;
    background-color: var(--bg-light-gray);
}

.bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    /* Space between the two cards */
    align-items: start;
    justify-items: center;
}

.bottom-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 16px var(--shadow-medium);
    width: 100%;
    max-width: 450px;
    /* Limit width */
}

.bottom-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-color-dark);
}

/* Tasks Card */
.task-item {
    margin-bottom: 25px;
}

.task-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.task-info strong {
    font-size: 1.1rem;
    color: var(--text-color-dark);
}

.avatars {
    display: flex;
    gap: -5px;
    /* Overlap avatars */
}

.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ccc;
    /* Placeholder for avatar image */
    border: 2px solid var(--card-bg);
    margin-left: -5px;
}

.avatar:first-child {
    margin-left: 0;
}

.progress-bar {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 10px;
    height: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 40px;
    /* Space for percentage text */
    position: relative;
}

.progress {
    height: 100%;
    background-color: var(--primary-blue);
    border-radius: 10px;
    transition: width 0.5s ease-in-out;
}

.progress-bar span {
    position: absolute;
    right: 5px;
    font-size: 0.8rem;
    color: var(--text-color-dark);
    font-weight: 500;
}

/* Integrations Card */
.integrations-card .integration-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.integration-icons img {
    width: 760px;
    /* Larger size for integration icons */
    height: 100px;
    object-fit: contain;
    background-color: var(--bg-light-gray);
    /* Match the image background seen in the screenshot */
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 8px var(--shadow-light);
}

/* Responsive adjustments */



@media (max-width: 992px) {
    .main-nav ul {
        gap: 20px;
    }

    .hero-section h1 {
        font-size: 3rem;
    }

    .hero-card {
        width: 220px;
        padding: 15px;
    }

    .note-card {
        top: 80px;
        left: 5%;
    }

    .hero-check-card {
        top: 380px;
        left: 5%;
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .reminder-card {
        top: 100px;
        right: 5%;
        width: 250px;
    }

    .hero-icon-large {
        top: 250px;
    }

    .bottom-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        justify-items: center;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-section {
        padding: 80px 0 100px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .subtitle {
        font-size: 1rem;
    }

    .hero-card {
        position: static;
        /* Stack them for smaller screens */
        margin: 20px auto;
        transform: none !important;
        /* Remove rotation */
        width: 90%;
        max-width: 300px;
    }

    .hero-check-card {
        position: static;
        margin: 20px auto;
        transform: none !important;
    }

    .hero-icon-large {
        position: static;
        margin: 30px auto;
        transform: none !important;
    }

    .bottom-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .logo span {
        font-size: 1.2rem;
    }

    .main-nav ul {
        gap: 10px;
    }

    .get-demo-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .get-free-demo-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .bottom-card {
        padding: 20px;
    }

    .bottom-card h3 {
        font-size: 1.2rem;
    }

    .integration-icons img {
        width: 50px;
        height: 50px;
    }
}