@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;500&family=Poppins:wght@400;500&family=Merriweather:wght@400;700&display=swap");

:root {
  --primary-color: #073088;
  --secondary-color: #0f394c;
  --text-color: #444444;
  --background-color: #faf9f6;
  --section-background-color: #e5e4e2;
  --border-color: #000000;
  --link-hover-color: #0b47c6;
  --inner-text: #6c757d;
}

/* General */
body {
  font-family: "Lato", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow: auto;
}

body::-webkit-scrollbar {
  display: none;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

a:hover {
  color: var(--link-hover-color);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Merriweather", serif;
  font-weight: 700;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: var(--background-color);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--link-hover-color);
  color: var(--background-color);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Header */
#header {
  background: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.05);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
}

#header .logo a {
  color: var(--secondary-color);
}

#header .logo img {
  max-height: 100px;
}

.slogan {
  font-size: 24px;
  font-weight: bold;
  color: red;
}

.maple-leaf-img {
  width: 38px;
  margin-left: 3px;
}

/* Navigation Menu */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Dosis", sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--secondary-color);
  white-space: nowrap;
  transition: all 0.3s ease;
  text-transform: uppercase;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  transition: all 0.3s ease;
}

/* Improved hover effect */
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--link-hover-color);
  /* Removed font-size increase */
}

/* Underline animation */
.navbar a::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 30px;
  width: 0;
  height: 2px;
  background-color: var(--link-hover-color);
  transition: width 0.3s ease;
}

.navbar a:hover::after,
.navbar .active::after,
.navbar .active:focus::after,
.navbar li:hover > a::after {
  width: calc(100% - 30px);
}

/* Dropdown menu */
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--background-color);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: all 0.3s ease;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 500;
  position: relative;
}

.navbar .dropdown ul a::after {
  left: 20px;
  bottom: 5px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: var(--primary-color);
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

/* Mobile menu toggle */
.mobile-nav-toggle {
  color: var(--secondary-color);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: var(--background-color);
}

/* Mobile menu */
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(7, 25, 33, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 40%;
  left: 15px;
  padding: 10px 0;
  background-color: var(--section-background-color);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--secondary-color);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: var(--primary-color);
  /* Remove underline effect for mobile */
  text-decoration: none;
}

/* Remove underline animation for mobile */
.navbar-mobile a::after {
  display: none;
}

/* Hero Section */
#hero {
  width: 100%;
  height: 80vh;
  background: 
    /* Animated gradient overlay */ linear-gradient(
      45deg,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.7) 50%,
      rgba(0, 0, 0, 0.3) 100%
    ),
    url("/assets/img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  animation: gradientShift 8s ease infinite;
  position: relative;
}

/* Gradient animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

#hero .container {
  padding-top: 84px;
}

.custom-hero-small {
  height: 300px !important;
}

#hero h1 {
  margin: 0;
  font-size: 55px;
  font-weight: 700;
  color: var(--background-color);
  text-transform: uppercase;
}

#hero h2 {
  color: var(--background-color);
  margin: 10px 0 0 0;
  font-size: 20px;
}

#hero .btn-get-started {
  font-family: "Dosis", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  transition: 0.5s;
  margin-top: 25px;
  color: var(--background-color);
  background: var(--primary-color);
  text-transform: uppercase;
}

#hero .btn-get-started:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#hero .maple-leaf-img {
  width: 30px;
  height: 30px;
  margin-left: 10px;
  vertical-align: middle;
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 40px;
    line-height: 45px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

/* Sections General */
section {
  padding: 60px 0;
  overflow: hidden;
  background-color: var(--background-color);
}

.section-bg {
  background-color: var(--section-background-color);
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: var(--secondary-color);
}

.section-title p {
  margin-bottom: 0;
}

/* About */
.about .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.about .icon-box {
  margin-top: 40px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid var(--border-color);
  transition: 0.5s;
}

.about .icon-box .icon i {
  color: var(--primary-color);
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.about .icon-box:hover .icon i {
  color: var(--background-color);
}

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: var(--primary-color);
}

