: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;
  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;
}

.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; /* Hidden initially */
  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;
}
.heading {
  display: flex;
  justify-content: center;
  align-items: center;
max-width: 800px;
  font-size: 2rem;
 text-align: center;
}
.heading h1{
  text-align: center;
  margin: 20px;
  color: rgb(82, 73, 73);
}
.heading span{
  color: var(--main-color);
  font-weight: 600;
}





 .heading-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: auto;
    }

    .image-box {
      flex: 1;
      padding: 10px;
    }

    .image-box img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }

    .stats {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      margin-top: 40px;
      text-align: center;
    }

    .stat-item {
      flex: 1 1 200px;
      margin: 20px 0;
    }

    .stat-item h2 {
      font-size: 2.5rem;
      color: #000;
    }

    .stat-item h2 span {
      color: #f4b400; /* Yellow */
    }

    .stat-item p {
      margin-top: 8px;
      color: #777;
      font-size: 1rem;
    }

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

  .marquee-container {
  background-color: #f4f4f4;
  overflow: hidden;
  white-space: nowrap;
  padding: 40px 0;
  margin-top: 20px;
}

.marquee {
  display: flex;
  animation: scroll-left 20s linear infinite;
}

.marquee ul {
  display: flex;
  margin: 0;
  padding: 0;
}

.marquee ul li {
  list-style: none;
  font-size: 22px;
  color: #000;
  margin: 0 40px;
  white-space: nowrap;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.section-about {
  padding: 40px 60px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.column {
  flex: 1;
}

.column.image img {
  width: 100%;
  border-radius: 4px;
}

.column.text {
  max-width: 600px;
}

.column.half {
  flex: 1;
  min-width: 300px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.checklist li {
  margin-bottom: 10px;
  font-size: 15px;
}

.experiences-works {
  background-color: #f9f9f9;
}

.work-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.work-item .circle {
  background: #ccc;
  color: white;
  font-weight: bold;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 14px;
}


  .about-container {
      display: flex;
      max-width: 1300px;
      margin: 40px auto;
      padding: 20px;
   
    
    }

    .image-section {
      flex: 1;
      padding-right: 20px;
    }

    .image-section img {
      width: 100%;
      border-radius: 8px;
      height: 100%;
    }

    .text-section {
      flex: 1;
    }

    .text-section h2 {
      color: #333;
      margin-bottom: 20px;
      font-size: 2.5rem;
    }

    .text-section p {
      color: #555;
      margin-bottom: 15px;
      font-size: 1.3rem;
    }

    .features {
      list-style: none;
      padding: 0;
    }

    .features li {
      position: relative;
      padding-left: 25px;
      margin-bottom: 10px;
      color: #444;
      font-size: 1.2rem;
      font-weight: 600;
    }

    .features li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: green;
    }



    .marqueee {
  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);
  }
}

    @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 */
}