/* --------------------------------------------------
NEW BRAND COLORS
-------------------------------------------------- */
:root {
  --primary-blue: #2e52a4;
  --primary-green: #d5e041;
  --secondary-blue: #274489;
  --light-grey: #e6e6e6;

  --font-heading: "Inter", sans-serif;
  --font-body: "Open Sans", sans-serif;
}

/* --------------------------------------------------
GLOBAL FONT
-------------------------------------------------- */
body {
  font-family: var(--font-body);
}

html, body {
  overflow-x: hidden;
}


/* --------------------------------------------------
NAVBAR
-------------------------------------------------- */
.navbar-custom {
  background: transparent !important;
  transition: 0.3s ease-in-out;
  padding: 0.8rem 0;
  border-bottom: 1px solid white;
}

.navbar-scrolled {
  background: rgba(46, 82, 164, 0.92) !important; /* BRAND BLUE */
  backdrop-filter: blur(12px);
}

.navbar-open {
  background: rgba(39, 68, 137, 0.95) !important; /* DARK BLUE */
  backdrop-filter: blur(12px);
}

.navbar-brand img {
  height: 58px;
}

.nav-link {
  font-family: var(--font-heading);
  color: #ffffff !important;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  transition: 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-green) !important;
}

/* Dropdown */
.dropdown-menu {
  border-radius: 12px;
  border: none;
  padding: 0.6rem 0;
  background: #ffffff;
}

.dropdown-item {
  font-family: var(--font-body);
  padding: 0.75rem 1.3rem;
  color: var(--secondary-blue);
  font-weight: 500;
}

.dropdown-item i {
  color: var(--primary-blue);
  margin: 0 5px;
}

.dropdown-item:hover {
  background: var(--light-grey);
  color: var(--primary-blue);
  padding-left: 1.6rem;
}

/* ACCOUNT BUTTON */
.btn-account {
  background: var(--primary-green);
  color: #000 !important;
  padding: 0.55rem 1.4rem;
  font-weight: 600;
  border-radius: 30px;
  transition: 0.3s ease;
  font-family: var(--font-heading);
}

.btn-account:hover {
  background: #c3cf33;
  transform: translateY(-2px);
}

/* SPACING BETWEEN MENU ITEMS */
.navbar-nav .nav-item {
  margin: 0 5px; 
}

@media (max-width: 991px) {
  /* Reduce spacing in mobile view */
  .navbar-nav .nav-item {
    margin: 4px 0;
  }
}

/* --------------------------------------------------
PRELOADER
-------------------------------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  animation: fadeOut 0.6s ease forwards;
}

.loader-circle {
  width: 55px;
  height: 55px;
  border: 4px solid var(--light-grey);
  border-top-color: var(--primary-blue);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* --------------------------------------------------
HERO SECTION
-------------------------------------------------- */

.climatora-hero {
  position: relative;
  width: 100%;
  height: 78vh; 
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start; 
  color: #fff;
}

/* CAROUSEL BACKGROUND */
.hero-carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(45%);
}

/* HERO TEXT */
.hero-content {
  position: absolute;
  z-index: 5;
  max-width: 620px;
  margin-left: 110px;
}

.main-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.15;
}

.main-title span {
  color: var(--primary-green);
}

.hero-desc {
  margin-top: 15px;
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 480px;
  font-family: var(--font-body);
}


@media (max-width: 992px) {
  .climatora-hero {
    justify-content: center;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-content {
    max-width: 90%;
  }

  .main-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .main-title {
    font-size: 2.4rem;
  }
  .hero-content {
    margin-left: 10px;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 2rem;
  }
  .hero-content {
    margin-left: 10px;
  }
}

/* =====================================
   MOVING STATS STRIP
===================================== */

.stats-strip {
  background: linear-gradient(
    90deg,
    var(--primary-blue),
    var(--secondary-blue)
  );
  overflow: hidden;
  padding: 18px 0;
  position: relative;
}

/* Track */
.stats-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scrollStats 28s linear infinite;
  align-items: center;
}

/* Each Stat */
.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0.95;
}

/* Icon */
.stat-item i {
  font-size: 1.4rem;
  color: var(--primary-green);
}

/* Number Highlight */
.stat-item strong {
  font-weight: 900;
  color: var(--primary-green);
  margin-right: 4px;
  font-size: 1.5rem;
}

