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

  :root {
    --white: white;
    --black: black;
    --logo: rgb(0, 72, 255);
    --menu-hov: #ff4081;
    --dim-text: #333;
    --head-dim: #222;
    --offer-btn: #ff4b2b;
    --offer-btn-hov: #ff1e00;
    --input-border: rgb(34, 112, 112);
    --contact-btn: #19ba7c;
    --contact-btn-hov: #00ff9d;
    --hr: #0d5aff;
    --map-linear-g: linear-gradient(135deg, #022674, #1a3e8a);
    --reach-container: linear-gradient(135deg, #022674, #0056b3);
    --reach-icon: #e8e8e8;
    --reach-border: #022674;
    --reach-mail: hsl(298, 100%, 50%);
  }

  html.dark-mode {
    --white: #121212;
    --black: #ffffff;
    --logo: #64b5f6;
    --menu-hov: #f48fb1;
    --dim-text: #e0e0e0;
    --head-dim: #f5f5f5;
    --offer-btn: #ff8a65;
    --offer-btn-hov: #ffab91;
    --input-border: #4db6ac;
    --contact-btn: #26a69a;
    --contact-btn-hov: #80cbc4;
    --hr: #42a5f5;
    --map-linear-g: linear-gradient(135deg, #1a237e, #283593);
    --reach-container: linear-gradient(135deg, #1a237e, #0277bd);
    --reach-icon: #e0e0e0;
    --reach-border: rgba(255, 255, 255, 0.2);
    --reach-mail: #f06292;
  }

  body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .header-cls {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 100;
    width: 100%;
    background-color: var(--white);
  }

  .logo img {
    width: 150px;
    padding: 16px;
  }

  .menu-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
  }

  .btn-close {
    display: none;
  }

  .hamburger {
    display: none;
  }

  .menu-items a {
    text-decoration: none;
    color: var(--black);
    font-size: 18px;
    letter-spacing: 1px;
    padding: 10px;
  }

  .menu-items a:hover::after {
    width: 100%;
  }

  .menu-items a:hover {
    color: var(--menu-hov);
  }

  .menu-icons {
    display: flex;
    text-decoration: none;
    list-style: none;
    justify-content: space-between;
    gap: 30px;
    cursor: pointer;
    margin-right: 20px;
  }

  .menu-icons a {
    color: var(--black);
  }

  .btn:hover {
    transform: scale(1.1);
  }

  .theme-toggle {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 12px 12px;
    border-radius: 30%;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    margin-right: 10px;
  }



  .hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .hero-slide.active {
    opacity: 1;
  }

  .overlay {
    position: absolute;
    top: 75%;
    left: 30%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
    padding: 20px 40px;
    border-radius: 8px;
  }

  .overlay h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: white;
  }

  .overlay p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
  }

  .overlay a {
    background-color: #ff4d4d;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
  }

  .overlay a:hover {
    background-color: #ff0303;
  }


  .categories {
    padding: 50px 20px;
    text-align: center;
    background: var(--white);
  }

  .categories h1 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dim-text);
  }

  .cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .cat-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
  }

  .cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .cat-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .cat-card a {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    color: #333;
    text-decoration: none;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.4s ease, transform 0.3s ease;
    z-index: 1;
  }

  .cat-card:hover img {
    transform: scale(1.1);
  }



  .cat-card:hover a {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);

  }

  .cat-card a:hover {
    background: #ff6f61;
    color: white;
  }

  .accessories {
    overflow-x: hidden;
  }

  .items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    overflow: hidden;
    height: auto;
  }

  .items-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
  }

  .items-card img {
    width: 90%;
    height: 400px;
    margin: 20px;
    border-radius: 20px;
    transition: transform 0.4s ease;

  }

  .items-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
  }

  .items-card a {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    color: #333;
    text-decoration: none;
    border: none;
    padding: 16px 20px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 1;

  }

  .items-card:nth-child(1) a {
    background: #0385ff;
    color: white;
  }

  .items-card:nth-child(1):hover a {
    background: #0022ffad;
  }

  .items-card:nth-child(2) a {
    background: #ff00ff;
    color: white;
  }

  .items-card:nth-child(2):hover a {
    background: rgb(255, 0, 170);

  }

  .items-card:first-child:hover img {
    transform: translatex(10px);

  }

  .items-card:nth-child(2):hover img {
    transform: translatex(-10px);
  }


  .about-us {
    background: url('./asstes/molly-mears-VcTDB93yiQY-unsplash.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 80px 20px;
    position: relative;
    margin-top: 10%;
    overflow-x: hidden;
  }

  .about-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }

  .about {
    position: relative;
    z-index: 40;
  }


  .about {
    max-width: 1000px;
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 20px;
  }

  .about-content {
    flex: 1;
  }

  .about-content h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
    text-transform: uppercase;
    position: relative;
  }

  .about-content h1::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #e91e63;
    position: absolute;
    left: 0;
    bottom: -8px;
  }

  .about-right-content {
    /* overflow-x: hidden; */
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    height: fit-content;
  }

  .about-right-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #fff3f3;
    margin-bottom: 25px;
  }

  .about-right-content h2 {
    font-size: 24px;
    color: #e91e63;
    margin-bottom: 15px;
  }

  .about-right-content a {
    background: #e91e63;
    border: none;
    text-decoration: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease-in-out;
  }

  .about-right-content a:hover {
    background: #c2185b;
    transform: translateY(-3px);
  }

  .sponsor {
    overflow: hidden;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    margin-right: 15%;
    margin-left: 15%;
    margin-top: 7%;
    overflow-x: hidden;
  }

  .sponsor-content {
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .sponsor-grid {
    display: flex;
    gap: 50px;
    animation: scroll-rtl 20s linear infinite;
    cursor: pointer;
  }

  .sponsor-grid img {
    height: 80px;
    object-fit: contain;
  }

  @keyframes scroll-rtl {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  .sponsor-grid:hover {
    animation-play-state: paused;
  }


  .testimonials {
    text-align: center;
    padding: 50px 20px;
    background: var(--white);
    margin-top: 5%;
    overflow-x: hidden;
  }

  .testimonial-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--black);
  }

  .testimonial-content p {
    margin-bottom: 30px;
    color: var(--dim-text);
  }

  .testimonial-slider {
    overflow: hidden;
    position: relative;
    max-width: 1000px;
    margin: auto;
    overflow-x: hidden;
  }

  .testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    /* flex-wrap: wrap; */
  }

  .testimonial-card {
    flex: 0 0 33.33%;
    padding: 20px;
    box-sizing: border-box;
  }

  .testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
  }

  .testimonial-card p {
    font-style: italic;
    color: var(--dim-text);
  }

  .testimonial-card h4 {
    margin-top: 10px;
    font-weight: bold;
    color: var(--head-dim);
  }

  @media (max-width:478px) {
    .testimonial-track {
      display: flex;
      flex-direction: column;
      /* transition: none; */
      overflow-x: hidden;
    }

    .testimonial-card {
      overflow-x: hidden;
    }
  }

  @keyframes fade {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  .dots {
    margin-top: 20px;
  }

  .dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background 0.3s;
    cursor: pointer;
  }

  .dot.active {
    background-color: #fb5f0c;
  }

  .special-offers {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    overflow-x: hidden;
    height: fit-content;
  }

  .special-offers h1 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--head-dim);
  }

  .special-offers a {
    padding: 12px;
    text-decoration: none;
    background-color: #2b83e7;
    margin: 3%;
    color: white;
    border-radius: 25px;
    transition: all 0.5s;
  }

  .special-offers a:hover {
    background-color: #1500ff;
  }

  .offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 5%;
  }

  .offer-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: left;
    height: 95%;
    cursor: pointer;
  }

  .offer-card:hover {
    transform: translatey(-6px) scale(1);
  }

  .offer-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .offer-content {
    padding: 20px;
  }

  .offer-content h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dim-text);
  }

  .offer-content p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: var(--head-dim);
  }

  .offer-content a {
    text-decoration: none;
    background: var(--offer-btn);
    border: none;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
  }

  .offer-content a:hover {
    transform: translateY(-10px);
    background: var(--offer-btn-hov);
  }


  .footer {
    margin-top: 5%;
  }

  .footer-head {
    display: grid;
    grid-template-rows: 6fr 1fr;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: #000000;
    color: white;
    /* align-items: center;
  justify-items: center; */
  }

  .footer-grid h3 {
    color: #0385ff;
  }

  /* .footer-content-company img {
    width: 100%;
    height: 100%;
  } */

  .footer-content-company {
    margin: 7%;

  }
  .footer-content-company p{
    text-indent: 35px;
    margin: 0;
  }

  .footer-nav-grid {
    display: grid;
  }

  .footer-content-nav a {
    text-decoration: none;
    list-style: none;
    line-height: 40px;
    text-indent: 20px;
    color: white;
    transition: transform 0.5s ease;
  }

  .footer-content-nav a:hover {
    color: #0385ff;
    transform: translatey(-5px);
  }

  .footer-content-nav li {
    cursor: pointer;
  }

  .footer-content-contact a {
    list-style: none;
    text-decoration: none;
    color: white;
    text-indent: 20px;
    transition: color 0.5s ease;

  }

  .footer-content-contact a:hover {
    color: #0385ff;
  }

  .footer-content-legal-link a {
    text-decoration: none;
    color: white;
    text-align: justify;

  }

  .footer-content-legal-link li {
    list-style: none;
    text-indent: 20px;
    text-align: justify;
    transition: transform 0.5s ease;

  }

  .footer-content-legal-link li:hover {
    color: #0385ff;
    transform: translatey(-5px);
  }

  .footer-content-legal-link a {
    line-height: 70px;
    cursor: pointer;
    transition: transform 0.5s ease;
    /* color: white; */

  }

  .footer-content-legal-link a:hover {
    color: #0385ff;
    transform: translatey(-5px);
  }

  .footer-copy {
    text-align: center;
    background-color: #1C1C1C;
    color: white;
  }


  @media (max-width: 768px) {
    .header-cls img {
      width: 40%;
    }

    .menu-icons {
      display: none;
    }

    .sponsor-grid {
      gap: 30px;
    }

    .sponsor-grid img {
      height: 60px;
    }

    .testimonial {
      flex: 0 0 100%;
    }

    .testimonial-container {
      gap: 10px;
    }

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

    .contact-grid {
      grid-template-columns: 1fr;
      gap: 10px;
    }

    .contact-grid-l form {
      grid-template-columns: repeat(2, 50%);

    }

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

  }

  @media (max-width:768px) {
    .menu-items {
      flex-direction: column;
      background: black;
      position: fixed;
      top: 0;
      right: -350px;
      width: 250px;
      height: auto;
      padding: 60px 20px;
      transition: right 0.5s ease;
      z-index: 3999;
      color: #0385ff;
    }

    .btn-close {
      display: block;
      color: rgb(0, 0, 0);
      background-color: #0385ff00;
      cursor: pointer;
      border-color: #00000000;
    }

    .hamburger {
      display: block;
      margin-right: 30px;
      cursor: pointer;
      color: var(--black);

    }

    .menu-items a {
      color: white;
    }

    .menu-items.show {
      right: 0;
      display: flex;
      flex-direction: column;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: flex-start;
      align-content: flex-start;
      z-index: 1000;
    }

    .hamburger:hover {
      color: #b82e5e;
    }

    .home-select {
      left: 50% !important;

    }

    .overlay {
      top: 75%;
      left: 50%
    }

    .menu-icons {
      display: none;
    }

    .menu-items {
      display: none;
    }

  }

  @media (max-width:978px) {
    .menu-items a {
      font-size: 14px !important;
    }
  }

  @media (max-width:468px) {

    .about-right-content {
      margin: 10px;
    }

    .about-right-content p {
      font-size: 14px;
      line-height: 40px;
    }

    .about-right-content button {
      width: 40%;
      cursor: pointer;
    }

    .items-card img {
      width: 100%;
      height: 100%;
      margin: 20px;
      border-radius: 20px;
      transition: transform 0.4s ease;

    }

    .sponser-content {
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));

      grid-gap: 20px;
    }

    .sponser-content {
      grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      gap: 20px;
      animation: scroll-left 55s linear infinite;
    }

    .contact-grid {
      width: 100%;
      margin-left: 4%;
    }

    .contact-grid-l form {
      grid-template-columns: 1fr;
    }

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

    .footer-content-company {
      margin-left: 10%;
    }

    .footer-content-contact {
      margin-left: 10%;
    }

    .footer-content-legal-link {
      margin-left: 10%;
    }

    .footer-content-nav {
      margin-left: 10%;
    }

    .footer-grid {
      justify-items: start;
    }

    .theme-toggle {
      position: fixed;
      bottom: 40px;
      right: 20px;
    }

    .hamburger {
      margin-right: 2px;
    }
  }

  .contact-us {
    overflow-x: hidden;

  }

  .contact-head {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    height: 100%;
    margin-left: 5%;
    overflow: hidden;
  }

  .contact-message {
    display: flex;
    flex-direction: column;
    margin-left: 2%;
    gap: 0px;
    width: 100%;
  }

  .contact-message h1 {
    color: var(--black);
  }

  .contact-message p {
    color: var(--black);
  }

  .contact-inputs {
    display: flex;
    flex-direction: column;
    gap: 30px;

  }

  .contact-inputs input {
    padding: 14px 14px 14px 50px;
    border: 1px solid var(--input-border);
    border-radius: 10px;
    font-size: 1rem;
    width: 60%;
  }

  .contact-inputs textarea {
    padding: 14px 14px 14px 50px;
    border: 1px solid var(--input-border);
    border-radius: 10px;
    font-size: 1rem;
    width: 60%;
  }

  .contact-inputs button {
    padding: 12px;
    width: 30%;
    border: 1px solid rgba(0, 0, 0, 0.005);
    background-color: var(--contact-btn);
    color: white;
    transition: all 0.5s ease;
    cursor: pointer;
    margin-bottom: 1%;
    border-radius: 10px;
  }

  .contact-inputs button:hover {
    transform: translateX(10px);
    background-color: var(--contact-btn-hov);
    color: white;
  }

  .contact-hr {
    height: 2px;
    background: var(--hr);
    width: 10%;
    margin: 20px auto;
    margin-left: 0%;
    margin-right: auto;
    margin-top: 0%;
    margin-bottom: auto;
  }

  .contact-maps h1 {
    color: var(--black);
  }

  .contact-maps iframe {
    width: 90%;
    height: 400px;
    border: 0;
    border-radius: 16px;
    margin: 20px 0;
    background: var(--map-linear-g);
    padding: 8px;
    border-radius: 18px;
  }

  iframe.map:hover {
    transform: scale(1.01);
    transition: 0.3s ease;
  }



  .reach-container {
    margin-top: 10%;
    display: flex;
    flex-direction: column;
    background: var(--reach-container);
    color: var(--white);
    height: auto;
    border: 20px solid;
    border-radius: 35px;
    margin-left: 5%;
    margin-right: 5%;
    gap: 20px;
    padding-bottom: 20px;
    overflow-x: hidden;
  }

  .reach-bottom-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    gap: 80px;
    margin-left: 5%;

  }

  .reach-top-container {
    margin-left: 5%;
  }

  .reach-top-container h4 {
    width: auto;
    padding: 6px;
    font-size: 26px;
    color: #00b0b3;
  }

  .reach-top-container p,
  h3 {
    color: white;
  }

  .reach-bottom-container i {
    border-radius: 70%;
    border: 2px solid var(--reach-border);
    color: var(--reach-icon);
    width: 15%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .reach-bottom-container span {
    color: white !important;
  }

  .reach-email span {
    margin-bottom: 30%;
    margin: 0;
    padding: 0%;
  }

  .reach-bottom-container h4 {
    font-weight: 600;
    margin: 0%;
    margin-top: 2%;
    margin-bottom: 2%;
    padding: 0%;
    color: white;
  }

  .mailID {
    color: var(--reach-mail);
    cursor: pointer;
  }

  .reach-bottom-container a {
    text-decoration: none;
    color: var(--reach-mail);
  }

  @media (max-width:976px) {
    .reach-bottom-container {
      gap: 60px;
    }

  }

  .social-icons img {
    width: 30px;
    height: 30px;

  }

  .social-icons-img {
    display: flex;
    gap: 30px;
  }

  #backToTop {
    position: fixed;
    bottom: 120px;
    right: 30px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    display: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s;
    z-index: 1999;
  }

  #backToTop:hover {
    background: #444;
    transform: translateY(-5px);
  }

  .menu-item {
    position: relative;
  }

  .home-select {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 160px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;

  }

  .home-select a {
    font-size: 16px !important;
    /* padding: 20px; */
    /* margin: 10px; */
    color: var(--black);

  }

  .menu-item:hover .home-select {
    display: block;
  }

  /* Login and Signup page*/

  .open-btn {
    padding: 8px 12px;
    background: #eb2574;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
  }

  .open-btn:hover {
    background: #1E40AF;
  }

  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
  }

  .modal-content {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    width: 90%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from {
      transform: scale(0.9);
      opacity: 0;
    }

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

  .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #374151;
    cursor: pointer;
    font-weight: bold;
  }

  .close-btn:hover {
    color: #ef4444;
  }

  .card-container {
    display: flex;
    flex-direction: column;
  }

  .image-section img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .form-section {
    padding: 2rem;
  }

  @media(min-width: 768px) {
    .card-container {
      flex-direction: row;
    }

    .image-section {
      width: 50%;
    }

    .image-section img {
      height: 100%;
    }

    .form-section {
      width: 50%;
    }
  }

  @media (max-width:768px) {
    .image-section img {
      height: 150px;
    }

    .form-section {
      padding: 1rem;
    }
  }

  @media (max-width:478px) {
    .image-section img {
      display: none;
    }

    .form-section {
      background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./asstes/login-bg.jpg');
      background-position: center center;
      background-size: cover;
      color: white !important;
    }

    .form-section p {
      color: white !important;
    }

    .form-section a {
      color: #ff0084 !important;
      font-weight: 600;
    }
  }

  .form-wrapper {
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .form-hidden {
    opacity: 0;
    transform: scale(0.95);
    position: absolute;
    pointer-events: none;
    width: 100%;
  }

  .form-visible {
    opacity: 1;
    transform: scale(1);
    position: relative;
    pointer-events: auto;
  }

  .form-section h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .form-section p {
    margin-bottom: 1rem;
    color: #4B5563;
  }

  form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  label {
    font-size: 0.9rem;
  }

  .form-input {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
  }

  .submit-btn {
    background: #111827;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
  }

  .submit-btn:hover {
    background: #000;
  }

  .form-switch-text {
    text-align: center;
    margin-top: 1rem;
  }

  .form-section a {
    color: #2563EB;
    text-decoration: none;
  }

  .form-section a:hover {
    text-decoration: underline;
  }

  .input-group {
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
  }

  .input-group label {
    font-weight: 500;
    margin-bottom: 0.3rem;
  }

  .input-group input {
    padding: 0.7rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
  }

  .input-group.error input {
    border-color: #ef4444;
    background-color: #fef2f2;
  }

  .input-error {
    border: 1px solid red;
  }

  .error-message {
    color: red;
    font-size: 0.8rem;
    margin-top: 4px;
    display: block;
  }

  #user-icon {
    position: relative;
    display: inline-block;
  }

  .user-logo {
    width: 55px;
    height: 55px;
    border-radius: 10%;
    background-color: #42e1fd;
    color: white;
    font-weight: bold;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.103);
    margin-right: 10px;
  }

  .user-tooltip {
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 100px;
    opacity: 0;
    z-index: 1000;
    visibility: hidden;
    transition: opacity 0.5s ease;
  }

  @media (max-width:478px) {
    .user-tooltip {
      left: 0;
    }
  }

  #user-icon:hover .user-tooltip {
    /* display: block; */
    opacity: 1;
    visibility: visible;
  }

  #logout-btn {
    margin-top: 8px;
    background: #ff4b2b;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    font-weight: bold;
    transition: background 0.3s ease;
  }

  #logout-btn:hover {
    background: #ff1a1a;
  }



  .toast {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background: #4CAF50;
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 12px;
    position: fixed;
    z-index: 1500;
    left: 50%;
    bottom: 30px;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.5s, bottom 0.5s;
  }

  .toast.show {
    visibility: visible;
    opacity: 1;
    bottom: 50px;
  }