 
  
  
  
  
   /* introduction  */
  
     
  /* Intro Section General Styling */
  .intro-section {
    width: 100%;
    background-color: #fff;
    padding: 50px 0;
    overflow-x: hidden;
    margin-top: 100px; /* Add top margin */
    margin-bottom: 70px; /* Add bottom margin */
  }
  
  .intro-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    background-color: #fff;
    overflow: hidden;
  }
  
  .intro-text {
    flex: 1;  
    padding-right: 10px;  
  }
  
  .intro-text h1 {
    font-size: 2.5rem;
    color: #1d1c1c;
  }
  
  .intro-text p {
    font-size: 1.2rem;
    color: #242121;
  }
  
  .intro-images {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: #fff;
    overflow: hidden; /* Ensure no overflow */
  }
  
  .image-1 {
    width: 300px;
    height: 350px;
    background-image: url('/images/the\ 3.webp');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    margin-right: 150px; /* Adjust margin for spacing */
  }
  
  .image-2 {
    width: 300px;
    height: 350px;
    background-image: url('/images/the1.PNG');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: absolute;
    top: -40px; 
    right: -30px;
    z-index: 2;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
  }
  
  @media only screen and (max-width: 768px) {
    .intro-container {
      flex-direction: column;
      text-align: center;
    }
  
    .intro-text {
      padding-right: 0;
      margin-bottom: 30px;
    }
  
    .intro-images {
      justify-content: center;
      position: relative;
    }
  
    .image-1,
    .image-2 {
      width: 200px;
      height: 250px;
    }
  
    .image-2 {
      top: -20px;
      right: -20px;
    }
  }
  
  @media only screen and (max-width: 480px) {
    .intro-container {
      padding: 0 10px;
    }
  
    .image-1,
    .image-2 {
      width: 150px;
      height: 200px;
    }
  
    .image-2 {
      top: -15px; 
      right: -15px;
    }
  
    .intro-text h1 {
      font-size: 2rem;
    }
  
    .intro-text p {
      font-size: 1rem;
    }
  }
  
  
  
  
  
  
    /* gallery heading */
  
    .section-container5 {
      display: flex;
      justify-content: center; /* Center horizontally */
      align-items: center;     /* Center vertically */
      min-height: 30vh;      
      padding: 10px;          /* Padding to keep content from touching edges */
      box-sizing: border-box; /* Include padding in width and height */
      background-color: #1f1b1b;
  }
  
  .centered-div5 {
      width: 80%;             /* Responsive width */
      max-width: 600px;      /* Prevent it from getting too wide */
      padding: 20px;         /* Internal padding */
      background-color: #1f1b1b; /* Background color for contrast */
      border-radius: 8px;   /* Rounded corners */
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow for depth */
      text-align: center;   /* Center text inside */
      box-sizing: border-box; /* Include padding and border in the total width/height */
       
  }
  
   
  
  /* Optional: Additional styles for responsiveness */
  @media (max-width: 768px) {
      .centered-div {
          width: 90%;       /* Slightly wider on smaller screens */
      }
  }
  
  
  
  /* why us  */
  
  /* Container for the two divs */
  /* Container for the two divs */
  .responsive-container4 {
    display: flex; /* Align children horizontally */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    align-items: stretch; /* Stretch items to the same height */
    gap: 20px; /* Space between the image and text containers */
    padding: 20px; /* Adjust padding for better spacing */
    background-color: #fff; /* Background color for the container */
    margin-top: 160px; /* Add margin at the top */
    margin-bottom: 160px; /* Add margin at the bottom */
  }
  
  /* Styling for the image container */
  .image-container {
    flex: 1; /* Allow the image container to grow */
    min-width: 200px; /* Minimum width for the image container */
    max-width: 50%; /* Maximum width to keep it responsive */
    overflow: hidden; /* Hide overflowed content */
  }
  
  /* Styling for the image */
  .image-container img {
    width: 100%; /* Ensure the image fills the container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Rounded corners */
    display: block; /* Remove bottom margin/whitespace */
  }
  
  /* Styling for the text container */
  .text-container {
    flex: 1; /* Allow the text container to grow */
    min-width: 200px; /* Minimum width for the text container */
    max-width: 50%; /* Maximum width to keep it responsive */
    color: #000; /* Text color */
    background-color: #fff; /* Background color for text container */
    padding: 20px; /* Padding inside the text container */
    border-radius: 8px; /* Rounded corners */
  }
  
  /* Keyframes for sliding in from left */
  @keyframes slideInLeft {
    0% {
      transform: translateX(-100%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  /* Keyframes for sliding in from right */
  @keyframes slideInRight {
    0% {
      transform: translateX(100%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  /* Initial state of the section before animation */
  .responsive-container4 {
  display: flex;
  opacity: 0;
  transform: translateY(50px); /* Adjust initial position */
  transition: opacity 1s ease-out, transform 1s ease-out; /* Transition properties */
  }
  
  .image-container {
  transform: translateX(-100px); /* Move image from left */
  }
  
  .text-container {
  transform: translateX(100px); /* Move text from right */
  }
  
  /* Add animation class when section is in view */
  .responsive-container4.active {
  opacity: 1;
  transform: translateY(0); /* Reset to original position */
  }
  
  .responsive-container4.active .image-container {
  transform: translateX(0); /* Reset to original position */
  }
  
  .responsive-container4.active .text-container {
  transform: translateX(0); /* Reset to original position */
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
  .responsive-container4 {
      flex-direction: column;
      text-align: center;
  }
  
  .image-container,
  .text-container {
      max-width: 100%;
  }
  
  .image-container img {
      height: auto;
  }
  }
  
  @media (max-width: 480px) {
  .responsive-container4 {
      padding: 10px;
  }
  }
  
  
  /* Initial state of elements before animation */
  .image-container,
  .text-container {
    opacity: 0;
    transform: translateX(0);
    transition: all 0.5s ease-in-out;
  }
  
  /* Apply animation to image container */
  .image-container.animate {
    animation: slideInLeft 1s forwards; /* Animation duration and direction */
  }
  
  /* Apply animation to text container */
  .text-container.animate {
    animation: slideInRight 1s forwards; /* Animation duration and direction */
  }
  
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .responsive-container4 {
        flex-direction: column; /* Stack divs vertically on smaller screens */
        text-align: center; /* Center text on smaller screens */
    }
  
    .image-container,
    .text-container {
        max-width: 100%; /* Full width on small screens */
    }
  
    .image-container img {
        height: auto; /* Maintain aspect ratio on small screens */
    }
  }
  
  @media (max-width: 480px) {
    .responsive-container4 {
        padding: 10px; /* Adjust padding for very small screens */
    }
  }
       
  
    
      /* second gallery */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #1f1b1b;
}

.gallery-section {
  padding: 20px;
  background-color: #1f1b1b;
  overflow: hidden;
}

.horizontal-gallery {
  display: flex;
  gap: 20px;
  width: calc(300px * 25 + 20px * 24); /* Adjust width to fit all 25 images plus gaps */
  justify-content: flex-start;
  padding: 10px 0;
  position: relative;
  animation: scrollImages 30s linear infinite; /* Adjust the duration for scrolling speed */
}

.gallery-item {
  flex: 0 0 300px;
  width: 300px;
  height: 230px;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}

@keyframes scrollImages {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-300px * 25 - 20px * 24)); /* Move by the width of all images plus gaps */
  }
}

.horizontal-gallery:hover {
  animation-play-state: paused; /* Pause the scrolling animation on hover */
}

.gallery-item:hover {
  transform: scale(1.1);
  z-index: 10;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
  transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-item {
    width: 250px;
    height: 160px;
  }
  .horizontal-gallery {
    width: calc(250px * 25 + 20px * 24); /* Adjust for smaller screens */
    animation: scrollImages 30s linear infinite;
  }
  @keyframes scrollImages {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-250px * 25 - 20px * 24)); /* Adjust translation for smaller screen sizes */
    }
  }
}

