#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 6s forwards;
  }
  
  @keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
  }


  html{
    scroll-behavior: smooth;
  }
  


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    color: white;
    padding: 10px 20px;
}

.logo img {
    width: 25px; 
    height: auto;
    margin-left: 100px;
}


.center-text {
    flex-grow: 1;
    text-align: center;
    font-size: 18px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin-left: 50px;
}


.right-text {
    font-size: 16px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}


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

    .logo img {
        width: 40px; 
    }

    .center-text {
        margin: 10px 0;
        font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        
    }

    .right-text {
        margin: 10px 0;
        font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 40px; 
    }

    .center-text {
        font-size: 16px;
        font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    }

    .right-text {
        font-size: 14px;
        font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    }
}




.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 10px 20px;
  color: white;
}

.navbar-brand .company-name {
  font-size: 50px;
  font-weight: bold;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.navbar-links {
  display: flex;
  align-items: center;
}

.navbar-links ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-links li {
  margin-left: 20px;
  position: relative;
}

.navbar-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.navbar-links a:hover {
  color: #f39c12;
}

.navbar-links .phone-icon, .navbar-links .bag-icon {
  display: none;
  position: absolute;
  top: -20px;
  font-size: 24px;
}

.navbar-links li:hover .phone-icon {
  display: block;
}

.navbar-links li:hover .bag-icon {
  display: block;
}

.hamburger-menu {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

/* Media Query for smaller devices */
@media screen and (max-width: 768px) {
  .navbar-links {
      display: none;
  }

  .hamburger-menu {
      display: block;
  }

  .navbar-links.active {
      display: block;
      position: absolute;
      top: 60px;
      right: 20px;
      background-color: #333;
      padding: 20px;
      border-radius: 5px;
  }

  .navbar-links ul {
      flex-direction: column;
      font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  }

  .navbar-links li {
      margin: 10px 0;
      font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  }
}





/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(50%); /* Dim the video */
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 1; /* Ensure content is above the video */
    color: white;
}

.hero-title {
    font-size:100px;
    font-weight: bold;
    margin-bottom: 10px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.hero-button {
    padding:20px;
    justify-content: left;
    align-items: left;
    margin-top:10px;
    font-size: 1rem;
    font-weight: bold;
    background-color: #fff;
    color: #000;
    text-decoration:none;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.hero-button:hover {
    transform: translateY(-10px); /* Float the button upwards */
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-button {
        font-size: 0.9rem;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    }

    .hero-subtitle {
        font-size: 1rem;
        font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    }

    .hero-button {
        font-size: 0.85rem;
        padding: 10px 20px;
        font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    }
}





/* About Us section styles */
.about-us {
    background-image: url('your-background-image.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    height: 100vh; /* Full height */
}

/* Content styling */
.about-us .second-section {
    max-width: 800px;
    margin: 0 auto;
}

.about-us h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-decoration: underline;
}

.about-us p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-us h1 {
        font-size: 2.5rem;
        font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    }
    .about-us p {
        font-size: 1rem;
        font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    }
}

@media (max-width: 480px) {
    .about-us h1 {
        font-size: 2rem;
        font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    }
    .about-us p {
        font-size: 0.9rem;
        padding: 0 10px;
        font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    }
}



.background-section {
  background-image: url(''); /* Replace with your image path */
  background-size: cover; /* Makes sure the image covers the section without stretching */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat; /* Ensures the image doesn't repeat */
  height: 400px; /* Height of the section */
  display: flex; /* Flexbox to center content */
  justify-content: center; /* Horizontally centers content */
  align-items: center; /* Vertically centers content */
  padding: 20px; /* Optional padding */
  color: #fff; /* White text color for visibility */
}

.background-section .content {
  text-align: center; /* Centers the content inside */
}

@media (max-width: 768px) {
  .background-section {
      height: 300px; /* Adjust height for smaller screens */
      padding: 10px; /* Less padding for smaller screens */
  }
}

@media (max-width: 480px) {
  .background-section {
      height: 250px; /* Even smaller height on very small screens */
  }
}




.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}

.image-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.image-item:hover img {
  transform: scale(1.1);
}

.image-button {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: #fff;
  color: #000;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 20px;
  opacity: 1;
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif ;
}


.large {
  grid-column: span 2;
}

.medium {
  grid-column: span 1;
}

.small {
  grid-column: span 1;
}

@media (max-width: 768px) {
  .image-gallery {
    grid-template-columns: 1fr;
  }

  .large {
    grid-column: span 1;
  }
}




.section {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  color: white;
}

.background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  display: flex;
  animation: moveBackground 10s ease-in-out infinite;
}


