/* ==========================================================================
   KRUPA PACKERS AND MOVERS - MASTER CSS STYLESHEET
   Brand Colors: Primary Green (#0B7A3E), Accent Orange (#F7931E)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap');

:root {
  --primary: #0B7A3E;
  --primary-dark: #085E2E;
  --primary-light: #12A153;
  --primary-bg: #EAF7EF;
  --accent: #F7931E;
  --accent-dark: #D97B0D;
  --accent-light: #FFAB48;
  --accent-bg: #FFF5E9;
  
  --dark: #122118;
  --dark-heading: #1B3325;
  --text-body: #4A5D52;
  --text-muted: #798C81;
  --light: #FFFFFF;
  --bg-subtle: #F6FAF7;
  --border-color: #E2ECE6;
  
  --shadow-sm: 0 4px 12px rgba(11, 122, 62, 0.05);
  --shadow-md: 0 10px 30px rgba(11, 122, 62, 0.08);
  --shadow-lg: 0 20px 40px rgba(11, 122, 62, 0.12);
  --shadow-accent: 0 10px 25px rgba(247, 147, 30, 0.25);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-body);
  background-color: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--dark-heading);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Section Header styling */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

.sub-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  background: var(--primary-bg);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  border: 1px solid rgba(11, 122, 62, 0.15);
}

.sub-badge-orange {
  color: var(--accent);
  background: var(--accent-bg);
  border-color: rgba(247, 147, 30, 0.2);
}

.section-title {
  font-size: 2.25rem;
  color: var(--dark-heading);
  margin-bottom: 0.75rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-body);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--light);
  box-shadow: 0 6px 20px rgba(11, 122, 62, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(11, 122, 62, 0.35);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--light);
  box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: var(--light);
}

.btn-white {
  background-color: var(--light);
  color: var(--primary);
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background-color: #F8FAF9;
  transform: translateY(-2px);
}

.btn-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Top Notification Header Bar (Desktop & Mobile) */
.top-bar {
  background: var(--dark-heading);
  color: #B0C4B8;
  font-size: 0.825rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  gap: 1.5rem;
}

.top-bar-info span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-info i {
  color: var(--accent);
}

/* Sticky Main Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: var(--transition-normal);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo img {
  height: 80px;
  max-height: 90px;
  max-width: 340px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
  transition: transform 0.2s ease;
  background: transparent;
  border: none;
}

.brand-logo:hover img {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-heading);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-header-call {
  background-color: var(--primary);
  color: white;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-header-call:hover {
  background-color: var(--primary-dark);
}

.btn-header-whatsapp {
  background-color: #25D366;
  color: white;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-header-whatsapp:hover {
  background-color: #1DA851;
}

.hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: var(--primary);
  cursor: pointer;
  padding: 0.4rem;
}

/* Mobile Navigation Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 82%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--light);
  z-index: 2000;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
  transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.mobile-drawer.open {
  left: 0;
}

.drawer-header {
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
}

.drawer-logo {
  height: 48px;
  max-width: 220px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-heading);
  cursor: pointer;
}

.drawer-body {
  padding: 1.5rem 1.25rem;
  overflow-y: auto;
  flex-grow: 1;
}

.drawer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.drawer-nav a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark-heading);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.drawer-nav a i {
  color: var(--primary);
  width: 20px;
}

.drawer-ctas {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  padding: 3rem 0 2.5rem 0;
  background: linear-gradient(180deg, #F5FAF7 0%, #FFFFFF 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary-bg);
  color: var(--primary);
  border: 1px solid rgba(11, 122, 62, 0.2);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.12;
  color: var(--dark-heading);
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.hero-title .accent-text {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero-title .accent-text::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(247, 147, 30, 0.25);
  border-radius: 4px;
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-body);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-video-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  background: transparent;
  border: none;
}

.play-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-bg);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 2px solid var(--accent);
  transition: var(--transition-normal);
}

.hero-video-btn:hover .play-icon-box {
  background: var(--accent);
  color: white;
  transform: scale(1.08);
}

.video-btn-text span {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark-heading);
}

.video-btn-text small {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Floating Trust Bar below Hero */
.hero-trust-bar {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  background: #FFFFFF;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark-heading);
}

