@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=devanagari,latin-ext');

* {
    box-sizing: border-box;
}
body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 24px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: rgba(10, 10, 20, 0.4);
    z-index: 1000;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 80px; /* Further increased gap between navigation items */
    margin: 0;
    padding: 0;

}

.nav-links li {
    position: relative;
    left: 550px; /* Remove or adjust this for better alignment */
    top:-5px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    padding: 3px 3px;
    font-weight: bold;
    transition: color 0.3s ease, box-shadow 0.3s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a:hover {
    color: white;
    text-shadow: 0 0 10px black;
    filter: brightness(0) invert(1) drop-shadow(0 0 5px white);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(10, 10, 20, 0.9);
    min-width: 160px;
    max-width: 300px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border: none;
    flex-direction: column; /* Ensure the menu items stack vertically */
    margin-top:10px;
}

.dropdown-menu li {
    display: flex;
    align-items: center; /* Ensures icons and text are aligned vertically */
    padding: 20px; /* Adjusts space around each item */
    left:-50px;
}

.dropdown-menu li i {
    margin-right: 10px; /* Consistent spacing between icon and text */
    font-size: 16px; /* Adjust icon size if necessary */
    line-height: 1; /* Ensures icons and text are aligned on the baseline */
}

.dropdown-menu li a {
    color: #fff;
    font-size: 16px; /* Adjust text size */
    text-decoration: none;
    line-height: 1; /* Ensures icons and text are aligned on the baseline */
    display: flex;
    align-items: center; /* Ensures icons and text are aligned vertically */
}

.dropdown-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.dropdown:hover .dropdown-menu {
    display: flex; /* Flexbox for vertical alignment */
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.nav-links li:hover .dropdown-menu {
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    position: absolute;
    left: 20px;
    transition: all 0.3s ease;
}

.logo img {
    height: 70px;
    transition: all 0.3s ease;
}

.logo p {
    color: transparent;
    font-size: 15px;
    position: absolute;
    left: 70px;
    padding-bottom: 0;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    font-family: 'Poppins', sans-serif;
}

.logo:hover img {
    transform: translateX(-20px) scale(1.1);
    filter: drop-shadow(0 0 10px black);
}

.logo:hover p {
    color: white;
    text-shadow: 0 0 10px black;
    transform: translateX(0);
    opacity: 1;
    padding: 8px;
    font-weight: bold;
    top: -15px;
    left: 50px;
    animation: popIn 0.5s ease forwards;
}
.character {
    position: absolute;
    right:240px; /* Adjust this value to position it where you want within the navbar */
    top: 50%;
    transform: translateY(-50%); /* Centers the character vertically in the navbar */
    cursor: pointer; /* Changes the cursor to a pointer, indicating it's clickable */
    z-index: 1001; /* Ensures it is above other elements in the navbar */
}

/* Style for the character image */
.character img {

    width: 40px; /* Adjust the size as needed */
    height: auto;
    transition: transform 0.3s ease; /* Smooth transition effect */
}

/* Hover effect for the character image */
.character img:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 5px white);
    transform: scale(1.1); /* Slightly increase size on hover */
    animation: popIn 0.5s ease forwards;
}

/* Clickable effect */
.character:active img {
    transform: scale(0.95); /* Slightly shrinks the character when clicked */
}
.social-icons {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between icons */
    position: relative; /* Ensure the left positioning works as expected */
    left: 480px; /* Adjust this value to move the icons slightly to the left */
}
.social-icons a img {
    width: 32px; /* Increased size for all icons */
    height: 32px; /* Increased size for all icons */
    filter: brightness(0) invert(1); /* Make the icons white */
    transition: filter 0.3s ease, transform 0.3s ease;

}

.social-icons a img:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 5px white);
    transform: scale(1.1); /* Slightly increase size on hover */
    animation: popIn 0.5s ease forwards;
}
.shopping-cart {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between icons */
    position: relative; /* Ensure the left positioning works as expected */
    left: -400px; /* Adjust this value to move the icons slightly to the left */
}

.shopping-cart a img {
    width: 32px; /* Increased size for all icons */
    height: 32px; /* Increased size for all icons */
    filter: brightness(0) invert(1); /* Make the icons white */
    transition: transform 0.3s ease, filter 0.3s ease;
}

.shopping-cart p {
    color: transparent;
    font-size: 15px;
    position: absolute;
    left: 70px;

    padding-bottom: 0;
    opacity: 0;
    transform: translateX(-50px); /* Text initially positioned to the left */
    transition: opacity 0.5s ease, transform 0.5s ease;
    font-family: 'Poppins', sans-serif;
}