.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 16px;
}

/* Services */
.services .icon-box {
  padding: 40px;
  position: relative;
  overflow: hidden;
  margin: 20px 0;
  background: var(--background-color);
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center;
}

.services .icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(68, 88, 144, 0.2);
}

.services .icon {
  position: relative;
  margin-bottom: 20px;
}

.services .icon i {
  font-size: 60px;
  color: var(--primary-color);
  transition: 0.3s;
}

.services .icon-box:hover .icon i {
  color: var(--border-color);
}

.services .title {
  font-weight: 700;
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
  transition: 0.3s;
}

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

.services .icon-box:hover .title a {
  color: var(--border-color);
}

.services .description {
  font-size: 16px;
  line-height: 24px;
  color: #777;
  margin-bottom: 0;
  padding: 0 10px;
}

@media (max-width: 768px) {
  .services .icon-box {
    padding: 30px;
  }

  .services .title {
    font-size: 20px;
  }

  .services .icon i {
    font-size: 50px;
  }
}

/* Products Section */
.products .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.products .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.products .content p {
  font-size: 15px;
  color: var(--inner-text);
}

.products .accordion-item {
  border: 0;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.06);
}

.products .accordion-collapse {
  border: 0;
}

.products .accordion-button {
  padding: 20px 50px 20px 20px;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-default);
  text-align: left;
  background: #fff;
  box-shadow: none;
}

.products .accordion-button .num {
  padding-right: 10px;
  font-size: 20px;
  line-height: 0;
  color: var(--color-primary);
}

.products .accordion-body {
  padding: 0 40px 30px 45px;
  border: 0;
  background: #fff;
  box-shadow: none;
}

/* Product Gallery Section */
.product-gallery {
  padding: 60px 0;
}

.product-gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.product-gallery .gallery-item img {
  transition: transform 0.3s ease;
  width: 100%;
  height: auto;
}

.product-gallery .gallery-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 15px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.product-gallery .gallery-item:hover .gallery-info {
  transform: translateY(0);
}

.product-gallery .gallery-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

/* Call To Action Section */
.call-to-action .container {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/assets/img/about.jpg") center center;
  background-size: cover;
  padding: 80px 60px;
  overflow: hidden;
}

.call-to-action h3 {
  color: #fff;
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 20px;
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

#preloader .bars {
  display: flex;
  gap: 6px;
}

#preloader .bars div {
  width: 8px;
  height: 32px;
  background: var(--primary-color);
  animation: preload-rise 1s ease-in-out infinite;
}

#preloader .bars div:nth-child(2) {
  animation-delay: 0.2s;
  background: var(--secondary-color);
}

#preloader .bars div:nth-child(3) {
  animation-delay: 0.4s;
}

#preloader .bars div:nth-child(4) {
  animation-delay: 0.6s;
  background: var(--link-hover-color);
}

@keyframes preload-rise {
  0%,
  100% {
    transform: scaleY(0.4);
    opacity: 0.6;
  }
  50% {
    transform: scaleY(1.6);
    opacity: 1;
  }
}

/* Contact */
.contact .info-wrap {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  background: var(--section-background-color);
}

.contact .info {
  background: var(--section-background-color);
}

.contact .info i {
  font-size: 20px;
  color: var(--section-background-color);
  float: left;
  width: 44px;
  height: 44px;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #433f39;
  font-family: "Poppins", sans-serif;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 16px;
  color: #7a7368;
}

.contact .info:hover i {
  background: var(--link-hover-color);
  color: #fff;
}

/* Testimonials Section */
.testimonials .testimonial-item {
  padding: 30px;
  margin: 20px 10px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.06);
  position: relative;
  background: #fff;
  border-radius: 10px;
  height: 300px;
  transition: all 0.3s ease-in-out;
}

.testimonials .testimonial-item:hover {
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0 5px 0;
  color: #433f39;
}

