@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Oswald:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  /* Colors */
  --bg-color: #000000;
  --bg-color-light: #050505;
  --bg-color-lighter: #111111;
  --primary-color: #E3000F;
  /* KFC Red */
  --primary-hover: #c2000d;
  --accent-color: #E3000F;
  /* KFC Red */
  --text-main: #ffffff;
  --text-muted: #aaaaaa;
  --border-color: #1a1a1a;

  /* Typography */
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Playfair Display', serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1500px;

  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  margin-bottom: 0.5rem;
}

h5 {
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.25rem);
  margin-bottom: 0.5rem;
}

h6 {
  font-size: clamp(1rem, 1vw + 0.5rem, 1.1rem);
  margin-bottom: 0.5rem;
}

.accent-text {
  font-family: var(--font-accent);
  color: var(--accent-color);
  font-style: italic;
  text-transform: none;
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  display: block;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

a {
  color: var(--text-main);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--primary-color);
}

/* Layout */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--section-padding);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(198, 40, 40, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--text-main);
}

.btn-outline:hover {
  background-color: var(--text-main);
  color: var(--bg-color);
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition-fast);
  background: transparent;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(15, 15, 17, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 60px;
  width: auto;
  margin-right: 1rem;
}

.logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.2rem, 1.5vw + 0.5rem, 1.5rem);
  color: var(--text-main);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text span {
  font-size: 0.8rem;
  color: var(--primary-color);
  letter-spacing: 4px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links .btn {
  padding: 0.6rem 1.5rem;
}

.nav-links .btn::after {
  display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  font-size: clamp(1.2rem, 1.5vw + 0.5rem, 1.5rem);
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-main);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown>a {
  padding-right: 1.2rem;
}

.dropdown>a::before {
  content: '\f0d7';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-color-light);
  min-width: 200px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
  border-top: 2px solid var(--primary-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  width: 100%;
  display: block;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background-color: var(--bg-color-lighter);
  color: var(--primary-color);
  padding-left: 2rem;
}

/* Internal Page Header (Hero) */
.page-header {
  padding: 180px 0 100px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.8)), url('../images/hero_bg.png') center/cover;
  position: relative;
  text-align: center;
  border-bottom: 2px solid #E3000F;
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 4rem);
  margin-bottom: 0.5rem;
  color: #fff;
}

/* Clients Grid */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.client-card {
  background-color: var(--bg-color-light);
  padding: 2rem 1rem;
  text-align: center;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.1rem;
}

.client-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
  background-color: var(--bg-color-light);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

/* 4 Pillars Section */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.pillar-card {
  background: var(--bg-color-lighter);
  padding: 2rem;
  border-left: 4px solid var(--primary-color);
}

.pillar-card h4 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

/* Video Section */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-top: 2rem;
  border: 4px solid var(--bg-color-lighter);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Blog / News Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.news-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
  .news-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.news-card {
  background: var(--bg-color-light);
  border: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.news-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.news-img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  background-color: #fff;
}

.news-content {
  padding: 1.5rem;
}

.news-content h4 {
  font-size: clamp(1.1rem, 1.5vw + 0.3rem, 1.3rem);
  margin-bottom: 1rem;
}

.news-content p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.read-more {
  color: var(--primary-color);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.read-more:hover {
  color: #fff;
}

/* Pre-footer CTA */
.pre-footer {
  background-color: var(--primary-color);
  padding: 4rem 0;
  text-align: center;
}

.pre-footer h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw + 1rem, 2.8rem);
  margin-bottom: 1rem;
}

.pre-footer p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto 2rem;
}

.pre-footer .btn {
  background-color: var(--bg-color);
  color: #fff;
}

.pre-footer .btn:hover {
  background-color: #fff;
  color: var(--bg-color);
}

@media (max-width: 768px) {

  .pillars-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: clamp(1.1rem, 1.5vw + 0.3rem, 1.3rem);
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: var(--transition-fast);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}

