
/* Hero Background Image */
.hero {
  background: url("../images/about-hero.png") no-repeat center 90% / cover;
  min-height: 62vh;
  --r: 20px; /* radius */
  --s: 35px; /* inner curve size */
  --x: 120px; /* horizontal offset */
  --y: 20px; /* vertical offset */

  border-radius: var(--r);
  --_m:/calc(2*var(--r)) calc(2*var(--r)) radial-gradient(#000 70%,#0000 72%);
  --_g:conic-gradient(at calc(100% - var(--r)) var(--r),#0000 25%,#000 0);
  --_d:(var(--s) + var(--r));
  mask:
    calc(100% - var(--_d) - var(--x)) 0 var(--_m),
    100% calc(var(--_d) + var(--y)) var(--_m),
    radial-gradient(var(--s) at 100% 0,#0000 99%,#000 calc(100% + 1px))
     calc(-1*var(--r) - var(--x)) calc(var(--r) + var(--y)),
    var(--_g) calc(-1*var(--_d) - var(--x)) 0,
    var(--_g) 0 calc(var(--_d) + var(--y));
  mask-repeat: no-repeat;
}

.hero-content {
  text-align: left;
  top: -15px;
  right: 200px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.breadcrumb {
  font-size: 0.9rem;
  color: #ddd;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb span {
  margin: 0 5px;
  color: #ccc;
}

/* Content on top */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 600px;
  margin-right: 400px;
  margin-bottom: -10px;
  
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
}


/* Who We Are Section*/
.about-badge {
  background: #ffde59;
  border-radius: 12px;
}

.about-badge p {
  color: #333;
}

.badge-number {
  color: #333;
}

.feature-box img {
  width: 80px;
  height: 80px;
}

.section-label {
  color: #000000;
}







/* Scrolling Marquee Section */
.marquee {
  width: 100%;
  overflow: hidden;
  background: #fafaf4;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 20px 0;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
}

.marquee-content span {
  display: inline-block;
  font-size: 64px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.04em;            /* can be smaller with shadow */
  -webkit-text-stroke: 0;            /* turn off stroke */
  /* 8-direction shadow = clean outer outline that doesn’t eat into glyphs */
  text-shadow:
    1px 0   #5f5e5e,
   -1px 0   #5f5e5e,
    0   1px #5f5e5e,
    0  -1px #5f5e5e,
    1px 1px #5f5e5e,
   -1px 1px #5f5e5e,
    1px -1px #5f5e5e,
   -1px -1px #5f5e5e;
}

.marquee-content img {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


























.products-section {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f2;
}

.section-header .tagline {
  display: inline-block;
  font-size: 14px;
  color: #888;
  margin-bottom: 8px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
}

.products-carousel {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  width: 220px;
  position: relative;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
}

.card-btn {
  position: absolute;
  top: 0px;
  right: 0px;
  background: #1f5aa8;
  color: #ffffff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
}

.card-btn img{
  filter: brightness(0) invert(1);
}

.product-img {
  border: 3px solid #3a7a3c;
  border-radius: 50%;
  padding: 15px;
  margin-bottom: 20px;
}

.product-img img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.product-category {
  font-size: 12px;
  color: #777;
  display: block;
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 7px;
}

.product-category::before {
  content: "";
  display: inline-block;
  width: 6px;               /* size of dot */
  height: 6px;
  border-radius: 50%;       /* makes it a circle */
  background-color: #3a7a3c; /* green dot */
  margin-right: 6px;        /* spacing between dot and text */
}

.product-title {
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center; /* ensures vertical middle alignment */
  gap: 8px;
  margin-top: 30px;
}

.carousel-dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: gray;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* Active (first) dot */
.carousel-dots span.active {
  width: 12px;
  height: 12px;
  background: #f7c948; /* yellow */
}



























.aboutus-section {
  background: #0077b6; /* your blue background */
  padding: 60px 20px;
  color: #fff;
  font-family: 'Roboto', 'Signika', sans-serif;
}

.aboutus-section .container {
  max-width: 1100px;
  margin: 0 auto;
}


/* Row 1: Heading + Description */
.heading-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
  margin-bottom: 40px;
}

.heading-left {
  flex: 0 0 45%;
}

.heading-left h2 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.3;
  margin: 0;
}

/* tagline pill */
.tagline {
  display: inline-block;
  background: #fff;
  color: #000000;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.about-desc {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
  color: #dce8f2;
  margin: 0;
  padding-top: 30px;
}

/* ---------- Row 2: Image + Right Content ---------- */
.content-row {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.about-img {
  flex: 0 0 55%;
  position: relative;
}

.about-img img {
  width: 98%;
  display: block;
}

.icon-box {
  position: absolute;
  bottom: 0px;
  right: 13px;
  background: #ffee58;
  color: #333;
  padding: 16px;
  border-radius: 12px;
  font-size: 20px;
}

/* ---------- Right Steps ---------- */
.aboutus-right {
  flex: 1;
}

.step-box {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #0077b6;  /* default inactive (blue) */
  color: #fff;          /* default text white */
}

.step-number {
  font-size: 28px;
  font-weight: 800;
  flex-shrink: 0;
  color: #4caf50; /* green text */
  -webkit-text-stroke: 0.5px #fff; /* white outline */
  background: transparent;
  border: none;        /* number white by default */
}

.step-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  flex: 1;
}

.step-content h4,
.step-content p {
  margin: 0;
}

/* active card */
.step-box.active {
  background: #fff;
  color: #000; /* text turns black */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.step-box.active .step-number {
  color: #4caf50;           /* solid green */
  -webkit-text-stroke: 0;   /* remove white outline */
}



/* Testimonial Cards Section */
.quote-icon {
  width: 36px;
  height: 36px;
  background: gold;  /* blue circle */
}

.quote-icon img {
  width: 40px;
  height: 40px;
}

































