html {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: inherit;
}

/**Whatsapp button ***/
.btn-whatsapp-pulse {
	background: rgb(113, 75, 103);
	color: white;
	position: fixed;
	bottom: 30px;
	right: 30px;
	font-size: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 25px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(113, 75, 103, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(113, 75, 103, 0);
	}
}

.btn-whatsapp-pulse-border {
	bottom: 30px;
	right: 30px;
	animation-play-state: paused;

}

.btn-whatsapp-pulse-border::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	padding: 25px;
	border: 5px solid rgba(113, 75, 103, 0.5);
	opacity: 0.75;
	animation-name: pulse-border;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse-border {
	0% {
		padding: 25px;
		opacity: 0.75;
	}
	75% {
		padding: 50px;
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

/** Scroll Top Button **/
#myBtn {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 20px;
  left: 20px;    /* Changed to right for standard UX, but left works too */
  z-index: 9999;
  border: none;
  outline: none;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  width: 50px;    /* Fixed width/height for a perfect circle */
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;  /* Centers the icon */
  align-items: center;
  justify-content: center;
}

#myBtn:hover {
  background-color: #714b67;
  color: #fff;
  transform: translateY(-5px); /* Subtle lift effect */
}



.cursor-dot {
  width: 8px;
  height: 8px;
  background: #111;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, background 0.2s ease;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease,
              border-color 0.3s ease, background 0.3s ease,
              transform 0.08s ease;
}

/* Hover state */
.cursor-ring.is-hovering {
  width: 56px;
  height: 56px;
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.15);
}

.cursor-dot.is-hovering {
  transform: translate(-50%, -50%) scale(0);
}

@media (max-width: 991.98px) {
    .cursor-dot, .cursor-ring {
        display: none;
    }
}

body {
    background-color: #F7F7F7 !important;
}

/**NAVBAR**/

.navbar{
    background-color: #FFFFFF;
}

.navbar-brand{
    padding: 0 !important;
}

.navbar-brand img {
    height: 3rem;
    width: auto;
  }


.navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    padding: 1rem 1rem 0 1rem;
    /*background: rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);*/
}

.navbar{
    border-radius: 0.75rem !important;
    padding: 0.5rem 0.75rem 0.5rem 0.75rem !important;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
}

.nav-link{
    color: #31373E !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    font-family: Plus Jakarta Sans, sans-serif;
}

/* ── Mega Dropdown trigger ───────────────────── */
.mega-dropdown {
  position: static !important;
}

/* ── Mega Menu panel ─────────────────────────── */
.dropdown-menu.mega-menu {
  position: absolute !important;
  top: 114% !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  min-width: 100% !important;
  border-radius: 0.75rem;
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 0 !important;
  margin: 0 !important;
}

/* ── Mega Menu layout ────────────────────────── */
.mega-menu-inner {
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: 280px;
    padding: 12px;
}

/* Left: image */
.mega-menu-image {
  width: 280px;
  min-width: 280px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
}

.mega-menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mega-menu-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: #fff;
  font-size: 1.5rem;
}

.mega-menu-img-caption-off{
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    color: #000000;
    font-size: 1.5rem;
}

/* Right: links */
.mega-menu-links {
  flex: 1;
  padding: 28px 32px;
  background: #fff;
  border-radius: 0.75rem;
}

.mega-menu-heading {
    font-family: DM Sans, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000000;
    margin-bottom: 16px;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.mega-menu-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}

.mega-menu-item:hover {
  background: #f5f5f5;
}

.mega-menu-item-title {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #111;
}

.mega-menu-item-desc {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.78rem;
    color: #888;
}

/* 3-column layout inside mega menu links */
.mega-menu-columns {
  display: flex;
  flex-direction: row;
  gap: 0;
  width: 100%;
  height: 100%;
}

.mega-menu-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Vertical divider between columns */
.mega-menu-divider {
  width: 1px;
  background: #f0f0f0;
  margin: 0 16px;
  flex-shrink: 0;
}

/* Override old grid — no longer needed */
.mega-menu-grid {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.btn.btn-col-offcanvas{
    border-radius: 0.75rem;
    background-color: #E8E8E8;
}

.btn.btn-col-offcanvas:hover {
    border-radius: 0.75rem;
    background-color: #E8E8E8;
}
.btn.btn-col-offcanvas:active {
    border-radius: 0.75rem !important;
    background-color: #E8E8E8 !important;
    border-color: #E8E8E8 !important;
}

.btn.request-demo-btn, .btn.request-demo-btn:hover{
    border-radius: 0.75rem;
    background-color: #1a2421;
    padding: 0.625rem 1.2rem;
    color: #ffffff;
}

.offcanvas.offcanvas-pc-view{
    border-radius: 0.75rem;
    padding: 1rem;
    margin: 1rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.nav-drop-heading{
    font-family: DM Sans, sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: left;
    margin-top: 1.25rem;
    margin-bottom: 1rem;
}

.mega-menu-image.mega-menu-subsec-2{
}

.mega-menu-item.horizontal-centered {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.mega-menu-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mega-menu-item:hover .feature-icon {
    transform: translateY(-3px);
    transition: transform 0.2s ease-out;
}

.feature-icon {
    color: #FFFFFF;
    width: 28px; height: 28px;
    transition: transform 0.2s ease-out;
}

.card.mega-menu-card{
    border: none;
}

/** scroller css **/

/* ── Outer wrapper: clips the height & adds
      a bottom fade so users know it scrolls ── */
.mega-menu-vscroll-wrap {
    position: relative;
    max-height: 380px;    /* adjust to your mega-menu height */
    overflow: hidden;
}

.mega-menu-vscroll-wrap::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 48px;
    background: linear-gradient(to bottom, transparent, #fff);
    pointer-events: none;
    z-index: 1;
}

/* ── Inner scroller ── */
.mega-menu-vscroll {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-height: 380px;    /* match wrapper */
    overflow-y: auto;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 40px; /* breathing room behind fade */
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, .5) transparent;
}

.mega-menu-vscroll::-webkit-scrollbar       { width: 3px; }
.mega-menu-vscroll::-webkit-scrollbar-track { background: transparent; }
.mega-menu-vscroll::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .15);
    border-radius: 2px;
}


/* ── BEM modifier on each item ──
   Adds snap + hover bg.
   Does NOT override .mega-menu-item or
   .horizontal-centered — fully additive.    ── */
.mega-menu-item.mega-menu-item--scroll {
    scroll-snap-align: start;
    border-radius: 8px;
    padding: 7px 10px;
    transition: background 0.15s ease;
}

.mega-menu-item.mega-menu-item--scroll:hover {
    background: rgba(0, 0, 0, 0.04);
}

/* Active/current page highlight (add .is-active via JS or Django template tag) */
.mega-menu-item.mega-menu-item--scroll.is-active {
    background: rgba(83, 74, 183, 0.08);
}


/**HEADER**/
/* ── Hero Section ────────────────────────────── */
.header {
    position: relative;
    min-height: 100vh;
    background: #111;
    overflow: hidden;
}
.header {
    position: sticky;
    top: 0;
    transition: margin 0.05s linear, border-radius 0.05s linear;
    will-change: margin, border-radius;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.55));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.hero-inner {
  max-width: 680px;
}

.hero-title {
    font-family: DM Sans, sans-serif;
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.5px;
    max-width: 46.875rem;
}

#typed-text {
  display: inline-block;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  opacity: 1;
  transform: translateY(0);
}

/* This class hides the text and moves it slightly for a smoother effect */
.fade-hidden {
  opacity: 0 !important;
  transform: translateY(10px) !important;
}

.hero-subtitle {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 46.875rem;
    line-height: 1.65;
    letter-spacing: -0.5px;
}

.btn.hero-btn-outline {
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn.hero-btn-outline:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.08);
}



.text-show-section {
    padding: 7.5rem 0;
    max-width: 70rem;
    margin: 0 auto;
    text-align: center;
}

.scroll-show-text {
    font-family: DM Sans, sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 500;
    line-height: 1.65;
    color: #111;
}

.scroll-show-text .word {
    color: #ddd;
    transition: color 0.3s ease;
    display: inline;
}

