@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap);

:root {
    --primary: #ff7a00;
    --secondary: #0a192f;
    --light: #f4f4f4;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif
}

body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: var(--white)
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow)
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary)
}

.nav-links {
    display: flex;
    list-style: none
}

.nav-links li {
    margin-left: 25px
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    transition: 0.3s
}

.nav-links a:hover {
    color: var(--primary)
}

.hero {
    height: 100vh;
    width: 100%;
    background: linear-gradient(rgb(0 0 0 / .6), rgb(0 0 0 / .5)), url(https://images.pexels.com/photos/1007427/pexels-photo-1007427.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1) no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff
}

.hero-content {
    max-width: 800px;
    padding: 20px
}

.badge {
    background: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    animation: fadeInDown 1s ease-out
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-top: 15px;
    text-transform: uppercase;
    font-weight: 700;
    animation: fadeInUp 1s ease-out 0.3s both
}

.hero-content p {
    font-size: 1.2rem;
    margin: 20px auto;
    animation: fadeInUp 1s ease-out 0.6s both
}

.hero-btns {
    margin-top: 30px;
    animation: fadeInUp 1s ease-out 0.9s both
}

.btn {
    background: var(--primary);
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.4s;
    display: inline-block;
    border: none
}

.btn:hover {
    background: #e66d00;
    transform: translateY(-3px)
}

.btn-outline {
    background: transparent !important;
    border: 2px solid white !important;
    margin-left: 10px
}

.btn-outline:hover {
    background: white !important;
    color: var(--secondary) !important
}

section {
    padding: 80px 10%
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: var(--secondary)
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: 0.3s;
    text-align: center
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgb(0 0 0 / .15)
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px
}

.form-container {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    margin: auto
}

input,
textarea,
select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem
}

.submit-btn {
    width: 100%;
    background: var(--secondary);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 15px;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: 0.3s
}

.submit-btn:hover {
    background: var(--primary)
}

footer {
    background: var(--secondary);
    color: #fff;
    text-align: center;
    padding: 60px 10%;
    margin-top: 40px
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media (max-width:768px) {
    nav {
        padding: 15px 5%
    }

    .nav-links {
        display: none
    }

    .hero-content h1 {
        font-size: 2.5rem
    }

    section {
        padding: 50px 5%
    }

    .btn-outline {
        margin-left: 0;
        margin-top: 10px;
        display: block
    }
}

.interest-card {
    height: 250px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    cursor: pointer;
    overflow: hidden;
    transition: 0.5s all ease;
    border: 2px solid #fff0
}

.interest-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgb(0 0 0 / .3)
}

.interest-content {
    color: #fff;
    z-index: 2;
    transition: 0.3s
}

.interest-content i {
    font-size: 30px;
    margin-bottom: 10px;
    color: var(--primary)
}

.interest-content h4 {
    font-size: 1.5rem;
    font-weight: 600
}

.interest-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / .2);
    transition: 0.4s
}

.interest-card:hover::before {
    background: rgb(0 0 0 / .4)
}

a,
button,
.btn,
.btn-outline,
.submit-btn {
    cursor: pointer !important
}

.interest-card,
.category-item {
    cursor: pointer !important
}

.card,
.card img {
    cursor: pointer
}

select,
input[type="submit"],
label {
    cursor: pointer
}

.whatsapp-btn,
.fab.fa-whatsapp {
    cursor: pointer !important
}

.interest-card:hover,
.card:hover {
    filter: brightness(1.1)
}

.solo-hero-final {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000
}

.hero-video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.zoom-image {
    width: 100%;
    height: 100%;
    background-image: url(https://images.pexels.com/photos/1236701/pexels-photo-1236701.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1);
    background-size: cover;
    background-position: center;
    animation: zoomEffect 20s infinite alternate ease-in-out
}

@keyframes zoomEffect {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.15)
    }
}

.solo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / .5);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center
}

.hero-content-box {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 20px
}

.hero-content-box h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin: 15px 0;
    text-transform: uppercase;
    font-weight: 700
}

.btn-main {
    background: #fca311;
    color: #14213d;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    display: inline-block;
    cursor: pointer !important;
    transition: 0.3s
}

.btn-main:hover {
    background: #fff;
    transform: translateY(-3px)
}

.card,
.interest-card,
.category-item,
.nav-links a {
    cursor: pointer !important
}

.solo-tag {
    background: #fca311;
    color: #14213d;
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: 700
}

.force-4-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    padding: 20px 0
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block
}

@media (max-width:1024px) {
    .force-4-grid {
        grid-template-columns: repeat(2, 1fr) !important
    }
}

@media (max-width:600px) {
    .force-4-grid {
        grid-template-columns: 1fr !important
    }
}

.time-box span {
    color: #ff7a00;
    text-shadow: 0 0 10px rgb(255 122 0 / .5);
    transition: all 0.5s ease
}

