body{
    font-family: Barlow-Regular;
}
/* =============================
   GLOBAL COLOR HELPERS
============================= */
.bg-orange { background: #ef6623; }
.text-orange { color: #ef6623; }

/* =============================
   HEADER
============================= */
.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;
  }
}

/* =============================
   HERO — What We Do
============================= */
.what-we-do-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('https://lla-cms-prod.directus.app/assets/fa9d5da3-1002-4de8-b3cf-c431acb3389a');
    background-size: cover;
    background-position: center 18%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-left: 7%;
    padding-right: 7%;
    overflow: hidden;
}

.what-we-do-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    max-width: 550px;
}

.title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.05;
    color: white;
    margin-bottom: 25px;
    font-family: 'Riddim-UltraBlack';
}

.highlight {
    color: #FF6A2B;
}

.subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: white;
    margin-bottom: 35px;
}

/* Discover Button */
.discover-btn {
    display: inline-flex;
    align-items: center;
    background: #FF6A2B;
    padding: 14px 28px;
    color: white;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    gap: 12px;
}

.arrow-circle {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-icon {
    color: #FF6A2B;
    font-size: 18px;
    font-weight: bold;
}

/* Right collage */
.right-collage {
    position: absolute;
    right: 7%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 22px;
    z-index: 2;
}

.circle-row {
    display: flex;
    gap: 20px;
    align-items: center;
}

.circle {
    width: 120px;
    height: 95px;
    border-radius: 20%;
    overflow: hidden;
    border: 3px solid #FF6A2B;
}

.circle-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10%;
}

/* Badge */
.orange-badge {
    width: 120px;
    height: 120px;
    background: #FF6A2B;
    border-radius: 50%;
    border: 4px solid #ffffff22;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* IMAGE BADGE (replaces the text badge) */
.image-badge {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.image-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* IMPORTANT - Prevents oval/stretched image */
    border-radius: 50%;
}
.experience-badge {
    width: 120px;
    height: 120px;
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    background-image: url('https://lla-cms-prod.directus.app/assets/6b6bbf30-31f2-42b9-9e6c-7311f1854d02');
    background-size: cover;      /* fills circle */
    background-position: center; /* crop perfectly */
    background-repeat: no-repeat;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}



.badge-text {
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}


/* ================================
   SECTION BASE
================================ */
.why-choose-us {
    width: 100%;
    padding: 80px 5%;
    text-align: center;
    background: #F4F4F4;
    
}

/* ================================
   ORANGE "OUR EXPERTISE" BUTTON
================================ */
.expertise-btn {
    display: inline-flex;
    align-items: center;
    background: #FF6A2B;
    color: white;
    padding: 14px 26px;
    font-weight: 600;
    border-radius: 40px;
    font-size: 15px;
    gap: 14px;
    margin-bottom: 25px;
    cursor: pointer;

    /* Animation-ready state */
    opacity: 0;
    transform: translateY(20px);
}

.circle-arrow {
    width: 28px;
    height: 28px;
    background: white;
    color: #FF6A2B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Button hover animation — PREMIUM */
.expertise-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 18px rgba(255, 106, 43, 0.35);
    transition: 0.3s ease;
}

/* ================================
   MAIN TITLE
================================ */
.choose-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #000;
    font-family: 'Riddim-UltraBlack';
    opacity: 0;
    transform: translateY(20px);
}

/* ================================
   SUBTEXT
================================ */
.choose-subtext {
    font-size: 16px;
    line-height: 1.6;
    color: #222;
    max-width: 750px;
    margin: 0 auto 60px auto;

    opacity: 0;
    transform: translateY(20px);
}

/* ================================
   3 COLUMN GRID
================================ */
.choose-grid {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.choose-item {
    
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease;
}

/* Column hover effect */
.choose-item:hover {
    transform: translateY(-6px);
}

/* ================================
   HEADINGS INSIDE COLUMNS
================================ */
.choose-heading {
    font-size: 32px;
    font-weight: 700;
    color: #FF6A2B;
    margin-bottom: 15px;
    font-family: Riddim-UltraBlack;
}

.choose-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #111;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
    .choose-grid {
        gap: 40px;
    }
    .choose-item {
        width: 100%;
        max-width: 350px;
    }
}

/* ================================
   SCROLL ANIMATIONS (CSS + JS)
================================ */

/* Animation keyframes */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* When element becomes visible */
.animate {
    animation: fadeUp 0.9s ease forwards;
}

/* Stagger delays */
.expertise-btn.animate { animation-delay: 0.1s; }
.choose-title.animate { animation-delay: 0.2s; }
.choose-subtext.animate { animation-delay: 0.35s; }

.choose-item:nth-child(1).animate { animation-delay: 0.45s; }
.choose-item:nth-child(2).animate { animation-delay: 0.60s; }
.choose-item:nth-child(3).animate { animation-delay: 0.75s; }


