/* CSS for enhanced appearance */
.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;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 10px;
}

.heading_container h2::before {
  content: "";
  width: 40px;
  height: 7px;
  background-color: #f1db25;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
}

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

.heading_container.heading_center h2::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

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

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

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

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

.hero_bg_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.8)), to(rgba(white)));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(white));
}

.sub_page .hero_area {
  min-height: auto;
}

.sub_page .custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link {
  padding-bottom: 21px;
}

.hero_area.sub_pages {
  height: auto;
}

.header_section {
  padding: 0;
}

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

.header_section .nav_container {
  margin: 0 auto;
}

.header_top {
  background-color: ghostwhite;
  padding: 15px 0;
}

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

.header_top .contact_link-container a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  font-size: 15px;
}

.header_top .contact_link-container a i {
  font-size: 20px;
  color: #f1db25;
  margin-right: 5px;
}

#navbarSupportedContent {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.custom_nav-container {
  z-index: 99999;
  padding: 0;
}

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

.custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 35px 15px 10px 15px;
  color: royalblue;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link, .custom_nav-container .navbar-nav .nav-item.active .nav-link {
  background-color: #1c1c1c;
}

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;
}

.navbar-brand {
  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;
}

.navbar-brand span {
  font-weight: bold;
  color: dodgerblue;
  font-size: 24px;
}

.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: 32px;
  height: 4px;
  background-color: dodgerblue;
  border-radius: 15px;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}

.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: dodgerblue;
  border-radius: 15px;
  top: -10px;
  -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*/
/*header section*/
.hero_area {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.welcome-hero{
    display: flex;
    align-items: center;
    justify-content: center;
    position:relative;
    background:url(../img/businessman-3213659_1280.jpg)no-repeat;
    background-size:cover;
    background-position: center;
    height:890px;
}
.welcome-hero:before{
    position:absolute;
    content: " ";
    top:0;
    left:0;
    background:rgba(31,44,108,.65);
    width:100%;
    height:100%;
}


.header-text h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
}

.header-text p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 40px;
}