.scroll-show-text .word.lit {
    color: #111;
}

.about-us-section{
    padding: 7.5rem 0;
    background: #ffffff;
}

.img-fluid.about-us-img{
    border-radius: 0.75rem;
}

.about-inner {
  max-width: 50rem;
  margin: 0 auto;
}

.btn.btn-pill, .btn.btn-pill:hover, .btn.btn-pill:active{
    border-radius: 0.75rem;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.875rem;
    border: 1px solid rgba(108,	117,125, 0.25) !important;
    padding: 0.625rem 1.2rem;
    cursor: default;
}

.heading-1{
    font-family: DM Sans, sans-serif;
    font-size: 3rem;
    font-weight: 500;
    text-align: center;
    margin-top: 1.25rem;
    margin-bottom: 1rem;
}

.sub-heading-1{
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: #778186;
    margin: 0 auto;
    max-width : 43.75rem;
}

.btn.know-more-btn, .btn.know-more-btn:hover{
    border: 1px solid #191919;
    padding: 0.5rem 1rem;
    border-radius: 56px;
}

/* Stats grid */

.stat-card {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  height: 100%;
}
.stat-number {
    font-family: DM Sans, sans-serif;
    font-size: 2.6rem;
    font-weight: 500;
    color: #111;
    line-height: 1;
}

.stat-label {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.88rem;
    color: #555;
}

.stat-number.counted {
  animation: statPop 0.3s ease;
}

@keyframes statPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.section-2{
    padding: 5.5rem 0;
}

.section-3{
    padding: 5.5rem 0;
    background-color: #f4faf8;
}

.odoo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 12px;
    background-color: #714b67; /* Your base color */
    color: white;
    font-weight: 400;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    font-family: DM Sans, sans-serif;

    /* The Gradient Setup */
    background-image: linear-gradient(
        120deg,
        rgba(255,255,255, 0) 30%,
        rgba(255,255,255, 0.4) 50%,
        rgba(255,255,255, 0) 70%
    );
    background-size: 200% 100%;
    animation: shine 3s infinite linear;
}

/* The Animation Logic */
@keyframes shine {
    0% {
        background-position: 150% 0;
    }
    100% {
        background-position: -50% 0;
    }
}

.odoo-badge img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1); /* Ensures icon is white */
}

.odoo-heading{
    font-family: DM Sans, sans-serif;
    font-size: 3rem;
    letter-spacing: -0.5px;
    margin-top: 1.25rem;
    cursor: default;
}

.img-fluid.odoo-img{
    height: auto;
    width: 13rem;
}


.odoo-text{
    font-family: Plus Jakarta Sans, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
    color: #778186;
    margin-top: 1.25rem;
    cursor: default;
    letter-spacing: -0.5px;
}
.odoo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.odoo-tag {
    padding: 8px 18px;
    border: 1.5px solid rgba(113, 75, 103, 0.5);
    border-radius: 999px;
    font-family: DM Sans, sans-serif;
    font-size: 0.85rem;
    color: rgba(113, 75, 103, 1);
    font-weight: 500;
    background-color: rgba(113, 75, 103, 0.2);
}

.btn.odoo-cta, .btn.odoo-cta:hover, .btn.odoo-cta:active{
    background-color: #714b67;
    border-radius: 0.75rem;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
}

.btn.odoo-cta-header, .btn.odoo-cta-header:hover, .btn.odoo-cta-header:active{
    background-color: #191919;
    border-radius: 1rem;
    color: #ffffff;
    padding: 0.25rem 1rem;
    font-size: 0.85rem;
}

.img-thumbnail.grow-img{
    max-height: 4rem;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0px 4px 8px rgba(0,0,0,0.05));
}

/* ── Feature Cards ───────────────────────────── */
.feature-card {
    background: #EBEBEB;
    border-radius: 1rem;
    border: 1px solid rgba(0,0,0,0.2);
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0%;
    height: 0%;
    background: linear-gradient(160deg, rgba(113, 75, 103, 0.5), rgba(113, 75, 103,1));
    transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.feature-card:hover::before {
    width: 100%;
    height: 100%;
}

.feature-card:hover {
    border-color: #41C0B1;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: #714b67 ;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: rgba(255, 255, 255, 0.2);
}

.feature-icon img {
    width: 1.75rem;
    height: 1.75rem;
    filter: brightness(0) invert(1);
}

.feature-title {
    font-family: DM Sans, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 600;
    color: #000000;
    margin: 0;
    position: relative;
    letter-spacing: -0.5px;
}
.feature-card:hover .feature-title {
  color: #ffffff;
}

.feature-desc {
    font-size: 0.85rem;
    color: #778186;
    line-height: 1.6;
    margin: 0;
    position: relative;
    font-family: Plus Jakarta Sans, sans-serif;
}
.feature-card:hover .feature-desc {
  color: rgba(255, 255, 255, 0.85);
}


.content-section-1{
    margin-top: 4rem;
}


/* ── Product Cards ───────────────────────────── */
.card.product-card {
    position: relative;
    border: none;
    border-radius: 1rem;
    padding: 2.813rem;
    background-size: cover;
    background-position: center;
    background-color: #fff; /* The color it fills with on hover */
    overflow: hidden;
    z-index: 1;
    transition: box-shadow 0.3s ease;
}

/* Dark Gradient Overlay - visible by default, fades out on hover */
.card.product-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.85));
    z-index: -1;
    transition: opacity 0.4s ease;
}

.card.product-card:hover::after {
    opacity: 0; /* Removes the dark gradient */
}

/* Hide the background image on hover to show the white background-color */
.card.product-card:hover {
    background-image: none !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* ── Typography Transitions ── */

.product-title {
    font-family: DM Sans, sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff; /* White on the dark image */
    margin-top: 1.625rem;
    transition: color 0.3s ease;
}

.card.product-card:hover .product-title {
    color: #000000; /* Black on the white background */
}

.product-desc {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9); /* Light text for dark bg */
    line-height: 1.7;
    transition: color 0.3s ease;
}

.card.product-card:hover .product-desc {
    color: #778186; /* Grey text for white bg */
}

/* ── Tag and Link Adjustments ── */

.product-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-family: DM Sans, sans-serif;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.card.product-card:hover .product-tag {
    background: #eaf5f2;
    color: #1a9e84;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.card.product-card:hover .product-link {
    color: #111;
}

/** Module card **/

/* ── Module Cards ───────────────────────────── */
.card.module-card {
    position: relative;
    border: none;
    border-radius: 1rem;
    padding: 2rem 1.5rem; /* Slightly tighter padding for 5-col layout */
    background-size: cover;
    background-position: center;
    background-color: #fff;
    overflow: hidden;
    z-index: 1;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    aspect-ratio: 3 / 4;
}

/* Dark Gradient Overlay */
.card.module-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.9));
    z-index: -1;
    transition: opacity 0.4s ease;
}

.card.module-card:hover::after {
    opacity: 0;
}

.card.module-card:hover {
    background-image: none !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

/* ── Module Content ── */
.module-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: #1a9e84;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.module-icon img {
    width: 2rem;
    height: 2rem;
    filter: brightness(0) invert(1);
}

.module-title {
    font-family: DM Sans, sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: #ffffff;
    transition: color 0.3s ease;
}

.card.module-card:hover .module-title {
    color: #000000;
}

.module-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    transition: color 0.3s ease;
}

.card.module-card:hover .module-desc {
    color: #778186;
}

.module-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card.module-card:hover .module-link {
    color: #1a9e84;
}

/* ── Grid Logic: 5 in a row ── */
@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (max-width: 767.98px) {
    .card.module-card { aspect-ratio: 1 / 1; }
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite; /* Adjust time for speed */
}

/* Pause on hover so user can interact with the card */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

/* Existing marquee-content stays exactly as you provided */
.marquee-content {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
}
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}



.module-card-wrapper {
    padding: 0 10px; /* Space between cards */
}

.card.module-card-1 {
    width: 240px; /* Fixed width for scroller items */
    aspect-ratio: 3 / 4;
    position: relative;
    border: none;
    border-radius: 1rem;
    background-size: cover;
    background-position: center;
    background-color: #fff;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
    cursor: pointer;
}

