/* --- 1. General Setup & Variables --- */
:root {
    --dusty-rose: #E3C4C1;
    --cream: #F5F1ED;
    --charcoal: #3D3B3C;
    --rose-gold: #B76E79;
    --merlot: #732C2C;
    --font-logo: 'Playfair Display', serif;
    --font-main: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-image: url('https://images.unsplash.com/photo-1502318217858-26cdaa52333e?auto=format&fit=crop&q=80&w=2070');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    color: var(--charcoal);
}

/* --- 2. Navbar Styling --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: fixed;
    top: 20px;
    left: 5%;
    width: 90%;
    z-index: 1000;
    
    /* Glassmorphism Effect */
    background: linear-gradient(135deg, #ef3344, #fb2f8f);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-radius: 50px; /* Pill shape */
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.logo {
    font-family: var(--font-logo);
    font-size: 1.8rem;
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 700;
}

/* --- 3. Navigation Links (Desktop) --- */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: black;
}




/* Underline Animation */
.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* --- 4. User Actions (Right Side) --- */
.user-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cta-button {
    background: linear-gradient(135deg, #ef3344, #fb2f8f);
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: pulseGlow 3s infinite ease-in-out;
}




.cta-button1 {
    background: linear-gradient(135deg, #000000 , #000000);
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: pulseGlow 3s infinite ease-in-out;
}





.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(115, 44, 44, 0.4);
}

@keyframes pulseGlow {
    0% { box-shadow: 0 4px 15px rgba(115, 44, 44, 0.2); }
    50% { box-shadow: 0 4px 25px rgba(115, 44, 44, 0.4); }
    100% { box-shadow: 0 4px 15px rgba(115, 44, 44, 0.2); }
}

.icon-link {
    font-size: 1.3rem;
    color: var(--charcoal);
    position: relative;
    transition: color 0.3s ease;
}
.icon-link:hover {
    color: var(--rose-gold);
}

.notification-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background-color: var(--rose-gold);
    border-radius: 50%;
    border: 1px solid var(--cream);
    animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--rose-gold);
    object-fit: cover;
}

/* --- 5. Hamburger Menu (Mobile) --- */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--charcoal);
    transition: all 0.3s ease-in-out;
}


/* --- 6. Responsive Design --- */
@media (max-width: 992px) {
    .nav-links, .user-actions {
        display: none;
    }
    
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(to bottom, var(--dusty-rose), var(--cream));
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.4s ease-out;
    }
    
    .nav-links.active {
        display: flex;
        left: 0;
    }

    .nav-link {
        font-size: 2rem;
    }
}


/* --- 7. Main Content (For Demo) --- */
.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 0 2rem;
}

.content h1 {
    font-family: var(--font-logo);
    font-size: 4rem;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}
.content p {
    font-size: 1.2rem;
    color: #fff;
    margin-top: 1rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}








body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, #ef3344, #fb2f8f);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/hero.png");
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 1;
    animation: zoom-in-out 30s infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
    color: #f1324e;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.cta-button {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
}

.cta-button.primary {
    background-color: #ff4c4c;
    color: #fff;
    box-shadow: 0 8px 15px rgba(255, 76, 76, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(255, 76, 76, 0.6);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cta-button.secondary:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.user-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #f1324e;
}

.stat-item p {
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
@keyframes zoom-in-out {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .cta-container {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        width: 80%;
        margin: 0 auto;
    }

    .user-stats {
        flex-direction: column;
        gap: 20px;
    }
}










.about-section {
    padding: 80px 20px;
    background-color: #f7f9fc;
    color: #2c3e50;
    font-family: 'Poppins', sans-serif;
}

.about-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

.about-content {
    flex: 1;
    max-width: 600px;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.96rem;
    color: #ff6b6b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
    text-align: justify;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #ff6b6b;
    color: #fff;
    box-shadow: 0 8px 15px rgba(255, 107, 107, 0.4);
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(255, 107, 107, 0.6);
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-image {
        order: -1; /* Puts the image at the top on mobile */
        margin-bottom: 40px;
    }

    .about-image img {
        border-radius: 10px;
    }
}












.couple-journey-section {
    padding: 80px 20px;
    background-color: #f7f9fc;
    color: #2c3e50;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.journey-container {
    max-width: 1200px;
    margin: 0 auto;
}

.journey-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.journey-intro {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 60px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.journey-image-container {
    margin-bottom: 60px;
}

.journey-image-container img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}



.journey-steps-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); /* Adjusted min-width for cards */
    gap: 30px; /* Reduced gap slightly for a tighter card feel */
    margin-bottom: 60px;
    padding: 0 20px; /* Add some padding to the container for smaller screens */
}