/* Animation */
@keyframes scrollStats {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Hover Pause (Desktop UX polish) */
@media (hover: hover) {
  .stats-strip:hover .stats-track {
    animation-play-state: paused;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .stat-item {
    font-size: 0.95rem;
  }

  .stat-item i {
    font-size: 1.2rem;
  }

  .stats-track {
    gap: 40px;
  }
}


/* ===============================================
LEARN SECTION
================================================ */

.learn-section-v2 {
    padding: 110px 0;
    /* background: #F6F8FF; */
    
}

.learn-left-v2 {
    padding-right: 20px;
}

.learn-heading-v2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary-blue);
    line-height: 1.2;
}

.learn-heading-v2 span {
    color: var(--primary-blue);
}

.learn-text-v2 {
    margin-top: 18px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.75;
    opacity: 0.85;
}

/* CTA BUTTON */
.learn-cta-v2 {
    display: block;
    width: fit-content;
    justify-content: center;
     margin: 25px auto 0;
    padding: 12px 32px;
    background: var(--primary-green);
    color: #000;
    border-radius: 30px;
    font-weight: 700;
    font-family: var(--font-heading);
    text-decoration: none;
    transition: 0.3s;
}

.learn-cta-v2:hover {
    transform: translateY(-4px);
}

/* RIGHT SIDE — Cards Showcase (Horizontal)  */

.learn-showcase {
    display: flex;
    gap: 24px;
}

.learn-card {
    position: relative;
    width: 33%;
    /* background: #fff; */
    border-radius: 15px;
       /* background: #F6F8FF; */
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0,0,0,0.09);
    transition: 0.3s;
    text-decoration: none;
}

.learn-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.card-title {
    padding: 14px;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--secondary-blue);
    font-weight: 700;
}

/* Hover */
.learn-card:hover {
    transform: translateY(-6px);
}

/* - MORE COURSES — Illusion Card */

/* .more-courses-card {
    background: #E6E6E6;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blur-layer {
    position: absolute;
    inset: 0;
    background: url('/public/images/Basic-SWM.png') center/cover;
    filter: blur(6px) brightness(65%);
    opacity: 0.7;
}

.more-text {
    position: relative;
    z-index: 3;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1rem;
    color: var(--secondary-blue);
    text-align: center;
} */

/* RESPONSIVE*/
@media (max-width: 992px) {
    .learn-showcase {
        flex-direction: column;
    }
    .learn-card {
        width: 100%;
    }
}

/* ==========================================
ADOPT SECTION 
========================================== */

.adopt-section {
    padding: 110px 0;
    background: var(--primary-blue); /* BRAND BLUE */
    position: relative;
}

/* LEFT SIDE - GRID */
.calc-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(2, 1fr);
}

.calc-card {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    /* border: 1px solid white; */
    /* background: #fff; */
    transition: 0.3s ease;
    cursor: pointer;
}

.calc-card img {
    width: 80%;
    height: auto;
    object-fit: cover;
    display: block;
}

.calc-label {
    position: absolute;
    left: 15px;
    bottom: 12px;
    background: rgba(0,0,0,0.45);
    padding: 6px 12px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: #fff;
}

/* Hover */
.calc-card:hover {
    transform: translateY(-6px);
}

/* RIGHT CONTENT */
.adopt-right {
    padding: 40px 50px;
    color: white;
}

.adopt-icon {
    width: 120px;
    margin-bottom: 20px;
}

.adopt-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
}

.adopt-title span {
    color: var(--primary-green);
}

.adopt-desc {
    margin-top: 20px;
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 520px;
}

/* CTA BUTTON */
.adopt-btn {
    display: inline-block;
    margin-top: 28px;
    padding: 14px 32px;
    background: var(--primary-green);
    color: #000;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    font-family: var(--font-heading);
    transition: 0.3s ease;
}

.adopt-btn i {
    margin-left: 10px;
}

.adopt-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.26);
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .calc-grid {
        grid-template-columns: 1fr;
    }
    .adopt-right {
        padding: 20px;
        text-align: center;
    }
    .adopt-title {
        font-size: 2.5rem;
    }
}

@media(max-width: 768px) {
    .adopt-title {
        font-size: 2.1rem;
    }
}


/* --------------------------------------------------
EMPOWER SECTION 
-------------------------------------------------- */

.empower-section {
    position: relative;
    padding: 50px 0;
    background: #ffffff;
    color: var(--secondary-blue); /* dark blue text */
}

/* LEFT SIDE */
.empower-left {
    padding: 40px 20px;
}

.empower-icon img {
    width: 140px;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 3px solid var(--primary-blue);
}

/* TITLE */
.empower-title {
    font-family: var(--font-heading);  /* Inter */
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--secondary-blue);
}

.empower-title span {
    color: var(--primary-green);
}

