html {
        scroll-behavior: smooth;
        height: 100%;
    }

    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        pointer-events: none;
        background: linear-gradient(45deg, rgba(10, 10, 10, 0.9), rgba(30, 60, 90, 0.2), rgba(115, 194, 251, 0.05));
    }

    :root {
        --accent: #73c2fb;
        --text-light: #e0e0e0;
        --secondary: #1e2326;
    }

    .hero {
        text-align: center;
        width: min(90%, 1200px);
    }

    .tagline {
        font-size: clamp(1.2rem, 3vw, 1.5rem);
        color: var(--text-light);
        opacity: 0.9;
        margin: clamp(10px, 2vw, 20px) 0;
    }

    .main-content {
        padding-top: clamp(80px, 10vh, 150px);
        padding-bottom: clamp(40px, 5vh, 60px);
        margin: 0 auto;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    h1 {
        font-size: clamp(2rem, 6vw, 4rem);
        padding: min(20px);
        font-weight: 700;
    }

    h2 {
        font-size: clamp(1.3rem, 3vw, 1.6rem);
        text-align: center;
        color: var(--accent-blue);
        text-transform: uppercase;
                font-weight: 600;
        padding-bottom: clamp(20px, 5vh, 40px);
    }

    .col h3 {
        font-size: clamp(1.2rem, 2.5vw, 1.3rem);
        text-align: center;
                color: var(--accent-blue);
        text-transform: uppercase;
        font-weight: 300;
        padding-bottom: clamp(20px, 5vh, 40px);
    }

    .left,
    .right {
        flex: 1 1 clamp(250px, 30vw, 400px);
    }

    .left {
        text-align: left;
        padding: clamp(10px, 2vw, 20px);
    }

    .left h2 {
        font-size: clamp(1.3rem, 3vw, 1.6rem);
        color: var(--accent-blue);
        text-transform: uppercase;
    }

    .left, .left p,
    .col p {
        font-size: clamp(1rem, 2vw, 1.125rem);
        line-height: 1.6;
        margin-bottom: clamp(10px, 3vh, 20px);
    }

    .left ul {
        list-style: disc;
        margin-left: clamp(10px, 4vw, 20px);
        margin-bottom: clamp(10px, 3vh, 20px);
    }

    .left li {
        font-size: clamp(1rem, 2vw, 1.125rem);
        margin-bottom: clamp(5px, 2vh, 10px);
    }

    .right {
        text-align: center;
    }

    .right img {
        max-width: 100%;
        border-radius: clamp(6px, 1.5vw, 10px);
        box-shadow: 0 0 clamp(10px, 2vw, 15px) rgba(0, 0, 0, 0.5);
        width: auto;
        height: clamp(300px, 60vh, 600px);
        transition: transform 0.3s ease, filter 0.3s ease;
        object-fit: cover;
        aspect-ratio: 4 / 3;
    }

    .right img:hover {
        transform: scale(1.05);
        filter: brightness(1.1);
    }

    .intro {
        padding: clamp(30px, 6vw, 60px) clamp(15px, 5vw, 40px);
        width: min(90%, 1200px);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: clamp(20px, 4vw, 40px);
        position: relative;
        z-index: 2;
    }

    .intro,
    .inform {
        margin-bottom: clamp(40px, 8vh, 80px);
    }

    .intro .left {
        flex: 2;
    }

    .intro .right {
        flex: 1;
    }

    .intro-btn {
        padding: clamp(0.5rem, 1.5vw, 0.7rem) clamp(1rem, 3vw, 1.3rem);
    }

    .inform {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: clamp(20px, 4vw, 40px);
        width: min(90%, 80vw);
    }

    .col {
        padding: clamp(10px, 3vw, 30px);
    }

    .col ul {
        list-style: disc;
        margin-left: clamp(10px, 4vw, 20px);
        margin-bottom: clamp(10px, 3vh, 20px);
    }

    .col li {
        margin-bottom: clamp(5px, 2vh, 10px);
        font-size: clamp(1rem, 2vw, 1.125rem);
    }

    .portfolio {
        width: min(90%, 1200px);
        margin: 0 auto clamp(40px, 8vh, 80px);
        text-align: center;
    }

    .portfolio p {
        font-size: clamp(1rem, 2vw, 1.125rem);
        color: var(--text-light);
        line-height: 1.6;
        max-width: 800px;
        margin: 0 auto 2rem;
    }

    .portfolio-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: clamp(20px, 4vw, 30px);
    }

    .project-link {
        display: block;
        text-decoration: none;
    }

    .project {
        position: relative;
        width: 300px;
        height: 400px;
        overflow: hidden;
        border-radius: 12px;
        background: #111;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .project:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px var(--accent);
    }

    .project img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
        transition: filter 0.3s ease;
    }

    .project-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        padding: 1.5rem;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .project:hover .project-overlay {
        opacity: 1;
    }

    .project:hover img {
        filter: brightness(0.5);
    }

    .project-overlay h3 {
        color: var(--accent);
        font-size: clamp(1rem, 2vw, 1.2rem);
        margin-bottom: 0.5rem;
        text-align: left;
    }

    .project-overlay p {
        font-size: clamp(0.8rem, 1.8vw, 0.9rem);
        margin: 0;
        text-align: left;
    }

    /* ----------  Pricing  --------------------- */
       /* .plan .price span {
        font-size: clamp(1rem, 2vw, 1.2rem);
        color: var(--text-light);
        opacity: 0.7;
    } */
     
    /* ---------- Pricing --------------------- */
