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

:root {
  --black: #000000;
  --primary1: white;
  --primary2:#f4f4f4d7;
  --primary3:#67c849;
  --primary4:#ABC2E8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Merriweather Sans', sans-serif;
  color: var(--primary3);
}

/* h2 {
  font-style: italic;
  color: var(--primary3);
} */

span2 {
  color: black;
}

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

html {
  scroll-behavior: smooth;
}

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

/* General Header Styling */
.hero_area {
  background-color: var(--primary2); /* Light background for the hero area */
  padding: 0;
}

/* Header Top (Contact Info) */
.header_top {
  background-color: var(--primary2); /* Slightly darker background for contact area */
  padding: 10px 0;
}

.contact_nav {
  display: flex;
  justify-content:space-between;  
  padding: 0 20px;
  /* background-color: var(--primary1); */
  color: var(--black);
  height: 50px;
  align-items: center;
  font-size: 14px;
}

.contact_nav a {
  color: var(--black);
  margin-right: 20px;
  text-decoration: none;
}

.contact_nav a i {
  margin-right: 5px;
}

/* Header Bottom (Navbar) */
.header_bottom {
  background-color: var(--primary2); /* Darker background for the navbar */
  padding: 10px 0;
}

.custom_nav-container {
  padding: 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}

.navbar-brand img {
  height: 70px; /* Adjust the logo size */
}

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

.nav-item {
  margin-left: 20px;
}

.nav-link {
  color: var(--black);
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary3) !important; /* Hover color */
}

.nav-item.active .nav-link {
  color: var(--primary3) !important; /* Active link color */
}

.navbar-toggler {
  border-color: var(--black);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='rgb(0, 173, 61)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>");
}


/* Change color of toggle button on smaller screens (below 768px) */
@media (max-width: 768px) {
  .toggle-button {
    display: block; /* Show the toggle button on smaller screens */
    color: var(--primary3); /* Change color */
  }
}


/* Mobile Responsive */
@media (max-width: 768px) {
  .contact_nav {
    justify-content: space-between;
  }

  .contact_nav a {
    font-size: 6px;
  }

  .navbar-nav {
    flex-direction: column;

    text-align: center;
  }

  .nav-item {
    margin: 10px 0;
  }
}


/* slider section */
.slider_section {
  background-color: var(--primary2);
}

.slider-text h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

.slider-text h1 span {
  color: #67c849;
}

.slider-text p {
  font-size: 1.125rem;
  color: #555;
  margin-top: 1rem;
}

.slider-text .btn {
  background-color: var(--primary2);
  color: var(--primary3);
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: var(green) 0.3s ease;
  border: 2px solid var(--primary3);
}

.slider-text .btn:hover {
  background-color: #57ac3d;
  color: white;
}

.slider-image img {
  max-width: 100%;
  height: auto;
}

@media(max-width: 768px) {
  .slider-image img {
    display: none;
  }
}




/* features section */

/* Feature Section Layout */


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

.feature_section .feature_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
}



/* Container for the boxes */
.feature_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