.journey-step {
    background-color: #fff; /* White background for the card */
    border-radius: 15px; /* Rounded corners for a modern look */
    padding: 30px; /* More padding inside the card */
    text-align: left;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth hover effects */
    display: flex; /* Use flexbox for content alignment */
    flex-direction: column;
    justify-content: flex-start; /* Align content to the top */
    align-items: flex-start;
}

.journey-step:hover {
    transform: translateY(-10px); /* Lift the card on hover */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}

.journey-step h3 {
    font-size: 1.6rem; /* Slightly larger heading */
    font-weight: 700; /* Bolder heading */
    color: #ff4c4c; /* Primary brand color for headings */
    margin-bottom: 15px; /* Space below heading */
    border-bottom: 3px solid #f1324e; /* A subtle, colorful underline */
    padding-bottom: 10px; /* Space between text and underline */
    line-height: 1.3;
}

.journey-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0; /* Remove default paragraph margin */
}

/* Responsive adjustments for the cards */
@media (max-width: 768px) {
    .journey-steps-content {
        grid-template-columns: 1fr; /* Stack cards vertically on smaller screens */
        gap: 25px;
    }

    .journey-step {
        padding: 25px;
    }

    .journey-step h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .journey-step {
        padding: 20px;
    }

    .journey-step h3 {
        font-size: 1.3rem;
    }

    .journey-step p {
        font-size: 0.95rem;
    }
}














.cta-button {
    display: inline-block;
    padding: 15px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #ff6b6b;
    color: #fff;
    box-shadow: 0 8px 15px rgba(255, 107, 107, 0.4);
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(255, 107, 107, 0.6);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .journey-container h2 {
        font-size: 2.5rem;
    }
}



















.services-alt-section {
    padding: 80px 20px;
    background-color: #f7f9fc; /* Lighter background for contrast */
    color: #2c3e50;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.services-alt-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-alt-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.services-alt-intro {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 60px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Main Card Layout --- */
.service-card-alt {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px; /* Space between cards */
}

/* This class reverses the order for a zig-zag effect */
.service-card-alt.reverse {
    flex-direction: row-reverse;
}

.service-image-container {
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

/* Hover effect for the entire card */
.service-card-alt:hover .service-image-container {
    transform: scale(1.03);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.service-content-alt {
    flex: 1;
    max-width: 500px;
    padding: 20px;
    text-align: left;
}

.service-content-alt h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #ff4c4c;
    margin-bottom: 10px;
    line-height: 1.2;
}

.service-content-alt p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .service-card-alt {
        flex-direction: column;
        text-align: center;
        margin-bottom: 50px;
    }

    .service-card-alt.reverse {
        flex-direction: column;
    }

    .service-image-container {
        margin-bottom: 30px;
        min-width: unset;
        width: 100%;
    }

    .service-content-alt {
        text-align: center;
        padding: 0;
    }

    .service-content-alt h3 {
        font-size: 2rem;
    }
}




















.testimonials-elegant-section {
    padding: 80px 20px;
    background-color: #f7f9fc;
    color: #2c3e50;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.elegant-container {
    max-width: 1200px;
    margin: 0 auto;
}

.elegant-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 60px;
    line-height: 1.2;
}

.elegant-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.main-testimonial {
    background-color: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.main-testimonial .fa-quote-left {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    color: #f1324e;
    opacity: 0.3;
}

.main-quote {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-style: italic;
    line-height: 1.4;
    color: #333;
    margin-top: 40px;
    margin-bottom: 20px;
}

.main-author {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff4c4c;
    display: block;
    text-align: right;
    border-top: 2px solid #f1324e;
    padding-top: 10px;
    margin-top: 30px;
}

.testimonial-feed {
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 500px;
    overflow-y: auto; /* Adds a scrollbar for more testimonials */
    text-align: left;
}

/* Custom scrollbar for webkit browsers */
.testimonial-feed::-webkit-scrollbar {
    width: 8px;
}

.testimonial-feed::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.testimonial-feed::-webkit-scrollbar-thumb {
    background: #ff6b6b;
    border-radius: 10px;
}

.feed-card {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.feed-card:last-child {
    border-bottom: none;
}

.feed-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin-bottom: 10px;
}

.feed-author {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff4c4c;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .elegant-grid {
        grid-template-columns: 1fr;
    }

    .main-testimonial {
        margin-bottom: 30px;
    }

    .main-quote {
        font-size: 1.8rem;
    }

    .testimonial-feed {
        height: auto;
        overflow-y: hidden;
    }
}













.blog-section {
    padding: 80px 20px;
    background-color: #f7f9fc;
    color: #2c3e50;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-intro {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 60px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    justify-content: center;
}

.blog-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 250px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-content {
    padding: 30px;
    text-align: left;
}

.blog-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: #ff4c4c;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease-in-out;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog-container h2 {
        font-size: 2.5rem;
    }

    .blog-card-grid {
        grid-template-columns: 1fr;
    }
}