.trust-item i {
  color: var(--primary);
  font-size: 1.2rem;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background-color: var(--border-color);
}

.hero-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-truck-img {
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  animation: floatTruck 4s ease-in-out infinite alternate;
}

@keyframes floatTruck {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}

.hero-badge-floating {
  position: absolute;
  bottom: -15px;
  left: -20px;
  background: #FFFFFF;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--border-color);
}

.hero-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-bg);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.hero-badge-text strong {
  display: block;
  font-size: 1rem;
  color: var(--dark-heading);
}

.hero-badge-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* SERVICES GRID SECTION */
.services-section {
  padding: 2.5rem 0 4rem 0;
  background-color: #FFFFFF;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0;
  transition: var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11, 122, 62, 0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.service-img-box {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img-box img {
  transform: scale(1.06);
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  color: var(--dark-heading);
}

.service-desc {
  font-size: 0.925rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.link-learn {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.link-learn:hover {
  color: var(--accent);
  gap: 0.6rem;
}

.btn-sm-quote {
  background: var(--primary-bg);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
}

.btn-sm-quote:hover {
  background: var(--primary);
  color: white;
}

/* COUNTER / ACHIEVEMENTS BAR */
.achievements-section {
  background: linear-gradient(135deg, #085E2E 0%, #0B7A3E 100%);
  color: #FFFFFF;
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.4rem;
  color: #FFFFFF;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

/* ABOUT SUMMARY SECTION */
.about-section {
  padding: 5rem 0;
  background-color: var(--bg-subtle);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #FFFFFF;
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 5px solid var(--accent);
  text-align: center;
}

.about-badge h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.about-badge p {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-heading);
}

.about-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.75rem 0 2.25rem 0;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark-heading);
}

.about-checklist li i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* RECENT PROJECTS / GALLERY SECTION */
.projects-section {
  padding: 5rem 0;
  background: #FFFFFF;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 260px;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(11, 122, 62, 0.9) 100%);
  opacity: 0;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: white;
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--accent);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  align-self: flex-start;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.portfolio-title {
  font-size: 1.15rem;
  color: white;
}

/* TESTIMONIALS SLIDER SECTION */
.testimonials-section {
  padding: 5rem 0;
  background-color: var(--bg-subtle);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.testimonial-card {
  min-width: 100%;
  background: #FFFFFF;
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  text-align: center;
}

.stars {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--dark-heading);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.client-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.client-details h4 {
  font-size: 1rem;
  margin-bottom: 0.1rem;
}

.client-details p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background-color: var(--primary);
  width: 28px;
  border-radius: 6px;
}

/* READY TO MOVE CTA BANNER */
.cta-banner-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  border-radius: 0;
}

.cta-banner-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-banner-content h2 {
  font-size: 2.25rem;
  color: white;
  margin-bottom: 0.5rem;
}

.cta-banner-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-banner-btns {
  display: flex;
  gap: 1rem;
}

/* SERVICES PAGE SPECIFIC STYLES (Matching image copy.png) */
.page-header-banner {
  background: linear-gradient(135deg, #085E2E 0%, #0B7A3E 100%);
  color: white;
  padding: 3.5rem 0 4.5rem 0;
  text-align: center;
  position: relative;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.page-header-banner h1 {
  color: white;
  font-size: 2.75rem;
  margin-bottom: 0.5rem;
}

.page-header-banner .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.page-header-banner .breadcrumb a {
  color: var(--accent);
}

.services-page-list {
  padding: 3rem 0 5rem 0;
}

.services-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

/* Service Card layout matching image copy.png */
.service-list-card {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}

.service-list-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-list-card.border-green {
  border-left: 6px solid var(--primary);
}

.service-list-card.border-orange {
  border-left: 6px solid var(--accent);
}

.service-list-thumb {
  width: 130px;
  height: 110px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-subtle);
}

.service-list-content {
  flex-grow: 1;
}

.service-list-title {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.service-list-desc {
  font-size: 0.925rem;
  color: var(--text-body);
  line-height: 1.5;
}

.service-list-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition-fast);
  cursor: pointer;
  border: none;
}

.service-list-card:hover .service-list-arrow {
  background: var(--accent);
  transform: translateX(4px);
}

/* Services Sticky Bottom Features Bar (from image copy.png) */
.services-sticky-bar {
  background: var(--primary-dark);
  color: white;
  padding: 1.2rem 0;
  border-top: 2px solid var(--accent);
}

.services-features-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.services-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.services-feature-item i {
  font-size: 1.4rem;
  color: var(--accent);
}

/* CONTACT PAGE & FORM STYLES */
.contact-section {
  padding: 4rem 0 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info-box {
  background: var(--bg-subtle);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.info-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-bg);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.info-text p, .info-text a {
  color: var(--text-body);
  font-size: 0.95rem;
}

/* Interactive Map Box */
.map-container {
  width: 100%;
  height: 250px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 1.5rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  cursor: pointer;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none; /* Allows click through to container overlay trigger */
}

.map-overlay-click {
  position: absolute;
  inset: 0;
  background: rgba(11, 122, 62, 0.08);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1rem;
  transition: var(--transition-fast);
}

.map-container:hover .map-overlay-click {
  background: rgba(11, 122, 62, 0.2);
}

.map-btn-badge {
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
}

/* Form Box */
.contact-form-box {
  background: #FFFFFF;
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-heading);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--bg-subtle);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(11, 122, 62, 0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* GALLERY PAGE FILTER STYLES */
.filter-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background: #FFFFFF;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* TEAM PAGE STYLES */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.team-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

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

.team-info {
  padding: 1.25rem;
}

.team-info h4 {
  font-size: 1.15rem;
  color: var(--dark-heading);
}

.team-info span {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 700;
}

/* FOOTER */
.site-footer {
  background-color: var(--dark);
  color: #A3B5AA;
  padding: 4.5rem 0 2rem 0;
  font-size: 0.925rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand img {
  height: 52px;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-widget h4 {
  color: #FFFFFF;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-widget h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background-color: var(--accent);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* FLOATING CONTROLS & MOBILE BOTTOM BAR */
.floating-whatsapp {
  position: fixed;
  bottom: 85px;
  right: 25px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 990;
  transition: var(--transition-bounce);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

.floating-call {
  position: fixed;
  bottom: 85px;
  left: 25px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 25px rgba(11, 122, 62, 0.4);
  z-index: 990;
  transition: var(--transition-bounce);
}

.floating-call:hover {
  transform: scale(1.1);
}

.back-to-top {
  position: fixed;
  bottom: 155px;
  right: 25px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark-heading);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  z-index: 989;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  border: none;
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* Sticky Mobile Bottom Navigation Bar */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  z-index: 1050;
  padding: 0.4rem 0;
}

.mobile-bottom-nav .nav-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}

.mobile-nav-item i {
  font-size: 1.2rem;
}

.mobile-nav-item.active, .mobile-nav-item:hover {
  color: var(--primary);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 25px;
  color: white;
  font-size: 2.2rem;
  cursor: pointer;
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-container-modal {
  width: 90%;
  max-width: 800px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.video-container-modal iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 1.5rem;
  }
  .stat-item:nth-child(3), .stat-item:nth-child(4) {
    border-bottom: none;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .nav-links, .header-ctas {
    display: none;
  }
  .hamburger-btn {
    display: block;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-trust-bar {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
  }
  .trust-item {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }
  .trust-divider {
    display: none;
  }
  .hero-visual-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .hero-truck-img {
    max-width: 100%;
    height: auto;
  }
  .hero-badge-floating {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    top: auto;
    margin: 1.25rem auto 0 auto;
    width: 100%;
    max-width: 320px;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transform: none;
  }
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .services-grid, .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cta-banner-box {
    flex-direction: column;
    text-align: center;
  }
  .mobile-bottom-nav {
    display: block;
  }
  .floating-whatsapp {
    bottom: 75px;
    right: 15px;
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
  }
  .floating-call {
    bottom: 75px;
    left: 15px;
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
  }
  body {
    padding-bottom: 60px; /* offset for sticky bottom nav */
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  .hero-section {
    padding: 1.5rem 0 0.75rem 0;
  }
  .services-section {
    padding: 0.75rem 0 2.5rem 0;
  }
  .section-header {
    margin: 0 auto 1.25rem auto;
  }
  .brand-logo img {
    height: 42px;
    max-width: 175px;
  }
  .hero-title {
    font-size: 2.1rem;
    line-height: 1.2;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.85rem;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-video-btn {
    width: 100%;
    justify-content: center;
  }
  .hero-badge-floating {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0.75rem auto 0 auto;
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .service-list-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
    gap: 1rem;
  }
  .service-list-thumb {
    width: 100%;
    height: 150px;
  }
  .service-list-arrow {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form-box, .contact-info-box {
    padding: 1.5rem 1.25rem;
  }
  .stat-number {
    font-size: 2.1rem;
  }
  .stat-label {
    font-size: 0.85rem;
  }
  .cta-banner-btns {
    flex-direction: column;
    width: 100%;
  }
  .cta-banner-btns .btn {
    width: 100%;
  }
}

/* ==========================================================================
   PORTFOLIO, FOUNDER GRAND BOX, LOGO BLEND & INSTAGRAM STYLES
   ========================================================================== */

/* 1. Transparent Logo & Contrast Adjustments */
.brand-logo img, .drawer-logo {
  height: 80px;
  max-height: 90px;
  max-width: 320px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
  transition: transform 0.25s ease;
  background: transparent;
  border: none;
}

.footer-brand img {
  height: 80px;
  max-height: 90px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.25rem;
  background: #FFFFFF;
  padding: 10px 20px;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  display: inline-block;
  mix-blend-mode: normal;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Top bar Instagram ONLY Icon Button */
.top-bar-instagram-only {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff !important;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.35);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.top-bar-instagram-only:hover {
  transform: scale(1.15) rotate(6deg);
  box-shadow: 0 6px 18px rgba(225, 48, 108, 0.5);
}

/* Instagram Link Badges */
.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #E1306C;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.instagram-link:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.top-bar-instagram:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.4);
}

/* 2. GRAND FOUNDER SHOWCASE BOX */
.founder-showcase-section {
  padding: 4rem 0 6rem 0;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-subtle) 100%);
}

.founder-grand-box {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(11, 122, 62, 0.15);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.founder-grand-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.founder-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 0;
  align-items: stretch;
}

.founder-img-wrapper {
  position: relative;
  background: var(--dark-heading);
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.founder-grand-box:hover .founder-img-wrapper img {
  transform: scale(1.03);
}

.founder-badge-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(18, 33, 24, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.founder-badge-overlay i {
  font-size: 2.2rem;
  color: var(--accent);
}

.founder-badge-overlay .title-text h5 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.founder-badge-overlay .title-text span {
  font-size: 0.85rem;
  color: #C0D6C9;
}

.founder-content-wrapper {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-header-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-bg);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  width: fit-content;
  border: 1px solid rgba(247, 147, 30, 0.2);
}

.founder-name {
  font-size: 2.75rem;
  color: var(--dark-heading);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.founder-role {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.founder-quote {
  background: var(--primary-bg);
  border-left: 4px solid var(--primary);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 1.75rem;
  font-style: italic;
  color: var(--dark-heading);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.6;
}

.founder-bio p {
  margin-bottom: 1.25rem;
  font-size: 1.025rem;
  color: var(--text-body);
  line-height: 1.7;
}

.founder-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-color);
}

.highlight-pill {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  text-align: center;
}

.highlight-pill h4 {
  color: var(--primary);
  font-size: 1.35rem;
  margin-bottom: 0.15rem;
}

.highlight-pill span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* 3. PORTFOLIO SHOWCASE & RESPONSIVE CARD BOXES */
.portfolio-section {
  padding: 4rem 0 6rem 0;
  background: #FFFFFF;
}

.portfolio-filter-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.portfolio-filter-btn {
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-color);
  background: #FFFFFF;
  color: var(--dark-heading);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-normal);
}

.portfolio-filter-btn:hover,
.portfolio-filter-btn.active {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 6px 18px rgba(11, 122, 62, 0.25);
}

.portfolio-grid-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.portfolio-card-box {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.portfolio-card-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11, 122, 62, 0.3);
}

.portfolio-card-media {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #F0F4F2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-card-media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card-box:hover .portfolio-card-media img {
  transform: scale(1.08);
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 122, 62, 0.1) 0%, rgba(18, 33, 24, 0.85) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
}

.portfolio-card-box:hover .portfolio-card-overlay {
  opacity: 1;
}

.portfolio-card-zoom-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  align-self: flex-end;
  box-shadow: 0 4px 15px rgba(247, 147, 30, 0.4);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.portfolio-card-box:hover .portfolio-card-zoom-btn {
  transform: scale(1);
}

.portfolio-card-info {
  color: #FFFFFF;
}

.portfolio-card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--primary);
  color: #FFFFFF;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
}

.portfolio-card-title {
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}

.portfolio-card-caption {
  padding: 1.25rem 1.5rem;
  background: #FFFFFF;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portfolio-card-caption h4 {
  font-size: 1.05rem;
  color: var(--dark-heading);
}

.portfolio-card-caption span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Comprehensive Mobile Responsive Layout & Spacing Adjustments */
@media (max-width: 992px) {
  .founder-grid {
    grid-template-columns: 1fr;
  }
  .founder-img-wrapper {
    min-height: 340px;
  }
  .founder-content-wrapper {
    padding: 2rem 1.5rem;
  }
  .portfolio-grid-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .brand-logo img {
    height: 80px !important;
    max-height: 90px !important;
  }
}

@media (max-width: 768px) {
  /* Eliminate large vertical spaces on mobile */
  section {
    padding: 2.25rem 0 !important;
  }

  .page-header-banner {
    padding: 1.75rem 1rem !important;
  }
  
  .page-header-banner h1 {
    font-size: 1.6rem !important;
  }

  .section-header {
    margin-bottom: 1.5rem !important;
  }

  .section-title {
    font-size: 1.65rem !important;
    margin-bottom: 0.5rem !important;
  }

  .founder-name {
    font-size: 1.85rem !important;
  }

  .founder-highlights {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }

  .portfolio-filter-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  .portfolio-filter-btn {
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
  }

  .portfolio-grid-box {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .portfolio-card-media {
    height: 230px !important;
  }

  /* Match desktop view logo height (80px) on mobile view */
  .brand-logo img, .drawer-logo {
    height: 80px !important;
    max-height: 90px !important;
  }

  .site-footer {
    padding: 3rem 0 6rem 0 !important;
  }

  .hero-section {
    padding: 2rem 0 1.5rem 0 !important;
  }

  .hero-title {
    font-size: 2.1rem !important;
    line-height: 1.2 !important;
  }
}

@media (max-width: 480px) {
  /* Match desktop view logo height (80px) on small smartphone view */
  .brand-logo img, .drawer-logo {
    height: 80px !important;
    max-height: 90px !important;
  }

  .portfolio-card-media {
    height: 210px !important;
  }

  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

