/* Global */
body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;

}

/* Navbar */
.custom-navbar {
  background-color: #fff;
  border-bottom: 2px solid #1b998c;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 1030;
}

.custom-navbar .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #000 !important;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.custom-navbar .nav-link.active,
.custom-navbar .nav-link:hover {
  color: #1b998c !important;
}

.custom-btn {
  background-color: #1b998c !important;
  color: #fff !important;
  font-size: 14px;
  font-weight: 500;
  border: none !important;
  border-radius: 6px;
  padding: 8px 18px;
  transition: 0.3s;
}

.custom-btn:hover {
  background-color: #148578 !important;
}


.banner-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background-color: #f9f9f9;
}

.btn-color {
  background-color: #1b998c !important;
  border: none !important;
}

.btn-color:hover {
  background-color: #000 !important;
}

/* Person image - top right corner behind form */
.banner-person-img {
  position: absolute;
  top: -40px;
  right: -80px;
  width: 550px;
  height: auto;
  z-index: 0;
  opacity: 0.9;
}

/* Left corner image (attached to corner) */
.banner-left-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 180px;
  height: auto;
  z-index: 1;
}

.banner-title {
  font-size: 40px;
  font-weight: 700;
  color: #0d1b2a;
}

.banner-subtitle {
  font-size: 18px;
  margin-top: 15px;
  color: #555;
}

/* Responsive fix */
@media (max-width: 991px) {
  .banner-person-img {
    display: none;
  }

  .banner-left-img {
    width: 120px;
  }
}


/* Buttons */
.custom-btn {
  background-color: #1b998c !important;
  color: #fff !important;
  font-size: 14px;
  font-weight: 500;
  border: none !important;
  border-radius: 6px;
  padding: 8px 20px;
}

.custom-btn:hover {
  background-color: #1b998c !important;
}

/* Mobile */
@media (max-width: 992px) {
  .banner-section {
    background: none;
    /* hide person on small screens */
  }
}

/* WHO WE ARE SECTION */
.who-we-are {
  background: #fff;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1b1b1b;
}

.section-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #1b998c;
  text-transform: uppercase;
}

.section-text {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  max-width: 720px;
}

/* IMAGE LAYOUT */
.who-images {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 60px;
}

/* COMMON IMAGE BOX STYLES */
.img-box {
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.img-box img {
  display: block;
  border: 6px solid #4a4a4a;
  /* dark gray border */
  border-radius: 6px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: #fff;
}

/* CENTER IMAGE */
.center-img {
  z-index: 3;
}

.center-img img {
  width: 450px;
  height: auto;
}

/* LEFT IMAGE */
.left-img {
  transform: rotate(-6deg);
  margin-right: -100px;
  margin-top: 70px;
  z-index: 2;
}

.left-img img {
  width: 350px;
  height: auto;
}

/* RIGHT IMAGE */
.right-img {
  transform: rotate(6deg);
  margin-left: -100px;
  margin-top: 70px;
  z-index: 2;
}

.right-img img {
  width: 350px;
  height: auto;
}

img-box.show {
  opacity: 1;
  transform: translateY(0);
}

/* Slide in from left */
.left-img.show {
  animation: slideInLeft 1.2s ease-out forwards;
}

/* Slide in from right */
.right-img.show {
  animation: slideInRight 1.2s ease-out forwards;
}

/* Center image fade in */
.center-img.show {
  animation: fadeIn 1.2s ease-out 0.3s forwards;
}

/* Keyframes */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-150px) rotate(-6deg);
  }

  100% {
    opacity: 1;
    transform: translateX(0) rotate(-6deg);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(150px) rotate(6deg);
  }

  100% {
    opacity: 1;
    transform: translateX(0) rotate(6deg);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}