.why-us-section {
    padding: 80px 20px;
    background-color: #f0f4f8;
    color: #2c3e50;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.why-us-intro {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 60px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    justify-content: center;
}

.why-us-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.why-us-card .icon {
    font-size: 3rem;
    color: #f1324e;
    margin-bottom: 20px;
    transition: color 0.3s ease-in-out;
}

.why-us-card:hover .icon {
    color: #ff6b6b;
}

.why-us-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 15px;
}

.why-us-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .why-us-heading {
        font-size: 2.5rem;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }
}





















.faqs-section {
    padding: 80px 20px;
    background-color: #f7f9fc;
    color: #2c3e50;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.faqs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faqs-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.faqs-intro {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 60px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faqs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    justify-content: center;
    text-align: left;
}

.faq-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 15px;
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.faqs-cta {
    margin-top: 60px;
    font-size: 1.1rem;
}

.faqs-contact-link {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease-in-out;
}

.faqs-contact-link:hover {
    border-bottom-color: #ff6b6b;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faqs-heading {
        font-size: 2.5rem;
    }

    .faqs-grid {
        grid-template-columns: 1fr;
    }
}









.services-section {
    padding: 80px 20px;
    background-color: #ffe8e8;
    color: #2c3e50;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ff4c4c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-intro {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 60px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(255, 218, 121, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover::after {
    opacity: 1;
}

/* Image styling */
.service-card .card-image {
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.service-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-heading {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}









.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h2,
.footer-section h3 {
    color: #f1324e;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #ff6b6b;
    padding-bottom: 10px;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-section .social-links a {
    color: #ecf0f1;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s;
}

.footer-section .social-links a:hover {
    color: #ff6b6b;
}

.footer-section.links ul {
    list-style: none;
    padding: 0;
}

.footer-section.links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 2.2;
    transition: color 0.3s;
}

.footer-section.links a:hover {
    color: #f1324e;
}

.footer-section.contact p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section.contact i {
    color: #ff6b6b;
}


.newsletter-form button {
    padding: 12px;
    background-color: #ff6b6b;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #ff4c4c;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(236, 240, 241, 0.2);
}

.footer-bottom p {
    font-size: 1rem;
    color: #bdc3c7;
}

.footer-bottom a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #ff6b6b;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 30px;
    }

    .footer-section h2,
    .footer-section h3 {
        border-bottom: none;
        padding-bottom: 0;
    }
}










.breadcrumb-section {
    position: relative;
    padding: 160px 20px; /* increased from 100px */
    text-align: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    min-height: 300px; /* ensures taller section */
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.55); /* dark overlay */
    z-index: 1;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ffeded;
}

.breadcrumb-nav {
    font-size: 1rem;
    font-weight: 400;
}

.breadcrumb-nav a {
    color: #ffd6d6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #ff4c4c;
}

.breadcrumb-nav span {
    margin: 0 8px;
    color: #fff;
}

.breadcrumb-nav .current {
    color: #ffe8e8;
    font-weight: 600;
}









/* Privacy Policy Section */
.privacy-policy {
    background: #fff5f5; /* soft romantic pink background */
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.8;
}

.privacy-policy .container-fluid {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px 50px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.privacy-policy p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 20px;
}

.privacy-policy h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #e63946; /* romantic red highlight */
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid #ff4c4c;
    padding-left: 12px;
}

.privacy-policy ul {
    list-style: none;
    margin: 15px 0 25px 0;
    padding-left: 0;
}

.privacy-policy ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 0.98rem;
    color: #555;
}

.privacy-policy ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff4c4c;
    font-weight: bold;
}

.privacy-policy strong {
    color: #222;
    font-weight: 600;
}

.privacy-policy a {
    color: #e63946;
    text-decoration: none;
    font-weight: 500;
}

.privacy-policy a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-policy .container-fluid {
        padding: 25px 20px;
    }

    .privacy-policy h4 {
        font-size: 1.2rem;
    }
}








/* Terms & Conditions Section */
.terms-conditions {
    background: #fff5f7; /* soft romantic pink shade */
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.8;
}

.terms-conditions .container-fluid {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px 50px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.terms-conditions p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 20px;
}

.terms-conditions h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #e63946; /* romantic red */
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid #ff4c4c;
    padding-left: 12px;
}