.testimonials .testimonial-item h4 {
  font-size: 16px;
  color: var(--inner-text);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: var(--different-color);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
  color: #6c757d;
  font-size: 15px;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

@media (max-width: 767px) {
  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }
}

/* Footer */
#footer {
  background: var(--background-color);
  padding: 0px;
  color: var(--text-color);
  font-size: 16px;
  background: var(--section-background-color);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: var(--background-color);
  border-top: 4px solid var(--section-background-color);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Lato", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: var(--secondary-color);
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--primary-color);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--primary-color);
}

#footer .footer-top .footer-logo img {
  max-width: 90%;
  height: auto;
  padding: 0px 0;
}

@media (max-width: 768px) {
  #footer .footer-top .footer-logo img {
    max-width: 75%;
  }
}

.footer-logo {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 40px;
}

#footer .copyright {
  float: left;
  color: var(--secondary-color);
}

#footer .credits {
  float: right;
  font-size: 13px;
  color: var(--secondary-color);
}

@media (max-width: 575px) {
  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
  }
}

.footer-bottom {
  padding: 25px 0;
  background-color: var(--background-color);
  border-top: 1px solid var(--section-background-color);
  text-align: center;
  font-size: 14px;
  color: var(--text-color);
  font-family: "Lato", sans-serif;
}

.footer-bottom p {
  margin: 0;
  line-height: 1.6;
  font-size: 14px;
  color: var(--text-color);
}

.footer-bottom a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--link-hover-color);
  text-decoration: none;
}

/* Why Choose Us Section */
.why-choose-us .icon-box {
  text-align: center;
  padding: 30px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  height: 100%;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.06);
}

.why-choose-us .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.why-choose-us .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}

.why-choose-us .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  color: var(--secondary-color);
}

.why-choose-us .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.why-choose-us .icon-box:hover .icon {
  background: var(--link-hover-color);
}

/* Service Process Section */
.service-process {
  padding: 60px 0;
  background: var(--section-background-color);
}

.service-process .process-step {
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 8px;
  height: 100%;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
}

.service-process .step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--primary-color);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.service-process h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.service-process p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
}

/* Mobile-specific styles */
@media (max-width: 767px) {
  .service-process .row {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .service-process .process-step {
    padding: 20px;
    margin-bottom: 20px;
    width: 100%;
  }

  .service-process .step-number {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .service-process h4 {
    font-size: 18px;
  }

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

/* Service Gallery Section */
.service-gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  height: 300px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.service-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-gallery .gallery-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 15px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.service-gallery .gallery-item:hover .gallery-info {
  transform: translateY(0);
}

.service-gallery .gallery-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  font-family: "Lato", sans-serif;
}

.service-gallery .gallery-info p {
  font-size: 16px;
  margin-bottom: 0;
  font-family: "Lato", sans-serif;
}

/* Services Box Section */
.services .service-box {
  background: #fff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.services .service-img {
  overflow: hidden;
  position: relative;
}

.services .service-img img {
  transition: transform 0.5s ease;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.services .service-content {
  padding: 25px;
}

.services .service-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.services .service-content p {
  color: var(--text-color);
  margin-bottom: 15px;
}

.services .service-content ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.services .service-content ul li {
  padding: 5px 0 5px 25px;
  position: relative;
  margin-bottom: 10px;
  color: var(--text-color);
}

.services .service-content ul li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--primary-color);
}

/* Custom Hero Section */
.custom-hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Display classes */
.d-flex {
  display: flex !important;
}

.align-items-center {
  align-items: center !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.flex-column {
  flex-direction: column !important;
}

/* Text alignment */
.text-center {
  text-align: center !important;
}

/* Spacing utilities */
.mt-2 {
  margin-top: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

/* Responsive utilities */
@media (max-width: 768px) {
  .display-3 {
    font-size: 2.5rem;
  }
}

/* Bootstrap grid classes */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-lg-4,
.col-md-6,
.col-lg-3,
.col-lg-6,
.col-lg-8,
.col-lg-12 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Map iframe */
.map iframe {
  border: 0;
  width: 100%;
  height: 350px;
}
