/* header start */
body {
    margin: 0;
    padding: 0;
}

/* 🌈 Topbar Styling */
.topbar {
    background: linear-gradient(90deg, #d572a0, #fd96bc);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    flex-wrap: nowrap;
}

/* Left Section */
.topbar-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.topbar-left a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

/* 💖 Blinking color effect */
.blink-phone {
    animation: blinkColor 1s infinite;
}

@keyframes blinkColor {

    0%,
    100% {
        color: #ffffff;
        /* white */
    }

    50% {
        color: #FFA906;
        /* light pink */
    }
}

.topbar-left a i {
    margin-right: 6px;
}

.topbar-left a:hover {
    opacity: 0.8;
}

/* 🎨 Right Section (3D Social Icons) */
.topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar-right .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff33, #00000022);
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3),
        inset -2px -2px 4px rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.topbar-right .icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.4),
        inset -2px -2px 4px rgba(255, 255, 255, 0.3);
    background: linear-gradient(145deg, #fd96bc, #bc0157);
}

/* ✅ Responsive for Mobile */
@media (max-width: 768px) {
    .topbar {
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 10px 15px;
    }

    /* Hide email link on mobile */
    .topbar-left a:first-child {
        display: none;
    }

    .topbar-left {
        gap: 5px;
        font-size: 13px;
    }

    .topbar-right .icon {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
}

/* header end */

/* navbar start */
.navbar {
    background-color: #bc0157;
    padding: 8px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Make hamburger icon white */
.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Logo styling */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 4px;
    /* reduced from 6px */
    margin-right: 5px;
    /* reduced from 10px */
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-img-small {
    height: 35px;
    width: auto;
}

/* Navbar link styling */
.navbar-nav .nav-link {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin-left: 6px;
    /* reduced from 10px */
    color: #ffffff;
    transition: color 0.3s;
}

/* Medium devices (tablets) */
@media (min-width: 768px) {
    .navbar-nav .nav-link {
        font-size: 16px;
    }
}

/* Large devices (desktops) */
@media (min-width: 1200px) {
    .navbar-nav .nav-link {
        font-size: 14px;
    }
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #ffd700;
}

/* Dropdown styling */
.dropdown-menu {
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #ffe3ee;
    color: #bc0157;
}

/* Responsive Design */
@media (max-width: 991px) {
    .navbar {
        padding: 8px 15px;
    }

    .navbar-brand {
        gap: 3px;
        /* smaller on mobile */
        margin-right: 0;
    }

    .navbar-nav {
        text-align: center;
        background-color: #bc0157;
        padding: 12px 0;
        border-radius: 10px;
    }

    .navbar-nav .nav-link {
        margin: 6px 0;
        font-size: 17px;
    }

    .logo-img {
        height: 42px;
    }

    .logo-img-small {
        height: 28px;
    }

    .dropdown-menu {
        background-color: #fff;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 38px;
    }

    .logo-img-small {
        height: 24px;
    }

    .navbar-nav .nav-link {
        font-size: 16px;
    }
}

/* navbar end */

/* crousel start */
/* 🌸 Common Carousel Styling */

.carousel-item {
    position: relative;
}

.carousel-item img {
    object-fit: cover;
    transition: transform 0.8s ease;
}

.carousel-item.active img {
    transform: scale(1.05);
}

/* Desktop Carousel Height */
#desktopCarousel .carousel-item img {
    height: 90vh;
}

/* Mobile Carousel Height */
#mobileCarousel .carousel-item img {
    height: 30vh;
}

/* Overlay */
.carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0.1));
    z-index: 1;
}

/* Perfect Center Caption */
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    text-align: center;
    color: #fff;
    z-index: 3;
    width: 100%;
    max-width: 800px;
    opacity: 0;
    animation: fadeInUp 1.5s ease forwards;
}

/* .carousel-caption h2 {
    font-family: "Playfair Display", serif;
    font-size: 52px;
    font-weight: 700;
    background: none;
    color: #bc0157;

    -webkit-background-clip: unset;
    -webkit-text-fill-color: #bc0157;

} */

/* ==== Desktop Carousel Text Darkened ==== */
#desktopCarousel .carousel-caption h2 {
    font-family: "Playfair Display", serif;
    font-size: 54px;
    font-weight: 700;
    /* background: linear-gradient(to right, #ffffff, #bc0157); */
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
}

/* .carousel-caption h2 span {
    font-weight: 800;
} */

#desktopCarousel .carousel-caption h2 span {
    color: #fff;
    -webkit-text-fill-color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

/* .carousel-caption p {
    font-size: 20px;
    color: #fff;
    margin-top: 12px;
    font-family: "Poppins", sans-serif;
} */

#desktopCarousel .carousel-caption p {
    font-size: 20px;
    color: #f9f9f9;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
    margin-top: 15px;
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
}

/* Keep mobile carousel text unaffected */
@media (max-width: 768px) {

    #desktopCarousel .carousel-caption h2,
    #desktopCarousel .carousel-caption p {
        text-shadow: none;
    }
}

/* Smooth Upward Animation */
/* @keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate(-50%, -40%);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
} */

/* ===== Mobile Responsive Styling (unchanged) ===== */
@media (max-width: 768px) {
    .carousel-item img {
        height: 55vh;
        object-position: center top;
    }

    .carousel-caption {
        display: none !important;
        /* caption hidden on mobile */
    }

    /* ❌ Remove overlay for mobile */
    .carousel-item::after {
        background: none !important;
    }
}

@media (max-width: 480px) {
    .carousel-item img {
        height: 45vh;
    }
}


/* crousel end */

/* sub heading start */
/* Hero Section */
.hero-section {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
}

