:root {
  --main-color: #cc2025;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
}
.top-bar {
  background-color:black;
  color: rgb(255, 255, 255);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
}
.contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact-info a{
  text-decoration: none;
  color: white;
}
.contact-info i {
  margin-right: 5px;
}
.social-icons {
  display: flex;
  gap: 10px;
}
.social-icons a {
  color: var(--main-color);
  text-decoration: none;
  font-size: 18px;
}
.contact-info i{
  color: var(--main-color);
  text-decoration: none;
  font-size: 18px;
}
.contact-info a{
  font-size: 18px;
}
header{
  background-color: rgb(255, 255, 255);
  padding: 10px 40px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 4px 20px rgba(0,0,0,0.1);
}
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px; /* Adjust as needed */
  align-items: center;
  margin-right: 10px;
}
.logo span{
  font-size: 1.3rem;
   color: var(--main-color);
    font-family: 'sans-serif' ;
 position: relative;
  font-weight: 600;

}
nav{
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-links{
  display: flex;
  gap: 30px;
}
li{
  list-style: none;
}
a {
  text-decoration: none;
  color: black;

  font-size: 18px;
  font-weight:400;
}
ul span{
  color: var(--main-color);
}

.dropdown {
  position: relative;
  display: inline-block;
  display: flex;
  align-items: center;
  background: #3a36362c;
  padding: 10px 15px;
  cursor: pointer;
  user-select: none;
}

.dropdown-icon {
  display: inline-block;
  margin-right: 8px;
  font-size: 16px;
}

.dropdown-arrow {
  margin-left: 8px;
}

.dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  border-radius: 5px;
  padding: 10px 0;
  width: 194px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  color: #333;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background-color: #f0f0f0;
}
.bx-category{
  font-size: 20px;
}
.bx-chevron-down{
  font-size: 20px;
 
}
.dropdown h4{
  font-size: 18px;
  font-weight: 200;
  color: black;
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}
.search-bar i{
  font-size: 25px;
}


.hero-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60vh;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.carosal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60vh;
}

.carosal-item {
  display: none;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.carosal-item.active {
  display: flex;
}

.carosal-item img {
  width: auto;
  height: 70%;
}

.carosal-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  position: relative;
  opacity: 0;
}

.carosal-text h1 {
  font-size: 3rem;
  font-weight: 600;
}

.carosal-text p {
  font-size: 1.2rem;
  font-weight: 400;
}

button {
  background-color: rgba(255, 208, 0, 0.945);
  color: rgb(0, 0, 0);
  width: 200px;
  height: 50px;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 15px;
  font-weight: 700;
  transition: background-color 0.3s ease;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
}

.carousel-controls button {
  background-color: rgba(255, 0, 0, 0);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  width: 50px;
}

/* Background images */
.bg1 {
  background: url('./images/dubai-hd.png') no-repeat center center/cover;

  
}
.bg2 {
  background: url('./images/abstract-background-3840x2160-11753.png') no-repeat center center/cover;
}
.bg3 {
  background: url('./images/web-1012467_1920.jpg') no-repeat center center/cover;
}

