@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Open+Sans:wght@300;400;600;700&display=swap");
body {
  font-family: "Open Sans", sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
  padding-top: 80px;
}
/*
.home-page{
	opacity: 0;
   transition: opacity 0.05s ease-in; 
}
.home-page.loaded {
    opacity: 1;
}
*/
.layout_padding {
  padding: 50px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 50px;
}

.layout_padding-bottom {
  padding-bottom: 50px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
  margin-bottom: 0;
}

.heading_container h2 span {
  color: #006FBF;
}

.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*header section*/
.hero_area {
  position: relative;
  min-height: 0vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.hero_area .hero_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  overflow: hidden;
  z-index: -1;
}

.hero_area .hero_bg_box .bg_img_box {
  min-width: 100%;
  min-height: 100%;
}

.hero_area .hero_bg_box img {
  min-width: 100%;
  min-height: 100%;
}

.sub_page .hero_area {
  min-height: auto;
  background: linear-gradient(130deg, #231a6f, #0f054c);
}

.sub_page .hero_area .hero_bg_box {
  display: none;
}

.header_section {
 position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; 
  background-color: white; 
  box-shadow: 0 2px 2px -2px gray; 
  padding: 0px 0;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 0px;
}

 .navbar-brand {
      text-align: center; 
    }
	
.navbar-brand span {
  font-weight: bold;
  font-size: 24px;
  color: #ffffff;
}

.navbar-brand img {
  height: 65px;
  width: auto;  
  display: inline-block;
  vertical-align: bottom;
  margin-left: 16px; 
  margin-top: 10px;
}
.logo-text {
  font-size: 10px;
  color: #333333;
  margin-left: 16px;
  padding-top: 0;
    }
	
.navbar-about img {
  height: 100px;
  width: auto;
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin-left: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 20px;
  color: #806319;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link, .custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #006FBF;
}

.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  font-weight: 600;
}

.custom_nav-container .nav_search-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  color: #ffffff;
}

.custom_nav-container .nav_search-btn:hover {
  color: #006FBF;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #806319;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #806319;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
}

/*end header section*/
/* slider section */
.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 20px 0 30px 0;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .carousel-item {
    background-size: cover;
    background-position: center;
    height: 85vh; 
    position: relative;
}

.slider_section .detail-box {
	color: #806319;
    position: absolute;
    top: 20%; 
    left: 50%; 
    transform: translateX(-50%); 
    z-index: 2; 
    text-align: center; 
    width: 100%;
    padding: 10px;
}

.slider_section .detail-box h2 {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 350px;
    color: #000000;
	background-color: rgba(240, 240, 240, 0.5);
    padding: 10px;
	width:auto;
}

.slider_section .detail-box h1 {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #ffffff;
}

.slider_section .detail-box p {
  color: #fefefe;
  font-size: 14px;
}

.slider_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -5px;
  margin-top: 25px;
  justify-content: center;
}

.slider_section .detail-box .btn-box a {
  margin: 5px;
  text-align: center;
  width: auto;
}

.slider_section .detail-box .btn-box .btn1 {
  display: inline-block;
  padding: 10px 15px;
  background-color: #006FBF;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.slider_section .detail-box .btn-box .btn1:hover {
  background-color: #007fa4;
}

.slider_section .detail-box .btn-box .btn3 {
  font-size: 16px; 
  font-weight: bold;
  display: inline-block;
  padding: 10px 20px;
  background-color: #07AA35;
  color: white;
  text-align: center;
  border-radius: 5px;
  text-decoration: none; 
  width: auto;  
}

.slider_section .detail-box .btn-box .btn3:hover {
  background-color: #006FBF;
}

.slider_section .detail-box .btn-box .btn2 {
  display: inline-block;
  padding: 0px 1px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.slider_section .detail-box .btn-box .btn2:hover {
  background-color: black;
}

.slider_section .img-box {
  margin: 0px 0;
}

.slider_section .img-box img {
  width: 100%;
  -webkit-animation: upDown 5s infinite;
          animation: upDown 5s infinite;
}

@-webkit-keyframes upDown {
  0% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
  }
  50% {
    -webkit-transform: translateY(45px);
            transform: translateY(45px);
  }
  100% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
  }
}

