:root {
  /* ── Jazzy Mint & Yellow Palette (blue retired) ── */
  --primary:        #0f9d70;       /* Deep mint-emerald — anchors headings & icons, replaces blue */
  --primary-2:      #1fb87f;       /* Mid mint for gradients                    */
  --primary-light:  #e3fbf0;       /* Very light mint tint for card BGs         */
  --accent:         #f5a623;       /* Warm amber — CTAs, underlines, highlights */
  --accent-2:       #ffd27a;       /* Soft gold — stat plusses, kicker badges   */
  --energy:         #ffd23f;       /* Bright yellow — icons inside hero kicker  */
  --light-bg:       #fffcee;       /* Soft yellow-white for alternating sections*/
  --warm-bg:        #fdfcf5;       /* Near-white warm for About                 */
  --text-dark:      #103226;       /* Deep forest-charcoal — body copy          */
  --text-muted:     #4f6b5f;       /* Muted sage for subtext                    */
  --white:          #ffffff;
  --border:         #cdeede;       /* Light mint-grey border                    */

  /* ── Jazzy accent colours (client request) ── */
  --yellow:         #ffe066;       /* Light yellow — icons, badges, highlights  */
  --yellow-soft:    #fff6d9;       /* Pale yellow tint for card/section BGs     */
  --mint:           #3ecf8e;       /* Mint green — icons, hover states, accents */
  --mint-soft:      #e3fbf0;       /* Pale mint tint for card/section BGs       */

  /* Gradient helpers — mint & yellow take the lead, blue removed everywhere */
  --grad-hero:      linear-gradient(135deg, #0a6b4c 0%, #14a578 45%, #2fcf95 100%);
  --grad-section:   linear-gradient(135deg, #0f9d70 0%, #1fb87f 100%);
  --grad-card:      linear-gradient(135deg, #fffcee 0%, #fef8e0 100%);
  --grad-accent:    linear-gradient(135deg, #f5a623 0%, #ffd27a 100%);
  --grad-mint:      linear-gradient(135deg, #1fb87f 0%, #3ecf8e 100%);
  --grad-yellow:    linear-gradient(135deg, #ffd23f 0%, #ffe066 100%);
}

.text-justify { text-align: justify; }
.border-25    { border-radius: 10px; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  background: #fff;
}

h1, h2, h3, h4, h5 { font-family: 'Montserrat', sans-serif; }

/* ────────────────────────────────────────
   NAVBAR  — frosted light glass on scroll
──────────────────────────────────────── */
.navbar {
  background: linear-gradient(90deg, #0a6b4c 0%, #14a578 100%);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(15,157,112,0.18);
}
.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white) !important;
  letter-spacing: 0.03em;
}
.navbar-brand span { color: var(--accent); }
.nav-link {
  color: rgba(255,255,255,0.88) !important;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem !important;
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--accent-2) !important; }
.nav-link.active { border-bottom: 2px solid var(--mint); }
.navbar-toggler { border-color: rgba(255,255,255,0.4); }
.navbar-toggler-icon { filter: invert(1); }

/* ────────────────────────────────────────
   HERO  — airy gradient with light bloom
──────────────────────────────────────── */
#hero {
  background: var(--grad-hero);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 30px 0 110px;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.035'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

/* Soft bloom shapes */
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.hero-shape     { position: absolute; border-radius: 50%; filter: blur(2px); }
.hero-shape-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle at 30% 30%, rgba(255,224,102,0.22), transparent 70%);
  top: -160px; right: -120px;
  animation: heroFloat 9s ease-in-out infinite;
}
.hero-shape-2 {
  width: 340px; height: 340px;
  background: radial-gradient(circle at 30% 30%, rgba(62,207,142,0.2), transparent 70%);
  bottom: -120px; left: -90px;
  animation: heroFloat 11s ease-in-out infinite reverse;
}
@keyframes heroFloat {
  0%, 100% { transform: translate(0,0); }
  50%       { transform: translate(20px,-26px); }
}

/* Kicker pill */
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--accent-2);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}
.hero-kicker i { color: var(--mint); }

#hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.16;
  letter-spacing: -0.01em;
}
#hero h1 span {
  color: var(--accent);
  position: relative;
}
#hero p.lead {
  color: rgba(255,255,255,0.84);
  font-size: 1.08rem;
  max-width: 520px;
  margin-top: 20px;
  line-height: 1.7;
}

/* Buttons */
.hero-btns { margin-top: 32px; gap: 14px; display: flex; flex-wrap: wrap; }
.btn-accent {
  background: var(--grad-accent);
  color: #fff;
  font-weight: 700;
  border: none;
  padding: 13px 32px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.04em;
  transition: filter 0.2s, transform 0.15s, box-shadow .2s;
  box-shadow: 0 10px 28px rgba(245,166,35,0.32);
}
.btn-accent:hover { filter: brightness(1.08); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 34px rgba(245,166,35,0.42); }
.btn-outline-white {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
  padding: 11px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.18); color: #fff; }

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.18);
  flex-wrap: wrap;
}
.hero-stat         { display: flex; flex-direction: column; }
.hero-stat-num     { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 2.1rem; color: #fff; line-height: 1; display: inline; }
.hero-stat-plus    { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--accent-2); }
.hero-stat small   { color: rgba(255,255,255,0.7); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.03em; margin-top: 4px; }

/* Hero photo frame */
.hero-image-col   { position: relative; }
.hero-photo-frame { position: relative; border-radius: 22px; overflow: visible; }
.hero-photo-frame::before {
  content: '';
  position: absolute;
  top: -18px; left: -18px;
  width: 100%; height: 100%;
  border: 2px solid rgba(245,166,35,0.45);
  border-radius: 22px;
  z-index: 0;
}
.hero-image-col img {
  width: 100%; max-width: 100%;
  border-radius: 22px;
  box-shadow: 0 28px 64px rgba(10,40,28,0.32);
  position: relative; z-index: 1; display: block;
  aspect-ratio: 4/3.1; object-fit: cover;
}

/* Floating cards */
.hero-float-card {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.97);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 16px 40px rgba(10,40,28,0.18);
  z-index: 2;
  animation: cardBob 5s ease-in-out infinite;
}
.hero-float-card strong { display: block; font-family: 'Montserrat', sans-serif; font-weight: 800; color: var(--primary); font-size: 1.05rem; line-height: 1.1; }
.hero-float-card small  { color: var(--text-muted); font-size: 0.74rem; font-weight: 600; }
.hero-float-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--grad-section);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-float-icon i { color: var(--accent-2); font-size: 1.1rem; }
.hero-float-card-bottom .hero-float-icon { background: var(--grad-mint); }
.hero-float-card-bottom .hero-float-icon i { color: #ffffff; }
.hero-float-card-top    { top: -28px; left: -28px; animation-delay: 0s; }
.hero-float-card-bottom { bottom: -24px; right: -24px; animation-delay: 1.2s; }
@keyframes cardBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Hero animation */
.hero-anim { opacity: 0; transform: translateY(26px); animation: heroRise 0.8s cubic-bezier(.22,.9,.34,1) forwards; animation-delay: var(--d, 0s); }
@keyframes heroRise { to { opacity: 1; transform: translateY(0); } }

/* Wave divider */
.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; height: 70px; color: var(--warm-bg); z-index: 1; line-height: 0; }
.hero-wave svg { width: 100%; height: 100%; display: block; }

@media (prefers-reduced-motion: reduce) {
  .hero-anim { animation: none; opacity: 1; transform: none; }
  .hero-shape, .hero-float-card { animation: none; }
}

/* ────────────────────────────────────────
   SECTION COMMON
──────────────────────────────────────── */
section { padding: 80px 0; }
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--primary);
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}
.section-title::after {
  content: '';
  display: block;
  width: 52px;
  height: 4px;
  background: var(--grad-accent);
  border-radius: 2px;
  margin-top: 10px;
}
.section-title.center { display: block; text-align: center; }
.section-title.center::after { margin: 10px auto 0; }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

/* ==================================
   ABOUT SECTION
================================== */

#about{
    position:relative;
    padding:100px 0;
    background:linear-gradient(
        180deg,
        #fffdf8 0%,
        #fffaeb 100%
    );
    overflow:hidden;
}