/* Reuse your existing Dark Overlay and Hover Logic here */
.card.module-card-1::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.85));
    z-index: -1;
    transition: opacity 0.4s ease;
}

.card.module-card-1:hover::after { opacity: 0; }
.card.module-card-1:hover { background-image: none !important; }
.card.module-card-1:hover .module-title { color: #000; }

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Scrolls half-way (the duplicate set) */
}

/* Icon & Title Styles */
.module-card-1 .module-icon { width: 3.5rem; height: 3.5rem; background: #1a9e84; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.module-card-1 .module-icon img { width: 2rem; filter: brightness(0) invert(1); }
.module-card-1 .module-title { font-size: 1.1rem; font-weight: 600; color: #fff; white-space: normal; }
.module-card-1 .module-title { font-size: 1.1rem; font-weight: 600; color: #fff; white-space: normal; }

/* ── Services Accordion ──────────────────────── */
.accordion.services-accordion {
    border: none;
    margin-top: 4rem;
}

/* Remove Bootstrap's default borders and radius */
.accordion-item.service-item {
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.15) !important;
    position: relative;
    padding: 1.5rem 0.625rem;
}

/* Active split border — blue 50% + grey 50% */
.accordion-item.service-item:has(.accordion-button:not(.collapsed))::after {
    content: '';
    position: absolute;
    bottom: -1.5px;
    left: 0;
    width: 50%;
    height: 2px;
    background: #41C0B1;
    z-index: 1;
}

/* Button base */
.accordion-button.service-btn {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    font-size: 1.75rem !important;
    font-family: DM Sans, sans-serif;
    font-weight: 400 !important;
    color: #778186 !important;
    box-shadow: none !important;
    transition: color 0.3s ease, font-weight 0.3s ease !important;
    padding: 0 !important;
}

/* Active button */
.accordion-button.service-btn:not(.collapsed) {
    font-weight: 500 !important;
    color: #000000 !important;
    padding: 0 0 1.25rem 0 !important;
}

/* Remove Bootstrap's default arrow */
.accordion-button.service-btn::after {
    display: none !important;
}

/* Body */
.accordion-body.service-body {
    padding: 0 !important;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    color: #778186;
    line-height: 1.7;
    background: transparent !important;
    font-weight: 500 !important;
}

.lottie-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;  /* keeps it square and responsive */
}

.lottie-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.lottie-player.active {
  opacity: 1;
  pointer-events: auto;
}

/* ── Testimonials Section ────────────────────── */

/* Slider */
.testimonials-slider {
    overflow: hidden;
    width: 100%;
    padding: 2rem 2rem;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
    align-items: stretch;
}

.testimonial-slide {
    min-width: calc((100% - 48px) / 3);
    display: flex;
}

/* Card */
.card.testimonial-card {
    border: 1px solid rgba(0,0,0,0);
    border-radius: 1rem;
    background: #FFFFFF;
    padding: 8px;
    transition: box-shadow 0.25s ease;
    width: 100%;
}

.testimonial-card:hover {
    box-shadow: 0 12px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-card .card-body {
  padding: 1.5rem;
  gap: 20px;
}

/* Stars */
.testimonial-stars {
  color: #1a9e84;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

/* Text */
.testimonial-text {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    color: #778186;
    line-height: 1.75;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Author */
.testimonial-author {
    margin-top: 20px;
}

.author-name {
    font-size: 1rem;
    font-family: DM Sans, sans-serif;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.author-role {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.8rem;
    color: #778186;
    margin: 0;
}

.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}

/* Controls */
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  color: #111;
}

.testimonial-btn:hover {
  border-color: #111;
  background: #111;
  color: #fff;
}

/* Dots */
.testimonial-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}

.t-dot.active {
  background: #111;
  width: 20px;
  border-radius: 999px;
}

/* Responsive slides */
@media (max-width: 768px) {
  .testimonial-slide {
    min-width: calc((100% - 24px) / 2);
  }
}

@media (max-width: 480px) {
  .testimonial-slide {
    min-width: 100%;
  }
}

/* Services Section ------------------------- */

/* ── Service card ── */
.card.service-card {
    position: relative;
    border-radius: 1rem; /* Updated to 1rem */
    overflow: hidden;
    aspect-ratio: 3 / 4;
    cursor: pointer;
    border: none;
    background: #2c2c2a;
}

/* Background image */
.card.service-card .card-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    z-index: 0;
}

.card.service-card:hover .card-bg-img {
    transform: scale(1.06);
}

/* Gradient overlay */
.card.service-card .card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.25) 55%,
        transparent 100%
    );
    z-index: 1;
}

/* Arrow top-right */
.card.service-card .card-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    border: 0.5px solid rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.3s ease;
}

.card.service-card:hover .card-arrow {
    background: #41C0B1; /* Using your brand color for the hover state */
}

.card.service-card .card-arrow svg {
    width: 13px;
    height: 13px;
    stroke: white;
    fill: none;
}

/* Title shown by default */
.card.service-card .card-title-static {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    z-index: 2;
    font-size: 1.2rem;
    font-family: DM Sans, sans-serif;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Description panel slides up */
.card.service-card .card-desc-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: linear-gradient(
          to bottom,
          rgba(30, 30, 28, 0.95),
          rgba(14, 14, 12, 0.95)
        );
    z-index: 3;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-radius: 0 0 1rem 1rem; /* Matching the 1rem radius */
}

.card.service-card .card-desc-panel .desc-title {
    font-family: DM Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #FFFFFF; /* Brand color */
    margin: 0 0 8px;
}

.card.service-card .card-desc-panel .desc-text {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.85rem;
    color: #aaa89f;
    line-height: 1.6;
    margin: 0;
}

/* Hover state */
.card.service-card:hover .card-desc-panel { transform: translateY(0); }
.card.service-card:hover .card-title-static { opacity: 0; transform: translateY(-10px); }

/* Responsive */
@media (max-width: 767.98px) {
    .card.service-card { aspect-ratio: 1 / 1; }
}

/* ── 5-Column Logic ── */
@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 20% !important;
        max-width: 20% !important;
    }
}

@media (max-width: 767.98px) {
    .card.service-card { aspect-ratio: 1 / 1; }
}



/* ── FAQ Accordion ───────────────────────────── */
.faq-accordion {
  border: none;
}

.accordion-item.faq-item {
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12) !important;
}

.accordion-button.faq-btn {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 24px 0 !important;
    font-family: DM Sans, sans-serif;
    font-size: 1.5rem !important;
    font-weight: 500 !important;
    color: #111 !important;
    letter-spacing: -0.5px;

    /* Push icon to the right */
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

/* Remove Bootstrap's default chevron */
.accordion-button.faq-btn::after {
  display: none !important;
}

/* Custom + icon */
.accordion-button.faq-btn .faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* Rotate to × when open */
.accordion-button.faq-btn:not(.collapsed) .faq-icon {
  transform: rotate(45deg);
}

.accordion-body.faq-body {
    padding: 0 0 24px 0 !important;
    font-size: 1rem !important;
    font-family: Plus Jakarta Sans, sans-serif;
    color: #778186 !important;
    line-height: 1.75 !important;
    background: transparent !important;
    letter-spacing: -0.5px;
}

/* Blog Card */
.card.blog-card {
    border: none !important;
    border-radius: 1.25rem !important;
    background: #fff;
    overflow: hidden;
    transition: box-shadow 0.25s ease;
}

.card.blog-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Image */
.blog-card-img {
    width: 100%;
    height: 16.25rem;
    object-fit: cover;
    display: block;
    border-radius: 0 !important;
}

/* Body */
.blog-card-body {
    padding: 1.5rem !important;
    gap: 1rem;
}

/* Title */
.blog-title {
    font-family: DM Sans, sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    letter-spacing: -1.5px;
}

/* Excerpt */
.blog-excerpt {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    color: #778186;
    line-height: 1.65;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Read more */
.blog-read-more {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #111;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    transition: gap 0.2s ease;
}

.blog-read-more:hover {
    gap: 10px;
    color: #111;
}

.blog-read-more::after {
    content: '→';
}



/* ── Footer ──────────────────────────────────── */
.site-footer {
    background: #111;
    border-radius: 1rem;
    margin: 1rem;
}

.footer-inner {
    padding: 3rem !important;
}

/* Brand */
.footer-logo img {
    margin-bottom: 16px;
    display: block;
}

.footer-desc {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1.125rem;
    color: #F7F7F7;
    line-height: 1.5;
    max-width: 25rem;
    margin: 0;
}

/* Links */
.footer-heading {
    font-family: DM Sans, sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -1.2px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

/* Divider */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.5);
    margin: 32px 0;
}

/* Bottom */
.footer-copy {
    font-family: DM Sans, sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Social buttons */
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* Mobile padding */
@media (max-width: 768px) {
  .footer-inner {
    padding: 40px 24px 28px;
  }

  .footer-brand-col {
    margin-bottom: 32px;
  }
}



/* ── Marquee Section ─────────────────────────── */
.marquee-section {
  padding: 60px 0;
  background: #f5f5f5;
  overflow: hidden;
}

.marquee-heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 36px;
}

/* Wrapper clips the scrolling track */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Fade edges */
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #f5f5f5, transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #f5f5f5, transparent);
}

