@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&family=PT+Sans:wght@400;700&display=swap");
:root {
  --color-1: #03114A;
  --color-2: #5ACE7A;
  --color-3: #F6F9FC;
  --splColor: #FA8B00;
  --darkColor: #222;
  --liteColor: #fff;
  --font-1: "PT Sans", sans-serif;
  --font-2: "Oswald", sans-serif;
  /* Typography Scale */
  --text-xs: 0.75rem;
  /* 12px */
  --text-sm: 0.875rem;
  /* 14px */
  --text-base: 1rem;
  /* 16px */
  --text-lg: 1.125rem;
  /* 18px */
  --text-xl: 1.25rem;
  /* 20px */
  --text-2xl: 1.5rem;
  /* 24px */
  --text-3xl: 1.875rem;
  /* 30px */
  --text-4xl: 2.25rem;
  /* 36px */
  --text-5xl: 3rem;
  /* 48px */
  /* Spacing Scale */
  --space-xs: 0.25rem;
  /* 4px */
  --space-sm: 0.5rem;
  /* 8px */
  --space-md: 1rem;
  /* 16px */
  --space-lg: 1.5rem;
  /* 24px */
  --space-xl: 2rem;
  /* 32px */
  --space-2xl: 3rem;
  /* 48px */
  --space-3xl: 4rem;
  /* 64px */
  /* Line Heights */
  --leading-tight: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.75;
}

html {
  padding: 0;
  margin: 0;
}

body {
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}
body.ash {
  background-color: #f5f5f5;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.w-100 {
  width: 100%;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(22, 163, 74, 0.1);
  color: #166534;
  display: none;
}

.section-title {
  margin: 14px 0 10px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  color: #111827;
}

.section-title span {
  color: #15803d;
}

.section-subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

.br10 {
  border-radius: 13px;
}

/* PAGE LOADER */
.pageloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: var(--color-3);
  display: flex;
}

.pageloader img {
  margin: auto;
  width: 400px;
}

.page-header-2 {
  text-align: center;
  padding: 30px;
  background-image: url(../../images/bg/bg-1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.page-header-2.pb0 {
  padding-bottom: 0;
}
.page-header-2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 0;
}
.page-header-2 .container {
  position: relative;
  z-index: 10;
}
.page-header-2 * {
  color: #fff;
}
.page-header-2 h2 {
  margin-bottom: var(--space-sm);
  font-size: var(--text-3xl);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: var(--font-2);
  line-height: var(--leading-tight);
}
@media (max-width: 767px) {
  .page-header-2 h2 {
    font-size: var(--text-3xl);
  }
}
@media (max-width: 559px) {
  .page-header-2 h2 {
    font-size: var(--text-2xl);
  }
}
.page-header-2 p {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  margin-top: var(--space-sm);
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 559px) {
  .page-header-2 p {
    font-size: var(--text-base);
  }
}

/* TITLE WRAPPER */
.title-wrapper {
  position: relative;
  max-width: 850px;
  margin: 0 auto var(--space-xl);
  padding: 0 var(--space-md);
}
.title-wrapper.white * {
  color: #fff;
}
.title-wrapper h2 {
  font-weight: 700;
  font-size: var(--text-4xl);
  margin: 0 0 var(--space-lg);
  position: relative;
  color: var(--color-1);
  font-family: var(--font-2);
  line-height: var(--leading-tight);
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .title-wrapper h2 {
    font-size: var(--text-3xl);
  }
}
@media (max-width: 559px) {
  .title-wrapper h2 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
  }
}
.title-wrapper span {
  display: block;
  margin: 0;
  padding: 0;
  color: #6f6f6f;
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}
.title-wrapper h4 {
  font-size: var(--text-lg);
  font-weight: 400;
  margin-top: var(--space-sm);
  color: #666;
  line-height: var(--leading-normal);
}
.title-wrapper p {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: #555;
  margin-top: var(--space-md);
}
@media (max-width: 559px) {
  .title-wrapper p {
    font-size: var(--text-base);
  }
}

ul.style-1 {
  margin-bottom: var(--space-lg);
  margin-top: var(--space-md);
}
ul.style-1 li {
  position: relative;
  margin-bottom: var(--space-sm);
  padding-left: var(--space-lg);
  text-align: left;
  font-weight: 400;
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: #111;
}
ul.style-1 li a {
  color: var(--color-1);
  transition: color 0.3s ease;
}
ul.style-1 li a:hover {
  color: var(--color-2);
}
ul.style-1 li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 2px;
  font-family: "FontAwesome";
  font-size: var(--text-sm);
  color: var(--color-2);
}
ul.style-1 li:last-child {
  margin-bottom: 0;
}

.ash {
  background-color: #f5f5f5;
}

p {
  color: #111;
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}
p:last-child {
  margin-bottom: 0;
}
p.lead {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: #444;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
button,
.btn,
li {
  font-family: var(--font-1);
  margin: 0;
  padding: 0;
}

/* Enhanced Heading Styles */
h1 {
  font-size: var(--text-5xl);
  font-weight: 700;
  line-height: var(--leading-tight);
  font-family: var(--font-2);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
}
@media (max-width: 767px) {
  h1 {
    font-size: var(--text-4xl);
  }
}

h2 {
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: var(--leading-tight);
  font-family: var(--font-2);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-md);
}
@media (max-width: 767px) {
  h2 {
    font-size: var(--text-3xl);
  }
}

h3 {
  font-size: var(--text-3xl);
  font-weight: 600;
  line-height: var(--leading-tight);
  font-family: var(--font-2);
  margin-bottom: var(--space-md);
}
@media (max-width: 767px) {
  h3 {
    font-size: var(--text-2xl);
  }
}

h4 {
  font-size: var(--text-2xl);
  font-weight: 600;
  line-height: var(--leading-normal);
  margin-bottom: var(--space-sm);
}
@media (max-width: 767px) {
  h4 {
    font-size: var(--text-xl);
  }
}

h5 {
  font-size: var(--text-xl);
  font-weight: 600;
  line-height: var(--leading-normal);
  margin-bottom: var(--space-sm);
  color: var(--color-1);
}
@media (max-width: 767px) {
  h5 {
    font-size: var(--text-lg);
  }
}

