:root {
  font-family: Inter, sans-serif;
  font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
  --primary: #d50032; /* fitcorp Red */
  --primary-light: #ffebec;
  --secondary: #1a1a1a;
  --text-main: #333333;
  --text-muted: #938e8e;
  --bg-light: #f7f7f7;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.8);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

@supports (font-variation-settings: normal) {
  :root { font-family: InterVariable, sans-serif; }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.text-muted {
    color: #6b7280;
    font-weight: 300;
    color: #4c4b4b;
}

body {
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3,
h4 {
  color: var(--secondary);
  line-height: 1.1;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.text-primary {
  color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 2rem;
  border-radius: 9px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.get-started {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 9px;
  font-weight: 500;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  background-color: var(--primary);
  color: var(--white);
}

.get-started:hover {
  background-color: #d50032;
  transform: translateY(-1px);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  background-color: #25D366; /* WhatsApp Green */
  color: white;
  text-decoration: none;
  border: none;
}

.whatsapp-btn:hover {
  background-color: #20BA5A;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
  color: white;
}

.whatsapp-btn svg {
  fill: currentColor;
}

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

.btn-primary:hover {
  background-color: #d50032;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(204, 31, 38, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--secondary);
  border: 2px solid #000000;
}

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

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

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 100px; /* Base height for logo */
  width: auto;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .logo img {
    height: 80px; /* Slightly smaller on mobile */
  }
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  color: #4b5563;
}

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

.menu-btn {
  display: none;
  cursor: pointer;
  color: #000000;
  transition: var(--transition);
}

.menu-btn:hover {
  color: #000000;
}

.mobile-only {
  display: none;
}

/* Hero Section */
.hero {
  padding-top: 130px;
  padding-bottom: 100px;
  background: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-img-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero-slider {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 280px;
  }
}

.slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 8s linear;
  transform: scale(1);
}

.slider-img.active {
  opacity: 1;
  transform: scale(1.1);
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-img {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .hero-img {
    height: 280px;
  }
}

.floating-card {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--white);
  padding: 0.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  animation: float 4s ease-in-out infinite;
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

/* Motivation Section */
.motivation-section {
  background: var(--white);
  padding: 10px 0 50px 0;
  color: var(--secondary);

}

.motivation-subtitle {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.1;
  max-width: fit-content;
  letter-spacing: -0.01em;
}

.motivation-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  align-items: flex-start;
}

.motivation-image-wrapper {
  width: 100%;
}

.motivation-image {
  width: 100%;
  height: 450px;
  object-fit: cover;

}

.motivation-content {
  padding-left: 1.5rem;
}

.motivation-title {
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
  margin: 0;
  color: var(--secondary);
}

.motivation-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.motivation-small-logo {
  height: 80px;
  width: auto;
  filter: grayscale(100%) brightness(0);
}

@media (max-width: 992px) {
  .motivation-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .motivation-content {
    padding-left: 0;
  }
  .motivation-title {
    font-size: 4.5rem;
    text-align: start;
    margin-bottom: 1rem;
  }
  .motivation-footer {
    margin-top: 2rem;
  }
  .motivation-section {
    padding: 4px 0 2px;
  }
  .motivation-subtitle {
    margin-left: auto;
    margin-right: auto;
    text-align: start;
  }
}

@media (max-width: 768px) {
  .motivation-subtitle {
    font-size: 2rem;
  }
  .motivation-title {
    font-size: 3.5rem;
  }
  .motivation-image {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .motivation-subtitle {
    font-size: 1.5rem;
  }
  .motivation-title {
    font-size: 2.5rem;
  }
  .motivation-image {
    height: 250px;
  }
}
/* Mission Section */
.section {
  padding: 50px 0 80px 0;
}

.mission-title {
  font-weight: 700;
  font-size: 2.25rem;
    line-height: 2.5rem;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.mission-content-description {
    font-weight: 400;
    color: rgb(98, 97, 97)
}

.mission-img {
  border-radius: 30px;
  overflow: hidden;
  height: 400px;
  width: 100%;
  object-fit: cover;
}

.badge {
  color: var(--primary);
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 1.15rem;
  display: block;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
@media (max-width: 480px){
  .badge{
    font-size: 0.8rem;
    margin-bottom: 0.1rem;
  }
}

.check-list {
  margin: 2rem 0;
  
}

.check-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
  font-weight: 300;
  color:#000000;
}

.check-item svg {
  color: var(--primary);
}

/* Pillars Section */
.pillars {
  padding: 50px 0 50px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
}

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

.method-block {
  border-left: 2px solid var(--primary);
  padding: 0 0 0 1.25rem;
  text-align: left;
}

.method-header {
  font-size: 1.7rem;
  font-weight: 600;
  color: #000;
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

.method-tagline {
  font-size: 1.1rem;
  font-weight: 700;
  color: #d50032;
  margin-bottom: 0.5rem;
  display: block;
}

.method-description {
  font-size: 1.05rem;
  line-height: 1.4;
  color: #000000;
  margin-bottom: 1rem;
  font-weight: 300;
}

.method-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
  display: block;
}

.method-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0 0;
}

.method-list li {
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: #000000;
  position: relative;
  padding-left: 1.5rem;
  font-weight: 300;
}

.method-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 12px;
  height: 1.5px;
  background: var(--primary);
}

.method-outcome-box {
  margin-top: auto;
}

.method-outcome-box .method-label {
  margin-bottom: 0.2rem;
}
.deliver-label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1rem;
  color: #000000;
  line-height: 1.4;
  font-weight: 700; /* Matching the weight from method-label as requested */
}

.method-outcome-text {
  font-size: 1rem;
  color: #000000;
  line-height: 1.4;
  font-weight: 300;
}

@media (max-width: 1100px) {
  .method-grid {
    gap: 2rem;
  }
  .method-header {
    font-size: 1.8rem;
  }
}

@media (max-width: 992px) {
  .method-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}



/* Services Page Styles */
.services-hero {
  padding: 150px  20px 80px 0 ;
  background: var(--bg-light);
  text-align: center;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.1rem;
  background-color: #ffe8e8;
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.98rem;
  font-weight: 300;
  margin-bottom: 1.8rem;
  text-transform: none;
  letter-spacing: 0.01em;
}

.hero-h1 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #111827;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
@media (max-width: 992px) {
    .hero-h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
}

.services-hero p {
            max-width: 650px;
            margin: 0 auto;
            font-size: 1.15rem;
            color: #6b7280;
            line-height: 1.6;
            font-weight: 400;
        }

.service-row {
  padding: 50px 0 50px 0;
}

.service-row.alternate {
  background: #f9fafb;
}

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

.service-img img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.icon-sq {
  width: 48px;
  height: 48px;
  background: #fef2f2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.8rem;
}

.service-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #111827;
}

.service-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 1.8rem;
  font-weight: 300;
}

