
*
{
  padding: =0px;
}
body{
    background-color: gray;
    
}

/* 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 */


.productGallaryContainer{
  background-color: green;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items:center;
  align-content:center;
  gap: 30px;
  
}
.imageWrapper {
  position: relative;
  margin: 10px;
}

.content{
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center; /* Center the text horizontally */
    word-wrap: break-word; /* Allow the text to wrap */
    padding: 10px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.5s ease;
    
}

.content:hover{
  opacity: 1;
}
.content h1{
  color: white;
  
  
}
.content p{
  color: white;
  left: -10px;
  top: -50px;
  font-size: 20px;
  margin: 50px;
  white-space: normal; /* Allow text to wrap */
  line-height: 1.5; /* Adjust line spacing */
 

}

.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;
	height:70vh;
  }

  .image1 {
    flex: 1 1 calc(33.33% - 20px);
	
    margin-left: 5px;
    width: 250px; /* Set the width of the images */
    height: 200px; /* Maintain aspect ratio */
    object-fit: cover;
    display: flex;

	
  }
}

/* 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 */


  .designDevloped{
  background-color: white;
  color: navy;
  font-size: 16px;
  text-align: center;
  margin-top: 20px;
}