body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

/* Topbar */
    .topbar {
      font-size: 14px;
      background: #1c1c1c;
      color: white;
      padding: 4px 0;
    }

    .topbar a {
      color: white;
      text-decoration: none;
    }

    .topbar a:hover {
      color: #00aaff;
    }

    /* Navbar */
    .navbar {
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      z-index: 1000;
    }

    .navbar-nav .nav-link {
      font-weight: 500;
      color: #333;
      padding: 10px 15px;
      position: relative;
      transition: color 0.3s ease;
    }

    .navbar-nav .nav-link::after {
      content: "";
      position: absolute;
      bottom: 5px;
      left: 50%;
      transform: translateX(-50%) scaleX(0);
      width: 60%;
      height: 2px;
      background-color: #0062cc;
      transition: transform 0.3s ease;
      transform-origin: center;
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
      transform: translateX(-50%) scaleX(1);
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: #0062cc;
    }

/*  */
.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
}

/* Hero Section */
.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 2.5rem;
}

.hero-section p {
  font-size: 1.1rem;
}

/* Image styles */
.img-fluid {
  max-width: 100%;
  height: auto;
}

/* Partners grayscale */
.grayscale {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s ease;
}

.grayscale:hover {
  filter: none;
  opacity: 1;
}

/* Newsletter */
.newsletter-contact input {
  border-radius: 0;
}

/*  */

.hero-carousel .carousel-caption {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1.5rem;
  border-radius: 8px;
  bottom: 20%;
}

.hero-carousel .carousel-caption h5 {
  font-size: 2rem;
  font-weight: 700;
}

.hero-carousel .carousel-caption p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* contact */
.connection-support-section .form-control:focus,
.connection-support-section .form-select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
  border-color: #007bff;
}

.connection-support-section button:hover {
  transform: scale(1.03);
  transition: all 0.3s ease;
}

.connection-support-section textarea {
  resize: none;
}