/* Main Heading */
.heading {
    font-family: "Playfair Display", serif;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(90deg, #fd96bc, #a50055);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

/* Subheading */
.subheading {
    font-family: "Montserrat", sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #555;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .heading {
        font-size: 1.8rem;
    }

    .subheading {
        font-size: 1rem;
    }
}

/* sub heading end */

/* about index start */
/* ===== ABOUT SECTION ===== */

/* 🌸 View More Button */
/* 🌸 View More Button */
.view-more-btn {
    display: inline-block;
    background-color: #ffc0cb;
    color: #a50055;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
    border: 2px solid #ffc0cb;
    margin-top: 25px;
    position: relative;
    z-index: 5;
    left: 50%;
    transform: translateX(-50%);
}

.view-more-btn:hover {
    background-color: #a50055;
    color: #fff;
    border-color: #a50055;
    transform: translate(-50%, -2px);
    box-shadow: 0 4px 10px rgba(165, 0, 85, 0.3);
}

.about-section {
    position: relative;
    background: url("images/bg.jpg") center/cover no-repeat;
    padding: 80px 0;
}

.about-overlay {
    background: rgba(255, 255, 255, 0);
    padding: 10px 0;
}

.about-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.about-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


.about-content {
    flex: 1;
}

.about-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    color: #a50055;
    margin-bottom: 20px;
}

.about-content h2 span {
    color: #fd96bc;
}

.about-content p {
    font-family: "Montserrat", sans-serif;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
}


@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .about-image img {
        max-width: 350px;
        margin: 0 auto;
    }

    .about-content h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .about-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }
}

/* about index end */

/* ===== Features Section ===== */
.features-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    background: url("images/featurebackground.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.features-container {
    display: flex;
    gap: 50px;
    border-radius: 25px;
    padding: 50px 40px;
    max-width: 1000px;
    width: 100%;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(6px);
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    flex: 1 1 200px;
    padding: 25px;
    border-radius: 20px;
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 50px;
    background: linear-gradient(135deg, #E47FAA, #BC0157);
    color: #fff;
    padding: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15);
}

.feature-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    line-height: 1.5;
}

.feature-card p strong {
    color: #BC0157;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .features-container {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }

    .feature-card p {
        font-size: 1rem;
    }

    .feature-icon {
        font-size: 45px;
        padding: 20px;
    }
}

/* feature end */

/* what can we do start */
.what-can-we-do {
    background: linear-gradient(rgba(255, 182, 193, 0.4),
            rgba(255, 182, 193, 0.4)),
        url("images/bg.jpg");
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
}

/* Main Flexbox Wrapper */
.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* Left Text */
.text-content {
    flex: 1 1 550px;
    color: #4b0000;
}

.text-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.text-content h2 strong {
    font-weight: 700;
}

.text-content p {
    position: relative;
    padding-left: 15px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.text-content p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 5px;
    height: 100%;
    background-color: #4b0000;
    border-radius: 2px;
}

/* Right Image */
.image-content {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
}

.image-content img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.image-content img:hover {
    transform: scale(1.05);
}

/* 🌸 Responsive Design */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .image-content {
        order: 1;
    }

    .text-content {
        order: 2;
    }

    .text-content h2 {
        font-size: 2rem;
        line-height: 2.2rem;
        margin-bottom: 25px;
    }

    .text-content p {
        font-size: 1.15rem;
        line-height: 1.8;
        margin-bottom: 20px;
        padding-left: 0;
        text-align: center;
    }

    .text-content p::before {
        display: none;
    }

    .image-content img {
        width: 300px;
        height: 300px;
    }
}

/* what can we do end */

/* service index start */
/* 🌸 Service Plan Section */
.service-plan {
    background: linear-gradient(120deg, #fff4f8, #ffe6ef);
    padding: 90px 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}

/* Glowing background circles */
.circle-bg {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 192, 203, 0.4) 0%, transparent 70%);
    filter: blur(10px);
    z-index: 0;
    animation: float 6s ease-in-out infinite alternate;
}

.circle-left {
    width: 300px;
    height: 300px;
    top: -80px;
    left: -100px;
}

.circle-right {
    width: 400px;
    height: 400px;
    bottom: -120px;
    right: -120px;
}

/* Heading */
.service-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #bc0157;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.service-content h2 span {
    color: #a50055;
}

.service-content p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 60px;
}

/* Plan Cards */
.plan-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.plan-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 25px;
    padding: 40px 30px;
    width: 320px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.plan-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 40px rgba(188, 1, 87, 0.2);
}

