





    /* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f9f9f9;
}

html, body {

 overflow-x: hidden; /* Prevent horizontal overflow */
 scroll-behavior: smooth;

}


.scroll-effect.visible {
    opacity: 1;
    transform: translateY(0);
}




/* Header */
.header-about-us {
    background: #004080;
    color: white;
    text-align: center;
    padding: 50px 20px;
    animation: fadeIn 1.5s ease-in-out;
}

.title-about-us {
    font-size: 2.2rem;
    margin: 0;
}

.subtitle-about-us {
    font-size: 1.1rem;
}






/* About Section */
.about-container-about-us {
    display: flex;
    flex-direction: column; /* Mobile-friendly */
    align-items: center;
    padding: 40px 20px;
    gap: 30px;
    /*text-align: center; */
}


    .responsive-heading h1{

        font-size: 18px !important;
        padding: 0 1px;
    }


.image-about-us {
    display: flex;
    justify-content: center;
    gap: 30px; /* Gap between the two images */
    margin-bottom: 20px; /* Space below the images */
    margin-top: 10px;
    transition: transform 0.1s ease-in-out; /* Smooth hover effect */
}

.image-about-us img {
    width: 100%;
    max-width: 450px;
    height: 100%;
   
    border-radius: 30px;
    object-fit:contain;
}

.image-about-us img:hover {
    transform: scale(1.03); /* Slightly enlarge the image on hover */
}


.additional-images-about-us {
    display: flex;
    justify-content: center;
    align-items: center;
  

    gap: 30px; /* Gap between the images */
    margin-top: 0px; /* Space above the images */
}

.image-wrapper-about-us {
    flex: 1; /* Allow images to grow and shrink */
    max-width: 450px; /* Maximum width for large screens */
}

.image-wrapper-about-us img {
    width: 100%; /* Make images responsive */
    border-radius: 30px; /* Rounded corners */
    transition: transform 0.3s ease-in-out; /* Smooth hover effect */
}

.image-wrapper-about-us img:hover {
    transform: scale(1.04); /* Slightly enlarge the image on hover */
}

.content-about-us {
    max-width: 1200px;
    font-size: 17px;
}

.btn-about-us {
    display: inline-block; /* Allows padding to work */
    background: #3894eb;
    color: white;
    padding: 4px 10px;
    text-decoration: none; /* Removes underline */
    border: none;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
    border-radius: 5px;
    margin-top: 15px;
    width: 110px;
}

.btn-about-us:hover {
    background: #002060;
    color: #ffcc00; /* Ensure both button and text turn yellow */
}
 


   /* about-us-photo-van-text-animation */

    
.container-about-us-text-photo-animation {
  width: 100%;
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
}