.pricing {
    width: min(90%, 80vw);
    margin: 0 auto clamp(40px, 8vh, 80px);
    text-align: center;
    padding: clamp(40px, 8vh, 80px) clamp(20px, 4vw, 40px);
}

.pricing h2 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    margin-bottom: 1rem;
}

.pricing p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: clamp(20px, 4vw, 30px);
    margin: 0 auto;
    justify-items: center;
    max-width: 1200px;
}

.plan {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: clamp(20px, 4vw, 30px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 360px;
    width: 100%;
}

.plan:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.plan h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.6rem);
    color: var(--accent-blue);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.plan .price {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-light);
    margin: 0.5rem 0;
    text-align: center;
}

.sale-badge {
    background-color: #e02424;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
    animation: pulse 2.5s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(224, 36, 36, 0.3);
}

.sale-price {
    font-size: clamp(2rem, 3.5vw, 2.4rem);
    font-weight: 800;
    padding: 8px 14px;
    border-radius: 6px;
    display: inline-block;

}

.original-price {
    text-decoration: line-through;
    color: #ff6666;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin-left: 12px;
    vertical-align: middle;
    opacity: 0.6;
    font-weight: 500;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); box-shadow: 0 4px 12px rgba(224, 36, 36, 0.4); }
    100% { transform: scale(1); }
}

.plan p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-light);
    opacity: 0.8;
    margin: 0.5rem 0 1rem;
    text-align: center;
}

.plan ul {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
    flex-grow: 1;
}

.plan li {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-light);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
}

.plan li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--accent);
    font-size: 0.9rem;
}

.plan.featured {
    background: linear-gradient(145deg, rgba(115, 194, 251, 0.15), rgba(50, 50, 50, 0.1));
    border: 2px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.plan.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 20px;
    right: -50px;
    background: var(--accent);
    color: #fff;
    padding: 5px 50px;
    transform: rotate(45deg);
    font-size: 0.9rem;
    font-weight: 600;
}

.plan .btn {
    padding: clamp(0.5rem, 1.5vw, 0.7rem) clamp(1rem, 3vw, 1.3rem);
    align-self: center;
    margin-top: 1rem;
}

.secondary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: clamp(20px, 4vw, 30px);
    margin: 0 auto;
    max-width: 800px;
    justify-items: center;
}

.secondary-grid .plan {
    max-width: 360px;
    width: 100%;
}

.divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 3rem auto;
}

.addon-heading {
    font-size: clamp(1.4rem, 3vw, 1.6rem);
    margin: 2rem 0 1.5rem;
    color: var(--accent-blue);
    text-transform: uppercase;
}

    /* ------------ cta -------------- */
.cta {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 12px;
    padding: clamp(30px, 6vw, 60px);
    text-align: center;
    margin: clamp(40px, 8vh, 80px) auto;
    max-width: clamp(700px, 90vw, 1000px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
        margin-left: clamp(20px, 4vw, 40px); /* Minimum left padding */
    margin-right: clamp(20px, 4vw, 40px);
}

.cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #fff;
    margin-bottom: 1rem;
    padding: 0;
    text-transform: none;
}

.cta p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

    .cta .btn {
        padding: clamp(0.5rem, 1.5vw, 0.7rem) clamp(1rem, 3vw, 1.3rem);
    }


    @media screen and (max-width: 768px) {
        .intro {
            flex-direction: column;
            text-align: center;
        }

        .intro .left,
        .intro .right {
            flex: unset;
            width: 100%;
        }

        .intro .left {
            order: 1;
        }

        .intro .right {
            order: 2;
        }

        .right img {
            max-width: 100%;
            height: auto;
        }

        .left ul {
            text-align: left;
        }

        .pricing {
            background: transparent;
            box-shadow: none;
        }

        .pricing-grid,
        .secondary-grid {
            grid-template-columns: 1fr;
        }

        .plan.featured::before {
            right: -40px;
            padding: 5px 40px;
        }

        .pricing {
            padding: clamp(40px, 8vh, 80px) clamp(20px, 4vw, 40px);
        }
    }

    @media screen and (max-width: 1000px) and (min-width: 769px) {
        .pricing-grid {
            grid-template-columns: repeat(2, minmax(280px, 1fr));
            justify-items: center;
        }

        .pricing-grid .plan:nth-child(3) {
            grid-column: 1 / -1;
            justify-self: center;
        }

        .pricing-grid .plan:nth-child(4) {
            grid-column: 1 / -1;
            justify-self: center;
        }
    }