/* Scrolling track */
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

/* Each logo pill */
.marquee-item {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border: none;
  border-radius: 0;
  background: transparent;
  font-size: 0.88rem;
  color: #555;
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee-item img {
  height: 60px;   /* Or whatever height fits your design */
  width: auto;    /* Keeps the logo aspect ratio correct */
  display: block;
}


/* Scroll animation */
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pause on reduced motion */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}


/** ABOUT US PAGE **/

.btn.btn-pill-white, .btn.btn-pill-white:hover, .btn.btn-pill-white:active{
    border-radius: 0.75rem;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.875rem;
    border: 1px solid rgba(255,	255,255, 0.5) !important;
    padding: 0.625rem 1.2rem;
    cursor: default;
}

.about-header {
    height: 90vh; /* As requested */
    width: 100%;
    position: relative;
    /* Replace with your actual image path */
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark Overlay to make text pop */
.about-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust 0.5 for more or less darkness */
    z-index: 1;
}

/* Ensure content stays above the overlay */
.about-header .container {
    position: relative;
    z-index: 2;
}

.about-header h1 {
    font-family: DM Sans, sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.5px;
    max-width: 46.875rem;
}

.about-header p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 46.875rem;
    line-height: 1.65;
    letter-spacing: -0.5px;
}

.card.style-card{
    border: 1px solid rgba(30,200,160,0.14);
    background: rgba(255,255,255,0.03);
    padding: 2.2rem;
    border-radius: 1rem;
}

.about-heading-1{
    font-family: DM Sans, sans-serif;
    font-size: 2rem;
    letter-spacing: -0.5px;
    margin-top: 1.25rem;
    cursor: default;
}

.about-heading-2{
    font-family: DM Sans, sans-serif;
    font-size: 2rem;
    letter-spacing: -0.5px;
    margin-top: 1.25rem;
    cursor: default;
}

/**timeline**/

    /* ── Section header ── */
    .section-tag {
      display: inline-flex; align-items: center; gap: .5rem;
      font-size: .75rem; color: var(--cl-teal);
      letter-spacing: .13em; text-transform: uppercase;
      margin-bottom: .8rem;
    }
    .section-tag::before {
      content: ''; display: inline-block;
      width: 26px; height: 1px; background: var(--cl-teal);
    }
    .section-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.9rem, 3.5vw, 2.8rem);
      font-weight: 800; line-height: 1.1; letter-spacing: -.02em;
    }
    .section-title em { font-style: normal; color: var(--cl-teal); }



    /* ══════════════════════════════════════
       MOBILE TIMELINE  (below md)
       Single left-aligned column
    ══════════════════════════════════════ */
    @media (max-width: 767.98px) {

      .timeline-wrapper::before {
        left: 20px;
        transform: none;
      }

      .tl-item {
        grid-template-columns: 1fr;  /* collapse to single column */
        padding-left: 52px;
        margin-bottom: 2rem;
      }

      .tl-item::after {
        left: 20px;
        transform: translateX(-50%);
        top: 6px;
      }

      /* Hide the dedicated year column — show year above card instead */
      .tl-year-side { display: none !important; }

      .tl-card-side {
        padding: 0 !important;
        justify-content: flex-start !important;
      }

      .tl-card {
        max-width: 100%;
      }

      /* Inject year as pseudo-element above card title */
      .tl-card::before {
        content: attr(data-year);
        display: block;
        font-family: 'Syne', sans-serif;
        font-size: 1.6rem; font-weight: 800;
        color: rgba(30,200,160,.30);
        line-height: 1;
        margin-bottom: .5rem;
        letter-spacing: -.03em;
      }
    }

    /* ── Scroll reveal ── */
    .reveal {
      opacity: 0; transform: translateY(20px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }


.icon-bg{
    background: #1ec8a01f;
}

/***Services page **/

/* Tablet and Mobile adjustments (up to 991px) */
@media (max-width: 991px) {
  .service-tab-container .nav-pills {
    display: flex;
    flex-wrap: nowrap; /* Prevents tabs from wrapping to the next line */
    overflow-x: auto;  /* Enables horizontal scrolling */
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  }

  .service-tab-container .nav-item {
    flex: 0 0 auto; /* Prevents items from shrinking */
  }

  /* Optional: Hide scrollbar for a cleaner look */
  .service-tab-container .nav-pills::-webkit-scrollbar {
    display: none;
  }
  .service-tab-container .nav-pills {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
}

.nav-pills{
    border-bottom: 1px solid rgba(30, 200, 160, .14);
}

.nav-link.service-tab-links{
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    color: #4a6560 !important;
    border-bottom: 2px solid transparent !important;
    border-radius: 0 !important;
    padding: .85rem 1.3rem !important;
}

.nav-link.service-tab-links:hover{
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    color: #1ec8a0 !important;
}

.nav-link.service-tab-links.active{
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #1ec8a0 !important;
    background-color: transparent !important;
    border-bottom-color: #1ec8a0 !important;

}

.svc-image-wrap {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 16px 48px rgba(30, 200, 160, .10);
}

.svc-image-wrap img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.img-teal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 200, 160, .18), transparent 60%);
    pointer-events: none;
}

.svc-image-badge {
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(30, 200, 160, .22);
    border-radius: 12px;
    padding: .7rem 1.1rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    box-shadow: 0 4px 16px rgba(30, 200, 160, .12);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .74rem;
    color: #1ec8a0;
    letter-spacing: .13em;
    text-transform: uppercase;
    margin-bottom: .8rem;
}
.section-tag::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: #1ec8a0;
}

.scope-list {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 0;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.scope-list li {
    display: flex;
    align-items: flex-start; /* Keeps text and icon aligned at the top */
    gap: .7rem;
    font-size: .88rem;
    color: #4a6560;
    line-height: 1.55;
}

/* Style the Lottie container to match your original 18px circle */
.lottie-icon {
    flex-shrink: 0;
    width: 20px;   /* Slightly larger to account for animation padding */
    height: 20px;
    margin-top: 1px;
}

/* Optional: If you want the text to vertically center with the icon */
.scope-list li span {
    padding-top: 1px;
}

.process-section{
    padding: 5rem 0;
    background: #1a2421;
}

.process-step {
    text-align: center;
    padding: 0 1rem;
}

.step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(30, 200, 160, .12);
    border: 2px solid rgba(30, 200, 160, .30);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1ec8a0;
    margin: 0 auto 1rem;
}

.process-step h6 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: .4rem;
}

.process-step p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: .82rem;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    line-height: 1.65;
    margin: 0;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(30, 200, 160, .30);
    font-size: 1.4rem;
    padding-top: 1.2rem;
}

.cta-banner {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0d2e26 0%, #103d32 100%);
    position: relative;
}

