/* ==== RESET ==== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: "Inter", sans-serif;
    color: #111;
    background: #fff;
    line-height: 1.6;
    
    overflow-x: hidden !important;
  }
  

  @font-face {
    font-family: "main";
    src: url(../Assets/Generalsans-fonts/GeneralSans-Variable.woff2) format(woff2);
  }
  

  
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  a, p {
    position: relative;
    text-decoration: none;
    font-family: "main", sans-serif;
    color: #020202;
    font-size: 1rem;
    font-weight: 300;
    user-select: none;
  }

  .container{
    padding-top: 120px;
  }

  /* Ensure the main section fills the entire viewport */
/* Fix: Only make the HERO section full screen */
#main .hero-section {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

/* Your video container */
#main .hero-section .video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

#main .hero-section .video-container img,
#main .hero-section .video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Fix: Restore normal layout for ALL other sections */
#main section:not(.hero-section) {
  position: relative;
  width: 100%;
  height: auto;
  overflow: visible;
  margin-bottom: 120px;
}

/* Optional: container override in hero */
.container {
  padding: 0 !important;
  max-width: 100% !important;
}


  
/* ============================================
   DESKTOP NAV MENU FIX (Targets <ul class="desktop">)
=============================================== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  
}

/* Turn top nav into 2-column grid */
.logo,
.desktop,
.nav-action {
  display: block;
}



.navbar {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center;
  padding: 10px 20px;
}

.logo {
  justify-self: start;
}

.desktop {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 30px; /* <-- change this value */
  justify-self: center;
}

.nav-action {
  justify-self: end;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: #111;
  color: #fff !important;
  font-family: "main", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-action:hover {
  background: #d5b034;
  color: #fff !important;
  transform: translateY(-1px);
}



.navbar .desktop li {
  list-style: none;
}

/* override your global anchor color */
.navbar .desktop li a {
  color: #000 !important;   /* desktop links must be black */
  font-size: 1rem;
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: 0.3s ease;
}

/* hover underline */
.navbar .desktop li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: #000;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s ease;
}

.navbar .desktop li a:hover {
  color: #d5b034 !important;
}

.navbar .desktop li a:hover::after {
  transform: scaleX(1);
  background: #d5b034;
}

/* Contact button styling */
.navbar .desktop li a.btn {
  padding: 8px 18px;
  border: 2px solid #d5b034;
  border-radius: 6px;
  font-weight: 600;
}

.navbar .desktop li a.btn:hover {
  background: #d5b034;
  color: #fff !important;
}
  
/* -------------------------------- */
/* transition page                  */
/* -------------------------------- */

.transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 15;
  pointer-events: none;
  overflow: hidden;
}

/* THE ONE FULL BLOCK */
.transition-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  transform-origin: top;
  transform: scaleY(1);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  overflow: hidden; /* ensures logo is masked */
}

/* LOGO INSIDE BLOCK (does NOT stretch) */
.transition-logo {
  width: 200px;
  height: auto;
  pointer-events: none;

  position: absolute;
  inset: 0;
  margin: auto;

  /* prevent inheriting parent's scaleY */
  transform: none !important;

  /* opacity-only animation */
  opacity: 0;
  will-change: opacity;
}


/* =========================
   LOGO + MASK ANIMATION FIX
   (Smooth + Cinematic)
========================= */

/* Ensure transforms never jump */
.logo {
  transform-origin: center center;
  will-change: transform, opacity;
}

/* Cinematic entrance */
@keyframes logoReveal {
  0% {
    transform: translateY(40px) scale(0.92);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateY(0px) scale(1);
    opacity: 1;
  }
}

.logo.animate-in {
  animation: logoReveal 1.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: 0.8s; /* more cinematic */
}

/* Mask blocks — extended timing for smooth reveal */
.mask-block {
  animation: blockReveal 1.4s cubic-bezier(0.33, 0.00, 0.18, 1) forwards;
  animation-delay: var(--delay);
}

/* No glitch: exit animation begins EXACTLY where reveal ended */
@keyframes logoExit {
  0% {
    transform: translateY(0px) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-40px) scale(0.92);
    opacity: 0;
  }
}

.logo.animate-out {
  animation: logoExit 1.6s cubic-bezier(0.65, 0.05, 0.36, 1) forwards;
  animation-delay: 0.1s; /* slight pause so exit feels cinematic */
}

/* Mask fade-out also slowed + aligned */
@keyframes maskFadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

