* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #0f172a;
    color: #fff;
}

header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #6366f1, #22d3ee);
}

    header h1 {
        font-size: 40px;
    }

    header p {
        margin: 10px 0 20px;
    }

.btn {
    background: #000;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px;
}

section {
    padding: 50px 20px;
    text-align: center;
}

.portfolio .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

video {
    width: 100%;
    border-radius: 15px;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #1e293b;
    padding: 20px 30px;
    border-radius: 15px;
    font-size: 18px;
}

.contact form {
    max-width: 400px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact input,
.contact textarea {
    padding: 12px;
    border-radius: 10px;
    border: none;
    outline: none;
}

.contact button {
    padding: 12px;
    background: #22d3ee;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
}

footer {
    background: #020617;
    padding: 15px;
    text-align: center;
    font-size: 14px;
}
.video-box {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

    .video-box img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .video-box .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.65);
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        text-align: center;
        padding: 15px;
        transition: opacity 0.4s ease;
    }

    .video-box:hover img {
        transform: scale(1.1);
    }

    .video-box:hover .overlay {
        opacity: 1;
    }

.overlay h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.overlay p {
    font-size: 14px;
    opacity: 0.9;
}
.portfolio-cta {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}

    .portfolio-cta p {
        font-size: 22px;
        max-width: 800px;
        margin: 0 auto 25px;
        color: #f1f5f9;
        font-weight: 300;
        line-height: 1.6;
        letter-spacing: 0.5px;
    }

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    color: #fff;
    background: #ff6b00;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .cta-btn:hover {
        background: #ff8c1a;
        transform: translateY(-3px);
    }
.contact {
    padding: 80px 20px;
    text-align: center;
    background: #0b1120;
    color: #e5e7eb;
}

    .contact h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

.contact-text {
    max-width: 700px;
    margin: 0 auto 35px;
    font-size: 18px;
    line-height: 1.6;
    color: #cbd5f5;
}

.email-box {
    display: inline-block;
    padding: 20px 35px;
    background: linear-gradient(135deg, #ff6b00, #ff8c1a);
    border-radius: 14px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

    .email-box span {
        display: block;
        font-size: 14px;
        opacity: 0.9;
    }

    .email-box a {
        font-size: 20px;
        font-weight: 500;
        color: #fff;
        text-decoration: none;
    }

        .email-box a:hover {
            text-decoration: underline;
        }

.contact-note {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.7;
}
.sticky-note {
    max-width: 420px;
    margin: 50px auto;
    padding: 25px 28px;
    background: linear-gradient(135deg, #ff6b00, #ff8c1a);
    color: #f5e6e6; /* Light text for readability */
    font-size: 16px;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.25), inset 0 -6px 0 rgba(255,255,255,0.05);
    transform: rotate(-2deg);
    position: relative;
}

    /* small tape effect */
    .sticky-note::before {
        content: '';
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 22px;
        background: rgba(255,255,255,0.15); /* subtle tape for dark bg */
        border-radius: 4px;
        box-shadow: 0 3px 6px rgba(0,0,0,0.25);
    }

    .sticky-note p {
        margin: 0;
        color: #f5e6e6; /* Light font color */
    }
.about {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
    color: #e5e7eb;
}

    .about h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .about p {
        font-size: 17px;
        line-height: 1.9;
        max-width: 800px;
        margin: 0 auto 16px;
    }
.about-highlight {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 24px;
    color: #9CA3AF; /* soft gray */
}
.copy-btn {
    margin-top: 10px;
    padding: 8px 14px;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    background: #374151;
    color: #fff;
    cursor: pointer;
}

    .copy-btn:hover {
        background: #4B5563;
    }

