/* ================= GOOGLE FONT ================= */

@import url('https://fonts.googleapis.com/css2?family=Ranade:wght@300;400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ranade', sans-serif;
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: 'Bodoni Moda', serif;

    scroll-behavior: smooth;
}

:root{

    /* ================= PRIMARY COLORS ================= */

    --primary: #4B2E83; /* Royal Bridal Purple */
    --primary-light: #7A5CA8; /* Soft Lavender Purple */
    --secondary: #B7C93D; /* Olive Lime Accent */

    /* ================= DARK SHADES ================= */

    --dark: #2F1E4E; /* Deep Elegant Purple */
    --dark-light: #4A3669; /* Medium Purple Shade */

    /* ================= LIGHT COLORS ================= */

    --white: #F7F4EF; /* Soft Bridal Cream */
    --text: #D9D1E6; /* Soft Lavender Text */

    /* ================= GLASS EFFECT ================= */

    --glass: rgba(255,255,255,0.12); /* Soft White Glass */
    --border: rgba(255,255,255,0.18); /* Soft Border */

}

body{
    overflow-x: hidden;

    background:
    linear-gradient(
        135deg,
        #2F1E4E, /* Deep Purple */
        #4B2E83, /* Royal Purple */
        #7A5CA8, /* Lavender Purple */
        #D8C7A1 /* Soft Gold Beige */
    );

    background-size: 400% 400%;

    animation: premiumBG 18s ease infinite;

    color: var(--white);
}

/* ================= PREMIUM BACKGROUND ================= */

@keyframes premiumBG{

    0%{
        background-position: 0% 50%;
    }

    50%{
        background-position: 100% 50%;
    }

    100%{
        background-position: 0% 50%;
    }

}

/* ================= SCROLLBAR ================= */

::-webkit-scrollbar{
    width: 10px;
}

::-webkit-scrollbar-thumb{
    background: linear-gradient(
        var(--primary),
        var(--secondary)
    );

    border-radius: 20px;
}

::-webkit-scrollbar-track{
    background: #2F1E4E; /* Dark Purple */
}

/* ================= SCROLL PROGRESS ================= */

.scroll-progress{

    position: fixed;

    top: 0;
    left: 0;

    width: 0%;
    height: 4px;

    z-index: 99999;

    background: linear-gradient(
        90deg,
        var(--primary),
        var(--secondary)
    );

}

/* ================= NAVBAR ================= */

.header{
    width: 100%;

    padding: 22px 8%;

    position: fixed;
    top: 0;
    left: 0;

    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(47,30,78,0.55); /* Glass Purple */

    backdrop-filter: blur(20px);

    border-bottom: 1px solid var(--border);

    transition: 0.5s;
}

.header-scroll{

    padding: 16px 8%;

    background: rgba(27,15,46,0.92); /* Dark Elegant Purple */

    box-shadow: 0 10px 40px rgba(0,0,0,0.35);

}

/* ================= LOGO ================= */

.logo{
    display: flex;
    align-items: center;

    gap: 14px;

    color: var(--white);

    font-size: 28px;
    font-weight: 600;

    text-decoration: none;
}

.logo img{
    width: 104px;
    height: auto;

    object-fit: contain;

    animation: logoFloat 4s ease-in-out infinite;

    filter: drop-shadow(
        0 10px 25px rgba(183,201,61,0.25) /* Olive Glow */
    );
}

@keyframes logoFloat{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-6px);
    }

    100%{
        transform: translateY(0px);
    }

}

/* ================= NAVIGATION ================= */

.navbar{
    display: flex;
    align-items: center;

    gap: 20px;
}

.navbar a{

    position: relative;

    text-decoration: none;

    color: var(--white);

    font-size: 17px;
    font-weight: 500;

    padding: 12px 22px;

    border-radius: 40px;

    overflow: hidden;

    transition: 0.5s;
}

/* ================= NAV HOVER ================= */

.navbar a::before{

    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.18), /* Soft Shine */
        transparent
    );

    transition: 0.6s;
}

.navbar a:hover::before{
    left: 100%;
}

.navbar a:hover,
.navbar .active{

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.12);

    color: var(--white);

    box-shadow:
    0 10px 30px rgba(183,201,61,0.25); /* Olive Glow */

}

/* ================= HERO SECTION ================= */

.hero{
    width: 100%;
    height: 100vh;

    background: url('../images/hero-bg.jpg.jpg');

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}

.overlay{

    position: absolute;

    width: 100%;
    height: 100%;

    background:
    linear-gradient(
        rgba(47,30,78,0.75), /* Purple Overlay */
        rgba(47,30,78,0.55)
    );

}

/* ================= PARTICLES ================= */

.particle{

    position: absolute;

    bottom: -20px;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: rgba(255,255,255,0.25);

    animation: floatParticle linear infinite;

}

@keyframes floatParticle{

    from{

        transform: translateY(0);

        opacity: 0;

    }

    50%{

        opacity: 1;

    }

    to{

        transform: translateY(-120vh);

        opacity: 0;

    }

}

/* ================= HERO CONTENT ================= */

.hero-content{

    position: relative;

    z-index: 2;

    text-align: center;

    color: var(--white);

    width: 100%;

    max-width: 1200px;

    margin: auto;

    padding-top: 100px;

}

/* ================= BUTTON ================= */

.hero-btn,
.work-btn a{

    display: inline-block;

    padding: 18px 45px;

    text-decoration: none;

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color: var(--white);

    border-radius: 50px;

    font-size: 18px;
    font-weight: 600;

    border: none;

    position: relative;

    overflow: hidden;

    transition: 0.5s;
}

.hero-btn:hover,
.work-btn a:hover{

    transform: translateY(-8px) scale(1.04);

    box-shadow:
    0 20px 40px rgba(183,201,61,0.35); /* Olive Glow */

}

/* ================= COMMON ================= */

section{
    padding: 110px 8%;
}

.section-title{

    text-align: center;

    font-size: 48px;

    margin-bottom: 70px;

    color: var(--white);

    position: relative;
}

.section-title::after{

    content: "";

    position: absolute;

    left: 50%;
    bottom: -15px;

    transform: translateX(-50%);

    width: 120px;
    height: 4px;

    border-radius: 20px;

    background: linear-gradient(
        90deg,
        var(--primary),
        var(--secondary)
    );
}

/* ================= SERVICES ================= */

.service-container{

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 35px;

    flex-wrap: wrap;
}

.service-card{

    width: 320px;

    overflow: hidden;

    position: relative;

    border-top-left-radius: 180px;
    border-top-right-radius: 180px;

    background: rgba(255,255,255,0.08); /* Soft Bridal Glass */

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255,255,255,0.12); /* Elegant Border */

    box-shadow:
    0 20px 40px rgba(47,30,78,0.28); /* Purple Shadow */

    transition: 0.6s;
}