/* EXPERIENCE BADGE - ATTACHED TO CENTER IMAGE */
.experience-badge {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 2px solid #1b998c;
  border-left: 6px solid #1b998c;
  padding: 18px 40px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.experience-badge h2 {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  color: #1b1b1b;
}

.experience-badge p {
  margin: 0;
  color: #1b998c;
  font-size: 15px;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .who-images {
    flex-direction: column;
    align-items: center;
  }

  .left-img,
  .right-img {
    transform: rotate(0deg);
    margin: 20px 0;
  }

  .center-img img {
    width: 100%;
    max-width: 400px;
  }

  .experience-badge {
    bottom: -25px;
  }
}

/* APPAREL PROMISES */
.apparel-promises {
  background-color: #ffffff;
  text-align: center;
  padding-bottom: 60px;
}

/* Blue Header */
.promises-header {
  background-color: #1b998c;
  padding: 20px 0 20px;
  color: #fff;
}

.promises-header h2 {
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

/* Circle Boxes */
.promise-circle {
  background: #fff;
  border: 2px solid #ccc;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.6) rotate(-90deg);
  transition: all 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Appear animation */
.promise-circle.show {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Staggered reveal */
.promise-circle:nth-child(1).show { transition-delay: 0.2s; }
.promise-circle:nth-child(2).show { transition-delay: 0.4s; }
.promise-circle:nth-child(3).show { transition-delay: 0.6s; }
.promise-circle:nth-child(4).show { transition-delay: 0.8s; }

/* Hover animation */
.promise-circle:hover {
  transform: scale(1.05) rotate(5deg);
  border-color: #1b998c;
  box-shadow: 0 0 25px rgba(27, 153, 140, 0.4);
}

/* Icon */
.promise-icon i {
  font-size: 40px;
  color: #1b998c;
  transition: transform 0.4s ease, color 0.4s ease;
}

/* Icon hover - pulse softly */
.promise-circle:hover .promise-icon i {
  transform: scale(1.15);
  color: #17b5a6;
}

/* Heading inside circle */
.promise-circle h5 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin: 0;
}

/* Description below circle */
.promise-text {
  font-size: 14px;
  color: #555;
  max-width: 230px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 767px) {
  .promise-circle {
    width: 180px;
    height: 180px;
  }

  .promise-icon img {
    width: 55px;
    height: 55px;
  }

  .promise-circle h5 {
    font-size: 15px;
  }
}

/* Backgrounds and layout */
.digitizing-section {
  background: #ffffff url('https://www.transparenttextures.com/patterns/wall-4-light.png');
  /* subtle texture */
  background-size: contain;
}

/* Blue top section */
.hex-header {
  background-color: #1b998c;
}

.blue-header h2 {
  font-size: 2.2rem;
  letter-spacing: 1px;
}

.Hex-header p {
  max-width: 950px;
  margin: 0 auto;
  font-size: 1rem;
  color: #ffffff;
}

/* Image boxes */
.digitizing-box:hover {
  transform: translateY(-5px);
}

/* Full-size image inside box */
.digitizing-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

/* base card (hidden, below) */
.image-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 2px solid #1b998c;
  box-shadow: 0 0 45px 10px #1b998c;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transform: rotateY(90deg);
  opacity: 0;
  will-change: transform, box-shadow, opacity;
  animation: flipIn 0.8s ease-out forwards;
  height: 280px;
}
.image-card img {
  max-width: 100%;
  max-height: 100%;       
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.5s ease, opacity 0.4s ease;
}


/* New flip & fade animation */
@keyframes flipIn {
  0% {
    transform: rotateY(90deg);
    opacity: 0;
  }
  60% {
    transform: rotateY(-10deg);
    opacity: 0.7;
  }
  100% {
    transform: rotateY(0);
    opacity: 1;
  }
}

/* Hover = Deep Press Under Effect */
.image-card.show:hover,
.image-card:hover {
  transform: perspective(800px) translateZ(-45px) scale(0.97);
  box-shadow:
    inset 0 8px 25px #1b998c,
    inset 0 -8px 20px rgba(0, 0, 0, 0.1),
    0 0 30px #1b998c;
  border-color: #1b998c;
}


/* Inner image slightly compresses */
.image-card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

/* responsive tweaks if needed */
@media (max-width: 768px) {
  .image-card {
    transform: rotateY(90deg);
  }

  .image-card.show:hover {
    transform: translateY(6px);
  }
}

/* Hover effect - image card goes slightly down */

/* Section background and header */
.easy-patch-section {
  background: #ffffff url('https://www.transparenttextures.com/patterns/concrete-wall.png');
  background-size: cover;
}

.easy-patch-section .blue-header {
  background-color: #1b998c;
}

.easy-patch-section .blue-header h2 {
  font-size: 2.2rem;
  letter-spacing: 0.5px;
}

.easy-patch-section .blue-header p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  color: #ffffff;
}

/* Patch Cards */
.patch-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.25);
  /* First part = visible border-like gray outline, second = soft depth shadow */
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.patch-card:hover {
  transform: translateY(-5px);
}

.patch-card img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  border-radius: 12px;
}


.quote-banner-container {
  background-color: #1b998c;
  padding: 30px 0;
  text-align: center;
}

.quote-button {
  background-color: black;
  border: none;
  color: white;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 6px;
}