/* DESCRIPTION */
.empower-desc {
    margin-top: 20px;
    font-family: var(--font-body); /* Open Sans */
    font-size: 1.15rem;
    line-height: 1.75;
    opacity: 0.9;
}

/* BUTTON */
.empower-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 36px;
    background: var(--primary-green);
    color: #000;
    border-radius: 40px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: 0.3s ease;
}

.empower-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.empower-btn i {
    margin-left: 10px;
}

/* RIGHT GRID */
.empower-right {
    padding: 40px 20px;
}

.empower-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.empower-card {
    background: transparent !important;
    border: none !important;
    transition: 0.3s ease;
}

.empower-card img {
    width: 150px;
    border-radius: 22px;
    transition: 0.3s ease;
}

.empower-card:hover img {
    transform: translateY(-6px) scale(1.05);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.25));
}

/* RESPONSIVE */
@media (min-width: 1200px) {
    .empower-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .empower-title {
        font-size: 2.8rem;
    }
    .empower-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .empower-grid {
        grid-template-columns: 1fr;
    }
    .empower-title {
        font-size: 2.4rem;
        text-align: center;
    }
    .empower-left,
    .empower-right {
        text-align: center;
    }
}

/* -------------------------------------------------
   CLIMATE BUZZ SECTION 
------------------------------------------------- */

.buzz-section {
  padding: 100px 0;
  background: var(--light-grey); /* Softer background */
}

/* TITLE */
.buzz-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--secondary-blue);
  margin-bottom: 50px;
}

/* GRID */
.buzz-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* CARD */
.buzz-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: 0.35s ease;
  position: relative;
}

.buzz-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

/* IMAGE */
.buzz-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 4px solid var(--primary-green);
}

/* CARD CONTENT */
.buzz-body {
  padding: 22px 24px;
  font-family: var(--font-body);
}

.buzz-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--secondary-blue);
  margin-bottom: 10px;
}

.buzz-body p {
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: #333;
  line-height: 1.65;
}

/* FOOTER */
.buzz-footer {
  text-align: right;
  padding: 14px 24px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--primary-blue);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .buzz-title {
    font-size: 2.2rem;
  }

  .buzz-img img {
    height: 180px;
  }
}


/* -----------------------------------------------------
   TESTIMONIALS SECTION 
------------------------------------------------------ */

.testimonials-section {
  padding: 90px 0;
  background: var(--primary-blue); 
}

/* Remove old image overlay */
.testimonials-section::before {
  content: none;
}

/* Centers the content on top of blue */
.testimonials-section .container {
  position: relative;
  z-index: 2;
}

/* SECTION TITLE */
.testimonials-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #ffffff; /* White on blue */
  margin-bottom: 50px;
}

/* TESTIMONIAL CARD */
.testimonial-card {
  position: relative;
  background: rgba(255, 255, 255, 0.12); /* Subtle glass card */
  border-radius: 28px;
  padding: 40px 50px;
  text-align: center;

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* QUOTES */
.t-quote {
  position: absolute;
  font-size: 4.2rem;
  font-family: var(--font-heading);
  color: var(--primary-green);
  opacity: 0.95;
  font-weight: 900;
}

.t-quote-top { top: 20px; left: 25px; }
.t-quote-bottom { bottom: 20px; right: 35px; }

/* TEXT */
.t-text {
  margin-top: 30px;
  font-size: 1.15rem;
  font-family: var(--font-body);
  color: #ffffff;
  line-height: 1.75;
  font-weight: 600;
}

/* NAME */
.t-name {
  margin-top: 25px;
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #ffffff;
}

/* ROLE */
.t-role {
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--primary-green);
}

/* SWIPER LAYOUT */
.testimonials-swiper {
  padding-bottom: 60px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  height: auto !important;
}

/* SWIPER ARROWS */
.swiper-button-prev,
.swiper-button-next {
  color: #ffffff;
  transition: 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: var(--primary-green);
  transform: scale(1.25);
}

/* PAGINATION DOTS */
.swiper-pagination-bullet {
  background: rgba(255,255,255,0.4);    
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--primary-green);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 30px;
  }
  .testimonials-title {
    font-size: 2.2rem;
  }
}


/* ==========================================================
   STAY CONNECTED 
========================================================== */

.connect-stripe {
    background: var(--primary-blue);
    padding: 80px 0;
    display: flex;
    justify-content: center; /* Center the card */
    align-items: center;
}

/* MAIN CARD WRAPPER — NOW FIXED WIDTH */
.connect-stripe-wrapper {
    position: relative;
    background: white;
    border-radius: 25px;
    padding: 60px 50px;
    padding-left: 120px; 
    overflow: hidden;
    width: 85%;
    max-width: 850px;
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 0 auto; 
    box-shadow: 0 14px 32px rgba(0,0,0,0.25);
}


