 


             /* our services */

/* Ensure section takes full width and height available */
.section-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
    min-height: 50vh;      
    padding: 20px;          /* Padding to keep content from touching edges */
    box-sizing: border-box; /* Include padding in width and height */
   
}

.centered-div {
    width: 80%;             /* Responsive width */
    max-width: 600px;      /* Prevent it from getting too wide */
    padding: 20px;         /* Internal padding */
    background-color: white; /* 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 */
    }
}



  /* new service cards */


  .ag-format-container {
    width: 1142px;
    margin: 0 auto;
  }
  
  
  body {
    background-color:#fff;
  }
  .ag-courses_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 50px 0;
  }
  .ag-courses_item {
    -ms-flex-preferred-size: calc(33.33333% - 30px);
    flex-basis: calc(33.33333% - 30px);
  
    margin: 0 15px 30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    overflow: hidden;
    
    border-radius: 28px;
  }
  .ag-courses-item_link {
    display: block;
    padding: 30px 20px;
    background-color: #fff;
  
    overflow: hidden;
  
    position: relative;
  }


/* Define the keyframes for the animation */
/* Define the keyframes for the animation */
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Define the class that triggers the animation */
.animate {
  animation: slideUp 0.5s ease-out forwards; /* Faster animation */
}

/* Initially hide the elements off-screen */
.ag-courses_item {
  opacity: 0;
  transform: translateY(20px);
}


  

  .ag-courses-item_link:hover,
  .ag-courses-item_link:hover .ag-courses-item_date {
    text-decoration: none;
    color: #FFF;
  }
  
  /* More specific selectors targeting h1 and p inside the .ag-courses-item_title */
 
/* Hover effect for icon color change */
.ag-courses_item .ag-courses-item_link:hover .ag-courses-item_title i {
    color: #000 !important; /* Change icon color to black on hover */
}


/* Force removal of text-decoration on the h1 and p within .ag-courses-item_title */
.ag-courses_item .ag-courses-item_title h1,
.ag-courses_item .ag-courses-item_title p {
    text-decoration: none !important;
    color: black; /* Keep the text color black */
}

/* If the issue persists, try resetting all styles */
.ag-courses_item .ag-courses-item_title * {
    text-decoration: none !important;
}

/* Additional reset in case of inherited styles */
.ag-courses_item .ag-courses-item_link:hover .ag-courses-item_title * {
    text-decoration: none !important;
    color: black !important; /* Ensure all text is black with no decoration */
}


  .ag-courses-item_link:hover .ag-courses-item_bg {
    -webkit-transform: scale(10);
    -ms-transform: scale(10);
    transform: scale(10);
  }
  .ag-courses-item_title {
    min-height: 87px;
    margin: 0 0 25px;
    
    overflow: hidden;
  
    color: #FFF;
  
    z-index: 2;
    position: relative;
  }
  .ag-courses-item_date-box {
    font-size: 18px;
    color: #FFF;
  
    z-index: 2;
    position: relative;
  }
  .ag-courses-item_date {
    font-weight: bold;
    color: #f9b234;
  
    -webkit-transition: color .5s ease;
    -o-transition: color .5s ease;
    transition: color .5s ease
  }
  .ag-courses-item_bg {
    height: 128px;
    width: 128px;
    background-color: #c19b5c;
  
    z-index: 1;
    position: absolute;
    top: -75px;
    right: -75px;
  
    border-radius: 50%;
  
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
  }
  .ag-courses_item:nth-child(2n) .ag-courses-item_bg {
    background-color: #c19b5c;
  }
  .ag-courses_item:nth-child(3n) .ag-courses-item_bg {
    background-color: #c19b5c;
  }
  .ag-courses_item:nth-child(4n) .ag-courses-item_bg {
    background-color: #c19b5c;
  }
  .ag-courses_item:nth-child(5n) .ag-courses-item_bg {
    background-color: #c19b5c;
  }
  .ag-courses_item:nth-child(6n) .ag-courses-item_bg {
    background-color: #c19b5c;
  }

  /* Ensure all links inside .ag-courses_item have no text decoration */
.ag-courses_item a {
  text-decoration: none !important;
}

/* Specifically target h1, p, and all elements within .ag-courses-item_title */
.ag-courses_item .ag-courses-item_title * {
  text-decoration: none !important;
}

/* Also target any parent elements in case inheritance is an issue */
.ag-courses_item a:hover, 
.ag-courses_item a:focus, 
.ag-courses-item_title, 
.ag-courses_item .ag-courses-item_title * {
  text-decoration: none !important;
}

/* If ::before or ::after pseudo-elements are causing issues */
.ag-courses_item .ag-courses-item_title::before,
.ag-courses_item .ag-courses-item_title::after {
  text-decoration: none !important;
}