.btn-cta-primary {
    background: #714b67;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    padding: .85rem 2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    font-weight: 500;
    transition: background .2s, transform .15s, box-shadow .2s;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
}
.btn-cta-primary:hover {
    background: rgba(113, 75, 103, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(30, 200, 160, .25);
    color: #FFFFFF;
}

.btn-cta-ghost {
    background: transparent;
    color: #a0c4bc;
    border: 1px solid rgba(30, 200, 160, .30);
    border-radius: 10px;
    padding: .85rem 2rem;
    font-size: .95rem;
    font-weight: 500;
    transition: border-color .2s, color .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

/** QUARRY ERP**/

.hero {
    padding: 4rem 0 0;
    background: linear-gradient(160deg, #f4faf8 0%, #eaf6f2 55%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse 55% 65% at 80% 30%, rgba(30, 200, 160, .08) 0%, transparent 65%), radial-gradient(ellipse 35% 45% at 5% 80%, rgba(30, 200, 160, .05) 0%, transparent 60%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(rgba(30, 200, 160, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(30, 200, 160, .05) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 90% 90% at 50% 40%, black 20%, transparent 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    padding-bottom: 0rem;
}

.hero-img-panel {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 -8px 48px rgba(30, 200, 160, .12);
}

.hero-img-panel img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.metric-float {
    position: absolute;
    z-index: 2;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(30, 200, 160, .22);
    border-radius: 14px;
    padding: 1rem 1.3rem;
    box-shadow: 0 8px 28px rgba(30, 200, 160, .12);
}

.mf1 {
    top: 1.5rem;
    right: 1.5rem;
    animation: float 4s ease-in-out infinite;
}

@media (max-width: 991.98px) {
    .mf1, .mf2 {
        display: none;
    }
}

.mf2 {
    bottom: 1.5rem;
    left: 1.5rem;
    animation: float 4s ease-in-out 1.8s infinite;
}

@media (max-width: 991.98px) {
    .mf1, .mf2 {
        display: none;
    }
}

.metric-float .mf-num {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #1ec8a0;
    line-height: 1;
}
.metric-float .mf-lbl {
    font-size: .72rem;
    color: #6b8580;
    margin-top: .2rem;
    font-family: Plus Jakarta Sans, sans-serif;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: rgba(30, 200, 160, .10);
    border: 1px solid rgba(30, 200, 160, .22);
    padding: 0.625rem 1.2rem;
    border-radius: 0.75rem;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: .75rem;
    color: #0fa880;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 1.3rem;
    animation: fadeUp .7s .1s ease forwards;
}

.product-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1ec8a0;
    animation: pulse 2s infinite;
}

/* Entrance animation for the badge */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Continuous glowing pulse for the dot */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(30, 200, 160, 0.7);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(30, 200, 160, 0);
        transform: scale(1.1);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(30, 200, 160, 0);
        transform: scale(1);
    }
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 1.8rem;
    animation: fadeUp .8s .5s ease forwards;
}

.h-pill {
    background: #ffffff;
    border: 1px solid rgba(30, 200, 160, .18);
    border-radius: 100px;
    padding: .4rem 1rem;
    font-size: .8rem;
    font-family: Plus Jakarta Sans, sans-serif;
    color: #1a2421;
    display: flex;
    align-items: center;
    gap: .45rem;
    box-shadow: 0 2px 10px rgba(30, 200, 160, .06);
}

.btn-hero-primary {
    background: #714b67;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: .85rem 2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    font-weight: 500;
    transition: background .2s, transform .15s, box-shadow .2s;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
}

.btn-hero-ghost {
    background: transparent;
    color: #714b67;
    border: 1.5px solid #714b67;
    border-radius: 10px;
    padding: .85rem 2rem;
    font-size: .95rem;
    font-weight: 500;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    font-family: "DM Sans", sans-serif;
}

.feat-nav-wrap {
    background: rgba(255, 255, 255, 0);
    border-bottom: 1px solid rgba(30, 200, 160, .13);
    position: sticky;
    top: 72px;
    z-index: 80;
}

.feat-nav {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
}

.fn-btn.active {
    color: #1ec8a0;
    border-bottom-color: #1ec8a0;
    font-weight: 600;
}

.fn-btn {
    flex-shrink: 0;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: .8rem 1.2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: .83rem;
    font-weight: 500;
    color: #4a6560;
    cursor: pointer;
    transition: color .2s, border-color .2s;
    white-space: nowrap;
}



.overview-strip {
    padding: 4rem 0;
}

.ov-card {
    background: #f4faf8;
    border: 1px solid rgba(30, 200, 160, .14);
    border-radius: 16px;
    padding: 1.8rem 1.6rem;
    text-align: center;
    height: 100%;
    transition: border-color .3s, transform .3s, box-shadow .3s;
}

.ov-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(30, 200, 160, .10);
    border: 1px solid rgba(30, 200, 160, .20);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #1ec8a0;
    margin: 0 auto 1rem;
}

.ov-card:hover {
    border-color: rgba(30, 200, 160, .38);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(30, 200, 160, .09);
}

.why-section {
    padding: 6rem 0;
    background: #f4faf8;
}

.problem-card {
    background: #fff;
    border: 1px solid rgba(220, 80, 80, .14);
    border-radius: 14px;
    padding: 1.4rem 1.6rem;
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    margin-bottom: .8rem;
}

.problem-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(220, 80, 80, .08);
    border: 1px solid rgba(220, 80, 80, .14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e05050;
    font-size: .9rem;
    flex-shrink: 0;
    margin-top: .1rem;
}

.problem-card h6 {
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    font-weight: 500;
    color: #1a2421;
    margin-bottom: .25rem;
}

.problem-card p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: .83rem;
    color: #778186;
    margin: 0;
    line-height: 1.6;
    font-weight: 300;
}
.solution-card {
    background: #fff;
    border: 1px solid rgba(30, 200, 160, .16);
    border-radius: 14px;
    padding: 1.4rem 1.6rem;
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    margin-bottom: .8rem;
    transition: border-color .3s, box-shadow .3s;
}

.solution-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(30, 200, 160, .10);
    border: 1px solid rgba(30, 200, 160, .20);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1ec8a0;
    font-size: .9rem;
    flex-shrink: 0;
    margin-top: .1rem;
}

.solution-card h6 {
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    font-weight: 500;
    color: #1a2421;
    margin-bottom: .25rem;
}

.solution-card p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: .83rem;
    color: #778186;
    margin: 0;
    line-height: 1.6;
    font-weight: 300;
}

.ov-num {
    font-family: "DM Sans", sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #1ec8a0;
    line-height: 1;
    margin-bottom: .3rem;
}
.ov-card h6 {
    font-family: "DM Sans", sans-serif;
    font-size: .9rem;
    font-weight: 500;
    color: #1a2421;
    margin-bottom: .4rem;
}

.ov-card p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: .82rem;
    color: #778186;
    line-height: 1.65;
    margin: 0;
    font-weight: 300;
}


.modules-section {
    padding: 6rem 0;
    background: #ffffff;
}

.module-card {
    background: #f4faf8;
    border: 1px solid rgba(30, 200, 160, .14);
    border-radius: 18px;
    padding: 2rem;
    height: 100%;
    transition: border-color .3s, transform .3s, box-shadow .3s;
    position: relative;
    overflow: hidden;
}
.module-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 200, 160, .08), transparent 70%);
}

.module-card:hover {
    border-color: rgba(30, 200, 160, .38);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(30, 200, 160, .09);
}

.module-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: rgba(30, 200, 160, .10);
    border: 1px solid rgba(30, 200, 160, .20);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #1ec8a0;
    margin-bottom: 1.1rem;
}
.module-card h5 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #1a2421;
    margin-bottom: .55rem;
}
.module-card p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: .9rem;
    color: #778186;
    line-height: 1.72;
    font-weight: 300;
    margin: 0;
}
.module-tag {
    display: inline-block;
    background: rgba(30, 200, 160, .08);
    border: 1px solid rgba(30, 200, 160, .16);
    color: #1ec8a0;
    font-size: .7rem;
    padding: .18rem .6rem;
    border-radius: 100px;
    margin: .5rem .2rem 0 0;
}

.flow-section {
    padding: 6rem 0;
    background: #1a2421;
    position: relative;
    overflow: hidden;
}

