/* Inclusivity & Impact Page Styles */

/* Page Content Positioning - Fix for content appearing below navbar */
.imp {
  padding-top: 0;
  margin-bottom: 0;
  position: relative;
  text-align: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  margin-top: 120px; /* Push content below navbar */
  z-index: 1; /* Ensure content appears above background but below navbar */
  background-color: black; /* Add dark background */
}

.imp h2 {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 100px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: absolute;
  top: 130px;
  left: 28%;
  transform: translateX(-50%);
  z-index: 5; /* Higher z-index than images but below navbar */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  text-align: center;
  line-height: 0.6;
  width: 100%;
}

/* First line - center aligned */
.imp h2 .line1 {
  display: block;
  text-align: center;
}

/* Second line - right aligned */
.imp h2 .line2 {
  display: block;
  text-align: center;
  margin-left: 300px;
}

.image-container {
  display: flex;
}

.img-wrapper {
  position: relative;
  overflow: hidden;
  height: 100%; /* Use full container height */
  display: flex;
  align-items: stretch;
}

.img-1-wrapper {
  width: 30%;
  height: 100%;
  min-height: calc(100vh - 120px);
  background-color: #000; /* Add black background */
  position: relative;
}

.img-2-wrapper {
  width: 70%;
  height: 100%;
  min-height: calc(100vh - 120px);
}

.img-1,
.img-2 {
  width: 100%;
  height: 100%; /* Use full wrapper height */
  min-height: calc(100vh - 120px);
  max-height: calc(100vh - 120px);
  display: block;
  object-fit: cover;
  transition: none !important;
  flex: 1;
}

.img-1 {
  opacity: 0.7; /* Make the shadow image slightly transparent */
  mix-blend-mode: lighten; /* This will help blend with the black background */
}

/* Vision Section Styles - Force visibility */
.our-vision {
  background-color: #000000 !important;
  padding: 100px 20px 80px 20px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  border-bottom: none !important;
  position: relative !important;
  z-index: 20 !important;
  width: 100% !important;
  visibility: visible !important;
  opacity: 1 !important;
  clear: both !important;
}

.vision-content {
  max-width: 1000px !important;
  margin: 0 auto !important;
  text-align: center !important;
  position: relative !important;
  z-index: 11 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin-top: 110px;
}
.blog-section-title {
  left: 50% !important;
  transform: translateX(-50%);
  top: 30px !important;
}

