.site-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
    padding-top: 10px;
}

/* Centered pill navbar */
.nav-pill-wrapper {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.nav-pill-wrapper .nav {
  background: #ef6623;
  border-radius: 50px;
  padding: 8px 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.nav-pill-wrapper .nav-link {
  color: #fff !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 20px;
  position: relative;
}

/* Desktop dividers */
.nav-pill-wrapper .nav-link:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 12px;
  height: 22px;
  width: 2px;
  background: rgba(255,255,255,0.3);
}

.nav-pill-wrapper .nav-link:hover {
  background: white;
  color: #ef6623 !important;
  border-radius: 50px;
  transform: translateY(-2px);
}

/* Mobile fixes */
@media (max-width: 991px) {
  .nav-pill-wrapper {
    position: relative;
    transform: none;
    left: 0;
    top: 10px;
    width: 100%;
  }
  .nav-pill-wrapper .nav {
    width: 100%;
    justify-content: center;
  }
  .nav-pill-wrapper .nav-link::after {
    display: none;
  }
}


html, body {
  overflow-x: hidden;
}


.hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  background-image: url('https://lla-cms-prod.directus.app/assets/2c5c38c9-21d0-4955-bd9b-a7da63a9ad60');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.1));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-left: 8%;
  max-width: 500px;
}

.hero-content h1 {
  font-size: 105px;
  font-weight: 800;
  line-height: 0.85;
  margin-bottom: 20px;
}

.light-text {
  color: #F3EFEA;
  font-weight: 600;
}

.orange-text {
  color: #F26C23;
  font-weight: 900;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  max-width: 460px;
  margin-top: 20px;
}

/* Orange Circular Line Overlay */
.circle-lines {
  position: absolute;
  width: 900px;
  height: 900px;
  border: 1px solid rgba(242,108,35,0.4);
  border-radius: 50%;
  top: 10%;
  right: -20%;
  z-index: 1;
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 80px;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    height: auto;
    padding: 100px 30px;
  }

  .hero-content {
    margin-left: 0;
  }

  .hero-content h1 {
    font-size: 60px;
  }

  .circle-lines {
    width: 600px;
    height: 600px;
    right: -40%;
    top: 20%;
  }

  .mobile-hide {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 45px;
  }
  
  .hero-desc {
    font-size: 14px;
  }

  .circle-lines {
    width: 450px;
    height: 450px;
    right: -50%;
  }
}


/* Quote Section Main */
.quote-section {
  background: #F6EEE7;
  padding: 160px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
 
}

/* BG Quote Symbol */
.quote-section::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  background-image: url("https://lla-cms-prod.directus.app/assets/446e970d-31f5-49d8-aa01-6d706b8bf47b");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.70; /* subtle like screenshot */
  pointer-events: none;
  z-index: 0;
}