/* Helper Classes */
.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-color-light);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    align-items: flex-start;
    border-bottom: 1px solid var(--border-color);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: var(--transition-fast);
  }

  .nav-links.show {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .mobile-menu-btn {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* KFC Layout Clones */
.bg-red {
  background-color: #E3000F !important;
}

.text-red {
  color: #E3000F !important;
}

/* Trust Banner & Logos */
.trust-banner {
  background-color: #E3000F;
  color: #fff;
  text-align: center;
  padding: 8px 0;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.1rem;
}

.clients-logo-bar {
  background-color: #fff;
  padding: 30px 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.clients-logo-bar img {
  max-height: 40px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s;
}

.clients-logo-bar img:hover {
  filter: none;
  opacity: 1;
}

/* Mission Clone */
.mission-section {
  text-align: center;
  padding: 5rem 0 0 0;
  background-color: #000;
}

.section-sub {
  color: #E3000F;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: block;
  font-weight: bold;
}

.mission-title {
  font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.1;
}

.mission-desc {
  max-width: 900px;
  margin: 0 auto 3rem;
  color: #aaa;
  font-size: 1rem;
  line-height: 1.6;
  padding: 0 20px;
}

.mission-image-container {
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.mission-image-container img {
  width: 100%;
  display: block;
  filter: grayscale(100%);
}

.btn-red {
  background-color: #E3000F;
  color: #fff;
  padding: 15px 35px;
  text-transform: uppercase;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
  transition: 0.3s;
  z-index: 10;
  font-size: 1rem;
}

.btn-red:hover {
  background-color: #c2000d;
  color: #fff;
}

/* Trainings Grid Clone */
.trainings-section {
  padding: 0;
  text-align: center;
  background-color: #000;
}

.trainings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  margin-top: 3rem;
}

.training-block {
  padding: 4rem 2rem;
  background-color: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #1a1a1a;
}

.training-image {
  width: 100%;
  height: 100%;
  min-height: 350px;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.training-image:hover {
  filter: grayscale(0%);
}

.training-icon {
  font-size: clamp(2.5rem, 4vw + 1rem, 3.5rem);
  color: #E3000F;
  margin-bottom: 20px;
}

.training-block h3 {
  font-size: clamp(1.2rem, 1.5vw + 0.5rem, 1.5rem);
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #fff;
}

.training-block p {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 25px;
  line-height: 1.5;
}

.read-more-red {
  color: #E3000F;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.read-more-red:hover {
  color: #ff3341;
}

/* Pillars Clone */
.pillars-section {
  padding: 6rem 0;
  background-color: #000;
}

.pillars-container {
  display: flex;
  align-items: center;
  gap: 5rem;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

.pillars-image-col {
  flex: 1;
  position: relative;
}

.pillars-image-col img {
  width: 100%;
  position: relative;
  z-index: 2;
  display: block;
  filter: grayscale(100%);
}

.pillars-image-col::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 150px;
  height: 150px;
  background-color: #E3000F;
  z-index: 1;
}

.pillars-image-col::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background-color: #E3000F;
  z-index: 1;
}

.pillars-content-col {
  flex: 1.2;
  text-align: left;
}

.pillars-content-col h2 {
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}

.pillars-content-col>p {
  color: #aaa;
  margin-bottom: 3rem;
  line-height: 1.6;
  font-size: 1rem;
}

.pillars-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.pillar-icon {
  color: #E3000F;
  font-size: clamp(1.2rem, 1.5vw + 0.5rem, 1.5rem);
  margin-top: 2px;
}

.pillar-item-content h4 {
  font-size: clamp(1.1rem, 1.5vw + 0.3rem, 1.3rem);
  margin-bottom: 10px;
  color: #fff;
}

.pillar-item-content p {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 992px) {
  .trainings-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillars-container {
    flex-direction: column;
    gap: 3rem;
  }

  .pillars-image-col::before,
  .pillars-image-col::after {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .trainings-grid {
    grid-template-columns: 1fr;
  }

  .pillars-grid-2x2 {
    grid-template-columns: 1fr;
  }

  .mission-title {
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  }
}

/* Marquee Animation */
.marquee-container {
  overflow: hidden;
  background-color: #fff;
  padding: 30px 0;
  white-space: nowrap;
  position: relative;
  display: flex;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: marquee 50s linear infinite;
  padding-left: 60px;
}

.marquee-content img {
  height: 60px;
  width: 150px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: 0.3s;
}

.marquee-content img:hover {
  filter: none;
  opacity: 1;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Testimonials Carousel (Google Reviews) */
.testimonials-carousel-wrapper {
  position: relative;
  max-width: 1500px;
  margin: 4rem auto 0;
  padding: 0 20px;
}

.testimonials-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 30px 10px 10px;
  /* Space for negative margin avatars */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-card-white {
  background: #ffffff;
  border-radius: 12px;
  padding: 0 20px 30px;
  min-width: 260px;
  flex: 0 0 calc(20% - 20px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  scroll-snap-align: start;
  position: relative;
  margin-top: 30px;
  border: 1px solid #f0f0f0;
}

.reviewer-avatar-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  margin: -30px auto 15px;
}

.reviewer-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: clamp(1.2rem, 1.5vw + 0.5rem, 1.5rem);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.google-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.google-badge img {
  width: 14px;
  height: 14px;
  filter: none;
  opacity: 1;
}

.reviewer-name {
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 5px 0;
  text-transform: none;
  font-family: var(--font-body);
}

.review-date {
  color: #999;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.review-stars {
  color: #fbbc05;
  font-size: 1rem;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
}

.verified-icon {
  color: #4285f4;
  font-size: 0.9rem;
  margin-left: 5px;
}

.review-text {
  color: #444;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1100px) {
  .testimonial-card-white {
    flex: 0 0 calc(33.333% - 14px);
  }
}

@media (max-width: 800px) {
  .testimonial-card-white {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 550px) {
  .testimonial-card-white {
    flex: 0 0 100%;
  }
}

/* News Grid Clone */
.news-section {
  background-color: #050505;
  padding: 5rem 0;
  text-align: center;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.news-card {
  background: #000;
  border: 1px solid #1a1a1a;
  transition: var(--transition-fast);
  text-align: left;
}

.news-card:hover {
  transform: translateY(-5px);
  border-color: #E3000F;
}

.news-img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  background-color: #fff;
  filter: grayscale(100%);
  transition: 0.3s;
}

.news-card:hover .news-img {
  filter: grayscale(0%);
}

.news-content {
  padding: 1.5rem;
}

.news-content h4 {
  font-size: clamp(1.1rem, 1.5vw + 0.3rem, 1.3rem);
  margin-bottom: 1rem;
  color: #fff;
}

.news-content p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: #888;
  line-height: 1.5;
}

/* Pre-footer CTA */
.pre-footer-cta {
  background-color: #E3000F;
  padding: 5rem 0;
  text-align: center;
}

.pre-footer-cta h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  line-height: 1.1;
}

.pre-footer-cta p {
  color: #fff;
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.pre-footer-cta .btn {
  background-color: #000;
  color: #fff;
}

.pre-footer-cta .btn:hover {
  background-color: #111;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .pre-footer-cta h2 {
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  }

  .mission-desc {
    font-size: 0.9rem;
  }

  .mission-image-container {
    text-align: center;
    padding-bottom: 2rem;
  }

  .btn-red {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 1.5rem;
    width: auto;
    justify-content: center;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  text-align: center;
  background-color: #050505;
}

/* Blogs Clone */
.blogs-section {
  padding: 5rem 0;
  text-align: center;
  background-color: #000;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1500px;
  margin: 3rem auto 0;
  padding: 0 20px;
}

.blog-card {
  text-align: left;
  background-color: #111;
}

.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: 0.3s;
}

.blog-card:hover img {
  filter: none;
}

.blog-content {
  padding: 2rem;
}

.blog-title {
  color: #fff;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.blog-desc {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Final CTA Banner */
.final-cta {
  background-color: #E3000F;
  padding: 5rem 20px;
  text-align: center;
}

.final-cta h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw + 1rem, 2.8rem);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.final-cta p {
  color: #fff;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.btn-black {
  background-color: #000;
  color: #fff;
  padding: 15px 35px;
  text-transform: uppercase;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  display: inline-block;
  text-decoration: none;
  transition: 0.3s;
}

.btn-black:hover {
  background-color: #222;
}

/* Footer Clone */
.site-footer {
  background-color: #0a0a0a;
  padding: 5rem 0 2rem;
  border-top: 1px solid #1a1a1a;
}

.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1500px;
  margin: 0 auto 4rem;
  padding: 0 20px;
}

.footer-heading {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-links-list a {
  color: #888;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links-list a:hover {
  color: #E3000F;
}

.footer-contact {
  color: #888;
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
}

.footer-contact:hover {
  color: #E3000F;
}

.footer-copy {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #1a1a1a;
  color: #666;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .blogs-grid {
    grid-template-columns: 1fr;
  }

  .footer-cols {
    grid-template-columns: 1fr;
  }

  .final-cta h2 {
    font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem);
  }
}

/* LTG Events Layout */
.ltg-events-section {
  background-color: #ffffff;
  padding: 5rem 0;
}

.ltg-events-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.ltg-event-card {
  display: flex;
  background-color: #000000;
  border: none;
  border-radius: 0;
  overflow: hidden;
  height: 340px;
}

.ltg-event-image {
  width: 40%;
  height: 100%;
  background-size: cover;
  background-position: top center;
  filter: none;
}

.ltg-event-details {
  width: 60%;
  padding: 40px 40px 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

.ltg-event-header {
  margin-bottom: 25px;
}

.ltg-event-title {
  font-size: clamp(1.1rem, 1.5vw + 0.3rem, 1.3rem);
  color: #fff;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  font-weight: bold;
  line-height: 1.2;
}

.ltg-event-org {
  color: #fff;
  font-weight: normal;
  font-size: 1.05rem;
  text-transform: none;
  letter-spacing: 0;
}

.ltg-event-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 25px;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
}

.ltg-event-meta p {
  margin: 0;
  display: block;
}

.ltg-event-venue {
  color: #fff;
  font-size: 1rem;
  margin-bottom: auto;
}

.ltg-event-footer {
  display: flex;
  justify-content: flex-start;
  margin-top: auto;
}

.ltg-book-btn {
  background-color: #D34B32;
  color: #fff;
  padding: 12px 28px;
  font-size: 0.95rem;
  border: none;
  border-radius: 0;
  text-transform: none;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.ltg-book-btn:hover {
  background-color: #e8593f;
  color: #fff;
}

@media (max-width: 1200px) {
  .ltg-events-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ltg-event-card {
    flex-direction: column;
    height: auto;
  }

  .ltg-event-image {
    width: 100%;
    height: 350px;
  }

  .ltg-event-details {
    width: 100%;
    padding: 30px 20px;
  }
}

/* About Us - KFC Clones */
.mvg-section { padding: 5rem 0; background-color: #050505; text-align: center; }
.mvg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 3rem; }
.mvg-card { background: #000; padding: 40px 30px; border: 1px solid #1a1a1a; text-align: left; }
.mvg-icon { font-size: clamp(1.8rem, 3vw + 1rem, 2.8rem); color: #E3000F; margin-bottom: 20px; }
.mvg-card h3 { font-size: clamp(1.2rem, 1.5vw + 0.5rem, 1.5rem); color: #fff; text-transform: uppercase; margin-bottom: 15px; }
.mvg-card p, .mvg-card ul { color: #aaa; font-size: 0.95rem; line-height: 1.6; }
.mvg-card ul { padding-left: 20px; margin-top: 10px; }

@media (max-width: 768px) {
    .mvg-grid { grid-template-columns: 1fr; }
}

.team-section { background-color: #000; padding: 5rem 0; text-align: center; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 3rem; }
.team-card { position: relative; overflow: hidden; background: #111; }
.team-img { width: 100%; height: 350px; object-fit: cover; filter: grayscale(100%); transition: var(--transition-fast); display: block; }
.team-card:hover .team-img { filter: grayscale(0%); transform: scale(1.05); }
.team-banner { 
    position: absolute; 
    bottom: 0; left: 0; width: 100%; 
    background-color: #E3000F; 
    padding: 15px 10px; 
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 100%);
    text-align: center;
    color: #fff;
    transition: var(--transition-fast);
}
.team-card:hover .team-banner { padding-bottom: 25px; }
.team-name { font-size: clamp(1.1rem, 1.5vw + 0.3rem, 1.3rem); font-weight: bold; text-transform: uppercase; margin-bottom: 5px; margin-top: 10px; font-family: var(--font-heading); letter-spacing: 1px;}
.team-role { font-size: 0.9rem; color: #fff; font-weight: normal; }

@media (max-width: 992px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .team-grid { grid-template-columns: 1fr; }
}

.journey-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .journey-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .journey-grid > div:last-child {
        text-align: center !important;
    }
}

/* Trainings Grid & Pillars Responsiveness */
@media (max-width: 1200px) {
    .trainings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .trainings-grid {
        grid-template-columns: 1fr;
    }
    .pillars-container {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Fix for Video Hover - apply filter directly to iframe to allow clicks while retaining effect */
.training-video-container {
    filter: none !important;
}

.training-video-container iframe {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.training-video-container iframe:hover {
    filter: grayscale(0%);
}

/* Global Mobile Padding & Margin Adjustments */
@media (max-width: 768px) {
    .section, 
    .mission-section, 
    .trainings-section, 
    .team-section, 
    .pillars-section, 
    .mvg-section {
        padding: 3rem 0;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .training-block {
        padding: 2rem 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
    
    .mission-title, 
    .pillars-content-col h2 {
        font-size: 2rem !important;
    }
    
    .pre-footer-cta {
        padding: 3rem 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .pillars-container {
        gap: 2rem;
    }
}

/* Event Slider Styles */
.ltg-event-slider-container {
    position: relative;
    width: 40%;
    height: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.ltg-slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.ltg-slide {
    flex: 0 0 100%;
    height: 100%;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-color: #050505;
}

.ltg-event-image {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-color: #050505;
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    transition: background 0.3s;
}

.slider-nav-btn:hover {
    background: var(--primary-color);
}

.slider-nav-btn.prev-btn {
    left: 10px;
}

.slider-nav-btn.next-btn {
    right: 10px;
}