@media (max-width: 480px) {
  .gallery-item {
    width: 200px;
    height: 130px;
  }
  .horizontal-gallery {
    width: calc(200px * 25 + 20px * 24); /* Adjust for smallest screens */
    animation: scrollImages 30s linear infinite;
  }
  @keyframes scrollImages {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-200px * 25 - 20px * 24)); /* Adjust translation for smallest screen sizes */
    }
  }
}

     
  
      
      
    
      .whatsapp_float {
        width: 50px;
        height: 50px;
        position: fixed;
        bottom: 40px;
        right: 20px;
        z-index: 9999;
      }
      .whatsapp_float img {
        width: 60px;
        height: 60px;
      }
  
  
  
  
  /* footer */
  
  /* footer */
  
  
  @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,500,300,700);
  
  * {
    font-family: Open Sans;
  }
  
   
  .footer-distributed{
      background: #c19b5c;
      box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
      box-sizing: border-box;
      width: 100%;
      text-align: left;
      font: bold 16px sans-serif;
      padding: 25px 50px;
  }
  
  .footer-distributed .footer-left,
  .footer-distributed .footer-center,
  .footer-distributed .footer-right{
      display: inline-block;
      vertical-align: top;
  }
  
  /* Footer left */
  
  .footer-distributed .footer-left{
      width: 40%;
      
  }
  
  /* The company logo */
  
  .footer-distributed h3{
      color:  #ffffff;
      font: normal 36px 'Open Sans', cursive;
      margin: 0;
  }
  
  .footer-distributed h3 span{
      color:  lightseagreen;
  }
  
  /* Footer links */
  
  .footer-distributed .footer-links{
      color:  #ffffff;
      margin: 20px 0 12px;
      padding: 0;
  }
  
  .footer-distributed .footer-links a{
      display:inline-block;
      line-height: 1.8;
    font-weight:400;
      text-decoration: none;
      color:  inherit;
  }
  
  .footer-distributed .footer-company-name{
      color:  #222;
      font-size: 14px;
      font-weight: normal;
      margin: 0;
  }
  
  /* Footer Center */
  
  .footer-distributed .footer-center{
      width: 35%;
  }
  
  .footer-distributed .footer-center i{
      background-color:  #33383b;
      color: #ffffff;
      font-size: 25px;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      text-align: center;
      line-height: 42px;
      margin: 10px 15px;
      vertical-align: middle;
  }
  
  .footer-distributed .footer-center i.fa-envelope{
      font-size: 17px;
      line-height: 38px;
  }
  
  .footer-distributed .footer-center p{
      display: inline-block;
      color: #ffffff;
    font-weight:400;
      vertical-align: middle;
      margin:0;
  }
  
  .footer-distributed .footer-center p span{
      display:block;
      font-weight: normal;
      font-size:14px;
      line-height:2;
  }
  
  .footer-distributed .footer-center p a{
      color:  rgb(245, 247, 246);
      text-decoration: none;;
  }
  
  
  
  /* Footer Right */
  
  .footer-distributed .footer-right{
      width: 20%;
  }
  
  .footer-distributed .footer-company-about{
      line-height: 20px;
      color:  #fff;
      font-size: 13px;
      font-weight: normal;
      margin: 0;
  }
  
  .footer-distributed .footer-company-about span{
      display: block;
      color:  #ffffff;
      font-size: 14px;
      font-weight: bold;
      margin-bottom: 20px;
  }
  
  .footer-distributed .footer-icons{
      margin-top: 25px;
  }
  
  .footer-distributed .footer-icons a{
      display: inline-block;
      width: 35px;
      height: 35px;
      cursor: pointer;
      background-color:  #33383b;
      border-radius: 2px;
  
      font-size: 20px;
      color: #ffffff;
      text-align: center;
      line-height: 35px;
  
      margin-right: 3px;
      margin-bottom: 5px;
  }
  
  @media (max-width: 880px) {
  
      .footer-distributed{
          font: bold 14px sans-serif;
      }
  
      .footer-distributed .footer-left,
      .footer-distributed .footer-center,
      .footer-distributed .footer-right{
          display: block;
          width: 100%;
          margin-bottom: 40px;
          text-align: center;
      }
  
      .footer-distributed .footer-center i{
          margin-left: 0;
      }
  
  }
  
  
   


.nav-link:hover {
  background-color: #555; /* Change background color on hover */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Add shadow on hover */
  color: white !important;
  border-radius: 10px;
}

/* On larger screens */
@media (min-width: 992px) {
  .nav-link {
    color: white;
  }
}

/* Add this custom CSS for mobile screens when toggle is open */
@media (max-width: 991px) {
  .navbar-nav {
      background-color: #1f1b1b;
  }
  .nav-link {
      color: white !important; /* Ensure the text is visible on black */
  }
}



.whatsapp-section {
  width: 100%;
  padding: 20px; /* Adjust as needed for spacing */
}

.whatsapp-container {
  display: flex;
  justify-content: flex-end; /* Align content to the right */
  max-width: 1200px;
  margin: 0 auto;
}

.whatsapp-link {
  display: inline-block;
}

.whatsapp-icon {
  width: 50px; /* Default size */
  height: auto;
}

/* Adjust size for smaller screens */
@media (max-width: 768px) {
  .whatsapp-icon {
    width: 40px; /* Smaller size for mobile screens */
  }
}

/* Increase size for larger screens */
@media (min-width: 1200px) {
  .whatsapp-icon {
    width: 70px; /* Larger size for big screens */
  }
}