.service-card:hover{

    transform:
    translateY(-15px)
    scale(1.02);

    box-shadow:
    0 25px 50px rgba(75,46,131,0.35); /* Royal Purple Glow */

}

.service-card img{

    width: 100%;
    height: 430px;

    object-fit: cover;

    transition: 0.7s;
}

.service-card:hover img{
    transform: scale(1.1);
}

.service-card::before{

    content: "";

    position: absolute;

    width: 100%;
    height: 100%;

    background:
    linear-gradient(
        transparent,
        rgba(47,30,78,0.95) /* Elegant Purple Overlay */
    );

    opacity: 0;

    transition: 0.5s;

    z-index: 1;
}

.service-card:hover::before{
    opacity: 1;
}

.service-info{

    position: absolute;

    bottom: -60px;
    left: 0;

    width: 100%;

    text-align: center;

    color: var(--white);

    font-size: 28px;
    font-weight: 600;

    z-index: 2;

    transition: 0.5s;
}

.service-card:hover .service-info{
    bottom: 40px;
}

/* ================= CHOOSE US ================= */

.choose-us{

    background: rgba(255,255,255,0.06); /* Soft Luxury Glass */

    backdrop-filter: blur(20px);

    border-radius: 40px;

    margin: 0 5%;

    border: 1px solid rgba(255,255,255,0.12); /* Elegant Border */
}

.choose-container{

    display: flex;
    justify-content: center;

    gap: 35px;

    flex-wrap: wrap;
}

.choose-card{

    width: 320px;

    padding: 60px 25px;

    text-align: center;

    background: rgba(255,255,255,0.08); /* Glass Card */

    border-radius: 35px;

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,0.12);

    box-shadow:
    0 20px 40px rgba(47,30,78,0.25); /* Purple Shadow */

    transition: 0.6s;

    animation:
    floatCard 4s ease-in-out infinite;
}

.choose-card:nth-child(2){
    animation-delay: 1s;
}

.choose-card:nth-child(3){
    animation-delay: 2s;
}

@keyframes floatCard{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-12px);
    }

    100%{
        transform: translateY(0px);
    }

}

.choose-card:hover{

    transform:
    scale(1.05);

    background: rgba(255,255,255,0.12); /* Hover Glass */

    box-shadow:
    0 25px 50px rgba(75,46,131,0.28); /* Purple Glow */

}

.choose-card h1{

    font-size: 65px;

    margin-bottom: 15px;

    color: var(--secondary); /* Olive Accent */
}

.choose-card p{

    font-size: 22px;

    color: #E9E2F3; /* Soft Lavender White */
}

/* ================= REVIEWS ================= */

.review-container{

    display: flex;
    justify-content: center;

    gap: 30px;

    flex-wrap: wrap;
}

.review-card{

    width: 340px;

    padding: 35px;

    border-radius: 28px;

    background: rgba(255,255,255,0.07); /* Soft Glass */

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255,255,255,0.10);

    box-shadow:
    0 20px 40px rgba(47,30,78,0.22);

    transition: 0.5s;
}

.review-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 25px 50px rgba(75,46,131,0.30);

}

.review-card p{

    font-size: 17px;

    line-height: 32px;

    color: #E9E2F3; /* Soft Lavender Text */

    margin-bottom: 20px;
}

.review-card h3{
    color: var(--secondary); /* Olive Accent */
}

/* ================= OUR WORK ================= */

.work{

    background: rgba(255,255,255,0.04); /* Elegant Background */
}

.work-container{

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 20px;
}

.work-card{

    overflow: hidden;

    border-radius: 22px;

    position: relative;

    border: 1px solid rgba(255,255,255,0.12);

    box-shadow:
    0 15px 35px rgba(47,30,78,0.22);
}

.work-card img{

    width: 100%;

    aspect-ratio: 4/5;

    object-fit: cover;

    transition: 0.7s;
}

.work-card:hover img{
    transform: scale(1.12);
}

.work-card:hover{

    box-shadow:
    0 25px 50px rgba(75,46,131,0.35); /* Purple Glow */

}

.work-btn{

    text-align: center;

    margin-top: 50px;
}

/* ================= CONTACT ================= */

.contact-section{

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,0.08), /* Soft White */
        rgba(255,255,255,0.03)
    );

    border-radius: 40px 40px 0 0;
}

.contact-container{

    display: flex;
    justify-content: center;

    gap: 30px;

    flex-wrap: wrap;
}

.contact-box{

    width: 320px;

    padding: 45px 25px;

    text-align: center;

    border-radius: 28px;

    background: rgba(255,255,255,0.08); /* Glass Card */

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255,255,255,0.12);

    box-shadow:
    0 20px 40px rgba(47,30,78,0.22);

    transition: 0.5s;
}

.contact-box:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 25px 50px rgba(75,46,131,0.30);

}

.contact-box i{

    width: 75px;
    height: 75px;

    margin: auto;
    margin-bottom: 25px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background:
    linear-gradient(
        135deg,
        var(--primary), /* Royal Purple */
        var(--secondary) /* Olive Accent */
    );

    color: var(--white);

    font-size: 28px;

    box-shadow:
    0 10px 25px rgba(183,201,61,0.25); /* Olive Glow */

}

.contact-box a{

    text-decoration: none;

    color: #E9E2F3; /* Lavender White */

    font-size: 18px;

    transition: 0.4s;
}

.contact-box a:hover{
    color: var(--secondary); /* Olive Accent */
}

/* ================= FOOTER ================= */

footer{

    padding: 22px;

    text-align: center;

    background: #2F1E4E; /* Deep Purple */

    color: #E9E2F3;

    border-top: 1px solid rgba(255,255,255,0.10);
}

/* ================= CURSOR GLOW ================= */

.cursor-glow{

    position: fixed;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background:
    radial-gradient(
        circle,
        rgba(183,201,61,0.12), /* Olive Glow */
        transparent 70%
    );

    pointer-events: none;

    transform: translate(-50%, -50%);

    z-index: 1;
}

/* ================= ANIMATION ================= */

@keyframes fadeUp{

    from{

        opacity: 0;

        transform: translateY(50px);

    }

    to{

        opacity: 1;

        transform: translateY(0);

    }

}

/* ================= RESPONSIVE ================= */

@media(max-width: 1200px){

    .work-container{

        grid-template-columns: repeat(2,1fr);

    }

}

@media(max-width: 991px){

    .header{

        flex-direction: column;

        gap: 20px;

    }

    .navbar{

        flex-wrap: wrap;

        justify-content: center;

    }

    .hero-content h1{

    font-size: 78px;

    line-height: 92px;

    margin-bottom: 30px;

    font-weight: 700;

    text-shadow:
    0 10px 30px rgba(0,0,0,0.35);

}

    .hero-content p{

        font-size: 18px;

        line-height: 32px;

    }

}