/* LEFT STRIPE PANEL */
.stripe-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 100%;
    background: var(--primary-green);
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

/* ICON CARD */
.stripe-icon-card {
    width: 150px;
    height: 120px;
    background: var(--secondary-blue);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(0,0,0,0.25);
}

.stripe-icon-card img {
    width: 80px;
    animation: floatIcon 4s ease-in-out infinite;
}

/* TEXT CONTENT */
.stripe-content {
    max-width: 420px;
}

.stripe-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-blue);
}

.stripe-title span {
    color: var(--primary-blue);
}

.stripe-desc {
    margin-top: 14px;
    font-family: var(--font-body);
    font-size: 1.12rem;
    color: #444;
}

/* CTA BUTTON */
.stripe-btn {
    margin-top: 22px;
    display: inline-block;
    padding: 14px 34px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 35px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.stripe-btn:hover {
    transform: translateY(-3px);
    background: var(--secondary-blue);
}

/* Floating Animation */
@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}


@media (max-width: 992px) {
    .connect-stripe-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        width: 90%;
        padding: 45px 30px;
    }

    .stripe-panel {
        width: 100%;
        height: 90px;
        border-radius: 25px 25px 0 0;
    }

    .stripe-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .stripe-icon-card {
        width: 120px;
        height: 120px;
    }

    .stripe-icon-card img {
        width: 65px;
    }

    .stripe-title {
        font-size: 2rem;
    }

    .stripe-desc {
        font-size: 1rem;
    }
}


/* -----------------------------------------
    FOOTER SECTION
-------------------------------------------- */

/* FOOTER MAIN */
.climatora-footer {
  background: #f5f7fb;
  padding: 70px 0 20px;
  position: relative;
  overflow: hidden;
}

/* GLASS OVERLAY ORNAMENT */
.climatora-footer::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: rgba(90, 181, 114, 0.25);
  border-radius: 50%;
  filter: blur(80px);
}

/* GRID */
.footer-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 50px;
  /* width: 90%; */
  margin: auto;
}

/* LOGO & TEXT */
.footer-logo {
  width: 200px;
  margin-bottom: 20px;
}

.brand-col p {
  color: #333;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 25px;
}

/* HEADINGS */
.footer-col h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1f3b82;
  margin-bottom: 18px;
}

/* LINKS */
.footer-col a {
  display: block;
  margin-bottom: 12px;
  color: #1f3b82;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
  font-size: 1rem;
}

.footer-col a i {
  color: var(--climate-green);
  margin-right: 8px;
}

/* Hover effect */
.footer-col a:hover {
  padding-left: 8px;
  color: var(--climate-green);
  filter: drop-shadow(0 0 6px rgba(90, 181, 114, 0.4));
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 18px; /* spacing between icons */
  margin-top: 20px;
}

.footer-socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
}



.footer-socials a:hover {
  color: var(--climate-green);
  transform: translateY(-3px);
}

/* FOOTER BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
  color: #1f3b82;
  font-weight: 600;
  font-size: 1rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 762px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-socials a {
    margin: 0 10px;
  }
}

/* ===========================
   CONSULTING SECTION (BRAND ALIGNED)
=========================== */

.consulting-section {
  padding: 110px 0;
  background: var(--light-grey);
}

.consulting-header {
  text-align: center;
  margin-bottom: 60px;
}

.consulting-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--secondary-blue);
}

.consulting-title span {
  color: var(--primary-blue);
}

.consulting-subtitle {
  max-width: 640px;
  margin: 14px auto 0;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #333;
  opacity: 0.9;
}

/* GRID */
.consulting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* CARD */
.consulting-card {
  position: relative;
  height: 420px;
  border-radius: 25px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
  transition: 0.35s ease;
}

.consulting-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.consulting-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(46, 82, 164, 0.15),
    rgba(0, 0, 0, 0.75)
  );
  z-index: 1;
}

.consulting-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.consulting-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.consulting-overlay p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #f0f0f0;
  line-height: 1.6;
}

/* CTA */
.consulting-cta {
  margin-top: 18px;
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-green);
  letter-spacing: 0.6px;
}

/* HOVER */
.consulting-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 50px rgba(46, 82, 164, 0.35);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .consulting-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .consulting-grid {
    grid-template-columns: 1fr;
  }

  .consulting-card {
    height: 360px;
  }

  .consulting-title {
    font-size: 2.3rem;
  }
}