h6 {
  font-size: var(--text-lg);
  font-weight: 600;
  line-height: var(--leading-normal);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Content spacing utility classes */
.content-section {
  margin-bottom: var(--space-2xl);
}

.content-block {
  margin-bottom: var(--space-xl);
}

.text-spacing p + p {
  margin-top: var(--space-md);
}
.text-spacing h1,
.text-spacing h2,
.text-spacing h3,
.text-spacing h4,
.text-spacing h5,
.text-spacing h6 {
  margin-top: var(--space-xl);
}
.text-spacing h1:first-child,
.text-spacing h2:first-child,
.text-spacing h3:first-child,
.text-spacing h4:first-child,
.text-spacing h5:first-child,
.text-spacing h6:first-child {
  margin-top: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.dis0 {
  display: none !important;
}

.p0 {
  padding: 0;
}

/* COMMON */
section.common {
  padding: 0 0;
}

.btn-1 {
  border-radius: 6px;
  border: none;
  color: #fff;
  background-color: var(--color-1);
  padding: 10px 16px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
}
.btn-1.flat {
  border-radius: 6px;
}
.btn-1.big {
  padding: 10px 25px;
  font-size: 17px;
}
.btn-1:hover {
  background: var(--color-2);
  color: #fff;
}
.btn-1 svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  position: relative;
  left: 4px;
  top: -2px;
}
.btn-1:hover svg {
  fill: #fff;
}
@media (max-width: 559px) {
  .btn-1 span {
    display: none;
  }
}

.btn-1.inverse {
  background: var(--color-2);
  color: #fff;
}
.btn-1.inverse:hover {
  background: var(--color-2);
}

.btn-2 {
  border-radius: 8px;
  background: transparent;
}
.btn-2:hover {
  background: #222;
  color: #fff;
}

/* PAGE HEADER */
.page-header {
  background-color: var(--color-1);
  padding: 0 10px;
}
.page-header ul {
  text-align: center;
}
.page-header ul li {
  display: inline-block;
  font-size: 14px;
  padding: 12px 0;
  margin-right: 25px;
  color: #fff;
  position: relative;
}
.page-header ul li::before {
  content: "\f105";
  position: absolute;
  right: -16px;
  top: 12px;
  font-family: "FontAwesome";
}
.page-header ul li:last-child::before {
  display: none;
}
.page-header ul li a {
  color: inherit;
}
@media (max-width: 767px) {
  .page-header.vb {
    padding: 30px 0;
  }
}

/* INDEX PAGE */
.carousel-control-next-icon,
.carousel-control-prev-icon {
  background-color: #000;
  border-radius: 100%;
  background-size: 55%;
}

section.collections {
  padding: 25px 0;
}
section.collections .collection-box-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
}
section.collections .collection-box-grid .collection-box {
  display: block;
  position: relative;
}
section.collections .collection-box-grid .collection-box .imgs {
  overflow: hidden;
}
section.collections .collection-box-grid .collection-box .imgs img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.8s ease;
}
section.collections .collection-box-grid .collection-box .desc {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: calc(100% - 20px);
  background-color: var(--liteColor);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 10px;
  padding: 7px 10px;
  color: var(--darkColor);
  transition: 0.6s ease;
}
section.collections .collection-box-grid .collection-box .desc span.hover {
  display: none;
}
section.collections .collection-box-grid .collection-box:hover .imgs img {
  transform: scale(1.1);
}
section.collections .collection-box-grid .collection-box:hover .desc {
  background-color: var(--color-1);
  color: var(--liteColor);
}
section.collections .collection-box-grid .collection-box:hover .desc span.default {
  display: none;
}
section.collections .collection-box-grid .collection-box:hover .desc span.hover {
  display: block;
}
@media (max-width: 767px) {
  section.collections .collection-box-grid .collection-box {
    flex: 0 0 auto;
    width: 300px;
    max-width: 85%;
  }
}
@media (max-width: 991px) {
  section.collections .collection-box-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  section.collections .collection-box-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px;
    grid-gap: 10px;
    margin: 0 0 5px;
  }
}

section.full-bg-1 {
  background-image: url(../../images/bg/bg-1.jpg);
  background-size: cover;
  background-position: bottom;
  padding: 90px 0;
  display: flex;
}
section.full-bg-1 .full-bg-box {
  background: hsla(0, 0%, 100%, 0.8);
  max-width: 600px;
  text-align: center;
  width: 100%;
  background-repeat: no-repeat;
  position: relative;
  padding: 50px;
  margin: auto;
}
section.full-bg-1 .full-bg-box .title-bg {
  margin-bottom: 10px;
}
section.full-bg-1 .full-bg-box .title-bg h2 {
  font-size: 35px;
  color: #222;
  display: inline-block;
  padding: 5px 10px 5px;
}
section.full-bg-1 .full-bg-box .title-bg h2 span {
  color: var(--color-1);
}
@media (max-width: 767px) {
  section.full-bg-1 .full-bg-box .title-bg h2 {
    font-size: 30px;
  }
}
section.full-bg-1 .full-bg-box p {
  font-size: 17px;
  line-height: 24px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  section.full-bg-1 .full-bg-box {
    padding: 25px 50px;
  }
}
@media (max-width: 767px) {
  section.full-bg-1 {
    padding: 0px;
  }
}

section.why-woodco {
  padding: 30px 0;
  background-color: #f5f5f5;
  --borderColor: #ddd;
}
section.why-woodco .why-box-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
section.why-woodco .why-box-grid .why-box {
  text-align: center;
}
section.why-woodco .why-box-grid .why-box:last-child {
  border-right: none;
  grid-column-start: 2;
  grid-column-end: 4;
}
section.why-woodco .why-box-grid .why-box img {
  width: 100%;
  margin-bottom: 10px;
}
section.why-woodco .why-box-grid .why-box p {
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  section.why-woodco .why-box-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  section.why-woodco .why-box-grid .why-box:nth-child(1), section.why-woodco .why-box-grid .why-box:nth-child(2) {
    border-bottom: 1px solid var(--borderColor);
  }
  section.why-woodco .why-box-grid .why-box:nth-child(2) {
    border-right: none;
  }
}
@media (max-width: 991px) and (max-width: 559px) {
  section.why-woodco .why-box-grid {
    grid-template-columns: 1fr;
  }
  section.why-woodco .why-box-grid .why-box {
    border-right: none;
  }
  section.why-woodco .why-box-grid .why-box:nth-child(3) {
    border-bottom: 1px solid var(--borderColor);
  }
}

section.products {
  padding: 20px 0;
}
section.products .product-box-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
section.products .product-box-grid .product-box {
  transition: 0.6s ease;
  border: 1px solid #ddd;
  text-align: center;
}
section.products .product-box-grid .product-box .img {
  display: block;
  overflow: hidden;
  margin-bottom: 5px;
  position: relative;
  padding: 20px;
}
section.products .product-box-grid .product-box .img img {
  transition: 0.6s ease;
}
section.products .product-box-grid .product-box .btn-1 {
  background-color: var(--color-2);
  text-transform: uppercase;
}
section.products .product-box-grid .product-box .btn-1:hover {
  background-color: var(--color-1);
}
section.products .product-box-grid .product-box .desc {
  padding: 10px 20px 15px;
}
section.products .product-box-grid .product-box .desc h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}
section.products .product-box-grid .product-box .desc .price {
  margin: 10px 0;
  font-weight: bold;
  font-size: 24px;
}
section.products .product-box-grid .product-box .desc .price small {
  font-size: 18px;
  color: #666;
  display: inline-block;
  margin-left: 10px;
  text-decoration: line-through;
}
section.products .product-box-grid .product-box .desc p {
  line-height: 20px;
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
}
section.products .product-box-grid .product-box .desc .btns a {
  display: block;
}
section.products .product-box-grid .product-box:hover {
  -o-box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.42), 0 3px 20px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.42), 0 3px 20px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}