/* Animation */
@keyframes slideFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.carosal-text.animate {
  animation: slideFadeIn 1s ease forwards;
}


  .card-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
   


    }

    .card {
      flex: 1 1 450px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 60px;
      color: white;
      position: relative;
      min-height: 300px;

    }

    .card.red {
     background: url(./images/1715103456-4888.jpg.avif) no-repeat center center/cover;
      color: rgb(255, 255, 255);
      margin: 20px;
    }

    .card.purple {
      background: url(./images/banner3.jpg) no-repeat center center/cover;
      margin: 20px;
    }


    
    .card.blue {
      background: linear-gradient(to right, #0a4bff, #0cdbff);
      margin: 20px;
    }

    .card.green {
      background: linear-gradient(to right, #9e01ff, #ff6a06);
      margin-top: 20px;
      margin-bottom: 20px;
      margin-right: 20px;
    }

    .card-content {
      max-width: 50%;
    }

    .card h4 {
      font-size: 1rem;
      margin-bottom: 10px;
      opacity: 0.85;
    }

    .card h1 {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 10px;
       
    }

    .card p {
      font-size: 1rem;
      margin-bottom: 20px;
    }

    .card button {
      background: rgb(255, 217, 0);
      color: black;
      padding: 10px 25px;
      border: none;
      border-radius: 6px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s;
    }

    .card button:hover {
      background: #ddd;
    }

    .card img {
      max-height: 250px;
      max-width: 50%;
      object-fit: contain;
    }

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

      .card-content,
      .card img {
        max-width: 100%;
      }
    }
.service-background{
  background-color: #4e4b4b3d;
  width: 100%;
  height: auto;
}
.service-card-1{
  display: flex;
  justify-content: center;
  align-items: center;
 padding: 10px;
}
.service-card-1 i{
  font-size: 60px;
    font-weight: 300;
}
.service-card-1 h4{
  font-size: 20px;
  font-weight: 600;
}
.service-container{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}


.card-box{
   padding: 0 30px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
 h2 {
  font-size: 24px;
  font-weight: bold;
  margin-top: 10px;
}

.tabs {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  justify-content: center;
}

.tab {
  padding: 10px 20px;
  background: #f2f2f2;
  cursor: pointer;
  border-radius: 5px;
}

.tab.active {
  background: #f8c400;
  color: #000;
}

.products {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1400px;
}

.product {
  width: 230px;
  border: 1px solid #eee;
  border-radius: 10px;
  text-align: center;
  padding: 15px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
  background-color: #fff;
}

.product:hover {
  transform: translateY(-5px);
}

.product img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 10px;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: red;
  color: white;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 20px;
}

.rating {
  color: #f8c400;
  margin: 5px 0;
}

.price {
  font-size: 16px;
  margin: 5px 0;
}

.old-price {
  text-decoration: line-through;
  color: gray;
  font-size: 14px;
  margin-left: 5px;
}

.btn {
  margin-top: 10px;
  display: inline-block;
  background: #f8c400;
  color: #000;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 14px;
  text-decoration: none;
  font-weight: bold;
}

.btn i {
  margin-right: 5px;
}




.banner {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 20px 0;
  background-size: cover;
  background-position: center;
}

/* Video Styling */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 500px;
  min-width: 100%;
  min-height: 500px;
  object-fit: cover;
  z-index: 0;
  opacity: 0.8;
}

/* Overlay Styling */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Slightly darker for better readability */
  z-index: 1;
}

/* Content Styling */
.content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