.header-text a {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 15px 30px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.header-text a:hover {
    background-color: #0056b3;
}
/*INTRODUCTION STARTS*/
.services-mf {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.title-box {
  margin-bottom: 40px;
}

.title-a {
  font-size: 36px;
  color: black;
}

.subtitle-a {
  font-size: 18px;
  color: black;
}

.line-mf {
  width: 30%;
  height: 3px;
  background-color: #007bff;
  margin: 16px auto;
}
.title-a {
    color: lightskyblue;

}
/*INTRODUCTION ENDS*/

/* SECTION STARTS */
 .section-card {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 20px;
        margin-bottom: 20px;
    }

    .section-card h2 {
        color: #333;
        font-size: 24px;
        margin-bottom: 10px;
    }

    .section-card p {
        color: #666;
        font-size: 16px;
        line-height: 1.6;
    }
/*SECTION ENDS*/

/*FOOTER STARTS*/
  footer {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 10px;
            position: fixed;
            bottom: 0;
            width: 100%;
            left: 0;
            opacity: 0;
            animation: fadeIn 1s ease-in-out forwards, changeColor 6s infinite;
        }

        footer p {
            margin: 0;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes changeColor {
            0%, 100% {
                background-color: steelblue;
            }
            50% {
                background-color: lightskyblue;
            }
        }

/*FOOTER ENDS*/

/* CSS for the about section */
.about_section {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.about_section .container {
    position: relative;
}

.about_section .row {
    display: flex;
    align-items: center;
}

.about_section .detail-box {
    margin-right: 20px;
}

.about_section .detail-box h2 {
    color: black;
    font-size: 32px;
}

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

.about_section .detail-box a {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
span{
    color: green;
}
.about_section .img-box {
 width: 100%;
    max-width: 400px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.about_section .img-box img {
    width: 100%;
    height: auto;

    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
    @media (min-width: 768px) {
        .about_section .row {
            flex-direction: row;
        }

        .about_section .detail-box {
            margin-right: 20px;
            text-align: left;
        }
    }
    /* CSS for custom-about-section */
.service_section {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}

.service_section .box {
    width: 250px; /* Adjust card width based on your design */
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.service_section .box .img-box {
    width: 150px; /* Adjust image box size */
    height: 170px; /* Adjust image box size */
    margin: 0 auto;
}

.service_section .box .img-box img {
    max-width: 120%;
    max-height: 170%;
    transition: transform 0.3s ease;
}

.service_section .box .detail-box {
    margin-top: 15px;
}

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

.service_section .box .detail-box p {
    margin: 0;
}

.service_section .box:hover {
    background-color: #f9f9f9;
    transform: translateY(-5px);
}

.service_section .box:hover .img-box img {
    transform: scale(1.1);
}

.service_section .btn-box {
    width: 100%;
    margin-top: 25px;
    text-align: center;
}

.service_section .btn-box a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #da7426;
    color: #ffffff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

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

/* bottom container starts.*/
/* Styles for Info Section */
.info_section {
    background-color: dodgerblue;
    padding: 50px 0;
}

.info_container {
    max-width: 1200px;
    margin: 0 auto;
}

.info_logo {
    text-align: center;
    margin-bottom: 20px;
}

.info_logo a {
    font-size: 24px;
    color: #333;
    text-decoration: none;
}

.info_logo a span {
    color: #da7426;
}

.info_main .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.info_main .col-md-3 {
    flex: 0 0 calc(25% - 20px);
    margin-bottom: 20px;
}

.info_main h5 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.info_main p {
    font-size: 16px;
    color: #666;
}

.info_link-box ul {
    list-style: none;
    padding: 0;
}

.info_link-box ul li {
    margin-bottom: 10px;
}

.info_link-box ul li a {
    color: #333;
    text-decoration: none;
}

.social_box {
    text-align: center;
}

.social_box a {
    color: #333;
    text-decoration: none;
    margin: 0 10px;
}

.info_bottom .info_contact .row {
    align-items: center;
}

.info_bottom .info_contact .row .col-md-3 {
    text-align: center;
}

.info_bottom .info_contact .row .col-md-3 a {
    display: block;
    color: #333;
    text-decoration: none;
    margin-bottom: 10px;
}

.info_bottom .info_contact .row .col-md-3 a i {
    margin-right: 10px;
}

.info_bottom .info_contact .row .col-md-5 {
    text-align: center;
}

.info_bottom .info_contact .row .col-md-5 a {
    display: block;
    color: #333;
    text-decoration: none;
    margin-bottom: 10px;/
}

.info_bottom .info_contact .row .col-md-4 {
    text-align: center;
}

.info_bottom .info_contact .row .col-md-4 a {
    display: block;
    color: #333;
    text-decoration: none;
    margin-bottom: 10px;
}

.info_bottom .info_contact .row .col-md-4 a i {
    margin-right: 10px;
}

.info_bottom .info_form {
    text-align: center; /* Center form */
    margin-top: 20px; /* Add space above form */
}

.info_bottom .info_form input[type="email"] {
    width: 100%; /* Set input width to fill container */
    padding: 10px; /* Add padding */
    border: 1px solid #ccc; /* Add border */
    border-radius: 5px; /* Add border radius */
    margin-bottom: 10px; /* Add space below input */
}

.info_bottom .info_form button {
    background-color: #da7426; /* Set button background color */
    color: #fff; /* Set button text color */
    border: none; /* Remove border */
    padding: 10px 20px; /* Add padding */
    border-radius: 5px; /* Add border radius */
    cursor: pointer; /* Set cursor to pointer */
    transition: background-color 0.3s; /* Add transition effect */
}

.info_bottom .info_form button:hover {
    background-color: #c25d17; /* Change background color on hover */
}

/* Media Queries for Responsive Design */
@media (max-width: 992px) {
    .info_main .col-md-3 {
        flex-basis: 48%; /* Set column width for medium screens */
    }
}

@media (max-width: 768px) {
    .info_main .col-md-3 {
        flex-basis: 100%; /* Set column width for small screens */
    }
}

/*bottom container Ends*/