.deepdive-section {
    padding: 6rem 0;
    background: #f4faf8;
}

.dd-tabs {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.dd-tab {
    background: #ffffff;
    border: 1px solid rgba(30, 200, 160, .14);
    border-radius: 12px;
    padding: 1.1rem 1.4rem;
    cursor: pointer;
    transition: all .25s;
    display: flex;
    align-items: center;
    gap: .9rem;
}
.dd-tab.active {
    background: #1ec8a0;
    border-color: #1ec8a0;
}

.dd-tab.active .dd-tab-icon {
    background: rgba(255, 255, 255, .2);
    border-color: rgba(255, 255, 255, .3);
    color: #fff;
}

.dd-tab-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(30, 200, 160, .10);
    border: 1px solid rgba(30, 200, 160, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #1ec8a0;
    flex-shrink: 0;
    transition: all .25s;
}

.dd-tab h6 {
    font-family: DM Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #1a2421;
    margin: 0;
    transition: color .25s;
}

.dd-tab p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: .78rem;
    color: #6b8580;
    margin: 0;
    font-weight: 300;
    transition: color .25s;
}

.dd-tab.active h6, .dd-tab.active p {
    color: #fff;
}
.dd-panel {
    display: none;
}

.dd-panel.active {
    display: block;
}

.dd-panel-inner {
    background: #ffffff;
    border: 1px solid rgba(30, 200, 160, .14);
    border-radius: 18px;
    padding: 2.4rem;
    height: 100%;
}
.dd-img {
    border-radius: 14px;
    overflow: hidden;
    /* Set a fixed height for the container */
    height: 400px;
    width: 100%;
    background: #e9f5f2; /* Light placeholder while images load */
}

.dd-img img {
    width: 100%;
    height: 100%;
    /* This ensures the image covers the area without distortion */
    object-fit: cover;
    /* Centers the subject of the photo */
    object-position: center;
    transition: transform .5s ease;
}

.dd-feature-list {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 0;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.dd-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: .88rem;
    color: #4a6560;
    line-height: 1.55;
}

.dd-panel-inner h4{
    font-family: DM Sans, sans-serif;
    font-size:1.2rem;
    font-weight:500;
    margin-bottom:.6rem;
}

.dd-panel-inner p{
    color:#4a6560;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size:.9rem;
    font-weight:400;
    line-height:1.78;
}


.box-123{
    background:#ffffff;border:1px solid rgba(30,200,160,.18);border-radius:14px;
}

.text-501{
    font-family:'DM Sans',sans-serif;
    font-size:.76rem;
    font-weight:500;
    color:#6b8580;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:.9rem;
}

/* Main Card Container */
.box-124 {
    background: #ffffff;
    border: 1px solid rgba(30, 200, 160, 0.16);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    cursor: default;
}

/* Hover State */
.box-124:hover {
    border-color: rgba(30, 200, 160, 0.40);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(30, 200, 160, 0.09);
}

/* Icon Wrapper */
.box-124 .icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(30, 200, 160, 0.10);
    border: 1px solid rgba(30, 200, 160, 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1ec8a0;
    margin-bottom: 1rem;
}

/* Title Styling */
.box-124 h6 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a2421;
    margin-bottom: 0.35rem;
    margin-top: 0; /* Ensures consistent alignment */
}

/* Paragraph Styling */
.box-124 p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.82rem;
    color: #6b8580;
    line-height: 1.65;
    margin: 0;
    font-weight: 300;
}

.third-party-box{
    background:rgba(30,200,160,.06);border:1px solid rgba(30,200,160,.16);border-radius:12px;
}


.compare-section {
    padding: 6rem 0;
    background: #ffffff;
}
.compare-table {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(30, 200, 160, .14);
}

/* Container to enable horizontal scroll */
.table-responsive-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
}

/* Ensure the table maintains a readable width on small screens */
.compare-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px; /* Forces scroll on mobile while keeping layout intact */
}

/* Optional: Custom Scrollbar Styling for a cleaner look */
.table-responsive-wrapper::-webkit-scrollbar {
    height: 6px;
}

.table-responsive-wrapper::-webkit-scrollbar-track {
    background: rgba(30, 200, 160, 0.05);
}

.table-responsive-wrapper::-webkit-scrollbar-thumb {
    background: rgba(30, 200, 160, 0.2);
    border-radius: 10px;
}

/* Fix for the first column on mobile (Optional: keeps it sticky) */
@media (max-width: 768px) {
    .compare-table tbody td,
    .compare-table thead th {
        padding: 0.8rem 1rem; /* Slightly tighter padding for mobile */
        white-space: nowrap;  /* Prevents text from wrapping awkwardly */
    }
}



.compare-table table{
    width: 100%;
    border-collapse: collapse;
}

.compare-table thead th:first-child {
    color: #8fa3a0;
}

.compare-table thead th {
    background: #1a2421;
    color: #f4faf8;
    padding: 1.1rem 1.4rem;
    font-family: 'DM Sans', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .04em;
}

.compare-table thead th.highlight {
    font-family: 'DM Sans', sans-serif;
    color: #1ec8a0;
    font-weight: 500;
}

.compare-table thead th {
    background: #1a2421;
    color: #f4faf8;
    padding: 1.1rem 1.4rem;
    font-family: 'DM Sans', sans-serif;
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .04em;
}

.compare-table tbody td:first-child {
    color: #4a6560;
    font-weight: 400;
}
.compare-table tbody td {
    font-family: 'DM Sans', sans-serif;
    padding: .95rem 1.4rem;
    font-size: .88rem;
    color: #1a2421;
    border-bottom: 1px solid rgba(30, 200, 160, .08);
}

.compare-table tbody td.highlight-col{
    background: rgba(30, 200, 160, .04);
}

.compare-table tbody td.yes {
    color: #1ec8a0;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
}

.compare-table tbody td.no {
    color: #c0c0c0;
}
.compare-table tbody tr:nth-child(even) {
    background: #f4faf8;
}


.impl-section {
    padding: 5.5rem 0;
    /* This creates a 90% opaque overlay of #f4faf8 */
    background-image: linear-gradient(
        rgba(244, 250, 248, 0.9),
        rgba(244, 250, 248, 0.9)
    );
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Optional: adds a nice parallax effect */
}
.impl-step {
    display: flex;
    gap: 1.4rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.impl-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(30, 200, 160, .10);
    border: 1px solid rgba(30, 200, 160, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    color: #1ec8a0;
}
.impl-step h6 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a2421;
    margin-bottom: .3rem;
}
.impl-step p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: .85rem;
    color: #6b8580;
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
}

.impl-connector {
    width: 2px;
    height: 24px;
    background: rgba(30, 200, 160, .20);
    margin: 0 0 0 21px;
}
.other-products {
    padding: 5rem 0;
    background: #ffffff;
}
.op-card {
    background: #f4faf8;
    border: 1px solid rgba(30, 200, 160, .14);
    border-radius: 18px;
    padding: 2rem;
    height: 100%;
    transition: border-color .3s, transform .3s, box-shadow .3s;
    text-decoration: none;
    display: block;
}

.op-card:hover {
    border-color: rgba(30, 200, 160, .38);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(30, 200, 160, .10);
}
.op-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(30, 200, 160, .10);
    border: 1px solid rgba(30, 200, 160, .20);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #1ec8a0;
    margin-bottom: 1.2rem;
}

.op-card h5 {
    font-family: DM Sans, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a2421;
    margin-bottom: .5rem;
}

.op-card p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: .9rem;
    color: #6b8580;
    line-height: 1.7;
    font-weight: 300;
    margin: 0 0 1.2rem;
}

.op-link {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: .82rem;
    color: #1ec8a0;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: .35rem;
}

.culture-section {
    padding: 6rem 0;
    background: #ffffff;
}
.jobs-section {
    padding: 6rem 0;
    background: #f4faf8;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    background: #f4faf8;
    border: 1px solid rgba(30, 200, 160, .18);
    color: #4a6560;
    font-size: .82rem;
    padding: .45rem 1.1rem;
    border-radius: 100px;
    cursor: pointer;
    transition: all .2s;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}

