:root {
  --brand-green: #1b4321;
  --brand-bg: #d6d6d2;
  --white: #ffffff;
  --dark-text: #1a1a1a;
  --light-text: #666;
  --transition-fast: all 0.3s ease-out;
  --transition-medium: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
  --transition-slow: all 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", sans-serif;
  background: var(--white);
  color: var(--dark-text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
html {
  scroll-behavior: smooth;
}

/* --- PRELOADER ANIMATION --- */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--brand-bg);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.8s ease-out,
    visibility 0.8s ease-out;
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-logo {
  font-size: 4rem;
  color: var(--brand-green);
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: bounceIn 1s ease-out;
}
@keyframes bounceIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

/* --- NAVIGATION --- */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 92px;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.4s ease;
  z-index: 1000;
  background: #fff;
}

.logo-text {
  height: 165%;
  display: flex;
  align-items: center;
}

.logo-text img {
  width: auto;
  height: 100%;
  object-fit: contain; /* Prevent distortion */
  display: block;
}

nav.scrolled .logo-text {
  text-shadow: none;
} /* Remove shadow when scrolled */

.nav-links a {
  color: #2e402f;
  text-decoration: none;
  margin-left: 35px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
  position: relative;
}
nav.scrolled .nav-links a {
  color: var(--brand-green);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--brand-green);
  transition: var(--transition-fast);
}
.nav-links a:hover::after {
  width: 100%;
}

/* --- HERO SECTION --- */
/* --- HERO SLIDER --- */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slides {
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition:
    opacity 1s ease,
    transform 1.5s ease;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.slide-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  margin-bottom: 20px;
  animation: slideUp 1.2s ease forwards;
}
h1.slide2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 8vw, 3rem);
  margin-bottom: 20px;
  animation: slideUp 1.2s ease forwards;
}

h1.slide3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 8vw, 3rem);
  margin-bottom: 20px;
  animation: slideUp 1.2s ease forwards;
}
.slide-content p {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 35px;
  font-weight: 600;
  animation: slideUp 1.4s ease forwards;
  font-size: 11px;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 5;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: var(--brand-green);
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- BUTTON ANIMATION --- */
.btn {
  padding: 18px 45px;
  background: var(--brand-green);
  color: white;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  z-index: 1;
  transition: var(--transition-fast);
  display: inline-block;
  border: 2px solid var(--brand-green);
  overflow: hidden;
  letter-spacing: 1px;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--white);
  transition: var(--transition-fast);
  z-index: -1;
}
.btn:hover {
  color: var(--brand-green);
}
.btn:hover::before {
  left: 0;
}

/* --- REVEAL ANIMATIONS (GENERAL) --- */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: var(--transition-medium);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal.active.delay-1 {
  transition-delay: 0.2s;
}
.reveal.active.delay-2 {
  transition-delay: 0.4s;
}
.reveal.active.delay-3 {
  transition-delay: 0.6s;
}

/* --- SECTION HEADERS --- */
section {
  padding: 100px 8%;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  color: var(--brand-green);
  margin-bottom: 15px;
}
.section-header p {
  font-size: 1rem;
  color: var(--light-text);
  max-width: 900px;
  margin: 0 auto;
}
.header-line {
  width: 80px;
  height: 4px;
  background: var(--brand-green);
  margin: 25px auto;
}

/* --- WHO WE ARE / ABOUT --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-image-stack {
  position: relative;
  height: 450px;
}
.about-image-stack img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
  transform: rotate(-5deg);
  transition: var(--transition-medium);
}
.about-image-stack img:nth-child(2) {
  top: 20%;
  left: 30%;
  width: 70%;
  height: 80%;
  transform: rotate(5deg);
}
.about-image-stack.active img:nth-child(1) {
  transform: rotate(0deg) translateY(0px);
}
.about-image-stack.active img:nth-child(2) {
  transform: rotate(8deg) translateY(10px);
}

.about-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: var(--brand-green);
  margin-bottom: 20px;
}
.about-text p {
  color: var(--light-text);
  margin-bottom: 20px;
}

/* --- MISSION / VISION --- */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}
.mv-card {
  background: var(--brand-bg);
  padding: 30px;
  border-radius: 8px;
  border-left: 5px solid var(--brand-green);
  transition: var(--transition-fast);
}
.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
.mv-card h4 {
  color: var(--brand-green);
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.mv-card p {
  font-size: 0.9rem;
}

/* --- SERVICES SECTION --- */
#services {
  background: var(--brand-bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 100px;
}
.service-card {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.service-card .service-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 25px;
  transition: var(--transition-medium);
}
.service-card:hover .service-image {
  transform: scale(1.05);
}
.service-card h3 {
  font-family: "Playfair Display";
  font-size: 1.8rem;
  color: var(--brand-green);
  margin-bottom: 15px;
  z-index: 1;
}
.service-card p {
  color: var(--light-text);
  font-size: 0.95rem;
  line-height: 1.7;
}
.service-card .overlay-num {
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(27, 67, 33, 0.05);
  z-index: 0;
  user-select: none;
}

/* --- WHY CHOOSE US --- */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.why-card {
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #eee;
  transition: var(--transition-fast);
}
/* .why-card:hover {
  background: var(--brand-green);
  color: var(--white);
  border-color: var(--brand-green);
} */
.why-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--brand-green);
}
.why-card:hover h4 {
  color: var(--white);
}
.why-card p {
  color: var(--light-text);
}
.why-card:hover p {
  color: rgba(255, 255, 255, 0.8);
}