/* Additional styling for ensuring no text-decoration on hover */
.ag-courses_item .ag-courses-item_link:hover {
  text-decoration: none !important;
}

  
  
  
  @media only screen and (max-width: 979px) {
    .ag-courses_item {
      -ms-flex-preferred-size: calc(50% - 30px);
      flex-basis: calc(50% - 30px);
    }
    .ag-courses-item_title {
      font-size: 24px;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .ag-format-container {
      width: 96%;
    }
  
  }
  @media only screen and (max-width: 639px) {
    .ag-courses_item {
      -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
    }
    .ag-courses-item_title {
      min-height: 72px;
      line-height: 1;
  
      font-size: 24px;
    }
    .ag-courses-item_link {
      padding: 22px 40px;
    }
    .ag-courses-item_date-box {
      font-size: 16px;
    }
  }


  /* introduction  */

   
/* Intro Section General Styling */
.intro-section {
  width: 100%;
  background-color: #1f1b1b;  
  padding: 50px 0;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

.intro-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;  
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  background-color: #1f1b1b;
  overflow: hidden; /* Prevent content from overflowing */
}

.intro-text {
  flex: 1;  
  padding-right: 10px;  
}

.intro-text h1 {
  font-size: 2.5rem;
  color: #fff;
}

.intro-text p {
  font-size: 1.2rem;
  color: #fff;
}

.intro-images {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: #1f1b1b;
  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;
  }
}




   /* whats ur */

	/* Main section styling */
  /* Main Container */
  .main-container {
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Section Styling */
  .main-section, .main-section1 {
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    background-color: #fff;
  }
  
  /* Responsive div inside the section */
  .responsive-div {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    border: 1px solid #fff;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .responsive-div {
    opacity: 0;
    transform: translateY(50px); /* Move text 50px down */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Smooth transition */
}

/* Add active class when section is in view */
.responsive-div.active {
    opacity: 1;
    transform: translateY(0); /* Bring text to its original position */
}
  /* Responsive text */
  .responsive-text {
    font-size: 8vw; /* Base responsive font size */
    line-height: 1.2;
    margin: 0;
  }
  
  .responsive-text span {
    font-size: 12vw; /* Responsive font size for highlighted words */
  }
  
  /* Media Queries for smaller screens */
  @media (max-width: 768px) {
    .responsive-text {
        font-size: 6vw; /* Decrease base font size for tablets */
    }
  
    .responsive-text span {
        font-size: 10vw; /* Adjust span font size for tablets */
    }
  }
  
  @media (max-width: 480px) {
    .responsive-text {
        font-size: 5vw; /* Decrease base font size further for small screens */
    }
  
    .responsive-text span {
        font-size: 8vw; /* Adjust span font size for small screens */
    }
  }
  
  /* Container Styling */
  .container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    gap: 20px;  
    background-color: #fff;
  }
  
  /* Left and Right Div Styling */
  .left-div, .right-div {
    flex: 1;  
    padding: 10px;
    box-sizing: border-box;
    background-color: #fff;  
  }

  /* Initial state for left-div and right-div animation */
.left-div, .right-div {
  opacity: 0;
  transform: translateY(50px); /* Move the div down by 50px */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Smooth transition */
}

/* Add active class when the divs are in view */
.left-div.active, .right-div.active {
  opacity: 1;
  transform: translateY(0); /* Bring the div back to its original position */
}

  
  /* Left div styling */
  .left-div {
    display: flex;
    align-items: flex-start; /* Align text to the top of the div */
  }
  
  /* Text content styling */
  .text-content {
    text-align: right; /* Default for larger screens */
    font-size: 20px;
    padding-top: 85px;
    color: rgb(77, 74, 74);
  }
  
  /* Right div styling with vertical buttons aligned to the left */
  .right-div {
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    align-items: flex-start; /* Align buttons to the left */
    padding-left: 50px; /* Add left padding */
    gap: 10px; /* Space between buttons */
  }
  
  /* Button styling */
  .btn {
    padding: 10px 20px;
    font-size: 16px;
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
  }
  
  /* Specific button styles */
  .btn-phone {
    background-color: #c19b5c;
    height: 65px;
    width: 200px;
    margin-top: 40px;
  }
  
  .btn-email {
    background-color: #c19b5c;
    height: 65px;
    width: 290px;
    margin-top: 15px;
    margin-bottom: 70px;
  }
  
  .btn i {
    color: white;
    padding-right: 10px;
    font-size: 20px;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .container {
        flex-direction: column; /* Stack divs vertically on smaller screens */
        gap: 10px; /* Adjust space between divs */
    }
  
   
  
    .left-div, .right-div {
        width: 100%; /* Both divs take full width when stacked */
        padding: 10px; /* Ensure padding is consistent */
    }
  
    .right-div {
        padding-left: 10px;  
        justify-content: center;  
        margin-top: 10px;  
    }
  
    .text-content {
        text-align: center; /* Center text on mobile screens */
        padding-top: 20px; /* Adjust padding for mobile */
    }
  
    .btn {
        width: 100%;  
        max-width: 100%;  
    }
  
    .btn-phone, .btn-email {
        width: 100%;  
    }
  }
  
  @media (max-width: 480px) {
    .btn-phone, .btn-email {
        width: 100%;
    }
  
    .text-content {
        text-align: center; /* Ensure it's centered on smaller screens */
        padding-top: 10px; /* Adjust padding further for smaller screens */
    }
  }
  

       /* 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;
			 }
		 
		 }
		 


     
     
     


    

    /* 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 */
    }
  }
}

  

 




.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 */
  }
}


