body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #fdf6f9;
    color: #333;
    cursor: none;
}
h1,
h2,
h3,
.logo-text{

    font-family: 'Playfair Display', serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #ffe4ec;
}

nav a {
    margin: 10px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

nav a:hover {
    color: #ff69b4;
}
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

/* Top left soft circle */
.hero::before {
    width: 200px;
    height: 200px;
    background: #f8b6c8;
    top: -50px;
    left: -50px;
}

/* Bottom right soft circle */
.hero::after {
    width: 250px;
    height: 250px;
    background: #ffd6e0;
    bottom: -80px;
    right: -80px;
}
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    background: #fff7fa;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    color: #2d2d2d;
    margin-bottom: 15px;
    letter-spacing: 1px;
    animation: fadeIn 1.5s ease;
}

.tagline {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.hero button {
    padding: 12px 28px;
    font-size: 16px;
    background: #f8b6c8;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
}

.hero button:hover {
    background: #f48fb1;
    color: white;
}

.about,
.services,
.portfolio,
.contact {
    text-align: center;
    padding: 60px 20px;
}

.services {
    background: #fffafb;
}

.card {
    display: inline-block;
    padding: 20px;
    margin: 10px;

    background: rgba(255, 182, 193, 0.35);
    backdrop-filter: blur(8px);

    border-radius: 15px;

    box-shadow: 0 6px 18px rgba(244, 143, 177, 0.2);

    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    background: #f8bbd0; /* slightly darker pink */
}

html {
    scroll-behavior: smooth;
}

form {
    max-width: 500px;
    margin: 20px auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

input,
textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #f3a9bc;
    box-shadow: 0 0 0 3px rgba(243, 169, 188, 0.15);
}

form button {
    padding: 12px 20px;
    border: none;
    background: #ffb6c1;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
}

form button:hover {
    background: #ff69b4;
    color: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .logo-text {
        font-size: 40px;
    }

    .tagline {
        font-size: 16px;
    }

    .card {
        display: block;
        width: 80%;
        margin: 10px auto;
    }
}

/* 🌸 GLOBAL SOFT BACKGROUND DESIGN */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #333;

    background-color: #fff9fb;

    background-image:
        radial-gradient(circle at 8% 12%, rgba(244, 143, 177, 0.6) 0 10px, transparent 11px),
        radial-gradient(circle at 18% 78%, rgba(236, 112, 149, 0.7) 0 8px, transparent 9px),
        radial-gradient(circle at 30% 30%, rgba(255, 182, 193, 0.8) 0 7px, transparent 8px),
        radial-gradient(circle at 42% 65%, rgba(244, 143, 177, 0.7) 0 9px, transparent 10px),
        radial-gradient(circle at 55% 18%, rgba(236, 112, 149, 0.6) 0 6px, transparent 7px),
        radial-gradient(circle at 68% 52%, rgba(255, 182, 193, 0.6) 0 10px, transparent 11px),
        radial-gradient(circle at 78% 22%, rgba(244, 143, 177, 0.7) 0 7px, transparent 8px),
        radial-gradient(circle at 88% 72%, rgba(236, 112, 149, 0.75) 0 9px, transparent 10px),
        radial-gradient(circle at 92% 14%, rgba(255, 182, 193, 0.6) 0 6px, transparent 7px),
        radial-gradient(circle at 12% 52%, rgba(244, 143, 177, 0.7) 0 7px, transparent 8px);

    background-attachment: fixed;
}