@media(max-width: 768px){

    section{

        padding: 90px 5%;

    }

    .hero-content h1{

        font-size: 45px;

        line-height: 58px;

    }

    .section-title{

        font-size: 36px;

    }

    .work-container{

        grid-template-columns: 1fr;

    }

}

@media(max-width: 600px){

    .service-card,
    .review-card,
    .choose-card,
    .contact-box{

        width: 100%;

    }

    .navbar{

        gap: 10px;

    }

    .navbar a{

        font-size: 15px;

        padding: 10px 16px;

    }

    .logo{

        font-size: 22px;

    }

    .logo img{

        width: 70px;

    }

    .hero-content h1{

        font-size: 36px;

        line-height: 48px;

    }

}

 /* ================= OFFER STICKER ================= */

.offer-sticker{

    position: absolute;

    top: 40px;

    right: -100px;

    background: #ffcc00;

    color: #000;

    padding: 16px 25px;

    font-size: 16px;

    font-weight: 700;

    line-height: 25px;

    border-radius: 50px;

    transform: rotate(10deg);

    box-shadow:
    0 10px 25px rgba(0,0,0,0.25);

    z-index: 5;

    animation:
    stickerFloat 3s ease-in-out infinite;

}

@keyframes stickerFloat{

    0%{
        transform: rotate(12deg) translateY(0px);
    }

    50%{
        transform: rotate(12deg) translateY(-10px);
    }

    100%{
        transform: rotate(12deg) translateY(0px);
    }

}

@media(max-width:768px){

    .offer-sticker{

        position: relative;

        top: 0;

        right: 0;

        margin: auto;

        margin-bottom: 25px;

        width: fit-content;

    }

}


/* ================= SERVICES HERO ================= */

.services-hero{

    width: 100%;
    height: 65vh;

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;

    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;

}

/* ================= HERO IMAGE ================= */

.services-banner-img{

    position: absolute;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.05);

    animation: heroZoom 18s ease-in-out infinite;

}

@keyframes heroZoom{

    0%{
        transform: scale(1.05);
    }

    50%{
        transform: scale(1.12);
    }

    100%{
        transform: scale(1.05);
    }

}

/* ================= OVERLAY ================= */

.services-hero .overlay{

    position: absolute;

    width: 100%;
    height: 100%;

    background:
    linear-gradient(
        rgba(47,30,78,0.82), /* Elegant Purple Overlay */
        rgba(47,30,78,0.58)
    );

    z-index: 1;

}

/* ================= HERO CONTENT ================= */

.services-hero .hero-content{

    position: relative;
    z-index: 2;

    text-align: center;

    color: var(--white);

    width: 90%;

    animation: fadeUp 1.2s ease;

}

.services-hero .hero-content h1{

    font-size: 72px;

    margin-bottom: 20px;

    font-weight: 700;

    text-shadow:
    0 15px 40px rgba(0,0,0,0.45);

}

.services-hero .hero-content p{

    font-size: 22px;

    color: #EFE9F7; /* Soft Lavender White */

    line-height: 38px;

}

/* ================= SERVICES GRID ================= */

.services-grid{

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}

/* ================= PREMIUM CARD ================= */

.premium-card{

    position: relative;

    overflow: hidden;

    border-radius: 30px;

    cursor: pointer;

    height: 420px;

    background: rgba(255,255,255,0.08); /* Soft Glass */

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255,255,255,0.12);

    box-shadow:
    0 20px 40px rgba(47,30,78,0.28); /* Purple Shadow */

    transition: 0.6s;

}

.hero-btn:hover,
.work-btn a:hover{

    transform:
    translateY(-6px);

    box-shadow:
    0 15px 35px rgba(183,201,61,0.35);

}


/* ================= IMAGE ================= */

.premium-card img{

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.7s;

}

.premium-card:hover img{

    transform: scale(1.12);

}

/* ================= CARD OVERLAY ================= */

.premium-overlay{

    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;

    padding: 30px 25px;

    background:
    linear-gradient(
        transparent,
        rgba(47,30,78,0.98) /* Elegant Purple */
    );

    color: var(--white);

    transition: 0.5s;

}

/* ================= OLIVE LINE ================= */

.premium-overlay::before{

    content: "";

    position: absolute;

    top: 0;
    left: 25px;

    width: 80px;
    height: 3px;

    border-radius: 20px;

    background:
    linear-gradient(
        90deg,
        #B7C93D, /* Olive Lime */
        #D8C7A1 /* Soft Gold */
    );

}

/* ================= TEXT ================= */

.premium-overlay h2{

    font-size: 26px;

    font-weight: 600;

    transform: translateY(45px);

    opacity: 0;

    transition: 0.6s;

}

.premium-card:hover .premium-overlay h2{

    transform: translateY(0);

    opacity: 1;

}

/* ================= SHINE EFFECT ================= */

.premium-card::before{

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 60%;
    height: 100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.22), /* Premium Shine */
        transparent
    );

    transform: skewX(-25deg);

    transition: 0.9s;

    z-index: 3;

}

.premium-card:hover::before{

    left: 150%;

}


/* ================= GALLERY HERO ================= */

.gallery-hero{

    width: 100%;
    height: 65vh;

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;

    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;

}

/* ================= HERO IMAGE ================= */

.gallery-banner{

    position: absolute;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.05);

    animation: galleryZoom 18s ease-in-out infinite;

}

@keyframes galleryZoom{

    0%{
        transform: scale(1.05);
    }

    50%{
        transform: scale(1.12);
    }

    100%{
        transform: scale(1.05);
    }

}

/* ================= OVERLAY ================= */

.gallery-hero .overlay{

    position: absolute;

    width: 100%;
    height: 100%;

    background:
    linear-gradient(
        rgba(47,30,78,0.82), /* Purple Overlay */
        rgba(47,30,78,0.58)
    );

    z-index: 1;

}

/* ================= HERO CONTENT ================= */

.gallery-hero .hero-content{

    position: relative;
    z-index: 2;

    text-align: center;

    color: var(--white);

    width: 90%;

    animation: fadeUp 1.2s ease;

}

.gallery-hero .hero-content h1{

    font-size: 75px;

    margin-bottom: 20px;

    font-weight: 700;

    text-shadow:
    0 15px 40px rgba(0,0,0,0.45);

}

.gallery-hero .hero-content p{

    font-size: 22px;

    color: #EFE9F7; /* Soft Lavender White */

    line-height: 38px;

}

/* ================= GALLERY SECTION ================= */

.gallery-section{

    padding: 110px 8%;

}

/* ================= GALLERY GRID ================= */

.gallery-grid{

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

}

/* ================= GALLERY CARD ================= */