/* Icon Styles */
.plan-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.plan-icon.silver {
    background: linear-gradient(145deg, #dcdcdc, #a9a9a9);
}

.plan-icon.gold {
    background: linear-gradient(145deg, #ffde59, #d4af37);
}

.plan-icon.diamond {
    background: linear-gradient(145deg, #40e0d0, #0097a7);
}

/* Texts */
.plan-card h3 {
    font-size: 1.5rem;
    color: #a50055;
    font-weight: 700;
    margin-bottom: 15px;
}

.plan-card p {
    color: #666;
    font-size: 0.98rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    text-align: left;
    color: #333;
}

.plan-card ul li {
    margin-bottom: 8px;
    font-size: 0.92rem;
}

/* Buttons */
.plan-btn {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.silver-btn {
    background: linear-gradient(135deg, #b0b0b0, #8f8f8f);
}

.gold-btn {
    background: linear-gradient(135deg, #ffd700, #d4af37);
}

.diamond-btn {
    background: linear-gradient(135deg, #00bcd4, #0097a7);
}

.plan-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(188, 1, 87, 0.4);
}

/* Scroll animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 1s ease forwards;
}

/* Floating effect for circles */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(20px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .plan-container {
        flex-direction: column;
        align-items: center;
    }

    .plan-card {
        width: 90%;
    }

    .service-content h2 {
        font-size: 2.2rem;
    }
}

/* service index end */

/* blog index start */
.blog-heading {
    font-family: "Playfair Display", serif;
    font-size: 46px;
    font-weight: 700;
    color: #a50055;
    /* deep romantic pink */
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #a50055, #fd96bc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeSlideIn 1.5s ease forwards;
}

/* Underline effect */
/* .blog-heading::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #a50055, #fd96bc);
    margin: 12px auto 0;
    border-radius: 2px;
} */

/* Highlighted span style */
.blog-heading span {
    color: #fd96bc;
    -webkit-text-fill-color: #fd96bc;
}

/* Animation */
@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .blog-heading {
        font-size: 32px;
    }
}

.matrimony-blog-area {
    padding: 80px 0;
    background: linear-gradient(to bottom right, #fff, #f8f8f8);
}

.matrimony-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.matrimony-title {
    font-family: "Playfair Display", serif;
    font-size: 38px;
    color: #a50055;
    margin-bottom: 10px;
}

.matrimony-title span {
    background: linear-gradient(45deg, #a50055, #fd96bc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.matrimony-subtitle {
    color: #555;
    margin-bottom: 50px;
    font-size: 16px;
}

/* Blog Boxes */
.matrimony-blog-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.matrimony-blog-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    width: 350px;
    transition: all 0.4s ease;
    position: relative;
}

.matrimony-blog-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.matrimony-img-wrapper img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: 0.4s ease;
}

.matrimony-blog-box:hover .matrimony-img-wrapper img {
    transform: scale(1.05);
}

.matrimony-blog-content {
    padding: 25px;
    text-align: left;
}

.matrimony-blog-content h3 {
    font-size: 20px;
    color: #a50055;
    font-weight: 600;
    margin-bottom: 12px;
}

.matrimony-blog-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.matrimony-readmore {
    color: #a50055;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.matrimony-readmore:hover {
    color: #fd96bc;
}

.matrimony-readmore i {
    margin-left: 6px;
    transition: 0.3s ease;
}

.matrimony-readmore:hover i {
    transform: translateX(4px);
}

/* blog index end */

/* testimonial start */
.testimonial-wrapper {
    background: linear-gradient(to bottom right, #fff, #fdf3f7);
    padding: 80px 0;
    font-family: "Poppins", sans-serif;
}

.testimonial-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.testimonial-title {
    font-family: "Playfair Display", serif;
    font-size: 38px;
    color: #a50055;
    margin-bottom: 10px;
    text-align: center;
}

.testimonial-title span {
    background: linear-gradient(45deg, #a50055, #fd96bc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonial-subtitle {
    color: #555;
    font-size: 16px;
    margin-bottom: 40px;
}

/* Testimonial Row */
.testimonial-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    flex: 1 1 30%;
    max-width: 350px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 25px 20px;
    text-align: center;
    transition: 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fd96bc;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.client-name {
    color: #a50055;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}

.testimonial-stars i {
    color: #fd96bc;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonial-row {
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 1 1 45%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .testimonial-row {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        width: 90%;
        max-width: 400px;
    }

    .testimonial-title {
        font-size: 30px;
    }
}

/* testimonial end */

/* footer start */
/* ===== Footer Styles ===== */
.footer {
    position: relative;
    color: #444;
    font-family: "Poppins", sans-serif;
    border-top: 4px solid #fd96bc;
    background-color: #ffe6ef;
    overflow: hidden;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    background-color: #ffe6f2;
    /* 🌸 soft light pink background */
    padding: 15px 20px;
    border-radius: 10px;
}

.footer-logo-img {
    width: 50px;
    height: auto;
    filter: drop-shadow(0 0 6px rgba(204, 51, 102, 0.4));
    /* soft pink glow */
}

.footer-logo {
    font-size: 22px;
    color: #cc3366;
    /* 💖 dark pink text */
    font-weight: 700;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(204, 51, 102, 0.3);
    /* subtle text glow */
}

/*

.footer-logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
} */

.footer-overlay {
    position: relative;
    z-index: 1;
    padding: 70px 0 50px;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 35px;
}

.footer-col {
    flex: 1 1 22%;
    min-width: 220px;
}

/* .footer-logo {
    font-size: 26px;
    font-family: "Playfair Display", serif;
    color: #a50055;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
} */

.footer-logo i {
    color: #fd96bc;
    font-size: 22px;
}

.footer p {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

.footer-col h4 {
    color: #a50055;
    font-size: 20px;
    margin-bottom: 22px;
    font-family: "Playfair Display", serif;
    position: relative;
}

.footer-col h4::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(45deg, #a50055, #fd96bc);
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
    color: #555;
    font-size: 15px;
    transition: 0.3s;
}

.footer-col ul li i {
    color: #fd96bc;
    margin-right: 10px;
    width: 18px;
}

.footer-col ul li a {
    color: #555;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #a50055;
    padding-left: 4px;
}

/* ----- Social Icons ----- */
.footer-social {
    margin-top: 20px;
}

.footer-social a { display: inline-block;  color: #fff; width: 38px; height: 38px; border-radius: 50%; text-align: center; line-height: 38px; margin-right: 10px; font-size: 16px; transition: all 0.3s ease; } 
/*.footer-social a:hover { transform: translateY(-6px); background: linear-gradient(45deg, #fd96bc, #a50055); box-shadow: 0 4px 10px rgba(165, 0, 85, 0.3); }*/

/* ----- Bottom Bar ----- */
.footer-bottom {
    text-align: center;
    padding: 18px 10px;
    background: linear-gradient(90deg, #e39ec2, #fd96bc);
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.footer-bottom a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
    transition: 0.3s;
}

.footer-bottom a:hover {
    color: #ffe6ef;
    text-decoration: none;
}

/* ===== Scroll to Top Button ===== */
#scrollTopBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(45deg, #a50055, #fd96bc);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(165, 0, 85, 0.3);
    display: none;
    transition: all 0.3s ease;
    z-index: 999;
}

#scrollTopBtn:hover {
    transform: translateY(-5px);
    background: linear-gradient(45deg, #fd96bc, #e785b8);
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .footer-container {
        justify-content: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social a {
        margin: 6px;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        font-size: 22px;
    }

    .footer p {
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 13px;
    }
}

/* footer end */

/* breadcrumb banner start */
/* ======= Banner Section ======= */
.contact-banner {
    position: relative;
    background: url("images/a.jpg") center/cover no-repeat;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.10));
    /* lighter overlay */
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-overlay h1 {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    color: #bc0157;
    margin: 10px 0;
    letter-spacing: 1px;
}

.banner-overlay h1 span {
    color: #bc0157;
}

/* ===== Breadcrumb Styling ===== */
.breadcrumb {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}

.breadcrumb a {
    color: #bc0157;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: #bc0157;
}

.breadcrumb span {
    margin: 0 6px;
    color: #bc0157;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .contact-banner {
        height: 280px;
    }

    .banner-overlay h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .contact-banner {
        height: 220px;
    }

    .banner-overlay h1 {
        font-size: 30px;
    }

    .breadcrumb {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-banner {
        height: 130px;
    }

    .banner-overlay h1 {
        font-size: 26px;
    }

    .breadcrumb {
        font-size: 13px;
    }
}

/* breadcrumb banner end */

/* contact start */
/* 🌸 Contact Section */
body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
}

.contact-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #ffe4ef, #fffafc);
    position: relative;
    z-index: 1;
}

/* Heading */
.contact-heading {
    text-align: center;
    margin-bottom: 50px;
}

.contact-heading h2 {
    font-family: "Playfair Display", serif;
    font-size: 44px;
    font-weight: 600;
    background: linear-gradient(90deg, #bc0157, #ff7eb9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.contact-heading p {
    color: #666;
    font-size: 16px;
    max-width: 650px;
    margin: 0 auto;
}

/* Map & Form Layout */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch;
    justify-content: center;
}

.contact-map {
    flex: 1 1 48%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(188, 1, 87, 0.15);
    height: 500px;
    background: #fff;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Form Styling */
.contact-form {
    flex: 1 1 48%;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(188, 1, 87, 0.15);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form h5 {
    font-family: "Playfair Display", serif;
    font-size: 26px;
    color: #bc0157;
    text-align: center;
    font-weight: 600;
    margin-bottom: 30px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #bc0157;
    font-size: 16px;
}

.input-group textarea+i {
    top: 20px;
    transform: none;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    transition: 0.3s;
    outline: none;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #bc0157;
    box-shadow: 0 0 6px rgba(188, 1, 87, 0.2);
}

.input-group textarea {
    resize: none;
    height: 120px;
}

/* Send Button */
.send-btn {
    background: linear-gradient(90deg, #bc0157, #ff4b8c);
    color: #fff;
    border: none;
    padding: 12px 0;
    border-radius: 10px;
    font-weight: 600;
    width: 100%;
    transition: 0.3s;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.send-btn:hover {
    background: linear-gradient(90deg, #ff4b8c, #bc0157);
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(188, 1, 87, 0.3);
}

/* Info Cards */
.info-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 60px;
    text-align: center;
}

.info-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 25px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    flex: 1 1 300px;
    transition: 0.4s ease;
}

.info-card:hover {
    transform: translateY(-8px);
}

.info-card i {
    font-size: 32px;
    color: #bc0157;
    margin-bottom: 12px;
}

.info-card h6 {
    font-family: "Playfair Display", serif;
    color: #111;
    font-weight: 600;
    margin-bottom: 10px;
}

.info-card p {
    color: #555;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-map,
    .contact-form {
        flex: 1 1 100%;
    }

    .contact-form {
        padding: 35px 25px;
    }
}


/* contact end */

/* why choose us start */
.why-section {
    background: url('images/whych.jpg') no-repeat center center/cover;
    position: relative;
    padding: 100px 0;
    color: #fff;
}

.why-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3px);
}

.why-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 0 20px;
}

.why-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    background: linear-gradient(45deg, #bc0157, #ff94c2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.why-container p {
    font-size: 17px;
    color: #eee;
    max-width: 700px;
    margin: 0 auto 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 40px 20px;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.why-section {
    background: linear-gradient(to right, #a8004d, #bc0157);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.why-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-container h2 span {
    color: #ffd6e5;
}

.why-container p {
    font-size: 17px;
    color: #f1c6da;
    margin-bottom: 50px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 35px 25px;
    border-radius: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.why-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.why-card i {
    font-size: 40px;
    color: #ff99bd;
    margin-bottom: 18px;
    transition: color 0.3s ease;
}

.why-card:hover i {
    color: #fff;
}

.why-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 10px;
    color: #fff;
}

.why-card p {
    font-size: 15px;
    color: #e5b7cb;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .why-container h2 {
        font-size: 36px;
    }
}


/* why choose us end */

/* mission vission start */
.mission-vision-section {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, #fff8f9, #fef3f6);
    padding: 60px 0;
}

.mission-container,
.vision-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap;
    padding: 0 20px;
}

.mission-text,
.vision-text {
    flex: 1 1 450px;
}

.mission-text h2,
.vision-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(90deg, #bc0157, #ff94c2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 18px;
}

.mission-text p,
.vision-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.mission-img,
.vision-img {
    flex: 1 1 400px;
    max-width: 420px;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(188, 1, 87, 0.15);
}

.mission-img img,
.vision-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mission-img:hover img,
.vision-img:hover img {
    transform: scale(1.05);
}

/* Reverse layout for Vision */
.vision-container {
    flex-direction: row-reverse;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .mission-container,
    .vision-container {
        flex-direction: column;
        text-align: center;
    }

    .mission-img,
    .vision-img {
        width: 90%;
        max-width: 380px;
        height: 260px;
        margin: 0 auto 30px;
    }

    .mission-text h2,
    .vision-text h2 {
        font-size: 32px;
    }
}

/* mission vission end */

/* about  */
.mini-about-banner {
    position: relative;
    background: url("images/footer.jpg") center/cover no-repeat;
    border-radius: 12px;
    color: #fff;
    max-width: 1000px;
    margin: 60px auto;
    box-shadow: 0 5px 20px rgba(188, 1, 87, 0.25);
    overflow: hidden;
}

/* Overlay Gradient on Image */
.mini-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(188, 1, 87, 0.8), rgba(255, 159, 197, 0.7));
    z-index: 1;
}

.mini-banner-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 50px 40px;
}

.mini-banner-text {
    flex: 1 1 60%;
}

.mini-banner-text h2 {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    margin-bottom: 8px;
}

.mini-banner-text h2 span {
    color: #ffe6f0;
}

.mini-banner-text p {
    font-size: 16px;
    color: #fff;
    margin: 0;
}

.mini-banner-btn-box {
    flex: 1 1 30%;
    text-align: right;
}

.mini-banner-btn {
    background: #fff;
    color: #bc0157;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mini-banner-btn:hover {
    background: #bc0157;
    color: #fff;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mini-banner-container {
        flex-direction: column;
        text-align: center;
    }

    .mini-banner-text {
        margin-bottom: 20px;
    }

    .mini-banner-btn-box {
        text-align: center;
    }

    .mini-banner-text h2 {
        font-size: 30px;
    }
}

/* about */

/* blog internal start */
/* 🌸 Banner Section */
.matrimony-blog-banner {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url("assets/images/blog1-banner.jpg") center/cover no-repeat;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.matrimony-blog-banner h1 {
    font-family: "Playfair Display", serif;
    font-size: 50px;
    background: linear-gradient(to right, #ffb3ca, #bc0157);
   
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.matrimony-blog-banner p {
    color: #eee;
    margin-top: 10px;
    font-size: 18px;
}

/* 🌸 Blog Content Section */
.matrimony-blog-content {
    max-width: 900px;
    margin: 10px auto;
    padding: 0 20px;
}

.matrimony-blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    color: #777;
    font-size: 15px;
}

.matrimony-blog-meta i {
    color: #bc0157;
}

.matrimony-blog-content img {
    width: 100%;
    border-radius: 15px;
    margin: 25px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.matrimony-blog-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 30px;
    color: #bc0157;
    margin-top: 40px;
    margin-bottom: 15px;
}

.matrimony-blog-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* 🌸 Quote Box */
.matrimony-quote-box {
    background: #fff4f8;
    border-left: 5px solid #bc0157;
    padding: 20px 30px;
    font-style: italic;
    color: #444;
    margin: 40px 0;
    border-radius: 10px;
}

/* 🌸 Navigation Buttons */
.matrimony-blog-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.matrimony-blog-navigation a {
    text-decoration: none;
    color: #bc0157;
    font-weight: 500;
    transition: all 0.3s ease;
}

.matrimony-blog-navigation a:hover {
    color: #a6004d;
}

/* 🌸 Responsive */
@media (max-width: 768px) {
    .matrimony-blog-banner {
        height: 45vh;
    }

    .matrimony-blog-banner h1 {
        font-size: 36px;
    }

    .matrimony-blog-content {
        padding: 0 15px;
    }
}

/* blog internal end */

/*testimonial start*/
/* 💞 Section Styling */
.matrimony-testimonial-section {
    padding: 20px 20px 50px;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at top right, rgba(253, 150, 188, 0.15), transparent 70%),
        radial-gradient(circle at bottom left, rgba(165, 0, 85, 0.15), transparent 70%);
}

/* 💖 Heading */
.matrimony-testimonial-section h2 {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    color: #a50055;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    animation: fadeInDown 1s ease-in-out;
    text-shadow: 0px 3px 10px rgba(253, 150, 188, 0.3);
}

.matrimony-testimonial-section h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #a50055, #fd96bc);
    margin: 10px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(253, 150, 188, 0.5);
}

.matrimony-section-subtitle {
    font-size: 18px;
    color: #777;
    margin-top: 10px;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* 💬 Testimonial Cards */
.matrimony-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 70px;
    z-index: 2;
    position: relative;
}

.matrimony-testimonial-card {
    background: linear-gradient(145deg, #fff, #fff8fb);
    border-radius: 22px;
    box-shadow: 0 6px 25px rgba(165, 0, 85, 0.15);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
    border-top: 4px solid transparent;
}

.matrimony-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(165, 0, 85, 0.25);
    border-top: 4px solid #fd96bc;
    background: linear-gradient(145deg, #fff, #ffe6ef);
}

.matrimony-testimonial-card::before {
    content: "“";
    font-size: 90px;
    color: rgba(165, 0, 85, 0.12);
    position: absolute;
    top: 15px;
    left: 25px;
    font-family: "Playfair Display", serif;
    z-index: 0;
}

.matrimony-testimonial-content {
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.matrimony-testimonial-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* 💍 Author Section */
.matrimony-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.matrimony-testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fd96bc;
    box-shadow: 0 0 10px rgba(253, 150, 188, 0.5);
}

.matrimony-testimonial-author h4 {
    font-size: 18px;
    font-weight: 600;
    color: #a50055;
    margin: 0;
}

.matrimony-testimonial-author span {
    font-size: 14px;
    color: #999;
}

/* ✨ Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 🌸 Responsive */
@media (max-width: 768px) {
    .matrimony-testimonial-section h2 {
        font-size: 34px;
    }

    .matrimony-testimonial-author img {
        width: 60px;
        height: 60px;
    }
}

/*testimonial end */

/* term & condition start */
.terms-page {
    font-family: "Playfair Display", system-ui, -apple-system, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: linear-gradient(180deg,
            rgba(253, 150, 188, 0.12) 0%,
            rgba(165, 0, 85, 0.06) 35%,
            rgba(255, 255, 255, 0.98) 100%);
    color: #1f1f1f;
    /*padding: 30px 100px;*/
    line-height: 1.7;
}

/* Center container */
.wrap {
    max-width: 980px;
    margin: 48px auto;
    padding: 28px;
    box-sizing: border-box;
}

/* The "paper" panel with subtle border & shadow like the screenshot */
.paper {
    background: var(--paper-bg);
    border-radius: 10px;
    padding: 34px 44px;
    box-shadow: 0 6px 30px rgba(165, 0, 85, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(165, 0, 85, 0.06);
}

/* Top heading area with gradient bar */
.paper .heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.paper .heading .title {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    color: var(--pink-2);
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.2px;
}

.paper .heading .sub {
    margin: 0;
    color: #7a374f;
    font-size: 13px;
    opacity: 0.9;
}

/* thin pink accent line under heading */
.accent {
    height: 6px;
    width: 100%;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--pink-1), var(--pink-2));
    margin: 18px 0 28px 0;
    box-shadow: 0 4px 18px rgba(165, 0, 85, 0.08);
}

/* Main content typography to match legal document look */
.terms {
    font-size: 15px;
    line-height: 1.85;
    color: #2b2b2b;
}

.terms h3 {
    font-family: "Playfair Display", serif;
    color: var(--pink-2);
    margin-top: 24px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.terms p {
    margin: 0 0 12px 0;
    text-align: justify;
}

.terms strong {
    color: #4a002a;
}

.terms ul {
    margin: 0 0 12px 20px;
    padding: 0;
}

.terms li {
    margin-bottom: 8px;
}

/* smaller muted note blocks */
.note {
    background: linear-gradient(90deg,
            rgba(253, 150, 188, 0.03),
            rgba(165, 0, 85, 0.02));
    border-left: 4px solid rgba(165, 0, 85, 0.12);
    padding: 12px 14px;
    margin: 12px 0 18px 0;
    border-radius: 6px;
    color: #4b3a44;
    font-size: 14px;
}

/* Footer */
.page-foot {
    margin-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.page-foot .copyright {
    color: #7a3a52;
    font-size: 14px;
}

.page-foot .contact {
    color: #bc0157;
    background: linear-gradient(90deg, var(--pink-1), var(--pink-2));
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

/* responsive */
@media (max-width: 980px) {
    .wrap {
        padding: 14px;
    }

    .paper {
        padding: 22px;
    }
}

@media (max-width: 640px) {
    .paper .heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .paper .heading .title {
        font-size: 22px;
    }

    .terms {
        font-size: 15px;
    }
}

/* term & condition end */

/* punjabi start */
.punjabi-about-section {
    position: relative;
    padding: 80px 0;
    background: url("images/bg.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}


.punjabi-overlay {
    background: rgba(253, 150, 188, 0.1);
    padding: 40px 0;
}

.punjabi-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

/* Left Image */
.punjabi-image {
    flex: 1 1 45%;
    position: relative;
}

.punjabi-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(165, 0, 85, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.punjabi-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(165, 0, 85, 0.35);
}

/* Right Content */
.punjabi-content {
    flex: 1 1 50%;
    animation: fadeInRight 1s ease;
}

.punjabi-content h2 {
    font-family: "Playfair Display", serif;
    color: #a50055;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.punjabi-content h2 span {
    color: #fd96bc;
}

.punjabi-content p {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    font-family: "Open Sans", sans-serif;
    text-align: justify;
}

.punjabi-content strong {
    color: #a50055;
}

/* ✨ Animation */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 📱 Responsive Design */
@media (max-width: 992px) {
    .punjabi-container {
        flex-direction: column;
        text-align: center;
    }

    .punjabi-image,
    .punjabi-content {
        flex: 1 1 100%;
    }

    .punjabi-content h2 {
        font-size: 2rem;
    }

    .punjabi-content p {
        font-size: 1rem;
    }
}

/* punjabi end */

/* punjabi why choose start */

.why-punjabi-matrimony {
    background: linear-gradient(rgba(255, 255, 255, 0.9),
            rgba(255, 240, 245, 0.9)),
        url("https://img.freepik.com/free-photo/indian-wedding-tradition-haldi-ceremony_8353-10049.jpg?t=st=1730289000~exp=1730292600~hmac=1a47da602ad7a367cfcb54d5b74a24c5a4a65f939c5616cccfb4e59803f6de74&w=996");
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 20px;
}

.why-punjabi-matrimony h2 {
    font-family: "Playfair Display", serif;
    font-size: 38px;
    color: #a50055;
    margin-bottom: 50px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

.why-punjabi-matrimony h2 span {
    color: #fd96bc;
}

.features-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature {
    background: #fff;
    border-radius: 20px;
    padding: 40px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
}

.feature i {
    font-size: 36px;
    color: #a50055;
    margin-bottom: 15px;
    transition: 0.3s;
}

.feature h4 {
    font-family: "Playfair Display", serif;
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
}

.feature p {
    color: #555;
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
}

.feature:hover {
    transform: translateY(-8px);
    background: linear-gradient(145deg, #fff0f7, #ffffff);
}

.feature:hover i {
    color: #fd96bc;
}

/*punjabi why choose end */

/* how it work start */
.how-it-works {
    background: linear-gradient(rgba(255, 255, 255, 0.95),
            rgba(255, 240, 245, 0.9)),
        url("https://img.freepik.com/free-photo/indian-wedding-decoration-with-flowers_8353-10036.jpg?w=996");
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

.how-it-works h2 {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    color: #a50055;
    margin-bottom: 60px;
    position: relative;
}

.how-it-works h2 span {
    color: #fd96bc;
}

.how-it-works h2::after {
    content: "";
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, #a50055, #fd96bc);
    display: block;
    margin: 15px auto 0;
    border-radius: 3px;
}

.steps-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.step {
    background: #fff;
    border-radius: 20px;
    padding: 40px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
    position: relative;
}

.step:hover {
    transform: translateY(-10px);
    background: linear-gradient(145deg, #fff7fa, #ffffff);
    box-shadow: 0 10px 25px rgba(165, 0, 85, 0.25);
}

.icon-circle {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #a50055, #fd96bc);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: 0.3s;
}

.step:hover .icon-circle {
    transform: rotate(10deg) scale(1.1);
    background: linear-gradient(135deg, #fd96bc, #a50055);
}

.step h4 {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.step p {
    font-family: "Open Sans", sans-serif;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step {
    animation: fadeInUp 1s ease forwards;
}

.step:nth-child(2) {
    animation-delay: 0.2s;
}

.step:nth-child(3) {
    animation-delay: 0.4s;
}

.step:nth-child(4) {
    animation-delay: 0.6s;
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 70px 15px;
    }

    .how-it-works h2 {
        font-size: 34px;
    }

    .step {
        padding: 30px 20px;
    }
}

/* how it work end */

/* happy client start */
.happy-clients {
    padding: 100px 0;
    background: linear-gradient(135deg,
            rgba(255, 246, 249, 0.95),
            rgba(253, 230, 239, 0.95));
    background-image: url("images/bg.jpg");
    background-size: cover;
    background-position: center;
    text-align: center;
}

.happy-clients .section-title h2 {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    color: #a50055;
    margin-bottom: 10px;
}

.happy-clients .section-title h2 span {
    color: #fd96bc;
}

.happy-clients .section-title p {
    color: #444;
    font-size: 16px;
    max-width: 650px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.client-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.client-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    width: 340px;
    text-align: left;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    transform: translateY(0);
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.client-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.client-content {
    padding: 25px;
}

.client-content h4 {
    font-family: "Playfair Display", serif;
    color: #a50055;
    font-size: 22px;
    margin-bottom: 10px;
}

.client-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.rating i {
    color: #fd96bc;
}

@media (max-width: 768px) {
    .client-card {
        width: 90%;
    }

    .happy-clients .section-title h2 {
        font-size: 32px;
    }
}

/* happy client end */

/* premium package start */

/* 🌸 Section Background */
.premium-packages-section {
    background: radial-gradient(circle at top left, #fff 40%, #fce4ec);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Floating Glow Animation */
.premium-packages-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(253, 150, 188, 0.25), transparent 70%);
    top: -100px;
    right: -150px;
    border-radius: 50%;
    filter: blur(80px);
    animation: floatGlow 8s infinite alternate;
    z-index: 0;
}

@keyframes floatGlow {
    0% {
        transform: translateY(0px);
        opacity: 0.8;
    }

    100% {
        transform: translateY(40px);
        opacity: 0.4;
    }
}

/* Section Heading Animation */
.premium-packages-section h2 {
    font-size: 48px;
    color: #a50055;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 6px rgba(165, 0, 85, 0.25);
    position: relative;
    z-index: 2;
    animation: fadeInDown 1.2s ease-out both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.premium-packages-section span {
    color: #fd96bc;
}

.premium-packages-section p {
    color: #555;
    font-size: 17px;
    max-width: 750px;
    margin: 0 auto 60px;
    line-height: 1.7;
    z-index: 2;
    position: relative;
    animation: fadeInUp 1.5s ease-out both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ✨ Card Layout */
.premium-packages-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* 💎 Card Styling */
.premium-card {
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    padding: 50px 30px;
    width: 320px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-top: 5px solid transparent;
    opacity: 0;
    transform: translateY(40px);
    animation: cardFadeIn 1.5s ease forwards;
}

.premium-card:nth-child(1) {
    animation-delay: 0.4s;
}

.premium-card:nth-child(2) {
    animation-delay: 0.7s;
}

.premium-card:nth-child(3) {
    animation-delay: 1s;
}

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.premium-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-top: 5px solid #a50055;
    box-shadow: 0 15px 45px rgba(165, 0, 85, 0.25);
    background: linear-gradient(180deg, #fff 85%, #fff0f5);
}

.premium-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 6px;
    background: linear-gradient(45deg, #a50055, #fd96bc);
    border-radius: 50px;
    transition: width 0.4s ease;
}

.premium-card:hover::after {
    width: 80%;
}

/* Icon Animation */
.premium-card .premium-icon {
    font-size: 50px;
    background: linear-gradient(45deg, #a50055, #fd96bc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    animation: bounce 2.5s infinite ease-in-out;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Title */
.premium-card h3 {
    font-size: 26px;
    color: #a50055;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* List */
.premium-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
    text-align: left;
}

.premium-card ul li {
    font-size: 15.5px;
    color: #444;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    transition: 0.3s ease;
}

.premium-card ul li:hover {
    color: #a50055;
    transform: translateX(5px);
}

.premium-card ul li i {
    color: #a50055;
    margin-right: 10px;
    font-size: 14px;
}

/* Button */
.premium-btn {
    background: linear-gradient(45deg, #a50055, #fd96bc);
    color: #fff;
    border: none;
    padding: 12px 38px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(165, 0, 85, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.premium-btn:hover {
    background: linear-gradient(45deg, #fd96bc, #a50055);
    transform: scale(1.07);
    box-shadow: 0 8px 25px rgba(165, 0, 85, 0.4);
}

.premium-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: left 0.4s ease;
}

.premium-btn:hover::before {
    left: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .premium-packages-section h2 {
        font-size: 34px;
    }

    .premium-card {
        width: 100%;
        max-width: 360px;
    }
}


.exclusive-benefits {
    background: linear-gradient(135deg, #fff, #fdf4f8);
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Glowing Overlay */
.exclusive-benefits::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
            rgba(255, 192, 203, 0.25),
            transparent 70%);
    top: -150px;
    right: -200px;
    z-index: 0;
}

.benefits-header {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.benefits-header h2 {
    font-size: 38px;
    color: #a50055;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.benefits-header span {
    color: #ff83b1;
}

.benefits-header p {
    font-size: 17px;
    color: #555;
    margin: 0 auto;
    width: 60%;
    line-height: 1.6;
}

.benefits-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(165, 0, 85, 0.1);
    padding: 40px 25px;
    width: 260px;
    transition: all 0.5s ease;
    transform: translateY(30px);
    opacity: 0;
    animation: cardFadeUp 1s forwards;
}

.benefit-card:nth-child(1) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.4s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.6s;
}

.benefit-card:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes cardFadeUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 30px rgba(165, 0, 85, 0.25);
}

.benefit-icon {
    font-size: 45px;
    color: #a50055;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    color: #ff83b1;
    transform: rotateY(360deg);
}

.benefit-card h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.benefit-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .benefits-header p {
        width: 90%;
    }

    .benefit-card {
        width: 90%;
    }
}

/* premium package end */

/* pop up form start */
/* 🌸 Page Background */
.page-bg {
    /* min-height: 100vh; */
    width: 100%;
    background: linear-gradient(135deg, #ffd6e8, #ffe6f2, #ffcce0);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* 💫 Animated Circles */
.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: float 8s ease-in-out infinite alternate;
}

.circle1 {
    width: 200px;
    height: 200px;
    background: #ff99c8;
    top: 10%;
    left: 15%;
}

.circle2 {
    width: 250px;
    height: 250px;
    background: #ffb3d9;
    bottom: 10%;
    right: 15%;
    animation-delay: 2s;
}

@keyframes float {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-30px);
    }
}

/* 🌸 Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 1000;
}

.overlay.show {
    opacity: 1;
    visibility: visible;
}

/* 🌸 Form Container */
.form-container {
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 45px 50px;
    border-radius: 20px;
    width: 100%;
    max-width: 420px;
    color: #fff;
    text-align: center;
    box-shadow: 0 8px 40px rgba(204, 51, 102, 0.2);
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.5s ease;
}

.form-container.show {
    transform: scale(1);
    opacity: 1;
}

/* 🌸 Close Button */
.close-btn {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 22px;
    color: #fff;
    background: rgba(204, 51, 102, 0.6);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.close-btn:hover {
    background: rgba(204, 51, 102, 0.9);
    transform: rotate(90deg);
}

/* ✨ Heading */
.form-container h2 {
    font-size: 26px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(204, 51, 102, 0.6);
    margin-bottom: 20px;
    position: relative;
}

.form-container h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #fff;
    margin: 8px auto;
    border-radius: 2px;
}

/* 🌸 Input Fields */
.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: none;
    border-radius: 12px;
    outline: none;
    font-size: 15px;
    color: #333;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 3px 8px rgba(204, 51, 102, 0.1);
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    box-shadow: 0 4px 12px rgba(204, 51, 102, 0.3);
    background: #fff;
    transform: scale(1.02);
}

.form-group textarea {
    resize: none;
    height: 100px;
}

/* 💖 Icons */
.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #cc3366;
    font-size: 18px;
    opacity: 0.9;
}

/* 📞 Phone input styling */
.phone-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(204, 51, 102, 0.1);
}

.phone-wrapper select {
    /* border: none; */
    /* outline: none; */
    padding: 11px;
    background: transparent;
    font-size: 14px;
    color: #cc3366;
    font-weight: 500;
    width: 27%;
    cursor: pointer;
    margin-left: 22px;
}

.phone-wrapper input {
    border: none;
    outline: none;
    padding: 12px;
    width: 65%;
    font-size: 15px;
    background: transparent;
}

/* 🌈 Button */
.btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 17px;
    background: linear-gradient(90deg, #cc3366, #ff66a3);
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(204, 51, 102, 0.3);
}

.btn-submit:hover {
    background: linear-gradient(90deg, #b32d59, #ff4d94);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 51, 102, 0.4);
}

@media (max-width: 480px) {
    .form-container {
        padding: 35px 25px;
    }
}



@media (min-width: 992px) {
    .overlay {
        align-items: flex-start !important;
        padding-top: 40px !important; /* Popup thoda upar aayega */
    }

    .form-container {
        margin-top: 0 !important; /* Top space set */
        transform: scale(1) !important; /* No scale issue */
    }
}


/* pop up end */


/* fixed btn start */
.fixed-contact-buttons {
    position: fixed;
    bottom: 25px;
    left: 25px;
    /* ✅ fixed on left side */
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

/* ✨ Common Button Style */
.contact-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffb6c1, #ff66a3);
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(204, 51, 102, 0.3);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

/* 💫 Floating Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* 🌈 Hover Effect */
.contact-btn:hover {
    background: linear-gradient(135deg, #cc3366, #ff4d94);
    box-shadow: 0 6px 20px rgba(204, 51, 102, 0.5);
    transform: scale(1.1);
}

/* 📞 Call Button Hover Animation */
.call-btn i {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.call-btn:hover i {
    transform: rotate(20deg);
}

/* 💬 WhatsApp Button */
.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #20c15a, #0b6e5a);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* fixed btn end */