#about::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(62,207,142,.07);
    top:-150px;
    right:-150px;
}

#about::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(255,224,102,.16);
    bottom:-100px;
    left:-100px;
}

/* Heading */

.about-lead{
    color:var(--text-muted);
    font-size:1.05rem;
    line-height:1.9;
    margin:20px 0 30px;
}

/* Features */

.about-features{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:30px;
}

.feature-box{
    background:#fff;
    border-radius:12px;
    padding:14px 18px;
    box-shadow:0 8px 25px rgba(15,157,112,.08);
    display:flex;
    align-items:center;
    gap:10px;
    transition:.3s;
}

.feature-box:hover{
    transform:translateY(-4px);
}

.feature-box i{
    color:var(--primary);
    font-size:18px;
}

.feature-box-mint i{ color: var(--mint); }
.feature-box-yellow i{ color: #d4a300; }
.feature-box-mint:hover{ background: var(--mint-soft); }
.feature-box-yellow:hover{ background: var(--yellow-soft); }

.feature-box span{
    font-weight:600;
    color:#1d3a30;
}

/* Main Card */

.about-card{
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.4);

    border-radius:24px;
    padding:35px;

    box-shadow:
    0 20px 50px rgba(15,157,112,.08);
}

.about-card p{
    color:var(--text-muted);
    line-height:1.9;
}

/* Founder Card */

.founder-card{
    margin-top:30px;

    display:flex;
    gap:20px;

    padding:25px;

    border-radius:18px;

    background:
    linear-gradient(
        135deg,
        rgba(15,157,112,.08),
        rgba(15,157,112,.02)
    );
}

.founder-icon{
    width:70px;
    height:70px;

    min-width:70px;

    border-radius:16px;

    background:var(--primary);

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;
}

.founder-card h5{
    margin-bottom:10px;
    font-weight:700;
    color:#13332a;
}

/* Image */

.about-img-wrap{
    position:relative;
    border-radius:24px;
    overflow:hidden;

    box-shadow:
    0 25px 60px rgba(15,157,112,.18);
}

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

.about-badge{
    position:absolute;
    left:20px;
    bottom:20px;

    background:rgba(255,255,255,.95);

    padding:12px 18px;

    border-radius:12px;

    color:var(--primary);

    font-weight:700;

    display:flex;
    align-items:center;
    gap:10px;
}

.about-badge i{
    color:#f4b400;
}

/* Floating Stats */

.floating-stat{
    position:absolute;

    background:#fff;

    border-radius:16px;

    padding:15px 20px;

    text-align:center;

    box-shadow:
    0 15px 40px rgba(15,157,112,.15);
}

.floating-stat span{
    display:block;
    font-size:1.6rem;
    font-weight:800;
    color:var(--primary);
}

.floating-stat small{
    color:#667;
}

.stat-1{
    top:30px;
    right:-20px;
}

.stat-2{
    bottom:90px;
    right:-25px;
}

/* Responsive */

@media(max-width:991px){

    #about{
        padding:80px 0;
    }

    .floating-stat{
        display:none;
    }

    .founder-card{
        flex-direction:column;
    }
}

@media(max-width:767px){

    .about-card{
        padding:25px;
    }

    .feature-box{
        width:100%;
    }

    .section-title{
        font-size:2rem;
    }
}

/* ────────────────────────────────────────
   MISSION  — light-to-mid-blue gradient
──────────────────────────────────────── */
#mission {
  background: linear-gradient(120deg, #0a6b4c 0%, #14a578 55%, #ffd23f 130%);
  position: relative; overflow: hidden;
}
#mission::before {
  content: '"';
  position: absolute;
  font-size: 28rem; color: rgba(255,255,255,0.05);
  font-family: Georgia, serif; line-height: 1;
  top: -80px; left: -30px;
}
#mission::after {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,224,102,0.22), transparent 70%);
  right: -120px; bottom: -160px;
}
.mission-text {
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.55;
  position: relative; z-index: 1;
}
.mission-text span { color: var(--accent-2); }