/* Content wrapper */
.quote-inner {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

/* Orange Icon */
.quote-icon {
  font-size: 42px;
  color: #F26C23; /* brand orange */
  display: block;
  margin-bottom: 18px;
}

/* Quote Text */
.quote-text {
  font-size: 30px;
  font-weight: 700;
  font-family: Riddim-UltraBlack;
  line-height: 1.45;
  margin-top: 30px;
}

/* FadeUp Animation */
.scroll-animate {
  opacity: 0;
  transform: translateY(25px);
}

.scroll-animate.animate {
  animation: fadeUp 0.9s ease forwards;
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media(max-width: 768px) {
  .quote-text { font-size: 24px; margin-top: 40px; }
  .quote-section::before { width: 420px; height: 420px; }
}
@media(max-width: 480px) {
  .desk-only { display: none; }
  .quote-text { font-size: 18px; }
  .quote-section::before { width: 300px; height: 300px; }
}



    /* ======================
       FIBER WRAPPER SECTION
    ====================== */
     .fiber-wrapper {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }

    .fiber-step {
      position: absolute;
      inset: 0;
      display: flex;
      min-height: 650px;
    }

    .fiber-image,
    .fiber-content {
      flex: 1;
      height: 100%;
    }

    .fiber-image {
      overflow: hidden;
      position: relative;
    }

    .fiber-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform-origin: center center;
    }

    .fiber-content {
      background: #c62026;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 0px 40px;
    }

    .tag-list {
      margin-bottom: 24px;
    }

    .tag-logo {
      display: inline-block;
      background: #d7464b;
      padding: 6px 18px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 600;
    }

    .fiber-title {
      font-size: 32px;
      font-weight: 700;
      line-height: 1.25;
      margin-bottom: 24px;
      font-family: Riddim-UltraBlack;
    }

    .fiber-text {
      font-size: 15px;
      line-height: 1.6;
      max-width: 460px;
      margin: 0 auto 0px;
    }

    /* empty but kept for script compatibility */
    .fiber-list {
      list-style: none;
      margin-bottom: 24px;
    }

    .faq-btn {
      background: #f26c23;
      padding: 12px 26px;
      border-radius: 40px;
      color: #fff;
      text-decoration: none;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .faq-btn span {
      transition: transform 0.3s;
    }

    .faq-btn:hover span {
      transform: translateX(6px);
    }

    /* ================
       Fade-up utility
    ================= */
    @media(min-width:1024px){
        
    @keyframes fadeUp {
      0% {
        opacity: 0;
        transform: translateY(25px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .scroll-animate {
      opacity: 0;
      transform: translateY(25px);
    }

    .scroll-animate.animate {
      animation: fadeUp 0.9s ease forwards;
    }

    }
    
    /* =====================
       Responsive behaviour
    ====================== */
    @media (max-width: 1023px) {
      .fiber-wrapper {
        height: auto;
      }

      .fiber-step {
        position: static;
        display: flex;
        flex-direction: column;
        min-height: auto;
        opacity: 1 !important;
        pointer-events: auto !important;
        margin-bottom: 40px;
      }

      .fiber-image {
        height: 350px;
      }

      .fiber-content {
        padding: 50px 20px;
      }

      .fiber-title {
        font-size: 26px;
      }
      
    }




.news-section {
  background: #fff;
  padding: 100px 12%;

}

.breadcrumb {
  color: #F26C23;
  font-size: 14px;
  margin-bottom: 10px;
}

.news-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
    font-family: Riddim-UltraBlack;
}

/* Discover Button */
.discover-btn {
    display: inline-flex;
    align-items: center;
    background: #FF6A2B;
    padding: 10px 18px;
    color: white;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    gap: 12px;
}

.arrow-circle {
    width: 25px;
    height: 25px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-icon {
    color: #FF6A2B;
    font-size: 18px;
    font-weight: bold;
}
/* Hover Effect */
.discover-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0px 10px 20px rgba(255, 106, 43, 0.4);
}
/* Smooth transitions */
.arrow-circle, .arrow-icon {
    transition: all 0.35s ease;
}
/* Arrow Movement + Rotation */
.discover-btn:hover .arrow-icon {
    transform: translateX(4px) ;
}

.news-list {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.news-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.news-text {
  width: 50%;
}

.news-tag {
  background: #F26C23;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 14px;
}

.news-heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.news-desc {
  font-size: 14px;
  color: #707070;
  margin-bottom: 18px;
}

.read-more {
  color: #F26C23;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
}
.read-more span {
  margin-left: 5px;
  transition: .2s;
}
.read-more:hover span {
  transform: translateX(6px);
}
.read-more:hover{
 
color: #FF7A35;

   

}

.news-image img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}



.scroll-animate {
  opacity: 0;
  transform: translateY(25px);
}

.scroll-animate.animate {
  animation: fadeUp 0.9s ease forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



/* RESPONSIVE */
@media(max-width:1024px) {
  .news-section {
    padding: 80px 5%;
  }
}

@media(max-width:768px) {
  .news-item {
    flex-direction: column;
    text-align: center;
  }
  .news-text {
    width: 100%;
  }
  .discover-btn {
    float: none;
    margin-top: 20px;
  }
}

@media(max-width:480px) {
  .news-title {
    font-size: 32px;
  }
  .news-image img {
    width: 100%;
    height: auto;
  }
}

p{
  font-family: Barlow-Regular;
}

hero-content h1 {
  font-family: Riddim-UltraBlack;
}

@font-face {
  font-family: "Riddim-UltraBlack";
  src: url("https://www.cwc.com/fonts/Riddim-UltraBlack.woff")
      format("woff"),
    url("https://www.cwc.com/fonts/Riddim-UltraBlack.ttf")
      format("truetype");
  font-weight: 900;
}
 
@font-face {
  font-family: "Barlow-Regular";
  src: url("https://www.cwc.com/fonts/Barlow-Regular.ttf")
    format("truetype");
  font-weight: 900;
}


.footer {
    background: #f37021;
    color: white;
    padding: 40px 0 0 !important;  /* remove bottom padding */
    position: relative;
}


/* ---------- FOOTER LAYOUT (IMPORTANT FIX) ---------- */
.footer-inner {
    display: flex;
    flex-wrap: nowrap;        /* forces alignment in one row */
    justify-content: space-between;
    align-items: flex-start;  /* PERFECT vertical alignment */
    gap: 0px;                 /* removes unwanted spacing */
    max-width: 1300px;
    margin: auto;
}

/* ---------- EACH COLUMN ---------- */
.footer-col {
    min-width: 200px;         /* consistent width */
}

/* ---------- TITLES ---------- */
.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;      /* reduced for cleaner look */
    color: white;
}

/* ---------- LINKS ---------- */
.footer-links a {
    display: block;
    color: white;
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 8px;      /* tighter spacing */
    text-decoration: none;
}

.footer-links a:hover {
    opacity: 1;
}

/* ---------- EMAIL (Styled as requested) ---------- */
.email {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    color: white;
    opacity: 1;
    display: inline-block;
}

/* ---------- SOCIAL ICONS ---------- */
.social-icons {
    display: flex;
    gap: 14px;
    
}

/* ---------- BIG BACKGROUND “LIBERTY” TEXT ---------- */
.footer-bg-text {
    position: absolute;
    bottom: 40px;                 /* perfect centered position */
    left: 50%;
    transform: translateX(-50%);
    font-size: 180px;
    font-weight: 800;
    opacity: 0.12;
    pointer-events: none;
    white-space: nowrap;
}

/* ---------- COPYRIGHT ---------- */
.footer-bottom {
    background: #b64f14;
    text-align: center;
    padding: 16px 10px;
    font-size: 14px;
    margin-top: 40px;      /* gives clean separation */
}

/* ---------- RESPONSIVE FIXES ---------- */
@media (max-width: 1200px) {
    .footer-inner {
        flex-wrap: wrap;          /* allow wrapping on mid screens */
        gap: 30px;
    }
}

@media (max-width: 768px) {

    .footer {
        padding: 40px 20px 80px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 25px;
    }

    .footer-col {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding-bottom: 80px;
    }

    .footer-bg-text {
        font-size: 95px;
        bottom: 120px;
    }
    .social-icons {
    display: flex;
    gap: 14px;
    justify-content: center;
}
}

