@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #000;
    background-attachment: fixed;
    padding-top: 120px;
    position: relative;
    z-index: 0;
    min-height: 100vh;
}

/* Neon Dust Background */
#particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    overflow: hidden;
    z-index: -10;
}

.particle {
    position: absolute;
    top: -10px;
    width: 6px;
    height: 6px;
    background-color: #00f5ff;
    border-radius: 50%;
    filter: drop-shadow(0 0 6px #00f5ff);
    animation: fall linear forwards;
}

@keyframes fall {
    to {
        transform: translateY(110vh);
        opacity: 0;
    }
}





/* rapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
} */

/* Different positions, sizes, and speeds */


/* ===== Offers & Benefits Section ===== */
.offers {
    /* background: linear-gradient(135deg, #d0e7ff, #a2c2ff, #7b9dff); */
    padding: 60px 20px;
    margin-top: 0px;
    margin: 40 px auto;
    max-width: 1200px;

}

.navbar-brand img {
    height: 1200px;
    /* adjust logo height */
    width: auto;
    /* keeps aspect ratio */
}


.offers h2 {
    font-weight: 700;
    color: #222;
}

.offers .card {
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
}

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

.offers .card i {
    display: block;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.benefit-card,
.b {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-card h4,
.b h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.benefit-card p,
.b p {
    font-size: 0.95rem;
    color: #555;
}

.offers .card:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Keep landing text on top */
.landing-content {
    position: relative;
    z-index: 1;
}

/* Fullscreen Landing Section */
/* Fullscreen Landing */
.landing {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* background: linear-gradient(135deg, #4f9eff, #6a5af9); */
    color: whitesmoke;
    padding: 0 20px;
    overflow: hidden;
}

/* Center content */
.landing-content {
    max-width: 800px;
    animation: fadeIn 2s ease-in-out;
}

/* Title Animation */
.animate-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0;
    animation: slideDown 1.5s ease forwards;
}

/* limited editions */

.carousel-section {
    border: rgba(0, 0, 0, 0.6) !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
}

#carouselExampleDark {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}


#carouselExampleDark .carousel-item {
    background-color: transparent ;
    padding: 0;
    box-shadow: none;
}

#carouselExampleDark .carousel-caption h5,
#carouselExampleDark .carousel-caption p {
    color: #F8F8FF;
}

#carouselExampleDark .carousel-item video {
    width: 90%;
    height: auto;
    display: block;
    margin: 0 auto 15px auto;
    overflow: hidden;
    border-radius: 20px;
    border: 4px solid #00f5ff;
    box-shadow: 0 0 15px #00f5ff, 0 0 30px #00f5ff;
    animation: glow 2s infinite alternate;
}

/* Paragraph Animation */
.animate-text {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 2s ease forwards;
    animation-delay: 1s;
}

/* Animated Button */
.btn-explore {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    background: #00f5ff;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    animation: popIn 1s ease forwards;
    animation-delay: 2s;
}

.btn-explore:hover {
    background: #000;
    color: #00f5ff;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

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

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

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

@keyframes popIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* glow */
.navbar {
    /* Replace the old color code with your Neon Red color (#FF4500) */
    border: 4px solid #00f5ff;
    box-shadow: 0 0 20px #00f5ff, 0 0 40px #00f5ff, 0 0 60px #00f5ff;
    color: #00f5ff;
    animation: glow 2s infinite alternate;
}

.offers .card {
    border: 4px solid #00f5ff;
    box-shadow: 0 0 15px #00f5ff, 0 0 30px #00f5ff;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 15px #00f5ff, 0 0 30px #00f5ff;
    }

    50% {
        box-shadow: 0 0 30px #00f5ff, 0 0 60px #00f5ff;
    }

    100% {
        box-shadow: 0 0 15px #00f5ff, 0 0 30px #00f5ff;
    }
}

.neon-card {
    animation: glow 2s infinite alternate;
}

/* Testimonials Section */
.testimonials {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1200px;
    border: 4px solid #00f5ff;
    box-shadow: 0 0 15px #00f5ff, 0 0 30px #00f5ff;
    animation: glow 2s infinite alternate;

}

.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
}

.testimonial {
    background: #fff;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    flex: 1;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial h4 {
    color: #333;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

/* dark mode  */



/* Navbar Styling */
.navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 20px 60px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 95%;
    max-width: 1600px;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    transition: all 0.3s ease;


}



.navbar-brand {
    font-weight: bold;
    color: #555 !important;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    font-size: large;
    margin: 0 15px;
    padding: 8px 18px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background: #00f5ff;
    color: #fff !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    width: 100%;
    margin: 0;
    border-radius: 0;

}


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

.footer .footer-links {
    margin-top: 15px;
}

.footer .footer-links a {
    color: #bbb;
    margin: 0 10px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer .footer-links a:hover {
    color: #fff;
}
.social-icons {
    margin-top: 10px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icons a {
    font-size: 20px;
    color: #fff; /* Change color as needed */
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #00aced; /* Hover effect */
}


/* Carousel Container */
.carousel {
    position: relative;
    width: 90%;
    max-width: 1140px;
    margin: 50px;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    padding: 30px 0;
     border: 4px solid #00f5ff; /* Outer Border */
    box-shadow: 0 0 15px #00f5ff, 0 0 30px #00f5ff; /* Initial Glow */
    animation: glow 2s infinite alternate;

}

.carousel-inner {
    width: 100%;
    border: none;
}

/* Carousel Item Layout */
.carousel-item {
    padding: 50px;
    box-sizing: border-box;
    min-height: 600px;
    background-color: #fff;
    border-radius: 15px;
    border: none !important; 
    animation: none !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

    
     transition: transform 0.6s ease-in-out; 
}


.carousel-item img {
    width: 45%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.carousel-item .detail {
    width: 50%;
    padding-right: 30px;
}

.carousel-item .detail h3 {
    font-size: 2em;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.carousel-item .detail p {
    color: rgba(85, 85, 85, 0.7);
    margin-bottom: 20px;
}

.carousel-item .detail .specifications {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.carousel-item .detail .specifications div {
    flex: 1 1 45%;
}

.carousel-item .detail .specifications p:first-child {
    font-weight: 600;
    margin-bottom: 5px;
    color: #555;
}

.carousel-item .detail .specifications p:last-child {
    color: rgba(85, 85, 85, 0.7);
}

.carousel-item .detail .checkout button {
    margin-right: 15px;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: transparent;
    border: 1px solid #555;
    color: #555;
}

.btn-primary:hover {
    background-color: #555;
    color: #fff;
}

.btn-success {
    background-color: #693EFF;
    border: 1px solid #693EFF;
    color: #eee;
}

.btn-success:hover {
    background-color: #5a35d6;
    border-color: #5a35d6;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    bottom: 20px;
    top: auto;
    z-index: 5;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 12px;
}

/* Responsive */
@media screen and (max-width: 991px) {
    .carousel-item {
        flex-direction: column-reverse;
        min-height: auto;
        padding: 30px;
    }

    .carousel-item img {
        width: 80%;
        max-height: 300px;
        margin-bottom: 20px;
    }

    .carousel-item .detail {
        width: 100%;
        padding: 0;
    }
}