/* Small scattered circles across page */
body::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, #f8b6c8 4px, transparent 5px),
        radial-gradient(circle at 80% 30%, #ffd6e0 5px, transparent 6px),
        radial-gradient(circle at 30% 70%, #fce4ec 4px, transparent 5px),
        radial-gradient(circle at 60% 80%, #f8b6c8 3px, transparent 4px),
        radial-gradient(circle at 90% 60%, #ffd6e0 4px, transparent 5px),
        radial-gradient(circle at 20% 50%, #fce4ec 3px, transparent 4px);

    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
}

/* Keep content above background */
header,
.hero,
.about,
.services,
.portfolio,
.contact {
    position: relative;
    z-index: 1;
}

/* 🌸 FRONT HERO SMALL BALL DESIGNS */

/* Make hero content layered properly */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Small decorative balls in front */
.hero .small-ball-1,
.hero .small-ball-2,
.hero .small-ball-3,
.hero .small-ball-4 {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

/* Left side small ball */
.hero .small-ball-1 {
    width: 28px;
    height: 28px;
    background: rgba(244, 143, 177, 0.8);
    top: 25%;
    left: 15%;
    box-shadow: 0 0 15px rgba(244, 143, 177, 0.3);
}

/* Right side small ball */
.hero .small-ball-2 {
    width: 20px;
    height: 20px;
    background: rgba(236, 112, 149, 0.8);
    top: 35%;
    right: 20%;
    box-shadow: 0 0 12px rgba(236, 112, 149, 0.3);
}

/* Bottom right ball */
.hero .small-ball-3 {
    width: 24px;
    height: 24px;
    background: rgba(255, 182, 193, 0.85);
    bottom: 25%;
    right: 25%;
    box-shadow: 0 0 14px rgba(255, 182, 193, 0.3);
}

/* Extra small ball near center */
.hero .small-ball-4 {
    width: 16px;
    height: 16px;
    background: rgba(244, 143, 177, 0.9);
    top: 45%;
    left: 30%;
    box-shadow: 0 0 10px rgba(244, 143, 177, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 70px;              /* bigger size */
    height: 70px;
    object-fit: contain;

    border: 3px solid #f48fb1;   /* pink border */
    border-radius: 50%;          /* circle shape */

    padding: 5px;                /* space inside border */
    background: white;           /* clean background */

    box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* soft shadow */

    transition: 0.3s ease;
}

.logo span {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
}

.logo img:hover {
    transform: scale(1.1);
    border-color: #ff69b4;
}

[data-fs-success],
[data-fs-error] {
    max-width: 500px;
    margin: 15px auto;
    text-align: center;
    border-radius: 12px;
    padding: 12px 16px;
    font-family: 'Poppins', sans-serif;
    display: none;
}

[data-fs-success][data-fs-active] {
    display: block;
    background: #ffe4ec;
    color: #7a2e4d;
    box-shadow: 0 4px 12px rgba(244, 143, 177, 0.15);
}

[data-fs-error][data-fs-active],
[data-fs-error="email"][data-fs-active],
[data-fs-error="message"][data-fs-active] {
    display: block;
    color: #c62828;
    font-size: 14px;
    margin-top: 6px;
}

/* SERVICE PAGE */

.service-page {
    padding: 80px 20px;
    text-align: center;
}

.service-page h1{
    font-size: 52px;
    color: #d96c95;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 1px;
}

.service-desc {
    max-width: 850px;
    margin: auto;
    color: #555;
    line-height: 2;
    font-size: 20px;
    margin-bottom: 50px;
}

.points {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 25px;

    max-width: 1100px;

    margin: auto;
}

.point-box {
    background: #ffe4ec;

    padding: 25px;

    border-radius: 18px;

    box-shadow: 0 8px 20px rgba(244, 143, 177, 0.18);

    font-weight: 600;

    font-size: 18px;

    transition: 0.3s ease;

    text-align: center;
}

.point-box:hover {
    transform: translateY(-6px);

    background: #f8bbd0;
}

.service-btn {
    margin-top: 50px;
    padding: 16px 38px;

    background: #f7d6df;

    color: #d85b8b;

    border: 2px solid #e48aa8;

    border-radius: 40px;

    cursor: pointer;

    font-size: 18px;

    font-weight: 600;

    font-family: 'Poppins', sans-serif;

    box-shadow: 0 8px 20px rgba(244, 143, 177, 0.18);

    transition: all 0.3s ease;
}

.service-btn:hover {

    background: #e48aa8;

    color: white;

    transform: translateY(-4px);

    box-shadow: 0 12px 25px rgba(228, 138, 168, 0.35);
}

.resume-extra{
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.extra-card{
    background: #fff5f7;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(244, 143, 177, 0.12);
    text-align: left;
}

.extra-card h3{
    font-size: 28px;
    margin-bottom: 18px;
    color: #e26d98;
    font-weight: 700;
}

.extra-card p{
    font-size: 18px;
    line-height: 1.9;
    color: #555;
}

.extra-card ul{
    padding-left: 20px;
}

.extra-card ul li{
    margin-bottom: 14px;
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.tag-container{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.tag-container span{
    background: #f7d6df;
    color: #444;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
}

.card-link{
    text-decoration: none;
    color: inherit;
}

.social-icons{
    margin-bottom: 15px;
}

.social-icons a{
    display: inline-flex;

    justify-content: center;
    align-items: center;

    width: 45px;
    height: 45px;

    margin: 0 10px;

    border-radius: 50%;

    background: #efbfd0;

    color: #b84f78;

    font-size: 20px;

    text-decoration: none;

    transition: 0.3s ease;

    box-shadow: 0 5px 15px rgba(228, 138, 168, 0.2);
}

.social-icons a:hover{
    background: #e48aa8;

    color: white;

    transform: translateY(-5px);
}

.custom-cursor{

    width: 25px;
    height: 25px;

    background: #d94f8a;

    border-radius: 50%;

    position: fixed;

    top: 0;
    left: 0;

    pointer-events: none;

    z-index: 9999;

    transform: translate(-50%, -50%);

    box-shadow:
    0 0 14px #d94f8a,
    0 0 27px #c2185b,
    0 0 50px rgba(217, 79, 138, 0.9);

    transition:
    transform 0.15s ease,
    width 0.2s ease,
    height 0.2s ease,
    background 0.2s ease;
}

/* sparkle center */

.custom-cursor::after{

    content: "✦";

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    font-size: 16px;

    color: white;

    text-shadow:
    0 0 8px white,
    0 0 15px #ffd6e7;
}
body:not(.dark-mode) .custom-cursor{

    background: #c2185b;

    box-shadow:
    0 0 18px #c2185b,
    0 0 35px #d81b60,
    0 0 60px rgba(194, 24, 91, 0.95);
}

#theme-toggle{
    margin-left: 15px;

    padding: 10px 14px;

    border: none;

    border-radius: 50%;

    background: #f3c1d1;

    color: #b84f78;

    font-size: 18px;

    cursor: pointer;

    transition: 0.3s ease;

    box-shadow: 0 4px 12px rgba(184, 79, 120, 0.15);
}

#theme-toggle:hover{
    background: #d96c95;

    color: white;

    transform: rotate(15deg);
}

.dark-mode{
    background: #151515;

    color: #f5f5f5;
}

.dark-mode input,
.dark-mode textarea{

    background: #2a2a2a;

    color: #ffffff;

    border: 1px solid #444;
}

.dark-mode input::placeholder,
.dark-mode textarea::placeholder{

    color: #bdbdbd;
}

.dark-mode .logo-text{

    color: #f3c1d1;

    opacity: 0.45;
}

.dark-mode header{
    background: #1f1f1f;
}

.dark-mode .hero{
    background: #1a1a1a;
}

.dark-mode .services{
    background: #1b1b1b;
}

.dark-mode .card,
.dark-mode form,
.dark-mode .extra-card,
.dark-mode .point-box{
    background: rgba(217, 108, 149, 0.12);

    color: white;

    box-shadow: 0 5px 18px rgba(0,0,0,0.3);
}

.dark-mode nav a{
    color: #f3d6df;
}

.dark-mode .tagline,
.dark-mode p{
    color: #ddd;
}

.dark-mode footer{
    background: #1a1a1a;

    color: white;
}

#theme-toggle{
    margin-left: 15px;

    padding: 12px 15px;

    border: none;

    border-radius: 50%;

    background: #f3c1d1;

    color: #b84f78;

    font-size: 18px;

    cursor: none;

    transition: 0.3s ease;

    box-shadow: 0 4px 12px rgba(184, 79, 120, 0.15);
}

#theme-toggle:hover{
    background: #d96c95;

    color: white;

    transform: rotate(15deg);
}

.about p{

    max-width: 1200px;

    margin: auto;

    margin-top: 30px;

    font-size: 20px;

    line-height: 2.1;

    letter-spacing: 0.4px;

    font-weight: 400;

    color: #555;

    text-align: center;

    padding: 0 25px;
}

.about h2{

    font-size: 40px;

    margin-bottom: 25px;

    color: #333;

    letter-spacing: 1px;

    font-weight: 600;
}

.dark-mode .about{

    background: #1a1a1a;

    color: white;
}

.dark-mode .about h2{

    color: #f3bfd1;
}

.dark-mode .about p{

    color: #dddddd;
}

.contact input,
.contact textarea{

    border: 1px solid #e7a9bf;

    box-shadow: 0 2px 8px rgba(217, 108, 149, 0.08);
}

.contact form{

    border: 1px solid #e7a9bf;

    border-radius: 25px;

    padding: 35px;

    box-shadow: 0 4px 15px rgba(217, 108, 149, 0.08);
}

.why-choose{
    padding: 90px 8%;
    text-align: center;
}

.why-choose h2{
    font-size: 48px;
    margin-bottom: 50px;
}

/* GRID */
.why-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* CARD - LIGHT MODE DEFAULT */
.why-card{
    background: #fff0f6;              
    border: 1.5px solid rgba(255, 182, 193, 0.45);        
    padding: 30px;
    border-radius: 22px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
    font-size: 18px;
    color: #333;
    transition: 0.3s ease;
}

/* hover effect */
.why-card:hover{
    transform: translateY(-8px);
    border-color: rgba(255, 182, 193, 0.7);
}

/* DARK MODE */
.dark-mode .why-card{
    background: transparent;         
    border: 1px solid rgba(255, 182, 193, 0.35);        
    color: white;                  
}

.dark-mode .why-card:hover{
    border-color: rgba(255, 182, 193, 0.6);
}

.testimonials{

    padding: 90px 8%;

    text-align: center;
}

.testimonials h2{

    font-size: 48px;

    margin-bottom: 50px;
}

.testimonial-container{

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 25px;
}

.testimonial-card{

    background: white;

    padding: 35px;

    border-radius: 22px;

    border: 1.5px solid #ffd6e7;

    box-shadow: 0 5px 18px rgba(0,0,0,0.08);

    line-height: 1.8;

    transition: 0.3s ease;
}

.testimonial-card:hover{

    transform: translateY(-8px);

    border-color: rgba(255, 182, 193, 0.6);
}

.dark-mode .testimonial-card{

     background: #1f1f1f;

    color: white;

    border: 1px solid rgba(255, 182, 193, 0.3);
}

.dark-mode .testimonial-card{

    background: #242424;
    
    border-color: rgba(255, 182, 193, 0.55);
}


/*
.creator-team{

    display: flex;

    justify-content: center;

    gap: 30px;

    margin-top: 40px;

    flex-wrap: wrap;
}

.team-card{

    background: rgba(255,255,255,0.65);

    backdrop-filter: blur(12px);

    padding: 25px;

    border-radius: 24px;

    text-align: center;

    width: 220px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);

    transition: 0.3s ease;
}

.team-card:hover{

    transform: translateY(-8px);
}

.team-card img{

    width: 90px;

    height: 90px;

    border-radius: 50%;

    object-fit: cover;

    border: 4px solid #f3b6c9;

    margin-bottom: 15px;
}

.team-card h3{

    margin-bottom: 8px;

    font-size: 24px;
}

.team-card p{

    color: #d96c95;

    font-weight: 500;
}
.dark-mode .team-card{

    background: #242424;

    color: white;
}
    */