section.products .product-box-grid .product-box:hover .img img {
  transform: scale(1.1);
}
@media (max-width: 991px) {
  section.products .product-box-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  section.products .product-box-grid.x-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px;
    grid-gap: 10px;
    margin: 0 0 5px;
  }
}
@media (max-width: 991px) and (max-width: 767px) and (max-width: 767px) {
  section.products .product-box-grid.x-scroll .product-box {
    flex: 0 0 auto;
    width: 300px;
    max-width: 85%;
  }
}

section.our-advantages {
  padding: 20px;
  /* Icons */
  /* Arrow between boxes (except last) */
  /* Mobile: stack vertical and adjust arrows */
}
section.our-advantages .process-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
section.our-advantages .step {
  position: relative;
  flex: 1 1 180px;
  max-width: 220px;
  background: #ffffff;
  padding: 18px 16px 20px;
  border-radius: 10px;
  border: 3px solid #ccc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
}
section.our-advantages .step .icon {
  font-size: 36px;
  margin-bottom: 10px;
}
section.our-advantages .step h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: #222;
}
section.our-advantages .step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #000000;
  /* black paragraph text */
}
section.our-advantages .step1 {
  border-color: #E08529;
}
section.our-advantages .step1 h3,
section.our-advantages .step1 .icon {
  color: #E08529;
}
section.our-advantages .step2 {
  border-color: #43A453;
}
section.our-advantages .step2 h3,
section.our-advantages .step2 .icon {
  color: #43A453;
}
section.our-advantages .step3 {
  border-color: #63A8CB;
}
section.our-advantages .step3 h3,
section.our-advantages .step3 .icon {
  color: #63A8CB;
}
section.our-advantages .step4 {
  border-color: #874C91;
}
section.our-advantages .step4 h3,
section.our-advantages .step4 .icon {
  color: #874C91;
}
section.our-advantages .step5 {
  border-color: #0A8F8E;
}
section.our-advantages .step5 h3,
section.our-advantages .step5 .icon {
  color: #0A8F8E;
}
section.our-advantages .step::after {
  content: "→";
  /* → */
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #999;
}
section.our-advantages .step:last-child::after {
  content: "";
}
@media (max-width: 768px) {
  section.our-advantages .process-flow {
    flex-direction: column;
    align-items: center;
  }
  section.our-advantages .step {
    max-width: 100%;
  }
  section.our-advantages .step::after {
    content: "↓";
    /* ↓ arrow in mobile */
    right: 50%;
    top: auto;
    bottom: -28px;
    transform: translateX(50%);
  }
  section.our-advantages .step:last-child::after {
    content: "";
  }
}