.filter-btn:hover, .filter-btn.active {
    background: rgba(30, 200, 160, .10);
    border-color: rgba(30, 200, 160, .40);
    color: #1ec8a0;
}

.job-card {
    background: #ffffff;
    border: 1px solid rgba(30, 200, 160, .16);
    border-radius: 16px;
    padding: 1.8rem 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    transition: border-color .3s, transform .3s, box-shadow .3s;
    flex-wrap: wrap;
}

.job-card:hover {
    border-color: rgba(30, 200, 160, .40);
    transform: translateX(4px);
    box-shadow: 0 8px 28px rgba(30, 200, 160, .08);
}

.job-left {
    flex: 1;
    min-width: 220px;
}

.job-dept {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(30, 200, 160, .08);
    border: 1px solid rgba(30, 200, 160, .18);
    color: #1ec8a0;
    font-family: 'DM Sans', sans-serif;
    font-size: .7rem;
    padding: .2rem .65rem;
    border-radius: 100px;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: .7rem;
}

.job-card h5 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: #1a2421;
    margin-bottom: .5rem;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
}
.job-meta span {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: .82rem;
    color: #6b8580;
    display: flex;
    align-items: center;
    gap: .35rem;
}
.job-right {
    display: flex;
    align-items: center;
    gap: .9rem;
    flex-shrink: 0;
}
.job-type-badge{
    background: #f4faf8;
    border: 1px solid rgba(113, 75, 103, .16);
    color: #4a6560;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: .76rem;
    padding: .3rem .8rem;
    border-radius: 8px;
    font-weight: 500;
    white-space: nowrap;
}

.btn-apply {
    background: #714b67;
    color: #ffffff;
    border: none;
    border-radius: 9px;
    padding: .6rem 1.4rem;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: .82rem;
    font-weight: 500;
    transition: background .2s, transform .15s, box-shadow .2s;
    cursor: pointer;
    white-space: nowrap;
}
.perks-section {
    padding: 5.5rem 0;
    background: #1a2421;
}

.perk-item {
    text-align: center;
    padding: 0 .8rem;
}

.perk-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(30, 200, 160, .10);
    border: 1px solid rgba(30, 200, 160, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #1ec8a0;
    margin: 0 auto 1rem;
}
.perk-item h6 {
    font-family: DM Sans, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #f4faf8;
    margin-bottom: .4rem;
}

.perk-item p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: .82rem;
    color: #6b8580;
    font-weight: 300;
    line-height: 1.65;
    margin: 0;
}
.open-cta {
    padding: 5.5rem 0;
    background: #f4faf8;
}



.open-cta-card {
    background: linear-gradient(135deg, #0d2e26 0%, #103d32 100%);
    border-radius: 24px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.open-cta-card::before {
    content: '';
    position: absolute;
    right: -60px;
    top: 50%;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 200, 160, .12), transparent 70%);
    transform: translateY(-50%);
}

@media (max-width: 991.98px) {
    .open-cta-card {
        padding: 2.5rem 1.8rem;
    }
}

.btn-primary-teal {
    background: #714b67;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: .85rem 2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    font-weight: 500;
    transition: background .2s, transform .15s, box-shadow .2s;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
}

.stats-banner {
    padding: 4rem 0;
    background: #1a2421;
}

.stat-item {
    text-align: center;
}
.stat-num {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.6rem;
    font-weight: 500;
    color: #1ec8a0;
    line-height: 1;
}
.stat-lbl {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: .82rem;
    color: #6b8580;
    margin-top: .35rem;
    font-weight: 300;
}
.video-section {
    padding: 5rem 0;
    background: #f4faf8;
}
.video-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform .3s, box-shadow .3s;
}

.video-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13, 46, 38, .3) 0%, rgba(13, 46, 38, .7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.2rem;
}

.play-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #1ec8a0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform .2s, box-shadow .2s;
    cursor: pointer;
}

.video-name {
    font-family: 'DM Sans', sans-serif;
    font-size: .88rem;
    font-weight: 500;
    color: #f4faf8;
}

.video-company {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: .75rem;
    color: #a0c4bc;
}

.video-duration {
    background: rgba(0, 0, 0, .55);
    color: #fff;
    font-size: .72rem;
    padding: .18rem .5rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    align-self: flex-start;
}
.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(30, 200, 160, .12);
}

.video-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 8px 24px rgba(30, 200, 160, .30);
}

.ev-card {
    background: #ffffff;
    border: 1px solid rgba(30, 200, 160, .14);
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    transition: border-color .3s, transform .3s, box-shadow .3s;
}


.ev-card:hover {
    border-color: rgba(30, 200, 160, .38);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(30, 200, 160, .10);
}

.ev-card-img {
    height: 190px;
    overflow: hidden;
    position: relative;
}
.ev-card-body {
    padding: 1.5rem;
}

.ev-card-type {
    font-size: .7rem;
    color: #1ec8a0;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .5rem;
}

.ev-card h5 {
    font-family: DM Sans, sans-serif;
    font-size: .98rem;
    font-weight: 500;
    color: #1a2421;
    margin-bottom: .6rem;
    line-height: 1.3;
}

.ev-card-meta {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    margin-bottom: 1rem;
}

.ev-card p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: .83rem;
    color: #4a6560;
    line-height: 1.68;
    margin-bottom: 1.1rem;
    font-weight: 300;
}
.btn-ev-sm {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(30, 200, 160, .08);
    border: 1px solid rgba(30, 200, 160, .22);
    color: #1ec8a0;
    font-size: .78rem;
    font-weight: 600;
    padding: .4rem 1rem;
    border-radius: 7px;
    text-decoration: none;
    transition: all .2s;
    cursor: pointer;
    outline: none;
    font-family: 'DM Sans', sans-serif;
}

.sv-gallery {
    padding: 5rem 0;
    background: #f4faf8;
}
.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 1rem;
}

.gm-tall {
    grid-row: span 2;
}

.gm-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gm-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}


.contact-section {
    padding: 5.5rem 0;
    background: #ffffff;
}

.form-card {
    background: #f4faf8;
    border: 1px solid rgba(30, 200, 160, .16);
    border-radius: 22px;
    padding: 2.8rem;
}
.f-label {
    display: block;
    font-size: .76rem;
    color: #4a6560;
    letter-spacing: .07em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: .4rem;
    font-family: DM Sans, sans-serif;
}

.f-control {
    display: block;
    width: 100%;
    background: #ffffff;
    border: 1.5px solid rgba(30, 200, 160, .20);
    border-radius: 10px;
    color: #1a2421;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .92rem;
    padding: .72rem 1rem;
    outline: none;
    transition: border-color .25s, box-shadow .25s;
}

.interest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .55rem;
}

.int-chip {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: #ffffff;
    border: 1.5px solid rgba(30, 200, 160, .18);
    border-radius: 9px;
    padding: .6rem .9rem;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: .82rem;
    color: #4a6560;
    cursor: pointer;
    transition: all .2s;
    user-select: none;
}
.int-chip:hover {
    border-color: rgba(30, 200, 160, .40);
    color: #1ec8a0;
}
.int-chip.selected {
    background: rgba(30, 200, 160, .09);
    border-color: #1ec8a0;
    color: #1ec8a0;
    font-weight: 500;
}
.f-control {
    display: block;
    width: 100%;
    background: #ffffff;
    border: 1.5px solid rgba(30, 200, 160, .20);
    border-radius: 10px;
    color: #1a2421;
    font-family: 'DM Sans', sans-serif;
    font-size: .92rem;
    padding: .72rem 1rem;
    outline: none;
    transition: border-color .25s, box-shadow .25s;
}

.btn-submit {
    width: 100%;
    background: #1ec8a0;
    color: #ffffff;
    border: none;
    border-radius: 11px;
    padding: .92rem 2rem;
    font-family: 'Syne', sans-serif;
    font-size: .97rem;
    font-weight: 700;
    transition: background .2s, transform .15s, box-shadow .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    cursor: pointer;
}

.form-success {
    display: none;
    text-align: center;
    padding: 2.5rem 0;
}