@keyframes upDown {
  0% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
  }
  50% {
    -webkit-transform: translateY(45px);
            transform: translateY(45px);
  }
  100% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
  }
}

.slider_section .carousel-indicators {
	position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
	margin: 0;
	-webkit-box-pack: center;
      -ms-flex-pack: center;
    justify-content: center;
	-webkit-box-align: center;
      -ms-flex-align: center;
    align-items: center;
}

.slider_section .carousel-indicators li {
  background-color: #dbdbdb;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  opacity: 1;
}

.slider_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  background-color: #006FBF;
}

.service_section {
  position: relative;
}

.service_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-top: 45px;
  background-color: #f8f8f9;
  padding: 20px;
  border-radius: 5px;
}

.service_section .box .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
	-ms-flex-align: center;
		align-items: center; 
  width: 125px;
  min-width: 75px;
  height: 75px;
  margin-bottom: 15px;
}

.service_section .box .img-box img {
  max-width: 100%;
  max-height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section .box .detail-box h5 {
  font-weight: bold;
  text-transform: uppercase;
}

.service_section .box .detail-box a {
  color: #806319;
  font-weight: 600;
}

.service_section .box .detail-box a:hover {
  color: #006FBF;
}

.service_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}

.service_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #006FBF;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.service_section .btn-box a:hover {
  background-color: #007fa4;
}

.about_section {
  background-color: #f9f9f9;
  color: #333;
  padding-top: 50px;
  padding-bottom: 50px;
}

.about_section .heading_container {
  margin-bottom: 50px;
}

.about_section .heading_container h2 {
  font-size: 36px;
  font-weight: bold;
  color: #006FBF;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.about_section .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.about_section .img-box {
  max-width: 100%;
  margin-bottom: 30px;
  text-align: center;
}

.about_section .img-box img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.about_section .about-content p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #555;
}

.about_section .detail-box {
  padding: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.about_section .detail-box h3 {
  font-size: 24px;
  font-weight: bold;
  color: #006FBF;
  margin-bottom: 15px;
}

.about_section .detail-box p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 12px 40px;
  background-color: #006FBF;
  color: #ffffff;
  border-radius: 50px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.about_section .detail-box a:hover {
  background-color: #007fa4;
}

.why_section {
    display: block !important;
	overflow: visible !important;
    height: auto !important;
}

.why_section .box {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.why_section .box .img-box {
  margin-bottom: 20px;
  width: 120px;
  height: 120px;
  min-width: 120px;
  min-height: 120px;
  border-radius: 100%;
  border: 5px solid #806319;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.why_section .box .img-box img {
  width: 55px;
  height: auto;
  fill: #806319;
}

.why_section .box h5 {
  font-weight: bold;
  margin-bottom: 10px;
}

.why_section .box p {
  margin-bottom: 0;
}

.why_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}

.why_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #006FBF;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.why_section .btn-box a:hover {
  background-color: #007fa4;
}

/*team section */
.team_section {
  text-align: center;
  background-color: #806319;
  color: #ffffff;
}

.team_section .heading_container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.team_section .team_container {
  padding: 0 15px;
}