section.icon-links {
  margin-bottom: 30px;
}
section.icon-links .grid-icon-box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 15px;
}
@media (max-width: 767px) {
  section.icon-links .grid-icon-box {
    grid-template-columns: repeat(3, 1fr);
  }
  section.icon-links .grid-icon-box {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  section.icon-links .grid-icon-box .icon-box:last-child {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
section.icon-links .icon-box {
  display: block;
  border-bottom: 6px solid #279995;
  text-align: center;
  background-color: #f5f5f5;
  border-radius: 20px;
  overflow: hidden;
}
section.icon-links .icon-box span {
  display: block;
}
section.icon-links .icon-box:nth-child(odd) {
  background-color: var(--color-3);
  border-bottom: 6px solid #054340;
}
section.icon-links .icon-box h2,
section.icon-links .icon-box h4 {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  margin: auto;
  line-height: 22px;
  padding: 10px;
  text-transform: uppercase;
}
section.icon-links .icon-box p {
  line-height: 22px;
  padding: 0 10px 15px;
}
section.icon-links .icon-box:nth-child(odd):hover, section.icon-links .icon-box:hover {
  background-color: var(--color-1);
}
section.icon-links .icon-box:nth-child(odd):hover h2,
section.icon-links .icon-box:nth-child(odd):hover h4, section.icon-links .icon-box:hover h2,
section.icon-links .icon-box:hover h4 {
  color: #fff;
}
section.icon-links .icon-box:nth-child(odd):hover p, section.icon-links .icon-box:hover p {
  color: rgb(249, 249, 194);
}
@media (max-width: 767px) {
  section.icon-links {
    padding: 20px;
  }
}

section.about {
  padding: 40px 0;
}
section.about .title {
  margin-bottom: 40px;
}
section.about .bg-1 {
  background-color: #FDD000;
}
section.about .bg-2 {
  background-color: #FAF5F1;
}
section.about .about-box-grid {
  margin-bottom: 20px;
  display: block;
}
section.about .about-box-grid .about-box {
  margin-bottom: 10px;
}
section.about .about-box-grid .about-box > div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.about .about-box-grid .about-box > div.content {
  background-color: var(--color-3);
  padding: 35px;
}
section.about .about-box-grid .about-box > div.content p {
  text-align: justify;
  margin-bottom: 20px;
}
section.about .about-box-grid .goody-box-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  margin-top: 30px;
}
section.about .about-box-grid .goody-box-grid .goody-box {
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 20px;
  border-radius: 5px;
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-gap: 20px;
}
section.about .about-box-grid .goody-box-grid .goody-box .content p {
  font-size: 18px;
  margin: 0;
}
section.about .about-box-grid .goody-box-grid .goody-box .content h5 {
  margin-bottom: 5px;
  font-size: 16px;
}
@media (max-width: 767px) {
  section.about .about-box-grid .goody-box-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) {
  section.about .about-box-grid .about-box {
    display: flex;
    grid-gap: 20px;
  }
  section.about .about-box-grid .about-box > div {
    flex-basis: 50%;
    padding: 0;
  }
  section.about .about-box-grid .about-box > div.right {
    display: flex;
  }
  section.about .about-box-grid .about-box > div.right img {
    margin: auto;
  }
  section.about .about-box-grid .about-box.inverse .left {
    order: 1;
  }
  section.about .about-box-grid .about-box.inverse .right {
    order: 2;
  }
}

section.steps {
  background-color: #F5F5F5;
  padding: 40px 0;
}
section.steps .grid-guiding {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 20px;
  margin-top: 30px;
}
section.steps .grid-guiding .box {
  position: relative;
  text-align: center;
  background-color: var(--color-1);
  border-radius: 10px;
  overflow: hidden;
}
section.steps .grid-guiding .box i {
  font-size: 28px;
  margin-bottom: 5px;
  margin-top: 5px;
}
section.steps .grid-guiding .box p {
  font-size: 17px;
  color: var(--color-3);
  padding: 10px;
  text-transform: uppercase;
}
section.steps .grid-guiding .box::before {
  content: "";
  position: absolute;
  right: 1px;
  top: 15%;
  width: 2px;
  height: 70%;
}
section.steps .grid-guiding .box:last-child::before {
  display: none;
}
@media (max-width: 767px) {
  section.steps .grid-guiding .box::before {
    width: 70%;
    height: 2px;
    top: auto;
    right: auto;
    left: 15%;
    bottom: -13px;
  }
}
@media (max-width: 767px) {
  section.steps .grid-guiding {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) and (max-width: 559px) {
  section.steps .grid-guiding {
    grid-template-columns: 1fr 1fr;
  }
}

section.vision-mission .grid-block-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
section.vision-mission .grid-block-1 .imgs img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.vision-mission .grid-block-1 .imgs-xs {
  display: none;
}
section.vision-mission .grid-block-1 .content {
  padding: 30px;
  display: flex;
}
section.vision-mission .grid-block-1 .content h2 {
  font-weight: bold;
  font-size: 28px;
  margin: 0 0 30px;
  position: relative;
}
section.vision-mission .grid-block-1 .content h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 2px;
  background-color: #31577e;
}
section.vision-mission .grid-block-1 .content p {
  font-size: 18px;
  line-height: 26px;
  font-weight: normal;
}
section.vision-mission .grid-block-1 .content .btn-1 {
  border: 2px solid #222;
  color: #222;
  padding: 6px 16px;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
}
section.vision-mission .grid-block-1 .content.dark {
  background-color: var(--color-1);
}
section.vision-mission .grid-block-1 .content.dark h2,
section.vision-mission .grid-block-1 .content.dark p {
  color: #fff;
}
section.vision-mission .grid-block-1 .content.dark .btn-1 {
  border-color: #fff;
  color: #fff;
}
@media (max-width: 767px) {
  section.vision-mission .grid-block-1 .content {
    padding: 20px;
    display: block;
  }
}
section.vision-mission .grid-block-1 .content .holder {
  margin: auto 20px;
}
@media (max-width: 767px) {
  section.vision-mission .grid-block-1 .content .holder {
    margin: 0;
  }
}
section.vision-mission .grid-block-1 .visible-xs {
  display: none;
}
@media (max-width: 767px) {
  section.vision-mission .grid-block-1 {
    grid-template-columns: 1fr;
  }
  section.vision-mission .grid-block-1 .xs-hidden {
    display: none;
  }
  section.vision-mission .grid-block-1 .visible-xs {
    display: block;
  }
  section.vision-mission .grid-block-1 .imgs-xs {
    display: block;
  }
}
@media (max-width: 767px) {
  section.vision-mission {
    padding: 20px;
  }
}

section.winnings {
  padding: 20px;
  background-color: #f5f5f5;
}
section.winnings .winning-holder {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}
section.winnings .winning-holder .imgs {
  text-align: center;
}
section.winnings .winning-holder .imgs img {
  width: 300px;
  height: 300px;
  border-radius: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #eee;
}
section.winnings .winning-holder .awards {
  text-align: center;
  margin: 20px 0;
}
section.winnings .winning-holder .awards img {
  display: inline-block;
  width: 100px;
  margin-right: 10px;
}
section.winnings .winning-holder h2 {
  font-weight: bold;
  text-transform: uppercase;
  color: #555;
  font-size: 26px;
}
section.winnings .winning-holder p {
  font-size: 16px;
}

section.faq {
  padding: 40px 20px;
  background-color: #eee;
}
section.faq .container {
  max-width: 850px;
}
section.faq .container .accordion-1 .accordion-item {
  border: none;
  border-radius: 20px !important;
  overflow: hidden;
  margin-bottom: 10px;
}
section.faq .container .accordion-1 .accordion-item button {
  background: var(--color-3);
  outline: none;
  position: relative;
  color: var(--color-2);
  line-height: 30px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  box-shadow: none;
  border-radius: 20px 20px 0 0 !important;
  font-size: 18px;
  color: #000;
  padding-left: 55px;
  position: relative;
}
section.faq .container .accordion-1 .accordion-item button span {
  position: absolute;
  left: 22px;
  top: 17px;
  color: var(--color-2);
}
section.faq .container .accordion-1 .accordion-item .accordion-body {
  background: var(--color-2);
  border-radius: 0;
  color: #fff;
  padding: 30px;
  font-size: 16px;
}
section.faq .container .accordion-1 .accordion-item .accordion-body p {
  color: #fff;
}
section.faq .container .accordion-1 .accordion-item .accordion-button::after {
  position: absolute;
  right: 20px;
}
section.faq .container ul li {
  color: #fff;
}
section.faq .container ul li::before {
  color: #fff;
}

section.proven-expertise {
  padding: 40px 0;
}
section.proven-expertise .title {
  margin-bottom: 40px;
}
section.proven-expertise .bg-1 {
  background-color: #FDD000;
}
section.proven-expertise .bg-2 {
  background-color: #FAF5F1;
}
section.proven-expertise .provent-box-grid {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
}
section.proven-expertise .provent-box-grid .provent-box {
  margin-bottom: 10px;
}
section.proven-expertise .provent-box-grid .provent-box > div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.proven-expertise .provent-box-grid .provent-box > div.content {
  padding: 15px;
}
@media (min-width: 768px) {
  section.proven-expertise .provent-box-grid .about-box {
    display: flex;
    grid-gap: 20px;
  }
  section.proven-expertise .provent-box-grid .about-box > div {
    flex-basis: 50%;
    padding: 0;
  }
  section.proven-expertise .provent-box-grid .about-box > div.right {
    display: flex;
  }
  section.proven-expertise .provent-box-grid .about-box > div.right img {
    margin: auto;
  }
}

section.testimonial {
  padding: 30px 0px;
  background-color: #f5f5f5;
  margin-top: 10px;
}
section.testimonial.in-about-page {
  padding: 60px 20px;
}
section.testimonial .container {
  max-width: 1200px;
}
section.testimonial .title-1 h2 {
  font-size: 22px;
  margin-bottom: 20px;
}
section.testimonial .grid-testimonial {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
  margin-top: 20px;
}
section.testimonial .grid-testimonial .testimonial-box {
  cursor: pointer;
  color: #000;
  padding: 30px 20px 20px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  margin: 0;
}
section.testimonial .grid-testimonial .testimonial-box::before {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 90px;
  height: 90px;
  border-radius: 90px;
  background-color: #ddd;
}
section.testimonial .grid-testimonial .testimonial-box.active, section.testimonial .grid-testimonial .testimonial-box:hover {
  border-color: var(--color-2);
}
section.testimonial .grid-testimonial .testimonial-box.active::before, section.testimonial .grid-testimonial .testimonial-box:hover::before {
  background-color: var(--color-2);
}
section.testimonial .grid-testimonial .testimonial-box .video h6 {
  font-size: 16px;
  margin: 0;
  font-weight: normal;
  font-family: var(--font-2);
  letter-spacing: 1.5px;
}
section.testimonial .grid-testimonial .testimonial-box .video p {
  font-size: 15px;
}
section.testimonial .grid-testimonial .testimonial-box .small {
  display: inline-block;
  margin-top: 10px;
}
section.testimonial .grid-testimonial .testimonial-box .small b {
  margin: auto 0;
  color: var(--color-2);
  padding: 0;
  font-weight: bold;
}
section.testimonial .grid-testimonial .testimonial-box span.play {
  display: inline-block;
  margin-top: 10px;
  color: var(--color-2);
  display: inline-block;
  line-height: 30px;
}
@media (max-width: 991px) {
  section.testimonial .grid-testimonial {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  section.testimonial .grid-testimonial {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991px) and (max-width: 767px) and (max-width: 559px) {
  section.testimonial .grid-testimonial {
    grid-template-columns: 1fr;
  }
}
section.testimonial .testimonial-box {
  background-color: #f5f5f5;
  padding: 35px 20px;
  cursor: grabbing;
  border-radius: 10px;
  margin-top: 20px;
}
section.testimonial .testimonial-box figure {
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-gap: 10px;
  margin: 0;
}
section.testimonial .testimonial-box figure img {
  --v: 60px;
  width: var(--v);
  height: var(--v);
  border-radius: var(--v);
  -o-object-fit: cover;
     object-fit: cover;
  border: 5px solid #fff;
  position: relative;
  top: -10px;
}
section.testimonial .testimonial-box figure h4 {
  font-size: 15px;
  font-weight: bold;
  margin: 0 0 5px;
}
section.testimonial .testimonial-box figure p {
  margin: 0;
  font-size: 13px;
  color: #444;
}
section.testimonial .testimonial-box figure p.tiny {
  font-size: 13px;
}
section.testimonial .testimonial-box .caption {
  padding: 0 15px;
}
section.testimonial .testimonial-box .caption p {
  font-size: 14px;
  color: var(--textColor);
  margin: 0;
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}
section.testimonial .testimonial-box .caption a {
  display: none;
  width: 100%;
  border-radius: 4px;
}
section.testimonial .testimonial-box:hover h3 {
  color: var(--color-3);
}
section.testimonial .testimonial-box:hover a {
  background-color: var(--color-3);
}
section.testimonial .owl-item.center .testimonial-box {
  background-color: var(--color-2);
  margin-top: 0px;
}
section.testimonial .owl-item.center .testimonial-box p {
  color: #fff;
}
section.testimonial .owl-item.center .testimonial-box .caption p {
  display: block;
}
section.testimonial .owl-item.center .testimonial-box h4 {
  color: var(--color-3);
}

section.simple-steps .container {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.03);
}
section.simple-steps .btn {
  background: linear-gradient(90deg, #06b6d4, #06d6a0);
  border: none;
  padding: 10px 16px;
  border-radius: 12px;
  color: #022;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.12);
}
section.simple-steps .btn.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #9aa4b2;
  padding: 9px 14px;
  border-radius: 10px;
}
section.simple-steps .grid {
  display: grid;
  grid-template-columns: 1fr 420px;
}
section.simple-steps .card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0.008));
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 24px;
  border-radius: 16px;
}
section.simple-steps .hero {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0px;
}
section.simple-steps .hero h2 {
  margin: 0;
  font-size: 26px;
}
section.simple-steps .hero p {
  margin: 0;
  color: #9aa4b2;
}
section.simple-steps .steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}
section.simple-steps .step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.02);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  background-color: #f4f0f0;
}
section.simple-steps .step:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.6);
}
section.simple-steps .step .icon {
  min-width: 46px;
  height: 46px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0ea5a4, #34d399);
  color: #022;
  font-weight: 700;
}
section.simple-steps .step h3 {
  margin: 0;
  font-size: 15px;
}
section.simple-steps .step p {
  margin: 6px 0 0;
  color: #333;
  font-size: 14px;
}
section.simple-steps .timeline {
  margin-top: 20px;
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent);
  border: 1px solid rgba(255, 255, 255, 0.02);
}
section.simple-steps .timeline-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.02);
}
section.simple-steps .timeline-item:last-child {
  border-bottom: 0;
}
section.simple-steps .timeline-item .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(90deg, #06b6d4, #06d6a0);
  box-shadow: 0 6px 16px rgba(6, 182, 212, 0.12);
}
section.simple-steps .timeline-item strong {
  display: block;
}
section.simple-steps .panel {
  position: sticky;
  top: 36px;
}
section.simple-steps .panel .summary {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section.simple-steps .kpi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.02);
}
section.simple-steps .kpi h4 {
  margin: 0;
}
section.simple-steps .price {
  font-size: 18px;
  font-weight: 800;
  color: #06d6a0;
}
section.simple-steps .contact {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section.simple-steps .contact input,
section.simple-steps .contact select {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 10px;
  border-radius: 8px;
  color: white;
}
section.simple-steps .contact .submit {
  margin-top: 8px;
}
section.simple-steps .muted {
  color: #9aa4b2;
}
@media (max-width: 980px) {
  section.simple-steps .grid {
    grid-template-columns: 1fr;
  }
  section.simple-steps .steps {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 980px) and (max-width: 767px) {
  section.simple-steps .steps {
    display: block;
  }
  section.simple-steps .steps .step {
    display: block;
    margin-bottom: 10px !important;
  }
}
@media (max-width: 980px) {
  section.simple-steps .panel {
    position: static;
  }
}

/* MOUNT SECTION */
.mounts-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 16px 80px;
}

.mounts-header {
  text-align: center;
  margin-bottom: 40px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(37, 99, 235, 0.09);
  color: #1d4ed8;
}

.mounts-header h1 {
  margin: 14px 0 10px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  color: #111827;
}

.mounts-header h1 span {
  color: var(--color-1);
}

.mounts-subtitle {
  max-width: 780px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

/* Layout for cards */
.mounts-grid {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

@media (max-width: 900px) {
  .mounts-grid {
    grid-template-columns: 1fr;
  }
}
.mount-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 18px 20px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(148, 163, 184, 0.16);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mount-card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 4px;
}

.mount-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.mount-title-wrap {
  flex: 1;
}

.mount-label {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 2px;
}

.mount-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 0;
  color: #111827;
  text-transform: uppercase;
}

.mount-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #000000;
  /* black paragraph text */
  margin: 0 0 6px;
}

