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

:root {
  --brand: #0d6efd;
  --brand-hover: #0b5ed7;
  --dark: #333333;
  --body: #516171;
  --accent: #14bbfd;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Barlow", sans-serif;
  color: var(--body);
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4 {
  font-weight: 700;
  color: var(--dark);
}

.bg-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

img {
  width: 100%;
}

a {
  color: var(--dark);
  transition: all 0.4s ease;
  font-weight: 500;
}

a:hover {
  color: var(--brand);
}

section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.text-brand {
  color: var(--brand) !important;
}

/* Custom Logo Styles */
.navbar-brand svg {
  max-height: 50px;
}

.hero-logo svg {
  max-width: 100%;
  height: auto;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  z-index: 0;
  overflow: hidden;
  height: 800px;
}

.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item {
  height: 100%;
}

.hero-slider .owl-prev,
.hero-slider .owl-next {
  background-color: rgba(255, 255, 255, 0.3) !important;
  width: 60px !important;
  height: 60px !important;
  display: block;
  display: grid;
  place-items: center;
  color: #fff !important;
  border-radius: 100px;
  line-height: 0;
  border-radius: 100px !important;
  position: absolute;
  top: 50%;
  font-weight: 600 !important;
  font-size: 12px !important;
  transition: all 0.4s ease;
  margin-top: -30px !important;
}

.owl-prev {
  left: 0;
}
.owl-next {
  right: 0;
}

.hero-slider .owl-prev:hover,
.hero-slider .owl-next:hover {
  background-color: var(--brand) !important;
}

.owl-dot.active span {
  background-color: var(--brand) !important;
}

/* slide */
.slide {
  min-height: auto;
  height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Remove overlay */
.slide::before {
  display: none;
}

.slide::after {
  display: none;
}

.slide .container {
  position: relative;
  z-index: 3;
}

.slide1 {
  background: url(../img/bg_banner2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide2 {
  background: url(../img/bg_banner1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide .display-3 {
  text-transform: uppercase;
  color: #fff;
  font-weight: 800;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.slide .display-3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 5px;
  background: var(--accent);
}

.slide h6 {
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-content-box {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-slider .owl-nav button.owl-prev,
.hero-slider .owl-nav button.owl-next {
  width: 60px !important;
  height: 60px !important;
  background-color: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(5px);
  color: #fff !important;
  border-radius: 50% !important;
  transition: all 0.4s ease;
}

.hero-slider .owl-nav button.owl-prev:hover,
.hero-slider .owl-nav button.owl-next:hover {
  background-color: var(--accent) !important;
  transform: scale(1.1);
}

.hero-logo {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* navbar */
.top-nav {
  background-color: var(--brand);
  color: #fff;
  padding-top: 5px;
  padding-bottom: 5px;
}

.top-nav p {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 10px;
}

.top-nav span,
.top-nav i {
  vertical-align: middle;
  margin-right: 5px;
}

.navbar {
  box-shadow: var(--shadow);
}

.social-icons a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}

.social-icons a:hover {
  background-color: #fff;
  color: var(--brand);
}
.conditions-section {
  margin: 20px 0;
}
.conditions-section a {
  color: #fff;
  margin: 0 10px;
}

.navbar .navbar-nav .nav-link {
  color: var(--dark);
}

.navbar .navbar-nav .nav-link:hover {
  color: var(--brand);
}

.navbar .navbar-nav .nav-link.active {
  color: var(--brand);
}

.navbar-brand {
  font-size: 28px;
  font-weight: 700;
}

.navbar-brand .dot {
  color: var(--accent);
}

.btn {
  padding: 8px 26px;
}

.btn-brand {
  border-color: var(--brand);
  background-color: var(--brand);
  color: #fff;
}

.btn-brand:hover {
  background-color: var(--brand-hover);
  border-color: var(--brand-hover);
  color: #fff;
}

.intro {
  margin-bottom: 36px;
  text-align: center;
}

.intro p {
  max-width: 500px;
}
.intro h6 {
  color: var(--brand);
  font-weight: 400;
  text-transform: uppercase;
}

.intro h1 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.info-box {
  align-items: center;
  display: flex;
}

.info-box img {
  width: 90px;
}

/* Info box icon styles */
.info-box i {
  min-width: 90px;
  text-align: center;
}

/* Dark Background Sections */
.bg-dark-section {
  background-color: var(--dark);
  color: #fff;
  position: relative;
}

.bg-dark-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, var(--brand), var(--accent));
}

.bg-dark-section h1,
.bg-dark-section h2,
.bg-dark-section h3,
.bg-dark-section h4,
.bg-dark-section h5,
.bg-dark-section h6 {
  color: #fff;
}

.bg-dark-section .intro h6 {
  color: var(--accent);
}

.bg-dark-section .intro p {
  color: rgba(255, 255, 255, 0.8);
  margin-left: auto;
  margin-right: auto;
}

/* Modified Milestone Section */
#milestone {
  background: linear-gradient(rgba(51, 51, 51, 0.95), rgba(51, 51, 51, 0.95)),
    url(../img/bg_banner1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#milestone h1 {
  color: var(--accent);
}

#milestone p {
  color: #fff;
  font-weight: 500;
}

/* Enhanced FAQ Styling for Dark Background */
.bg-dark-section .accordion-item {
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
}

.bg-dark-section .accordion-button {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.bg-dark-section .accordion-button:not(.collapsed) {
  color: var(--accent);
  background-color: rgba(255, 255, 255, 0.05);
}

.bg-dark-section .accordion-body {
  background-color: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
}

.bg-dark-section .accordion-button::after {
  filter: brightness(10);
}

/* Enhanced Detailed Services */
#detailed-services {
  background: linear-gradient(rgba(51, 51, 51, 0.95), rgba(51, 51, 51, 0.95)),
    url(../img/bg_banner1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

#detailed-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpattern id='grid' width='20' height='20' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 20 0 L 0 0 0 20' fill='none' stroke='white' stroke-width='0.5' opacity='0.3'/%3E%3C/pattern%3E%3Crect width='100' height='100' fill='url(%23grid)' /%3E%3C/svg%3E");
  opacity: 0.05;
  z-index: 0;
}

#detailed-services .container {
  position: relative;
  z-index: 1;
}

.detailed-service {
  height: 100%;
  transition: all 0.4s ease;
  border-radius: 12px;
  overflow: hidden;
  border-top: 5px solid transparent;
  background-color: #fff;
  color: var(--dark);
  text-align: center;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.detailed-service::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--brand), var(--accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.detailed-service:hover::before {
  transform: scaleX(1);
}

.detailed-service:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border-top: 5px solid transparent;
}

.detailed-service .icon-container {
  margin-bottom: 25px;
  font-size: 2.5rem;
  color: var(--brand);
  background: linear-gradient(
    135deg,
    rgba(13, 110, 253, 0.1),
    rgba(20, 187, 253, 0.1)
  );
  height: 90px;
  width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.detailed-service:hover .icon-container {
  transform: scale(1.1);
  background: linear-gradient(
    135deg,
    rgba(13, 110, 253, 0.15),
    rgba(20, 187, 253, 0.15)
  );
  border: 2px solid rgba(20, 187, 253, 0.3);
}

.detailed-service h4 {
  color: var(--dark);
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
  font-weight: 700;
}

.detailed-service h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, var(--brand), var(--accent));
}

.detailed-service p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.detailed-service .service-feature {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  text-align: left;
}

.detailed-service .service-feature p {
  margin-bottom: 10px;
  color: #444;
  font-weight: 500;
}

.detailed-service .service-feature i {
  color: var(--accent);
  margin-right: 10px;
  font-size: 0.9rem;
}

.service-cta {
  margin-top: 50px;
}

.service-cta .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.service-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Modern Service Cards */
.service {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.4s ease-in-out;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: none;
  margin-bottom: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-bottom: 5px solid var(--brand);
}

.service img {
  width: 100%;
  transition: all 0.5s ease;
  border-radius: 15px 15px 0 0;
  height: 240px;
  object-fit: cover;
  display: block;
  position: relative;
}

.service:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.service .img-container {
  position: relative;
  overflow: hidden;
  margin: -1px;
}

.service .img-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  opacity: 0;
  transition: all 0.3s ease;
}

.service:hover .img-container::after {
  opacity: 1;
}

.service-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(13, 110, 253, 0.85);
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  backdrop-filter: blur(5px);
}

.service .content {
  padding: 25px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service h5 {
  position: relative;
  padding-bottom: 15px;
  margin-top: 20px;
}

.service h5:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, var(--brand), var(--accent));
}

.service p {
  padding: 0 15px;
  margin-bottom: 25px;
  color: #666;
}

.service-features {
  margin: 20px 0;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.feature-item i {
  margin-right: 10px;
  color: var(--brand);
  font-size: 0.9rem;
}

.service-action {
  margin-top: 10px;
  text-align: center;
}

.service-action .btn {
  padding: 8px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
  width: 100%;
}

.service-action .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
}

#services {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
}