.mask-block.fade-out {
  animation: maskFadeOut 1.2s ease forwards;
  animation-delay: var(--delay);
}


  
  /* =========================================================
   NAV + MENU OVERLAY
========================================================= */

.nav {
  position: fixed;
  width: 100%;
  padding: 0px 0px;
  display: flex;
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
}

.logo a {
    font-weight: 600;
}

.logo-img {
    height: 70px; /* adjust as needed */
    width: auto;   /* keeps aspect ratio */
}

.main-menu{
  display: block;
}

.menu-toggle {
    position: relative;
    display: none;
    width: 3rem;
    height: 1.5rem;
    color: #000;
}

.navbar ul {
    
    color: #000 !important;
}



.menu-toggle p {
    position: absolute;
    transform-origin: top left;
    color: #000;
    will-change: transform, opacity;
}

.menu-toggle p#menu-close {
    opacity: 0;
    transform: translateX(-5px) translateY(10px) rotate(5deg);
}

.menu-overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  padding-left: 6cqw;
  z-index: 2;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
}

/* Menu content */
.menu-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  justify-content: center;
  align-items: center;
  transform-origin: left bottom;
  transform: none;
  opacity: 1;
  will-change: transform, opacity;
}


/* Layout */
.menu-items,
.menu-footer {
  width: 100%;
  padding: 2.5em;
  display: flex;
  gap: 2.5em;
}

.col-lg { flex: 3; }
.col-sm { flex: 2; }