.gallery-card{

    overflow: hidden;

    border-radius: 22px;

    cursor: pointer;

    position: relative;

    background: rgba(255,255,255,0.08); /* Soft Glass */

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255,255,255,0.12);

    box-shadow:
    0 20px 40px rgba(47,30,78,0.28);

    animation: fadeUp 1s ease;

    transition: 0.6s;

}

.gallery-card:hover{

    transform:
    translateY(-12px)
    scale(1.02);

    box-shadow:
    0 25px 50px rgba(75,46,131,0.35); /* Purple Glow */

}

/* ================= IMAGE ================= */

.gallery-card img{

    width: 100%;

    aspect-ratio: 4 / 5;

    object-fit: cover;

    display: block;

    transition: 0.7s;

}

/* ================= HOVER EFFECT ================= */

.gallery-card:hover img{

    transform:
    scale(1.12)
    rotate(2deg);

}

/* ================= OVERLAY ================= */

.gallery-card::before{

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background:
    linear-gradient(
        transparent,
        rgba(47,30,78,0.78) /* Elegant Purple Overlay */
    );

    opacity: 0;

    transition: 0.5s;

    z-index: 1;

}

.gallery-card:hover::before{

    opacity: 1;

}

/* ================= SHINE EFFECT ================= */

.gallery-card::after{

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 60%;
    height: 100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.22), /* Premium Shine */
        transparent
    );

    transform: skewX(-25deg);

    transition: 0.9s;

    z-index: 3;

}

.gallery-card:hover::after{

    left: 150%;

}

/* ================= OLIVE BORDER EFFECT ================= */

.gallery-card:hover{

    border-color:
    rgba(183,201,61,0.35); /* Olive Accent */

}

/* ================= ANIMATION ================= */

@keyframes fadeUp{

    from{

        opacity: 0;

        transform: translateY(40px);

    }

    to{

        opacity: 1;

        transform: translateY(0);

    }

}

/* ================= RESPONSIVE ================= */

@media(max-width: 1200px){

    .gallery-grid{

        grid-template-columns: repeat(3, 1fr);

    }

}

@media(max-width: 991px){

    .gallery-hero .hero-content h1{

        font-size: 58px;

    }

    .gallery-hero .hero-content p{

        font-size: 18px;

        line-height: 32px;

    }

}

@media(max-width: 900px){

    .gallery-grid{

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width: 768px){

    .gallery-hero{

        height: 55vh;

    }

    .gallery-hero .hero-content h1{

        font-size: 46px;

    }

    .gallery-hero .hero-content p{

        font-size: 17px;

        line-height: 28px;

    }

}

@media(max-width: 600px){

    .gallery-grid{

        grid-template-columns: 1fr;

    }

    .gallery-hero .hero-content h1{

        font-size: 38px;

    }

    .gallery-hero .hero-content p{

        font-size: 16px;

        line-height: 26px;

    }

}

/* ================= CONTACT HERO ================= */

.contact-hero{

    width: 100%;
    height: 65vh;

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;

    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;

}

/* ================= HERO IMAGE ================= */

.contact-banner{

    position: absolute;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.05);

    animation: contactZoom 18s ease-in-out infinite;

}

@keyframes contactZoom{

    0%{
        transform: scale(1.05);
    }

    50%{
        transform: scale(1.12);
    }

    100%{
        transform: scale(1.05);
    }

}

/* ================= OVERLAY ================= */

.contact-hero .overlay{

    position: absolute;

    width: 100%;
    height: 100%;

    background:
    linear-gradient(
        rgba(47,30,78,0.82), /* Elegant Purple */
        rgba(47,30,78,0.58)
    );

    z-index: 1;

}

/* ================= HERO CONTENT ================= */

.contact-hero .hero-content{

    position: relative;
    z-index: 2;

    text-align: center;

    color: var(--white);

    width: 90%;

    animation: fadeUp 1.2s ease;

}

.contact-hero .hero-content h1{

    font-size: 75px;

    margin-bottom: 20px;

    font-weight: 700;

    text-shadow:
    0 15px 40px rgba(0,0,0,0.45);

}

.contact-hero .hero-content p{

    font-size: 22px;

    color: #EFE9F7; /* Soft Lavender White */

    line-height: 38px;

}

/* ================= CONTACT PAGE ================= */

.contact-page{

    padding: 110px 8%;

}

/* ================= CONTACT WRAPPER ================= */

.contact-wrapper{

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 60px;

    flex-wrap: wrap;

}

/* ================= LEFT SIDE ================= */

.contact-left{

    flex: 1;

    min-width: 320px;

}

.contact-left h2{

    font-size: 52px;

    margin-bottom: 20px;

    color: var(--white);

    line-height: 65px;

}

.contact-left p{

    font-size: 18px;

    line-height: 34px;

    color: #E9E2F3; /* Soft Lavender */

    margin-bottom: 40px;

}

/* ================= CONTACT INFO ================= */

.contact-info{

    display: flex;
    flex-direction: column;

    gap: 25px;

}

/* ================= INFO BOX ================= */

.info-box{

    display: flex;
    align-items: center;

    gap: 20px;

    background: rgba(255,255,255,0.08); /* Glass Effect */

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255,255,255,0.12);

    padding: 28px;

    border-radius: 22px;

    box-shadow:
    0 20px 40px rgba(47,30,78,0.25); /* Purple Shadow */

    transition: 0.5s;

}

.info-box:hover{

    transform:
    translateY(-10px);

    border-color:
    rgba(183,201,61,0.35); /* Olive Accent */

    box-shadow:
    0 25px 50px rgba(75,46,131,0.18); /* Purple Glow */

}

/* ================= ICON ================= */

.info-box i{

    width: 65px;
    height: 65px;

    background:
    linear-gradient(
        135deg,
        #c1d74b,
        #afc242
    );

    color: #888888;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    font-size: 24px;

    flex-shrink: 0;

    box-shadow:
    0 10px 25px rgba(245,158,11,0.25);

}

/* ================= TEXT ================= */

.info-box h3{

    margin-bottom: 6px;

    color: #888888;

    font-size: 22px;

}

.info-box p{

    margin: 0;

    line-height: 28px;

    font-size: 16px;

    color: #cbd5e1;

}

/* ================= LINK ================= */

.info-link{

    text-decoration: none;

    color: inherit;

    display: block;

}

/* ================= RIGHT SIDE ================= */

.contact-right{

    flex: 1;

    min-width: 320px;

}

/* ================= FORM ================= */

.contact-right form{

    background: rgba(255,255,255,0.05);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,0.08);

    padding: 45px;

    border-radius: 28px;

    box-shadow:
    0 20px 40px rgba(0,0,0,0.28);

    display: flex;
    flex-direction: column;

    gap: 20px;

}

/* ================= INPUTS ================= */

