* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 0.44rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
      gap: 1.2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #e91e63;
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-login,
.btn-signup {
    text-decoration: none;
    padding: 0.6rem 1.8rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-login {
    background: transparent;
    color: #333;
    border: 2px solid #e0e0e0;
}

.btn-login:hover {
    border-color: #e91e63;
    color: #e91e63;
}

.btn-signup {
    background: #e91e63;
    color: #fff;
    border: 2px solid #e91e63;
}

.btn-signup:hover {
    background: #d81b60;
    border-color: #d81b60;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.language-selector {
    position: relative;
}

.language-selector select {
    padding: 0.6rem 2.5rem 0.6rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    background: #fff;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    appearance: none;
    transition: border-color 0.3s;
}

.language-selector select:hover {
    border-color: #e91e63;
}

.language-selector::after {
    content: '▼';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666;
    font-size: 0.7rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(255 118 0 / 23%) 0%, rgb(2 0 5 / 70%) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

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

.hero-slide h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-slide p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.btn-primary {
    background: #fff;
    color: #e91e63;
    border: none;
    padding: 1.2rem 3.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: #e91e63;
    color: #fff;
}

.hero-stats {
    margin-top: 3rem;
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats span {
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    background: rgba(255,255,255,0.2);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

/* Slider Controls */
.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.hero-slider-btn:hover {
    background: rgba(255,255,255,0.5);
    transform: translateY(-50%) scale(1.1);
}

.prev-slide {
    left: 2rem;
}

.next-slide {
    right: 2rem;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot:hover {
    background: rgba(255,255,255,0.8);
    transform: scale(1.2);
}

.dot.active {
    background: #fff;
    width: 40px;
    border-radius: 6px;
}

.hero-stats span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Categories Carousel Section */
.categories-section {
    padding: 5rem 0;
    background: #f9f9f9;
}

.categories-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-tab {
    background: #fff;
    border: 2px solid #e0e0e0;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.category-tab:hover {
    border-color: #e91e63;
    color: #e91e63;
}

.category-tab.active {
    background: #e91e63;
    border-color: #e91e63;
    color: #fff;
}

.category-content {
    display: none;
}

.category-content.active {
    display: block;
}

.cards-carousel {
    position: relative;
    padding: 0 60px;
}

.cards-wrapper {
    overflow: hidden;
    border-radius: 10px;
}

.cards-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.invitation-card {
    min-width: calc(25% - 1.125rem);
    aspect-ratio: 3/4;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

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

.invitation-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.invitation-card:hover .card-overlay {
    opacity: 1;
}

.btn-preview {
    background: #fff;
    color: #e91e63;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-preview:hover {
    background: #e91e63;
    color: #fff;
    transform: scale(1.05);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e0e0e0;
    color: #333;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-nav:hover {
    background: #e91e63;
    border-color: #e91e63;
    color: #fff;
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-nav:disabled:hover {
    background: #fff;
    border-color: #e0e0e0;
    color: #333;
}

/* Experience Section */
.experience {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.experience::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(103, 58, 183, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.experience h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.experience h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e91e63, #673ab7);
    margin: 1rem auto 3rem;
    border-radius: 2px;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.experience-card {
    background: #fff;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #e91e63, #673ab7);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.experience-card:hover::before {
    transform: scaleX(1);
}

.experience-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.2);
}

.experience-card .icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    position: relative;
}

.experience-card .icon svg {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    transition: transform 0.3s;
}

.experience-card:hover .icon svg {
    transform: scale(1.1) rotateY(360deg);
    transition: transform 0.6s;
}

.experience-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.3;
}

.experience-card p {
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 1rem;
}

/* About Us Section */
.about-us {
    padding: 6rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-label {
    display: inline-block;
    background: linear-gradient(135deg, #e91e63, #673ab7);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.about-intro {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.about-features {
    margin-bottom: 3rem;
}

.about-feature {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e91e63, #673ab7);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-text p {
    color: #5a6c7d;
    line-height: 1.6;
    font-size: 0.95rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #e91e63;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #5a6c7d;
    font-size: 0.9rem;
    font-weight: 600;
}

.btn-about {
    background: linear-gradient(135deg, #e91e63, #673ab7);
    color: #fff;
    border: none;
    padding: 1rem 3rem;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-about:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.about-image {
    position: relative;
    height: 600px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.video-overlay.show {
    display: flex;
}

.video-thumbnail {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.play-button {
    position: relative;
    z-index: 2;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.play-button:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #e91e63, #673ab7);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
}

.floating-card {
    position: absolute;
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card .card-icon {
    font-size: 2rem;
}

.floating-card p {
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    white-space: nowrap;
}

.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    right: -15%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: -10%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* VIP Shaadi Banner */
.vip-banner
 {
    
    padding: 6rem 0;
    /* margin: 3rem 0; */
}

.vip-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.vip-logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.vip-text h3 {
    font-size: 1.8rem;
    color: #5E35B1;
    font-weight: 700;
    margin-bottom: 0.3rem;
    letter-spacing: 2px;
}

.vip-text p {
    font-size: 0.75rem;
    color: #7E57C2;
    font-weight: 600;
    letter-spacing: 1px;
}

.vip-description {
    flex: 1;
    text-align: left;
}

.vip-description h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.btn-vip {
    background: #5E35B1;
    color: #fff;
    border: none;
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.success-stories-dflex {
    display:flex;
    gap:3em;

}

.wdth60 {
    width: 280px;
}
.btn-vip:hover {
    background: #4527A0;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(94, 53, 177, 0.4);
}

/* Testimonial Section */
.testimonial {
    padding: 0;
    /* background: linear-gradient(to bottom, rgba(255, 240, 230, 0.3) 0%, rgba(255, 235, 220, 0.5) 100%); */
    position: relative;
    overflow: hidden;
    background-image: url(../../assets/img/ceobg.jpg);
    background-size: cover;
    background-position: right;
}
.testimonial::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    filter: blur(60px);
}

.testimonial::after {
    content: '';
    position: absolute;
    top: 30%;
    right: 15%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    filter: blur(80px);
}

.testimonial-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 500px;
    position: relative;
    z-index: 1;
}
.testimonial-content {
    padding: 9rem 4rem 4rem 8%;
    text-align: left;
}

.quote-icon {
    font-size: 6rem;
    color: #ddd;
    opacity: 0.5;
    line-height: 0.8;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.testimonial h2 {
    font-size: 2rem;
    color: #333;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 2rem;
}

.author-name {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    margin-top: 1.5rem;
}

.testimonial-image {
    height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.testimonial-image img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

/* Success Stories */
.success-stories {
    padding: 5rem 0;
    background: #fff;
}

.stories-header {
    margin-bottom: 3rem;
}

.stories-intro {
    max-width: 500px;
}

.stories-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 700;
    line-height: 1.2;
}

.stories-intro p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-know-more {
    background: #00BCD4;
    color: #fff;
    border: none;
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-know-more:hover {
    background: #00ACC1;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 188, 212, 0.3);
}

.stories-slider {
    position: relative;
    overflow: hidden;
    padding-bottom: 3rem;
}

.stories-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.story-card {
    min-width: calc(50% - 1rem);
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.story-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 2rem;
}

.story-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.story-content p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

.slider-progress {
    width: 100%;
    height: 4px;
    background: #f0f0f0;
    border-radius: 2px;
    margin-top: 2rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #FF6B6B 0%, #FF8E8E 100%);
    width: 33.33%;
    transition: width 0.3s ease;
}

.slider-controls {
    position: absolute;
    bottom: 4rem;
    right: 0;
    display: flex;
    gap: 1rem;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: #fff;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    border-color: #e91e63;
    color: #e91e63;
    transform: scale(1.05);
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-btn:disabled:hover {
    border-color: #ddd;
    color: #333;
    transform: scale(1);
}

/* Explore Profiles Section */
.explore-profiles {
    padding: 4rem 0;
    background: #f5f5f5;
}

.explore-profiles h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 600;
}

.explore-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    font-weight: 500;
}

.tab-btn:hover {
    color: #333;
}

.tab-btn.active {
    color: #333;
    border-bottom-color: #333;
    font-weight: 600;
}

.tab-content {
    display: none;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
}

.tab-content.active {
    display: block;
}

.profile-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    line-height: 2;
}

.profile-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.profile-links a:hover {
    color: #e91e63;
    text-decoration: underline;
}

.profile-links span {
    color: #ccc;
}

/* Invitation Cards by Occasion Section */
.dating-section {
    padding: 4rem 0;
    background: #fff;
}

.dating-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 600;
}

.dating-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
    flex-wrap: wrap;
}

.dating-tab-btn {
    background: transparent;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    font-weight: 500;
}

.dating-tab-btn:hover {
    color: #333;
}

.dating-tab-btn.active {
    color: #333;
    border-bottom-color: #333;
    font-weight: 600;
}

.dating-tab-content {
    display: none;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 10px;
}

.dating-tab-content.active {
    display: block;
}

/* Horoscope Section */
.horoscope-section {
    padding: 4rem 0;
    background: #f5f5f5;
}

.horoscope-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 600;
}

.horoscope-section .profile-links {
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: #fff;
}

.faq h2 {
    text-align: left;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 700;
}

.faq-list {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    cursor: pointer;
    background: #fff;
    transition: background 0.3s;
}

.faq-number-title {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.faq-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    min-width: 50px;
}

.faq-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
}

.faq-question .toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #333;
    background: transparent;
    color: #333;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-question .toggle:hover {
    background: #f5f5f5;
}

.faq-item.active .faq-question {
    background: #f9f9f9;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #fff;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2.5rem 2rem 6rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: #fff;
    color: #333;
    padding: 3rem 0 0;
    border-top: 1px solid #e0e0e0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: #e91e63;
}

.footer-social .social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-icons a:hover {
    background: #e91e63;
    color: #fff;
    transform: translateY(-3px);
}

.app-title {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.app-buttons a {
    display: inline-block;
}

.app-buttons img {
    height: 40px;
    width: auto;
}

.app-note {
    font-size: 0.7rem;
    color: #999;
    line-height: 1.5;
    margin-top: 1rem;
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 0.85rem;
    color: #666;
    margin: 0.5rem 0;
    line-height: 1.6;
}

.contact-info strong {
    color: #333;
    font-weight: 600;
}

.footer-bottom {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #b0b0b0;
    font-size: 0.95rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.copyright-icon {
    font-size: 1.1rem;
    color: #e91e63;
}

.developer-credit {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.developer-credit a {
    color: #e91e63;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.developer-credit a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e91e63, #673ab7);
    transition: width 0.3s;
}

.developer-credit a:hover {
    color: #fff;
}

.developer-credit a:hover::after {
    width: 100%;
}

.heart {
    color: #e91e63;
    animation: heartbeat 1.5s infinite;
    display: inline-block;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(1.1);
    }
    20%, 40% {
        transform: scale(1);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        width: 85%;
        max-width: 350px;
        height: 100vh;
        text-align: left;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        
        padding: 5rem 0 16rem;
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem 2rem;
        background: linear-gradient(135deg, #e91e63, #673ab7);
        margin-bottom: 0;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .mobile-menu-header h3 {
        color: #fff;
        font-size: 1.3rem;
        margin: 0;
        font-weight: 700;
    }

    .close-menu {
        background: rgba(255, 255, 255, 0.2);
        border: none;
        color: #fff;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 2rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
        line-height: 1;
    }

    .close-menu:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg);
    }

    .nav-menu li {
        width: 100%;
        padding: 0;
        margin: 0;
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }

    .nav-menu li:first-child {
        border-top: 1px solid rgba(0,0,0,0.08);
    }

    .nav-menu a {
        display: block;
        padding: 1.3rem 2rem;
        font-size: 1.05rem;
        font-weight: 600;
        color: #2c3e50;
        position: relative;
        transition: all 0.3s;
        text-decoration: none;
    }

    .nav-menu a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: linear-gradient(135deg, #e91e63, #673ab7);
        transition: height 0.3s;
    }

    .nav-menu a:hover,
    .nav-menu a:active {
        background: rgba(233, 30, 99, 0.05);
        color: #e91e63;
        padding-left: 2.5rem;
    }

    .nav-menu a:hover::before {
        height: 100%;
    }

    .nav-actions {
        position: fixed;
        right: -100%;
        bottom: 0;
        flex-direction: column;
        background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
        width: 85%;
        max-width: 350px;
        text-align: center;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        padding: 1.5rem 2rem 2rem;
        box-shadow: -5px -5px 25px rgba(0,0,0,0.1);
        z-index: 1001;
        gap: 1rem;
        border-top: 3px solid #e91e63;
    }

    .nav-actions.active {
        right: 0;
    }

    .btn-login,
    .btn-signup {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        border-radius: 30px;
    }

    .language-selector {
        width: 100%;
    }

    .language-selector select {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .hamburger span {
        background: #2c3e50;
    }

    .hamburger.active span {
        background: #e91e63;
    }

    .logo {
        z-index: 1001;
    }

    /* Mobile Menu Overlay */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        animation: fadeIn 0.3s;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    .hero-slider {
        min-height: 500px;
    }

    .hero-slide h1 {
        font-size: 2.5rem;
    }

    .hero-slide p {
        font-size: 1.2rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stats span {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }

    .hero-slider-btn {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .prev-slide {
        left: 1rem;
    }

    .next-slide {
        right: 1rem;
    }

    .slider-dots {
        bottom: 2rem;
    }

    .experience {
        padding: 4rem 0;
    }

    .experience h2 {
        font-size: 2rem;
    }

    .experience-grid {
        gap: 2rem;
    }

    .experience-card {
        padding: 2.5rem 2rem;
    }

    .experience-card h3 {
        font-size: 1.3rem;
    }

    .success-stories h2,
    .faq h2 {
        font-size: 1.8rem;
    }

    .faq-number-title {
        gap: 1rem;
    }

    .faq-number {
        font-size: 1.2rem;
        min-width: 40px;
    }

    .faq-title {
        font-size: 1rem;
    }

    .faq-question {
        padding: 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem 4.5rem;
    }

    .faq-question .toggle {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .explore-profiles h2,
    .dating-section h2,
    .horoscope-section h2 {
        font-size: 1.5rem;
    }

    .tab-btn,
    .dating-tab-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .profile-links {
        font-size: 0.85rem;
    }

    .tab-content,
    .dating-tab-content,
    .horoscope-section .profile-links {
        padding: 1.5rem;
    }

    .vip-content {
        flex-direction: column;
        text-align: center;
    }

    .vip-logo {
        flex-direction: column;
    }

    .vip-description {
        text-align: center;
    }

    .vip-description h2 {
        font-size: 1.3rem;
    }

    .testimonial-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .testimonial-content {
        padding: 3rem 2rem;
        text-align: center;
    }

    .testimonial h2 {
        font-size: 1.5rem;
    }

    .testimonial-image {
        height: 400px;
    }

    .quote-icon {
        font-size: 4rem;
    }

    .categories-section h2 {
        font-size: 1.8rem;
    }

    .category-tabs {
        gap: 0.5rem;
    }

    .category-tab {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .cards-carousel {
        padding: 0 50px;
    }

    .invitation-card {
        min-width: calc(50% - 0.75rem);
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .stories-intro h2 {
        font-size: 2rem;
    }

    .story-card {
        min-width: 100%;
    }

    .slider-controls {
        bottom: 5rem;
        right: 50%;
        transform: translateX(50%);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 2rem;
    }

    .footer-social .social-icons {
        justify-content: flex-start;
    }

    .app-buttons {
        align-items: flex-start;
    }

    .app-buttons {
    display: flex;
    flex-direction: row;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.developer-credit {

    display: contents!important;

}


    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .copyright,
    .developer-credit {
        justify-content: center;
    }
}

/* Tablet Responsive (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .nav-menu a {
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .story-card {
        min-width: calc(50% - 1rem);
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {


        .footer-grid {
        text-align: left;
        gap: 0rem;
        grid-template-columns: repeat(1, 1fr);
    }
    

    .success-stories-dflex {
    display: block;
    gap: 3em;

}


    .testimonial {

    background-position: left!important;
}


    .nav-menu {

    gap: 0.7rem;

}



        .nav-menu a {

        padding:0.4rem 2rem
   
    }



    .container {
        padding: 0 15px;
    }

    .hero {
        height: 450px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .btn-primary,
    .btn-vip,
    .btn-know-more {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }

    .btn-login,
    .btn-signup {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }

    .language-selector select {
        padding: 0.5rem 2rem 0.5rem 0.8rem;
        font-size: 0.85rem;
    }

    .experience {
        padding: 3rem 0;
    }

    .experience h2 {
        font-size: 1.8rem;
    }

    .experience h2::after {
        width: 60px;
        height: 3px;
    }

    .experience-grid {
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }

    .experience-card {
        padding: 2rem 1.5rem;
    }

    .experience-card h3 {
        font-size: 1.2rem;
    }

    .experience-card p {
        font-size: 0.95rem;
    }

    .about-us {
        padding: 4rem 0;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .about-intro {
        font-size: 1rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .about-image {
        height: 400px;
        order: -1;
    }

    .floating-card {
        padding: 0.8rem 1.2rem;
    }

    .floating-card .card-icon {
        font-size: 1.5rem;
    }

    .floating-card p {
        font-size: 0.9rem;
    }

    .vip-text h3 {
        font-size: 1.5rem;
    }

    .vip-description h2 {
        font-size: 1.1rem;
    }

    .testimonial h2 {
        font-size: 1.3rem;
    }

    .testimonial-image {
        height: 350px;
    }

    .stories-intro h2 {
        font-size: 1.6rem;
    }

    .story-content {
        padding: 1.5rem;
    }

    .story-content h3 {
        font-size: 1.2rem;
    }

    .story-image {
        height: 220px;
    }

    .faq h2 {
        font-size: 1.5rem;
    }

    .faq-number {
        font-size: 1rem;
        min-width: 35px;
    }

    .faq-title {
        font-size: 0.9rem;
    }

    .faq-question {
        padding: 0.4rem;
        border-bottom: 1px solid #bcaaaa;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1.2rem 3.5rem;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }

    .explore-profiles h2,
    .dating-section h2,
    .horoscope-section h2 {
        font-size: 1.3rem;
    }

    .tab-btn,
    .dating-tab-btn {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
    }

    .profile-links a {
        font-size: 0.8rem;
    }

    .tab-content,
    .dating-tab-content,
    .horoscope-section .profile-links {
        padding: 1.2rem;
    }

    .footer-col h4 {
        font-size: 0.95rem;
    }

    .footer-col a {
        font-size: 0.85rem;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .app-buttons img {
        height: 35px;
    }

    .categories-section h2 {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .category-tab {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .cards-carousel {
        padding: 0 40px;
    }

    .invitation-card {
        min-width: 100%;
    }

    .carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
}

/* Large Desktop (min-width: 1400px) */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero p {
        font-size: 1.5rem;
    }

    .experience h2,
    .stories-intro h2,
    .faq h2 {
        font-size: 3rem;
    }

    .experience-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}