#services::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(13, 110, 253, 0.05);
  z-index: -1;
}

#services::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(20, 187, 253, 0.05);
  z-index: -1;
}

/* Detailed services */
.detailed-service {
  height: 100%;
  transition: all 0.4s ease;
}

.detailed-service:hover {
  transform: translateY(-5px);
}

.detailed-service h4 {
  color: var(--brand);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.project {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.project h6 {
  font-weight: 400;
}

.project h6::before {
  content: "";
  height: 2px;
  width: 30px;
  display: inline-block;
  background: var(--brand);
  vertical-align: middle;
  margin-right: 10px;
}

.project .overlay {
  width: 100%;
  height: 220px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 76, 41, 0) 0%,
    var(--dark) 100%
  );
}

.project .content {
  position: absolute;
  left: 10%;
  bottom: 10%;
}

.project h2,
.project h6 {
  color: #fff;
}

/* FAQ Section */
.accordion-item {
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
  overflow: hidden;
}

.accordion-button {
  background-color: #f8f9fa;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  color: var(--brand);
  background-color: #fff;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--brand);
}

.accordion-button:not(.collapsed)::after {
  background-color: var(--brand);
  border-radius: 50%;
}

footer {
  background: linear-gradient(
      0deg,
      rgba(51, 51, 51, 0.9),
      rgba(51, 51, 51, 0.9)
    ),
    url(../img/bg_banner1.jpg), #333333;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

footer .footer-top {
  padding-top: 80px;
  padding-bottom: 40px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
  padding-top: 20px;
}

footer .navbar-brand {
  color: #fff;
}

footer h4.navbar-brand {
  margin-bottom: 20px;
}

footer p {
  color: #adb3b9;
  margin-bottom: 10px;
}

footer .social-icons a {
  width: 50px;
  height: 50px;
  font-size: 20px;
  margin-left: 4px;
  margin-right: 4px;
}

.loader {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: red;
  z-index: 99999;
  position: fixed;
  left: 0;
  right: 0;
}

input.form-control {
  border-color: transparent;
  height: 44px;
}

.form-control {
  background-color: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.04);
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--brand);
}