.contact-right input,
.contact-right textarea{

    width: 100%;

    padding: 18px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 14px;

    font-size: 16px;

    outline: none;

    background: rgba(255,255,255,0.05);

    color: #cccccc;

    transition: 0.4s;

}

.contact-right input::placeholder,
.contact-right textarea::placeholder{

    color: #94a3b8;

}

/* ================= INPUT FOCUS ================= */

.contact-right input:focus,
.contact-right textarea:focus{

    border-color:
    rgba(245,158,11,0.55);

    box-shadow:
    0 0 20px rgba(245,158,11,0.12);

}

/* ================= BUTTON ================= */

.contact-right button{

    padding: 18px;

    border: none;

    background:
    linear-gradient(
        135deg,
        #c1d74b,
        #bbd140
    );

    color: #888888;

    font-size: 18px;
    font-weight: 600;

    border-radius: 14px;

    cursor: pointer;

    transition: 0.5s;

}

.contact-right button:hover{

    transform:
    translateY(-6px);

    box-shadow:
    0 20px 35px rgba(245,158,11,0.25);

}

/* ================= ANIMATION ================= */

@keyframes fadeUp{

    from{

        opacity: 0;

        transform: translateY(40px);

    }

    to{

        opacity: 1;

        transform: translateY(0);

    }

}

/* ================= RESPONSIVE ================= */

@media(max-width: 991px){

    .contact-wrapper{

        flex-direction: column;

    }

    .contact-left h2{

        font-size: 44px;

        line-height: 56px;

    }

}

@media(max-width: 768px){

    .contact-hero{

        height: 55vh;

    }

    .contact-hero .hero-content h1{

        font-size: 48px;

    }

    .contact-hero .hero-content p{

        font-size: 17px;

        line-height: 28px;

    }

    .contact-left h2{

        font-size: 38px;

        line-height: 48px;

    }

}

@media(max-width: 600px){

    .contact-page{

        padding: 90px 5%;

    }

    .contact-hero .hero-content h1{

        font-size: 38px;

    }

    .contact-hero .hero-content p{

        font-size: 16px;

        line-height: 26px;

    }

    .contact-left h2{

        font-size: 32px;

        line-height: 42px;

    }

    .contact-right form{

        padding: 30px 22px;

    }

    .info-box{

        flex-direction: column;

        text-align: center;

    }

}
/* ================= LOGO ================= */

.logo{

    display: flex;
    align-items: center;

    gap: 16px;

    color: #cccccc;

    font-size: 32px;
    font-weight: 700;

    letter-spacing: 1px;

    position: relative;

    z-index: 10;

}

.logo img{

    width: 105px;

    height: auto;

    object-fit: contain;

    filter:
    drop-shadow(0 10px 20px rgba(0,0,0,0.25));

    animation: logoFloat 4s ease-in-out infinite;

    transition: 0.5s;

}

.logo:hover img{

    transform:
    scale(1.08)
    rotate(-2deg);

}

/* ================= LOGO FLOAT ================= */

@keyframes logoFloat{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-10px);
    }

    100%{
        transform: translateY(0px);
    }

}

/* ================= NAVBAR ================= */

.navbar{

    display: flex;
    align-items: center;

    gap: 18px;

}

.navbar a{

    text-decoration: none;

    color: #cccccc;

    font-size: 16px;
    font-weight: 500;

    padding: 13px 26px;

    border-radius: 50px;

    transition: 0.45s;

    position: relative;

    overflow: hidden;

    backdrop-filter: blur(12px);

    z-index: 1;

}

/* ================= NAV SHINE ================= */

.navbar a::before{

    content: "";

    position: absolute;

    width: 0;
    height: 100%;

    top: 0;
    left: 0;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,0.15),
        rgba(255,255,255,0.05)
    );

    transition: 0.5s;

    z-index: -1;

}

.navbar a::after{

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 50%;
    height: 100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        #2c1654
        transparent
    );

    transform: skewX(-25deg);

    transition: 0.7s;

}

.navbar a:hover::after{

    left: 150%;

}

.navbar a:hover::before,
.navbar .active::before{

    width: 100%;

}

.navbar a:hover,
.navbar .active{

    background: #2c1654;

    border: 1px solid rgba(255,255,255,0.12);

    box-shadow:
    0 10px 30px rgba(0,0,0,0.15);

}

/* ================= HERO SECTION ================= */

.hero,
.gallery-hero,
.services-hero,
.contact-hero{

    width: 100%;

    min-height: 100vh;

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;

}

/* ================= HERO IMAGE ================= */

.hero img,
.gallery-banner,
.services-banner-img,
.contact-banner{

    position: absolute;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transform: scale(1.05);

    animation: heroZoom 18s ease-in-out infinite;

}

@keyframes heroZoom{

    0%{
        transform: scale(1.05);
    }

    50%{
        transform: scale(1.12);
    }

    100%{
        transform: scale(1.05);
    }

}

/* ================= OVERLAY ================= */

.overlay{

    position: absolute;

    width: 100%;
    height: 100%;

    background:
    linear-gradient(
        rgba(2,6,23,0.68),
        rgba(15,23,42,0.82)
    );

    z-index: 1;

}

/* ================= HERO CONTENT ================= */

.hero-content{

    position: relative;

    z-index: 5;

    text-align: center;

    padding: 0 20px;

    animation: fadeUp 1.2s ease;

}

.hero-content h1{

    font-size: 95px;

    line-height: 110px;

    color: #cccccc;

    margin-bottom: 25px;

    font-weight: 800;

    text-shadow:
    0 15px 40px rgba(0,0,0,0.45);

    animation: glowText 4s infinite alternate;

}

.hero-content p{

    font-size: 22px;

    line-height: 38px;

    color: #e2e8f0;

    margin-bottom: 40px;

}

/* ================= GLOW TEXT ================= */

@keyframes glowText{

    0%{

        text-shadow:
        0 0 15px rgba(255,255,255,0.15),
        0 0 30px rgba(255,255,255,0.08);

    }

    100%{

        text-shadow:
        0 0 25px rgba(255,255,255,0.28),
        0 0 45px rgba(255,255,255,0.15);

    }

}

/* ================= HERO BLUR ================= */

.hero-blur{

    position: absolute;

    border-radius: 50%;

    filter: blur(120px);

    z-index: 2;

}

.blur-1{

    width: 320px;
    height: 320px;

    background:
    rgba(245,158,11,0.28);

    top: 10%;
    left: 10%;

}

.blur-2{

    width: 280px;
    height: 280px;

    background:
    rgba(251,146,60,0.22);

    bottom: 10%;
    right: 10%;

}

/* ================= BUTTON ================= */

.hero-btn{

    display: inline-flex;
    justify-content: center;
    align-items: center;

    padding: 18px 46px;

    text-decoration: none;

    background:
    linear-gradient(
        135deg,
        #c1d74b,
        #bbd140
    );

    /* color: #cccccc; */

    border-radius: 60px;

    font-size: 18px;
    font-weight: 600;

    transition: 0.5s;

    position: relative;

    overflow: hidden;

    box-shadow:
    0 12px 30px rgba(245,158,11,0.25);

}