/* ────────────────────────────────────────
   SERVICES  — white with gradient cards
──────────────────────────────────────── */
#services { background: #fff; }
.service-card {
  border-radius: 14px;
  padding: 30px 26px;
  border: 1px solid var(--border);
  background: var(--grad-card);
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(15,157,112,0.12);
}
.service-icon {
  width: 56px; height: 56px;
  background: var(--grad-section);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-icon i { color: var(--accent-2); font-size: 1.4rem; }
.service-icon-mint { background: var(--grad-mint); }
.service-icon-yellow { background: var(--grad-yellow); }
.service-icon-yellow i { color: #7a5b00; }
.service-card h5 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.service-card p  { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ────────────────────────────────────────
   CLIENTELE
──────────────────────────────────────── */
/* ===================================================
   CLIENTELE SECTION
=================================================== */

#clientele{
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(
        180deg,
        #f7fffb 0%,
        #eafbf3 100%
    );
}

/* Decorative Background Elements */

#clientele::before{
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(62,207,142,0.06);
    top: -220px;
    right: -180px;
}

#clientele::after{
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255,224,102,0.18);
    bottom: -120px;
    left: -120px;
}

/* Heading */

#clientele .section-eyebrow{
    margin-bottom: 10px;
}

#clientele .section-title{
    margin-bottom: 0;
}

/* Client Badge */

.client-badge{
    display: flex;
    align-items: center;
    gap: 12px;

    background: #fff;

    padding: 14px 24px;

    border-radius: 16px;

    border: 1px solid rgba(15,157,112,0.08);

    font-size: 0.95rem;
    font-weight: 600;

    color: #13332a;

    box-shadow:
        0 10px 30px rgba(15,157,112,0.08);

    transition: all .35s ease;
}

/* Icon Box */

.client-badge i{
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(15,157,112,0.08);

    color: var(--primary);

    font-size: 18px;

    transition: all .35s ease;
}

/* Hover Effect */

.client-badge:hover{
    transform: translateY(-6px);

    background: linear-gradient(
        135deg,
        var(--primary),
        #1fb87f
    );

    color: #fff;

    border-color: transparent;

    box-shadow:
        0 20px 45px rgba(15,157,112,0.18);
}

.client-badge:hover i{
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.col-auto:nth-child(3n+2) .client-badge:hover{
    background: var(--grad-mint);
}

.col-auto:nth-child(3n+3) .client-badge:hover{
    background: var(--grad-mint);
    /* color: #7a5b00; */
}

/* Responsive */

@media (max-width: 768px){

    #clientele{
        padding: 80px 0;
    }

    .client-badge{
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .client-badge i{
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}
/* ────────────────────────────────────────
   TEAM
──────────────────────────────────────── */
#team { background: #fff; }
.team-card {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 24px;
  height: 100%;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 20px rgba(15,157,112,0.07);
}
.team-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-accent);
}
#team .col-lg-4:nth-child(2) .team-card::before { background: var(--grad-mint); }
#team .col-lg-4:nth-child(3) .team-card::before { background: var(--grad-yellow); }
#team .col-lg-4:nth-child(2) .team-avatar { border-color: var(--mint-soft); }
#team .col-lg-4:nth-child(3) .team-avatar { border-color: var(--yellow-soft); }
.team-avatar {
  width: 120px; height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%; overflow: hidden;
  border: 4px solid var(--primary-light);
  box-shadow: 0 4px 14px rgba(15,157,112,0.14);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card h5 { font-size: 1.05rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.team-role {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.team-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }
.addon-badge {
  display: inline-block;
  background: var(--grad-section);
  color: var(--white);
  font-size: 0.76rem; font-weight: 700;
  padding: 4px 12px; border-radius: 50px;
  margin-top: 12px; letter-spacing: 0.04em;
}
#team .col-lg-4:nth-child(2) .addon-badge { background: var(--grad-mint); }
#team .col-lg-4:nth-child(3) .addon-badge { background: var(--grad-mint); }

/* ────────────────────────────────────────
   BACKGROUND SECTION
──────────────────────────────────────── */
/* ==================================
   BACKGROUND SECTION
================================== */

#background{
    position:relative;
    overflow:hidden;
    padding:100px 0;
    background:linear-gradient(
        135deg,
        #0a6b4c,
        #1fb87f 55%,
        #ffd23f 140%
    );
}

#background::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    top:-180px;
    right:-180px;
}