/* Media Queries */
@media (max-width: 992px) {
  .hero-slider,
  .slide {
    height: 750px;
  }
}

@media (max-width: 768px) {
  /* Hide top navigation on mobile */
  .top-nav {
    display: none;
  }

  /* Hide all feature badges on mobile */
  .hero-features {
    display: none !important;
  }

  .feature-badge {
    display: none !important;
  }

  /* Hide service badges on mobile */
  .service-badge {
    display: none !important;
  }

  .hero-slider,
  .slide {
    min-height: 650px;
    height: auto;
  }

  .slide .display-3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.7);
  }

  .slide .display-3::after {
    width: 80px;
    height: 4px;
  }

  .slide h6 {
    margin-bottom: 15px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  }

  .hero-content-box {
    padding: 30px 25px;
    margin: 30px 0;
    background-color: rgba(0, 0, 0, 0.7);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
    margin-bottom: 0; /* No feature badges below */
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 250px;
    margin-bottom: 8px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 576px) {
  .hero-slider,
  .slide {
    min-height: 600px;
  }

  .slide .display-3 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .slide .display-3::after {
    width: 60px;
    height: 3px;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero-content-box {
    padding: 25px 20px;
    background-color: rgba(0, 0, 0, 0.75);
  }

  .hero-buttons .btn {
    padding: 10px 20px;
    min-width: 180px;
  }
}

@media (max-width: 400px) {
  .hero-slider,
  .slide {
    min-height: 550px;
  }

  .slide .display-3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .hero-content-box {
    padding: 20px 15px;
    margin: 20px 0;
    background-color: rgba(0, 0, 0, 0.8);
  }

  .slide h6 {
    font-size: 0.9rem;
  }

  .hero-buttons .btn {
    min-width: 160px;
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/* Enhance buttons */
.btn-outline-light:hover {
  color: var(--brand);
}

/* Service area styling */
.service-area-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.bg-dark-section .service-area-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-area-list li:hover {
  padding-left: 5px;
  color: var(--brand);
  font-weight: 500;
}

.bg-dark-section .service-area-list li:hover {
  color: var(--accent);
}

/* Contact section enhancement */
#contact .btn-brand {
  margin-top: 20px;
  padding: 12px 40px;
  font-weight: 600;
  letter-spacing: 1px;
}

#contact {
  position: relative;
  overflow: hidden;
}

#contact::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(13, 110, 253, 0.1);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
  z-index: -1;
}

#contact::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(253, 126, 20, 0.1);
  border-radius: 50%;
  top: -75px;
  left: -75px;
  z-index: -1;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
  min-width: 200px;
  margin: 5px;
}

.hero-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-features {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 250px;
    margin-bottom: 8px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-features {
    margin-top: 15px;
    gap: 8px;
  }

  .feature-badge {
    margin: 3px;
    display: inline-flex;
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .hero-buttons {
    margin-top: 15px;
  }

  .hero-buttons .btn {
    padding: 10px 20px;
    min-width: 180px;
    font-size: 0.9rem;
    margin-bottom: 6px;
  }

  .hero-features {
    margin-top: 12px;
  }

  .feature-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
    margin: 2px;
  }

  .feature-badge i {
    font-size: 0.9rem;
  }
}

.feature-badge {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  margin: 5px;
  display: inline-flex;
  align-items: center;
}

.feature-badge:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.feature-badge i {
  color: var(--accent);
  margin-right: 8px;
}

/* About Section Enhancements */
.about-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.line-dec {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--brand), var(--accent));
  margin-bottom: 20px;
}

.about-header p {
  color: var(--body);
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Remove this redundant section since we already have it in our main media query */
/* Service badges visibility */
@media (max-width: 768px) {
  /* Hide service badges on mobile */
  .service-badge {
    display: none;
  }
}

/* End of stylesheet */