.hero-btn::before{

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 50%;
    height: 100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );

    transform: skewX(-25deg);

    transition: 0.7s;

}

.hero-btn:hover::before{

    left: 150%;

}

.hero-btn:hover{

    transform:
    translateY(-8px)
    scale(1.05);

    box-shadow:
    0 18px 40px rgba(245,158,11,0.35);

}

/* ================= SECTION ================= */

section{

    padding: 110px 8%;

}

.section-title{

    text-align: center;

    font-size: 54px;

    color: var(--white);

    margin-bottom: 70px;

    font-weight: 700;

    position: relative;

}

.section-title::after{

    content: "";

    position: absolute;

    width: 130px;
    height: 5px;

    border-radius: 30px;

    background:
    linear-gradient(
        90deg,
        #B7C93D, /* Olive Lime */
        #D8C7A1 /* Soft Gold */
    );

    bottom: -18px;
    left: 50%;

    transform: translateX(-50%);

}

/* ================= CONTAINERS ================= */

.service-container,
.review-container,
.contact-container{

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 30px;

    flex-wrap: wrap;

}

/* ================= CARDS ================= */

.service-card,
.review-card,
.choose-card,
.contact-box,
.premium-card,
.gallery-card{

    background:
    rgba(255,255,255,0.08); /* Soft Glass */

    backdrop-filter: blur(15px);

    border:
    1px solid rgba(255,255,255,0.12);

    overflow: hidden;

    transition: 0.5s;

    box-shadow:
    0 10px 40px rgba(47,30,78,0.20); /* Purple Shadow */

}

.service-card:hover,
.review-card:hover,
.choose-card:hover,
.contact-box:hover,
.premium-card:hover,
.gallery-card:hover{

    transform:
    translateY(-12px)
    scale(1.02);

    border-color:
    rgba(183,201,61,0.35); /* Olive Accent */

    box-shadow:
    0 20px 50px rgba(75,46,131,0.20); /* Purple Glow */

}

/* ================= SERVICE CARD ================= */

.service-card{

    width: 340px;

    border-radius: 35px;

    position: relative;

}

.service-card img{

    width: 100%;

    aspect-ratio: 4/5;

    object-fit: cover;

    transition: 0.7s;

}

.service-card:hover img{

    transform: scale(1.1);

}

.service-card::before{

    content: "";

    position: absolute;

    inset: 0;

    background:
    linear-gradient(
        transparent,
        rgba(47,30,78,0.88) /* Elegant Purple */
    );

    opacity: 0;

    transition: 0.5s;

    z-index: 1;

}

.service-card:hover::before{

    opacity: 1;

}

.service-info{

    position: absolute;

    bottom: 35px;
    left: 0;

    width: 100%;

    text-align: center;

    color: var(--white);

    font-size: 30px;
    font-weight: 700;

    z-index: 2;

    transform: translateY(30px);

    opacity: 0;

    transition: 0.5s;

}

.service-card:hover .service-info{

    transform: translateY(0);

    opacity: 1;

}

/* ================= CHOOSE CARD ================= */

.choose-container{

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 30px;

}

.choose-card{

    padding: 60px 30px;

    border-radius: 30px;

    text-align: center;

}

.choose-card h1{

    font-size: 72px;

    color: var(--secondary); /* Olive Lime */

    margin-bottom: 15px;

}

.choose-card p{

    font-size: 20px;

    color: #EFE9F7; /* Soft Lavender */

    line-height: 32px;

}

/* ================= REVIEW CARD ================= */

.review-card{

    width: 350px;

    padding: 35px;

    border-radius: 28px;

    color: var(--white);

    position: relative;

}

.quote-icon{

    font-size: 42px;

    color: rgba(255,255,255,0.25);

    margin-bottom: 20px;

}

.review-card p{

    line-height: 32px;

    margin-bottom: 25px;

    color: #EFE9F7; /* Lavender White */

}

.review-card h3{

    color: var(--secondary); /* Olive Accent */

    font-size: 18px;

}

/* ================= WORK SECTION ================= */

.work-container{

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 25px;

}

.work-card{

    overflow: hidden;

    border-radius: 28px;

    position: relative;

    background:
    rgba(255,255,255,0.08); /* Glass Effect */

    backdrop-filter: blur(15px);

    border:
    1px solid rgba(255,255,255,0.12);

    transition: 0.5s;

    box-shadow:
    0 12px 35px rgba(47,30,78,0.20); /* Purple Shadow */

}

.work-card::before{

    content: "";

    position: absolute;

    inset: 0;

    background:
    linear-gradient(
        transparent,
        rgba(47,30,78,0.85) /* Purple Overlay */
    );

    opacity: 0;

    transition: 0.5s;

    z-index: 1;

}

.work-card:hover::before{

    opacity: 1;

}

.work-card img{

    width: 100%;

    aspect-ratio: 4/5;

    object-fit: cover;

    transition: 0.7s;

}

.work-card:hover{

    transform:
    translateY(-10px)
    scale(1.02);

    border-color:
    rgba(183,201,61,0.30); /* Olive Border */

    box-shadow:
    0 20px 45px rgba(75,46,131,0.22); /* Purple Glow */

}

.work-card:hover img{

    transform:
    scale(1.12)
    rotate(1deg);

}
/* ================= SERVICES GRID ================= */

.services-grid{

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 32px;

}

.premium-card{

    border-radius: 32px;

    position: relative;

    overflow: hidden;

    background:
    rgba(255,255,255,0.08); /* Glass Background */

    backdrop-filter: blur(15px);

    border:
    1px solid rgba(255,255,255,0.12); /* Soft Border */

    transition: 0.5s;

    box-shadow:
    0 12px 35px rgba(47,30,78,0.18); /* Purple Shadow */

}

.premium-card:hover{

    transform:
    translateY(-12px)
    scale(1.02);

    border-color:
    rgba(183,201,61,0.30); /* Olive Border Glow */

    box-shadow:
    0 20px 50px rgba(75,46,131,0.20); /* Purple Glow */

}

.premium-card img{

    width: 100%;

    aspect-ratio: 4/5;

    object-fit: cover;

    transition: 0.7s;

}

.premium-card:hover img{

    transform:
    scale(1.12);

}

/* ================= PREMIUM OVERLAY ================= */

.premium-overlay{

    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;

    padding: 28px;

    background:
    linear-gradient(
        transparent,
        rgba(47,30,78,0.96) /* Deep Purple Overlay */
    );

    color: var(--white);

    z-index: 2;

}

