body {
    font-family: "Poppins", sans-serif;
    background-color: #f0f8f5; /* Light greenish color */
    color: #666565;
    font-size: 16px;
}

a{
    color:darkgreen;
    font-size: 1.2rem;
}

a:hover{
    color:blue;
}

ul{
    font-size: 1.2rem;
}

h1 {
    font-size: 3.5rem; /* 36px */
    color:#0E2E50;
}

h2 {
    font-size: 2.8rem; /* 30px */
}

h3 {
    font-size: 2rem; /* 24px */
    color:#0E2E50;
}

h4 {
    font-size: 1.5rem; /* 20px */
    color:#0E2E50;
}

h5 {
    font-size: 1.25rem; /* 18px */
    color:#0E2E50;
}

h6 {
    font-size: 1.125rem; /* 16px */
    color:#0E2E50;
}

p {
  font-size: 1.25rem;
  line-height: 1.75;
}

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

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

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

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

.heading_container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

.heading_container h2 {
    position: relative;
    font-weight: bold;
    margin-right: 10px;
    color: #1c9c6b;
}

.heading_container img {
    width: 30px;
}

.number_small {
    font-size: 1rem; /* 14px */
    text-align: center;
    font-weight: lighter;
}

/* Header Section */
.hero_area {
    background-color: #f0f8f5;
    display: flex;
    flex-direction: column;
    position: relative;
}

.header_section {
    background-color: #ffffff;
    padding-top: 10px;
    padding-bottom: 10px;
}

.custom_nav-container .navbar-nav .nav-item {
    padding: 0 8px;
}

.custom_nav-container .nav-link {
    padding: 8px 5px;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
    color: #1c9c6b;
    text-align: center;
    border-radius: 35px;
    text-transform: uppercase;
    font-size: 15px;
}

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

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    margin-right: 5px;
    width: 230px;
}

.navbar-brand span {
    font-size: 22px;
    font-weight: 700;
    color: #1c9c6b;
}

/* CSS for the Navbar Toggler Button (Hamburger Menu) */

.navbar-toggler {
    border: none;
    outline: none;
    padding: 0;
}

.navbar-toggler .s-1,
.navbar-toggler .s-2,
.navbar-toggler .s-3 {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #1c9c6b;
    transition: all 0.3s ease;
}

.navbar-toggler:hover .s-1,
.navbar-toggler:hover .s-2,
.navbar-toggler:hover .s-3 {
    background-color: #167a56;
}

/* Dropdown menu styles */
.navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    background-color: white;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}

.dropdown-item {
    color: #666565;
    padding: 8px 20px;
}

.dropdown-item:hover {
    background-color: #167a56;
    color: white;
}

/* Keep the active state on hover */
.nav-item.dropdown:hover > .nav-link {
    background-color: #167a56;
    color: white;
}


/* CSS for Call Us Button to match the site's style */
.call-us-button {
    display: inline-block;
    padding: 10px 40px;
    background-color: #1c9c6b;
    color: #ffffff;
    border-radius: 35px;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.call-us-button:hover {
    background-color: #167a56;
    color: #ffffff;
}

.call-us-button.ml-3 {
    margin-left: 15px;
}


/* Slider Section */
.slider_section {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 90px;
    z-index: 2;
}

.slider_section .detail_box {
    text-align: center;
}

.slider_section .detail_box h1 {
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 25px;
}

.header_gap{
  color:#1c9c6b;
}

.slider_section .detail_box a {
    display: inline-block;
    padding: 10px 40px;
    background-color: #1c9c6b;
    color: #ffffff;
    border-radius: 35px;
    margin-top: 35px;
}

.slider_section .detail_box a:hover {
    background-color: #167a56;
}

.slider_section .img_container {
  border: 7px solid #1c9c6b;
  border-radius: 100%;
  overflow: hidden;
  margin-top: 25px;
}

.slider_section .img_container div#carouselExampleContarols {
  width: 100%;
  position: unset;
}

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

.slider_section .carousel-control-prev,
.slider_section .carousel-control-next {
  top: initial;
  left: initial;
  bottom: 5%;
  right: 10%;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 100%;
  opacity: 1;
  background-repeat: no-repeat;
  background-size: 8px;
  background-position: center;
}

.slider_section .carousel-control-prev {
  background-image: url(../images/prev.png);
  background-color: #ffffff;
  -webkit-transform: translate(-85px, 30px);
          transform: translate(-85px, 30px);
}

.slider_section .carousel-control-next {
  background-image: url(../images/next.png);
  background-color: #1c9c6b;
  -webkit-transform: translate(-45px, 0);
          transform: translate(-45px, 0);
}

.why_room_additions {
    background-color: white;
}

/* Service Section */
.service_section {
    text-align: center;
}

.service_section .service_container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 35px 0;
}

.service_section .service_container .box {
    margin: 25px 1%;
    flex-basis: 31%;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0f3eb;
    transition: all 0.1s;
    background-color: white;
}

.service_section .service_container .box:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #1c9c6b;
}

.service_section .service_container .box .img-box img {
    width: 90px;
}

.service_section .service_container .box .detail-box h3 {
    font-weight: 600;
    margin-top: 25px;
}

.service_section .service_container .box .detail-box h5 {
    font-weight: 600;
    margin-top: 25px;
}

.service_section .service_container .box a{
    text-decoration: none;
    color: #666565;
}

