body {
    font-family: 'Roboto', sans-serif;
    color: #000000;
    background-color: #ffffff;
  }
  
  .layout_padding {
    padding: 75px 0;
  }
  
  .layout_padding2 {
    padding: 45px 0;
  }
  
  .layout_padding2-top {
    padding-top: 45px;
  }
  
  .layout_padding2-bottom {
    padding-bottom: 45px;
  }
  
  .layout_padding-top {
    padding-top: 75px;
  }
  
  .layout_padding-bottom {
    padding-bottom: 75px;
  }
  
  .custom_heading-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  .custom_heading-container h3 {
    text-transform: uppercase;
    font-weight: bold;
    color: #000000;
    position: relative;
  }
  
  .custom_heading-container h3::before {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 50%;
    width: 50px;
    height: 7px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-color: #ff4f5a;
    border-radius: 15px;
  }
  
  .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-family: "Poppins", sans-serif;
  }
  
  .btn-box a {
    color: #1d1d1d;
    margin-right: 15px;
    font-size: 18px;
  }
  
  .btn-box hr {
    width: 75px;
    height: 1.2px;
    border: none;
    background-color: #464646;
    margin: 0;
  }
  
  /*header section*/


  
  .sub_page .hero_area {
    height: auto;
  }
  
  .hero_area.sub_pages {
    height: auto;
  }
  
  .header_section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; 
    background-color: #000000;
    font-family: "Poppins", sans-serif;
  }
  
  .header_section .container-fluid {
    padding-right: 25px;
    padding-left: 25px;
  }
  
  .header_section .nav_container {
    margin: 0 auto;
  }
  
  .custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 10px 30px;
    color: #ffffff;
    text-align: center;
    position: relative;
  }
  
  .custom_nav-container .navbar-nav .nav-item .nav-link::before {
    content: "";
    display: none;
    position: absolute;
    bottom: 7px;
    left: 50%;
    width: 17px;
    height: 4px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-color: #ff4f5a;
    border-radius: 5px;
  }
  
  .custom_nav-container .navbar-nav .nav-item .nav-link:hover::before {
    display: block;
  }
  
  .custom_nav-container .navbar-nav .nav-item.active a::before {
    display: block;
  }
  
  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;
  }
  
  .custom_nav-container .nav_search-btn {
    background-image: url(../images/search-icon.png);
    background-size: 22px;
    background-repeat: no-repeat;
    background-position-y: 7px;
    width: 35px;
    height: 35px;
    padding: 0;
    border: none;
  }
  
  .navbar-brand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .navbar-brand img {
    width: 45px;
    margin-right: 5px;
  }
  
  .navbar-brand span {
    font-weight: bold;
    font-size: 24px;
    color: #ffffff;
  }
  
  .custom_nav-container {
    z-index: 99999;
    padding: 5px 0;
  }
  
  .custom_nav-container .navbar-toggler {
    outline: none;
  }
  
  .custom_nav-container .navbar-toggler .navbar-toggler-icon {
    background-image: url(../images/menu.png);
    background-size: 42px;
  }
  
  /*end header section*/
  /* slider section */
  .slider_section .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .slider_section .img-box img {
    margin-top: 150px;
    width: 100%;
  }
  
  .slider_section .detail-box h1 {
    font-weight: bold;
    font-size: 4rem;
    color: #1a2e35;
  }
  
  .slider_section .detail-box h1 span {
    color: #ff4f5a;
  }
  
  .slider_section .slider_nav-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .slider_section .slider_nav-box .custom_carousel-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .slider_section .carousel-control-prev,
  .slider_section .carousel-control-next {
    position: unset;
    width: 50px;
    height: 50px;
    opacity: 1;
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
  }
  
  .slider_section .carousel-control-prev {
    left: 2%;
    background-image: url(../images/left-arrow-black.png);
  }
  
  .slider_section .carousel-control-prev:hover {
    background-image: url(../images/left-arrow.png);
  }
  
  .slider_section .carousel-control-next {
    right: 2%;
    background-image: url(../images/right-arrow-black.png);
  }
  
  .slider_section .carousel-control-next:hover {
    background-image: url(../images/right-arrow.png);
  }
  
  /* end slider section */
  .bg {
    background-image: url(../images/bg.jpg);
    background-size: cover;
  }
  
  .about_section {
    text-align: center;
  }
  
  .about_section .img-box img {
    width: 350px;
  }
  
  .service_section {
    text-align: center;
    position: relative;
  }
  
  .service_section .custom_heading-container {
    margin-bottom: 15px;
  }
  
  .service_section .service_container {
    padding: 45px 0 75px 0;
  }
  
  .service_section .box.b-2 .detail-box {
    width: 90%;
    margin-left: auto;
    text-align: middle;
    overflow: visible;
  }
  
  .service_section .box.b-2 .detail-box p {
    height: 52px;
    overflow: visible;
  }
  
  .service_section .box.b-2 .detail-box a {
    min-width: 100px;
  }
  
  .service_section .box.b-3 .detail-box {
    width: 90%;
    margin-left: auto;
    overflow: visible;
    text-align: middle;
  }
  
  .service_section .box.b-3 .detail-box p {
    height: 52px;
    overflow: visible;
  }
  
  .service_section .box.b-3 .detail-box a {
    min-width: 100px;
  }
  
  .service_section .img-box img {
    height: 200px;
  }
  
  .service_section .detail-box {
    height: 118px;
    margin-top: 10px;
  }
  
  .service_section .detail-box h6 {
    font-weight: bold;
  }
  
  .service_section .detail-box .btn-box a {
    color: #ff4f5a;
  }
  
  .service_section .detail-box .btn-box hr {
    background-color: #ff4f5a;
  }
  

  .work_section {
    background-color: #ff4f5a;
  }
  
  .work_section .custom_heading-container h3 {
    color: #ffffff;
  }
  
  .work_section .custom_heading-container h3::before {
    background-color: #ffffff;
  }
  
  .work_section .work_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 45px 0;
  }
  
  .work_section .work_container .box {
    width: 275px;
    height: 275px;
    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;
    padding: 35px 0 20px 0;
    background-color: #ffffff;
    border-radius: 5px;
    margin: 45px 10px;
    -webkit-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.1);
  }
  
  .work_section .work_container .box .img-box {
    width: 150px;
  }
  
  .work_section .work_container .box .img-box img {
    width: 100%;
  }
  
  .work_section .work_container .box .name {
    margin-top: 10px;
  }
  

  
  .work_section .btn-box a {
    color: #ffffff;
  }
  
  .work_section .btn-box hr {
    background-color: #ffffff;
  }
  
  .contact_section input,
  .contact_section select {
    width: 100%;
    border: 0;
    padding: 15px 12px;
    background-color: #f2f2f2;
    outline: none;
    margin: 10px 0;
  }
  
  .contact_section input::-webkit-input-placeholder,
  .contact_section select::-webkit-input-placeholder {
    color: #3a3a3a;
  }
  
  .contact_section input:-ms-input-placeholder,
  .contact_section select:-ms-input-placeholder {
    color: #3a3a3a;
  }
  
  .contact_section input::-ms-input-placeholder,
  .contact_section select::-ms-input-placeholder {
    color: #3a3a3a;
  }
  
  .contact_section input::placeholder,
  .contact_section select::placeholder {
    color: #3a3a3a;
  }
  
  .contact_section button {
    background-color: #ff4f5a;
    padding: 12px 55px;
    outline: none;
    border: none;
    border: 1px solid #ff4f5a;
    color: #fff;
    margin-top: 25px;
  }
  
  .contact_section button:hover {
    color: #ff4f5a;
    background-color: transparent;
  }
  
  .client_section .client_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: center;
        -ms-flex-align: center;
            align-items: center;
    width: 600px;
    border: 1px solid #cccccc;
    padding: 45px 35px 35px 25px;
    background-color: #ffffff;
    margin: 0 auto;
  }
  
  .client_section .client_container .detail-box p {
    text-align: center;
  }
  
  .client_section .client_container .client_id {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 25px;
  }
  
  .client_section .client_container .client_id .img-box {
    width: 75px;
    margin-right: 10px;
  }
  
  .client_section .client_container .client_id .img-box img {
    width: 100%;
  }
  
  .client_section .client_container .client_id .name h5 {
    text-transform: uppercase;
  }
  
  .client_section .client_container .client_id .name h6 {
    color: #ff4f5a;
  }
  
  .info_section {
    background-color: #ff4f5a;
    color: #ffffff;
  }
  
  .info_section a {
    color: #ffffff;
  }
  
  .info_section h4 {
    text-transform: uppercase;
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: bold;
  }
  
  .info_section .info-logo h2 {
    font-weight: bold;
    font-size: 2rem;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 5px;
    margin-right: 15px;
  }
  
  .info_section .info-nav ul {
    padding-left: 15px;
  }
  
  .info_section .info-nav ul li {
    list-style-type: none;
    position: relative;
    margin: 3px 0;
  }
  
  .info_section .info-nav ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    position: absolute;
    top: 50%;
    left: -15px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    border-radius: 100%;
  }
  
  .info_section .info-contact h6 {
    color: #000000;
    font-size: 18px;
  }
  
  .info_section .info-contact .call {
    margin-top: 20px;
  }
  
  .info_section .discover ul {
    padding: 0;
  }
  
  .info_section .discover ul li {
    list-style-type: none;
    margin: 5px 0;
  }
  
  /* footer section*/
  .footer_section {
    background-color: #ffffff;
    padding: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
  }
  
  .footer_section p {
    color: #171717;
    margin: 0;
    text-align: center;
  }
  
  .footer_section a {
    color: #171717;
  }

  /* Teammates */