.premium-overlay h2{

    font-size: 30px;

    margin-bottom: 12px;

    font-weight: 700;

    transform: translateY(25px);

    opacity: 0;

    transition: 0.5s;

    color: #ffffff; /* Pure White */

}

.premium-overlay p{

    font-size: 15px;

    line-height: 30px;

    color: #EFE9F7; /* Soft Lavender */

    transform: translateY(25px);

    opacity: 0;

    transition: 0.6s;

}

.premium-card:hover .premium-overlay h2,
.premium-card:hover .premium-overlay p{

    transform: translateY(0);

    opacity: 1;

}

/* ================= GALLERY ================= */

.gallery-grid{

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 25px;

}

.gallery-card{

    border-radius: 28px;

    overflow: hidden;

    position: relative;

    background:
    rgba(255,255,255,0.08); /* Glass Card */

    backdrop-filter: blur(15px);

    border:
    1px solid rgba(255,255,255,0.12); /* Soft Border */

    transition: 0.5s;

    box-shadow:
    0 12px 35px rgba(47,30,78,0.18); /* Purple Shadow */

}

.gallery-card::before{

    content: "";

    position: absolute;

    inset: 0;

    background:
    linear-gradient(
        transparent,
        rgba(47,30,78,0.78) /* Purple Overlay */
    );

    opacity: 0;

    transition: 0.5s;

    z-index: 1;

}

.gallery-card:hover::before{

    opacity: 1;

}

.gallery-card img{

    width: 100%;

    aspect-ratio: 4/5;

    object-fit: cover;

    transition: 0.7s;

}

.gallery-card:hover{

    transform:
    translateY(-10px)
    scale(1.02);

    border-color:
    rgba(183,201,61,0.28); /* Olive Border */

    box-shadow:
    0 20px 45px rgba(75,46,131,0.18); /* Purple Glow */

}

.gallery-card:hover img{

    transform:
    scale(1.1)
    rotate(2deg);

}

/* ================= CONTACT ================= */

.contact-wrapper{

    display: flex;

    justify-content: center;
    align-items: center;

    gap: 70px;

    flex-wrap: wrap;

}

.contact-left,
.contact-right{

    flex: 1;

    min-width: 320px;

}

/* ================= CONTACT LEFT ================= */

.contact-left h2{

    font-size: 58px;

    color: var(--white);

    margin-bottom: 20px;

    line-height: 70px;

}

.contact-left p{

    color: #EFE9F7; /* Lavender White */

    line-height: 36px;

    margin-bottom: 40px;

    font-size: 17px;

}

.contact-info{

    display: flex;
    flex-direction: column;

    gap: 25px;

}

/* ================= INFO BOX ================= */

.info-box{

    display: flex;
    align-items: center;

    gap: 20px;

    padding: 28px;

    border-radius: 28px;

    background:
    rgba(255,255,255,0.08); /* Glass Effect */

    backdrop-filter: blur(15px);

    border:
    1px solid rgba(255,255,255,0.12);

    transition: 0.5s;

    box-shadow:
    0 10px 35px rgba(47,30,78,0.15); /* Purple Shadow */

}

.info-box:hover{

    transform:
    translateX(10px)
    translateY(-5px);

    border-color:
    rgba(183,201,61,0.28); /* Olive Glow */

    box-shadow:
    0 18px 40px rgba(75,46,131,0.18); /* Purple Glow */

}

.info-icon{

    width: 72px;
    height: 72px;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    background:
    linear-gradient(
        135deg,
        #B7C93D, /* Olive Lime */
        #D8C7A1 /* Soft Gold */
    );

    color: #2F1E4E; /* Deep Purple */

    font-size: 28px;

    box-shadow:
    0 12px 30px rgba(183,201,61,0.25);

}

.info-box h3{

    color: var(--white);

    margin-bottom: 6px;

    font-size: 22px;

}

.info-box p{

    color: #EFE9F7; /* Lavender White */

    margin: 0;

    line-height: 30px;

}

.info-link{

    text-decoration: none;

}
/* ================= FORM ================= */

.contact-right form{

    background:
    rgba(255,255,255,0.08); /* Glass Effect */

    backdrop-filter: blur(18px);

    padding: 50px;

    border-radius: 35px;

    border:
    1px solid rgba(255,255,255,0.12); /* Soft Border */

    box-shadow:
    0 15px 45px rgba(47,30,78,0.18); /* Purple Shadow */

}

.form-title{

    margin-bottom: 28px;

}

.form-title h2{

    color: var(--white);

    margin-bottom: 10px;

    font-size: 36px;

}

.form-title p{

    color: #EFE9F7; /* Lavender White */

    line-height: 30px;

}

.input-box{

    margin-bottom: 22px;

}

.contact-right input,
.contact-right textarea{

    width: 100%;

    padding: 18px 20px;

    border: 1px solid rgba(255,255,255,0.12);

    outline: none;

    border-radius: 16px;

    background:
    rgba(255,255,255,0.08); /* Glass Input */

    color: var(--white);

    font-size: 16px;

    transition: 0.4s;

}

.contact-right input:focus,
.contact-right textarea:focus{

    border-color:
    rgba(183,201,61,0.35); /* Olive Glow */

    box-shadow:
    0 0 20px rgba(183,201,61,0.15);

}

.contact-right textarea{

    resize: none;

}

.contact-right input::placeholder,
.contact-right textarea::placeholder{

    color: #D8D1E8; /* Soft Lavender */

}

/* ================= CONTACT BUTTON ================= */

.contact-btn{

    width: 100%;

    padding: 18px;

    border: none;

    border-radius: 16px;

    background:
    linear-gradient(
        135deg,
        #B7C93D, /* Olive Lime */
        #D8C7A1 /* Soft Gold */
    );

    color: #2F1E4E; /* Deep Purple Text */

    font-size: 18px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.5s;

    box-shadow:
    0 12px 30px rgba(183,201,61,0.22);

}

.contact-btn:hover{

    transform:
    translateY(-6px);

    box-shadow:
    0 18px 40px rgba(75,46,131,0.28); /* Purple Glow */

}

/* ================= FOOTER ================= */

.footer{

    background:
    linear-gradient(
        135deg,
        #4B2E83, /* Royal Purple */
        #2F1E4E /* Deep Purple */
    );

    color: var(--white);

    padding-top: 80px;

    position: relative;

    overflow: hidden;

}

.footer::before{

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background:
    rgba(183,201,61,0.08); /* Olive Glow */

    top: -120px;
    right: -120px;

    filter: blur(90px);

}

.footer-content{

    width: 90%;

    margin: auto;

    text-align: center;

    position: relative;

    z-index: 2;

}

.footer-logo{

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 18px;

    margin-bottom: 25px;

}

.footer-logo img{

    width: 90px;

    filter:
    drop-shadow(0 10px 20px rgba(0,0,0,0.25));

}