.our-vision h2 {
  font-family: "Big Shoulders Display", sans-serif !important;
  font-size: 72px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  margin-bottom: 30px !important;
  letter-spacing: 2px !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
  /* Linear gradient text effect */
  background: linear-gradient(to bottom, #ffffff, #999999) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  /* Fallback for browsers that don't support gradient text */
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.our-vision p {
  font-family: "Overused Grotesk", sans-serif !important;
  font-size: 20px !important;
  line-height: 1.3 !important;
  color: #ffffff !important;
  margin: 0 auto !important;
  max-width: 700px !important;
  padding: 0 20px !important;
  font-weight: 400 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

@media (max-width: 768px) {
  .our-vision {
    padding: 80px 20px 60px 20px !important;
    margin: 0 0 80px 0 !important;
    min-height: 350px !important;
  }

  .our-vision h2 {
    font-size: 60px !important;
    margin-bottom: 30px !important;
  }

  .our-vision p {
    font-size: 24px !important;
  }
}

@media (max-width: 480px) {
  .our-vision {
    padding: 60px 15px 50px 15px !important;
    margin: 0 0 60px 0 !important;
    min-height: 300px !important;
  }

  .our-vision h2 {
    font-size: 42px !important;
    margin-bottom: 25px !important;
  }

  .our-vision p {
    font-size: 20px !important;
  }
}

/* Info1 section styles */
.info1 {
  position: absolute !important;
  bottom: -50px;
  text-align: center;
  padding: 80px 20px 60px 20px;
  position: relative;
  z-index: 10;
  width: 100%;
  margin: 50px 0;
}

.info1 p {
  font-family: "Overused Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 auto;
  max-width: 1200px;
  line-height: 1.4;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .info1 p {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .info1 p {
    font-size: 24px;
  }
}

/* TV Scroll Spacer - provides extra scroll area for slower TV animations */
.tv-scroll-spacer {
  height: 420vh;
  background: transparent;
  pointer-events: none;
}

@media (max-width: 768px) {
  .tv-scroll-spacer {
    height: 00vh; /* Even more space for mobile */
  }
}

/* Remove any hover effects or animations */
.img-1:hover,
.img-2:hover {
  filter: none !important;
  transform: none !important;
  transition: none !important;
  scale: none !important;
}

/* Override global image hover effects specifically for these images */
.img-wrapper:hover img,
.img-wrapper:hover .img-1,
.img-wrapper:hover .img-2,
.image-container:hover img,
.image-container:hover .img-1,
.image-container:hover .img-2 {
  transform: none !important;
  scale: none !important;
  filter: none !important;
  transition: none !important;
}

/* Hamburger Menu Styles */
.hamberger-menu:hover {
  transform: scale(1.1);
}

.hamburger-lines {
  width: 28px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-lines .line {
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger to X animation */
.hamberger-menu.active .line1 {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamberger-menu.active .line2 {
  opacity: 0;
  transform: scaleX(0);
}

.hamberger-menu.active .line3 {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Enhanced overlay z-index to ensure it's above everything */
.overlay {
  z-index: 99999 !important;
}

/* Prevent body scroll when menu is open */
body.nav-open {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
}

/* Responsive Design */
/* Tablet and Small Desktop */
@media (max-width: 1024px) {
  .imp {
    margin-top: 100px;
  }

  .imp h2 {
    font-size: 95px;
    top: -60px;
  }

  .imp h2 .line1 {
    text-align: center;
  }

  .imp h2 .line2 {
    text-align: right;
  }

  .image-container {
    height: calc(100vh - 100px);
  }

  .img-wrapper {
    height: 100%;
    display: flex;
    align-items: stretch;
  }

  .img-1-wrapper,
  .img-2-wrapper {
    height: 100%;
    min-height: calc(100vh - 100px);
  }

  .img-1,
  .img-2 {
    height: 100%;
    min-height: calc(100vh - 100px);
    max-height: calc(100vh - 100px);
    flex: 1;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  .imp {
    margin-top: 80px;
  }

  .imp h2 {
    font-size: 75px;
    top: -50px;
  }

  .imp h2 .line1 {
    text-align: center;
  }

  .imp h2 .line2 {
    text-align: right;
  }

  .image-container {
    flex-direction: column;
    height: calc(100vh - 80px);
  }

  .img-1-wrapper,
  .img-2-wrapper {
    width: 100%;
    height: 50%; /* Each image takes exactly half the container height */
    min-height: calc((100vh - 80px) / 2);
    max-height: calc((100vh - 80px) / 2);
  }

  .img-wrapper {
    height: 100%; /* Use full allocated height */
    display: flex;
    align-items: stretch;
  }

  .img-1,
  .img-2 {
    height: 100%; /* Use full wrapper height */
    min-height: calc((100vh - 80px) / 2);
    max-height: calc((100vh - 80px) / 2);
    transition: none !important;
    filter: none !important;
    transform: none !important;
    flex: 1;
  }

  .img-1:hover,
  .img-2:hover {
    filter: none !important;
    transform: none !important;
    transition: none !important;
    scale: none !important;
  }

  /* Override global image hover effects for mobile */
  .img-wrapper:hover img,
  .img-wrapper:hover .img-1,
  .img-wrapper:hover .img-2,
  .image-container:hover img,
  .image-container:hover .img-1,
  .image-container:hover .img-2 {
    transform: none !important;
    scale: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* Mobile Large */
@media (max-width: 576px) {
  .imp {
    margin-top: 70px;
  }

  .imp h2 {
    font-size: 55px;
    top: -40px;
  }

  .imp h2 .line1 {
    text-align: center;
  }

  .imp h2 .line2 {
    text-align: right;
  }

  .image-container {
    height: calc(100vh - 70px);
  }
}

/* Mobile Medium */
@media (max-width: 480px) {
  .imp {
    margin-top: 60px;
  }

  .imp h2 {
    font-size: 45px;
    top: -35px;
  }

  .imp h2 .line1 {
    text-align: center;
  }

  .imp h2 .line2 {
    text-align: right;
  }

  .image-container {
    height: calc(100vh - 60px);
  }
}

/* Mobile Small */
@media (max-width: 375px) {
  .imp {
    margin-top: 50px;
  }

  .imp h2 {
    font-size: 38px;
    top: -30px;
  }

  .imp h2 .line1 {
    text-align: center;
  }

  .imp h2 .line2 {
    text-align: right;
  }

  .image-container {
    height: calc(100vh - 50px);
  }
}

.nxt-p4 p {
  color: #fff;
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
  text-align: left;
  font-family: Overused Grotesk;
}

/* Responsive Styles for nxt-section4 */
/* Tablet Landscape (1024px and below) */
@media (max-width: 1024px) {
  .nxt-section4 {
    max-width: 900px;
    gap: 25px;
  }

  .nxt-img4 img {
    width: 400px;
    height: 460px;
    margin-top: -720px;
  }
}

/* Tablet Portrait (768px and below) */
@media (max-width: 768px) {
  /* Hide desktop section */
  .nxt-section4 {
    display: none;
  }

  /* Show mobile section */
  .nxt-section4-mobile {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 80px auto 50px auto;
    padding: 15px;
    text-align: left;
    max-width: 700px;
  }

  .nxt-heading-mobile h2 {
    font-size: 42px;
    text-align: left;
    margin-bottom: 30px;
  }

  .nxt-img4-mobile img {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 30px;
  }

  .nxt-p4-mobile p {
    font-size: 18px;
    text-align: left;
    line-height: 1.6;
  }
}

/* Mobile Landscape (640px and below) */
@media (max-width: 640px) {
  /* Hide desktop section */
  .nxt-section4 {
    display: none;
  }

  /* Show mobile section */
  .nxt-section4-mobile {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 60px auto 40px auto;
    padding: 15px;
    text-align: left;
    max-width: 500px;
  }

  .nxt-heading-mobile h2 {
    font-size: 36px;
    text-align: left;
    margin-bottom: 25px;
  }

  .nxt-img4-mobile img {
    max-width: 350px;
    width: 100%;
    height: auto;
    margin-bottom: 25px;
  }

  .nxt-p4-mobile p {
    font-size: 16px;
    text-align: left;
    line-height: 1.5;
  }
}

/* Mobile Portrait (480px and below) */
@media (max-width: 480px) {
  /* Hide desktop section */
  .nxt-section4 {
    display: none;
  }

  /* Show mobile section */
  .nxt-section4-mobile {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 50px auto 30px auto;
    padding: 10px;
    text-align: left;
  }

  .nxt-heading-mobile h2 {
    font-size: 32px;
    text-align: left;
    margin-bottom: 20px;
  }

  .nxt-img4-mobile img {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .nxt-p4-mobile p {
    font-size: 15px;
    text-align: left;
    line-height: 1.5;
  }
}

/* Small Mobile (360px and below) */
@media (max-width: 360px) {
  /* Hide desktop section */
  .nxt-section4 {
    display: none;
  }

  /* Show mobile section */
  .nxt-section4-mobile {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 40px auto 25px auto;
    padding: 10px;
    text-align: left;
  }

  .nxt-heading-mobile h2 {
    font-size: 28px;
    text-align: left;
    margin-bottom: 15px;
  }

  .nxt-img4-mobile img {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
  }

  .nxt-p4-mobile p {
    font-size: 14px;
    text-align: left;
    line-height: 1.5;
  }
}

.nxt-section4 {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  max-width: 1200px;
  margin: 150px auto 50px auto;
  padding: 20px;
}

/* Fourth Section - Image on Left, Text on Right */
.nxt-section4 {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  margin: 150px auto 50px auto;
  padding: 20px;
}

/* Mobile-only section - hidden on desktop */
.nxt-section4-mobile {
  display: none;
}

.nxt-text-content {
  flex: 1;
  margin-left: auto;
  order: 2;
}

.nxt-img4 {
  flex-shrink: 0;
  position: sticky;
  top: 100px;
  margin-left: -50px;
  height: fit-content;
  order: 1;
}

.nxt-img4 img {
  width: 500px;
  height: 575px;
  position: sticky;
  top: 0;
  left: 0;
  display: block;
}

/* Desktop alignment - align image with heading */
@media (min-width: 1024px) {
  .nxt-img4 {
    align-self: flex-start;
    margin-top: -20px; /* Adjust this value to align with the heading */
  }
}

.nxt-section4 .nxt-heading {
  margin-bottom: 20px;
}

.nxt-section4 .nxt-heading h2 {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 87px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: left;
}

.nxt-p4 p {
  color: #fff;
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
  text-align: left;
  font-family: "Overused Grotesk", sans-serif;
}

/* Responsive Styles for nxt-section4 */
/* Tablet Landscape (1024px and below) */
@media (max-width: 1024px) {
  .nxt-section4 {
    max-width: 900px;
    gap: 25px;
  }

  .nxt-img4 img {
    width: 400px;
    height: 460px;
  }
}

/* Tablet Portrait (768px and below) */
@media (max-width: 768px) {
  /* Hide desktop section */
  .nxt-section4 {
    display: none;
  }

  /* Show mobile section */
  .nxt-section4-mobile {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 80px auto 50px auto;
    padding: 15px;
    text-align: left;
    max-width: 700px;
  }

  .nxt-heading-mobile h2 {
    font-family: "Big Shoulders Display", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
  }

  .nxt-img4-mobile img {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 30px;
    padding: 0 20px;
  }

  .nxt-p4-mobile p {
    color: #fff;
    font-size: 17px;
    text-align: left;
    line-height: 1.6;
    margin: 0;
    font-family: "Overused Grotesk", sans-serif;
    padding: 0 20px;
  }
}

/* Mobile Landscape (640px and below) */
@media (max-width: 640px) {
  /* Hide desktop section */
  .nxt-section4 {
    display: none;
  }

  /* Show mobile section */
  .nxt-section4-mobile {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 60px auto 40px auto;
    padding: 15px;
    text-align: left;
    max-width: 500px;
  }

  .nxt-heading-mobile h2 {
    font-family: "Big Shoulders Display", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 25px;
  }

  .nxt-img4-mobile img {
    max-width: 350px;
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    padding: 0 15px;
  }

  .nxt-p4-mobile p {
    color: #fff;
    font-size: 15px;
    text-align: left;
    line-height: 1.5;
    margin: 0;
    font-family: "Overused Grotesk", sans-serif;
    padding: 0 15px;
  }
}

/* Mobile Portrait (480px and below) */
@media (max-width: 480px) {
  /* Hide desktop section */
  .nxt-section4 {
    display: none;
  }

  /* Show mobile section */
  .nxt-section4-mobile {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 50px auto 30px auto;
    padding: 10px;
    text-align: left;
  }

  .nxt-heading-mobile h2 {
    font-family: "Big Shoulders Display", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 20px;
  }

  .nxt-img4-mobile img {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    padding: 0 15px;
  }

  .nxt-p4-mobile p {
    color: #fff;
    font-size: 14px;
    text-align: left;
    line-height: 1.5;
    margin: 0;
    font-family: "Overused Grotesk", sans-serif;
    padding: 0 15px;
  }
}

/* Small Mobile (360px and below) */
@media (max-width: 360px) {
  /* Hide desktop section */
  .nxt-section4 {
    display: none;
  }

  /* Show mobile section */
  .nxt-section4-mobile {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 40px auto 25px auto;
    padding: 10px;
    text-align: left;
  }

  .nxt-heading-mobile h2 {
    font-family: "Big Shoulders Display", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 15px;
  }

  .nxt-img4-mobile img {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    padding: 0 10px;
  }

  .nxt-p4-mobile p {
    color: #fff;
    font-size: 13px;
    text-align: left;
    line-height: 1.5;
    margin: 0;
    font-family: "Overused Grotesk", sans-serif;
    padding: 0 10px;
  }
}

/* Section Animations - Only trigger on scroll */
/* Initial state - elements are hidden until they appear in viewport */
.nxt-section4 .nxt-img4,
.nxt-section4 .nxt-text-content {
  opacity: 0;
  transform: translateX(-100px);
}

/* Elements that come from right */
.nxt-section4 .nxt-text-content {
  transform: translateX(100px);
}

/* Intersection Observer Classes for scroll-triggered animations */
.animate-on-scroll {
  opacity: 0;
  transition: all 0.8s ease-out;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile Animations */
@media (max-width: 768px) {
  /* Initial hidden state for mobile sections - only affects mobile */
  .nxt-section4-mobile .nxt-heading-mobile,
  .nxt-section4-mobile .nxt-img4-mobile,
  .nxt-section4-mobile .nxt-p4-mobile {
    opacity: 0;
    /* Initial state will be set by GSAP */
  }

  /* Hardware acceleration for smooth mobile animations */
  .nxt-section4-mobile {
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
    perspective: 1000px;
    overflow: hidden;
  }

  /* Optimize performance for mobile animations */
  .nxt-section4-mobile .nxt-heading-mobile,
  .nxt-section4-mobile .nxt-img4-mobile,
  .nxt-section4-mobile .nxt-p4-mobile {
    will-change: transform, opacity, filter;
    backface-visibility: hidden;
    transform: translateZ(0);
  }
}

/* TV Mission Section Styles */
.tv-mission-section {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  min-height: 800px;
  background-image: url("../img/Group 14.png");
  background-size: 950px 65vh !important;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 100px 0 0 0;
  background-color: #000000;
  z-index: 10;
}

.tv-mission-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tv-screen-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  width: 600px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tv-text-line-1 {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  /* Linear gradient text effect */
  background: linear-gradient(to right, #ffffff, #999999);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Fallback for browsers that don't support gradient text */
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2;
  max-width: 100%;
  margin: 0;
  padding: 20px;
  text-align: center;
  white-space: nowrap;
  /* Initial state - visible and properly positioned */
  opacity: 1;
  will-change: transform, opacity;
  /* Enhanced smoothness for slower animations */
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.tv-text-line-2 {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  /* Linear gradient text effect */
  background: linear-gradient(to top, #3e2643, #9c60a9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Fallback for browsers that don't support gradient text */
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2;
  max-width: 100%;
  margin: 0;
  padding: 20px;
  text-align: center;
  white-space: nowrap;
  /* Initial state - visible and properly positioned */
  opacity: 1;
  will-change: transform, opacity;
  /* Enhanced smoothness for slower animations */
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.tv-text-line-3 {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  /* Linear gradient text effect */
  background: linear-gradient(to top, #3e2643, #9c60a9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Fallback for browsers that don't support gradient text */
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2;
  max-width: 100%;
  margin: 0;
  padding: 20px;
  text-align: center;
  white-space: nowrap;
  /* Initial state - visible and properly positioned */
  opacity: 1;
  will-change: transform, opacity;
  /* Enhanced smoothness for slower animations */
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.tv-text-line-4 {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  /* Linear gradient text effect */
  background: linear-gradient(to bottom, #3e2643, #9c60a9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Fallback for browsers that don't support gradient text */
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2;
  max-width: 100%;
  margin: 0;
  padding: 20px;
  text-align: center;
  white-space: nowrap;
  /* Initial state - visible and properly positioned */
  opacity: 1;
  will-change: transform, opacity;
  /* Enhanced smoothness for slower animations */
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

#tv-line-1 h2 {
  font-size: 4rem;
  text-transform: uppercase;
}

/* Responsive TV Mission Section */
@media (max-width: 1600px) {
  .tv-mission-section {
    position: sticky;
    height: 100vh;
    min-height: 700px;
    background-size: 1200px 700px;
    margin: 80px 0 0 0;
  }

  .tv-text-line {
    font-family: "Big Shoulders Display", sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(to right, #ffffff, #999999);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #ffffff;
    text-transform: uppercase;
    max-width: 650px; /* Increased to match wider TV */
  }

  .tv-screen-content {
    width: 750px;
    height: 280px;
  }
}

@media (max-width: 1200px) {
  .tv-mission-section {
    position: sticky;
    height: 100vh;
    min-height: 600px;
    background-size: 900px 590px;
    margin: 60px 0 0 0;
  }

  .tv-text-line-1 {
    font-size: 3.2rem !important;
  }

  .tv-text-line-2 {
    font-size: 4.2rem !important;
  }

  .tv-text-line-3 {
    font-size: 4.2rem !important;
  }

  .tv-text-line-4 {
    font-size: 4.2rem !important;
  }

  .tv-text-line {
    font-family: "Big Shoulders Display", sans-serif;
    font-size: 2.3rem;
    font-weight: 700;
    background: linear-gradient(to right, #ffffff, #999999);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #ffffff;
    text-transform: uppercase;
    max-width: 600px; /* Increased to match wider TV */
  }

  .tv-screen-content {
    width: 650px;
    height: 240px;
  }
}

@media (max-width: 768px) {
  .tv-mission-section {
    position: sticky;
    height: 100vh;
    min-height: 500px;
    background-size: 550px 345px !important;
    margin: 20px 0 0 0;
    overflow: hidden;
    /* Enhanced centering for mobile */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .tv-mission-container {
    overflow: hidden;
    position: relative;
    /* Enhanced centering for mobile */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  .tv-screen-content {
    width: 420px;
    height: 170px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Enhanced mobile content centering */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .tv-text-line-1,
  .tv-text-line-2,
  .tv-text-line-3,
  .tv-text-line-4 {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    padding: 10px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .tv-text-line-1 {
    font-size: 2.2rem !important;
  }

  .tv-text-line-2 {
    font-size: 2.9rem !important;
  }

  .tv-text-line-3 {
    font-size: 2.9rem !important;
    white-space: normal !important;
  }

  .tv-text-line-4 {
    font-size: 2.9rem !important;
  }

  .tv-text-line {
    font-family: "Big Shoulders Display", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(to right, #ffffff, #999999);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #ffffff;
    text-transform: uppercase;
    max-width: 500px; /* Increased to match wider TV */
    white-space: normal;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .tv-mission-section {
    position: sticky;
    height: 100vh;
    min-height: 400px;
    background-size: 400px 250px !important;
    margin: 15px 0 0 0;
    overflow: hidden;
    /* Enhanced centering for small mobile */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .tv-mission-container {
    overflow: hidden;
    position: relative;
    /* Enhanced centering for small mobile */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  .tv-screen-content {
    width: 320px;
    height: 130px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Enhanced small mobile content centering */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .tv-text-line-1,
  .tv-text-line-2,
  .tv-text-line-3,
  .tv-text-line-4 {
    position: absolute !important;
    top: 50% !important;
    left: 45% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    padding: 8px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .tv-text-line-1 {
    font-size: 1.2rem !important;
  }

  .tv-text-line-2 {
    font-size: 2rem !important;
  }

  .tv-text-line-3 {
    font-size: 1.4rem !important;
    white-space: normal !important;
    width: 80% !important;
  }

  .tv-text-line-4 {
    font-size: 2rem !important;
  }

  .tv-text-line {
    font-family: "Big Shoulders Display", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(to right, #ffffff, #999999);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #ffffff;
    text-transform: uppercase;
    max-width: 420px; /* Increased to match wider TV */
    padding: 15px;
  }
}

@media (max-width: 360px) {
  .tv-mission-section {
    position: sticky;
    height: 55vh;
    min-height: 300px;
    background-size: 340px 215px;
    margin: 10px 0 0 0;
    overflow: hidden;
  }

  .tv-mission-container {
    overflow: hidden;
    position: relative;
  }

  .tv-screen-content {
    width: 270px;
    height: 110px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .tv-text-line-1,
  .tv-text-line-2,
  .tv-text-line-3,
  .tv-text-line-4 {
    position: absolute !important;
    top: 50% !important;
    left: 43% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    padding: 5px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
  }

  .tv-text-line-1 {
    font-size: 1rem !important;
  }

  .tv-text-line-2 {
    font-size: 1.7rem !important;
  }

  .tv-text-line-3 {
    font-size: 1.2rem !important;
    white-space: normal !important;
  }

  .tv-text-line-4 {
    font-size: 1.7rem !important;
  }
}

/* Blog section to footer transition fix */
.blog-carousel-section + .footer-section {
  margin-top: 0 !important;
  clear: both !important;
  position: relative !important;
  z-index: 1000 !important;
}

/* Desktop Blog Carousel - Hide on Mobile and Tablet */
@media (max-width: 1024px) {
  .blog-carousel-section {
    display: none !important;
  }
}

/* Mobile Blog Section Styles */
.mobile-blog-section {
  background-color: #000;
  padding: 80px 0;
  display: block;
  display: none;
}

.mobile-blog-section .title-big h2 {
  font-family: "Big Shoulders Display", sans-serif;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 4rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  /* Linear gradient text effect */
  background: linear-gradient(to right, #ffffff, #999999);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Mobile Carousel Container */
.mobile-blog-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.mobile-blog-card {
  background-color: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #333;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: none; /* Hide all cards by default */
  animation: fadeIn 0.5s ease-in-out;
}

.mobile-blog-card.active {
  display: block; /* Show only active card */
}

.mobile-blog-card:hover {
  transform: scale(1.02);
}

.mobile-blog-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.mobile-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.mobile-blog-card:hover .mobile-blog-image img {
  transform: scale(1.05);
}

.mobile-blog-content {
  padding: 1.5rem;
  color: #fff;
}

.mobile-blog-content p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-family: "Big Shoulders Display", sans-serif;
}

/* Carousel Navigation */
.mobile-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  background-color: #333;
  border: none;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.carousel-btn:hover {
  background-color: #555;
  transform: scale(1.1);
}

.carousel-btn:disabled {
  background-color: #222;
  color: #666;
  cursor: not-allowed;
  transform: none;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background-color: #fff;
  transform: scale(1.2);
}

.carousel-dot:hover {
  background-color: #999;
}

/* Fade in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Show mobile blog section on mobile devices and tablets */
@media (max-width: 1024px) {
  .mobile-blog-section {
    display: block !important;
  }

  .mobile-blog-section .title-big h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }

  .mobile-blog-image {
    height: 200px;
  }

  .mobile-blog-content {
    padding: 1.25rem;
  }

  .mobile-blog-content p {
    font-size: 0.9rem;
  }

  .carousel-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
  }
}

/* Additional adjustments for mobile devices only */
@media (max-width: 768px) {
  .mobile-blog-section .title-big h2 {
    font-size: 2.5rem;
  }
}

/* Tablet-specific adjustments for mobile blog section */
@media (min-width: 769px) and (max-width: 1024px) {
  .mobile-blog-section {
    padding: 100px 0;
  }

  .mobile-blog-section .title-big h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
  }

  .mobile-blog-image {
    height: 250px;
  }

  .mobile-blog-content {
    padding: 2rem;
  }

  .mobile-blog-content p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .carousel-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .carousel-dot {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 480px) {
  .mobile-blog-section {
    padding: 60px 0;
  }

  .mobile-blog-section .title-big h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  .mobile-blog-image {
    height: 180px;
  }

  .mobile-blog-content {
    padding: 1rem;
  }

  .mobile-blog-content p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
  }

  .mobile-carousel-nav {
    gap: 0.75rem;
  }
}

/* Ensure footer always appears at the bottom */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.footer-section {
  margin-top: auto;
}
.footer-section {
  position: relative;
  z-index: 1000; /* High z-index to ensure footer appears above all content */
  background-color: #000000 !important; /* Ensure black background */
  padding-top: 60px;
  padding-bottom: 20px;
  border-top: 1px solid #ffffff55;
  margin-top: 0; /* Remove top margin to prevent spacing issues */
  clear: both; /* Clear any floated elements */
  width: 100%;
}

.footer-top {
  padding-bottom: 30px;
  position: relative;
  z-index: 1001;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid #ffffff50;
  position: relative;
  z-index: 1001;
}

.footer-bottom .copyright-text {
  color: #ffffff50;
  font-size: 14px;
  text-align: center;
}

.footer-bottom .copyright-text p {
  margin: 0;
  font-family: "Overused Grotesk", sans-serif;
}

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

.footer-link ul li {
  margin-bottom: 8px;
}

.footer-link ul li a {
  color: #fff;
  font-size: 14px;
  line-height: 1.8;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-link ul li a:hover {
  color: #999;
}

.footer-socail h5 {
  color: #fff;
  font-family: "Overused Grotesk", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-socail h5:hover {
  color: #999;
}

.footer-socail a {
  color: #fff;
  font-size: 14px;
  line-height: 1.8;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 400;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-socail a:hover {
  color: #999;
}

.footer-socail a h5 {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  text-transform: inherit;
  font-weight: inherit;
  margin: 0;
}

.footer-logo {
  max-width: 140px;
  text-align: center;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

/* Footer logo icons styling */
.footer-logo-icons {
  margin-top: 20px;
  text-align: center;
}

.footer-logo-icons ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.footer-logo-icons ul li {
  display: inline-block;
}

.footer-logo-icons ul li a {
  display: inline-block;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.footer-logo-icons ul li a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-logo-icons ul li a:hover {
  transform: scale(1.1);
}

/* Footer responsive adjustments */
@media (max-width: 768px) {
  .footer-section {
    padding-top: 40px;
    padding-bottom: 15px;
  }

  .footer-top .row > div {
    text-align: left;
  }

  .footer-logo {
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-logo-icons {
    text-align: center !important;
    margin-bottom: 15px;
  }

  .footer-logo-icons ul {
    justify-content: center !important;
    text-align: center !important;
  }

  .footer-link {
    text-align: left;
  }

  .footer-socail {
    text-align: left;
    align-items: flex-start;
  }
}

@media (min-width: 769px) {
  .footer-top .row > div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
  }

  .footer-logo {
    text-align: left;
  }

  .footer-logo-icons ul {
    justify-content: flex-start;
  }

  .footer-link {
    text-align: left;
  }

  .footer-socail {
    text-align: left;
    align-items: flex-start;
  }
}