.team_section .team_container .box {
  padding: 35px 0 0 0;
  border-radius: 5px;
  overflow: hidden;
  -webkit-transition: all .1s;
  transition: all .1s;
  margin-top: 45px;
  background: -webkit-gradient(linear, left top, left bottom, from(#002759), to(#002b64));
  background: linear-gradient(to bottom, #002759, #002b64);
}

.team_section .team_container .box .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.team_section .team_container .box .img-box img {
  width: 120px;
  border-radius: 100%;
  border: 5px solid #ffffff;
}

.team_section .team_container .box .detail-box {
  margin: 25px 0;
}

.team_section .team_container .box .detail-box h5 {
  color: #006FBF;
  font-weight: 600;
  position: relative;
}

.team_section .team_container .box .social_box {
  padding: 10px 45px 20px 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.team_section .team_container .box .social_box a {
  color: #ffffff;
  font-size: 22px;
}

.team_section .team_container .box .social_box a:hover {
  color: #006FBF;
}

/*team section end*/
/* client section start */
.client_section .heading_container {
  margin-bottom: 30px;
}

.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 15px;
}

.client_section .box .img-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100px;
  margin-bottom: -50px;
  margin-left: 25px;
  position: relative;
}

.client_section .box .img-box img {
  border-radius: 100%;
}

.client_section .box .client_id {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.client_section .box .client_id .client_info h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

.client_section .box .client_id .client_info p {
  margin-bottom: 0;
  font-size: 15px;
  font-size: 14px;
  margin-bottom: 10px;
}

.client_section .box .detail-box {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
  padding: 75px 25px 25px 25px;
}

.client_section .box .detail-box i {
  color: #806319;
  margin-bottom: 10px;
}

.client_section .owl-carousel .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}

.client_section .owl-carousel .owl-nav .owl-prev,
.client_section .owl-carousel .owl-nav .owl-next {
  width: 55px;
  height: 55px;
  background-color: #ffffff;
  color: #000000;
  outline: none;
  bottom: 0px;
  font-size: 24px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
}

.client_section .owl-carousel .owl-nav .owl-prev:hover,
.client_section .owl-carousel .owl-nav .owl-next:hover {
  color: #806319;
}

/* client section end */
.info_section {
  background-color: #07AA35;
  color: #ffffff;
  padding: 30px 0 15px 0;
}

.info_section h4 {
  font-weight: 600;
  margin-bottom: 20px;
}

.info_section .info_col {
  margin-bottom: 30px;
}

.info_section .info_contact .contact_link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.info_section .info_contact .contact_link_box a {
  margin: 5px 0;
  color: #07AA35;
}

.info_section .info_contact .contact_link_box a i {
  margin-right: 5px;
}

.info_section .info_contact .contact_link_box a:hover {
  color: #806319;
}

.info_section .info_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  margin-bottom: 10px;
}

.info_section .info_social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  border-radius: 100%;
  margin-right: 10px;
  font-size: 24px;
}

.info_section .info_social a:hover {
  color: #07AA35;
}

.info_section .info_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.info_section .info_links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  color: #ffffff;
}

.info_section .info_links a:hover {
  color: #07AA35;
}

.info_section form input {
  border: none;
  border-bottom: 1px solid #ffffff;
  background-color: transparent;
  width: 100%;
  height: 45px;
  color: #ffffff;
  outline: none;
}

.info_section form input::-webkit-input-placeholder {
  color: #ffffff;
}

.info_section form input:-ms-input-placeholder {
  color: #ffffff;
}

.info_section form input::-ms-input-placeholder {
  color: #ffffff;
}

.info_section form input::placeholder {
  color: #818182;
}

.info_section form button {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px 55px;
  background-color: #806319;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  margin-top: 15px;
}

.info_section form button:hover {
  background-color: #006FBF;
}

/* footer section*/
.footer_section {
  position: relative;
  background-color: #ffffff;
  text-align: left;
}

.footer_section p {
  color: #07AA35;
  padding: 20px 0 20px 0;
  margin: 0;
}

.footer_section p a {
  color: inherit;
}
.footer_section .container .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_section .detail-box .right-align {
    text-align: right;
}

.about .footer_section {
    background-color: #f0f0f0;
}

.tagline-divider {
    margin: 15px auto 3px;
    max-width: 250px;
    border-color: #999999;
}

	.floatingBtn {
	background: #006FBF;
	color: #fff;
	transform: rotate(0deg);
	width: 75px;
	height: 75px;
	position: fixed;
	right: 20px;
	top: 75%;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	border: none;
	font-size: 30px;
	text-align: center;
	text-transform: uppercase;
	font-weight: bold;
	padding: 10px;
	white-space: nowrap;
	}
			
.testimonials {
    text-align: center;
    padding: 40px;
    background-color: #f4f4f4;
}