/* --- CLIENTS SECTION --- */
#clients {
  background: var(--brand-green);
  color: var(--white);
}
.client-logos {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 50px;
}
.client-logos span {
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 2px;
  opacity: 0.7;
  transition: var(--transition-fast);
}
.client-logos span:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* --- CONTACT SECTION --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.contact-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--brand-green);
  margin-bottom: 25px;
}
.contact-info p {
  color: var(--light-text);
  margin-bottom: 15px;
}

form input,
form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  transition: var(--transition-fast);
}
form input:focus,
form textarea:focus {
  border-color: var(--brand-green);
  outline: none;
  box-shadow: 0 0 5px rgba(27, 67, 33, 0.2);
}

/* --- FOOTER --- */
footer {
  background: var(--dark-text);
  color: var(--white);
  padding: 50px 8%;
  text-align: center;
}
footer .logo-text {
  color: var(--white);
  text-shadow: none;
  font-size: 1.8rem;
}
footer p {
  font-size: 0.9rem;
  margin-top: 15px;
  opacity: 0.8;
}
footer a{
    text-decoration: none !important;
}
@media (max-width: 900px) {
  .about-grid,
  .mv-grid,
  .services-grid,
  .why-us-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  nav .nav-links {
    display: none;
  } /* Mobile menu toggle would go here */
  nav {
    padding: 15px 5%;
  }
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .section-header h2 {
    font-size: 2.5rem;
  }
  .about-image-stack {
    height: 350px;
  }
}

/* Keyframe Animations for Hero Content */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.clients {
  padding: 60px 0;

  text-align: center;
  overflow: hidden;
}

.clients h2 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

.logo-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.logo-track {
  display: flex;
  width: calc(200px * 10);
  /* animation: scroll 25s linear infinite; */
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

.logo {
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.logo img {
  max-width: 140px;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .logo {
    width: 140px;
  }

  .logo img {
    max-width: 100px;
  }
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

/* Text container */
.brand-text {
  display: flex;
  gap: 20px;
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 800;
  letter-spacing: 6px;
  color: #1b4321;
  animation: breathe 5s ease-in-out infinite;
}

/* Individual word animation */
.brand-text span {
  display: inline-block;
  animation: float 3.5s ease-in-out infinite;
}

/* Delay for second word */
.brand-text span:nth-child(2) {
  animation-delay: 0.6s;
}

/* Animations */
@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

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

/* Mobile */
@media (max-width: 768px) {
  .brand-text {
    letter-spacing: 3px;
  }
}
/* --- TESTIMONIALS --- */
#testimonials {
  background: var(--brand-bg);
}

.testimonial-wrapper {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  animation: testimonialScroll 25s linear infinite;
}

.testimonial-wrapper:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  min-width: 360px;
  background: var(--white);
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--light-text);
}

.testimonial-card h4 {
  color: var(--brand-green);
  font-weight: 700;
}

.testimonial-card span {
  font-size: 0.85rem;
  color: #777;
}

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

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 280px;
  }
}
/* --- PROJECTS --- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.project-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition-fast);
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.project-info {
  padding: 25px;
  background: var(--white);
}

.project-info h3 {
  font-family: "Playfair Display", serif;
  color: var(--brand-green);
  margin-bottom: 10px;
}

.project-info p {
  font-size: 0.9rem;
  color: var(--light-text);
  margin-bottom: 8px;
}

.project-info span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-green);
}
/* ── Scene ── */
.scene {
  width: 340px;
  height: 520px;
  perspective: 1200px;
}

/* ── Card wrapper ── */
.card {
  width: 100%;
  height: 107%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.85s cubic-bezier(0.45, 0.05, 0.22, 1);
  border-radius: 20px;
}

.card.flipped {
  transform: rotateY(180deg);
}

/* ── Shared face styles ── */
.face {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.14),
    0 4px 16px rgba(0, 0, 0, 0.08);
}

/* ══════════════════════════
       FRONT FACE
    ══════════════════════════ */