.small-text {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.highlight-text {
  font-size: 32px;
  font-weight: 700;
  color: #ffb400;
  margin-bottom: 20px;
}

.shop-btn {
  background-color: #fff;
  color: #000;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.shop-btn:hover {
  background-color: #f0f0f0;
}


.marquee {
  display: flex;
  block-size: var(--marquee-item-height);
  margin-block: var(--marquee-item-height);
  position: relative;
  overflow-x: hidden;
  mask-image: linear-gradient(
    to right,
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 20%,
    hsl(0 0% 0% / 1) 80%,
    hsl(0 0% 0% / 0)
  );
}

.marquee--8 {
  --marquee-item-width: 100px;
  --marquee-item-height: 100px;
  --marquee-duration: 36s;
  --marquee-items: 8;
}

.marquee--3 {
  --marquee-item-width: 150px;
  --marquee-item-height: 150px;
  --marquee-duration: 24s;
  --marquee-items: 3;
}

.marquee--6 {
  --marquee-item-width: 166px;
  --marquee-item-height: 100px;
  --marquee-duration: 32s;
  --marquee-items: 6;
}

.marquee__item {
  --marquee-item-offset: max(
    calc(var(--marquee-item-width) * var(--marquee-items)),
    calc(100% + var(--marquee-item-width))
  );
  --marquee-delay: calc(var(--marquee-duration) / var(--marquee-items) * (var(--marquee-items) - var(--marquee-item-index)) * -1);
  position: absolute;
  inset-inline-start: var(--marquee-item-offset);
  transform: translateX(-50%);
  animation: go linear var(--marquee-duration) var(--marquee-delay, 0s) infinite;
}

.marquee__item:nth-child(4n) {
  border-top-right-radius: 1rem;
}

.marquee__item:nth-child(4n + 1) {
  border-bottom-right-radius: 1rem;
}

.marquee__item:nth-child(4n + 2) {
  border-bottom-left-radius: 1rem;
}

.marquee__item:nth-child(4n + 3) {
  border-top-left-radius: 1rem;
}

.marquee--8 .marquee__item:nth-of-type(1) {
  --marquee-item-index: 1;
}

.marquee--8 .marquee__item:nth-of-type(2) {
  --marquee-item-index: 2;
}

.marquee--8 .marquee__item:nth-of-type(3) {
  --marquee-item-index: 3;
}

.marquee--8 .marquee__item:nth-of-type(4) {
  --marquee-item-index: 4;
}

.marquee--8 .marquee__item:nth-of-type(5) {
  --marquee-item-index: 5;
}

.marquee--8 .marquee__item:nth-of-type(6) {
  --marquee-item-index: 6;
}

.marquee--8 .marquee__item:nth-of-type(7) {
  --marquee-item-index: 7;
}

.marquee--8 .marquee__item:nth-of-type(8) {
  --marquee-item-index: 8;
}

.marquee--3 .marquee__item:nth-of-type(1) {
  --marquee-item-index: 1;
}

.marquee--3 .marquee__item:nth-of-type(2) {
  --marquee-item-index: 2;
}

.marquee--3 .marquee__item:nth-of-type(3) {
  --marquee-item-index: 3;
}

.marquee--6 .marquee__item:nth-of-type(1) {
  --marquee-item-index: 1;
}

.marquee--6 .marquee__item:nth-of-type(2) {
  --marquee-item-index: 2;
}

.marquee--6 .marquee__item:nth-of-type(3) {
  --marquee-item-index: 3;
}

.marquee--6 .marquee__item:nth-of-type(4) {
  --marquee-item-index: 4;
}

.marquee--6 .marquee__item:nth-of-type(5) {
  --marquee-item-index: 5;
}

.marquee--6 .marquee__item:nth-of-type(6) {
  --marquee-item-index: 6;
}

@keyframes go {
  to {  
    inset-inline-start: calc(var(--marquee-item-width) * -1);
  }
}


.footer{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #1d1c1c;
  color: #ccc;
}
.footer-box {
  background-color: #1d1c1c;
  padding: 50px 80px;
}

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

.footer-logo h2 {
  color: white;
  font-size: 28px;
  margin-bottom: 0;
}

.footer-logo .highlight {
  color: orange;
}

.footer-logo p {
  margin: 8px 0;
  font-size: 14px;
}

.footer-logo .phone {
  color: orange;
  font-weight: bold;
}

.social-icons {
  margin-top: 10px;
}



.footer-links h4 {
  color: orange;
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
  font-size: 14px;
  cursor: pointer;
}

.footer-links .highlight-text {
  color: orange;
}

 #backToTop {
      width: 50px;
      height: 50px;
      background-color: orange;
      color: black;
      font-size: 24px;
      display: none;
      justify-content: center;
      align-items: center;
      position: fixed;
      bottom: 20px;
      right: 20px;
      border-radius: 5px;
      cursor: pointer;
      z-index: 1000;
      transition: opacity 0.3s ease;
    }
    #backToTop:hover {
      opacity: 0.8;
    }


    
    .home-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      max-width: 1200px;
      gap: 10px;
      justify-items: center;
      margin: 50px;
    }

    .home-card {
      border: 1px solid #eee;
     
      overflow: hidden;
      width: 300px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .home-card img {

      height: 220px;
      object-fit: cover;
      border-bottom: 2px solid #eee;
    }

    .button {
      background-color: #000000;
      color: white;
      text-align: center;
      padding: 15px 0;
      font-weight: bold;
      text-transform: uppercase;
      font-size: 14px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .button:hover {
      background-color: #ffee00;
      color: #000000;
    }

    @media (max-width: 1000px) {
      .container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .container {
        grid-template-columns: 1fr;
      }
    }

    /* Existing styles remain unchanged above */

@media (max-width: 1000px) {
  /* Adjust header layout for tablets and smaller screens */
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  /* Logo adjustments */
  .logo {
    flex-direction: column;
    align-items: center;
  }

  /* Navigation menu adjustments */
  nav {
    width: 100%;
    margin-top: 10px;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 15px;
  }

  /* Dropdown menu adjustments */
  .dropdown {
    width: 100%;
    justify-content: space-between;
  }
  #categoryMenu {
    width: 100%;
  }

  /* Hero carousel adjustments */
  .carosal {
    flex-direction: column;
  }
  .carosal-item {
    flex-direction: column;
  }
  .carosal-text {
    max-width: 100%;
    text-align: center;
  }
  .carosal-text h1 {
    font-size: 2rem;
  }
  /* Buttons inside carousel */
  .carosal-text button {
    width: 100%;
    max-width: 250px;
  }

  /* Card container adjustments */
  .card-container {

    align-items: center;
  }
  /* Cards adjustments */
  .card {
    flex-direction: column;
   text-align: center;
  

  }
  .card img {
    max-height: 200px;
    margin-bottom: 15px;
  }
  /* Product grid adjustments */
  .home-container {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 20px;
  }
  /* Product card adjustments */
  .product {
    width: 100%;
  }
  /* Marquee adjustments */
  .marquee {
    flex-direction: column;
  }

  /* Footer adjustments */
  
}

/* For smaller mobile screens */
@media (max-width: 600px) {
  /* Further reduce font sizes */
  header {
    padding: 10px 15px;
  }
.logo {
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical centering */
  align-items: center;     /* horizontal centering */
  text-align: center;
}

.logo span {
  font-size: 10px;
  text-align: center;
  display: block;
  width: 100%;
  margin-top: 5px;
}
.search-bar {
    display: none; /* Hide search bar on mobile */
  }
  
  .logo span {
    font-size: 10px;
    text-align: center;
    padding-bottom: 30px;
  }
.carosal-text {
    font-size: 1.2rem; /* Adjust carousel text size for mobile */
    position: relative;
    top: 50px; /* Adjust position for mobile */
  }
  .carosal-text p {
    font-size: 0.9rem; /* Adjust paragraph size for mobile */
  }
  .carosal-text h1 {
    font-size: 1.5rem; /* Adjust heading size for mobile */
  }
  .carosal-text button {
    width: 100%;
    max-width: none; /* Remove max-width for buttons on mobile */
  }
   .carosal-item img {
    width: 300px;
    height: 300px; /* Adjust image size for mobile */
    }
  
  .card-container {
    flex-direction: column;
    align-items: center;
  }
  .card {
    width: 100%;
    padding: 20px;
    margin: 10px;
}
 

  /* If you want to implement a hamburger menu, additional JS and CSS are required */

  /* Adjust hero carousel text and buttons */
  .carosal-text h1 {
    font-size: 1.5rem;
  }

  /* Buttons */
  button, .shop-btn {
    width: 100%;
    max-width: 100%;
  }

  /* Product grid for mobile */
  .home-container {
    grid-template-columns: 1fr;
  }
  .top-bar{
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
  }

  .card-container{
    flex-direction: column;
    align-items: center;
    width: 90%;
  }
  .card.purple  img{
    width: 100%;
    height: 150px; /* Adjust image size for mobile */
  }
  .card.green img{
    width: 100%;
    height: 150px; /* Adjust image size for mobile */
  }
  @media (max-width: 600px) {
  .logo {
    flex-direction: column;         /* Stack image and text vertically */
    justify-content: center;
    align-items: center;            /* Center content inside .logo */
    margin: 0 auto;                 /* Center the .logo itself */
    text-align: center;
  }

  .logo img {
    height: 30px;                   /* Smaller logo for mobile */
    margin-right: 0;                /* Remove space between image and text */
    margin-bottom: 5px;             /* Add space below image */
  }

  .logo span {
    font-size: 12px;                /* Slightly smaller text */
    padding-bottom: 5px;            /* Optional spacing */
  }
  .dropdown h4{
display: none;
  }
  .dropdown .dropdown-arrow {
    display: none; /* Hide dropdown icon on mobile */
  }
  .dropdown{
    width: 100%;
  }
  .dropdown-menu{
    width: 100%; /* Make dropdown menu full width */
    left: 0; /* Align to the left */
  }
  .social-icons{
    display: none;
  }
  .contact-flex{
display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contact-info{
    flex-direction:row;
    align-items: center;
   
  }
}
}

.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
  color: black;
}

.nav-container {
  display: flex;
}

@media (max-width: 768px) {
  .nav-container {
    display: none;
    flex-direction: column;
    background-color: #ffc400;
    position: absolute;
    top: 230px;
    left: 26px;
    width: 80%;
    z-index: 1000;

  }

  .nav-container.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    padding: 0;
    margin: 0;
  }

  .nav-links li {
    list-style: none;
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
  }
}