/* Base Footer Styles */
.footer {
  background: #f7f8fa;
  color: #333;
  font-family: "Segoe UI", sans-serif;
  padding: 50px 20px 20px;
  overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

/* Reveal animation */
.footer-col.animate {
  opacity: 1;
  transform: translateY(0);
}

.footer-logo {
  width: 120px;
  margin-bottom: 10px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #000;
}

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

.footer-list li {
  margin-bottom: 10px;
}

.footer-list li a {
  color: #555;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.footer-list li a:hover {
  color: #007bff;
  padding-left: 5px;
}

.footer-contact p {
  margin: 5px 0;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-social-icons a {
  font-size: 20px;
  color: #444;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social-icons a:hover {
  color: #007bff;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #777;
  padding-top: 20px;
  border-top: 1px solid #ccc;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

.footer-bottom.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Animation delays */
.delay-1s { transition-delay: 0.2s; }
.delay-2s { transition-delay: 0.4s; }
.delay-3s { transition-delay: 0.6s; }
.delay-4s { transition-delay: 0.8s; }
.delay-5s { transition-delay: 1s; }

/* packages */
/* Packages Section - General */
.packages-section {
    background-color: #eeeeeead;
    padding-top: 50px;
    padding-bottom: 50px;
}

.packages-section .text-center h2 {
    font-size: 2.5rem;
}

.packages-section .btn-group .btn {
    border-radius: 0.375rem; /* Match default Bootstrap border-radius */
}
.packages-section .btn-group .btn + .btn {
    margin-left: 10px; /* Space between buttons */
}
.packages-section .btn-group .btn i {
    margin-left: 5px; /* Space for icon */
}
.packages-section .btn-outline-primary {
    border-color: var(--bs-primary);
    color: var(--bs-primary);
}

/* Package Card */
.package-card {
    border: 1px solid #e0e0e0;
    border-radius: 0.75rem; /* Slightly more rounded corners */
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease-in-out;
    padding-top: 15px; /* Space for content below ribbon */
    position: relative; /* For ribbon positioning */
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card .card-body {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

/* Ribbon */
.ribbon {
    position: absolute;
    top: -1px; /* Adjust to peek slightly from border */
    right: -1px; /* Adjust to peek slightly from border */
    width: 100px;
    height: 100px;
    overflow: hidden;
    z-index: 10;
}

.ribbon::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border-width: 0 50px 50px 0;
    border-style: solid;
    border-color: transparent var(--bs-primary) transparent transparent;
}

.ribbon span {
    position: absolute;
    display: block;
    width: 150px;
    padding: 5px 0;
    background-color: var(--bs-primary);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
    text-align: center;
    transform: rotate(45deg);
    right: -40px;
    top: 20px;
}

/* Speed & Price Layout */
.speed-price-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    margin-top: 10px;
    padding-top: 15px; /* Space for title above */
}

.speed-column {
    flex: 1;
    text-align: center;
    padding-right: 15px;
    position: relative; /* For the 'Upto' text */
}

.speed-column .upto {
    font-size: 0.8rem;
    color: #6c757d;
    position: absolute;
    top: -15px; /* Position above the number */
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.speed-column h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #333; /* Darker than primary for speed number */
    margin-bottom: 0;
}

.speed-column .mbps {
    font-size: 1rem;
    color: #6c757d;
}

.price-column {
    flex: 1;
    text-align: center;
    padding-left: 15px;
}

.price-column .price-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--bs-primary);
    margin-bottom: 0;
}

.price-column .price-details {
    font-size: 0.8rem;
    color: #6c757d;
    line-height: 1.2;
    margin-top: 5px;
}

.price-column .price-details small {
    display: block;
}

.divider {
    width: 1px;
    background-color: #ddd;
    height: 80px; /* Adjust height based on content */
    align-self: center;
}

/* Horizontal rule (line) styling */
.card-body hr {
    margin-top: 1rem; /* Adjust as needed */
    margin-bottom: 1rem; /* Adjust as needed */
    border: 0;
    border-top: 1px solid #eee; /* Thin line */
    opacity: 1; /* Ensure visible */
}


/* Offer Toggle Button */
.offer-toggle {
    text-align: center;
}

.offer-toggle button {
    background: none;
    border: none;
    color: #000;
    text-decoration: none;
    cursor: pointer;
    padding: 4px;
    background: #ccc;
    font-size: 14px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin-left: 70px;
    width: 50%;
}

.offer-toggle button i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.offer-toggle button.collapsed i {
    transform: rotate(180deg);
}

/* Collapsible Offer Wrapper */
.collapsible-offer-wrapper {
    max-height: 300px; /* Max height when expanded (adjust as needed) */
    opacity: 1;
    overflow: hidden;
    visibility: visible; /* Initially visible */
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out, visibility 0s; /* No delay on expanding */
}

.collapsible-offer-wrapper.collapsed {
    max-height: 0;
    opacity: 0;
    /* Important: Ensure no residual padding/margin on the wrapper itself */
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    visibility: hidden; /* Hide completely after other transitions */
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out, visibility 0s 0.3s; /* Delay visibility change on collapsing */
}

/* Offer Content - Ensure no intrinsic padding/margin interferes */
.offer-content {
    font-size: 0.85rem;
    color: #343a40;
    /* No direct max-height/transition here, handled by wrapper */
}

.offer-content p strong {
    display: block;
    margin-bottom: 5px;
}

.offer-content ul {
    list-style: none; /* Remove default bullets */
    padding-left: 0;
    margin-bottom: 0; /* Ensure no default ul margin */
}

.offer-content ul li {
    position: relative;
    padding-left: 20px; /* Space for custom bullet */
    margin-bottom: 5px;
    color: #555;
    line-height: 1.4;
}

.offer-content ul li i.fa-solid {
    position: absolute;
    left: 0;
    top: 2px;
    color: #6c757d; /* Default icon color */
    font-size: 0.8em;
}

/* Custom icon colors based on image hints or common sense */
.offer-content ul li.dial i { color: #dc3545; } /* Red for Dial */
.offer-content ul li.youtube i { color: #ff0000; } /* YouTube red */
.offer-content ul li.bdix i { color: #17a2b8; } /* Info blue/cyan */
.offer-content ul li.service i { color: #28a745; } /* Success green */
.offer-content ul li.gaming i { color: #6f42c1; } /* Purple */
.offer-content ul li.warning i { color: #ffc107; } /* Warning yellow */
.offer-content ul li.hd-4k i { color: #007bff; } /* Primary blue */
.offer-content ul li.netflix i { color: #e50914; } /* Netflix red */


/* Choose Button */
.package-card .btn-primary {
    margin-top: auto; /* Push button to the bottom */
    border-radius: 0.375rem;
    padding: 10px 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}
.package-card .btn-primary i {
    margin-left: 8px;
    font-size: 0.9em;
}

/* More Packages Button */
.more-packages-btn {
    margin-top: 50px;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 0.375rem;
}

/* Responsive adjustments */
@media (max-width: 991.98px) { /* Medium devices (3 columns) */
    .col-lg-3 {
        flex: 0 0 auto;
        width: 33.333333%;
    }
}

@media (max-width: 767.98px) { /* Small devices (2 columns) */
    .col-md-4 {
        flex: 0 0 auto;
        width: 50%;
    }
    .packages-section .text-center h2 {
        font-size: 2rem;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) { /* Extra small devices (1 column) */
    .col-sm-6 { /* Targets .col-sm-6 which is active for <768px */
        flex: 0 0 auto;
        width: 100%;
    }
    .speed-price-row {
        flex-direction: column;
        gap: 15px;
    }
    .divider {
        display: none; /* Hide divider on small screens */
    }
    .speed-column, .price-column {
        padding-left: 0;
        padding-right: 0;
    }
    .speed-column .upto {
        position: static;
        transform: none;
        margin-bottom: 5px;
    }
    .packages-section .btn-group {
        flex-direction: column;
        align-items: center;
    }
    .packages-section .btn-group .btn {
        margin: 5px 0 !important;
    }
}


/* about */
/* Main Title & Description */
.about-intro {
    margin: 0 auto 60px auto;
    text-align: center;
}
.about-intro h1 {
    font-weight: bold;
    color: #2a3a78; /* Deep blue from image */
    margin-bottom: 25px;
}
.about-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

/* Vision & Mission Cards */
.vm-card {
    background-color: #f8f8f8;
    border-radius: 1.5rem; /* Very rounded corners */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    min-height: 380px; /* To match image height */
    position: relative;
    overflow: hidden; /* To contain background */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.vm-card-vision {
    /* Placeholder: Replace with your actual background pattern image for vision */
    background: url('https://via.placeholder.com/600x400/e0e7ff/c4cfff?text=Vision+Pattern') center / cover no-repeat;
    background-color: #f0f3ff; /* Lighter blue hint */
}
.vm-card-mission {
    /* Placeholder: Replace with your actual background pattern image for mission */
    background: url('https://via.placeholder.com/600x400/e0e0e0/c4c4c4?text=Mission+Pattern') center / cover no-repeat;
    background-color: #e0e0e0; /* Grayish background */
}

/* Note: The subtle hand and background icons in the image are complex to replicate
    purely with CSS. The .vm-card-overlay was an attempt but it's hard to get it perfect.
    For best results, these would ideally be part of the background image or separate SVG/PNGs.
    The current Font Awesome icons below provide a *similar* feel but not exact. */
.vm-card-content {
    position: relative;
    z-index: 2; /* Bring text above overlay */
    color: #333;
}

.vm-card-content h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.vm-card-content h3 .text-primary {
    color: #2a3a78 !important; /* Specific primary color for these sections */
}
.vm-card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 80%;
    margin: 0 auto;
}

/* Floating icons on Mission Card */
.mission-icons .icon {
    position: absolute;
    font-size: 2.5rem; /* Large icons */
    color: rgba(0, 0, 0, 0.2); /* Semi-transparent */
    z-index: 1; /* Below text */
}
/* Adjust these positions as needed to match your image */
.mission-icons .fa-arrow-up-down { top: 15%; right: 20%; }
.mission-icons .fa-play { top: 25%; left: 25%; font-size: 4rem; color: rgba(0, 0, 0, 0.3); } /* Specific for play */
.mission-icons .fa-bars { top: 10%; right: 10%; }
.mission-icons .fa-wifi { top: 50%; left: 10%; transform: translateY(-50%); }
.mission-icons .fa-cog { bottom: 10%; left: 25%; }
.mission-icons .fa-user-friends { bottom: 20%; right: 10%; }
.mission-icons .fa-shield-alt { top: 15%; left: 15%; }
.mission-icons .fa-headphones-alt { top: 40%; right: 15%; }

/* Clients Section */
.clients-section {
    margin-top: 80px;
}
.clients-section h2 {
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
}
.clients-section h2 .text-primary {
    color: #2a3a78 !important;
}

/* Filter Buttons */
.filter-buttons .btn {
    border-radius: 25px; /* Pill shape */
    padding: 8px 25px;
    font-weight: 500;
    margin: 5px; /* Spacing between buttons */
    border-color: #007bff; /* Primary blue border */
    color: #007bff; /* Primary blue text */
}
.filter-buttons .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
}
.filter-buttons .btn-outline-primary:hover {
    background-color: #007bff;
    color: #fff;
}

/* Client Carousel */
.client-carousel-container {
    position: relative;
    padding: 0 40px; /* Space for arrows */
    margin-top: 50px;
}

.client-logos {
    display: flex;
    overflow-x: scroll; /* Enable horizontal scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    scroll-snap-type: x mandatory; /* Snap to items */
    padding-bottom: 10px; /* For scrollbar visibility, or hide completely */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none;  /* Hide scrollbar for IE/Edge */
}
/* Hide scrollbar for Chrome, Safari and Opera */
.client-logos::-webkit-scrollbar {
    display: none;
}

.client-logo-item {
    flex-shrink: 0; /* Prevent items from shrinking */
    width: 200px; /* Fixed width for each logo item */
    height: 120px; /* Fixed height */
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px; /* Space between items */
    scroll-snap-align: start; /* Snap items to start */
}
.client-logo-item img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* Carousel Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 10;
    transition: background-color 0.2s, border-color 0.2s;
}
.carousel-arrow:hover {
    background-color: #f0f0f0;
    border-color: #bbb;
}
.carousel-arrow i {
    color: #555;
    font-size: 1.2rem;
}
.carousel-arrow-left { left: 0; }
.carousel-arrow-right { right: 0; }

/* Responsive Adjustments */
@media (max-width: 991.98px) { /* Medium devices */
    .vm-card {
        min-height: 300px; /* Adjust height for smaller screens */
    }
    .vm-card-content h3 {
        font-size: 2rem;
    }
    .vm-card-content p {
        font-size: 1rem;
    }
    .filter-buttons {
        justify-content: center !important; /* Center buttons on small screens */
    }
}

@media (max-width: 767.98px) { /* Small devices */
    .vm-card {
        margin-bottom: 25px; /* Space between stacked cards */
        min-height: 280px;
    }
    .vm-card-content h3 {
        font-size: 1.8rem;
    }
    .client-logo-item {
        width: 180px; /* Slightly smaller items */
        height: 100px;
    }
    .client-carousel-container {
        padding: 0 20px; /* Less padding for arrows */
    }
    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) { /* Extra small devices */
    .about-intro {
        margin-bottom: 30px;
    }
    .about-intro h1 {
        font-size: 1.8rem;
    }
    .about-intro p {
        font-size: 0.95rem;
    }
    .filter-buttons .btn {
        padding: 6px 20px;
        font-size: 0.9rem;
    }
    .client-logo-item {
        width: 150px;
        height: 90px;
        margin-right: 15px;
    }
}

/* Floating Pay Bill Button */
.pay-bill-floating {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg); /* Rotate to stand vertically */
    transform-origin: 100% 100%; /* Rotate from bottom-right corner */
    background-color: var(--link3-primary-blue);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px 8px 0 0; /* Rounded top corners, flat bottom */
    text-decoration: none;
    font-weight: bold;
    z-index: 1000;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    transition: background-color 0.2s;
}
.pay-bill-floating:hover {
    background-color: #0056b3; /* Darker blue on hover */
    color: #fff;
}

/* Responsive adjustments for new sections */
@media (max-width: 767.98px) {
    .hexagon-blocks {
        gap: 30px;
    }
    .hexagon-block {
        flex-basis: 120px;
    }
    .hexagon-shape {
        width: 80px;
        height: 80px;
    }
    .hexagon-shape i {
        font-size: 2.5rem;
    }
    .reach-us-section h2 {
        font-size: 2rem;
    }
    .reach-card {
        min-width: 250px;
        padding: 20px;
    }
    .reach-card p {
        font-size: 1.2rem;
    }
    .customer-support-video-section h2 {
        font-size: 1.8rem;
    }
    .video-placeholder {
        height: 250px; /* Adjust height for smaller screens */
    }
    .video-placeholder .play-button {
        font-size: 3.5rem;
    }
    .service-offices-section h2 {
        font-size: 2rem;
    }
    .service-offices-filter-buttons .btn {
        padding: 6px 15px;
        font-size: 0.85rem;
    }
    .office-card {
        padding: 20px;
    }
    .contact-form-card {
        padding: 25px;
    }
    .contact-form-card h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 575.98px) {
    .hexagon-blocks {
        flex-direction: column;
        align-items: center;
    }
    .hexagon-block {
        margin-bottom: 20px;
    }
    .reach-cards-container {
        flex-direction: column;
        align-items: center;
    }
    .reach-card {
        width: 90%; /* Take full width minus padding */
        max-width: 350px; /* Keep max width */
    }
    /* Adjust padding on the main sections for very small screens */
    section {
        padding: 40px 0;
    }
    .customer-support-video-section, .reach-us-section, .service-offices-section {
        margin-bottom: 40px;
    }
}


/* contact us */

/* All styles are scoped to this page only */
#support-page { color:#1f2937; }
#support-page .bg-soft{ background:#f5f7fb; }

/* Feature icons */
#support-page .icon-circle{
    width:84px;height:84px;display:inline-flex;align-items:center;justify-content:center;
    border-radius:50%;
    background: radial-gradient(98px 98px at 30% 20%, #e7f1ff 30%, #dbe9ff 100%);
    color:#1E6BD6;
    box-shadow: 0 4px 12px rgba(24, 44, 85, .10);
    font-size: 34px;
}

#support-page .card-soft{
    border:0; border-radius: 14px;
    box-shadow: 0 10px 24px rgba(16,24,40,.08);
}

#support-page .channels-pill{
    border-radius: 999px;
    padding: .8rem 1.2rem;
    background:#fff;
    border:1px solid rgba(16,24,40,.06);
    box-shadow: 0 6px 16px rgba(16,24,40,.06);
    transition: transform .08s ease, box-shadow .2s ease;
}
#support-page .channels-pill:hover{
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(16,24,40,.10);
}

#support-page .section-title{ font-weight:700; letter-spacing:.2px; }
#support-page .highlight{ color:#1E6BD6; }

/* Filter chips */
#support-page .filter-chip{ padding:.35rem .9rem; border-radius:999px; }
#support-page .filter-chip.active{
    background:#1E6BD6; border-color:#1E6BD6; color:#fff;
}

/* Service cards */
#support-page .service-card .list-icon{ width:1.1rem; color:#1E6BD6; }
#support-page .badge-soft{ background:#e7f1ff; color:#1E6BD6; border:0; }

/* Form tweaks (scoped to this page only) */
#support-page .form-control,
#support-page .form-select{
    border-radius:.6rem;
    border-color:#e5e7eb;
}
#support-page .btn-brand{
    background:#1E6BD6; border-color:#1E6BD6; color:#fff;
}
#support-page .btn-brand:hover{ background:#1556b5; border-color:#1556b5; }

/* Helpers */
#support-page .maxw-700{ max-width:700px; }
#support-page .maxw-820{ max-width:820px; }

@media (min-width: 992px){
    #support-page .channels-wrap{ gap:1rem; }
}

/* career */
/* Scoped to this page only */
#careers-page { color:#1f2937; background:#fff; }
#careers-page .bg-soft { background:#f6f7fb; }

/* Elevated card */
#careers-page .card-elevated{
    border:1px solid rgba(0,0,0,.06);
    border-radius:14px;
    background:#fff;
    box-shadow:0 10px 24px rgba(16,24,40,.08);
}