.front {
  background: #fff;
  display: flex;
  flex-direction: column;
}

.front .card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
  padding: 14px 14px 0;
  display: block;
}

.front .card-body {
  padding: 22px 26px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.front .badge-number {
  position: absolute;
  bottom: 18px;
  right: 20px;
  font-family: "Playfair Display", serif;
  font-size: 72px;
  font-weight: 700;
  color: rgba(30, 80, 40, 0.07);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.front h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: #1a4a25;
  margin-bottom: 12px;
  line-height: 1.2;
}

.front p {
  font-size: 15px;
  color: #555;
  line-height: 1.65;
  font-weight: 300;
  /* margin-bottom: 24px; */
}

.btn-read-more {
  align-self: flex-start;
  background: #1a4a25;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: "Lato", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.2s;
}

.btn-read-more:hover {
  background: #246133;
  transform: translateY(-1px);
}

/* ══════════════════════════
       BACK FACE
    ══════════════════════════ */
.back {
  transform: rotateY(180deg);
  position: relative;
  height: 105%;
}

/* Background image with overlay */
.back::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1486325212027-8081e485255e?w=700&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

.back::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15, 45, 22, 0.82) 0%,
    rgba(10, 30, 15, 0.93) 100%
  );
  border-radius: 20px;
}

.back-content {
  position: relative;
  z-index: 2;
  padding: 34px 28px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.back-content .tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #cfe8d5;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.back-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 16px;
}

.back-content p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
}

.back-content .divider {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  margin: 20px 0;
}

.back-features {
  list-style: none;
  margin-bottom: 7px;
}

.back-features li {
  font-size: 13.5px;
  /* color: rgba(255, 255, 255, 0.85); */
  padding: 1px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 300;
}

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

.back-features li span.icon {
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.btn-back {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 10px 24px;
  border-radius: 50px;
  font-family: "Lato", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.2s;
}

.btn-back:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}
.section {
  idth: 100%;
    margin-bottom: 110px;
    height: 45em;
    /* max-width: 1140px; */
    background: var(--brand-green);
    /* border-radius: 28px; */
    overflow: hidden;
    position: relative;
    display: grid;
    grid-template-columns: 340px 1fr;
    min-height: 480px;
}

/* ── Decorative SVG lines background ── */
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 80px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 80px
    );
  pointer-events: none;
  z-index: 0;
}

/* ── Left panel ── */
.left-panel {
  position: relative;
  z-index: 1;
  padding: 60px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.left-panel .eyebrow {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}

.left-panel h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
}

.left-panel h2 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
}

.left-panel .desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-top: 28px;
}

/* Decorative circle accent */
.accent-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.accent-circle svg {
  width: 30px;
  height: 30px;
  stroke: rgba(255, 255, 255, 0.4);
  fill: none;
  stroke-width: 1.5;
}

/* ── Right panel: cards grid ── */
.right-panel {
  position: relative;
  z-index: 1;
  padding: 50px 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  align-content: center;
}

/* ── Industry card ── */
.industry-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: default;
  position: relative;
  overflow: hidden;
  transition:
    background 0.35s,
    border-color 0.35s,
    transform 0.3s;
}

.industry-card::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.4s;
}

.industry-card:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
}

.industry-card:hover::after {
  transform: scale(2.2);
}

/* Icon box */
.card-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, 0.85);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-number {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.07);
  line-height: 1;
  user-select: none;
}

.card-label {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
}

.card-arrow {
  margin-top: auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s,
    border-color 0.3s;
}

.industry-card:hover .card-arrow {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
}

.card-arrow svg {
  width: 12px;
  height: 12px;
  stroke: rgba(255, 255, 255, 0.7);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* staggered entrance animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.industry-card {
  opacity: 0;
  animation: fadeUp 0.55s ease forwards;
}
.industry-card:nth-child(1) {
  animation-delay: 0.05s;
}
.industry-card:nth-child(2) {
  animation-delay: 0.13s;
}
.industry-card:nth-child(3) {
  animation-delay: 0.21s;
}
.industry-card:nth-child(4) {
  animation-delay: 0.29s;
}
.industry-card:nth-child(5) {
  animation-delay: 0.37s;
}
.industry-card:nth-child(6) {
  animation-delay: 0.45s;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .section {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .left-panel {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 48px 36px;
  }
  .left-panel h2 {
    font-size: 42px;
  }
  .right-panel {
    grid-template-columns: repeat(3, 1fr);
    padding: 40px 36px;
  }
}

@media (max-width: 640px) {
  .right-panel {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px 24px;
  }
  .left-panel {
    padding: 40px 28px;
  }
}

@media (max-width: 420px) {
  .right-panel {
    grid-template-columns: 1fr;
  }
}
.footer-logo {
    width: 100% !important;
}