.why-choose-us {
    position: relative;
    background-image: url("https://lla-cms-prod.directus.app/assets/b0e35dda-9f01-482a-9106-34361cf70215");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
}
.why-choose-us::before {
    content: "";
    position: absolute;
    inset: 0;
   
    pointer-events: none;
}
.why-choose-us {
    opacity: 0;
    animation: fadeBg 1s ease forwards;
}

@keyframes fadeBg {
    from { opacity: 0; }
    to { opacity: 1; }
}




/* ===============================
   SECTION: GROUP PHOTO BLOCK
================================ */
.group-photo-section {
    width: 100%;
    background: #F4F9FC; /* light bluish background identical to screenshot */
    padding: 80px 5% 120px 5%;
    text-align: center;
    font-family: Riddim-UltraBlack;
}

/* IMAGE WRAPPER WITH ROUNDED EDGES */
.photo-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.15);
    opacity: 0; /* for animation */
    transform: translateY(40px);
}

.group-photo {
    width: 100%;
    height: auto;
    display: block;
}

/* ORANGE BUTTON */
.services-btn {
    display: inline-flex;
    align-items: center;
    margin: 45px auto 20px auto;
    background: #FF6A2B;
    color: white;
    padding: 14px 26px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: bold;
    gap: 14px;
    cursor: pointer;
    opacity: 0; /* for scroll animation */
    transform: translateY(40px);
        font-family: 'Barlow-Regular';
}

.btn-arrow {
    width: 28px;
    height: 28px;
    background: white;
    color: #FF6A2B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Button hover */
.services-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0px 8px 18px rgba(255, 106, 43,0.35);
    transition: 0.3s ease;
}

/* TITLE */
.services-title {
    font-size: 40px;
    font-weight: 800;
    margin-top: 10px;
    color: #111;
    opacity: 0; /* animation */
    transform: translateY(40px);
    font-family: Riddim-UltraBlack;
}

/* ===============================
   SCROLL ANIMATION (Fade + Slide)
================================ */
@keyframes fadeUpSection {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-animate.animate {
    animation: fadeUpSection 0.9s ease forwards;
}

/* Delay staging */
.scroll-animate:nth-child(1).animate { animation-delay: 0.1s; }
.scroll-animate:nth-child(2).animate { animation-delay: 0.3s; }
.scroll-animate:nth-child(3).animate { animation-delay: 0.5s; }




/* ================================
   MAIN SECTION
================================ */
/* ------------ PINNED AREA ----------- */
/* ============================
   TOP CENTER SECTION
============================ */
.solution {
    text-align: center;
    padding-top: 70px;
    padding-bottom: 120px;
    position: relative;
    z-index: 5;
}

.services-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FF6A2B;
    color: #fff;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 18px;
}

.services-title {
    margin: 0;
    font-size: 42px;
    font-weight: 800;
    padding-bottom: 30px;
}

