@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Merriweather+Sans:wght@400;700&display=swap");
body {
  font-family: 'Lato', sans-serif;
  color: #040000;
  background-color: #d1e3ff;
}

.layout_padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

.layout_padding2 {
  padding: 45px 0;
}

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

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

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

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

.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 {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  font-family: 'Merriweather Sans', sans-serif;
}

.heading_container p {
  margin-bottom: 0;
}

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

h1,
h2 {
  font-family: 'Merriweather Sans', sans-serif;
}

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

/*header section*/
.hero_area {
  position: relative;
  background-color: #ffffff;
}

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

.header_section .header_top {
  padding: 15px 0;
  background-color: #000000;
}

.header_section .header_top .contact_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header_section .header_top .contact_nav a {
  color: #ffffff;
}

.header_section .header_top .contact_nav a i {
  color: #ff8a1d;
}

.header_section .header_bottom {
  padding: 10px 0;
}



.quote_btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.quote_btn-container a {
  color: #ffffff;
  margin-right: 25px;
  text-transform: uppercase;
}

.quote_btn-container a span {
  margin-left: 5px;
}

.quote_btn-container a:hover {
  color: #ff8a1d;
}

/*end header section*/
/* slider section */
.slider_section {
  height: 200px;
  -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;
  background-size: cover;
  background-position: bottom;
}

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

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

.slider_section .detail-box {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center content horizontally */
  text-align: center; /* Align text to center */
  padding: 10px;
  box-sizing: border-box; /* Include padding in width calculations */
}

.slider_section .detail-box h1 {
  font-weight: bold;
  margin-bottom: 25px;
  color: #0355cc;
}

.slider_section .detail-box p {
  color: #444;
  font-size: 15px;
}

.slider_section .detail-box a {
  display:contents;
  font-family: 'Merriweather Sans', sans-serif;
  text-transform: uppercase;
  padding: 10px 45px;
  background-color: #ff8a1d;
  border: 1px solid #ff8a1d;
  border-radius: 5px;
  color: #ffffff;
  margin-top: 15px;
}

@media (max-width: 768px) {
  .slider_section {
    padding: 20px; /* Add some padding for mobile */
  }

  .slider_section .detail-box {
    width: 100%; /* Ensure the box fits within the container */
    padding: 10px; /* Add some padding */
    position: relative;
    right: 300px;
    top: 100px;
  }

  .slider_section .detail-box a {
    width: auto; /* Let buttons resize naturally */
    font-size: 14px; /* Adjust font size for smaller screens */
    padding: 10px 30px; /* Adjust padding for smaller buttons */
  }
} 

.slider_section .detail-box a:hover {
  background-color: transparent;
  color: #ff8a1d;
}

.slider_section .img-box img {
  width: 100%;
}

.feature_section {
  transform: translateY(-50%);
}

.feature_section .feature_container {
  display: flex;
  gap: 20px;
}

.feature_section .feature_container .box {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 20px;
  background-color: #ffffff;
  color: #555089;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  min-height: 200px;
  position: relative;
}

.feature_section .feature_container .box:hover {
  background-color: #ff8a1d;
  color: #ffffff;
}

.feature_section .feature_container .box:hover .btn-primary,
.feature_section .feature_container .box:hover .btn-secondary,
.feature_section .feature_container .box:hover .btn-danger {
  color: #ffffff;
}

.feature_section .feature_container .box .card-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 15px;
}

.feature_section .feature_container .box .card-text {
  font-size: 14px;
  margin-bottom: 20px;
}

.feature_section .feature_container .box button i {
  margin-right: 5px;
}

.feature_section .feature_container .box .btn-danger {
  color: #ffffff;
}

.feature_section .feature_container .box .btn-primary {
  background-color: #007bff;
  border: none;
}

.feature_section .feature_container .box .btn-secondary {
  background-color: #6c757d;
  border: none;
}

.three-button {
  position: relative;
  top: 21px;
  left: 20px;
  width: 130px;
  color: white;
  background-color: red; /* Bootstrap danger color */
  padding: 5px 10px;
  border-radius: 0 0 10px 0;
  font-size: 12px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

/* Style for the YouTube Guide button in the ERP Portal card */
.two-button {
  position: relative;
  top: 20px;
  left: 20px;
  width: 130px;
  color: white;
  background-color: red; 
  padding: 5px 10px;
  border-radius: 0 0 10px 0;
  font-size: 12px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

@media (max-width: 768px) {
  .three-button {
    position: relative;
    top: 30px;
    left: 15px;
    width: 130px;
    color: white;
    background-color: red; /* Bootstrap danger color */
    padding: 5px 10px;
    border-radius: 0 0 10px 0;
    font-size: 12px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  /* Style for the YouTube Guide button in the ERP Portal card */
  .two-button {
    position: relative;
    top: 30px;
    left: 15px;
    width: 130px;
    color: white;
    background-color: red; 
    padding: 5px 10px;
    border-radius: 0 0 10px 0;
    font-size: 12px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }

  .btn-dark{
    position: relative;
    bottom: 38px;
  }
  
}



.info_section {
  padding: 75px 0;
  background-color: #0a0f43;
  text-align: center;
  color: #fff;
}

.info_section h4 {
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 25px;
}

.info_section .social-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;
  margin-top: 25px;
}

.info_section .social-box .box {
  background-color: #ffffff;
  padding: 5px 15px;
}

.info_section a {
  margin: 0 5px;
  color: #0355cc;
}

.info_section a i {
  font-size: 18px;
}

.info_section a:hover {
  color: #ff8a1d;
}

.info_items a {
  position: relative;
}

.info_items .item {
  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;
}

.info_items .item .img-box {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  line-height: 80px;
  background-color: #0355cc;
  color: #ffffff;
}

.info_items .item .img-box i {
  font-size: 24px;
}

.info_items .item p {
  margin-top: 25px;
  color: #fff;
  margin-bottom: 0;
  background-color: #0a0f43;
}

.info_items .item:hover .img-box {
  background-color: #ff8a1d;
}

.info_items {
  position: relative;
}

.info_items::before {
  content: "";
  position: absolute;
  top: 65px;
  width: 75%;
  height: 1px;
  background-color: #fff;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* footer section*/
.footer_section {
  background-color: #0a0f43;
}

.footer_section p {
  margin: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
  border-top: 0.8px solid #ffffff;
}

.footer_section a {
  color: inherit;
}

/* end footer section*/


.search-box {
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid #ccc;
  margin-right: 10px;
  width: 300px;
}
.search-btn {
  background-color: #ff8a1d;
  border: none;
  color: white;
  padding: 8px 12px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 20px;
  cursor: pointer;
}

.search-btn i {
  font-size: 18px;
}