/* Eyebrow/label */
#careers-page .eyebrow{
    font-size:.9rem;
    font-weight:600;
    color:#6b7280;
}

/* Title with inline rule after it */
#careers-page .title-with-rule{
    display:grid;
    grid-template-columns:max-content max-content 1fr;
    align-items:center;
    gap:.5rem;
    margin: .25rem 0 1rem;
}
#careers-page .title-with-rule .rule{
    height:2px;
    background: #d1d5db;
    align-self:center;
}
#careers-page .title-with-rule .accent{ color:#1E6BD6; }

/* Video thumb frame */
#careers-page .video-frame{
    border-radius:12px;
    overflow:hidden;
    position:relative;
    box-shadow:0 6px 16px rgba(0,0,0,.08);
    border:1px solid rgba(0,0,0,.06);
}
#careers-page .play-btn{
    position:absolute; inset:0;
    display:flex; align-items:center; justify-content:center;
    pointer-events:none;
}
#careers-page .play-btn .circle{
    width:62px; height:62px; border-radius:50%;
    background:#fff; display:flex; align-items:center; justify-content:center;
    color:#1E6BD6; box-shadow:0 6px 18px rgba(0,0,0,.18);
    border:1px solid rgba(0,0,0,.06);
    font-size:26px;
}

/* Mini tiles (Previous Campaigns) */
#careers-page .mini-card{
    border:1px solid rgba(0,0,0,.08);
    border-radius:12px;
    padding:1rem;
    background:#fff;
}
#careers-page .mini-card img{
    max-height:52px; object-fit:contain;
}