/* Color accents per card */
.mount-rcc .mount-icon {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}

.mount-ground .mount-icon {
  background: rgba(249, 115, 22, 0.12);
  color: #ea580c;
}

.mount-sheet .mount-icon {
  background: rgba(14, 165, 233, 0.12);
  color: #0284c7;
}

.mount-carport .mount-icon {
  background: rgba(168, 85, 247, 0.12);
  color: #7c3aed;
}

/* Subtypes inside RCC */
.subtype-list {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px dashed #e5e7eb;
  padding-top: 10px;
}

.subtype-item {
  padding: 10px 10px 10px 12px;
  border-radius: 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
}
.subtype-item h6 {
  font-weight: normal;
  color: var(--color-1);
  letter-spacing: normal;
  text-transform: capitalize;
}

.subtype-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #111827;
}

.subtype-meta {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: #000000;
  /* black text */
}

.subtype-meta strong {
  font-weight: 600;
}

.mount-list {
  margin: 6px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: #000000;
}

.mount-list li {
  margin-bottom: 10px;
}

.mount-tagline {
  margin-top: 18px;
  font-size: 12px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mount-tagline-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

/* SYSTEMS PAGE */
.systems-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 16px 40px;
}

.systems-header {
  text-align: center;
  margin-bottom: 40px;
}

.systems-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(22, 163, 74, 0.1);
  color: #166534;
}

.systems-header h1 {
  margin: 14px 0 10px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  color: #111827;
}

.systems-header h1 span {
  color: #15803d;
}

.systems-subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

/* Cards Layout */
.systems-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