.footer-logo h2{

    font-size: 34px;

    font-weight: 700;

    color: var(--white);

}

.footer-content p{

    max-width: 720px;

    margin: auto;

    line-height: 34px;

    margin-bottom: 38px;

    color: #EFE9F7; /* Lavender White */

}

.footer-social{

    display: flex;
    justify-content: center;

    gap: 20px;

    margin-bottom: 45px;

}

.footer-social a{

    width: 58px;
    height: 58px;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    background:
    rgba(255,255,255,0.08);

    border:
    1px solid rgba(255,255,255,0.12);

    color: var(--white);

    font-size: 20px;

    text-decoration: none;

    transition: 0.5s;

}

.footer-social a:hover{

    transform:
    translateY(-8px)
    scale(1.08);

    background:
    linear-gradient(
        135deg,
        #B7C93D, /* Olive Lime */
        #D8C7A1 /* Soft Gold */
    );

    color: #2F1E4E; /* Deep Purple */

    box-shadow:
    0 15px 35px rgba(183,201,61,0.28);

}

.footer-bottom{

    text-align: center;

    padding: 25px;

    border-top:
    1px solid rgba(255,255,255,0.10);

    font-size: 15px;

    color: #D8D1E8; /* Soft Lavender */

}

/* ================= SHOW PRICE FLOAT ================= */

.whatsapp-float{

    position: fixed;

    right: 25px;
    bottom: 35px;

    width: 75px;
    height: 75px;

    border-radius: 50%;

    background:
    linear-gradient(
        135deg,
        #DDA15E,
        #bc6c25
    );

    display: flex;
    justify-content: center;
    align-items: center;

    color: #ffffff;

    font-size: 30px;

    text-decoration: none;

    z-index: 999;

    box-shadow:
    0 15px 35px rgba(0,0,0,0.25);

     

    transition: 0.5s;

}

/* TEXT */

.whatsapp-float::before{

    content: "Price";

    position: absolute;

    bottom: -28px;

    font-size: 14px;

    font-weight: 600;

    color: #fff;

    background: #bc6c25;

    padding: 5px 12px;

    border-radius: 20px;

    letter-spacing: 0.5px;

}

.whatsapp-float:hover{

    transform:
    scale(1.1)
    translateY(-5px);

    box-shadow:
    0 18px 40px rgba(0,0,0,0.30);

}
/* ================= PULSE ================= */

@keyframes pulse{

    0%{
        transform: scale(1);
    }

    50%{
        transform: scale(1.08);
    }

    100%{
        transform: scale(1);
    }

}

/* ================= RIPPLE EFFECT ================= */

.ripple{

    position: absolute;

    width: 20px;
    height: 20px;

    background:
    rgba(255,255,255,0.5);

    border-radius: 50%;

    transform: scale(0);

    animation: rippleEffect 0.7s linear;

    pointer-events: none;

}

@keyframes rippleEffect{

    to{

        transform: scale(15);

        opacity: 0;

    }

}

/* ================= ANIMATIONS ================= */

@keyframes fadeUp{

    from{

        opacity: 0;

        transform: translateY(60px);

    }

    to{

        opacity: 1;

        transform: translateY(0);

    }

}

@keyframes glowText{

    from{

        text-shadow:
        0 0 10px rgba(255,255,255,0.4);

    }

    to{

        text-shadow:
        0 0 25px rgba(183,201,61,0.65); /* Olive Glow */

    }

}

@keyframes floatingCard{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-10px);
    }

    100%{
        transform: translateY(0px);
    }

}

/* ================= RESPONSIVE ================= */

@media(max-width: 1200px){

    .services-grid,
    .gallery-grid,
    .work-container{

        grid-template-columns: repeat(3,1fr);

    }

}

@media(max-width: 991px){

    .header{

        flex-direction: column;

        gap: 20px;

    }

    .hero-content h1{

        font-size: 65px;

        line-height: 80px;

    }

    .choose-container{

        grid-template-columns: repeat(2,1fr);

    }

    .services-grid,
    .gallery-grid,
    .work-container{

        grid-template-columns: repeat(2,1fr);

    }

}

@media(max-width: 768px){

    section{

        padding: 90px 5%;

    }

    .hero-content h1{

        font-size: 50px;

        line-height: 65px;

    }

    .hero-content p{

        font-size: 18px;

        line-height: 32px;

    }

    .section-title{

        font-size: 38px;

    }

    .contact-left h2{

        font-size: 42px;

        line-height: 56px;

    }

}

@media(max-width: 600px){

    .logo{

        font-size: 22px;

    }

    .logo img{

        width: 72px;

    }

    .navbar{

        flex-wrap: wrap;

        justify-content: center;

    }

    .navbar a{

        font-size: 14px;

        padding: 10px 18px;

    }

    .hero-content h1{

        font-size: 38px;

        line-height: 52px;

    }

    .hero-content p{

        font-size: 16px;

        line-height: 28px;

    }

    .section-title{

        font-size: 32px;

    }

    .services-grid,
    .gallery-grid,
    .work-container,
    .choose-container{

        grid-template-columns: 1fr;

    }

    .service-card,
    .review-card{

        width: 100%;

    }

    .contact-right form{

        padding: 32px 22px;

    }

    .footer-logo{

        flex-direction: column;

    }

    .footer-logo h2{

        font-size: 24px;

    }

}

/* ================= GALLERY PAGE ================= */

.gallery-hero{

    width: 100%;

    height: 60vh;

    background: url('../images/hero-bg.jpg');

    background-size: cover;

    background-position: center;

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

}

.gallery-section{

    padding: 100px 8%;

}

.gallery-container{

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 25px;

}

.gallery-card{

    overflow: hidden;

    border-radius: 25px;

    position: relative;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.12);

    transition: 0.5s;

}

.gallery-card img{

    width: 100%;

    height: 420px;

    object-fit: cover;

    transition: 0.6s;

}

.gallery-card:hover img{

    transform: scale(1.1);

}

.gallery-card:hover{

    transform: translateY(-10px);

}

@media(max-width: 991px){

    .gallery-container{

        grid-template-columns: repeat(2,1fr);

    }

}

@media(max-width: 600px){

    .gallery-container{

        grid-template-columns: 1fr;

    }

}
/* ================= BACK BUTTON ================= */

.back-btn{

    position: absolute;

    top: 120px;

    left: 50px;

    width: 55px;

    height: 55px;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 50%;

    text-decoration: none;

    font-size: 22px;

    color: var(--white);

    background: rgba(255,255,255,0.10);

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255,255,255,0.15);

    z-index: 10;

    transition: 0.5s;

}

.back-btn:hover{

    transform: translateX(-5px);

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

}

@media(max-width:768px){

    .back-btn{

        top: 100px;

        left: 20px;

        width: 48px;

        height: 48px;

        font-size: 18px;

    }

}