.checklist {
  list-style: none;
  margin-bottom: 2rem;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  color: #374151;
  font-weight: 300;
}

.checklist li svg {
  color: var(--primary);
  flex-shrink: 0;
}

.btn-service {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-service:hover {
  background: #b51c22;
  transform: translateY(-2px);
}

.custom-needs {
  display: flex;
  flex-direction: column;
  align-items: center;
   text-align: center;
  padding: 50px 0 50px 0;
  background: #fbeaea;
}

.badge-tag.white-badge {
  background-color: var(--white);
  padding: 0.5rem 1.25rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  margin-bottom: 2rem;
  }

.custom-needs h2 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #111827;
}

.custom-needs p {
  max-width: 650px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.6;
  font-weight: 300;
}

.btn-cta-outline-dark {
  background-color: transparent;
  color: #111111;
  padding: 1rem 2.5rem;
  border: 1.5px solid #111111;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  transition: var(--transition);
}

.btn-cta-outline-dark:hover {
  background-color: #111111;
  color: var(--white);
  transform: translateY(-2px);
}

/* CTA Section */
.cta {
  background: #000;
  color: var(--white);
  text-align: center;
  padding: 50px 0 0 0;
}

.cta h2 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.btn-cta-primary {
  background-color: var(--primary);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
}

.btn-cta-primary:hover {
  background-color: #e6232b;
  transform: translateY(-2px);
}

.btn-cta-outline {
  background-color: transparent;
  color: var(--white);
  padding: 1rem 2.5rem;
  border: 1.5px solid var(--white);
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
}

.btn-cta-outline:hover {
  background-color: var(--white);
  color: #111111;
  transform: translateY(-2px);
}

/* Footer Section */
footer {
  background: #000;
  color: var(--white);
  padding: 50px 0 50px;
}

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

.footer-logo img {
  height: 130px;
  margin-bottom: 1rem;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 320px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

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

.social-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Large Tablets (1024px) */
@media (max-width: 1024px) {
  .container {
    max-width: 900px;
    padding: 0 2rem;
  }

  .hero-grid, 
  .mission-grid, 
  .service-grid, 
  .why-about-grid,
  .story-grid {
    gap: 3rem;
  }

  h1 { font-size: 3rem; }
  .hero-img { height: 450px; }
  
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
  }
}

/* Medium Tablets & Mobile (768px) */
/* ==========================================================================
   Responsive Design - Professional Standards
   ========================================================================== */