.service_section .service_containter .box a:hover{
    color: #666565;
}

.service_section .btn-box a {
    display: inline-block;
    padding: 10px 35px;
    background-color: #1c9c6b;
    color: #ffffff;
    border-radius: 35px;
}

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

/* About Section */
.about_section {
    background-color: white;
}

.about_section .img_container {
    display: flex;
    flex-direction: column;
}

.about_section .img_container .img-box {
    border: 5px solid #1c9c6b;
    border-radius: 100%;
    overflow: hidden;
}

.about_section .img_container .img-box img{
    width: 100%;
}

.about_section .img_container .img-box.b1 {
    width: 75%;
}

.about_section .img_container .img-box.b2 {
    width: 50%;
    margin-left: auto;
    margin-top: -10%;
}

.about_section .detail-box p {
    margin-top: 25px;
    color: #666;
}

.about_section .detail-box a {
    display: inline-block;
    padding: 10px 35px;
    background-color: #1c9c6b;
    color: #ffffff;
    border-radius: 5px;
    margin: 25px 0;
}

.about_section .detail-box a:hover {
    background-color: #167a56;
}

/* Process Section */


.process_section .process_container .step {
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0f3eb;
}

.process_section .process_container .step h3 {
    font-weight: 700;
    color: #1c9c6b;
    margin-bottom: 15px;
}

.process_section .process_container .step h5 {
    font-weight: 700;
    color: #1c9c6b;
    margin-bottom: 15px;
}

.process_section .process_container .step p {
    color: #333;
}

.process_section {
    padding: 60px 0;
}

.process_container .row {
    margin-bottom: 30px;
}

/* Styling for the arrows */
.arrow-container {
    text-align: center;
    margin: 20px 0;
}

.arrow {
    font-size: 3rem;
    color: #4CAF50; /* Change color if needed to match the theme */
}

/* Image styling in the process section */
.process_section img {
    width: 100%;
    height: auto;
    border-radius: 8px; /* Slightly rounded edges for images */
}

/* Text box and image alignment */
.process_container .row.align-items-center {
    display: flex;
    align-items: center;
}

.process_container h3 {
    font-weight: 600;
}

/* Why Choose Us Section */
.why_choose_us_section {
    background-color: white; /* Light greenish background for why choose us section */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
}

.why_choose_us_container {
    flex-basis: 60%; /* Text container on the left side */
}

.why_choose_us_container .reason {
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0f3eb;
}

.why_choose_us_container .reason h3 {
    font-weight: 700;
}

.why_choose_us_container .reason h5 {
    font-weight: 700;
}

.why_choose_us_container .reason p {
    color: #333;
}

.why_choose_us_image_container {
    flex-basis: 35%; /* Image container on the right side */
    margin-bottom: 40px;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.why_choose_us_image_container img {
    width: 100%;
    height: auto;
    border-radius: 7px; /* Slightly rounded edges */
    
}

.why_choose_us_image_container img:hover{
    border: 1px solid #167a56;
}

/* Service Area Section */
.service_area_section {
    padding: 90px 0;
}

.service_area_section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #333;
}

.service_area_section .map_container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.service_area_section .map-responsive {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}



/* Contact Section */
.contact_section {
    background-color: white;
}

.contact_section input {
    width: 100%;
    border: 1px solid #e0f3eb;
    height: 50px;
    margin-bottom: 25px;
    padding-left: 25px;
    background-color: transparent;
    outline: none;
    color: #333;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.16);
}

.contact_section input:focus {
    border: 1px solid #1c9c6b;
}

.contact_section button {
    border: none;
    display: inline-block;
    padding: 10px 40px;
    background-color: #1c9c6b;
    color: #ffffff;
    border-radius: 35px;
}

.contact_section button:hover {
    background-color: #167a56;
}

.contact_section .row {
    justify-content: center;
}

.contact_section form {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.contact_section .heading_container {
    margin-bottom: 40px;
}

/* CSS for Sticky Form */
.sticky-form-container {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 24%;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.5s ease;
}

.sticky-header {
    background-color: #1c9c6b;
    color: #ffffff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.toggle-form-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
}

.sticky-quote-form {
    padding: 15px;
    display: block;
}

.sticky-quote-form label {
    display: block;
    margin-top: 7px;
    font-size: 0.8rem;
    color: #333;
}

.sticky-quote-form input,
.sticky-quote-form select,
.sticky-quote-form button {
    width: 100%;
    margin-top: 5px;
    padding: 8px;
    font-size: 0.9rem;
}

.sticky-quote-form button {
    background-color: #1c9c6b;
    color: #ffffff;
    border: none;
    cursor: pointer;
    margin-top: 8px;
}

.sticky-quote-form button:hover {
    background-color: #167a56;
}

/* When minimized, make sure only the header is visible */
.sticky-form-container.minimized {
    transform: translateY(calc(100% - 60px)); /* Show only the header (40px height) */
}

/* Footer Section */
.footer_section {
    background-color: #1c9c6b;
    color: #ffffff;
    padding: 30px 0;
}

.footer_section a {
    color: #ffffff;
}

.footer_section a:hover {
    color: #e0f3eb;
}

.footer_section p {
    text-align: center;
    margin: 0;
}

.core_principles {
    background-color: white;
}

.benefits_section {
    background-color: white;
}

.second_story{
    background-color: white;
}