.success-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(30, 200, 160, .10);
    border: 2px solid rgba(30, 200, 160, .28);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1ec8a0;
    margin: 0 auto 1.2rem;
    animation: popIn .5s ease;
}
.info-card {
    background: #f4faf8;
    border: 1px solid rgba(30, 200, 160, .16);
    border-radius: 14px;
    padding: 1.3rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: .8rem;
    transition: border-color .25s, box-shadow .25s, transform .2s;
}

.info-card:hover {
    border-color: rgba(30, 200, 160, .38);
    box-shadow: 0 6px 22px rgba(30, 200, 160, .08);
    transform: translateX(4px);
}

.ic-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(30, 200, 160, .10);
    border: 1px solid rgba(30, 200, 160, .20);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #1ec8a0;
    flex-shrink: 0;
}

.ic-label {
    font-family: DM Sans, sans-serif;
    font-size: .72rem;
    font-weight: 700;
    color: #6b8580;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: .3rem;
}

.ic-value {
    font-size: .9rem;
    color: #1a2421;
    line-height: 1.55;
    font-family: Plus Jakarta Sans, sans-serif;
}

.ic-value a {
    font-family: Plus Jakarta Sans, sans-serif;
    color: #1a2421;
    text-decoration: none;
    transition: color .2s;
}

.ic-value a:hover {
    color: #1ec8a0;
}
.social-wrap {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.soc-btn {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: #f4faf8;
    border: 1px solid rgba(30, 200, 160, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a6560;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all .22s;
}
.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 1.8rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: #ffffff;
    border: 1px solid rgba(30, 200, 160, .18);
    border-radius: 100px;
    padding: .38rem .9rem;
    font-size: .76rem;
    color: #4a6560;
    font-family: DM Sans, sans-serif;
}

.map-wrap {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(30, 200, 160, .16);
    position: relative;
    box-shadow: 0 8px 40px rgba(30, 200, 160, .08);
}

.map-wrap iframe {
    width: 100%;
    height: 420px;
    border: none;
    display: block;
    filter: contrast(1.04) saturate(.9);
}

.story-card {
    background: #ffffff;
    border: 1px solid rgba(30, 200, 160, .16);
    border-radius: 16px;
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(30, 200, 160, .10);
    filter: blur(40px);
}

.big-year {
    font-family: 'Syne', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(30, 200, 160, .7);
    line-height: 1;
    letter-spacing: -.05em;
    user-select: none;
}

.badge-teal {
    background: rgba(30, 200, 160, .10);
    border: 1px solid rgba(30, 200, 160, .28);
    color: #1ec8a0;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: .76rem;
    padding: .28rem .75rem;
    border-radius: 100px;
    letter-spacing: .04em;
    display: inline-block;
    margin: .25rem;
}

.timeline-wrap {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-wrap::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(30, 200, 160, .30) 8%, rgba(30, 200, 160, .30) 92%, transparent);
    transform: translateX(-50%);
}

.tl-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 3.5rem;
    position: relative;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}

.tl-year-col.left {
    justify-content: flex-end;
    padding-right: 3rem;
}

.tl-year-col {
    display: flex;
    align-items: flex-start;
}
.tl-year {
    font-family: DM Sans, sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(30, 200, 160, .5);
    line-height: 1;
    letter-spacing: -.04em;
}

.tl-content-col.right {
    justify-content: flex-start;
    padding-left: 3rem;
    text-align: left;
}

.tl-content-col {
    display: flex;
    align-items: flex-start;
}

.tl-card {
    background: #ffffff;
    border: 1px solid rgba(30, 200, 160, .16);
    border-radius: 14px;
    padding: 1.4rem 1.6rem;
    max-width: 340px;
    transition: border-color .3s, transform .3s;
}

.tl-card:hover {
    border-color: rgba(30, 200, 160, .40);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(30, 200, 160, .09);
}

.tl-tag {
    display: inline-block;
    background: rgba(30, 200, 160, .10);
    border: 1px solid rgba(30, 200, 160, .18);
    color: #1ec8a0;
    font-size: .7rem;
    padding: .2rem .6rem;
    border-radius: 100px;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: .6rem;
    font-family: Plus Jakarta Sans, sans-serif;
}

.tl-card h5 {
    font-family: DM Sans, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a2421;
    margin-bottom: .4rem;
}
.tl-card p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: .86rem;
    color: #4a6560;
    line-height: 1.7;
    margin: 0;
}
.tl-row::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 22px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #1ec8a0;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px rgba(30, 200, 160, .18), 0 0 18px rgba(30, 200, 160, .35);
    z-index: 2;
    transition: box-shadow .3s;
}

.tl-row.visible {
    opacity: 1;
    transform: translateY(0);
}


.tl-content-col.left {
    justify-content: flex-end;
    padding-right: 3rem;
    text-align: right;
}
.tl-year-col.right {
    justify-content: flex-start;
    padding-left: 3rem;
}


.mvv-card {
    background: #ffffff;
    border: 1px solid rgba(30, 200, 160, .16);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: border-color .3s, transform .3s;
}
.mvv-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(30, 200, 160, .10);
    border: 1px solid rgba(30, 200, 160, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}
.mvv-card:hover {
    border-color: rgba(30, 200, 160, .40);
    transform: translateY(-4px);
}


.mvv-card h4 {
    font-family: DM Sans, sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: .75rem;
    color: #1a2421;
}

.mvv-card p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: .9rem;
    color: #4a6560;
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
}

.mvv-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1ec8a0, transparent);
    opacity: 0;
    transition: opacity .3s;
}

.mvv-card:hover::after {
    opacity: 1;
}
.mvv-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1ec8a0, transparent);
    opacity: 0;
    transition: opacity .3s;
}

.val-pill {
    background: #f4faf8;
    border: 1px solid rgba(30, 200, 160, .18);
    color: #1a2421;
    border-radius: 100px;
    padding: .7rem 1.5rem;
    font-size: .88rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: all .2s;
    cursor: default;
}
.val-pill:hover {
    background: rgba(30, 200, 160, .10);
    border-color: rgba(30, 200, 160, .38);
    color: #1ec8a0;
    transform: translateY(-2px);
}

.team-card {
    background: #ffffff;
    border: 1px solid rgba(30, 200, 160, .14);
    border-radius: 18px;
    overflow: hidden;
    text-align: center;
    transition: border-color .3s, transform .3s, box-shadow .3s;
}

.team-card:hover {
    border-color: rgba(30, 200, 160, .40);
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(30, 200, 160, .11);
}

.tc-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}
.tc-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform .5s ease;
}

.tc-body {
    padding: 1.1rem 1rem 1.3rem;
}
.tc-name {
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    font-weight: 800;
    color: #1a2421;
    margin-bottom: .2rem;
}

.tc-role {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: .76rem;
    color: #1ec8a0;
    font-weight: 600;
    letter-spacing: .04em;
}

.tc-social {
    position: absolute;
    bottom: .9rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: .45rem;
    z-index: 2;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .3s ease, transform .3s ease;
}

.tc-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30, 200, 160, .12);
    opacity: 0;
    transition: opacity .3s;
}

.tc-soc {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(30, 200, 160, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a6560;
    font-size: .82rem;
    text-decoration: none;
    transition: all .2s;
}

.tc-soc:hover {
    background: #1ec8a0;
    border-color: #1ec8a0;
    color: #fff;
}

/**Site visit CSS** */

/* Gallery Card Styles */
.gallery-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}
.gc-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    height: 250px;
}
.gc-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gc-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(30, 200, 160, 0.4);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.gc-overlay i { color: white; font-size: 2rem; }
.gallery-card:hover .gc-overlay { opacity: 1; }
.gallery-card:hover { transform: translateY(-5px); }

/* Lightbox Styles */
.custom-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9);
    padding-top: 50px;
}
.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80vh;
    border-radius: 8px;
}
#lightboxCaption {
    text-align: center;
    color: white;
    padding: 20px;
    font-size: 1.2rem;
}
.close-btn {
    position: absolute;
    top: 20px; right: 35px;
    color: #f1f1f1; font-size: 40px; font-weight: bold;
    cursor: pointer;
}