@media (max-width: 1024px) {
  .systems-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .systems-grid {
    grid-template-columns: 1fr;
  }
  .systems-section {
    padding: 36px 14px 52px;
  }
  .systems-header h1 {
    font-size: 24px;
  }
}
.system-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 18px 18px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(148, 163, 184, 0.16);
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.system-card-header {
  margin-bottom: 4px;
}
.system-card-header .system-title-wrap {
  margin-bottom: 10px;
}

.system-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.system-title-wrap {
  flex: 1;
}

.system-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #6b7280;
  margin-bottom: 2px;
}

.system-title {
  font-size: 19px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0;
}

.system-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #000000;
  /* black paragraph */
  margin: 0;
}

.system-note {
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.5;
  background: #fef3c7;
  color: #92400e;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.system-note i {
  margin-top: 2px;
  flex-shrink: 0;
}

/* Color accents per type */
.system-offgrid .system-icon {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}

.system-ongrid .system-icon {
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
}

.system-hybrid .system-icon {
  background: rgba(249, 115, 22, 0.12);
  color: #ea580c;
}

.systems-footer-note {
  margin-top: 20px;
  font-size: 12px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 6px;
}

.systems-footer-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

/* SOLAR SOLUTIONS PAGE */
.about-carousel #carouselExampleControls {
  max-width: 1220px;
  margin: 0 auto;
}

.steps-section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 60px 16px 80px;
}

.steps-header {
  text-align: center;
  margin-bottom: 40px;
}

.steps-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #166534;
}

.steps-header h1 {
  margin: 14px 0 10px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  color: #111827;
}

.steps-header h1 span {
  color: #15803d;
}

.steps-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

.steps-subtitle strong {
  color: #111827;
}

/* Steps Container */
.steps-flow-wrapper {
  margin-top: 40px;
  padding: 22px 20px;
  border-radius: 20px;
}

.steps-flow {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
}

.steps-flow::-webkit-scrollbar {
  height: 6px;
}

.steps-flow::-webkit-scrollbar-track {
  background: transparent;
}

.steps-flow::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.8);
  border-radius: 999px;
}

.step-card {
  position: relative;
  flex: 0 0 210px;
  max-width: 240px;
  min-height: 210px;
  background: #f9fafb;
  border-radius: 16px;
  padding: 18px 16px 18px;
  border: 2px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Colored borders per step */
.step-1 {
  border-color: #22c55e;
}

.step-2 {
  border-color: #0ea5e9;
}

.step-3 {
  border-color: #f97316;
}

.step-4 {
  border-color: #6366f1;
}

.step-5 {
  border-color: #a855f7;
}

/* Icon circle */
.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 18px;
}

.step-1 .step-icon {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}

.step-2 .step-icon {
  background: rgba(14, 165, 233, 0.12);
  color: #0284c7;
}

.step-3 .step-icon {
  background: rgba(249, 115, 22, 0.12);
  color: #ea580c;
}

.step-4 .step-icon {
  background: rgba(99, 102, 241, 0.12);
  color: #4f46e5;
}

.step-5 .step-icon {
  background: rgba(168, 85, 247, 0.12);
  color: #7c3aed;
}

.step-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
  margin-bottom: 4px;
}

.step-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #000000;
  /* black paragraph text as you requested */
}

/* Arrow between cards */
.step-card::after {
  content: "→";
  /* → */
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #9ca3af;
}

.step-card:last-child::after {
  content: "";
}

/* Footer helper note */
.steps-footer-note {
  margin-top: 18px;
  font-size: 12px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 6px;
}

.steps-footer-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

/* Responsive */
@media (max-width: 768px) {
  .steps-section {
    padding: 32px 14px 48px;
  }
  .steps-header h1 {
    font-size: 24px;
  }
  .steps-flow-wrapper {
    padding: 16px 14px 20px;
    border-radius: 16px;
  }
  .steps-flow {
    flex-direction: column;
    overflow-x: visible;
    gap: 18px;
  }
  .step-card {
    flex: 1 1 auto;
    max-width: 100%;
  }
  .step-card::after {
    content: "↓";
    /* ↓ */
    right: 50%;
    top: auto;
    bottom: -18px;
    transform: translateX(50%);
  }
  .step-card:last-child::after {
    content: "";
  }
}
/* Services Section */
/* Services Section */
.services-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #f8fafc 0%, #e2e8f0 100%);
}

.section-title {
  text-align: center;
  position: relative;
}

.section-title h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  color: var(--dark);
  display: inline-block;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
}

.title-description {
  max-width: 700px;
  margin: 30px auto 0;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
@media (max-width: 991px) {
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991px) and (max-width: 768px) {
  .service-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.service-card {
  background-color: #eee;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
}

.service-image-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.service-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image {
  transform: scale(1.05);
}

.service-number {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--color-1);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  z-index: 2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.service-header {
  padding: 25px 25px 15px;
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  background-color: var(--white);
}

.service-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1.8rem;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(30, 58, 138, 0.2);
}

.service-header h3 {
  margin-bottom: 5px;
  font-size: 1.5rem;
  color: var(--dark);
  line-height: 1.3;
}

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

.service-content p {
  margin-bottom: 20px;
  color: #555;
}

.service-features {
  list-style: none;
  margin: 15px 0 20px;
  flex-grow: 1;
}

.service-features li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: flex-start;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li i {
  color: var(--success);
  margin-right: 12px;
  margin-top: 3px;
  font-size: 1.1rem;
}

.service-cta {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
  margin-top: auto;
  border: 2px solid var(--secondary);
}

.service-cta:hover {
  background-color: transparent;
  color: var(--secondary);
}

/* SERVICES PAGE */
section.process-bottom .process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  section.process-bottom .process-grid {
    grid-template-columns: 1fr;
  }
}
section.process-bottom .process-grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.process-bottom .process-grid .content {
  display: flex;
  padding: 0px 40px;
  background-color: var(--color-3);
  text-align: left;
}
@media (max-width: 767px) {
  section.process-bottom .process-grid .content {
    padding: 30px;
  }
}
section.process-bottom .process-grid .content .auto {
  margin: auto;
}
section.process-bottom .process-grid .content h3 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}
section.process-bottom .process-grid .content p {
  font-size: 17px;
  line-height: 26px;
}
section.process-bottom .process-grid .content p + p,
section.process-bottom .process-grid .content p + ul {
  margin-top: 15px;
}

section.features {
  background-color: var(--liteColor);
  padding: 30px 10px;
}
section.features .title-area {
  max-width: 750px;
  margin: 0 auto;
}
section.features .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
section.features .feature-grid .feature-box {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
section.features .feature-grid .feature-box .overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(0deg, #222222 0%, rgba(34, 34, 34, 0) 100%);
  display: flex;
  text-align: center;
  z-index: 10;
  pointer-events: none;
  align-items: flex-end;
}
section.features .feature-grid .feature-box .overlay .holder {
  color: #fff;
  padding-bottom: 30px;
  width: 100%;
}
section.features .feature-grid .feature-box .overlay .holder h4 {
  font-weight: normal;
  font-size: 19px;
  color: #eee;
}
section.features .feature-grid .feature-box .overlay .holder span {
  text-transform: uppercase;
  font-weight: bold;
  display: block;
  margin-top: 20px;
  font-size: 16px;
}
section.features .feature-grid .feature-box .imgs {
  width: 100%;
  height: 100%;
}
section.features .feature-grid .feature-box .imgs img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.6s ease;
}
section.features .feature-grid .feature-box:hover .imgs img {
  transform: scale(1.1);
}
section.features .feature-grid .feature-box:hover span {
  color: var(--color-3);
}
@media (max-width: 991px) {
  section.features .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  section.features .feature-grid {
    display: flex;
    overflow: hidden;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px;
    grid-gap: 10px;
    margin: 0 0 5px;
  }
  section.features .feature-grid .feature-box {
    flex: 0 0 auto;
    width: 300px;
    max-width: 85%;
  }
}
@media (max-width: 767px) {
  section.features {
    padding: 10px;
  }
}