/* Individual Box */
.feature_container .box {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  max-width: 260px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

/* Active State */
.feature_container .box.active {
  background-color: var(--primary3);
  color: #ffffff;
}

.feature_container .box.active .icons {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Icon Styling */
.feature_container .icons {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #e9f0ff;
  color: var(--primary3);
  transition: background 0.3s ease, color 0.3s ease;
}

/* Heading Text */
.feature_container .name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 0.5rem;
  color: inherit;
}

/* Responsive Design */
@media (min-width: 375px) {
  .feature_container {
    display: none;
    flex-direction: column;
    align-items: center;
  }

  .feature_container .box {
    max-width: 90%;
  }
}

@media (min-width: 375px) {
  .feature_container .box {
    max-width: 100%;
    display: none;
  }
}

.about2_section {
  background-color: var(--primary2);
  padding-top:10px ;
}

/* professional section in about page */
.professional2_section {
  background-color: var(--white);
  margin: 100px 50px;
}

.professional3_section{
  background-color: var(--primary2);
}

.professional3_section .img-box img{
  width: 100%;
  margin: 80px 5px;
  border-radius: 30px;
}

.professional3_section .detail-box {
  margin: 80px 10px;
  padding: 0 0px;
}

.professional4_section .container {
  margin-top: 50px;
}

.professional4_section .container .quote span {
  color: var(--primary3);
}

.professional4_section .quote {
  text-align: center;
  font-size: 40px;
}

.professional4_section .quote-text {
  text-align: center;
  margin-top: 10px;
}

.professional4_section .quote-text h4 {
  font-size: 50px;
  font-style: italic;
}

.professional4_section .owner h5 {
  text-align: center;
  padding-top: 30px;
  color: black;
  font-weight: bold;
} 

.professional4_section .position h6 {
  text-align: center;
  color: #000000;
  font-weight: bolder;
  font-size: smaller;
} 

.mission_section {
  display: block;
  margin-top: 30px;
  /* text-align: center;  */
} 

.mission_section .container h2 {
  text-align: center;
  padding-top: 30px;
}

.mission_section .container .box .text {
  padding: 5px 0;
}

.value_section .container .wrapper {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
}

.value_section .container .wrapper .value {
  background-color: var(--primary2);
  padding: 20px 10px;
  margin: 10px 10px;
  gap: 30px;
  border-radius: 15px;
}

.value_section .container .wrapper .value i {
  font-size: 50px;
  margin: 10px 0;
}

.value_section {
  display: block;
}


/* about section */
.about_section {
    padding-bottom: 10px;
    background-color: var(--white);
}

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

.about_section .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.about_section .col-lg-5,
.about_section .col-md-6 {
    flex: 1;
}

.about-box {
    padding: 40px;
    border-radius: 8px;
}

.about-box h2 {
    font-size: 2rem;
    color: var(--primary3);
    margin-bottom: 20px;
    font-weight: 600;
}

.about-box p {
    font-size: 1rem;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-box a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary3);
    text-decoration: none;
    border: 2px solid var(--primary3);
    padding: 8px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.about-box a:hover {
    background-color: var(--primary3);
    color: #ffffff;
}

.img-box {
    flex: 1;
    text-align: center;
}

.img-box img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .about_section .row {
        flex-direction: column;
    }

    .about_section .col-lg-5,
    .about_section .col-md-6 {
        flex: unset;
        max-width: 100%;
    }
}

/* ending of about */


/* Heading Styles */
.new_service_section .heading_container {
  text-align: center;
  margin-bottom: 40px;
}