/* Dark Overlay */
.background-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Adjust the 0.5 for darker/lighter effect */
  z-index: 1;
}


.background-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes moveBackground {
  0% { transform: translateX(0); }
  40% { transform: translateX(0); }
  50% { transform: translateX(-50%); }
  90% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.content {
  position: relative;
  z-index: 2;
  text-align: right;
  max-width: 400px;
}

.content h2 {
  font-size: 90px;
  margin-bottom: 10px;
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-weight: bold;
}

.content p {
  font-size: 16px;
  margin-bottom: 20px;
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ff4500;
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-weight: bold;
}

.btn:hover{
  background-color: #fff;
  color: #000;
  text-decoration:underline;
}

@media (max-width: 768px) {
  .section {
      justify-content: center;
      text-align: center;
  }

  .content {
      max-width: 100%;
  }
}





body {
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  background-color: #000;
}

.shipping-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 50px;
  flex-wrap: wrap;
  text-align: center;
}

.shipping-item {
  flex: 1;
  max-width: 250px;
  padding: 20px;
}

.shipping-item .shipping-text {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #fff;
}

.truck-icon, .box-icon {
  font-size: 3rem;
  color: #333;
  animation: move-truck 4s linear infinite;
}

.box-icon {
  font-size: 4rem;
}

@keyframes move-truck {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes open-box {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.box-icon i {
  animation: open-box 4s ease-in-out infinite;
}

@media (max-width: 768px) {
  .shipping-section {
    flex-direction: column;
    padding: 30px;
      font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  }

  .shipping-item {
    margin-bottom: 30px;
      font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  }
}








.floating-images {
    position: relative;
    background-color: #f1f1f1; /* Optional: Background color */
    padding: 20px 0;
    overflow: hidden;
  }
  
  .image-container {
    display: flex;
    animation: floatImages 15s linear infinite;
  }
  
  .image-container img {
    margin-right: 40px; /* Space between images */
    height: 50px; /* Adjust image height */
    object-fit: contain;
  }
  
  @keyframes floatImages {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  /* Responsive Design for Smaller Devices */
  @media (max-width: 768px) {
    .image-container img {
      height: 40px; /* Smaller height for mobile */
      margin-right: 20px; /* Adjust spacing for smaller screens */
    }
  }
  
  @media (max-width: 480px) {
    .image-container img {
      height: 30px; /* Further decrease image height for very small screens */
      margin-right: 10px; /* Reduce spacing between images */
    }
  }



/* General footer styling */
.footer {
  background-color: #000;
  color: white;
  padding: 20px 0;
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

/* Footer content container */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Left side with logo and company name */
.footer-left {
  display: flex;
  align-items: center;
}

.footer-left .logo {
  height: 40px; /* Adjust logo size */
  margin-right: 10px; /* Space between logo and company name */
}

.footer-left .company-name {
  font-size: 18px;
  font-weight: bold;
}

/* Center section for links */
.footer-center {
  display: flex;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.footer-links li {
  margin-right: 20px;
}

.footer-links li a {
  text-decoration: none;
  color: white;
  font-size: 14px;
}

.footer-links li a:hover {
  text-decoration: underline;
}

/* Right section for social media icons */
.footer-right {
  display: flex;
}

.social-media {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-media li {
  margin-left: 10px;
}

.social-media li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
}

.social-media li a:hover {
  color: #1da1f2; /* Example color change on hover */
}

/* Footer bottom section with copyright */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
}

.footer-bottom p {
  font-size: 12px;
  color: #ccc;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-center {
    margin-top: 10px;
  }

  .footer-links {
    flex-direction: column;
  }

  .footer-links li {
    margin-bottom: 10px;
      font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  }

  .footer-right {
    margin-top: 10px;
  }

  .social-media {
    flex-direction: row;
    justify-content: center;
  }

  .social-media li {
    margin-left: 15px;
      font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  }

  .footer-bottom p {
    font-size: 10px;
    color: #ccc;
      font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  }
}
