* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: linear-gradient(135deg, #ff6b35, #f7931e);
    --secondary: linear-gradient(135deg, #667eea, #764ba2);
    --accent: linear-gradient(135deg, #ffecd2, #fcb69f);
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-light);
    /*padding:0;*/
}

.matrimonial-content-wrapper-zx9k {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.hero-title-section-qw7p {
    text-align: center;
    margin-bottom: 4rem;
}

.main-display-heading-r4t2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.tagline-description-m8n1 {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid-layout-b6v3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.love-story-showcase-j5w8 {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--shadow);
}

.love-story-showcase-j5w8:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow);
}

.love-story-showcase-j5w8::before {
    content: '❝';
    font-size: 4rem;
    color: rgba(255, 107, 53, 0.2);
    position: absolute;
    top: -10px;
    left: 20px;
}

.couple-avatar-display-x3l9 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: block;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 5px 15px var(--shadow);
}

.narrative-excerpt-snippet-h4q6 {
    height: 120px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.story-expansion-trigger-d8f2 {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 1rem 0;
}

.story-expansion-trigger-d8f2:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Modal Styles */
.fullscreen-overlay-popup-k7y5 {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.dialog-content-box-n9v4 {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: popupSlideInAnimation 0.4s ease;
}

@keyframes popupSlideInAnimation {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.dialog-top-banner-s2u7 {
   background: 
    linear-gradient(135deg, rgba(255, 107, 53, 0.6), rgba(247, 147, 30, 0.6)),
    url("../img/success-story-image.jpg"); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: white;
  padding: 2rem;
  border-radius: 20px 20px 0 0;
  text-align: center;
  position: relative;
}

.dialog-main-content-p3e8 {
    padding: 2rem;
}

.dismiss-dialog-btn-a1c6 {
    position: absolute;
    right: 20px;
    top: 20px;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.dismiss-dialog-btn-a1c6:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.featured-couple-portrait-f8g1 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: block;
    object-fit: cover;
    border: 6px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.complete-love-narrative-t6w9 {
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.complete-love-narrative-t6w9 p {
    margin-bottom: 1.5rem;
}

.relationship-milestones-container-y5h3 {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.milestone-event-entry-l9z4 {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.milestone-event-entry-l9z4:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.event-timestamp-badge-c7x2 {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 120px;
    text-align: center;
    margin-right: 1rem;
}

.milestone-description-text-e4q8 {
    flex: 1;
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonials-grid-layout-b6v3 {
        grid-template-columns: 1fr;
    }

    .main-display-heading-r4t2 {
        font-size: 2rem;
    }

    .dialog-content-box-n9v4 {
        width: 95%;
        margin: 2% auto;
        max-height: 90vh;
    }

    .milestone-event-entry-l9z4 {
        flex-direction: column;
        text-align: center;
    }

    .event-timestamp-badge-c7x2 {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrolling Images Gallery Styles */
.scrolling-gallery-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 3rem 0;
    padding: 1rem 0;
}

.scrolling-gallery-track {
    display: flex;
    width: max-content;
    animation: scrollGallery 30s linear infinite;
}

.scrolling-gallery-track:hover {
    animation-play-state: paused;
}

.scrolling-gallery-item {
    width: 250px;
    height: 180px;
    margin: 0 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.scrolling-gallery-item:hover {
    transform: scale(1.05);
}

.scrolling-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes scrollGallery {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Gradient overlays to fade edges */
.scrolling-gallery-container::before,
.scrolling-gallery-container::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 100px;
    z-index: 2;
}

.scrolling-gallery-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light), transparent);
}

.scrolling-gallery-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light), transparent);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .scrolling-gallery-item {
        width: 200px;
        height: 150px;
    }

    .scrolling-gallery-container::before,
    .scrolling-gallery-container::after {
        width: 50px;
    }
}