/* Large Tablets / Small Laptops (1024px) */
@media (max-width: 1024px) {
  .container {
    padding: 0 3rem;
  }

  .section {
    padding: 80px 0;
  }

  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.2rem; }

  .hero-grid, .mission-grid, .service-grid, .story-grid {
    gap: 4rem;
  }

  .hero-img { height: 500px; }
  
  .hero-grid, .mission-grid, .service-grid, .story-grid, .why-about-grid, .vision-mission-grid {
    gap: 3.2rem;
  }

  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

/* Tablets (768px) */
@media (max-width: 768px) {
  header {
    padding: 0.5rem 0;
  }

  nav {
    height: 60px;
    position: relative;
    border-bottom: none;
  }

  .menu-btn {
    display: block;
    font-size: 1.5rem;
    z-index: 1001;
    position: absolute;
    left: 95%;
    top: 60%;
    transform: translate(-50%, -50%);
    color: #000000;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    gap: 0;
    z-index: 1001;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  .nav-links.active {
    display: flex;
    right: 0;
  }

  /* Mobile menu header with logo */
  .nav-links::before {
    content: '';
    display: block;
    width: 140px;
    height: 80px;
    background-image: url('assets/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    margin: 0 0 0.5rem 1.25rem;
    flex-shrink: 0;
  }

  /* Mobile menu links container */
  .nav-links li {
    width: 100%;
    text-align: left;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .nav-links li:first-of-type {
    margin-top: 0rem;
    padding-top: 0rem;
    border-top: none;
  }

  .nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    text-align: left;
    transition: all 0.2s ease;
    position: relative;
    border-left: 3px solid transparent;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(201, 29, 29, 0.05);
    color: var(--primary);
    border-left-color: var(--primary);
    padding-left: 2rem;
  }

  /* WhatsApp button in mobile menu */
  .mobile-only {
    display: block;
    margin-top: auto;
    padding: 1.5rem;
    /* border-top: 1px solid rgba(0, 0, 0, 0.08); */
    text-align: center;
  }

  .mobile-only .whatsapp-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 0.9rem;
    border-radius: 8px;
    margin: 0 auto;
    padding: 0.6rem 1.2rem;
    width: 150px;
        margin-top: 2rem;

  }

  nav > .whatsapp-btn, .get-started {
    display: none;
  }

  /* Structural Changes */
  .section, .vm-section, .principles-section, .why-choose-about {
    padding: 0px 0 0px;
  }
  
  footer {
    padding: 0px 0 0px;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 40px;
    text-align: center;
    min-height: auto;
  }

  .hero-grid, .mission-grid, .service-grid, .story-grid, .why-about-grid, .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-hero { padding: 120px 0 60px; }

  .service-row { padding: 60px 0; }
  .icon-sq { margin-bottom: 1.25rem; }
  .service-content h2 { font-size: 1.8rem; }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .principles-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content p {
    margin: 0 auto 2rem;
  }

  .hero-btns {
    justify-content: center;
  }

  .mission-img-wrapper, .service-img, .story-img-wrapper {
    order: -1;
  }

  .hero-img, .mission-img {
    height: 400px;
  }

  .floating-card {
    position: absolute;
    left: 50% !important;
    bottom: -30px !important;
    margin: 0;
    width: 260px;
    transform: translateX(-50%) !important;
    animation: none;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .cta-btns {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-logo img {
    margin: 0 auto 1rem;
    height: 100px;
  }

  .footer-desc {
    margin: 0 auto;
  }

  .footer-contact {
    margin: 0 auto;
    align-items: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* Mobile (480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .section {
    padding: 40px 0;
  }

  h1 { 
    font-size: 2.1rem; 
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  h2 { 
    font-size: 1.7rem; 
    line-height: 1.2;
    margin-bottom: 0.8rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 70px;
  }

  .hero-badge {
    padding: 0.35rem 0.75rem;
    font-size: 0.7rem;
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .hero-btns, .cta-btns {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn, .btn-cta-primary, .btn-cta-outline, .btn-proposal-red, .btn-proposal-outline {
    width: 100%;
    padding: 0.75rem 1.5rem !important;
    font-size: 0.95rem;
    justify-content: center;
    border-radius: 10px;
    display: inline-flex;
  }

  .hero-img, .mission-img {
    height: 280px !important;
    border-radius: 20px;
  }

  .floating-card {
    width: 220px;
    padding: 0.8rem;
    margin: 0;
  }

  .stat-icon {
    width: 35px;
    height: 35px;
  }

  .floating-card p:first-child {
    font-size: 1.2rem !important;
  }

  .floating-card p:last-child {
    font-size: 0.75rem !important;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-item h2 {
    font-size: 2.4rem;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pillar-card {
    padding: 1.5rem 1rem;
  }

  .cta h2, .custom-needs h2 {
    font-size: 1.5rem;
  }

  .services-hero {
    padding: 100px 0 20px;
  }

  

  .badge-tag {
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
  }

  .services-hero p, .custom-needs p {
    font-size: 0.88rem;
    line-height: 1.4;
    margin-bottom: 1.25rem;
  }

  .service-row, .custom-needs {
    padding: 35px 0;
  }

  .service-content h2 {
    font-size: 1.45rem !important;
    margin-bottom: 0.5rem;
  }

  .service-content p {
    font-size: 0.88rem;
    margin-bottom: 1rem;
  }

  .service-img img {
    height: 220px !important;
    object-fit: cover;
  }

  .icon-sq {
    width: 36px;
    height: 36px;
    margin-bottom: 0.75rem;
  }

  .checklist li {
    font-size: 0.85rem !important;
    margin-bottom: 0.5rem;
  }

  .btn-service {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }





  .cta p {
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
  }

  .footer-grid {
    gap: 2rem;
  }


























  .mission-decoration {
    width: 60px !important;
    height: 60px !important;
    bottom: -10px !important;
    right: -10px !important;
    border-radius: 12px !important;
  }
}

/* Extra Small Screens (360px) */
@media (max-width: 360px) {
  h2 { font-size: 1.5rem; }
  .hero-img, .mission-img { height: 200px !important; }


  .mission-decoration {
    display: none !important;
  }


}


/* Fatigue Section */
.fatigue-section {
  padding: 50px 0 50px 0;
  background: var(--white);
  color: #000000;
}

.fatigue-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 1rem;
  align-items: flex-start;
}

.fatigue-main h1 {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  line-height: 1.1;

  color: var(--secondary);
}

.fatigue-main h1 span {
  font-weight: 800;
}

.fatigue-subtitle {
  font-size: 1.75rem;
  font-weight: 300;
  color: #4b5563;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}
.fatigue-content-block-2 {
  max-width: 500px;
  margin-left: auto;
}
@media (max-width: 1200px) {
  .fatigue-content-block-2 {
    margin-left: 0;
    max-width: 100%;
  }
}

.fatigue-content-block , .fatigue-content-block-2{
  display: flex;
  flex-direction: column;
  justify-content: right;
  justify-items: right;
  width: 100%;
  padding: 0rem 0 0rem 2.5rem;
  border-left: 2px solid var(--primary);
  margin-bottom: 0rem;
}

.fatigue-content-block p , .fatigue-content-block-2 p{
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  font-weight: 300;
  color: #4b5563;
  line-height: 1;
}

.fatigue-content-block p strong , .fatigue-content-block-2 p strong{
  font-weight: 700;
  color: var(--secondary);
}

.fatigue-content-block .block-title , .fatigue-content-block-2 .block-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
  display: block;
}

.fatigue-aside {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  text-align: right;
}
.fatigue-content-2 {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  text-align: right;
  align-items: center; 
  justify-content: center;
}
.fatigue-content-2 img{
   width: 45rem;
  height: 15rem;
  margin-top: 0;
 object-fit: cover;
  margin: 0 auto;

  /* filter: drop-shadow(2px 2px 0 #000) 
          drop-shadow(-2px -2px 0 #000)
          drop-shadow(2px -2px 0 #000)
          drop-shadow(-2px 2px 0 #000); */
}

.who-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  justify-items: end;
  justify-self: end;
}

.who-logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 1rem;
  
}

.who-quote {
  font-size: 1rem;
  color: #374151;
  max-width: 320px;
  line-height: 1.5;
  font-weight: 400;
  position: relative;
}



.fatigue-aside .fatigue-content-block ,.fatigue-content-block-2 {
  text-align: left;
  background: transparent;
  padding: 0rem 0 0rem 1rem;
}

@media (max-width: 992px) {
  .fatigue-section {
    padding: 3px 0;
  }
  .fatigue-grid {
    grid-template-columns: 1fr;
    gap: 0rem;
  }
  .fatigue-aside {
    text-align: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }
  .who-box {
    align-items: center;
    margin-bottom: 2rem;
  }
  .who-quote {
    margin: 0 auto;
    text-align: center;
    max-width: 100%;
  }
  .fatigue-main h1 {
    font-size: 2.5rem;
  }
  .fatigue-subtitle {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .fatigue-main h1 {
    font-size: 2rem;
  }
  .fatigue-subtitle {
    font-size: 1.1rem;
  }
  .fatigue-content-block, .fatigue-content-block-2 {
    padding-left: 1.5rem;
  }
  .fatigue-content-block p, .fatigue-content-block-2 p {
    font-size: 1rem;
    line-height: 1.4;
  }
}

/* Small Screens Adjustments for Headers */
@media (max-width: 768px) {
  .pillars .section-header {
    text-align: left;
    margin-left: 0;
    max-width: 100%;
  }

  .method-header {
    font-size: 1.35rem;
    text-align: left;
  }
}

