/* ===================================
   PROFESSIONAL COACHING STYLES
   =================================== */

/* Hero Section */
.coaching-hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* Hero Images Side by Side */
.coaching-hero-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
}

.mobile-coaching-hero-slideshow {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.mobile-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    overflow: hidden;
}

.mobile-hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.mobile-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 5s ease;
    transform: scale(1.05);
}

.mobile-hero-slide.active img {
    transform: scale(1);
}

.coaching-hero-image {
    flex: 1;
    height: 100%;
    overflow: hidden;
}

.coaching-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.coaching-hero-image:hover img {
    transform: scale(1.02);
}

/* Hero Overlay */
.coaching-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Hero Content */
.coaching-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.coaching-title-section {
    margin-bottom: 50px;
    animation: coachingSlideUp 1.2s ease-out;
    text-align: center;
}

.coaching-main-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    margin: 0 auto 20px auto;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    position: relative;
    white-space: nowrap;
    text-align: center;
}

.coaching-subtitle {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    margin: 0;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* CTA Section */
.coaching-cta-section {
    animation: coachingFadeIn 1.5s ease-out 0.5s both;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.coaching-btn-primary {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    box-shadow: 
        0 10px 30px rgba(255, 107, 53, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.coaching-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.coaching-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(255, 107, 53, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.coaching-btn-primary:hover::before {
    left: 100%;
}

.coaching-btn-primary:active {
    transform: translateY(-1px);
}

.coaching-btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    color: white;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    border: 2px solid transparent;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.coaching-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.coaching-btn-secondary:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #444 0%, #2a2a2a 100%);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.coaching-btn-secondary:hover::before {
    left: 100%;
}

.coaching-btn-secondary:active {
    transform: translateY(-1px);
}

/* Trust Indicators */
.trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  animation: coachingFadeIn 1.8s ease-out 0.8s both;
}

.trust li {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ff6b35;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Oswald', sans-serif;
}

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

@keyframes coachingFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .coaching-hero-images {
        display: none;
    }

    .mobile-coaching-hero-slideshow {
        display: block;
    }

    .coaching-hero-content {
        padding: 0 15px;
    }

    .coaching-title-section {
        margin-bottom: 40px;
    }

    .coaching-main-title {
        white-space: normal;
        letter-spacing: 2px;
        font-size: clamp(2.2rem, 8vw, 3.2rem);
        line-height: 1;
    }
    
    .coaching-btn-primary {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .coaching-btn-secondary {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
}

@media (max-width: 480px) {
    .coaching-hero-images {
        display: none;
    }

    .mobile-coaching-hero-slideshow {
        display: block;
    }

    .coaching-btn-primary {
        padding: 12px 25px;
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .coaching-btn-secondary {
        padding: 10px 20px;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .coaching-main-title {
        letter-spacing: 1px;
        font-size: clamp(2rem, 9vw, 2.8rem);
        line-height: 1.05;
    }
}

/* Hero Pillar Layout */
:root { --header-h: 72px; } /* fallback; JS will set the real value */

.hero--pillar {
    background: linear-gradient(180deg, #f8f9fa, #ffffff);
    color: #333;
    padding: clamp(1.5rem, 4vw, 3rem) 1rem;
    display: grid;
    grid-template-columns: 1fr minmax(48ch, 60ch) 1fr;
    gap: clamp(1rem, 3vw, 2rem);
    align-items: center; /* center the middle column */
    max-width: calc(var(--container) + 20vw);
    margin: 0 auto;
    block-size: calc(100dvh - var(--header-h)); /* dynamic viewport */
    min-block-size: 560px; /* safety floor on tiny screens */
}/* Hero Content Column */
.hero__content {
  display: flex; 
  flex-direction: column; 
  justify-content: center;
  gap: var(--space-3);
  text-align: center;
}

.hero__content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0;
  color: #333;
  line-height: 1.1;
}

.hero__content .lead { 
  color: #555; 
  max-width: 60ch; 
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  line-height: 1.5;
  margin: 0;
}

/* CTA Buttons */
.hero__cta { 
  display: flex; 
  gap: var(--space-2); 
  flex-wrap: wrap; 
  justify-content: center;
  margin: var(--space-2) 0;
}

.btn { 
  padding: 0.9rem 1.25rem; 
  border-radius: 12px; 
  border: 2px solid transparent; 
  font-weight: 700;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn--primary { 
  background: var(--accent); 
  color: #111; 
}

.btn--primary:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn--ghost { 
  border-color: #ddd; 
  color: #333; 
}

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

/* Trust Indicators */
.trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
}

.trust li {
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: var(--space-1) var(--space-2);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Image Galleries */
.hero__left, .hero__right { 
  display: grid; 
  gap: var(--space-2); 
  align-content: center;
  align-self: stretch;
  min-height: 0;
}

.hero__left { 
  grid-template-columns: 1fr; 
}

.hero__right { 
  grid-template-columns: 1fr; 
}

/* Image Tiles */
.tile { 
  aspect-ratio: 4/5; 
  border-radius: var(--radius); 
  overflow: hidden; 
  box-shadow: var(--shadow); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tile--tall { 
  aspect-ratio: 3/5; 
}

.tile img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  object-position: center; 
  filter: contrast(1.05) saturate(1.05); 
  transition: transform 0.3s ease;
}

.tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0,0,0,.35);
}

.tile:hover img {
  transform: scale(1.05);
}

/* How It Works Section - Light Mode Version */
.how-it-works-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: clamp(60px, 12vw, 120px) clamp(1rem, 4vw, 2rem);
  position: relative;
  overflow: hidden;
}

.how-it-works-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #e55a2b);
  z-index: 1;
}

.works-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.works-content-side h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  color: #333;
  text-transform: uppercase;
  letter-spacing: clamp(2px, 0.5vw, 3px);
  font-weight: 700;
  position: relative;
  padding-bottom: 1rem;
  text-align: center;
}

.works-content-side h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #e55a2b);
  border-radius: 2px;
}

.works-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-top: clamp(2rem, 5vw, 4rem);
}