.team-section {
    text-align: center;
    padding: 50px;
    background-color: #f4f4f4;
}

.team-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 20px; /* Adds space between team member cards */
}

.team-member {
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex-basis: 30%; /* Adjusts the width of each team member card */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member img {
    width: 150px; /* Adjust the size as needed */
    height: 150px; /* Adjust the size as needed */
    border-radius: 50%;
    margin-bottom: 10px;
}

h1, h3 {
    color: #333;
}

p {
    color: #666;
}

/* test code */
.about {
  background-color: #fff;
  box-shadow: #ddd 0px 0px 13px 5px;
  margin: 90px 30px 20px 30px;     
}
.about .about-box {
text-align: left;
float: left;
width: 100%;
max-width: 460px;
padding: 5px 0;
 
}
.about .about-box2 {
  text-align: left;
  float: right;
  width: 100%;
  max-width: 400px;
  padding: 50px 0;
   
  }


.about .about-box::after {
  position: absolute;
  content: "";
  background: url(../images/crros.png);
  height: 244px;
width: 187px;
bottom: 0;
left: 0;
background-repeat: no-repeat;
}
.about .about-box h2 {

  font-weight: bold;
  color: #fff;
  line-height: 40px;
  font-size: 45px;
  text-transform:uppercase;
  background: #000000;
  display: inline-block;
  padding: 20px 30px;

}
.about .about-box h3 {

  font-weight: bold;
  color: #fff;
  line-height: 40px;
  font-size: 35px;
  text-transform:uppercase;
  background: #000000;
  display: inline-block;
  padding: 20px 30px;

}
.about .about-box2 h2 {

  font-weight: bold;
  color: #fff;
  line-height: 40px;
  font-size: 45px;
  text-transform:uppercase;
  background: #000000;
  display: inline-block;
  padding: 20px 30px;

}
.about .about-box p {
  font-size: 17px;
  line-height: 28px;
  color: #000;
  padding: 20px 0px;
}
.about .about-box2 p {
  font-size: 17px;
  line-height: 700px;
  color: #000;
  padding: 5px 0px;
}

.about .about-box2 a {
  font-size: 16px;
background-color: #ffffff;
color: #0089fa;
padding: 9px 0px;
width: 100%;
display: inline;
text-align: left;

}


.about .about-box2 a:hover{ 
  background-color: #ffffff;
 color: #ff4f4a;
}

.about .about-box a {
  font-size: 16px;
border: #ff4f4a solid 1px;
background-color: #ff4f4a;
color: #fff;
padding: 9px 0px;
max-width: 1991px;
width: 100%;
display: inline-block;
text-align: center;
text-transform: uppercase;
border-radius: 30px;
}


.about .about-box a:hover{ 
  background-color: #ffffff;
  border: #ff4f4a solid 1px;
 color: #ff4f4a;
}
.about .about-box_img figure {
  margin: 0;
}
.about .about-box_img figure img {
 width: 100%;
}
.padding_rl {padding: 0;}


.about .about-box,
.about .about-box2 {
    margin-bottom: 10px; /* reduced margin */
    padding: 10px 0; /* reduced padding */
}

.about .about-box2 p {
    line-height: 1.6; /* normalized line height */
    margin-bottom: 0; /* remove any default margins */
}

.about .about-box_img {
    margin-bottom: 0; /* remove any default margins */
}

/* Ensure the 'View Project' button is snug against the image or text above it */
.about .about-box a {
    margin-top: 0; /* remove any default top margin */
}
/* CSS to hide the spaces on mobile devices */
@media only screen and (max-width: 768px) {
  .custom_heading-container h3 > p {
      display: none; /* This will hide the <p> elements on mobile */
  }
}

/* Your existing styles for larger screens */
.custom_heading-container h3 > p {
  /* Your existing styles for spacing if any */
}


/* Adjustments for mobile views */
@media (max-width: 767px) {
  
    .about .about-box,
    .about .about-box2,
    .about .about-box_img {
        padding: 5px 0; /* further reduced padding for mobile */
        margin-bottom: 5px; /* further reduced margin for mobile */
    }
    
    /* If the button is still too far from the content above, reduce its top margin */
    .about .about-box a {
        margin-top: -5px; /* pull the button upwards if necessary */
    }
}
/* Hide spacers on screens smaller than 768px */
@media (max-width: 767px) {
  .spacer {
      display: none;
  }
}

/* Show spacers on screens larger than or equal to 768px */
@media (min-width: 768px) {
  .spacer {
      display: block;
  }
}
.map-responsive {
  position: relative;
  overflow: hidden;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 767px) {
  .heading_container h2 {
    text-align: center !important; /* Force center alignment on mobile */
    margin-left: 0 !important; /* Override any existing left margin */
  }
}
.no-background-no-outline2 {
  background: none !important;
  border: none !important;
  box-shadow: none !important; /* In case there's a shadow */
}

/* OR, if you want to target only the anchor inside a specific div */
#about .about-box2 a {
  background: none !important;
  border: none !important;
  box-shadow: none !important; /* In case there's a shadow */
}
.team-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
}

.team-link:hover .team-member {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
/* Cleaner Modern Card */
.modern-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease-in-out;
}
.modern-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.modern-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.modern-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.modern-card-body h6 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.modern-card-body p {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  color: #555;
}
.modern-card-body a.btn {
  align-self: start;
  font-size: 0.85rem;
  border-radius: 6px;
  padding: 0.35rem 0.75rem;
}
.projects-grid {
  padding-left: 5rem;
  padding-right: 5rem;
}


.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;   /* bigger and bolder */
  letter-spacing: 0.5px;
  color: #222;       /* matches your dark site text */
  margin-bottom: 0.25rem;
}

.section-header p {
  font-family: 'Roboto', sans-serif;
  font-style: italic;
  font-size: 1rem;
  color: #6c757d;    /* muted grey */
}

  /* end footer section*/
  /*# sourceMappingURL=style.css.map */