.new_service_section .heading_container h2 {
  font-size: 2.5rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

/* Service Section */
.new_service_section {
    background-color: var(--primary2);
    padding: 50px 0;
    margin-top: 20px;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Service Description Styling */
.service-description {
    margin-bottom: 40px;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.service-description h5 {
    font-size: 1.8rem;
    color: var(--primary3); /* Blue color for the titles */
    margin-bottom: 15px;
    text-align: center;
}

.service-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Span Styling */
.service-description span {
    font-weight: bold;
    color: var(--primary3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    .service-description h5 {
        font-size: 1.5rem;
    }

    .service-description p {
        font-size: 0.95rem;
    }
}



/*  start of what we offer section */
.what_we_offer_section {
  padding: 30px 0;
  background-color: #f8f8f8;
}

.what_we_offer_section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Heading Styles */
.heading_container h2 {
  margin: 20px auto;
  text-align: center;
}

/* Carousel Wrap */
.carousel-wrap {
  position: relative;
}

.owl-carousel .item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-box {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 40px;
  color: #4CAF50;
  margin-bottom: 20px;
}

.service-box h4 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.service-box p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .what_we_offer_section .container {
    padding: 0 20px;
  }

  .service-box {
    padding: 25px;
  }

  .service-box h4 {
    font-size: 22px;
  }

  .service-box p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .what_we_offer_section .container {
    padding: 0 10px;
  }

  .heading_container h2 {
    font-size: 28px;
  }

  .owl-carousel .item {
    margin-bottom: 20px;
  }

  .service-box {
    padding: 20px;
  }

  .service-box h4 {
    font-size: 20px;
  }

  .service-box p {
    font-size: 14px;
  }
}

/* end of offer section */

/* start of help section*/
/* Section Layout */
.how_we_help_section {
  background-color: #f9fafc;
  padding: 4rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.how_we_help_section .heading_container h2 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: black;
}

.how_we_help_section .heading_container p {
  font-size: 1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 2rem;
  text-align: center;
}

/* Services Layout */
.services_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Individual Service Card */
.service_item {
  background-color: var(--primary1);
  border-radius: 1rem;
  margin: 5px 5px;
  padding: 3px 1.5px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  width: 250px;
  transition: all 0.3s ease;
}

.service_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

/* Icon Styling */
.service_icon {
  background-color: white;
  color: var(--primary3);
  font-size: 2rem;
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.service_item h4 {
  font-size: 1.25rem;
  margin: 1rem 0 0.5rem;
  color: #222;
  font-weight: 600;
}

.service_item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services_container {
    flex-direction: column;
    align-items: center;
  }

  .service_item {
    width: 90%;
  }
}



/* Services Container */
/* General Layout */
.service_section2 {
  background-color: var(--white);
  padding: 4rem 0;
}

.service_section2 .heading_container h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
}

.service_section2 .service_text p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  color: #555;
  line-height: 1.6;
}

/* Card Layout */
.service_section2 .card {
  background-color: var(--white);
  padding: 2rem;
  height: 100%;
}

/* Icon Styling */
.service_section2 .icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 123, 255, 0.1);
  color: var(--primary3);
  font-size: 2rem;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.service_section2 .card .icon-box.text-success {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

.service_section2 .card .icon-box.text-warning {
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
}

/* List Styling */
.service_section2 ul {
  padding-left: 1rem;
  margin-top: 2rem;
}

.service_section2 ul li {
  list-style: none;
  margin-bottom: 0.5rem;
  color: #333;
  font-size: 0.8rem;
  /* position: re; */
  /* padding-left: 1.5rem; */
}

.service_section2 ul li::before {
  content: "✓";
  position: absolute;
  /* left: 0; */
  color: #28a745;
  font-weight: bold;
}

/* CTA Button */
.service_section2 .btn-box a,
.service_section2 .text-center a.btn {
  background-color: var(--primary3);
  color: black;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  justify-content: center;

}

.service_section2 .btn-box a:hover,
.service_section2 .text-center a.btn:hover {
  background-color: var(--primary1);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
.service_section2 .btn-box a,
.service_section2 .text-center a.btn {
  width: 100%;
  text-align: center;
  padding: 0.75rem;
  }

  .service_section2 .card {
    background-color: var(--primary1);
    padding: 2rem;
    /* height: 100%; */
  }
}

/* end of help, section */

/* start of professional section */
.professional_section {
  padding: 40px 40px;
  background-color: #fefefe;
  text-align: center;
}

.professional_section .img-box img {
  max-width: 100%;
  height: auto;
}

.detail-box h2 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #333;
}

.detail-box h2 span {
  color: var(--primary3) /* Accent color */
}

.what {
  margin-top: 25px;
}

.arrow {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
}

.arrow i {
  color: #28a745; /* Green check */
  font-size: 1.2rem;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .detail-box h2 {
    font-size: 1.75rem;
  }

  .arrow {
    font-size: 0.95rem;
  }
}
/* end of professional section */


/* General Styles */
.service_section {
  padding: 60px 0;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.heading_container h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  position: relative;
}

.heading_container h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #28a745;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.service_card {
  background: var(--primary1);
  padding: 30px 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service_card .icon {
  font-size: 2.5rem;
  color: #28a745;
  margin-bottom: 20px;
}

.service_title {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 15px;
  font-weight: 600;
}

.service_text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.btn.btn-success {
  background-color: #28a745;
  border: none;
  color: #fff;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 30px;
  transition: background 0.3s ease;
  text-transform: uppercase;
}

.btn.btn-success:hover {
  background-color: #218838;
}

/* Responsive spacing */
@media (max-width: 767px) {
  .service_card {
    padding: 25px 20px;
    margin:20px 0 ;
    background-color: var(--primary2);
    border-bottom: 4px solid var(--primary3);
  }

  .service_title {
    font-size: 1.2rem;
  }

  .service_text {
    font-size: 0.9rem;
  }
}



