/* ========================================= */
/* LOCAL FONTS SETUP (Self-Hosted)           */
/* ========================================= */

/* 1. Audiowide (Headers & Logistics) */
@font-face {
  font-family: 'Audiowide';
  src: url('../../fonts/Audiowide-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* 2. Cuprum (Body Text) */
@font-face {
  font-family: 'Cuprum';
  src: url('../../fonts/Cuprum-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* 3. Exo 2 (Search Bar) */
@font-face {
  font-family: 'Exo 2';
  src: url('../../fonts/Exo2-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* 4. Reggae One (Story Headers) */
@font-face {
  font-family: 'Reggae One';
  src: url('../../fonts/ReggaeOne-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* 5. Play (Highlight Text/Quotes) */
@font-face {
  font-family: 'Play';
  src: url('../../fonts/Play-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* 6. Allura (Signature) */
@font-face {
  font-family: 'Allura';
  src: url('../../fonts/Allura-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


:root {
  --gold: #d4af37;
  --dark-bg: #1c1c1c;
  --cream-bg: #f4f1ec;
  
  /* FONTS */
  --font-header: "Audiowide", sans-serif;
  --font-body: "Cuprum", sans-serif;
  
  /* ADDED THESE MISSING VARIABLES */
  --font-search: "Exo 2", sans-serif; 
  --font-logistics-services: "Audiowide", sans-serif; 
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
}

html, body {
  height: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  
  font-weight: 600;
}

body {
  overflow-y: auto;  /* ensure scrolling is enabled */
  background: #f4f1ec; /* smokey cream white */
}

/* HEADER BASE (REDUCED HEIGHT) */
.main-header {
  position: sticky;
  top: 16px; /* creates floating gap */
  background: #1c1c1c;

  border-radius: 70px;
  /* Bar length trimmed to 8/10 of the viewport, centered — matches the
     auto-deals and logistics nav bars. */
  width: 80%;
  margin: 0 auto;

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.25),
    0 4px 12px rgba(0, 0, 0, 0.15);

  z-index: 100;
  padding-bottom: 20px;
}



.page-indicator,
.search-zone,
.header-actions {
  margin-top: 45px; /* pulls them down to center */
  margin-left: 35px;
}


.header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between; /* label left, buttons right */
  padding: 12px 48px; /* reduced vertical padding */
  gap: 24px;
  position: relative;
}

/* LOGO OVERLAP (50% INTO BODY) */
.logo-zone {
  position: absolute;
  left: -65px; /* matches auto-deals / logistics overlap */
  top: 2px; /* pushes logo down */
  z-index: 100;
}

.logo-zone img {
  height: 250px;
  object-fit: contain;
}

/* PAGE INDICATOR */
.page-indicator {
  margin-left: 260px; /* clears the seated logo */
  position: relative;
  padding-bottom: 6px;
  
}

.page-title {
  color: #e6b35c;
  
  display: inline-block;
  animation: slideDown 0.6s ease forwards;
  font-family: var(--font-header);
  font-weight: 400;
  font-size: 20px; /* adjust freely */
  letter-spacing: 1px;
  cursor: pointer;                /* Shows the hand icon */
  transition: transform 0.3s ease; /* Makes the zoom smooth */

  
}

/* ZOOM OUT EFFECT ON HOVER */
.page-title:hover {
  transform: scale(0.92); /* Scales down to 92% (Zoom Out) */
}

.active-underline {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  
  /* Simple Gold Gradient */
  background: linear-gradient(to right, #d4af37, #f5c46b);
  
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(212,175,55,0.4);
  
  /* Smoothly return to center when mouse leaves */
  transition: transform 0.3s ease; 
}

/* When cursor is on Auto Deals, physically move the line back and forth */
.page-indicator:hover .active-underline {
  animation: moveLinePhysical 1s ease-in-out infinite;
}

@keyframes goldFlow {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 200% 0; /* Moves the gradient fully across */
  }
}

@keyframes moveLinePhysical {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px); /* Move right 10 pixels */
  }
  100% {
    transform: translateX(0);    /* Move back to start */
  }
}

/* SEARCH (COMPACT + ICON BACKUP) */
.search-zone {
  flex: 1;
  max-width: 400px;
  position: relative;
  border-radius: 30px;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  pointer-events: none; /* icon is visual backup, not blocking */
}
.search-zone::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;

  background: radial-gradient(circle, #ff4d4d 30%, rgba(255,77,77,0.3) 60%, transparent 75%);
  filter: drop-shadow(0 0 6px rgba(255,77,77,0.9))
        drop-shadow(0 0 12px rgba(255,77,77,0.6));
  border-radius: 50%;
  

  offset-path: inset(0 round 30px);
  offset-distance: 0%;
  offset-rotate: auto;

  animation: searchRunner 4s linear infinite;

  pointer-events: none;
  z-index: 1;
}

.search-zone.gold-glow::before {
  background: radial-gradient(
    circle,
    #d4af37 30%,
    rgba(212,175,55,0.4) 60%,
    transparent 75%
  );

  filter: drop-shadow(0 0 6px rgba(212,175,55,0.9))
          drop-shadow(0 0 14px rgba(212,175,55,0.6));
}

.search-zone:focus-within::before {
  animation: none;
  opacity: 0;
}




.search-zone input {
  width: 100%;
  padding: 10px 16px 10px 40px; /* space for icon */
  border-radius: 24px;
  border: 1px solid #444;
  background: #2a2a2a;
  color: #fff;
  font-family: var(--font-search);
  font-weight: 400;
  font-size: 15px;
  position: relative;
  z-index: 2;
}



.search-zone input:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 8px rgba(212,175,55,0.4);
}

/* SEARCH DROPDOWN */
.search-dropdown {
  display: none;
  position: absolute;
  top: 46px;
  width: 100%;
  background: #242424;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

.search-dropdown.active {
  display: block;
}

.search-item {
  padding: 8px;
  color: #ddd;
}

/* ACTION BUTTONS */
.header-actions {
  display: flex;
  gap: 30px;
  margin-right: 32px; /* pulled away from edge */
  
}




.nav-btn1 {
  padding: 8px 18px;
  border-radius: 0 18px 0 18px;
  background: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-logistics-services);
  font-weight: 400;
  font-size: 16px; /* adjust freely */
  transition: transform 0.25s ease, letter-spacing 0.25s ease;

}
.nav-btn2 {
  padding: 8px 18px;
  border-radius: 18px 0 18px 0;
  background: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-logistics-services);
  font-weight: 400;
  font-size: 16px; /* adjust freely */
  transition: transform 0.25s ease, letter-spacing 0.25s ease;

}

.nav-btn1:hover {
  /* background: #d4af37; */
  /* color: #111; */
  transform: scale(1.12);
  letter-spacing: 1px;

}
.nav-btn2:hover {
 /* background: #d4af37; */
 /* color: #111; */
 transform: scale(1.12);
  letter-spacing: 1px;

}

/* ANIMATIONS */
@keyframes underlineIn {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes slideDown {
  from { transform: translateY(-8px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes buttonPress {
  0%   { transform: scale(1.12); }
  50%  { transform: scale(0.95); }
  100% { transform: scale(1.08); }
}
@keyframes searchRunner {
  from {
    offset-distance: 0%;
  }
  to {
    offset-distance: 100%;
  }
}


/* SLIDER SECTION*/




/* 1. HIDE MOBILE ELEMENTS ON DESKTOP */
.mobile-nav-trigger, 
.mobile-menu-overlay {
  display: none;
}

/* 2. MOBILE RESPONSIVENESS */


/* Ensure it's hidden on Desktop */
@media (min-width: 993px) {
    .mobile-menu-overlay {
        display: none !important;
    }
}


/* SLIDER CONTAINER */




/* END SLIDE BAR*/

/* LEFT FILTER SIDEBAR */

/* ============================= */
/* LEFT FILTER SIDEBAR (VERTICAL) */
/* ============================= */

.filter-sidebar {
  position: fixed;
  bottom: 24px;
  left: 80px;

  width: 300px;

  
  color: #ffffff;
  background:
    linear-gradient(
      180deg,
      rgba(40, 40, 40, 0.75),
      rgba(25, 25, 25, 0.82)
    );



  border: 1.5px solid rgba(212,175,55,0.65);
  border-radius: 22px;

  backdrop-filter: blur(8px);

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    0 6px 16px rgba(0, 0, 0, 0.12);

  z-index: 20;

  display: flex;
  flex-direction: column;

  /* COLLAPSE CONTROL */
  max-height: 70px; /* header-only */
  overflow: hidden;

  transition:
    max-height 0.45s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.filter-sidebar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0)
    );

  pointer-events: none;
}



/* EXPANDED STATE */
.filter-sidebar.expanded {
  max-height: calc(100vh - 320px);
}

/* ============================= */
/* SIDEBAR HEADER (ALWAYS VISIBLE) */
/* ============================= */

.sidebar-header {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px 14px;

  border-bottom: 1px solid rgba(212,175,55,0.4);
  border-radius: 18px 18px 0 0;
  box-shadow:
    inset 0 -1px 0 rgba(212,175,55,0.25);
}




/* SEARCH INPUT */
.sidebar-search {
  flex: 1;

  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid rgba(212,175,55,0.5);

  background: rgba(20,20,20,0.9);
  color: var(--sidebar-text);
  font-family: var(--font-search);
  font-weight: 400;
  font-size: 15px;

  font-size: 14px;
}

.sidebar-search::placeholder {
  color: var(--sidebar-text);
  font-family: var(--font-search);
  font-weight: 400;
  font-size: 15px;
}

.sidebar-search:focus {
  outline: none;
  border-color: #d4af37;
}

/* TOGGLE BUTTON (UP / DOWN) */
.sidebar-toggle {
  width: 36px;
  height: 36px;

  border-radius: 50%;
  border: 2px solid #d4af37;
  background: #111;

  color: #d4af37;
  font-size: 18px;

  cursor: pointer;

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

  box-shadow:
    0 6px 14px rgba(212,175,55,0.35),
    inset 0 1px 2px rgba(255,255,255,0.15);

  transition: transform 0.3s ease;
}
.sidebar-toggle:hover {
  transform: scale(1.08);
}

/* ROTATE ARROW WHEN EXPANDED */
.filter-sidebar.expanded .sidebar-toggle {
  transform: rotate(180deg);
}




/*===end====*/

/*===Search Button side panel*/
.filter-action {
  margin-top: auto;               /* ⬅ pushes it to the bottom */
  
  padding: 14px;
  border-top: 1px solid rgba(212,175,55,0.25);
}

.filter-search-btn {
  width: 100%;
  padding: 11px;

  border-radius: 16px;
  border: 1px solid rgba(212,175,55,0.6);

  background: linear-gradient(135deg, #d4af37, #f5c46b);
  color: #111;

  font-family: var(--font-search);
  font-weight: 700;
  font-size: 15px;

  cursor: pointer;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.filter-search-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 10px 22px rgba(212,175,55,0.35);
}

/*-----------======END=====--------*/

/* ========================================= */
/* MOBILE MENU REDESIGN (MATCHING LOGISTICS) */
/* ========================================= */

@media (max-width: 992px) {

  /* 1. HEADER LAYOUT FIX */
  .main-header {
    width: auto; /* cancel the desktop 80% trim on mobile */
    margin: 10px 16px;
    height: 70px; /* Fixed height for stability */
    display: flex;
    align-items: center;
    justify-content: center; /* Centers the inner content */
    padding-bottom: 0;
    z-index: 1000;
  }

  .header-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Pushes Logo Left, Menu Right */
    padding: 0 10px;
    position: static;
  }

  /* Hide Desktop Elements */
  .header-actions, .search-zone { display: none; }

  /* 2. LOGO RESIZING & POSITIONING */
  .logo-zone {
    position: relative;
    top: auto; left: auto; /* Reset absolute positioning */
    display: flex;
    align-items: center;
    margin-left: -45px;
  }

  .logo-zone img {
    height: 150px; /* Much smaller to fit inside header */
    width: auto;
    object-fit: contain;
    margin-top: 55px; /* Slight nudge to align with text */
  }

  /* 3. PAGE TITLE CENTERED */
  .page-indicator {
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* Dead center */
    margin: 0;
    padding: 0;
    white-space: nowrap;
    top: 24px;
  }

  .page-title {
    font-size: 16px;
    letter-spacing: 1px;
    color: #d4af37;
  }
  
  /* Hide the underline on mobile for cleaner look */
  .active-underline { display: none; }

  /* 4. CIRCULAR MENU BUTTON */
  .mobile-nav-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; 
    height: 40px;
    background: transparent;
    border: 2px solid #d4af37;
    border-radius: 50%; /* Makes it a circle */
    cursor: pointer;
    z-index: 1100;
    transition: all 0.3s ease;
  }

  /* Hamburger Lines */
  .hamburger-lines {
    width: 20px;
    height: 14px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .line {
    display: block;
    height: 2px;
    width: 100%;
    background: #d4af37;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s;
  }

  /* ANIMATION: TURN TO 'X' WHEN ACTIVE */
  .mobile-nav-trigger.active {
    background: #d4af37; /* Optional: Fill circle when active */
  }
  .mobile-nav-trigger.active .line { background: #1c1c1c; } /* Lines turn dark */
  
  .mobile-nav-trigger.active .line1 {
    transform: rotate(45deg);
    position: absolute;
    top: 6px;
  }
  .mobile-nav-trigger.active .line2 { opacity: 0; }
  .mobile-nav-trigger.active .line3 {
    transform: rotate(-45deg);
    position: absolute;
    top: 6px;
  }

  /* 5. THE FLOATING CARD MENU (EXACT LOOK) */
.mobile-menu-overlay {
        position: fixed;
        /* Aligns nicely under the header */
        top: 85px; 
        
        /* CHANGE: Remove Left/Center alignment */
        left: auto; 
        /* CHANGE: Anchor to the Right side (matches your button position) */
        right: 30px; 
        
        /* CHANGE: Make it slightly narrower for a neat side-menu look */
        width: 260px; 
        height: auto;
        
        /* THE GLASS EFFECT */
        background: rgba(28, 28, 28, 0.95); /* Slightly darker for readability */
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        
        border: 1px solid rgba(212, 175, 55, 0.3);
        border-radius: 20px;
        /* Add a corner radius tweak so it points to the button */
        border-top-right-radius: 5px; 
        
        box-shadow: 0 15px 40px rgba(0,0,0,0.5);
        
        /* Animation Setup (Hidden state) */
        opacity: 0;
        visibility: hidden;
        /* CHANGE: Only animate Up/Down, not Left/Right */
        transform: translateY(-20px); 
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        
        display: flex;
        flex-direction: column;
        padding: 20px;
        z-index: 1050;
    }

    /* 2. The Active State (Triggered by JS) */
    .mobile-menu-overlay.menu-active {
        opacity: 1;
        visibility: visible;
        /* CHANGE: Slide to natural position (0) */
        transform: translateY(0); 
    }

    /* 3. Style the Navigation Container */
    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        text-align: left;
    }

    /* 4. Style the Links (.m-link) */
    .m-link {
        font-family: var(--font-expand-subject);
        font-size: 16px;
        color: #ccc;
        text-decoration: none;
        padding: 12px 15px;
        border-radius: 12px;
        transition: all 0.3s ease;
        border: 1px solid transparent;
        display: flex;
        align-items: center;
        letter-spacing: 1px;
    }

    /* 5. Hover Effects */
    .m-link:hover {
        background: rgba(212, 175, 55, 0.15);
        color: #fff;
        border-color: rgba(212, 175, 55, 0.3);
        transform: translateX(10px);
    }

    /* Gold icon before links */
    .m-link::before {
        /* content: '\eb7b'; Unicon code */
        font-family: 'Unicons';
        margin-right: 10px;
        color: #d4af37;
        font-size: 18px;
        font-weight: normal; /* Ensures icons aren't bold/bloated */
    }
  
    
  
}
/* 1. HOME -> House Icon */
.mobile-nav-links .m-link:nth-child(1)::before {
    content: '\e9fe'; /* uil-home-alt */
}

/* 2. AUTO DEALS -> Car Icon */
.mobile-nav-links .m-link:nth-child(2)::before {
    content: '\e93f'; /* uil-car */
}

/* 3. LOGISTICS -> Truck Icon */
.mobile-nav-links .m-link:nth-child(3)::before {
    content: '\e98d'; /* uil-truck */
}

/* 4. SERVICES -> Wrench/Cog Icon */
.mobile-nav-links .m-link:nth-child(4)::before {
    content: '\eb07'; /* uil-setting */
}


/* Ensure it's hidden on Desktop */
@media (min-width: 993px) {
    .mobile-menu-overlay {
        display: none !important;
    }
}





/* ========================================= */
/* ABOUT US SPECIFIC STYLES                  */
/* ========================================= */



body {
  background: var(--cream-bg);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- HERO SECTION --- */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  margin-top: 30px;
  background-image: url('../images/truck.PNG'); /* Use one of your high-res car images */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 0 0 50px 50px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 20px;
}

.hero-content h1 {
  font-family: var(--font-header);
  font-size: 3.5rem;
  line-height: 1.1;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-content h1:nth-child(2) {
  color: var(--gold);
}

.hero-content p {
  font-family: var(--font-body);
  font-size: 1.2rem;
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

/* --- STORY SECTION --- */
.story-section {
  padding: 100px 0;
}

.split-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}

.text-block {
  flex: 1;
}

.gold-subtitle {
  color: var(--gold);
  font-family: var(--font-header);
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}

.text-block h2 {
  font-size: 3rem;
  font-family: "Reggae One", system-ui;
  color: #222;
  margin-bottom: 25px;
  line-height: 1.1;
}

.text-block p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.stat-row {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.stat .num {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-header);
}

.stat .label {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #888;
  letter-spacing: 1px;
}

.image-block {
  flex: 1;
  position: relative;
}

.image-block img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 20px 20px 0px rgba(212, 175, 55, 0.2);
}

/* --- EXPERIENCE SECTION (Mercedes Story) --- */
.experience-section {
  background: var(--dark-bg);
  padding: 100px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Subtle pattern overlay */
.experience-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(circle, #333 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.1;
}

.exp-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.exp-header h2 {
  font-size: 2.8rem;
  font-family: "Reggae One", system-ui;
}

/* The Founder Card */
.founder-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 30px;
  padding: 50px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.card-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.highlight-text {
  font-size: 1.4rem;
  font-style: italic;
  font-family: "Play", sans-serif;
  color: #fff;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 20px 0;
}

.card-content p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 15px;
}

.signature {
  margin-top: 30px;
  font-family: "Allura", cursive; /* Or just use a script font */
  font-size: 1.5rem;
  color: var(--gold);
  text-align: right;
}


/* ========================================= */
/* ABOUT US: ULTIMATE MOBILE OPTIMIZATION    */
/* ========================================= */
@media screen and (max-width: 480px) {

  /* 1. Container & Padding */
  section.experience-section {
    padding: 40px 15px !important;
  }

  /* 2. Philosophy Header (Reduced by 40%) */
  section.experience-section .exp-header h2 {
    font-size: 1.6rem !important; 
    line-height: 1.2 !important;
    margin-top: 10px !important;
    display: block !important;
    width: 100% !important;
  }

  .gold-subtitle {
    font-size: 0.75rem; 
    letter-spacing: 1px;
  }

  /* 3. Founder Card (Reduced by 40%) */
  .founder-card {
    padding: 25px 20px; 
    border-radius: 20px; 
    width: 92%;         
    margin: 0 auto;
  }

  .card-icon {
    font-size: 1.8rem;  
    margin-bottom: 12px;
  }

  .founder-card h3 {
    font-size: 1.1rem;  
    line-height: 1.4;
  }

  /* 4. Highlighted Philosophy Quote */
  .highlight-text {
    font-size: 0.85rem; 
    padding-left: 12px;
    margin: 15px 0;
    line-height: 1.6;
  }

  /* 5. Body Text & Signature */
  .card-content p {
    font-size: 0.75rem; 
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .signature {
    font-size: 1rem;    
    margin-top: 20px;
    text-align: right;
  }



  /* --- STORY SECTION MOBILE (20% REDUCTION) --- */
  .story-section {
    padding: 50px 0 !important; /* Reduced from 100px */
  }

  .text-block h2 {
    /* 3rem * 0.8 = 2.4rem */
    font-size: 2.4rem !important; 
    line-height: 1.2 !important;
    margin-bottom: 15px !important;
  }

  .text-block p {
    /* 1.1rem * 0.8 = ~0.88rem */
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
    margin-bottom: 15px !important;
  }

  .stat-row {
    gap: 20px !important; /* Tighter spacing */
    margin-top: 20px !important;
  }

  .stat .num {
    font-size: 1.8rem !important; /* Scaled down gold numbers */
  }

  .image-block img {
    border-radius: 15px !important;
    box-shadow: 10px 10px 0px rgba(212, 175, 55, 0.2) !important; /* Smaller shadow */
  }



}

/* --- VALUES SECTION --- */
.values-section {
  padding: 100px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.value-box {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  border-bottom: 3px solid transparent;
}

.value-box:hover {
  transform: translateY(-10px);
  border-bottom-color: var(--gold);
}

.value-box i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.value-box h3 {
  font-family: var(--font-header);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.value-box p {
  color: #666;
  line-height: 1.6;
}

/* --- ANIMATIONS --- */
.fade-in-up { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.slide-in-left { opacity: 0; transform: translateX(-50px); transition: all 0.8s ease; }
.slide-in-right { opacity: 0; transform: translateX(50px); transition: all 0.8s ease; }

.visible { opacity: 1; transform: translate(0); }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2rem; }
  .split-layout { flex-direction: column; }
  .exp-header h2 { font-size: 2rem; }
  .founder-card { padding: 30px; }
}

@media (max-width: 768px) {
  .about-hero {
    background-attachment: scroll; /* Fixes zoomed-in image on iPhone */
    background-position: center top;
  }
}
















/*============perfect end ===========*/

/* --- Floating WhatsApp --- */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366; /* Original WA Color */
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* --- Main Footer --- */
.main-footer {
  background: rgba(20, 20, 20, 0.95);
  color: #fff;
  padding: 60px 40px 20px;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 215, 0, 0.1); /* Subtle gold border */
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-section h3, .footer-section h4 {
  color: #ffd700; /* Matching your gold accent */
  font-family: 'Audiowide', sans-serif;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-section p {
  line-height: 1.6;
  color: #ccc;
  font-size: 0.95rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ffd700;
}

.footer-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.85rem;
  color: #777;
}

/* Ensure the WhatsApp button stays above footer on mobile */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 30px;
  }
}



/* ========================================= */
/* ABOUT US REDESIGN                         */
/* ========================================= */

.about-hero {
  position: relative;
  min-height: 62vh;
  margin-top: 30px;
  background-image: url('../images/truck.PNG');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 0 0 40px 40px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.58),
    rgba(0, 0, 0, 0.72)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 20px;
  max-width: 860px;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 999px;
  color: var(--gold);
  font-family: var(--font-header);
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  background: rgba(255,255,255,0.06);
}

.hero-content h1 {
  font-family: var(--font-header);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-content h1:nth-of-type(2) {
  color: var(--gold);
}

.hero-content p {
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 18px auto 0;
  max-width: 680px;
  color: rgba(255,255,255,0.92);
}

/* STORY */
.story-section {
  padding: 84px 0;
}

.story-shell {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.story-header {
  max-width: 760px;
}

.gold-subtitle {
  color: var(--gold);
  font-family: var(--font-header);
  letter-spacing: 2px;
  font-size: 0.84rem;
  margin-bottom: 10px;
}

.story-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  color: #181818;
  margin-bottom: 16px;
  font-family: var(--font-header);
}

.story-intro {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a4a4a;
  max-width: 680px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: start;
}

.text-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mini-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mini-pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(212,175,55,0.12);
  color: #7e6212;
  border: 1px solid rgba(212,175,55,0.28);
  font-family: var(--font-body);
  font-size: 0.92rem;
}

.compact-copy {
  display: grid;
  gap: 16px;
}

.compact-copy p {
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: #555;
  line-height: 1.72;
  margin: 0;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-feature-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  padding: 22px 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.about-feature-card i {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 14px;
  display: inline-block;
}

.about-feature-card h3 {
  font-size: 1rem;
  color: #1e1e1e;
  margin-bottom: 10px;
  font-family: var(--font-header);
  line-height: 1.3;
}

.about-feature-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 4px;
  padding-top: 22px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.stat {
  min-width: 140px;
}

.stat .num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-header);
  line-height: 1.1;
}

.stat .label {
  display: block;
  margin-top: 6px;
  font-size: 0.88rem;
  text-transform: uppercase;
  color: #7a7a7a;
  letter-spacing: 1px;
}

.image-block {
  position: relative;
}

.image-card {
  position: sticky;
  top: 110px;
  background: #fff;
  border-radius: 28px;
  padding: 14px;
  box-shadow: 0 22px 48px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}

.image-card img {
  width: 100%;
  display: block;
  border-radius: 22px;
  box-shadow: 14px 14px 0 rgba(212,175,55,0.16);
}

.image-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.image-badge span {
  padding: 8px 14px;
  border-radius: 999px;
  background: #111;
  color: #f2f2f2;
  font-size: 0.88rem;
  font-family: var(--font-body);
}

/* EXPERIENCE */
.experience-section {
  background: var(--dark-bg);
  padding: 90px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.experience-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.16;
}

.exp-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.exp-header h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-family: var(--font-header);
  line-height: 1.2;
}

.exp-subtext {
  margin-top: 16px;
  color: #cfcfcf;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
}

.founder-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 28px;
  padding: 42px;
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  box-shadow: 0 18px 42px rgba(0,0,0,0.35);
}

.card-icon {
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 18px;
}

.card-content h3 {
  font-family: var(--font-header);
  font-size: 1.45rem;
  line-height: 1.35;
  margin-bottom: 16px;
}

.highlight-text {
  font-size: 1.15rem;
  font-style: italic;
  font-family: "Play", sans-serif;
  color: #fff;
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  margin: 20px 0;
  line-height: 1.7;
}

.card-content p {
  font-family: var(--font-body);
  font-size: 1.04rem;
  color: #d4d4d4;
  line-height: 1.75;
  margin-bottom: 14px;
}

.signature {
  margin-top: 28px;
  font-family: "Allura", cursive;
  font-size: 1.5rem;
  color: var(--gold);
  text-align: right;
}

/* VALUES */
.values-section {
  padding: 86px 0;
}

.values-head {
  text-align: center;
  margin-bottom: 42px;
}

.values-head h2 {
  font-family: var(--font-header);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.2;
  color: #181818;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.value-box {
  background: #fff;
  padding: 34px 28px;
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.value-box:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,55,0.28);
}

.value-box i {
  font-size: 2.3rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.value-box h3 {
  font-family: var(--font-header);
  font-size: 1.2rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.value-box p {
  color: #666;
  line-height: 1.7;
  font-family: var(--font-body);
  font-size: 0.98rem;
}

/* ANIMATIONS */
.fade-in-up { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.slide-in-left { opacity: 0; transform: translateX(-50px); transition: all 0.8s ease; }
.slide-in-right { opacity: 0; transform: translateX(50px); transition: all 0.8s ease; }
.visible { opacity: 1; transform: translate(0); }

/* TABLET */
@media (max-width: 992px) {
  .story-grid {
    grid-template-columns: 1fr;
  }

  .image-card {
    position: relative;
    top: auto;
  }

  .about-feature-grid,
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .about-hero {
    min-height: 52vh;
    background-attachment: scroll;
    background-position: center top;
    border-radius: 0 0 28px 28px;
  }

  .hero-content {
    padding: 16px;
  }

  .hero-content p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .story-section,
  .experience-section,
  .values-section {
    padding: 56px 0;
  }

  .story-header h2,
  .exp-header h2,
  .values-head h2 {
    line-height: 1.18;
  }

  .story-intro,
  .compact-copy p,
  .card-content p,
  .value-box p {
    font-size: 0.98rem;
  }

  .about-feature-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .founder-card {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .card-content h3 {
    font-size: 1.2rem;
  }

  .highlight-text {
    font-size: 1rem;
    padding-left: 14px;
  }

  .stat-row {
    gap: 14px;
  }

  .stat .num {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-kicker {
    font-size: 0.74rem;
    padding: 7px 12px;
  }

  .mini-pill {
    font-size: 0.82rem;
    padding: 7px 12px;
  }

  .story-header h2 {
    font-size: 1.85rem;
  }

  .compact-copy p,
  .story-intro {
    font-size: 0.93rem;
    line-height: 1.65;
  }

  .about-feature-card {
    padding: 18px 16px;
  }

  .value-box {
    padding: 26px 20px;
  }

  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
    font-size: 30px;
  }
}