/* Buttons */
#careers-page .btn-outline-primary{
    --bs-btn-color:#1E6BD6;
    --bs-btn-border-color:#1E6BD6;
    --bs-btn-hover-bg:#1E6BD6;
    --bs-btn-hover-border-color:#1E6BD6;
}
#careers-page .btn-brand{
    background:#1E6BD6; border-color:#1E6BD6; color:#fff;
}
#careers-page .btn-brand:hover{ background:#1556b5; border-color:#1556b5; }

/* FAQ */
#careers-page .faq-wrap{
    padding: 4rem 0;
    background:#f6f7fb;
}
#careers-page .faq-title{
    font-weight:800; letter-spacing:.5px; color:#1E6BD6;
}
#careers-page .accordion{
    --bs-accordion-border-color: rgba(0,0,0,.08);
    --bs-accordion-border-radius: 0;
    --bs-accordion-btn-focus-box-shadow: none;
}
#careers-page .accordion-item{
    border-left:0; border-right:0;
    background:transparent;
}
#careers-page .accordion-button{
    padding:1.1rem 0;
    background:transparent;
    color:#111827;
    font-weight:600;
}
#careers-page .accordion-button::after{
    margin-left:auto;
    background-size: .9rem;
}
#careers-page .accordion-body{
    padding: .5rem 0 1.25rem 0;
    color:#6b7280;
    font-size:.96rem;
}

/* Utilities local */
#careers-page .text-muted-2{ color:#6b7280; }
#careers-page .gap-6{ gap:1.5rem; }