/* PRODUCT DETAILS PAGE OR PRODUCT PAGE */
.product-table tr td {
  padding: 5px;
  font-size: 13px;
}
.product-table tr td:last-child {
  width: 100px;
}

section.product-details {
  padding: 20px 0;
}
section.product-details .product-detail-holder {
  max-width: 900px;
  margin: auto;
}
section.product-details .product-detail-holder .details {
  margin-top: 10px;
}
section.product-details ol.grid-table {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
}
@media (max-width: 767px) {
  section.product-details ol.grid-table {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 559px) {
  section.product-details ol.grid-table {
    grid-template-columns: repeat(2, 1fr);
  }
}
section.product-details ol.grid-table li {
  padding: 10px;
  border: 1px dashed #bbb;
  text-transform: uppercase;
  text-align: left;
}

/* SHOPPING PAGE */
section.products .shopping-grid .product-box-grid {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 767px) {
  section.products .shopping-grid .product-box-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) and (max-width: 559px) {
  section.products .shopping-grid .product-box-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 991px) {
  section.products .shopping-grid {
    grid-template-columns: 1fr;
  }
}

/* ACHIEVEMENTS PAGE */
section.achievements {
  padding: 20px 0 10px;
}
section.achievements .grid-about-common {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
section.achievements .grid-about-common h4 {
  color: #222;
  margin: 0 0 0px;
  font-weight: bold;
  font-size: 20px;
}
section.achievements .grid-about-common .holder {
  background-color: var(--color-3);
  padding: 20px 30px;
  position: relative;
  border-left: 1px solid var(--darkColor);
}
section.achievements .grid-about-common .holder.no-border {
  border: none;
  border-radius: 6px 0 0 6px;
  background-color: transparent;
}
section.achievements .grid-about-common .holder.no-border::before {
  display: none;
}
section.achievements .grid-about-common .holder.r-arrow {
  border-left: none;
  border-right: 1px solid var(--darkColor);
}
@media (min-width: 992px) {
  section.achievements .grid-about-common .holder::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 25px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid var(--darkColor);
  }
  section.achievements .grid-about-common .holder.r-arrow::before {
    right: -15px;
    left: auto;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid var(--darkColor);
    border-right: none;
  }
}
@media (max-width: 991px) {
  section.achievements .grid-about-common .holder {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--darkColor);
  }
  section.achievements .grid-about-common .holder.r-arrow {
    border-right: none;
    border-top: 1px solid var(--darkColor);
  }
  section.achievements .grid-about-common .holder::before {
    content: "";
    position: absolute;
    left: 50px;
    top: -15px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid var(--darkColor);
  }
}
section.achievements .grid-about-common .inner {
  display: grid;
  grid-template-columns: 225px 1fr;
  margin-bottom: 20px;
}
section.achievements .grid-about-common .inner p {
  font-size: 15px;
  color: #222;
}
@media (max-width: 991px) {
  section.achievements .grid-about-common .inner {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  section.achievements {
    padding: 0 0 10px;
  }
}

/* BLOG PAGE */
section.blog {
  padding: 20px 0;
}
section.blog .grid-blog-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
@media (max-width: 991px) {
  section.blog .grid-blog-box {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  section.blog .grid-blog-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 559px) {
  section.blog .grid-blog-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
section.blog .grid-blog-box .blog-box {
  position: relative;
  height: 100%;
  background-color: var(--color-3);
  overflow: hidden;
  display: block;
}
section.blog .grid-blog-box .blog-box .img {
  overflow: hidden;
}
section.blog .grid-blog-box .blog-box .img img {
  transition: 0.6s ease;
  width: 100%;
}
section.blog .grid-blog-box .blog-box .content {
  padding: 20px;
  color: #555;
}
section.blog .grid-blog-box .blog-box .content h4 {
  font-size: 18px;
  color: #222;
  font-weight: bold;
  margin-bottom: 5px;
}
section.blog .grid-blog-box .blog-box .content p {
  font-size: 14px;
  margin-bottom: 10px;
}
section.blog .grid-blog-box .blog-box .btn-1 {
  padding: 10px 20px;
  border-radius: 5px;
  width: 100%;
}
section.blog .grid-blog-box .blog-box:hover h4 {
  color: var(--color-2);
}
section.blog .grid-blog-box .blog-box:hover .btn-1 {
  background: var(--color-2);
  color: var(--liteColor);
}
section.blog .grid-blog-box .blog-box:hover img {
  transform: scale(1.1);
}

/* BLOG DETAIL PAGE */
.project-list {
  padding: 20px 0;
}
.project-list .grid-project-list {
  display: grid;
  grid-template-columns: auto 280px;
  grid-gap: 30px;
}
.project-list .grid-project-list .project-list-box {
  border-bottom: 1px dashed #aaa;
  padding-bottom: 20px;
  margin-bottom: 15px;
}
.project-list .grid-project-list .project-list-box:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.project-list .grid-project-list .project-list-box img {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 4px;
}
.project-list .grid-project-list .project-list-box p {
  margin-bottom: 5px;
  font-size: 16px;
}
.project-list .grid-project-list .project-list-box p.posted-on {
  font-size: 16px;
  font-weight: bold;
  color: #666;
}
.project-list .grid-project-list .project-list-box h3 a {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  display: block;
  margin-bottom: 10px;
}
.project-list .grid-project-list .project-list-box .btn-1 {
  font-size: 13px;
  padding: 7px 16px;
  font-weight: bold;
  border-radius: 4px;
  background: var(--color-1);
  color: #fff;
  margin-top: 5px;
}
.project-list .grid-project-list .widget-box {
  margin-bottom: 20px;
}
.project-list .grid-project-list .widget-box img {
  width: 100%;
}
.project-list .grid-project-list .widget-box .title-bordered {
  font-weight: bold;
  font-size: 18px;
  margin-top: 0;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
.project-list .grid-project-list .widget-box .title-bordered::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  background: var(--color-2);
  width: 60px;
  height: 2px;
}
.project-list .grid-project-list .widget-box.categories-box {
  padding: 30px;
  background: #fcfaf2;
}
.project-list .grid-project-list .widget-box.categories-box ul li {
  display: block;
  margin-bottom: 10px;
}
.project-list .grid-project-list .widget-box.categories-box ul li:last-child {
  margin-bottom: 0;
}
.project-list .grid-project-list .widget-box.categories-box ul li a {
  position: relative;
  display: block;
  padding-right: 15px;
  font-size: 14px;
  font-weight: bold;
  color: #535353;
}
.project-list .grid-project-list .widget-box.categories-box ul li a:hover {
  color: #222;
}
.project-list .grid-project-list .widget-box.categories-box ul li a span {
  position: absolute;
  right: 0;
  top: 0;
  color: #888;
}
.project-list .grid-project-list .widget-box .recent-post-box {
  display: grid;
  grid-template-columns: 90px auto;
  grid-gap: 10px;
  margin-bottom: 10px;
}
.project-list .grid-project-list .widget-box .recent-post-box img {
  width: 100%;
  border-radius: 4px;
}
.project-list .grid-project-list .widget-box .recent-post-box h5 {
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
}
.project-list .grid-project-list .widget-box .recent-post-box h5 a {
  color: #222;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
}
.project-list .grid-project-list .widget-box .recent-post-box p {
  line-height: 19px;
  font-size: 14px;
  margin-top: 3px;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}
.project-list .grid-project-list .widget-box .recent-post-box a.btn {
  color: var(--color-1);
  font-weight: bold;
  font-size: 14px;
}
.project-list .grid-project-list .widget-box.support-banner img {
  border-radius: 4px;
}
.project-list .grid-project-list .widget-box.gallery .inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}
.project-list .grid-project-list .widget-box.gallery .inner img {
  width: 100%;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .project-list .grid-project-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .project-list {
    padding: 10px;
  }
}

/* PRODUCTS PAGE */
.scroll-menu {
  position: sticky;
  top: 85px;
  padding: 10px 10px 0px;
  z-index: 10;
  background-color: #fff;
  margin: 0px 0 20px;
  text-align: center;
  border: none;
  display: block;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.scroll-menu::-webkit-scrollbar {
  display: none;
}
.scroll-menu li.nav-item.scroll-item {
  display: inline-block;
}
.scroll-menu .scroll-item > button,
.scroll-menu a {
  display: inline-block;
  padding: 5px 20px 4px;
  border-radius: 30px;
  background-color: var(--color-3);
  color: #000;
  margin-right: 2px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 10px;
  border: 2px solid #444;
}
.scroll-menu .scroll-item > button:hover, .scroll-menu .scroll-item > button.active,
.scroll-menu a:hover,
.scroll-menu a.active {
  background-color: var(--color-1);
  border-color: var(--color-1);
  color: #fff;
}
@media (max-width: 991px) {
  .scroll-menu {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    top: 70px;
  }
}
@media (max-width: 767px) {
  .scroll-menu {
    top: 56px;
  }
}

/* CONTACT PAGE */
/* ---------- CONTACT INFORMATION CARDS ---------- */
.contact-info-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.contact-info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 20px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  border-color: rgba(148, 163, 184, 0.3);
}

.contact-info-card:hover::before {
  opacity: 1;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-icon {
  transform: scale(1.05);
}

.contact-icon.address {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.05));
  color: #2563eb;
}

.contact-info-card.address::before {
  background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.contact-icon.phone {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(22, 163, 74, 0.05));
  color: #16a34a;
}

.contact-info-card.phone::before {
  background: linear-gradient(90deg, #16a34a, #22c55e);
}

.contact-icon.email {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.05));
  color: #f97316;
}

