*
{
  padding: =0px;
}
body{
    background-color: #e5b2b2;
    
}

/* MENU START FROM HERE */
.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: navy;
}

.phone,
.links,
.email {
  margin: 10px;
  color: white;
}

.links {
  flex: 2;
  display: flex;
  justify-content: center;
  gap: 40px; /* Adjust the space between menu links */
}

.links a {
  margin: 0 10px;
  text-decoration: none;
}

a {
  text-decoration: none;
  color: white;
  font-size: 22px; /* Adjust text size of the menu links */
}

a:hover {
  color: black; /* Change color on hover */
}

.links a.active {
  color: #ff7f50; /* Change to your desired color */
}

/* Media query for screens smaller than 768px (mobile devices) */
@media screen and (max-width: 768px) {
  .menu {
    display: block; /* Stack elements vertically */
    text-align: center;
  }

  .phone,
  .links,
  .email {
    display: block;
    margin: 10px 0;
  }

  .links {
    flex-direction: column; /* Stack links vertically on mobile */
    gap: 10px; /* Adjust gap between links for mobile */
  }

  .links a {
    display: block;
    margin: 5px 0;
  }
}
/* END MENU HERE */

/* CMP NAME START FROM HERE */
.cmpName {
  /*background-color: gray;*/
  color: navy;
  font-size: 36px;
  text-align: center; /* Horizontally centers the text */
  display: flex;
  justify-content: center; /* Centers content horizontally in the div */
  align-items: center; /* Centers content vertically in the div */
  height: 6vh; /* This makes the div fill the entire viewport vertically */
  /*overflow: hidden; /* Hide overflowing text */
  white-space: nowrap; /* Prevent text from wrapping */

  /* Scroll text animation */
  animation: scrollText 10s linear infinite;
  animation-delay: 1s; /* This delays the scrolling for 3 seconds */
}

@keyframes scrollText {
  0% {
    transform: translateX(0%); /* Start outside the right of the viewport */
  }

  100% {
    transform: translateX(-50%); /* End outside the left of the viewport */
  }
}

/* Media Query for screens smaller than 768px (e.g., tablets and phones) */
@media (max-width: 768px) {
  .cmpName {
    font-size: 24px; /* Decrease font size */
    height: 8vh; /* Increase height for better spacing */
  }
}

/* Media Query for screens smaller than 480px (e.g., phones) */
@media (max-width: 480px) {
  .cmpName {
    font-size: 18px; /* Further decrease font size */
    height: 10vh; /* Increase height further for small screens */
    flex-direction: column; /* Stack content vertically if needed */
  }
}
/* END CMP NAME HERE */

/* PICTURE FRAME START HERE */
.container {
  background-color: navy;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70vh;
  gap: 90px;
  flex-direction: column;
}

.top {
  display: flex;
  align-items: center;
  gap: 50px;
}

.arrow {
  height: 50px;
  cursor: pointer;
}

.right {
  transform: rotate(180deg);
}

.frame {
  width: 800px;
  height: 400px;
  overflow: hidden;
  box-shadow: -1px 1px 10px rgba(0, 0, 0, 0.5);
  margin-top: 60px;
}

.slider {
  display: flex;
  position: relative;
  align-items: center;
  transition: all 1s ease;
}

.image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-top: -170px;
}

.bottom {
  display: flex;
  gap: 30px;
}
.button {
  width: 15px;
  height: 15px;
  border: 1px solid white;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -70px;
}

/* Media Query for smaller screens (tablets, mobile) */
@media screen and (max-width: 768px) {
  .container {
    gap: 50px;
    height: 60vh;
  }

  .top {
    gap: 30px;
  }

  .arrow {
    height: 40px;
  }

  .frame {
    width: 100%;
    height: 300px;
    margin-top: 30px;
  }

  .image {
    margin-top: -120px;
  }
}

/* Media Query for very small screens (mobile) */
@media screen and (max-width: 480px) {
  .container {
    gap: 20px;
    height: 50vh;
    flex-direction: column;
  }

  .top {
    gap: 15px;
  }

  .arrow {
    height: 30px;
  }

  .frame {
    width: 100%;
    height: 250px;
  }

  .image {
    margin-top: -80px;
  }
}

/* END PICTURE FRAME HERE */

/* COMPANY DESCRIPTION START FROM HERE */

.company-description {
  font-size: 22px; /* Default size for larger screens */
  line-height: 1.6;
  padding: 10px;
  color: black;
  justify-content: center;
  position: relative;
}

@media screen and (max-width: 768px) {
  .company-description {
    font-size: 14px; /* Smaller font size for tablet devices */
    padding: 8px;
  }
}

@media screen and (max-width: 480px) {
  .company-description {
    font-size: 12px; /* Even smaller font size for mobile devices */
    padding: 5px;
  }
}

/* END COMPANY DESCRIPTION HERE */