.process-step {
  background: rgba(0, 0, 0, 0.03);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: clamp(15px, 3vw, 25px);
  border: 2px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #e55a2b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 107, 53, 0.3);
  background: rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-step:hover::before {
  transform: scaleX(1);
}

.step-content h4 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: #333;
  margin-bottom: clamp(0.8rem, 2vw, 1.2rem);
  text-transform: uppercase;
  letter-spacing: clamp(1px, 0.3vw, 1.5px);
  font-weight: 600;
  line-height: 1.2;
}

.step-content p {
  color: #555;
  line-height: clamp(1.5, 0.5vw, 1.7);
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  max-width: 45ch;
  margin: 0 auto;
}

.works-cta-section {
  margin-top: clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.works-images-side {
  position: relative;
}

.works-image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.works-image {
  position: relative;
  height: clamp(300px, 40vw, 600px);
  border-radius: clamp(8px, 2vw, 15px);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.works-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.works-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  filter: brightness(0.85) contrast(1.1);
}

.works-image:hover img {
  transform: scale(1.05);
}

.works-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: white;
  padding: 40px 25px 25px;
  text-align: center;
  z-index: 2;
}

.works-overlay h4 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
}

.works-overlay p {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: #ff6b35;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Certification Section - Enhanced Visual Hierarchy */
.certification-section {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: white;
  padding: clamp(60px, 12vw, 120px) clamp(1rem, 4vw, 2rem);
  position: relative;
  overflow: hidden;
}

.certification-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #e55a2b);
  z-index: 1;
}

.cert-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cert-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: clamp(2px, 0.5vw, 3px);
  font-weight: 700;
  position: relative;
  padding-bottom: 1rem;
}

.cert-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #e55a2b);
  border-radius: 2px;
}

.cert-content > p {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  line-height: clamp(1.6, 0.5vw, 1.8);
  color: #d0d0d0;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}

.cert-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-top: clamp(2rem, 5vw, 4rem);
}