/* Preview Image */
.menu-items .col-lg {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-preview-img {
  position: relative;
  width: 45%;
  height: 100%;
  overflow: hidden;
}

.menu-preview-img img {
  position: absolute;
  will-change: transform, opacity;
}

/* Links */
.menu-links,
.menu-social {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.link,
.social {
  padding-bottom: 6px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* MAIN LINKS */
.link a {
  font-size: 1.5rem;
  letter-spacing: -0.02rem;
  transform: translateY(120%);
  opacity: 1;
  color: #767676 !important;
}

/* Pure white hover fix */
.link a:hover {
  opacity: 1;
  color: #d5b034 !important;
}

.link a:hover::after {
  transform: scaleX(1);
  background: #d5b034!important;
}

/* SOCIAL LINKS — FIXED TO MATCH MAIN LINKS BEHAVIOR */
.social a {
  color: #000000;
  opacity: 1;
  transform: translateY(120%); /* SAME AS .link a */
}

.social a:hover {
  opacity: 1;
  color: #d5b034;
}

/* underline animation */
.link a::after,
.social a::after,
.menu-footer a::after {
  position: absolute;
  content: "";
  top: 102.5%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.6, 0, 0.4, 1);
}

.menu-footer {
  position: absolute;
  bottom: 0;
}

.menu-footer .col-sm {
  display: flex;
  justify-content: space-between;
}




  

/* =========================================================
   About + Values
========================================================= */

.about {
  padding-top: 0px;
  padding-bottom: 160px;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* H1 and text side-by-side aligned to top */
.about-row {
  display: flex;
  align-items: flex-start;  /* ensures top alignment */
  gap: 400px;
}

.about h1 {
  font-size: 36px;
  margin-bottom: 0; /* remove bottom gap so it aligns flush at top */
  font-weight: 600;
  min-width: 200px;
}

.about-text {
  max-width: 100%;
  line-height: 1.6;
  font-size: 15px;
  color: #333;
}

.divider {
  margin: 40px 0;
  border: none;
  height: 1px;
  background: #b4b4b4;
}

.values-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 40px;
}

/* Value 1,2,3 spacing update */
.values-container {
  display: flex;
  justify-content: space-between;  /* EVEN spacing: left, center, right */
  align-items: flex-start;
  gap: 0; /* ensure exact spacing */
  width: 100%;
}

.value-card {
  max-width: 280px; /* retain intended width */
}

.value-card h3 {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 200;
}

.value-card p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  max-width: 280px;
}

/* Icon box */
.icon-box {
  width: 80px;
  height: 80px;
  background: #f1f1f1;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-box img{
  width: 100px !important;
  height: 100px !important;
  background:none;
}

/* Responsive */


  @media (max-width: 1024px) {
  .logo-img {
    height: 40px; /* adjust as needed */
    width: auto;   /* keeps aspect ratio */
  }


  




    .navbar .desktop {
        display: none !important;
    }

    .nav-action {
        display: none !important;
    }
  
    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
  }
  
  /* Turn top nav into 2-column grid */
  .logo,
  .menu-toggle {
      display: block;
  }
  
  .navbar {
      display: grid !important;
      grid-template-columns: 1fr 1fr !important;
      align-items: center;
      padding: 10px 20px;
  }
  
  .logo {
      justify-self: start;
  }
  
  .menu-toggle {
      justify-self: end;
      display: flex !important;
      justify-content: flex-end;
      align-items: center;
  }
  
  /* Overlay */
  .menu-overlay {
      position: fixed;
      width: 100%;
      height: 100%;
      background-color: #fff;
      padding-left: 6cqw;
      z-index: 2;
      clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  }
  
  /* Menu content */
  .menu-content {
      position: relative;
      width: 100%;
      height: 100%;
      display: block;
      justify-content: center;
      align-items: center;
      transform-origin: left bottom;
      transform: none;
      opacity: 1;
      will-change: transform, opacity;
  }
  
  /* Layout */
  .menu-items,
  .menu-footer {
      width: 100%;
      padding: 2.5em;
      display: flex;
      gap: 2.5em;
  }
  
  .col-lg { flex: 3; }
  .col-sm { flex: 2; }
  
  /* Preview Image */
  .menu-items .col-lg {
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
  .menu-preview-img {
      position: relative;
      width: 45%;
      height: 100%;
      overflow: hidden;
  }
  
  .menu-preview-img img {
      position: absolute;
      will-change: transform, opacity;
  }
  
  /* Links */
  .menu-links,
  .menu-social {
      display: flex;
      flex-direction: column;
      gap: 0.5em;
    
  }
  
  .link,
  .social {
      padding-bottom: 6px;
      clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
      
  }
  
  /* MAIN LINKS */
  .link a {
      font-size: 3.5rem;
      letter-spacing: -0.02rem;
      transform: translateY(120%);
      opacity: 1;
      color: #767676 !important;
  }
  
  /* Pure white hover fix */
  .link a:hover {
      opacity: 1;
      color: #d5b034 !important;
  }
  
  .link a:hover::after {
      transform: scaleX(1);
      background: #d5b034!important;
  }
  
  /* SOCIAL LINKS — FIXED TO MATCH MAIN LINKS BEHAVIOR */
  .social a {
      color: #000000;
      opacity: 1;
      transform: translateY(120%); /* SAME AS .link a */
  }
  
  .social a:hover {
      opacity: 1;
      color: #d5b034;
  }
  
  /* underline animation */
  .link a::after,
  .social a::after,
  .menu-footer a::after {
      position: absolute;
      content: "";
      top: 102.5%;
      left: 0;
      width: 100%;
      height: 2px;
      background: #fff;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s cubic-bezier(0.6, 0, 0.4, 1);
  }
  
  .menu-footer {
      position: absolute;
      bottom: 0;
  }
  
  .menu-footer .col-sm {
      display: flex;
      justify-content: space-between;
  }
  
  
  

  /* Stack h1 and text on mobile */
  .about-row {
      flex-direction: column;
      gap: 20px;
  }

  /* Stack values vertically on mobile */
  .values-container {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
  }

  .about-text {
      max-width: 100%;
  }



  .values-container {
    display: flex;
    flex-direction: column;
    align-items: left;   /* Center the cards horizontally */
    justify-content: left;
    text-align: left;    /* Center all text inside */
    width: 100%;
  }

  .value-card {
    width: 100%;
    max-width: 340px;      /* Prevents cards from stretching too wide */
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: left;   /* Center icon + text */
    justify-content: left;
    text-align: left;
  }

  .value-card .icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;
    margin-bottom: 15px;
  }

  .value-card .icon-box img {
    display: block;
    margin: 0 auto;     /* Ensures icon is centered */
  }

  .value-card h3,
  .value-card p {
    text-align: left;  /* Hard-center text */
  }
}





/* =========================================================
   textfade
========================================================= */

section.textfade-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 5rem);
  padding-top: 160px !important; /* removed horizontal padding */
  padding-bottom: 80px !important; /* removed horizontal padding */
  margin: 0 auto;
  width: 90%;
  max-width: 1400px;
  box-sizing: border-box;
}

.textfade-top {
  text-align: left;
  margin-bottom: 1rem;
}