#background::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(255,255,255,.04);
    bottom:-100px;
    left:-100px;
}

/* Story Card */

.background-story{
    position:relative;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:24px;

    padding:40px;
}

.story-icon{
    width:80px;
    height:80px;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,.12);

    color:#fff;

    font-size:30px;

    margin-bottom:25px;
}

.background-story p{
    color:rgba(255,255,255,.85);
    line-height:1.9;
}

.story-stats{
    display:flex;
    gap:20px;
    margin-top:30px;
}

.story-stat{
    background:rgba(255,255,255,.1);

    border-radius:16px;

    padding:15px 25px;

    text-align:center;
}

.story-stat span{
    display:block;
    color:#fff;
    font-size:2rem;
    font-weight:800;
}

.story-stat small{
    color:rgba(255,255,255,.8);
}

/* Right Cards */

.bg-card{
    display:flex;
    align-items:flex-start;
    gap:20px;

    padding:28px;

    margin-bottom:20px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    border-radius:20px;

    backdrop-filter:blur(10px);

    transition:.35s;
}

.bg-card:hover{
    transform:translateY(-6px);
    background:rgba(255,255,255,.12);
}

.bg-card-icon{
    width:70px;
    height:70px;

    min-width:70px;

    border-radius:18px;

    background:rgb(255, 255, 255);

    display:flex;
    align-items:center;
    justify-content:center;
}

.bg-card-icon i{
    color:#f5a623;
    font-size:28px;
}

.bg-card-content h5{
    color:#fff;
    margin-bottom:10px;
    font-weight:700;
}

.bg-card-content p{
    margin:0;
    color:rgba(255,255,255,.82);
    line-height:1.8;
}

/* Responsive */

@media(max-width:991px){

    #background{
        padding:80px 0;
    }

    .background-story{
        margin-bottom:20px;
    }
}

@media(max-width:767px){

    .bg-card{
        flex-direction:column;
    }

    .bg-card-icon{
        width:60px;
        height:60px;
        min-width:60px;
    }

    .story-stats{
        flex-wrap:wrap;
    }
}