@media (max-width: 1000px) {
  .logo {
    flex-direction: column;         /* Stack image and text vertically */
    justify-content: center;
    align-items: center;            /* Center content inside .logo */
    margin: 0 auto;                 /* Center the .logo itself */
    text-align: center;
  }

  .logo img {
    height: 30px;                   /* Smaller logo for mobile */
    margin-right: 0;                /* Remove space between image and text */
    margin-bottom: 5px;             /* Add space below image */
  }

  .logo span {
    font-size: 12px;                /* Slightly smaller text */
    padding-bottom: 5px;            /* Optional spacing */
  }
  .dropdown h4{
display: none;
  }
  .dropdown .dropdown-arrow {
    display: none; /* Hide dropdown icon on mobile */
  }
  .dropdown{
    width: 100%;
  }
  .dropdown-menu{
    width: 100%; /* Make dropdown menu full width */
    left: 0; /* Align to the left */
  }
  .social-icons{
    display: none;
  }
  .contact-flex{
display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contact-info{
    flex-direction:row;
    align-items: center;
   
  }
}


@media (max-width: 1000px) {
  .nav-container {
    display: none;
    flex-direction: column;
    background-color: #ffc400;
    position: absolute;
    top: 230px;
    left: 26px;
    width: 80%;
    z-index: 1000;

  }
  .search-bar{
    display: none; /* Hide search bar on mobile */
  }

  .nav-container.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    padding: 0;
    margin: 0;
  }

  .nav-links li {
    list-style: none;
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
  }
}