.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    width: 100%;
    text-align: center;
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.quote {
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
}

.customer-name {
    font-weight: bold;
    color: #333;
}

.customer-role {
    font-size: 0.9rem;
    color: #888;
}

.offerings {
    text-align: center;
    padding: 40px;
    background-color: #f4f4f4;
}

.offerings h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s, transform 1s;
}

.offerings h2.animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s, transform 1s;
}

.offering.animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s, transform 1s;
}


.offering-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
	margin-top: 20px;
    margin-left: 50px;
    margin-right: 50px;
}

.offering {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 23%;
    text-align: center;
    margin-bottom: 20px;
	opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s, transform 1s;
}

.offering a {
    color: #006FBF;
}

.offering img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.offering h5 {
  font-weight: bold;
  text-transform: uppercase;
}

.offering:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.offering:hover img {
    transform: scale(1.1);
}

.offering:hover a {
    color: #07AA35;
    text-decoration: underline;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#offerings:before {
    content: '';
    display: block;
    width: 300px;
    height: 4px;
    background-color: #07AA35;
    margin: 0px auto 50px auto;
}

#our-tech-services {
  position: relative; 
  z-index: 1 !important; 
}

#why-us {
	min-height: 400px;
    background: linear-gradient(to right, #07AA35, #F4F4F4);
    padding: 60px 0;
    color: #fff;
	text-align: center;
}


#why-us .heading_container h2 {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #806319;
    animation: fadeInUp 1s ease-in-out;
}

#why-us p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#why-us a {
    background-color: #07AA35;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

#why-us a:hover {
    background-color: #806319;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#why-us i {
    color: #806319;
    margin-right: 10px;
}
#why-us b {
    color: #444;
}

.animate-section {
    opacity: 0;
    transform: translateY(50px); 
    transition: opacity 1s ease, transform 1s ease;
}

.animate-section.visible {
    opacity: 1;
    transform: translateY(0); 
}

.animate-section h2 {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-section.visible h2 {
    opacity: 1;
    transform: translateY(0);
}

.animate-section .img-box, 
.animate-section .detail-box {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-section.visible .img-box {
    opacity: 1;
    transform: translateY(0);
}

.animate-section.visible .detail-box {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s; 
}

.box:hover .img-box img {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
}

.box:hover .detail-box h5 {
    transform: translateY(-5px);
    transition: transform 0.3s ease-in-out;
}

.box:hover .detail-box a {
    color: #07AA35;
    text-decoration: underline;
}

.detail-box a {
    color: #006FBF;
}

#our-fin-services {
    display: block !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    position: relative !important;
  z-index: 1 !important; 
}

#our-fin-services h2 {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

#our-fin-services.visible h2, 
#our-fin-services h2.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.app-links {
    margin-top: 20px;
}

.app-row {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.app-row h6 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #444;
    margin: 0;
}

.store-buttons {
    display: flex;
    gap: 10px;
}

.store-icon {
    height: 40px;
    transition: transform 0.3s ease;
}

.store-icon:hover {
    transform: scale(1.1);
}

#contact-us {
    background: linear-gradient(to right, #f4f4f4, #eaeaea); /* Light gradient */
    padding: 60px 0;
    color: #333;
    text-align: center;
}

#contact-us .info_contact h4 {
    font-size: 2rem;
    font-weight: bold;
    color: #07AA35; 
    margin-bottom: 15px;
}
#subscribeForm {
    display: block;
	width: auto;
    justify-content: center;
    gap: 10px;
    margin: 5px 20px 0 20px;
}

#subscribeForm input {
   display: block;
    padding: 10px;
    border: 1px solid #806319;
    border-radius: 5px;
	color :#000;
}

#subscribeForm button {
    background-color: #07AA35;
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

#subscribeForm button:hover {
    background-color: #806319;
}

@media screen and (max-width: 768px) {
    #subscribeForm {
        flex-direction: column;
    }

    #subscribeForm input {
        width: 100%;
    }

    .app-row {
        flex-direction: column;
        align-items: center;
    }
}

/*# sourceMappingURL=style.css.map */