.shopping-cart:hover img {
    transform: translateX(-20px) scale(1.1);
    filter: drop-shadow(0 0 10px black);
}

.shopping-cart:hover p {
    color: white;
    text-shadow: 0 0 10px black;
    transform: translateX(0);
    opacity: 1;
    padding: 8px;
    font-weight: bold;
    width: 200px;
    top: -20px;
    left: 30px;
}

@keyframes popIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.slideshow {
    position: relative;
    width: 100%;
    max-width: 100%; /* Ensure it doesn't overflow horizontally */
    height: 700px;
    overflow: hidden;
    margin-bottom: 20px;

}
.see-more-btn {
    position: relative;
    margin: 0 auto; /* Centers the button horizontally */
    display: block; /* Ensures the button is treated as a block element */
    font-size: 15px;
    width: 110px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.9);
    color: rgba(247, 247, 247, 0.9);
    border: none;
    z-index: 10;
    font-family: 'Poppins', sans-serif;
    font-weight: bolder;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    top:350px;
}

.see-more-btn:hover {
    background-color: #fff;
    transform: scale(1.05); /* Slight increase in size on hover */
    color: #000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow effect */
}

.see-more-btn:active {
    transform: scale(0.95); /* Slight decrease in size on click */
    background-color: #fff; /* Darker background on click */
}
.slideshow img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: slideAnimation 15s infinite;
    transition: opacity 1s ease-in-out;
}

.slideshow img:nth-child(1) {
    animation-delay: 0s;
}

.slideshow img:nth-child(2) {
    animation-delay: 5s;
}

.slideshow img:nth-child(3) {
    animation-delay: 10s;
}

@keyframes slideAnimation {
    0% { opacity: 0; }
    10% { opacity: 1; }
    30% { opacity: 1; }
    40% { opacity: 0; }
    100% { opacity: 0; }
}

.slideshow h1 {
    z-index: 1; /* Ensures the text stays above the images */
    font-size: 2.5em;
    font-family: 'Poppins', sans-serif;
    color: white; /* Keeps the text color white */
    text-align: center; /* Centers text horizontally */
    position: absolute;
    top: 50%; /* Centers vertically relative to the container */
    left: 50%; /* Centers horizontally relative to the container */
    transform: translate(-50%, -50%); /* Adjusts for exact centering */
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.7); /* Adds a soft glow effect */
    margin-top:-70px;
}


.offertags {

    list-style: none;
    display: flex;
    gap: 100px; /* Increase the gap between the words */
    justify-content: center;
    font-size: 1.40em;
    padding:2%;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
    position: relative; /* Ensure this is relative for the pseudo-element */
    background-color: rgb(189, 189, 189, 0.3);
}

.offertags li {
    position: relative; /* Needed for the absolute positioning of ::after */
    cursor: pointer;
}

.offertags li::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0; /* Positioning the line directly under the text */
    width: 0;
    height: 2px;
    background-color: black; /* Color of the underline */
    transition: width 0.3s ease; /* Smooth transition */
}

.offertags li:hover::after {
    width: 100%; /* Line becomes fully under the word on hover */
}