@media (max-width: 1024px) {
  .nav-container {
    display: none;
    flex-direction: column;
    background-color: #ffc400;
    position: absolute;
    top: 135px;
    left: 0px;
    width: 100%;
    z-index: 1000;
  }
  nav li{
    width: 100%;
    justify-content: space-between;
  }
  .search-bar{
    display: none; /* Hide search bar on mobile */
  }

  .nav-container.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    padding: 0;
    margin: 0;
  }

  .nav-links li {
    list-style: none;
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
  }
}
@media (max-width: 984px) {
  .nav-container {
    display: none;
    flex-direction: column;
    background-color: #ffc400;
    position: absolute;
    top: 290px;
    left: 0px;
    width: 100%;
    z-index: 1000;
  }
}



@media (min-width: 600px) and (max-width: 993px) {
  /* Your custom styles for screens between 600px and 993px */

  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  .logo {
    flex-direction: column;
    align-items: center;
  }

  .logo img {
    height: 40px; /* or adjust as needed */
  }

  nav {
    width: 100%;
    margin-top: 10px;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 15px;
  }

  /* Adjust your other components like cards, carousel, etc. */
  .card {
    flex-direction: column;
    padding: 20px;
  }

  /* Resize images or text if necessary */
  .carosal-text h1 {
    font-size: 2rem; /* smaller size for tablets */
  }

  /* Any other adjustments specific for this range */
}