/* ────────────────────────────────────────
   BELIEF SYSTEM
──────────────────────────────────────── */
#belief {
  position: relative; overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(180deg, #fffcee 0%, #eafbf3 100%);
}
#belief::before {
  content: "";
  position: absolute; width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,210,63,0.14);
  top: -150px; right: -180px;
}
#belief::after {
  content: "";
  position: absolute; width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(15,157,112,0.08);
  bottom: -120px; left: -120px;
}
.belief-highlight {
  position: relative; overflow: hidden;
  background: var(--grad-section);
  color: #fff;
  padding: 50px 40px;
  border-radius: 24px; height: 100%;
  box-shadow: 0 20px 50px rgba(15,157,112,0.2);
}
.belief-graphic { position: absolute; right: 20px; bottom: 15px; font-size: 130px; color: #fff; opacity: .07; }
.belief-highlight .section-eyebrow { color: rgba(255,255,255,.8); text-transform: uppercase; letter-spacing: 2px; font-size: .9rem; margin-bottom: 12px; }
.belief-highlight .section-title   { color: #fff; font-size: 3rem; font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
.belief-intro  { font-size: 1rem; line-height: 1.9; color: rgba(255,255,255,.92); margin-bottom: 35px; }
.belief-stat span  { display: block; font-size: 3.5rem; font-weight: 800; line-height: 1; }
.belief-stat small { font-size: 1rem; opacity: .9; }
.belief-wrapper { display: flex; flex-direction: column; gap: 20px; }
.belief-item {
  position: relative;
  display: flex; align-items: center; gap: 24px;
  padding: 28px 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 32px rgba(15,157,112,0.09);
  transition: all .35s ease;
}
.belief-item::before {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 5px; height: 100%;
  background: var(--grad-section);
  border-radius: 20px 0 0 20px;
}
.belief-item:hover { transform: translateY(-8px); box-shadow: 0 22px 50px rgba(15,157,112,0.16); }
.belief-icon {
  width: 80px; height: 80px; min-width: 80px;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-section);
  color: #fff; font-size: 30px;
  box-shadow: 0 10px 25px rgba(15,157,112,0.18);
  transition: .4s;
}
.belief-item:hover .belief-icon { transform: rotate(-8deg) scale(1.08); }
.belief-content { flex: 1; }
.belief-num {
  display: inline-block;
  color: var(--primary);
  font-size: .8rem; font-weight: 700;
  letter-spacing: 2px; margin-bottom: 8px;
}
.belief-content p { margin: 0; font-size: 1.05rem; font-weight: 500; color: #1d3a30; line-height: 1.8; }

@media(max-width:991px) { #belief { padding: 80px 0; } .belief-highlight { margin-bottom: 20px; } .belief-highlight .section-title { font-size: 2.4rem; } }
@media(max-width:767px) { .belief-item { padding: 22px; gap: 18px; } .belief-icon { width: 60px; height: 60px; min-width: 60px; font-size: 22px; } .belief-content p { font-size: .95rem; } .belief-highlight { padding: 35px 25px; } .belief-highlight .section-title { font-size: 2rem; } .belief-stat span { font-size: 2.8rem; } .belief-graphic { font-size: 90px; } }

/* ────────────────────────────────────────
   EXCELLENCE
──────────────────────────────────────── */
#excellence { background: #fff; }
.excellence-card {
  background: var(--grad-card);
  border-radius: 14px;
  padding: 28px 24px;
  height: 100%;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(15,157,112,0.05);
}
.excellence-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(15,157,112,0.12); }
.excellence-card .icon-wrap {
  width: 52px; height: 52px;
  background: var(--grad-section);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.excellence-card .icon-wrap i { color: var(--accent-2); font-size: 1.3rem; }
.excellence-card .icon-wrap.icon-wrap-mint { background: var(--grad-mint); }
.excellence-card .icon-wrap.icon-wrap-yellow { background: var(--grad-yellow); }
.excellence-card .icon-wrap.icon-wrap-yellow i { color: #7a5b00; }
.excellence-card h6 { font-weight: 700; color: var(--primary); font-size: 0.95rem; margin-bottom: 8px; }
.excellence-card p  { color: var(--text-muted); font-size: 0.87rem; line-height: 1.65; margin: 0; }

/* ────────────────────────────────────────
   INDUSTRY EXPERTISE
──────────────────────────────────────── */
/* ===================================================
   INDUSTRY EXPERTISE
=================================================== */

#industry{
    position:relative;
    overflow:hidden;
    padding:100px 0;

    background:linear-gradient(
        180deg,
        #ffffff 0%,
        #fffaeb 100%
    );
}

/* Decorative Shapes */

#industry::before{
    content:"";
    position:absolute;

    width:450px;
    height:450px;

    border-radius:50%;

    background:rgba(62,207,142,.06);

    top:-180px;
    right:-180px;
}

#industry::after{
    content:"";
    position:absolute;

    width:300px;
    height:300px;

    border-radius:50%;

    background:rgba(255,224,102,.18);

    bottom:-100px;
    left:-100px;
}

/* Card */

.industry-card{
    position:relative;

    background:#fff;

    border-radius:20px;

    padding:30px 25px;

    text-align:center;

    height:100%;

    overflow:hidden;

    border:1px solid rgba(15,157,112,.08);

    box-shadow:
    0 10px 30px rgba(15,157,112,.08);

    transition:all .35s ease;
}

/* Accent Line */

.industry-card::before{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--accent)
    );
}

/* Hover */

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

    box-shadow:
    0 20px 45px rgba(15,157,112,.16);
}

/* Icon */

.industry-icon{
    width:80px;
    height:80px;

    margin:0 auto 20px;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        135deg,
        var(--primary),
        #1fb87f
    );

    color:#fff;

    font-size:30px;

    transition:.35s;
}

.industry-card:hover .industry-icon{
    transform:rotate(-8deg) scale(1.08);
}

/* Rotate icon colours: blue → mint → yellow */
#industry .col-md-6:nth-child(3n+2) .industry-icon{
    background:var(--grad-mint);
}