/* PRODUCT GALERY HEADER START HERE */
.productGallary {
  background-color: rgb(216, 101, 101);
  color: navy;
  font-size: 36px;
  text-align: center; /* Horizontally centers the text */
  display: flex;
  justify-content: center; /* Centers content horizontally in the div */
  align-items: center; /* Centers content vertically in the div */
  height: 6vh; /* This makes the div fill the entire viewport vertically */
  overflow: hidden; /* Hide overflowing text */
  white-space: nowrap; /* Prevent text from wrapping */
}

/* Media Query for screens smaller than 768px (e.g., tablets and phones) */
@media (max-width: 768px) {
  .productGallary {
    font-size: 24px; /* Decrease font size */
    height: 6vh; /* Increase height for better spacing */
  }
}

/* Media Query for screens smaller than 480px (e.g., phones) */
@media (max-width: 480px) {
  .productGallary {
    font-size: 18px; /* Further decrease font size */
    height: 4vh; /* Increase height further for small screens */
    flex-direction: column; /* Stack content vertically if needed */
  }
}
/* END PRODUCT GALERY HEADER HERE */


/* PRODUCT GALERY CONTAINER START FROM HERE */
.productGallaryContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  
  
}

.productGallaryContainer .image1 {
  width: 100%;
  max-width: 200px; /* Set a max width for the images */
  height: auto;
}

@media (min-width: 600px) {
  .productGallaryContainer .image1 {
    max-width: 150px; /* Smaller images on medium screens */
  }
}

@media (min-width: 900px) {
  .productGallaryContainer {
    justify-content: space-around;
  }

  .productGallaryContainer .image1 {
    max-width: 180px; /* Slightly larger images on larger screens */
  }
}

/* Styles for desktop (screen width 1024px and above) */
@media (min-width: 1024px) {
  .productGallaryContainer {
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }

  .image1 {
    flex: 1 1 calc(33.33% - 20px);
  }
}

/* Styles for mobile (screen width below 768px) */
@media (max-width: 768px) {
  .productGallaryContainer {
    flex-direction: column;
    align-items: center;
  }

  .image1 {
    width: 100%;
    margin-bottom: 10px;
  }
}
/* END PRODUCT GALERY CONTAINER HERE */



/* CLIENT HEADER START HERE */
.clients {
  background-color: gray;
  color: navy;
  font-size: 36px;
  text-align: center; /* Horizontally centers the text */
  display: flex;
  justify-content: center; /* Centers content horizontally in the div */
  align-items: center; /* Centers content vertically in the div */
  height: 6vh; /* This makes the div fill the entire viewport vertically */
  overflow: hidden; /* Hide overflowing text */
  white-space: nowrap; /* Prevent text from wrapping */
}

/* Media Query for screens smaller than 768px (e.g., tablets and phones) */
@media (max-width: 768px) {
  .clients {
    font-size: 24px; /* Decrease font size */
    height: 6vh; /* Increase height for better spacing */
  }
}

/* Media Query for screens smaller than 480px (e.g., phones) */
@media (max-width: 480px) {
  .clients {
    font-size: 18px; /* Further decrease font size */
    height: 4vh; /* Increase height further for small screens */
    flex-direction: column; /* Stack content vertically if needed */
  }
}
/* END CLIENT HEADER HERE */

.clientContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.image2 {
    max-width: 100%;
    height: 100px;
    margin: 10px;
}

/* Media query for screens smaller than 768px (tablets and phones) */
@media screen and (max-width: 768px) {
    .clientContainer {
        flex-direction: column;
        align-items: center;
    }

    .image2 {
        width: 70%;
        max-width: 300px;
    }
}

/* Media query for screens smaller than 480px (mobile devices) */
@media screen and (max-width: 480px) {
    .image2 {
        width: 50%;
        max-width: 100px;
    }
}



/* For devices with a screen width of 768px or less (tablets, phones) */
@media only screen and (max-width: 768px) {
  .container {
    width: 100%;
    padding: 10px;
  }
  /* Adjust font sizes, hide large images, etc. */
  h1 {
    font-size: 24px;
  }
}

/* Styles for desktop (screen width 1024px and above) */
@media (min-width: 1024px) {
    .productGallaryContainer {
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
    }

    .image1 {
        flex: 1 1 calc(33.33% - 20px);
    }
}

/* Styles for mobile (screen width below 768px) */
@media (max-width: 768px) {
    .productGallaryContainer {
        flex-direction: column;
        align-items: center;
    }

    .image1 {
        width: 100%;
        margin-bottom: 10px;
    }
}


/* DESIGN AND DEVELOPED START FROM HERE */
.designDevloped {
  background-color: navy;
  color: white;
  font-size: 16px;
  text-align: center;
  height: 5vh;
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
}

@media (max-width: 600px) {
  .designDevloped {
    font-size: 12px; /* Adjust font size for smaller screens */
    height: 4vh; /* Adjust height for smaller screens */
  }
}
/* END DESIGN AND DEVELOPED HERE */