.flash-sale-modern {
    position: relative;
    background: linear-gradient(135deg, #0a192f 0%, #1a3a5f 100%);
    color: #fff;
    padding: 80px 10%;
    overflow: hidden;
    border-radius: 0
}

.sale-shape {
    position: absolute;
    background: rgb(255 122 0 / .1);
    border-radius: 50%;
    filter: blur(50px);
    z-index: 1;
    animation: float 10s infinite alternate ease-in-out
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    background: rgb(0 180 216 / .1)
}

@keyframes float {
    from {
        transform: translate(0, 0)
    }

    to {
        transform: translate(30px, 50px)
    }
}

.sale-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px
}

.sale-badge {
    background: #ff7a00;
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
    animation: blink 1.5s infinite
}

@keyframes blink {
    50% {
        opacity: .7
    }
}

.sale-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.1
}

.sale-description {
    font-size: 1.2rem;
    opacity: .9;
    max-width: 500px
}

.highlight {
    color: #ff7a00;
    text-shadow: 0 0 10px rgb(255 122 0 / .3)
}

.countdown-container {
    margin-top: 30px
}

.timer-flex {
    display: flex;
    gap: 15px;
    margin-top: 10px
}

.time-box {
    background: rgb(255 255 255 / .1);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    min-width: 70px;
    border: 1px solid rgb(255 255 255 / .1)
}

.time-box small {
    font-size: 10px;
    text-transform: uppercase;
    opacity: .7
}

.btn-pulse {
    background: #ff7a00;
    color: #fff;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 0 0 0 rgb(255 122 0 / .7);
    animation: pulse 2s infinite;
    transition: 0.3s
}

.testimonials-loop-section {
    padding: 80px 10%;
    background: #f8faff;
    text-align: center;
    overflow: hidden
}

.testimonials-container {
    width: 100%;
    margin-top: 40px;
    position: relative
}

.testimonials-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollTestimonials 30s linear infinite
}

.testimonials-container:hover .testimonials-track {
    animation-play-state: paused
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-2640px)
    }
}

.testimonial-card-loop {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgb(0 0 0 / .03);
    width: 300px;
    text-align: left;
    flex-shrink: 0;
    border: 1px solid #fff0;
    transition: 0.3s
}

.testimonial-card-loop:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: #ff7a00;
    box-shadow: 0 10px 25px rgb(255 122 0 / .1)
}

.rating {
    color: #fc0;
    margin-bottom: 15px;
    font-size: 14px
}

.testimonial-card-loop p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: .9rem;
    height: 60px;
    overflow: hidden
}

.user-info-loop {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #eee;
    padding-top: 15px
}

.user-info-loop img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff7a00
}

.user-details-loop h4 {
    font-size: .95rem;
    color: #0a192f;
    margin-bottom: 2px
}

.verified {
    color: #00b4d8;
    font-size: 11px;
    margin-left: 4px
}

.user-details-loop span {
    font-size: 11px;
    color: #888
}

@media (max-width:768px) {
    .testimonials-loop-section {
        padding: 60px 5%
    }

    .testimonial-card-loop {
        width: 260px
    }

    @keyframes scrollTestimonials {
        0% {
            transform: translateX(0)
        }

        100% {
            transform: translateX(-2320px)
        }
    }
}

@keyframes pulse {
    0% {
        transform: scale(.95);
        box-shadow: 0 0 0 0 rgb(255 122 0 / .7)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 20px #fff0
    }

    100% {
        transform: scale(.95);
        box-shadow: 0 0 0 0 #fff0
    }
}

.btn-pulse:hover {
    background: #fff;
    color: #ff7a00;
    transform: translateY(-5px)
}

.secure-text {
    font-size: 12px;
    opacity: .6;
    margin-top: 15px;
    text-align: center
}

@media (max-width:768px) {
    .sale-container {
        text-align: center;
        justify-content: center
    }

    .timer-flex {
        justify-content: center
    }
}

.memories-section {
    padding: 60px 10%;
    background-color: #fdfdfd
}

.memories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 20px 0
}

.memory-card {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgb(0 0 0 / .1);
    transition: transform 0.4s ease-in-out;
    cursor: pointer
}

.memory-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease
}

.memory-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgb(10 25 47 / .9) 0%, rgb(10 25 47 / .5) 40%, #fff0 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 2
}

.memory-overlay h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.memory-overlay p {
    font-size: .9rem;
    opacity: .9;
    line-height: 1.4
}

.memory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgb(0 0 0 / .3)
}

.memory-card:hover img {
    transform: scale(1.1)
}

.memory-card:hover .memory-overlay {
    opacity: 1;
    transform: translateY(0)
}

@media (max-width:1100px) {
    .memories-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:600px) {
    .memories-grid {
        grid-template-columns: 1fr
    }

    .memory-card {
        height: 250px
    }

    @keyframes fadeInUp {
        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)
        }
    }

    @keyframes glowPulse {
        0% {
            transform: scale(1);
            opacity: .15
        }

        100% {
            transform: scale(1.2);
            opacity: .25
        }
    }

    .hover-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgb(255 122 0 / .4) !important;
        filter: brightness(1.1)
    }
}