.small-text {
  font-size: clamp(0.8rem, 1.2vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 1px;
  color: #000000;
  text-transform: uppercase;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.textfade {
  width: min(64%, 880px);
  display: flex;
  justify-content: flex-start; /* changed from place-content:center */
  margin-bottom: 2rem;
}

.fade-text {
  margin-top: 12px !important;
  text-align: left !important;
  font-weight: 300 !important;
  width: 100%;
  line-height: 0.88 !important;
  opacity: 1;
  font-size: clamp(5.5rem, 9vw, 9.5rem) !important;
}

.fade-text span {
  display: inline-block;
}

.textfade-image {
  width: min(36%, 420px);
  aspect-ratio: 2 / 3;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  flex: 0 0 min(36%, 420px);
}

.textfade-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Layout Adjustments */
@media (max-width: 1024px) {
  .textfade-section {
    align-items: flex-start;
    flex-direction: column;
    gap: 2rem;
    padding: 0 !important; /* removed horizontal padding */
  }

  .textfade,
  .textfade-image {
    width: 100%;
    flex-basis: auto;
  }

  .textfade-image {
    max-width: 520px;
  }
}

@media (max-width: 768px) {



  .textfade-section {
    padding: 0 !important; /* removed horizontal padding */
  }
  .fade-text {
    line-height: 0.95 !important;
    font-size: clamp(4rem, 14vw, 6.25rem) !important;
  }
}

@media (max-width: 480px) {
  .textfade-section {
    padding-top: 60px !important;
    height: 100% !important; /* shortened for mobile */
    padding-bottom: 60px !important;
  }
  
  .fade-text {
    font-size: clamp(3.1rem, 18vw, 4.2rem) !important;
  }
  .textfade-image {
    max-width: 100%;
  }
  .small-text {
    font-size: clamp(0.7rem, 3.2vw, 1rem);
  }
}



/* =========================================================
   Fuel-graph
========================================================= */

.fuel-solutions-section {
  padding: 0px 0;
  border-top: 1px solid #b4b4b4;
  margin: 0 auto;
  width: 90%;
  max-width: 1200px;
  background: #fff;
  padding-bottom: 120px;
}

/* ─────────── TOP LAYOUT ─────────── */
.fuel-solutions-top {
  width: 100%;
  margin: 0 auto;
  display: flex;
  padding-top: 40px;
  padding-bottom: 80px;
  justify-content: space-between;
  gap: 60px;
}

.fuel-title h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.05;
  margin: 0;
}

.fuel-description {
  flex: 0 0 45%;
  padding-top: 0px;
}

.fuel-description p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ─────────── GRAPH AREA ─────────── */
.fuel-graph {
  width: 100%;
  margin:  0 auto;
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.fuel-multiplier {
  flex: 0 0 25%;
  font-size: 336px;
  line-height: 0.9;
  font-weight: 00;
  color: #d5b034;
}

.fuel-bars {
  flex: 1;
  position: relative;
  width: 60%;
  padding-top: 20px;
}

/* ─────────── GRID LINES ─────────── */

.grid-lines {
  position: absolute;
  left: 0;
  top: 0;
  height: 300px;
  width: 100%;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.grid-lines span {
  width: 1px;
  background: #d0d0d0a3;
}

/* ─────────── BARS ─────────── */

.bar-item {
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

/* LABELS (start hidden) */
.bar-label {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 200;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.bar-label {
  opacity: 0;
  transform: translateY(12px);
}

/* SHOW LABEL */
.bar-label.show-label {
  opacity: 1;
}

/* BAR ANIMATION (cinematic smooth) */
.bar {
  height: 40px;
  width: 0;
  transition: width 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bar-black {
  background: #000;
}

.bar-blue {
  background: #d5b034;
}

/* AXIS */
.bar-axis {
  font-size: 10px;
  color: #666;
  padding-top: 40px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
}

.fuel-description a{
  position: relative;
  text-decoration: underline;
  color: #000;
  font-size: 15px;
  font-weight: 300;
  user-select: none;
  flex: 0.5;
  width: auto;
  transform: 0.3s ease;
}

.fuel-description a:hover{
  text-decoration: underline;
  color: #d5b034;
}

/* =========================================================
   MOBILE RESPONSIVE LAYOUT (smaller + centered)
========================================================= */
@media (max-width: 768px) {

  .fuel-solutions-top {
    flex-direction: column;

    gap: 30px;
    padding: 40px  0px;
    text-align: left; /* CENTER TITLE + DESCRIPTION */
  }

  .fuel-title h2 {
    font-size: 26px;
    text-align: left;
  }

  .fuel-description {
    flex: unset;
    text-align: left; /* CENTER PARAGRAPHS */
  }

  .fuel-description p {
    font-size: 14px;
  }

  .fuel-graph {
    flex-direction: column;
    gap: 30px;
  }

  .fuel-multiplier {
    font-size: 140px;
    text-align: left;   
    flex: unset;
    margin: 0% auto;
    width: 100%;
  }

  .fuel-bars {
    width: 100%;
    margin: 0 auto;
  }

  .grid-lines {
    height: 280px;
  }

  .bar {
    height: 32px;
  

  }

  .bar-label {
    font-size: 12px;
  }
}














/* =========================================================
   Goals
========================================================= */

.goals-section {
  margin: 0 auto 120px;
  padding-top: 64px;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.55fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
}

.goals-intro {
  padding-top: clamp(24px, 4vw, 64px);
}

.goals-intro h2 {
  margin: 0 0 18px;
  color: #080814;
  font-family: "main", sans-serif;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 0;
}

.goals-intro p {
  max-width: 520px;
  margin: 0;
  color: #4a4a4f;
  font-family: "main", sans-serif;
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.5;
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.goal-card {
  min-height: clamp(270px, 26vw, 392px);
  padding: clamp(30px, 4vw, 58px);
  border: 1px solid rgba(0, 0, 0, 0.22);
  background: #fff;
  display: grid;
  grid-template-rows: minmax(70px, 1fr) minmax(118px, auto) auto;
  align-items: end;
}

.goal-card i {
  align-self: start;
  justify-self: start;
  color: #d5b034;
  font-size: clamp(34px, 3.4vw, 48px);
}

.goal-card p {
  max-width: 390px;
  margin: 0;
  color: #505055;
  font-family: "main", sans-serif;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
}

.goal-card span {
  display: block;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  color: #505055;
  font-family: "main", sans-serif;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.2;
  font-weight: 600;
}

@media (max-width: 980px) {
  .goals-section {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-bottom: 90px;
  }

  .goals-intro {
    padding-top: 34px;
  }

  .goals-intro p {
    max-width: 720px;
  }
}

@media (max-width: 640px) {
  .goals-section {
    padding-top: 42px;
    margin-bottom: 70px;
  }

  .goals-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .goal-card {
    min-height: 260px;
    padding: 28px;
    grid-template-rows: minmax(52px, 1fr) minmax(92px, auto) auto;
  }

  .goals-intro h2 {
    font-size: clamp(42px, 15vw, 62px);
  }
}








/* =========================================================
   Profile 
========================================================= */


/* =========================================================
   ORIGINAL CSS (unchanged)
========================================================= */

/* MAIN FLEX CONTAINER */
.profile-section {
  width: 90%;
  margin: 0px auto; 
  max-width: 1200px;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 120px;
}

/* NAME ON TOP (LEFT SIDE) */
.profile-left {
  width: 100%;
}

.profile-name {
  font-size: 80px;
  font-weight: 700;
  line-height: 0.95;
  margin-bottom: 40px;
}

/* FLEX ROW: IMAGE WRAPPER + RIGHT SIDE */
.profile-bottom-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

/* IMAGE WRAPPER */
.profile-image-wrapper {
  background: #d5b034;
  padding: 18px;
  border-radius: 15px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
}

.profile-image-wrapper img {
  width: 100%;
  border-radius: 0px;
  transform: translateY(18px);
  object-fit: cover;
}

/* RIGHT SIDE */
.profile-right {
  width: 100%;
  box-sizing: border-box;
}

/* Top Divider */
.top-divider {
  border: none;
  border-top: 1px solid #b4b4b4;
  margin: 0 0 25px 0;
  width: 100%;
}

.profile-title {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 600;
}

.profile-description {
  font-size: 15px;
  line-height: 1.5;
  width: 100%;
  margin-bottom: 350px;
}

/* Inner dividers */
.divider {
  border: none;
  border-top: 1px solid #b4b4b4;
  margin: 20px 0;
}

.profile-subtitle {
  font-size: 15px;
  margin: 15px 0;
}

/* =========================================================
   MOBILE VERSION — EXACT MATCH TO REFERENCE
========================================================= */

@media (max-width: 768px) {

  #main section:not(.hero-section){
    width: 90%;
  }

  /* Stack vertically */
  .profile-bottom-row {
    flex-direction: column;
    gap: 35px;
  }

  /* Center the name */
  .profile-name {
    font-size: 60px;
    text-align: center;
    margin-bottom: 25px;
  }

  /* Image wrapper centered and fixed ratio */
  .profile-image-wrapper {
    width: 100%;
    min-height: 380px;
    padding: 28px;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .profile-image-wrapper img {
    width: min(74%, 300px);
    height: auto;
    transform: none;
    object-fit: contain;
    object-position: center;
  }

  /* CEO title centered */
  .profile-title {
    text-align: center;
    font-size: 24px;
    margin-top: 5px;
  }

  /* Divider full-width + centered */
  .top-divider {
    width: 100%;
    margin: 25px auto;
  }

  /* Description centered like reference */
  .profile-description {
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 62ch;
    margin-left: auto;
    margin-right: auto;
  }

  /* Inner Dividers evenly spaced */
  .divider {
    width: 100%;
    margin: 30px 0;
  }

  /* Subtitles centered and bold */
  .profile-subtitle {
    text-align: center;
    font-size: 17px;
    font-weight: 200;
    width: 100%;
  }

}





/* --------------------------------------------
   Footer
--------------------------------------------- */

.contact-section {
  width: 100%;
  padding: 80px 60px;
  padding-bottom: 0 !important;
  background: #f8f8f8; /* match reference light grey */
  font-family: sans-serif;
}


.contact-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 100px;
}

.contact-desc p {
  font-size: 24px;
  line-height: 1.5;
  max-width: 800px;
  color: black;
}

.contact-info {
  display: flex;
  flex-direction: column;
  
  gap: 80px;
}

.info-block h4 {
  font-size: 18px;
  margin-bottom: 6px;
  font-weight: 600;
}

.info-block p,
.info-block a {
  font-size: 16px;
  line-height: 1.4;
  text-decoration: none;
  color: black;
}

.info-block a:hover {
  opacity: 0.7;
}


.contact-bottom{
  max-width: 1200px;
  margin: 0 auto;
}

.vehicle-label {
  font-size: 20px;
  margin-bottom: -40px;   /* REDUCED SPACE HERE */
  font-weight: 300;
  color: black;
}

/* Arrow now sits NEXT TO the title */
.connect-row {
  display: flex;
  align-items: center;
  gap: 80px;        /* space between title and arrow */
}

.connect-title {
  font-size: 100px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 2px;
  display: inline-block;
  color: #000;
  transition: color 0.3s ease;
}

.connect-arrow {
  width: 100px;
  height: auto;
  margin-left: 100px;
  display: inline-block;
  transition: transform 0.3s ease, fill 0.3s ease; /* added transform transition */
  fill: #000; /* initial color of SVG */
}

/* Hover effect on title also affects the arrow */
.connect-title:hover {
  color: #d5b034;
}

/* Scale arrow when title is hovered */
.connect-title:hover + .connect-arrow {
  transform: scale(1.2); /* arrow expands */
  fill: #d5b034; /* optional: change arrow color */
}





@media (max-width: 900px) {
  .connect-title {
    font-size: 90px;
  }

  .connect-arrow {
    width: 120px;
  }

  .contact-top {
    flex-direction: column;
    gap: 80px;
  }
}





/* --------------------------------------------
   RESPONSIVE
--------------------------------------------- */
@media (max-width: 900px) {
  .connect-title {
    font-size: 90px;
  }

  .connect-arrow {
    width: 120px;
  }

  .contact-top {
    flex-direction: column;
    gap: 80px;
  }
}





.item {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  max-width: 1200px;
  width: 90%;
  margin: 0px auto;
  padding: 30px 0;
  border-top: 1px solid #ddd;
}

.item:last-child {
  border-bottom: 1px solid #ddd;
}

.heading {
  font-size: 1.5rem;
  font-weight: bold;
}

.text {
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .item {
      grid-template-columns: 1fr;
      gap: 15px;
      text-align: center;
  }

  .heading,
  .text {
      text-align: center;
  }
}

/* =========================================================
   BUTTON + ACCENT OVERRIDES
========================================================= */
:root {
  --site-accent: #d5b034;
}

.nav-action,
.navbar .desktop li a.btn {
  background: #000 !important;
  background-color: #000 !important;
  border-color: #000 !important;
  color: #fff !important;
}

.nav-action:hover,
.navbar .desktop li a.btn:hover {
  background: var(--site-accent) !important;
  background-color: var(--site-accent) !important;
  border-color: var(--site-accent) !important;
  color: #fff !important;
}