#industry .col-md-6:nth-child(3n+3) .industry-icon{
    background:var(--grad-mint);
}

#industry .col-md-6:nth-child(3n+2) .industry-card::before{
    background:linear-gradient(90deg, var(--primary), var(--mint));
}

#industry .col-md-6:nth-child(3n+3) .industry-card::before{
    background:linear-gradient(90deg, var(--primary), var(--yellow));
}

/* Title */

.industry-card h5{
    margin:0;

    color:#13332a;

    font-size:1rem;
    font-weight:700;

    line-height:1.6;
}

/* Optional Floating Animation */

.industry-icon{
    animation:industryFloat 3s ease-in-out infinite;
}

@keyframes industryFloat{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-5px);
    }
}

/* Responsive */

@media(max-width:991px){

    #industry{
        padding:80px 0;
    }
}

@media(max-width:767px){

    .industry-card{
        padding:25px 20px;
    }

    .industry-icon{
        width:65px;
        height:65px;
        font-size:24px;
    }

    .industry-card h5{
        font-size:.95rem;
    }
}
/* ────────────────────────────────────────
   CONTACT  — vivid blue-to-navy gradient
──────────────────────────────────────── */
#contact { background: linear-gradient(135deg, #0a6b4c 0%, #14a578 60%, #1fb87f 100%); }
.contact-info-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 28px;
  backdrop-filter: blur(6px);
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--grad-accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-icon i { color: #fff; font-size: 1.1rem; }
.contact-info-item:nth-child(2) .contact-info-icon { background: var(--grad-yellow); }
.contact-info-item:nth-child(3) .contact-info-icon { background: var(--grad-yellow); }
/* .contact-info-item:nth-child(3) .contact-info-icon i { color: #7a5b00; } */
.contact-info-item h6 { color: rgba(255,255,255,0.62); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.contact-info-item p  { color: #fff; font-size: 0.93rem; margin: 0; line-height: 1.5; }

/* Contact Form */
.contact-form-card { background: #fff; border-radius: 14px; padding: 36px 32px; }
.contact-form-card h4 { font-size: 1.4rem; font-weight: 800; color: var(--primary); margin-bottom: 6px; }
.contact-form-card .sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.9rem; color: var(--text-dark);
  background: var(--light-bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus, .form-select:focus { border-color: var(--mint); box-shadow: 0 0 0 3px rgba(62,207,142,0.18); background: #fff; }
.form-label { font-weight: 600; font-size: 0.85rem; color: var(--primary); margin-bottom: 6px; }
.btn-submit {
  background: var(--grad-section);
  color: #fff; font-weight: 700; border: none;
  padding: 13px 36px; border-radius: 8px;
  font-family: 'Montserrat', sans-serif; letter-spacing: 0.04em;
  width: 100%;
  transition: filter 0.2s, transform 0.15s;
  box-shadow: 0 8px 24px rgba(15,157,112,0.22);
}
.btn-submit:hover { filter: brightness(1.08); transform: translateY(-1px); color: #fff; }

/* ────────────────────────────────────────
   FOOTER
──────────────────────────────────────── */
footer {
  background: linear-gradient(90deg, #06402e 0%, #0a6b4c 100%);
  color: rgba(255,255,255,0.62);
  padding: 24px 0; text-align: center; font-size: 0.85rem;
}
footer span { color: var(--accent-2); }

/* ── UTILITIES ── */
.divider { height: 1px; background: linear-gradient(to right, transparent, var(--border), transparent); margin: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .contact-form-card { padding: 26px 20px; }
  .about-card { padding: 24px 20px; }
  #hero { padding: 120px 0 90px; text-align: left; }
  .hero-float-card { padding: 10px 14px; gap: 9px; }
  .hero-float-card strong { font-size: 0.92rem; }
  .hero-float-card-top    { top: -16px; left: -10px; }
  .hero-float-card-bottom { bottom: -16px; right: -10px; }
  .hero-stats { gap: 22px; }
  .hero-stat-num { font-size: 1.6rem; }
  .hero-photo-frame { margin-top: 50px; }
}
