/********** Template CSS **********/
:root {
  --primary: #32c36c;
  --light: #f6f7f8;
  --dark: #1a2a36;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-black {
  font-weight: 900 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .navbar-brand,
.navbar a.btn {
  height: 75px;
}

.navbar .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: var(--dark);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
.owl-carousel-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .header-carousel .owl-carousel-item {
    position: relative;
    min-height: 500px;
  }

  .header-carousel .owl-carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .header-carousel .owl-carousel-item p {
    font-size: 16px !important;
  }
}

.header-carousel .owl-dots {
  position: absolute;
  width: 60px;
  height: 100%;
  top: 0;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
  position: relative;
  width: 45px;
  height: 45px;
  margin: 5px 0;
  background: #ffffff;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.9);
  border-radius: 45px;
  transition: 0.5s;
}

.header-carousel .owl-dots .owl-dot.active {
  width: 60px;
  height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 2px;
  border-radius: 45px;
  transition: 0.5s;
}

/* .page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url(../aboutus\ img.jpg) center no-repeat;
  background-size: cover;
  height: 600px;
} */

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

/*** About ***/
@media (min-width: 992px) {
  .container.about {
    max-width: 100% !important;
  }

  .about-text {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .about-text {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .about-text {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Service ***/
.service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px; /* Ensure spacing between items */
}

.service-icon {
  position: relative;
  margin: -50px auto 25px auto; /* Center icon horizontally */
  width: 40px; /* Reduced width */
  height: 40px; /* Reduced height */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: #ffffff;
  border-radius: 100px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transition: 0.5s;
}

.service-item:hover .service-icon {
  color: #ffffff;
  background: var(--primary);
}

/*** Feature ***/
.feature-text {
  padding: 1rem; /* Default padding for all screen sizes */
}

@media (min-width: 992px) {
  .container.feature {
    max-width: 100% !important;
  }

  .feature-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .feature-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .feature-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/* Responsive adjustments for service items */
@media (max-width: 768px) {
  .service-item {
    width: 100%; /* Full width on smaller screens */
  }

  .service-icon {
    margin: -30px auto 15px auto; /* Adjust margins for smaller screens */
    width: 35px; /* Further reduced width */
    height: 35px; /* Further reduced height */
  }
}

/* Responsive adjustments for feature text */
@media (max-width: 992px) {
  .feature-text {
    padding-left: 1rem; /* Reset padding for smaller screens */
  }
}

@media (max-width: 480px) {
  .service-icon {
    margin: -20px auto 10px auto; /* Further adjust margins for very small screens */
    width: 30px; /* Even smaller width */
    height: 30px; /* Even smaller height */
  }

  .feature-text {
    padding: 0.5rem; /* Reduced padding for very small screens */
  }
}

/*** Project Portfolio ***/
#portfolio-flters li {
  display: inline-block;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: 0.5s;
  border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
  color: var(--primary);
  border-color: var(--primary);
}

.portfolio-img {
  position: relative;
}

.portfolio-img::before,
.portfolio-img::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  background: var(--dark);
  transition: 0.5s;
}

.portfolio-img::before {
  left: 50%;
}

.portfolio-img::after {
  right: 50%;
}

.portfolio-item:hover .portfolio-img::before {
  width: 51%;
  left: 0;
}

.portfolio-item:hover .portfolio-img::after {
  width: 51%;
  right: 0;
}

.portfolio-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 1;
  transition: 0.5s;
}

.portfolio-item:hover .portfolio-btn {
  opacity: 1;
  transition-delay: 0.3s;
}

/*** Quote ***/
@media (min-width: 992px) {
  .container.quote {
    max-width: 100% !important;
  }

  .quote-text {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .quote-text {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .quote-text {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Team ***/
.team-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.team-item img {
  border-radius: 8px 60px 0 0;
}

.team-item .team-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background: #ffffff;
  transition: 0.5s;
}

/*** Testimonial ***/
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

@media (min-width: 768px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }
}

@media (min-width: 992px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 350px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
  width: 300px;
  opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  color: var(--primary);
  font-size: 45px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
  width: 100px;
  height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
  margin-bottom: 30px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transform: scale(0.8);
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
  transform: scale(1);
}

/*** Contact ***/
@media (min-width: 992px) {
  .container.contact {
    max-width: 100% !important;
  }

  .contact-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .contact-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .contact-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Footer ***/
/* .footer .btn.btn-social {
  margin-right: 5px;
  color: #9b9b9b;
  border: 1px solid #9b9b9b;
  border-radius: 38px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
  border-color: var(--light);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #9b9b9b;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: #ffffff;
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright a:hover {
  color: var(--primary);
} */

/* MY CSS */
/* Container for responsive images */
.img-fluid {
  height: 600px;
  position: relative;
  width: 100%; /* Ensures the container takes up full width */
  overflow: hidden;
}

.img-fluid img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the container without distortion */
}

.img-fluid-1 {
  height: 300px;
  position: relative;
  width: 100%; /* Ensures the container takes up full width */
  overflow: hidden;
}

.img-fluid-1 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the container without distortion */
}

/* General styling for the logo */
.logo {
  height: 100px; /* Default height for the logo */
  width: auto; /* Ensures the width scales proportionally */
  margin-right: 10px; /* Space between the logo and the text */
  transition: height 0.3s ease; /* Smooth transition when resizing */
  margin-left: px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .logo {
    height: 35px; /* Slightly smaller logo for large tablets or small laptops */
  }
}

@media (max-width: 992px) {
  .logo {
    height: 30px; /* Medium size for tablets */
  }
}

@media (max-width: 768px) {
  .logo {
    height: 25px; /* Smaller size for mobile devices */
  }
}

@media (max-width: 576px) {
  .logo {
    height: 20px; /* Smallest size for very small devices */
  }
}

.navbar-brand img {
  margin-left: -10px;
  margin-right: 2px;
}

/* divs height */
/* Ensure all service-item divs have the same height */
.service-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Make sure the image inside the service-item fits properly */
.service-item img {
  flex-shrink: 0;
  width: 100%;
  height: auto;
}

/* Make the content inside the service-item stretch to fill the available space */
.service-item .position-relative {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Ensure the icon, title, and text are aligned properly */
.service-icon,
.service-item h4,
.service-item p,
.service-item a {
  margin: 0;
  padding: 0;
}

/* Gallery */
/* General container styling */
.col-lg-3,
.col-md-6 {
  margin-bottom: 20px; /* Space at the bottom of each column for better spacing */
}

/* Styling for the heading */
h5 {
  font-size: 1.25rem; /* Adjust font size */
  margin-bottom: 1rem; /* Space below heading */
}

/* Styling for the gallery images */
.img-fluid-3 {
  width: 100%; /* Ensures images are responsive */
  height: auto; /* Maintains aspect ratio */
  border-radius: 8px; /* Rounds the corners of the images */
  transition: transform 0.3s ease; /* Smooth transition on hover */
}

/* Hover effect for images */
.img-fluid-3:hover {
  transform: scale(1.05); /* Slightly enlarges the image on hover */
}

/* Additional spacing adjustments for gallery items */
.row.g-2 > .col-4 {
  padding: 2px; /* Spacing between gallery items */
}

/* Responsive For i */
/* Base styles for the icons and circles */
.btn-lg-square {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 992px) {
  .btn-lg-square {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .ms-4 {
    margin-left: 1rem; /* Reduce spacing for smaller screens */
  }

  h5 {
    font-size: 1rem; /* Adjust heading size for better fit */
  }

  p {
    font-size: 0.875rem; /* Adjust paragraph size */
  }
}

@media (max-width: 768px) {
  .btn-lg-square {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .ms-4 {
    margin-left: 0.75rem;
  }

  h5 {
    font-size: 0.9rem;
  }

  p {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .btn-lg-square {
    width: 30px;
    height: 30px;
    font-size: 0.875rem;
  }

  .ms-4 {
    margin-left: 0.5rem;
  }

  h5 {
    font-size: 0.85rem;
  }

  p {
    font-size: 0.75rem;
  }
}

/* Styling for the image section */
img.position-absolute {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease; /* Smooth transition on hover */
}

/* Hover effect for images */
img.position-absolute:hover {
  transform: scale(1.05); /* Slightly enlarges the image on hover */
}

/* Images Animation */

/* Container for the image to handle overflow */
.team-item {
  overflow: hidden;
}

/* Basic styling for the image */
.team-item img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease; /* Smooth transition on hover */
}

/* Zoom in effect on hover */
.team-item img:hover {
  transform: scale(1.1); /* Slightly enlarges the image */
}

/* Size */
/* Ensure all team-item divs have the same height */
.team-item {
  height: 450px; /* Adjust the height as needed */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Basic styling for the image */
.team-item img {
  flex-shrink: 0;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease; /* Smooth transition on hover */
}

/* Zoom in effect on hover */
.team-item img:hover {
  transform: scale(1.1); /* Slightly enlarges the image */
}

/* services images animation */
/* Basic styling for the image container */
.service-item {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Basic styling for the image */
.service-item img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease; /* Smooth transition on hover */
}

/* Zoom in effect on hover */
.service-item img:hover {
  transform: scale(1.1); /* Slightly enlarges the image */
}

/* ABOUT US */
/* Existing CSS for page header */
.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url(../aboutus\ img.jpg) center no-repeat;
  background-size: cover;
  height: 600px;
}

/* Styling for the about us text container */
.about-us-container {
  width: 80%; /* Adjust the width as needed */
  margin: 0 auto; /* Center the div horizontally */
  padding: 20px; /* Add padding for spacing */
  background-color: #f8f9fa; /* Light background color */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Styling for the about us text */
.about-us-text {
  font-size: 1rem; /* Base font size */
  line-height: 1.6; /* Line height for readability */
  color: #333; /* Text color */
  text-align: left; /* Text alignment */
}

/* Existing CSS for page header */
.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url(../aboutus\ img.jpg) center no-repeat;
  background-size: cover;
  height: 500px;
  background-attachment: fixed; /* Enable parallax scrolling */
}

/* General Styles for Core Values Section */
.core-values {
  background: linear-gradient(135deg, #f4f4f9, #d3eaf1);
  border: 2px solid #007bff;
  padding: 30px;
  border-radius: 10px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.core-values:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.core-values h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #007bff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.core-values ul {
  list-style-type: none;
  padding: 0;
}

.core-values ul li {
  margin: 20px 0;
  line-height: 1.8;
  background: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.core-values ul li:hover {
  background: #82a7cf;
  color: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.core-values ul li strong {
  color: #007bff;
  transition: color 0.3s ease;
}

.core-values ul li:hover strong {
  color: #fff;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .core-values {
    padding: 20px;
  }

  .core-values h2 {
    font-size: 1.75em;
  }

  .core-values ul li {
    font-size: 1em;
    padding: 8px 12px;
  }
}

@media (max-width: 768px) {
  .core-values {
    padding: 15px;
  }

  .core-values h2 {
    font-size: 1.5em;
  }

  .core-values ul li {
    font-size: 0.875em;
    padding: 6px 10px;
  }
}

@media (max-width: 576px) {
  .core-values {
    padding: 10px;
  }

  .core-values h2 {
    font-size: 1.25em;
  }

  .core-values ul li {
    font-size: 0.75em;
    padding: 5px 8px;
  }
}

/* 2nd */
.page-header {
  background: linear-gradient(
      to bottom right,
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.4)
    ),
    url("/aboutus img.jpg") center no-repeat;
  background-size: 100% 125%; /* Increase the height to crop the bottom 20% */
  background-position: center top; /* Align the background to the top */
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  animation: zoomInBg 3s ease-in-out; /* Added animation for background */
  background-attachment: fixed; /* Makes the background image fixed for parallax effect */
}

@keyframes zoomInBg {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.page-header h1 {
  position: absolute; /* Ensure the text stays on top */
  font-family: "Verdana", sans-serif;
  font-size: 36px;
  background: rgba(255, 255, 255, 0.8);
  padding: 5px 10px;
  border-radius: 5px;
  color: #28a745;
  animation: pulse 2s infinite;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  z-index: 1; /* Ensure the text stays on top */
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes zoomInBg {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.page-header h1 {
  font-family: "Verdana", sans-serif;
  font-size: 36px;
  background: rgba(92, 87, 87, 0.8);
  padding: 5px 10px; /* Reduced padding */
  border-radius: 5px; /* Adjusted border radius */
  animation: pulse 2s infinite;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.2);
  display: inline-block;
}

.content-section {
  /* background: #fff; */
  padding: 20px;
  position: relative;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* About Us Animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideInUp {
  0% {
    transform: translateY(50%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.about-us-container {
  animation: fadeIn 2s ease-in-out;
}

.about-us-text {
  animation: slideInUp 1.5s ease-in-out;
}

.about-us-container:hover,
.about-us-container:focus {
  animation: fadeIn 2s ease-in-out forwards, bounce 1.5s ease-in-out;
}

.about-us-text:hover,
.about-us-text:focus {
  animation: slideInUp 1.5s ease-in-out forwards, pulse 1.5s infinite;
}

/* Services Images Head */
.services-header {
  background: linear-gradient(
      to bottom right,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url("/images/about_us/img2.png") center bottom 250% no-repeat; /* Move the image down */
  background-size: cover; /* Ensures the image covers the entire container */
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-attachment: fixed; /* Creates parallax effect */
  animation: fadeInBg 3s ease-in-out; /* Animation for background */
}

@keyframes fadeInBg {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.services-header .container {
  padding: 50px 0;
  max-width: 600px; /* Reduced width for the text container */
}

.services-header h1 {
  font-family: "Verdana", sans-serif;
  font-size: 40px;
  background: rgba(10, 2, 2, 0.5);
  padding: 15px 25px;
  border-radius: 5px;
  color: #007bff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: bounce 2s ease-out infinite; /* Animation for text with infinite loop */
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

/* ABT US HEAD */
.services-header1 {
  background: linear-gradient(
      to bottom right,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url("/images/about_us/img1.png") center 100px no-repeat; /* Move the image down by 100 pixels */
  background-size: contain; /* Reduce the image size to fit within the container */
  height: 600px;
  display: flex;
  align-items: center; /* Align items to the center */
  justify-content: center;
  text-align: center;
  position: relative;
  background-attachment: fixed; /* Creates parallax effect */
  animation: fadeInBg 3s ease-in-out; /* Animation for background */
}

@keyframes fadeInBg {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.services-header1 .container {
  padding: 50px 0;
  max-width: 600px; /* Reduced width for the text container */
}

.services-header1 h1 {
  font-family: "Verdana", sans-serif;
  font-size: 40px;
  background: rgba(10, 2, 2, 0.5);
  padding: 15px 25px;
  border-radius: 5px;
  color: #040608;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: bounce 2s ease-out infinite; /* Animation for text with infinite loop */
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

/* Featues Page */
.features-support-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Three columns */
  gap: 20px;
  padding: 20px;
  max-width: 1200px; /* Increase the maximum width */
  margin: 0 auto;
}

.feature {
  background-color: #fff;
  padding: 20px; /* Increased padding */
  width: 350px; /* Increased width */
  height: 250px; /* Increased height */
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.feature-image {
  width: 150px; /* Increased image size */
  height: 150px; /* Increased image size */
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 50%;
}

.feature h3 {
  margin: 10px 0;
  font-family: "Verdana", sans-serif;
  font-size: 1.5em; /* Increased font size */
  color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .features-support-section {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .feature {
    padding: 15px;
    width: auto; /* Adjust to fit container */
    height: 250px; /* Adjusted height */
  }

  .feature-image {
    width: 120px; /* Adjusted image size */
    height: 120px; /* Adjusted image size */
  }

  .feature h3 {
    font-size: 1.3em; /* Adjusted font size */
  }
}

@media (max-width: 480px) {
  .features-support-section {
    grid-template-columns: 1fr;
  }

  .feature {
    padding: 10px;
    width: auto; /* Adjust to fit container */
    height: 220px; /* Adjusted height */
  }

  .feature-image {
    width: 100px; /* Adjusted image size */
    height: 100px; /* Adjusted image size */
  }

  .feature h3 {
    font-size: 1.1em; /* Adjusted font size */
  }
}

/* General Styles for Feature Explanations Section */
.feature-explanations {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.explanation {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.explanation:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.explanation h2 {
  font-family: "Verdana", sans-serif;
  color: #007bff;
  margin-bottom: 10px;
}

.explanation p {
  font-family: "Arial", sans-serif;
  color: #495057;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .feature-explanations {
    grid-template-columns: 1fr 1fr;
    padding: 15px;
  }

  .explanation {
    padding: 15px;
  }

  .explanation h2 {
    font-size: 1.3em;
  }

  .explanation p {
    font-size: 0.95em;
  }
}

@media (min-width: 1024px) {
  .feature-explanations {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 15px;
  }

  .explanation {
    padding: 20px;
  }

  .explanation h2 {
    font-size: 1.5em;
  }

  .explanation p {
    font-size: 1em;
  }
}

/* General Styles for Customer Support Section */
.customer-support-section-alt {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  animation: fadeInSupportAlt 1s ease-in;
}

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

.support-header h2 {
  font-family: "Verdana", sans-serif;
  color: #007bff;
  margin-bottom: 10px;
}

.support-header p {
  font-family: "Arial", sans-serif;
  color: #495057;
  margin-bottom: 20px;
}

.support-contacts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.support-item-alt {
  flex: 1 1 calc(50% - 40px); /* Adjusting width for responsive behavior */
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 20px;
}

.support-item-alt:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.support-image-alt {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.support-item-alt h3 {
  margin: 10px 0;
  font-family: "Verdana", sans-serif;
  color: #333;
}

.support-item-alt p {
  font-family: "Arial", sans-serif;
  color: #666;
  word-break: break-word;
}

.support-item-alt p a {
  color: #007bff;
  word-break: break-word;
}

.support-item-alt p a:hover {
  text-decoration: underline;
}

.support-form-alt {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.support-form-alt label {
  font-family: "Verdana", sans-serif;
  color: #333;
  margin-bottom: 5px;
}

.support-form-alt input,
.support-form-alt textarea {
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ced4da;
  font-family: "Arial", sans-serif;
  color: #495057;
}

.support-form-alt button {
  align-self: center;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  background-color: #007bff;
  color: #fff;
  font-family: "Verdana", sans-serif;
  cursor: pointer;
  transition: background-color 0.3s;
}

.support-form-alt button:hover {
  background-color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .support-item-alt {
    flex: 1 1 100%; /* Full width on small screens */
    margin-bottom: 15px;
  }

  .support-form-alt {
    padding: 10px;
  }

  .support-form-alt label {
    font-size: 1em;
  }

  .support-form-alt input,
  .support-form-alt textarea {
    padding: 8px;
    font-size: 0.9em;
  }

  .support-form-alt button {
    font-size: 1.1em;
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .support-item-alt {
    flex: 1 1 100%; /* Full width on very small screens */
    margin-bottom: 10px;
  }

  .support-form-alt {
    padding: 5px;
  }

  .support-form-alt label {
    font-size: 0.9em;
  }

  .support-form-alt input,
  .support-form-alt textarea {
    padding: 6px;
    font-size: 0.8em;
  }

  .support-form-alt button {
    font-size: 1em;
    padding: 6px;
  }

  .support-item-alt p a {
    font-size: 0.8em;
  }
}

/* Features Heading */
.features-header {
  text-align: center;
  padding: 40px 20px;
  background-color: #f8f9fa;
}

.features-header h1 {
  font-family: "Verdana", sans-serif;
  font-size: 2.5em;
  color: #007bff;
  margin: 0;
  animation: bounceIn 1.5s ease-in-out infinite; /* Loop indefinitely */
}

@keyframes bounceIn {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .features-header h1 {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .features-header h1 {
    font-size: 1.5em;
  }
}

/* Quotes Page */
.quote-header {
  text-align: center;
  padding: 80px 20px;
  background-color: #f8f9fa;
  color: #333;
  border-bottom: 3px solid #007bff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.quote-header .container {
  max-width: 800px;
  margin: 0 auto;
}

.quote-header h1 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 3em;
  margin: 0;
  color: #007bff;
  animation: fadeInSlideDown 1.5s ease-in-out;
}

.quote-header p {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.2em;
  margin-top: 15px;
  animation: fadeInSlideUp 1.5s ease-in-out;
}

.quote-info {
  margin-top: 20px;
}

.quote-info p {
  animation: fadeIn 2s ease-in-out;
  font-size: 1em;
}

@keyframes fadeInSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .quote-header h1 {
    font-size: 2.5em;
  }

  .quote-header p {
    font-size: 1em;
  }

  .quote-info p {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .quote-header h1 {
    font-size: 2em;
  }

  .quote-header p {
    font-size: 0.9em;
  }

  .quote-info p {
    font-size: 0.8em;
  }
}

/* Privacy Policy Page */
/* General Styles for Privacy Policy Section */
.privacy-policy {
  padding: 50px 20px;
  background: radial-gradient(circle, #ffffff, #e0e0e0);
  color: #333;
}

.privacy-policy .container {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.privacy-policy h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ff5722;
  text-align: center;
}

.privacy-policy p,
.privacy-policy ul {
  font-family: "Arial", sans-serif;
  font-size: 1.1em;
  line-height: 1.8;
}

.privacy-policy ul {
  padding-left: 20px;
  list-style-type: circle;
}

.privacy-policy li {
  margin-bottom: 15px;
}

.privacy-policy h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2em;
  margin-top: 30px;
  color: #ff5722;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .privacy-policy {
    padding: 40px 15px;
  }

  .privacy-policy .container {
    padding: 20px;
  }

  .privacy-policy h1 {
    font-size: 2.2em;
  }

  .privacy-policy p,
  .privacy-policy ul {
    font-size: 1em;
  }

  .privacy-policy h2 {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .privacy-policy {
    padding: 30px 10px;
  }

  .privacy-policy .container {
    padding: 15px;
  }

  .privacy-policy h1 {
    font-size: 1.8em;
  }

  .privacy-policy p,
  .privacy-policy ul {
    font-size: 0.95em;
  }

  .privacy-policy h2 {
    font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  .privacy-policy {
    padding: 20px 5px;
  }

  .privacy-policy .container {
    padding: 10px;
  }

  .privacy-policy h1 {
    font-size: 1.5em;
  }

  .privacy-policy p,
  .privacy-policy ul {
    font-size: 0.9em;
  }

  .privacy-policy h2 {
    font-size: 1.3em;
  }
}

/* Contact Page */
/* Form And Map */
/* Base styles */

/* Contact Section */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 6rem 0;
  padding: 0 20px;
}

.form-container,
.map-container {
  flex: 1 1 50%;
  padding: 20px;
  box-sizing: border-box;
}

.form-container {
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  animation: fadeIn 1.5s ease-in-out;
}

#contactForm h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #007bff;
}

#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  font-size: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

#contactForm input:focus,
#contactForm textarea:focus {
  border-color: #007bff;
  outline: none;
}

#contactForm button {
  display: block;
  width: 100%;
  padding: 15px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

#contactForm button:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .form-container,
  .map-container {
    flex: 1 1 100%;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .form-container,
  .map-container {
    padding: 5px;
  }
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact Heading */

.contact-header {
  background: linear-gradient(to right, #d6e2ee, #00a8ff);
  color: #fff;
  text-align: center;
  padding: 50px 20px;
  border-radius: 8px 8px 0 0;
  box-sizing: border-box;
}

.contact-header h1 {
  margin: 0;
  font-size: 2.5em;
  font-weight: bold;
}

.contact-header p {
  margin: 10px 0 0;
  font-size: 1.2em;
  font-weight: 300;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .contact-header {
    padding: 40px 15px;
  }

  .contact-header h1 {
    font-size: 2em;
  }

  .contact-header p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .contact-header {
    padding: 30px 10px;
  }

  .contact-header h1 {
    font-size: 1.8em;
  }

  .contact-header p {
    font-size: 0.9em;
  }
}

/* Basic footer styling */
.footer {
  background-color: #333;
  color: #fff;
  padding: 2.5em 0;
}

.footer .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1em;
}

.footer .row {
  display: flex;
  flex-wrap: wrap;
}

.footer .col {
  flex: 1 1 25%;
  padding: 1em;
  box-sizing: border-box;
}

.footer h5 {
  font-size: 1.125em;
}

.footer p,
.footer a {
  font-size: 1em;
}

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

.footer .btn {
  display: inline-block;
  padding: 0.625em 1.25em;
  font-size: 1em;
  border: none;
  border-radius: 0.3125em;
  transition: background-color 0.3s ease;
}

.footer .btn-primary {
  background-color: #007bff;
  color: white;
}

/* Specific Styles */
.footer .btn.btn-social {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.375em;
  height: 2.375em;
  margin-right: 0.3125em;
  color: #9b9b9b;
  border: 0.0625em solid #9b9b9b;
  border-radius: 50%;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
  border-color: var(--light);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 0.3125em;
  padding: 0;
  text-align: left;
  color: #9b9b9b;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 0.625em;
}

.footer .btn.btn-link:hover {
  color: #ffffff;
  letter-spacing: 0.0625em;
  box-shadow: none;
}

.footer .copyright {
  padding: 1.5625em 0;
  border-top: 0.0625em solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright a:hover {
  color: var(--primary);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .footer .col {
    flex: 1 1 50%;
  }
  .footer h5 {
    font-size: 1em;
  }
  .footer p,
  .footer a {
    font-size: 0.875em;
  }
  .footer .btn {
    padding: 0.5em 1em;
    font-size: 0.875em;
  }
}

@media (max-width: 576px) {
  .footer .col {
    flex: 1 1 100%;
  }
  .footer h5 {
    font-size: 0.875em;
  }
  .footer p,
  .footer a {
    font-size: 0.75em;
  }
  .footer .btn {
    padding: 0.375em 0.75em;
    font-size: 0.75em;
  }
}

/* Specific Styles for Newsletter Signup Section */
/* .footer .position-relative {
  max-width: 25em;
  width: 100%;
}

.footer .form-control {
  width: calc(100% - 4.375em);
  padding: 1em;
  border: 0.0625em solid #ccc;
  border-radius: 0.3125em 0 0 0.3125em;
}

.footer .btn-primary {
  width: 4.375em;
  padding: 0.625em;
  border-radius: 0 0.3125em 0.3125em 0;
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  transition: 0.3s;
}

@media (max-width: 576px) {
  .footer .col {
    flex: 1 1 100%;
  }
  .footer h5 {
    font-size: 0.875em;
  }
  .footer p,
  .footer a {
    font-size: 0.75em;
  }
  .footer .btn {
    padding: 0.375em 0.75em;
    font-size: 0.75em;
  }
} */

/* Specific Styles for Newsletter Signup Section */
/* .footer .position-relative {
  max-width: 25em;
  width: 100%;
}

.footer .form-control {
  width: calc(100% - 4.375em);
  padding: 1em;
  border: 0.0625em solid #ccc;
  border-radius: 0.3125em 0 0 0.3125em;
}

.footer .btn-primary {
  width: 4.375em;
  padding: 0.625em;
  border-radius: 0 0.3125em 0.3125em 0;
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .footer .form-control {
    width: calc(100% - 3.75em);
    padding: 0.75em;
  }

  .footer .btn-primary {
    width: 3.75em;
    padding: 0.5em;
  }

  .footer h5 {
    font-size: 1em;
  }
  .footer p,
  .footer a {
    font-size: 0.875em;
  }
}

@media (max-width: 576px) {
  .footer .form-control {
    width: calc(100% - 3.125em);
    padding: 0.625em;
  }

  .footer .btn-primary {
    width: 3.125em;
    padding: 0.375em;
  }

  .footer h5 {
    font-size: 0.875em;
  }
  .footer p,
  .footer a {
    font-size: 0.75em;
  }
} */

/* Additional Media Queries for very small screens */
@media (max-width: 400px) {
  .footer .form-control {
    width: calc(100% - 2.5em);
    padding: 0.5em;
  }

  .footer .btn-primary {
    width: 2.5em;
    padding: 0.25em;
  }

  .footer h5,
  .footer p,
  .footer a {
    font-size: 0.75em;
  }
}

/* Why We Choose Us Section */
/* General Styles */
a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
}

a,
a:active,
a:focus {
  color: #333;
  text-decoration: none;
  transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

span,
a,
a:hover {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

/* Section Head Styles */
.section-head {
  margin-bottom: 60px;
}

.section-head h4 {
  position: relative;
  padding: 0;
  color: #f91942;
  line-height: 1;
  letter-spacing: 0.3px;
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  text-transform: none;
  margin-bottom: 30px;
}

.section-head h4:before {
  content: "";
  width: 60px;
  height: 3px;
  background: #f91942;
  position: absolute;
  left: 0px;
  bottom: -10px;
  right: 0;
  margin: 0 auto;
}

.section-head h4 span {
  font-weight: 700;
  padding-bottom: 5px;
  color: #2f2f2f;
}

p.service_text {
  color: #cccccc !important;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}

.section-head p,
p.awesome_line {
  color: #818181;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}

/* Extra Text Styles */
.extra-text {
  font-size: 34px;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 25px;
  position: relative;
  text-transform: none;
}

.extra-text::before {
  content: "";
  width: 60px;
  height: 3px;
  background: #f91942;
  position: absolute;
  left: 0px;
  bottom: -10px;
  right: 0;
  margin: 0 auto;
}

.extra-text span {
  font-weight: 700;
  color: #f91942;
}

/* Item Styles */
.item {
  background: #fff;
  text-align: center;
  padding: 30px 25px;
  box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  border: 5px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 30px;
  transition: all 0.5s ease 0s;
}

.item:hover {
  background: #368680;
  box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease 0s;
}

.item:hover .item,
.item:hover span.icon {
  background: #fff;
  border-radius: 10px;
  transition: all 0.5s ease 0s;
}

.item:hover h6,
.item:hover p {
  color: #fff;
  transition: all 0.5s ease 0s;
}

.item .icon {
  font-size: 40px;
  margin-bottom: 25px;
  color: #f91942;
  width: 90px;
  height: 90px;
  line-height: 96px;
  border-radius: 50px;
}

.item .feature_box_col_one {
  background: rgba(247, 198, 5, 0.2);
  color: #f91942;
}

.item .feature_box_col_two {
  background: rgba(255, 77, 28, 0.15);
  color: #f91942;
}

.item .feature_box_col_three {
  background: rgba(0, 147, 38, 0.15);
  color: #f91942;
}

.item .feature_box_col_four {
  background: rgba(0, 108, 255, 0.15);
  color: #f91942;
}

.item .feature_box_col_five {
  background: rgba(146, 39, 255, 0.15);
  color: #f91942;
}

.item .feature_box_col_six {
  background: rgba(23, 39, 246, 0.15);
  color: #f91942;
}

.item p {
  font-size: 15px;
  line-height: 26px;
}

.item h6 {
  margin-bottom: 20px;
  color: #2f2f2f;
}

/* Mission Styles */
.mission p {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 28px;
  font-weight: 500;
}

.mission i {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #f91942;
  border-radius: 50%;
  color: #fff;
  font-size: 25px;
}

.mission .small-text {
  margin-left: 10px;
  font-size: 13px;
  color: #666;
}

/* Skills Styles */
.skills {
  padding-top: 0px;
}

.skills .prog-item {
  margin-bottom: 25px;
}

.skills .prog-item:last-child {
  margin-bottom: 0;
}

.skills .prog-item p {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 10px;
}

.skills .prog-item .skills-progress {
  width: 100%;
  height: 10px;
  background: #e0e0e0;
  border-radius: 20px;
  position: relative;
}

.skills .prog-item .skills-progress span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #f91942;
  width: 10%;
  border-radius: 10px;
  transition: all 1s;
}

.skills .prog-item .skills-progress span:after {
  content: attr(data-value);
  position: absolute;
  top: -5px;
  right: 0;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.9);
  padding: 3px 7px;
  border-radius: 30px;
}

/* Responsive Styles for Why Choose Us Section */
/* General Styles for Why Choose Us Section */
.feat {
  background-color: #f8f8f8;
  padding-top: 5em;
  padding-bottom: 5em;
}

.section-head h4 {
  font-size: 2em; /* Adjusted to responsive unit */
  color: #333;
  margin-bottom: 1em;
}

.section-head p {
  font-size: 1.125em; /* Adjusted to responsive unit */
  color: #666;
}

.item {
  text-align: center;
  margin-bottom: 2em;
}

.item .icon {
  font-size: 3em; /* Adjusted to responsive unit */
  color: #221919;
  width: 80px; /* Adjusted to responsive unit */
  height: 80px; /* Adjusted to responsive unit */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 1em;
  border-radius: 50%;
}

.feature_box_col_one {
  background-color: #3498db;
}

.feature_box_col_two {
  background-color: #2ecc71;
}

.feature_box_col_three {
  background-color: #e74c3c;
}

.feature_box_col_four {
  background-color: #f1c40f;
}

.feature_box_col_five {
  background-color: #9b59b6;
}

.feature_box_col_six {
  background-color: #e67e22;
}

.item h6 {
  font-size: 1.5em; /* Adjusted to responsive unit */
  color: #333;
  margin-bottom: 1em;
}

.item p {
  font-size: 1em; /* Adjusted to responsive unit */
  color: #666;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .feat {
    padding-top: 4em;
    padding-bottom: 4em;
  }

  .section-head h4 {
    font-size: 1.75em; /* Adjusted to responsive unit */
  }

  .section-head p {
    font-size: 1em; /* Adjusted to responsive unit */
  }

  .item .icon {
    width: 70px; /* Adjusted to responsive unit */
    height: 70px; /* Adjusted to responsive unit */
    font-size: 2.5em; /* Adjusted to responsive unit */
  }

  .item h6 {
    font-size: 1.25em; /* Adjusted to responsive unit */
  }

  .item p {
    font-size: 0.875em; /* Adjusted to responsive unit */
  }
}

@media (max-width: 768px) {
  .feat {
    padding-top: 3em;
    padding-bottom: 3em;
  }

  .section-head h4 {
    font-size: 1.5em; /* Adjusted to responsive unit */
  }

  .section-head p {
    font-size: 0.875em; /* Adjusted to responsive unit */
  }

  .item .icon {
    width: 60px; /* Adjusted to responsive unit */
    height: 60px; /* Adjusted to responsive unit */
    font-size: 2em; /* Adjusted to responsive unit */
  }

  .item h6 {
    font-size: 1.125em; /* Adjusted to responsive unit */
  }

  .item p {
    font-size: 0.75em; /* Adjusted to responsive unit */
  }
}

@media (max-width: 576px) {
  .feat {
    padding-top: 2em;
    padding-bottom: 2em;
  }

  .section-head h4 {
    font-size: 1.25em; /* Adjusted to responsive unit */
  }

  .section-head p {
    font-size: 0.75em; /* Adjusted to responsive unit */
  }

  .item .icon {
    width: 50px; /* Adjusted to responsive unit */
    height: 50px; /* Adjusted to responsive unit */
    font-size: 1.5em; /* Adjusted to responsive unit */
  }

  .item h6 {
    font-size: 1em; /* Adjusted to responsive unit */
  }

  .item p {
    font-size: 0.625em; /* Adjusted to responsive unit */
  }
}

/* General Styles for Newsletter */
.newsletter {
  margin-bottom: 2em;
}

.newsletter h5 {
  color: #fff;
  margin-bottom: 1em;
}

.newsletter-form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.newsletter-input {
  border: 0;
  padding: 1em 1.5em;
  flex-grow: 1;
}

.newsletter-btn {
  padding: 0.5em 0.75em; /* Reduced padding */
  margin-left: -3em; /* Adjust to overlap the button over the input */
}

/* Responsive Styles for Newsletter */
@media (max-width: 992px) {
  .newsletter-form {
    max-width: 350px;
  }

  .newsletter-input {
    padding: 0.75em 1.25em;
  }

  .newsletter-btn {
    padding: 0.5em 0.5em; /* Further reduced padding for smaller screens */
    margin-left: -2.5em;
  }
}

@media (max-width: 768px) {
  .newsletter-form {
    max-width: 300px;
  }

  .newsletter-input {
    padding: 0.75em 1em;
  }

  .newsletter-btn {
    padding: 0.5em 0.5em; /* Consistent with other breakpoints */
    margin-left: -2em;
  }
}

@media (max-width: 576px) {
  .newsletter-form {
    max-width: 100%;
  }

  .newsletter-input {
    padding: 0.5em 0.75em;
  }

  .newsletter-btn {
    padding: 0.5em 0.5em; /* Consistent with other breakpoints */
    margin-left: -1.5em;
  }
}

/*  */
/* General Styles for the Section */
.item {
  text-align: center;
  margin-bottom: 2em;
  padding: 1em;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.icon {
  font-size: 3em;
  color: #fff;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 1em;
  border-radius: 50%;
  background-color: #9b59b6;
}

h6 {
  font-size: 1.5em;
  color: #333;
  margin-bottom: 1em;
}

p {
  font-size: 1em;
  color: #666;
}

/* Responsive Styles */
@media (max-width: 992px) {
  h6 {
    font-size: 1.25em;
  }

  p {
    font-size: 0.875em;
  }

  .icon {
    font-size: 2.5em;
    width: 70px;
    height: 70px;
  }

  .item {
    padding: 0.75em;
  }
}

@media (max-width: 768px) {
  h6 {
    font-size: 1.125em;
  }

  p {
    font-size: 0.75em;
  }

  .icon {
    font-size: 2em;
    width: 60px;
    height: 60px;
  }

  .item {
    padding: 0.5em;
  }
}

@media (max-width: 576px) {
  h6 {
    font-size: 1em;
  }

  p {
    font-size: 0.625em;
  }

  .icon {
    font-size: 1.5em;
    width: 50px;
    height: 50px;
  }

  .item {
    padding: 0.25em;
  }
}
.custom-icon {
  font-size: 20px; /* Adjust the size as needed */
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