/* contact section */

.contact_section {
  padding: 4rem 0;
  background-color: var(--white);
}

.contact_section .heading_container {
  margin-bottom: 2rem;
}

.contact_section h2 {
  font-size: 2.5rem;
  color: #333;
}

.contact_section p {
  font-size: 1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.contact_form input,
.contact_form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact_form input:focus,
.contact_form textarea:focus {
  outline: none;
  border-color: #28a745;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.contact_form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact_form button {
  background-color: var(--primary3);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.contact_form button:hover {
  background-color: #218838;
}

.map_container {
  height: 100%;
  min-height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Responsive Grid */
@media (min-width: 768px) {
  .contact_section .row {
    display: flex;
    gap: 2rem;
    align-items: stretch;
  }

  .contact_section .col-md-6 {
    flex: 1;
  }
}

@media (max-width: 767px) {
  .contact_form button {
    margin-top: 1rem;
  }
}


/* === Subscribe Section === */
.subscribe_section {
  background-color: #f8f9fa;
  padding: 60px 0;
  text-align: center;
}

.subscribe_section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.subscribe_section p {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 30px;
}

.subscribe_section .input-group {
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.subscribe_section .form-control {
  height: 50px;
  font-size: 1rem;
  border: 1px solid #dee2e6;
  border-right: none;
  border-radius: 0;
}

.subscribe_section .btn {
  height: 50px;
  font-weight: 600;
  background-color: var(--primary3);
  color: white;
  border-radius: 0;
  transition: 0.3s ease;
}

.subscribe_section .btn:hover {
  background-color: #157347;
}


/* === Info Section === */
.info_section {
  background-color: var(--primary4);
  color: #ffffff;
  padding: 60px 0;
}

.info_section h4 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.info_item {
  text-align: center;
  margin-bottom: 25px;
}

.info_item i {
  font-size: 1.5rem;
  color: #28a745;
  margin-bottom: 10px;
}

.info_item p {
  margin: 0;
  font-size: 1rem;
  color: #e9ecef;
}

.info_section a {
  text-decoration: none;
  color: inherit;
}

.info_section a:hover i {
  color: #fff;
}


/* === Social Box === */
.social-box {
  text-align: center;
  margin-top: 40px;
}

.social-box h5 {
  margin-bottom: 20px;
  font-size: 1.25rem;
  font-weight: 600;
}

.social-box .box a {
  display: inline-block;
  margin: 0 10px;
  color: #ced4da;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-box .box a:hover {
  color: #ffffff;
}


/* === Footer Section === */
.footer_section {
  background-color: #111111;
  color: #cccccc;
  padding: 20px 0;
  text-align: center;
  font-size: 0.95rem;
}

.footer_section p {
  margin: 0;
}



/* back to top */
.back-to-top {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  right: 20px;
  bottom: 40px;
  background: var(--primary3);
  color: var(--black);
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: rgb(57, 141, 57);
  transition: background 0.2s ease-in-out;
}

/* Mobile media query for screens 378px or smaller */
@media (max-width: 378px) {
  section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hero_area {
    padding-bottom: 20px;
  }

  .slider_section .detail-box {
    font-size: 14px; /* Adjust text size */
    margin-bottom: 15px;
  }

  .slider_section .img-box img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .feature_section .feature_container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
  }

  .feature_section .feature_container .box {
    width: 90%; /* Make boxes take more space on small screens */
    margin-bottom: 15px;
  }

  .about_section .img-box {
    margin-top: 20px;
    text-align: center;
  }

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

  .professional_section .img-box,
  .professional_section .detail-box {
    text-align: center;
  }

  .service_section .box {
    margin-bottom: 20px;
  }

  .client_section {
    padding: 20px 10px;
  }

  .contact_section .form-control,
  .contact_section .message-box {
    margin-bottom: 10px;
  }

  .subscribe_section .input-group {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .subscribe_section input.form-control {
    width: 100%;
  }

  .subscribe_section button {
    width: 100%;
  }

  .info_section {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}



/* end footer section*/
# sourceMappingURL=style.css.map