.terms-conditions ul {
    list-style: none;
    margin: 15px 0 25px 0;
    padding-left: 0;
}

.terms-conditions ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 0.98rem;
    color: #555;
}

.terms-conditions ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff4c4c;
    font-weight: bold;
}

.terms-conditions strong {
    color: #222;
    font-weight: 600;
}

.terms-conditions a {
    color: #e63946;
    text-decoration: none;
    font-weight: 500;
}

.terms-conditions a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-conditions .container-fluid {
        padding: 25px 20px;
    }

    .terms-conditions h4 {
        font-size: 1.2rem;
    }
}










/* CSS starts here */

        /* Unique Contact Section Design */
        .contact-section {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            
            padding: 40px 20px;
            color: #fff;
        }

        .contact-container {
            display: flex;
            flex-direction: row;
            background: linear-gradient(135deg, #ef3344, #fb2f8f);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            padding: 40px;
            max-width: 1000px;
            width: 100%;
            overflow: hidden;
        }

        /* Left side: Info & Decoration */
        .contact-info {
            flex: 1;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-info h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .contact-info p {
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            line-height: 1.6;
            color: #e0e0e0;
        }

        /* Right side: Form */
        .contact-form {
            flex: 1.2;
            padding: 20px;
        }

        .form-group {
            position: relative;
            margin-bottom: 30px;
        }

        .form-group label {
            position: absolute;
            top: 15px;
            left: 15px;
            color: #ffffff;
            font-size: 1rem;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background: rgb(0, 0, 0);
            border: none;
            border-bottom: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
            font-family: 'Poppins', sans-serif;
            outline: none;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #ff9a8b;
            background: rgba(255, 255, 255, 0.2);
        }
        
        /* Floating Label Effect */
        .form-group input:focus + label,
        .form-group input:not(:placeholder-shown) + label,
        .form-group textarea:focus + label,
        .form-group textarea:not(:placeholder-shown) + label {
            top: -10px;
            left: 10px;
            font-size: 0.8rem;
            color: #ff9a8b;
            background-color: #1f1c2c;
            padding: 2px 5px;
            border-radius: 5px;
        }

        .form-group textarea {
            resize: vertical;
            height: 150px;
        }

        .submit-btn {
            display: block;
            width: 100%;
            padding: 15px;
            background: linear-gradient(90deg, #000000, #000000);
            border: none;
            border-radius: 50px;
            color: #fff;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 1px;
            text-transform: uppercase;
            box-shadow: 0 5px 15px rgba(255, 154, 139, 0.4);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 154, 139, 0.6);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-container {
                flex-direction: column;
                padding: 20px;
            }
            .contact-info, .contact-form {
                padding: 10px;
            }
        }

        /* CSS ends here */













        /* CSS starts here */

        /* Newsletter Section Styling */
        .newsletter-section {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 80px 20px;
            background-color: #f7f7f7;
            font-family: 'Poppins', sans-serif;
        }

        .newsletter-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            max-width: 700px;
            background-color: #fff;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .newsletter-container h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
        }

        .newsletter-container p {
            font-size: 1rem;
            color: #666;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .newsletter-form {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-input {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            color: #333;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: #ff6b6b;
            box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
        }
        
        /* Checkbox Styling */
        .form-checkbox {
            display: flex;
            align-items: flex-start;
            margin-top: 10px;
        }

        .form-checkbox input[type="checkbox"] {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            width: 22px;
            height: 22px;
            border: 2px solid #ccc;
            border-radius: 6px;
            cursor: pointer;
            position: relative;
            flex-shrink: 0;
            margin-right: 10px;
            transition: all 0.2s ease;
        }

        .form-checkbox input[type="checkbox"]:checked {
            background-color: #ff6b6b;
            border-color: #ff6b6b;
        }

        .form-checkbox input[type="checkbox"]:checked::after {
            content: '\2713'; /* Unicode checkmark */
            font-size: 16px;
            color: #fff;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .form-checkbox label {
            font-size: 0.9rem;
            color: #ffffff;
            line-height: 1.4;
            cursor: pointer;
            text-align: left;
        }

        /* Submit Button */
        .submit-btn {
            width: 100%;
            padding: 15px;
            background: #ff6b6b;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
            margin-top: 10px;
        }

        .submit-btn:hover {
            background-color: #ff4c4c;
            transform: translateY(-2px);
        }

        /* Responsive Design */
        @media (max-width: 480px) {
            .newsletter-container {
                padding: 30px 20px;
            }
            .newsletter-container h2 {
                font-size: 1.8rem;
            }
            .form-input {
                padding: 12px;
            }
        }

        /* CSS ends here */