/* Section background */
.section-content {
  background: linear-gradient(to bottom right, #ffffff, #f5fbfd);
  padding: 60px 20px;
}

/* Progress bars */
.progress {
  height: 20px;
  background-color: #dbeeff;
  position: relative;
}

.progress-bar {
  background-color: #1b998c;
  display: flex;
  justify-content: flex-end;
  align-items: end;
  padding-right: 10px;
  font-size: 12px;
  font-weight: 600;
  color: white;
}

.progress-label {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 5px;
}


.feature-box {
  position: relative;
  color: #fff;
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  overflow: hidden;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000;
  /* fills behind if empty space */
}


.col-md-6.d-flex.flex-column.gap-4>.feature-box {
  flex: 1;
}

.feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.feature-content {
  position: relative;
  z-index: 2;
}


/* Zoom animation only on the image (pseudo-element) */
.feature-box:hover::before {
  transform: scale(1.08);
}

/* Slightly darken overlay on hover */
.feature-box:hover .feature-overlay {
  background: rgba(0, 0, 0, 0.55);
}

/* Text and button animation */
.feature-content {
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.feature-box:hover .feature-content {
  transform: translateY(-15px);
}

/* Underline animation under heading */
.feature-box h3 {
  font-weight: 600;
  font-size: 28px;
  position: relative;
  display: inline-block;
}

.feature-box h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 3px;
  background-color: #1b998c;
  transition: width 0.4s ease;
}

.feature-box:hover h3::after {
  width: 100%;
}

/* Button style */
.feature-box .btn {
  background-color: #000;
  color: #fff;
  font-weight: 600;
  border: 2px solid #1b998c;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.feature-box:hover .btn {
  background-color: #1b998c;
  transform: translateY(-5px);
}

/* Ribbons */
.ribbon {
  position: absolute;
  top: 10px;
  font-size: 12px;
  font-weight: bold;
  background-color: #000;
  color: #fff;
  padding: 3px 10px;
  z-index: 2;
}

.ribbon-left {
  left: 10px;
}

.ribbon-right {
  right: 10px;
}

.stats-section {
  background-color: #1b998c;
}

.stats-section h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.stats-section p {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Hover animation */
.stats-section .col-md-4:hover h1 {
  transform: scale(1.1);
  color: #e3f2fd;
}



/* Contact Section */
.contact-section {
  background-color: #f0f4fa;
  padding: 60px 20px;
}

.contact-section h2 {
  font-weight: 700;
}

.contact-section .form-box {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.contact-section .form-control {
  border-radius: 5px;
  padding: 12px;
}

.contact-section .btn-dark {
  padding: 10px 24px;
  font-weight: 600;
}

.map-container {
  height: 100%;
  min-height: 450px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #e3f2fd, #ffffff);
  color: #000000;
  padding: 60px 0 0;

}

.footer a {
  color: #000000;
  text-decoration: none;
}

.footer a:hover {
  color: #17c3b2;
  text-decoration: underline;
}

.footer-logo {
  height: 90px;
  width: 150px;
}

.footer-logo img {
  height: 100%;
  width: 100%;
}

.footer-bottom {
  background-color: #1b998c;
  color: #000000;
  padding: 12px 0;
  text-align: center;
  margin-top: 40px;
  width: 100%;
}

.footer .social-links a {
  display: inline-block;
  background-color: #1b998c;
  /* Brand color */
  color: #fff;
  /* Icon color */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.footer .social-links a:hover {
  background-color: #000;
  /* Black on hover */
  color: #1b998c;
  /* Brand color for icon */
}

.footer .social-links i {
  font-size: 18px;
}


/* Digitizing css */
/* Banner Section */
.digitizing-banner {
  background: linear-gradient(90deg, #1b998c 50%, #12746a 100%);
  color: #fff;
  padding: 80px 0;
}

.digitizing-banner h1 {
  font-size: 2.5rem;
}

.digitizing-banner .banner-img {
  max-width: 90%;
  animation: floatImg 3s ease-in-out infinite;
}

@keyframes floatImg {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* What is Digitizing */
.what-digitizing p {
  color: #333;
}

/* Why Choose Us */
.why-choose {
  background: linear-gradient(180deg, #f0f8ff, #ffffff);
}

/* Gradient text heading */
.text-gradient {
  background: linear-gradient(90deg, #1b998c, #1b998c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Box styling */
.choose-box {
  transition: all 0.4s ease;
  cursor: pointer;
}

.choose-box:hover {
  transform: translateY(-8px);
  background: linear-gradient(180deg, #ffffff, #e9f7ff);
  box-shadow: 0 10px 25px rgba(0, 179, 255, 0.2);
}

/* Icon box */
.icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1b998c, #1b998c);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: 0.4s;
}

.choose-box:hover .icon-box {
  transform: scale(1.1) rotate(10deg);
  background: linear-gradient(135deg, #1b998c, #1b998c);
}


/* Section Background & Layout */
.what-digitizing {
  background: linear-gradient(135deg, #f8fbff, #e6f4ff);
  overflow: hidden;
}

/* Gradient Heading */
.text-gradient {
  background: linear-gradient(90deg, #1b998c, #3ac2b5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Image Box Styling */
.image-box {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(0, 179, 255, 0.3);
  transition: transform 0.6s ease;
}

.image-box img {
  width: 100%;
  transition: transform 0.8s ease;
}

.image-box:hover img {
  transform: scale(1.1);
}

/* Glow Overlay */
.image-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 179, 255, 0.15);
  transition: all 0.8s ease;
}

.image-box:hover::after {
  left: 0;
}

/* Animated Button */
.btn-glow {
  background: linear-gradient(90deg, #1b998c, #33e0cf);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 25px;
  font-weight: 500;
  box-shadow: 0 0 15px rgba(0, 179, 255, 0.5);
  transition: all 0.4s ease;
}

.btn-glow:hover {
  box-shadow: 0 0 25px rgba(0, 179, 255, 0.9);
  transform: translateY(-3px);
}

/* Scroll Animation (Fade Effect) */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}


.work-sample {
  background: linear-gradient(180deg, #ffffff, #f5fbff);
  padding: 80px 0;
}

.text-gradient {
  background: linear-gradient(90deg, #1b998c, #1a645d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sample-box {
  position: relative;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #f0f8ff;
  box-shadow: 0 10px 25px rgba(0, 179, 255, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sample-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 179, 255, 0.35);
}

/* Image wrapper */
.sample-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  transition: transform 0.8s ease;
}

.sample-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* Show full image */
  object-position: center;
  display: block;
  border-radius: 16px;
}

/* Text slide overlay */
.sample-text {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1b998c, #177b71);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(-100%);
  opacity: 0;
  transition: all 0.8s ease;
  z-index: 1;
  border-radius: 16px;
}

.sample-text h5 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.sample-text p {
  font-size: 15px;
  max-width: 80%;
  margin: 0 auto;
}

/* Hover animation */
.sample-box:hover .sample-img {
  transform: translateX(100%);
}

.sample-box:hover .sample-text {
  transform: translateX(0);
  opacity: 1;
}


/* How It Works */
/* Section background */
.how-works {
  border-radius: 20px;
  margin: 60px auto;
}

/* Gradient heading */
.text-gradient {
  background: linear-gradient(90deg, #1b998c, #227068);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Step box */
.step-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px 15px;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 179, 255, 0.15);
  position: relative;
}

.step-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 179, 255, 0.3);
  background: linear-gradient(135deg, #e6f7ff, #ffffff);
}

/* Icon style */
.step-box .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1b998c, #1b998c);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 6px 12px rgba(0, 179, 255, 0.25);
  transition: all 0.4s ease;
}

.step-box:hover .icon {
  transform: rotate(15deg) scale(1.1);
}

/* Text */
.step-box h6 {
  color: #1b998c;
  margin-bottom: 8px;
}

.step-box p {
  font-size: 14px;
  color: #555;
  margin: 0;
}


/* Request Quote */
.request-quote {
  position: relative;
  background: linear-gradient(
      rgba(27, 153, 140, 0.85),
      rgba(27, 153, 140, 0.85)
    ),
    url("../images/bg-img.jpg") center/cover no-repeat;
  background-attachment: fixed;
  color: #fff;
  overflow: hidden;
}

.request-quote .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.request-quote .container {
  position: relative;
  z-index: 1;
}

.quote-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
}

.request-quote .container {
  position: relative;
  z-index: 1;
}

.quote-box {
  max-width: 500px;
  background: rgba(255, 255, 255, 0.95);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.nav-link.active {
  color: #1b998c !important;
  /* Bootstrap primary color */
  font-weight: 600;
  border-bottom: 2px solid #1b998c;
}


/* About Hero Section Fix */
.about-hero {
  background: url('../images/about-banner.jpg') center/cover no-repeat;
  min-height: 70vh;
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Overlay Fix */
.about-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

/* Text Gradient (Already Fine) */
.text-gradient {
  background: linear-gradient(90deg, #1b998c, #23cdbc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Mission Section */
.mission-section {
  background: linear-gradient(135deg, #1b998c, #26cab9);
}

/* CTA Section Fix */
.cta-section {
  background: url('../images/img16.jpg') center/cover no-repeat;
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Team Image Styling */
.team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.shop-hero {
  height: 70vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)),
    url("../images/shop1.jpg") center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}



.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta {
  background-color: #1b998c;
}

.categories button.active {
  background-color: #1b998c;
  color: white;
}

.showcase h4 {
  margin-bottom: 10px;
  color: #222;
}

.showcase p {
  font-size: 1rem;
  line-height: 1.6;
}

.showcase img {
  transition: transform 0.4s ease;
}

.showcase img:hover {
  transform: scale(1.03);
}