.contact-info-card.email::before {
  background: linear-gradient(90deg, #f97316, #fb923c);
}

.contact-info-text h3 {
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 600;
  color: #1f2937;
  letter-spacing: -0.01em;
}

.contact-info-text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  font-weight: 400;
}

/* ---------- CONTACT LAYOUT ---------- */
.contact-bottom {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr;
  gap: 32px;
  margin-top: 10px;
}

/* Map section */
.contact-map-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: all 0.3s ease;
}

.contact-map-wrapper:hover {
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
}

.contact-map-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 12px;
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-map-title::before {
  content: "📍";
  font-size: 14px;
}

.contact-map {
  width: 100%;
  height: calc(100% - 50px);
  border-radius: 14px;
  border: 0;
  min-height: 280px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Form section */
.contact-form-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 24px 32px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
}

.contact-form-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #111827;
  letter-spacing: -0.02em;
}

.contact-form-sub {
  font-size: 14px;
  margin: 0 0 24px;
  color: #6b7280;
  line-height: 1.5;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 8px;
}

.form-group {
  margin-bottom: 16px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #374151;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.form-control,
textarea.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1.5px solid #c5cad3;
  font-size: 15px;
  outline: none;
  font-family: inherit;
  color: #111827;
  background: #ffffff;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.5;
}

.form-control:hover,
textarea.form-control:hover {
  border-color: #9ca3af;
  background: #fafafa;
}

.form-control:focus,
textarea.form-control:focus {
  border-color: #15803d;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(21, 128, 61, 0.1);
  transform: translateY(-1px);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

/* Form validation states */
.form-control:valid:not(:focus):not(:-moz-placeholder) {
  border-color: #10b981;
}
.form-control:valid:not(:focus):not(:placeholder-shown) {
  border-color: #10b981;
}

.form-actions {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

/* Button refinement */
.btn-1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #15803d, #16a34a);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-1::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-1:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.35);
  background: linear-gradient(135deg, #166534, #15803d);
}

.btn-1:hover::after {
  left: 100%;
}

.btn-1:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.3);
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 992px) {
  .contact-info-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }
  .contact-bottom {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .contact-info-card {
    padding: 20px;
  }
  .contact-map-wrapper,
  .contact-form-wrapper {
    padding: 20px;
  }
  .contact-form-title {
    font-size: 18px;
  }
  .btn-1 {
    width: 100%;
    padding: 14px 24px;
  }
}
/* Loading state for form submission */
.btn-1.loading {
  pointer-events: none;
  opacity: 0.8;
}

.btn-1.loading::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-right: 10px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* Success/Error message styles */
.form-message {
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  display: none;
}

.form-message.success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  display: block;
}

.form-message.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
  display: block;
}

/* Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* Popup Box */
.modal-box {
  background: #fff;
  width: 90%;
  max-width: 500px;
  max-height: 500px;
  overflow-y: auto;
  padding: 25px;
  border-radius: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s ease;
}

/* Popup Title */
.modal-box h2 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #222;
  font-size: 16px !important;
  font-weight: bold;
}

/* Popup text */
.modal-box p,
.modal-box ul {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Close button */
.close-btn {
  margin-top: 20px;
  padding: 10px 18px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  float: right;
}

@keyframes fadeIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.link-btn {
  font-weight: bold;
  color: var(--color-1);
  border: none;
  background-color: transparent;
  cursor: pointer;
}

/* MEDIA QURIES */
.visible-sm-xs,
.visible-xs {
  display: none !important;
}

@media (max-width: 991px) {
  .hidden-sm-xs {
    display: none !important;
  }
  .visible-sm-xs {
    display: block !important;
  }
  .container {
    max-width: 96%;
  }
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  .hidden-xs {
    display: none !important;
  }
  .container {
    max-width: 96%;
  }
}
@media (max-width: 559px) {
  .container {
    max-width: 100%;
  }
}/*# sourceMappingURL=pradhiv.css.map */