.row-about-us-text-photo-animation {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.left-col-about-us-text-photo-animation {
  flex: 1;
  min-width: 280px;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.right-col-about-us-text-photo-animation {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.image-about-us-text-photo-animation {
  width: 100%;
  height: auto;
  max-width: 600px;
  max-height: 500px;
  object-fit: cover;
  opacity: 0;
  transform: translateX(100px);
  transition: all 2s ease-out;
}

.title-about-us-text-photo-animation {
  color: #004080;
  font-size: 2.5rem;
  margin-bottom: 20px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-40px);
  transition: all 0.8s ease-out;
}

.reasons-list-about-us-text-photo-animation {
  list-style: none;
  padding-left: 0;
  line-height: 1.2em;
}

.reason-item-about-us-text-photo-animation {
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.6s ease-out;
  margin-bottom: 10px;  /* Adjust spacing here */
}

.reason-content-text-photo-animation {
  display: flex;
  align-items: center;
  color: #000000;
  font-size: 1.2rem;
}

.tick-icon-text-photo-animation {
  flex-shrink: 0;
  margin-right: 10px;
}

/* Animation Classes */
.animate-in-title-about-us-text-photo-animation {
  opacity: 1;
  transform: translateY(0);
}

.animate-in-image-about-us-text-photo-animation {
  opacity: 1;
  transform: translateX(0);
}



.animate-in-reason-1-text-photo-animation { transform: translateX(0); opacity: 1; transition-delay: 0.2s; }
.animate-in-reason-2-text-photo-animation { transform: translateX(0); opacity: 1; transition-delay: 0.4s; }
.animate-in-reason-3-text-photo-animation { transform: translateX(0); opacity: 1; transition-delay: 0.6s; }
.animate-in-reason-4-text-photo-animation { transform: translateX(0); opacity: 1; transition-delay: 0.8s; }
.animate-in-reason-5-text-photo-animation { transform: translateX(0); opacity: 1; transition-delay: 1s; }
.animate-in-reason-6-text-photo-animation { transform: translateX(0); opacity: 1; transition-delay: 1.2s; }
.animate-in-reason-7-text-photo-animation { transform: translateX(0); opacity: 1; transition-delay: 1.4s; }
.animate-in-reason-8-text-photo-animation { transform: translateX(0); opacity: 1; transition-delay: 1.6s; }





    /* End about-us-photo-van-text-animation */



/* Services */
.services-about-us {
    text-align: center;
    padding: 40px 20px;
}

.service-boxes-about-us {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px; /* Gap between service items */
    justify-content: center;
    margin-top: 35px;
}

.service-item-about-us {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto; /* Center items on smaller screens */
}

.service-item-about-us img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
    object-fit:contain;
}

.service-item-about-us:hover {
    transform: translateY(-10px); /* Lift effect on hover */
}




/* Why Choose Us */
.why-choose-about-us {
    text-align: center;
    padding: 15px 20px;
}

.reasons-about-us {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
}

.reason-item-about-us {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 250px;
}

.icon-check-circle,
.icon-clock,
.icon-bolt,
.icon-thumbs-up {
    font-size: 1.2rem;
    margin-right: 10px;
    color: #004080;
}



/* Services - Ensure the service-item-about-us container has proper positioning */
.service-item-about-us {
    position: relative;
    overflow: hidden; /* Ensure content stays within the box */
    padding: 10px; /* Add padding if necessary */
    box-sizing: border-box; /* Ensure padding is included in the element's total width and height */
    background-color: #ffffff; /* Set a background color if necessary */
    border: 1px solid  #3894eb; /* Add border for visual debugging */
}

/* Ensure image is properly contained within the box */
.service-item-about-us img {
    width: 100%; /* Ensure the image takes up the full width of the container */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Ensure the image is displayed as a block element */
    margin-bottom: 10px; /* Add some space below the image */
}

/* Ensure titles and paragraphs are displayed correctly within the boxes */
.service-item-about-us h3, .service-item-about-us p {
    display: block; /* Ensure elements are displayed as blocks */
    color: black; /* Ensure the text color is visible */
    font-size: 1em; /* Ensure the font size is appropriate */
    margin: 20px 0; /* Add some margin for better spacing */
    text-align: center; /* Align text to the left for better readability */
    position: relative; /* Ensure elements are positioned relative to the container */
    z-index: 1; /* Ensure elements are above any background or other content */
    /* background-color: yellow; /* Add background color for visual debugging */
}

.service-item-about-us h3, .team-member-about-us h3 {

 color: darkred;


}





/* Our Team */
.team-about-us {
    text-align: center;
    padding: 50px 20px;
}

.team-container-about-us {
   display: flex;
    flex-wrap: wrap; /* Allows wrapping for smaller screens */
    justify-content: center; /* Centers the team members */
    gap: 20px; /* Gap between team members */
    margin: 30px 0 -50px 0;
}

.team-member-about-us {
    background: #faf8f8;
    padding: 20px;
    border-radius: 10px;
    width: 100%; /* Full width on mobile */
    max-width: 300px; /* Fixed width for larger screens */
    text-align: center;
    box-shadow: 10px 14px 10px rgba(163, 197, 243, 0.3);
    transition: transform 0.5s ease-in-out; /* Smooth hover effect */
}

.team-member-about-us img {

    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 10px;


}

.team-member-about-us:hover {
    transform: scale(1.05); /* Slightly enlarge the card on hover */
}


/* Contact Us */
.contact-about-us {
    text-align: center;
    padding: 50px 20px;
}



/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll Effect */
.scroll-effect {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s ease-out, transform 0.8s ease-out;
    min-height: 100px; /* Prevent layout shifts */
}

/* -------------------- Responsive Design -------------------- */

@media screen and (max-width: 150px) {


    .title-about-us { font-size: 1.5rem; }
    .subtitle-about-us { font-size: 0.8rem; }

    .image-wrapper-about-us {
        max-width: 100%; /* Full width on very small screens */
    }

    .service-boxes-about-us {
        grid-template-columns: 1fr; /* Single column on very small screens */
    }


       /* about-us-photo-van-text-animation */

     .title-about-us-text-photo-animation { font-size: 1rem; }
  .reason-content-text-photo-animation { font-size: 0.8rem; }
  .tick-icon-text-photo-animation { width: 18px; height: 18px; }

    /* End about-us-photo-van-text-animation */


}

@media screen and (min-width: 151px) and (max-width: 350px) {
    .title-about-us { font-size: 1.8rem; }
    .subtitle-about-us { font-size: 1rem; }

    .additional-images-about-us {
        flex-direction: column; /* Stack images vertically on mobile */
        align-items: center; /* Center images horizontally */
    }

    .image-wrapper-about-us {
        max-width: 90%; /* Full width on small mobile screens */
    }



    .service-boxes-about-us {
        grid-template-columns: 1fr; /* Single column on small mobile screens */
    }


   /* about-us-photo-van-text-animation */

   .container-about-us-text-photo-animation { padding: 10px; }
  .title-about-us-text-photo-animation {
    font-size: 1.6rem;
    white-space: normal;
    text-align: center;
  }
  .reason-content-text-photo-animation { font-size: 0.95rem; }
  .tick-icon-text-photo-animation { width: 24px; height: 24px; margin-right: 8px; }
  
  

    /* End about-us-photo-van-text-animation */


}




@media screen and (max-width: 350px) {

  .row-about-us-text-photo-animation {
    flex-direction: column;
    align-items: center;
    gap: 1px;
  }

  .right-col-about-us-text-photo-animation {
    order: 1;
    margin-bottom: 20px;
  }

  .left-col-about-us-text-photo-animation {
    order: 2;
    padding-right: 0;
    text-align: center;
    align-items: center;
  }

  .image-about-us-text-photo-animation {
    width: 85%;
  }

  .title-about-us-text-photo-animation {
    font-size: 1.6rem;
    white-space: normal;
    text-align: center;
  }

  .reason-content-text-photo-animation {
    font-size: 0.95rem;
    justify-content: flex-start;
    width: 100%;
    text-align: left;
  }

  .reason-item-about-us-text-photo-animation {
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 13px;
  }

  .footer {
    width: 85% !important;
    margin: 0px 5px 10px 5px;
}

  .responsive-heading {

        font-size: 25px !important;
        padding: 0 1px;
    }


}




@media screen and (min-width: 351px) and (max-width: 767px) {
    .title-about-us { font-size: 2rem; }
    .subtitle-about-us { font-size: 1.1rem; }

    .additional-images-about-us {
        flex-direction: column; /* Stack images vertically on mobile */
        align-items: center; /* Center images horizontally */
    }

    .image-wrapper-about-us {
        max-width: 100%; /* Full width on mobile */
    }

    .service-boxes-about-us {
        grid-template-columns: 1fr; /* Single column on standard mobile screens */
    }

  .service-item-about-us { 

        width: 95%;
        max-width: 450px; 

}


   /* about-us-photo-van-text-animation */

    	
	
  .row-about-us-text-photo-animation {
    flex-direction: column;
    align-items: center;
  }

  .image-about-us-text-photo-animation {
    width: 80%;
  }

  .left-col-about-us-text-photo-animation {
    order: 2;
    padding-right: 0;
    text-align: center;
    align-items: center;
    margin-top: 15px;
  }

  .right-col-about-us-text-photo-animation {
    order: 1;
    margin-bottom: 30px;
  }

  .title-about-us-text-photo-animation {
    font-size: 2rem;
    text-align: center;
  }

  .reason-content-text-photo-animation {
    font-size: 1rem;
    text-align: left;
    width: 100%;
  }

  .reason-item-about-us-text-photo-animation {
    margin-bottom: 8px;
  }
  
  
    /* End about-us-photo-van-text-animation */

    
    .responsive-heading {

        font-size: 25px !important;
        padding: 0 1px;
    }

}



/* Responsive Design */
@media screen and (max-width: 767px) {
    .image-about-us {
        flex-direction: column; /* Stack images vertically on mobile */
        align-items: center; /* Center images horizontally */
    }

    .image-about-us img {
        max-width: 90%; /* Full width on mobile */
        
    }

  .image-2-about-us {
        display: visible; /*  none Hide the second image on mobile */
    }


    .team-container-about-us {
        flex-direction: column; /* Stack team members vertically on mobile */
        align-items: center; /* Center them horizontally */
    }

    .team-member-about-us {
        max-width: 80%; /* Full width on mobile */
    }


    .call-action-box {

        order: 0 !important;
        width: 60% !important;
        margin-top: 30px !important;
    }

  body .container {
    padding: 0px 0px !important;

  }

  
}


@media screen and (min-width: 768px) and (max-width: 1023px) {
    .title-about-us { font-size: 2.2rem; }
    .subtitle-about-us { font-size: 1.1rem; }

    .additional-images-about-us {
        gap: 15px; /* Smaller gap on tablets */
    }

    .image-wrapper-about-us {
        max-width: 300px; /* Slightly smaller images on tablets */
    }

    .service-boxes-about-us {
        grid-template-columns: repeat(2, 1fr); /* Two columns on tablets */
    }


    .image-about-us {
        gap: 15px; /* Smaller gap on tablets */
    }

    .image-about-us img {
        width: 50% !important; /* Slightly smaller images on tablets */
       
    }


    .team-container-about-us {
        flex-wrap: wrap; /* Allow wrapping for tablets */
        justify-content: center;
    }

    .team-member-about-us {


        max-width: 40%; /* Two team members per row on tablets */

    }

   /* about-us-photo-van-text-animation */

       .title-about-us-text-photo-animation {
    font-size: 2rem;
  }

  .reason-content-text-photo-animation {
    font-size: 1rem;
  }

  .row-about-us-text-photo-animation {

    margin-top: 30px;

  }

  .reason-item-about-us-text-photo-animation {

    margin-bottom: 5px;

  }
  
    /* End about-us-photo-van-text-animation */

    .responsive-heading {

        font-size: 2.3em !important;
        padding: 0 1px;
    }


}


@media screen and (min-width: 1024px) and (max-width: 1439px) {
    .title-about-us { font-size: 2.5rem; }
    .subtitle-about-us { font-size: 1.2rem; }

    .image-wrapper-about-us {
        max-width: 400px; /* Medium-sized images on larger tablets and small desktops */
    }

    .service-boxes-about-us {
        grid-template-columns: repeat(3, 1fr); /* Three columns on small desktops */
        gap: 10px;
    }

 .team-member-about-us {
        max-width: 240px; /* Four team members per row on large screens */
         width: 40%;
    }

   /* about-us-photo-van-text-animation */


 	
  .title-about-us-text-photo-animation {
    font-size: 2.2rem;
  }

  .reason-content-text-photo-animation {
    font-size: 1.15rem;
  }

  .image-about-us-text-photo-animation {
    max-width: 500px;
  }

  .left-col-about-us-text-photo-animation {
    padding-right: 30px;
  }
  
 .responsive-heading {

        font-size: 2em !important;
        padding: 0 1px;
    }


    /* End about-us-photo-van-text-animation */
  



}

@media screen and (min-width: 1440px) {
    .title-about-us { font-size: 3rem; }
    .subtitle-about-us { font-size: 1.3rem; }

    .image-wrapper-about-us {
        max-width: 450px; /* Largest size for big screens */
    }

    .service-boxes-about-us {
        grid-template-columns: repeat(3, 1fr); /* Three columns on large desktops */
    }

 .team-member-about-us {
        max-width: 300px; /* Four team members per row on large screens */
    }

   /* about-us-photo-van-text-animation */


 
  .title-about-us-text-photo-animation {
    font-size: 2.5rem;
  }

  .reason-content-text-photo-animation {
    font-size: 1.2rem;
  }
  
  
    /* End about-us-photo-van-text-animation */


}









