@import url("https://fonts.googleapis.com/css2?family=Skranji&display=swap");
@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');
/* General styles */
body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: hsl(218deg 50% 91%);
    background: url('Pictures/back.png') no-repeat center center fixed;
    overflow-x:hidden;
}
.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.9);
    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-header {
    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-header a img {
    width: 34px; /* Increased size for all icons */
    height: 34px; /* 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-header 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;
    }
}
.screen-2 label {
    color: #fff; /* Replace #yourColor with the desired color */
    font-weight: bold; /* Optional: Keep the labels bold */

}
/* SignUp container styling */
.signup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2em 0;
    width: 100%;
    box-sizing: border-box;
    flex-grow: 1;
    margin-top:100px;
}

.screen-2 {
    background-color: rgba(59,59,67); /* Darker background similar to before */
    padding: 2em;
    border-radius: 40px;
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}


h2 {
    text-align: center;
    margin-bottom: 1em;
    color: #fff; /* White text color */
}

.sec-2 {
    display: flex;
    align-items: center;
    gap: 0.5em;
    position: relative;
    margin-bottom: 1.5em;
    color: #fff; /* White text color */
}

.sec-2 input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    font-family: 'Poppins', sans-serif;
    border-radius: 20px;
    margin-top:10px;
}

button {
    padding: 1em;
    background: #fff; /* White button background */
    color: #000; /* Dark text color */
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-family: 'Leelawadee', serif;
    margin-top: 1em;
}

button:hover {
    background: #000; /* Slightly darker gray on hover */
    color: #fff;
    transition: 0.2s ease-in-out;
}

.social-login {
    text-align: center;
    margin-top: 2em;
}

.social-login span {
    font-size: 1em;
    color: #fff; /* White text color */
}

.social-icons {
    display: flex;
    justify-content: flex-start; /* Aligns icons to the start (left) */
    margin-top: 1em;
    left: 90px;
    gap:47px;
}

.social-icons img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1); /* Ensures all icons are white */

}


.footer-section {
    background-color: rgba(59,59,67); /* Dark background similar to before */
    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: #fff; /* White text color */
    text-decoration: none;
}

.footer-section a:hover {
    color: #ddd; /* Lighter text color on hover */
    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 {
    margin-bottom: 20px;
    width: 200px;
}

.footer-section .social-icons {
    display: flex;
    justify-content: flex-start; /* Aligns icons to the start (left) */
    gap: 20px; /* Space between icons */
    left:-10px;
}

.footer-section .social-icons img {
    width: 32px;
    height: 32px;
    margin-left: 0; /* Remove margin to avoid extra spacing */
    filter: brightness(0) invert(1); /* Ensures all icons are white */
    margin-top:-100px;
}


@media (max-width: 600px) {
    .screen-2 {
        padding: 1.5em;
    }

    .social-icons img {
        width: 20px;
        height: 20px;
    }
}
