body {
  font-family: "Poppins", sans-serif;
}

.navbar,
.footer {
  background-color: #faf8f6;
  color: #2e3192;
}

.logo img {
  width: 78px;
}

.form-label {
  color: black;
}
li.nav-item {
  font-family: 'Poppins';
}

.contact-info {
  display: flex;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  gap: 5px;
}

.contact-info i {
  color: #ffff;
}

.contact-info span {
  color: #ffff;
}

/* Make header fixed */
.fixed-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

/* Flex layout */
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* Hero Section Styles */
.hero-section {
  background: url('images/background.jpg') center center / cover no-repeat;
  min-height: 750px;
  position: relative;
}

/* Optional overlay if needed for darkening background */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  width: 1050px;
  z-index: 2;
}

/* Buttons and Typography */
.hero-section h1 {
  font-size: 3rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.hero-section p.lead {
  font-size: 1.25rem;
  font-family: "Poppins", sans-serif;
}

/* Welcome Section Styles */
.welcome-section h2 {
  color: #2e3192;
  font-size: 3rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.welcome-section p {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  line-height: 1.4;
}

/* Image Styling */
.welcome-section img {
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}


/* Section heading */
.services-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #ffffff;
}

/* Grid & card */
.carpet-services {
  background-color: #2e3192;
}

.service-card {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgb(0 0 0 / 0.15);
}

/* Icons */
.icon {
  font-size: 2.5rem;
  color: #2e3192;
  /* green accent */
  margin-bottom: 1rem;
}

/* Card title */
.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #34495e;
}

/* Card paragraph */
.service-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #7f8c8d;
  line-height: 1.5;
  margin: 0;
}

.about-us img {
  max-width: 100%;
  /* Ensures the image is responsive */
  height: auto;
  border-radius: 20px;
  /* Maintains aspect ratio */
}

.about-us h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  color: #2e3192;
  font-weight: 700;
}

.about-us p {
  font-size: 18px;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

/* Contact */

.contact-section {
  /* Green background like screenshot */
  background-color: #2e3192;
}

.form-wrapper {
  border-radius: 10px;
  padding: 2rem;
  color: #000;
}

.contact-section h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
}

.contact-section p {
  max-width: 450px;
  font-size: 16px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
}

.contact-section i {
  margin-right: 0.5rem;
  color: #00aeef;
}

.form-label {
  text-transform: uppercase;
}

.btn-dark {
  background-color: #000;
  color: #393b6d;
  padding: 0.75rem;
}

.form-wrapper {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
}

.form-wrapper .form-label {
  font-weight: 600;
  text-transform: uppercase;
}

.form-wrapper .form-control,
.form-wrapper .form-select,
.form-wrapper textarea {
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}

.form-wrapper .btn {
  background-color: #00aeef;
  border: none;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  padding: 0.75rem;
  transition: background-color 0.3s ease;
}

.form-wrapper .btn:hover {
  background-color: #b34f14;
}


.marginTopBottom {
  margin-top: 20px;
  margin-bottom: 20px;
}

.google-map-section {
  width: 100%;
  padding: 0;
  margin: 0;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: none;
}


.footer {
  padding: 20px 0;
  text-align: center;
}

.footer p {
  margin: 0;
  color: #aaa;
}

a {
  color: #2e3192;
  /* Link color */
  text-decoration: underline;
  /* Underline links for visibility */
}

.map-container {
  height: 400px;
  /* Adjust the height of the map */
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.text-blue {
  color: #2e3192;
  text-decoration: none;
}

.btn-common {
  display: inline-block;
  background-color: #00aeef;
  color: #fff;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  transition: background-color 0.3s ease;
}

.btn-common:hover {
  background-color: #00aeef;
  text-decoration: none;
  color: #fff;
}

.btn-commonMobile {
  display: inline-block;
  background-color: #00aeef;
  color: #fff;
  padding: 12px 22px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  transition: background-color 0.3s ease;
}

.btn-commonMobile:hover {
  background-color: #00aeef;
  text-decoration: none;
  color: #fff;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.2rem;
  }

  .hero-section p.lead {
    font-size: 1rem;
  }

  .hero-section .btn {
    width: 100%;
    justify-content: center;
  }

  .about-us h2 {
    font-size: 30px;
  }

}

/* Responsive */
@media (max-width: 991px) {
  .col-md-4 {
    flex: 0 0 48%;
    max-width: 48%;
  }
}

@media (max-width: 576px) {
  .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 1400px) {
  .custom-container {
    max-width: 1140px !important;
  }
}