/* Arrow Circle */
.arrow-circle {
    width: 28px;
    height: 28px;
    background: #fff;
    color: #FF6A2B;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ============================
   WRAPPER
============================ */
.fiber-wrapper {
    position: relative;
    min-height: 100vh;
    padding-bottom: 140px;
    background: #fff;
    overflow: hidden;
}

/* ============================
   STEPS (DESKTOP)
============================ */
.fiber-step {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    display: flex;
    gap: 60px;
    align-items: center;
    opacity: 0;
    pointer-events: none;
}

.fiber-step.active {
    opacity: 1;
    pointer-events: auto;
}

/* ============================
   IMAGES
============================ */
.fiber-image {
    flex: 1;
    border-radius: 22px;
    overflow: hidden;
}

.fiber-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* ============================
   TEXT COLUMN
============================ */
.fiber-content {
    flex: 1;
}

/* Tags */
.tag-list {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.tag {
    background: #000;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
}

/* Title */
.fiber-title {
    margin: 0 0 14px 0;
    font-size: 32px;
    font-weight: 800;
    font-family: Riddim-UltraBlack;
}

/* Description */
.fiber-text {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* List */
.fiber-list {
    margin-bottom: 30px;
}

.fiber-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.fiber-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #FF6A2B;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 6px;
}

/* Button */
.faq-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #FF6A2B;
    color: #fff;
    padding: 12px 26px;
    border-radius: 40px;
    font-weight: 600;
}

/* ============================
   MOBILE FIX (IMPORTANT)
============================ */
@media (max-width: 768px) {

    .solution {
        padding-top: 30px;
        padding-bottom: 20px;   /* reduced from 50px */
    }

    .services-title {
        font-size: 26px;
        padding-bottom: 10px;   /* reduced */
    }

    .fiber-wrapper {
        padding: 0;              /* REMOVE ALL EXCESS PADDING */
        min-height: auto;
        overflow: visible !important;
    }

    .fiber-step {
        position: relative !important;
        flex-direction: column;
        transform: none !important;
        top: auto;
        left: auto;
        width: 100%;
        opacity: 1 !important;
        pointer-events: auto !important;
        gap: 20px;
        padding: 0;             /* remove top & bottom padding */
        margin-bottom: 40px;    /* controlled spacing */
    }

    .fiber-image, .fiber-content {
        width: 100%;
        max-width: 100%;
    }

    .fiber-title {
        font-size: 24px;
        text-align: center;
    }

    .fiber-text, .fiber-list li {
        font-size: 15px;
        text-align: center;
    }

    .faq-btn {
        margin: 0 auto;
    }
}





/* MAIN SECTION */
.faq-section {
    width: 100%;
    background: #F9FAFB;
    padding: 80px 5%;
    text-align: center;

}

/* ORANGE BUTTON */
.faq-btn {
    display: inline-flex;
    align-items: center;
    background: #FF6A2B;
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: bold;
    font-size: 15px;
    gap: 14px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
        font-family: 'Barlow-Regular';
}

.faq-arrow-circle {
    width: 26px;
    height: 26px;
    background: white;
    color: #FF6A2B;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* HOVER */
.faq-btn:hover {
    transform: translateY(-4px) scale(1.05);
    transition: 0.3s ease;
    box-shadow: 0 6px 18px rgba(255,106,43,0.3);
}

/* TITLE */
.faq-title {
    font-size: 34px;
    font-weight: 800;
    margin-top: 20px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(40px);
    font-family: Riddim-UltraBlack;
}

/* CONTAINER */
.faq-container {
    max-width: 850px;
    margin: auto;
}

/* FAQ ITEM */
.faq-item {
    width: 100%;
    padding: 25px 0;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
}

/* QUESTION ROW */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    text-align: left;
    padding: 0 10px;
    
}

/* RIGHT ARROW CIRCLE */
.faq-circle-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid #FF6A2B;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FF6A2B;
    font-size: 18px;
    transition: 0.3s ease;
}

/* ROTATION WHEN ACTIVE */
.faq-item.active .faq-circle-arrow {
    transform: rotate(90deg);
}

/* ANSWER PANEL */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 0 10px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
    margin-top: 12px;
    text-align: left;
}

/* ===============================
   SCROLL ANIMATIONS
================================ */
@keyframes fadeUpFAQ {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.scroll-animate.animate {
    animation: fadeUpFAQ 0.9s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-question {
        font-size: 15px;
    }
}
/* ================================
   MAIN WRAPPER
================================ */
.contact-section {
    width: 100%;
    padding: 80px 5% 120px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;

    flex-wrap: wrap;
}

/* ================================
   LEFT SIDE TEXT
================================ */
.contact-left {
    flex: 1 1 45%;
    opacity: 0;
    transform: translateY(40px);
}

.contact-heading {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: Riddim-UltraBlack;
}

.orange {
    color: #FF6A2B;
}

.contact-text {
    margin-bottom: 25px;
    font-size: 17px;
    color: #333;
    line-height: 1.6;
}

.contact-bottom {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 600;
}

.open-roles {
    color: #FF6A2B;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
}

.open-roles:hover {
    text-decoration: underline;
}

/* ================================
   RIGHT CONTACT FORM
================================ */
.contact-form-container {
    flex: 1 1 45%;
    background: #C92025;
    padding: 40px;
    border-radius: 18px;
    color: white;
    opacity: 0;
    transform: translateY(40px);
}

.contact-form-title {
    font-size: 14px;
    margin-bottom: 10px;
}

.contact-form-heading {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 700;
    font-family: Riddim-UltraBlack;
}

/* FORM FIELDS */
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

input, select, textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: none;
    font-size: 15px;
    background: rgba(255,255,255,0.85);
    outline: none;
}

textarea {
    height: 120px;
    resize: none;
    margin-bottom: 20px;
}

/* BUTTON */
.contact-btn {
    display: inline-flex;
    align-items: center;
    background: white;
    padding: 12px 22px;
    border-radius: 40px;
    color: #FF6A2B;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    gap: 10px;
}

.btn-arrow {
    background: #FF6A2B;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-btn:hover {
    transform: translateY(-3px);
    transition: 0.2s ease;
}

/* ================================
   SCROLL ANIMATION
================================ */
@keyframes fadeUpSection {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.scroll-animate.animate {
    animation: fadeUpSection 0.9s ease forwards;
}

/* ================================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 900px) {
    .contact-section {
        flex-direction: column;
        text-align: left;
    }
    .contact-left, .contact-form-container {
        width: 100%;
    }
}


.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;
}
}





@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;
}