.offertags li:hover {
    text-shadow: 0 0 2px black;

}
.intro{

    display: flex;
    flex-direction:column;
    align-items: center;   /* Horizontally center items */
    justify-content: center; /* Vertically center items */
    gap:50px;
    font-size: 25px;
    padding:40px;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 1024px) {
    .navbar {
        padding: 15px;
    }

    .nav-links {
        gap: 50px;
    }

    .logo {
        left: 100px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .btn {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 10px;
    }

    .nav-links {
        flex-direction: column;
        gap: 20px;
    }

    .logo {
        position: relative;
        left: 0;
        margin-bottom: 10px;
    }

    .slideshow {
        height: 500px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .btn {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 10px;
    }

    .nav-links {
        gap: 15px;
    }

    .slideshow {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .btn {
        font-size: 14px;
    }

    .logo img {
        height: 50px;
    }
}
.offer h1{
    left: 830px;
}
@media (max-width: 360px) {
    .navbar {
        padding: 5px;
    }

    .nav-links {
        gap: 10px;
        font-size: 10px;
    }

    .slideshow {
        height: 300px;
    }

    .hero-content h1 {
        font-size: 20px;
    }

    .hero-content p {
        font-size: 12px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .logo img {
        height: 40px;
    }
}
.cards-list {
    z-index: 0;

    display: flex;
    justify-content: center;
    gap:100px;
    font-family: 'Poppins', sans-serif;
    padding:100px;


}

.card {
    position: relative;
    width: 490px;
    height: 600px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 5px 5px 30px 7px rgba(0,0,0,0.25), -5px -5px 30px 7px rgba(0,0,0,0.22);
    cursor: pointer;
    transition: 0.4s;
    overflow: hidden;
    border-radius:10px;
}

.card_image {
    width: 600px;
    height: 600px;


}

.card_image img {

    width: inherit;
    height: inherit;

    object-fit: cover;
}

.card_title {
    position: absolute;
    font-family: 'Poppins', sans-serif;
    top:60%;
    margin-left:10%;
    display :flex;
    justify-content: end; /* Vertically center items */
    flex-direction: column;
    font-family: sans-serif;
    border-radius:10px;
    font-size: 18px;
    color:rgba(255,255,255);
    font-weight:bold ;


}
/* Button Styling */
.card_title button {
    margin-top: 10%;
    border-radius: 20px;
    height: 2.9em;
    width: 30%;
    margin-left: 31%;
    font-family: 'Poppins', sans-serif;
    background-color: rgba(247, 247, 255, 0.9);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Added transition for smooth hover effect */
    font-weight:bold;
    margin-bottom:10px;
}

/* Button Hover Effect */
.card_title button:hover {
    background-color: rgba(200, 200, 255, 0.9);
    transform: scale(1.05); /* Slightly increase the size on hover */
}

/* Card Hover Effect */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Ensure smooth transition */
}

.card:hover {
    transform: scale(1.1);
    box-shadow: 5px 5px 30px 15px rgba(0, 0, 0, 0.25),
    -5px -5px 30px 15px rgba(0, 0, 0, 0.22);
}


/* product section //////////////////////////////////*/

.product_container{
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding-top: 3%;
    justify-content: center;
    margin: auto;
}
.card_product {
    font-family: 'Poppins', sans-serif;
    width: 350px;
    height:400px;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;

    font-weight: 400;
    font-size: 0.8rem;
    line-height: 1.43em;
}
.card__media {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    font-family: 'Poppins', sans-serif;
    filter: blur(0);
    transform: scale(1.2) translateY(5%);
    transform-origin: center bottom;
    transition: transform 800ms ease-out, filter 800ms ease-out;
}
.card_product:hover .card__media {
    transform: scale(1.4) translateY(0);
    filter: blur(2px);
}
.card__media::before {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;

    content: "";
    display: block;


    background-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);

    opacity: 0.8;
}
.card__media img {
    width: 100%;
    height: 125%;
    display: block;
    object-fit: cover;
    object-position: bottom center;
}
.card__content {
    --padding : 1rem;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 2;
    width: calc(100% - var(--padding) * 2);
    height: calc(100% - var(--padding) * 2);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--padding);
    color: white;
}
.card__wrapper{
    transform: translateY(100%);

    transition: transform 350ms ease-out;
}
.card__wrapper h2{
    margin: 0;
    transform: translateY(-100%);
    font-weight: 200;
    font-size: 2rem;
    line-height: 1.3em;
    font-family: 'Poppins', sans-serif;
    transition: transform 150ms ease-out;
}
.card__wrapper a {
    background-color: white;
    display: inline-block;
    padding: 0.8rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: black;
    font-weight: 500;
}
.card_product:hover .card__wrapper{
    transform: translateY(0);
}
.card_product:hover .card__wrapper h2{
    transform: translateY(0);
}
.item_container {
    display: flex;
    justify-content: space-around; /* Distribute items evenly with space around them */
    align-items: center; /* Center items vertically */
    flex-wrap: wrap; /* Allow items to wrap to the next line if needed */
    gap: 20px; /* Adjusted gap between items */
    padding: 20px;
    max-width: 1300px; /* Limit the container width */
    margin: 0 auto; /* Center the container */
    font-family: 'Poppins', sans-serif;
}

.item {
    text-align: center;
    max-width: 300px; /* Set a max-width for each item */
    padding-top: 10%;
    position: relative; /* Needed for absolute positioning of SVGs */
}
/* Styling for the Add To Cart button */
.add-to-cart-btn {
    display: inline-block;
    padding: 0.7em 1.5em;
    margin-top: 1em;
    background-color: #000;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    border-radius: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Hover effect for Add To Cart button */
.add-to-cart-btn:hover {
    background-color: #555;
    transform: scale(1.05); /* Slight increase in size on hover */
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow effect */
}
.item svg, .item img {
    width: 65px; /* Adjust icon size */
    height: 65px;
    fill: #333; /* Darker color for better contrast */
    margin-bottom: 10px;
    transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth transition for opacity and scale */
    position: absolute; /* Position both images absolutely */
    top: 50px; /* Lower the images by adjusting this value */
    left: 50%;
    transform: translateX(-50%); /* Center the images horizontally */
}

.item .lock {
    opacity: 0; /* Hide the unlocked icon initially */
}

.item:hover .unlock {
    opacity: 0; /* Fade out the locked icon on hover */
}

.item:hover .lock {
    opacity: 1; /* Fade in the unlocked icon on hover */
}

.globe {
    transition: transform 0.3s ease;
    will-change: transform;
    transform-origin: center center; /* Ensure the globe rotates around its center */
    position: relative; /* Keeps the globe centered and prevents it from shifting */
    top: 50px; /* Lower the globe by adjusting this value */
    left: 50%; /* Center the globe horizontally */
    transform: translateX(-50%); /* Keep the globe centered */
}

.item:hover .globe {
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from {
        transform: translateX(-50%) rotate(0deg); /* Keep the globe centered while rotating */
    }
    to {
        transform: translateX(-50%) rotate(360deg); /* Keep the globe centered while rotating */
    }
}

.item:hover .star,
.item:hover .tag {
    transform: translateX(-50%) scale(1.2); /* Add a pop effect on hover for both star and tag */
}

.item h3 {
    font-size: 20px; /* Adjust font size */
    font-weight: 600; /* Semi-bold font weight */
    color: #333; /* Darker text color */
}

.item p {
    font-size: 20px; /* Adjust font size */
    color: #666; /* Slightly lighter grey */
    margin: 0; /* Remove default margin */
}

.footer-section {
    position: relative;
    top:10vh;
    background-color:rgba(10, 10, 20, 0.8);
    color: white;
    padding: 40px 0;
    font-family: 'Poppins', sans-serif;

}

.footer-section h6 {
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 15px;
}

.footer-section p,
.footer-section a {
    margin-bottom: 10px;
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
}

.footer-section a:hover {
    color: #ddd;
    text-decoration: underline;
}

.footer-section hr {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

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

}

.footer-section .row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section .col-md-3,
.footer-section .col-md-2,
.footer-section .col-md-4 {
    margin-bottom: 20px;
    width:200px;
}

.footer-section .social-icons {
    display: flex;
    justify-content: flex-end;
    left:-10px;
}

.footer-section .social-icons .btn {
    border-radius: 50%;
    font-size: 14px;
    line-height: 35px;
    height: 25px;
    width: 25px;
    margin-left: 20px;
    border-color: white;

}

.footer-section .social-icons .btn i {
    color: white;
}



@media (max-width: 768px) {
    .footer-section .row {
        text-align: center;
        flex-direction: column;
    }

    .footer-section .col-md-3,
    .footer-section .col-md-2,
    .footer-section .col-md-4 {
        margin-bottom: 20px;
    }

    .footer-section .social-icons {
        justify-content: center;
    }
}
@media (max-width: 1440px) {
    .nav-links {
        gap: 40px; /* Reduce gap for large laptops */
    }

    .logo img {
        height: 65px; /* Slightly reduce logo size */
    }
}

/* For medium laptops (up to 1280px wide) */
@media (max-width: 1280px) {
    .nav-links {
        gap: 35px; /* Reduce gap for medium laptops */
    }

    .logo img {
        height: 60px; /* Reduce logo size */
    }
}

/* For smaller laptops and tablets (up to 1024px wide) */
@media (max-width: 1024px) {
    .navbar {
        flex-direction: column;
        padding: 10px;
    }

    .nav-links {
        gap: 30px; /* Reduce gap for smaller laptops and tablets */
    }

    .logo img {
        height: 55px; /* Further reduce logo size */
    }
}

/* For tablets and large mobile devices (up to 768px wide) */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column; /* Stack links vertically */
        gap: 20px; /* Further reduce gap */
        text-align: center;
    }

    .logo img {
        height: 50px; /* Further reduce logo size */
    }

    .social-icons,
    .shopping-cart {
        gap: 15px; /* Reduce gap between icons */
    }
}

/* For small mobile devices (up to 576px wide) */
@media (max-width: 576px) {
    .navbar {
        padding: 5px;
    }

    .nav-links li a {
        font-size: 14px; /* Smaller font size for links */
    }

    .logo img {
        height: 40px; /* Even smaller logo size */
    }

    .social-icons a img,
    .shopping-cart a img {
        width: 24px; /* Smaller icon size */
        height: 24px;
    }

    .shopping-cart {
        left: 0; /* Reset positioning to align properly on small screens */
    }
}