.benefit-item {
  background: rgba(255, 255, 255, 0.08);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: clamp(15px, 3vw, 25px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #e55a2b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 107, 53, 0.4);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefit-item:hover::before {
  transform: scaleX(1);
}

.benefit-item h4 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: #ff6b35;
  margin-bottom: clamp(0.8rem, 2vw, 1.2rem);
  text-transform: uppercase;
  letter-spacing: clamp(1px, 0.3vw, 1.5px);
  font-weight: 600;
  line-height: 1.2;
}

.benefit-item p {
  color: #d0d0d0;
  line-height: clamp(1.5, 0.5vw, 1.7);
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  max-width: 45ch;
}

/* Mobile Responsive */
@media (max-width: 980px) {
  .hero--pillar { 
    grid-template-columns: 1fr;
    gap: var(--space-4);
    padding: var(--space-4) 1rem;
  }
  
  .hero__left, .hero__right {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 28vw;
    order: -1;
  }
  
  .tile, .tile--tall { 
    aspect-ratio: auto; 
    height: 100%; 
  }
  
  .hero__content {
    order: 1;
  }
  
  .hero__cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  
  .trust {
    justify-content: center;
    gap: var(--space-1);
  }
  
  .trust li {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .works-container {
    text-align: center;
  }
  
  .works-process {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
  
  .process-step {
    text-align: center;
  }
  
  .how-it-works-section,
  .certification-section {
    padding: var(--space-5) 1rem;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .hero--pillar {
    padding: var(--space-3) 0.5rem;
  }
  
  .hero__left, .hero__right {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 35vw;
  }
  
  .btn {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
  
  .trust {
    flex-direction: column;
    align-items: center;
  }
  
  .trust li {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }
  
  .works-image-grid {
    grid-template-columns: 1fr;
  }
  
  .works-image {
    height: 250px;
  }
}

@media (max-width: 640px) {
  .works-container,
  .cert-container {
    padding-inline: clamp(1.25rem, 6vw, 2.25rem);
  }

  .works-process,
  .cert-benefits {
    gap: clamp(1.75rem, 5vw, 2.5rem);
  }

  .process-step,
  .benefit-item {
    max-width: 360px;
    margin-inline: auto;
    text-align: center;
  }

  .benefit-item h4,
  .benefit-item p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== Conveyor Belts (left & right) ===== */
html, body { scroll-padding-top: var(--header-h); }

.belt {
  position: relative;
  height: 100%; /* fill the hero column */
  overflow: hidden;                 /* hide scroll edges */
}

.belt__track {
  position: absolute; 
  inset: 0; /* decouple from layout height */
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  --belt-speed: 24s;
  animation: belt-scroll var(--belt-speed) linear infinite;
  will-change: transform;           /* GPU-friendly */
}

/* STOP the vertical squish in the belt */
.belt__track > .tile {
  flex: 0 0 auto;     /* no shrink, no grow, size to content (aspect-ratio) */
  inline-size: 100%;  /* tile is as wide as the belt column */
}

.belt__track > .tile.tile--tall {
  flex: 0 0 auto;
}

.belt--up .belt__track { 
  animation-direction: reverse; /* moves upward */
}

.belt--down .belt__track { 
  animation-direction: normal; /* moves downward */
}

@keyframes belt-scroll {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

/* Pause on hover/focus for UX */
.belt:hover .belt__track,
.belt:focus-within .belt__track { animation-play-state: paused; }

/* Motion safety: respect OS setting */
@media (prefers-reduced-motion: reduce) {
  .belt__track { animation: none; }
}

/* Mobile: disable auto-anim (costly + too much motion), fall back to static grid */
@media (max-width: 980px) {
  .belt__track { animation: none; }
  .hero__left, .hero__right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 28vw;
  }
  .tile, .tile--tall { aspect-ratio: auto; height: 100%; }
}

/* Image fit stays perfect */
.tile img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }