
/* Navbar background */
.navbar-custom {
    background: linear-gradient(90deg, #0b0b0f, #12121a);
    padding: 8px 30px;
}

/* Logo */
.navbar-brand {
    font-size: 32px;
    font-weight: 800;
    color: white;
}
.navbar-brand span {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
}

/* Center menu */
.nav-link {
    color: #b5b5b5 !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

/* Active underline */
.nav-link.active {
    color: white !important;
}
/* NAV LINK BASE */
.nav-link {
    color: #b5b5b5 !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
}

/* HOVER COLOR */
.nav-link:hover {
    color: #ffffff !important;
}

/* UNDERLINE (HOVER + ACTIVE) */

.nav-link:not(.dropdown-toggle)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}
/* REMOVE BOOTSTRAP DROPDOWN ARROW */
.dropdown-toggle::after {
    display: none !important;
}
.navbar .dropdown-toggle {
    padding-right: 12px !important;
}


/* SHOW LINE ON HOVER */
.nav-link:hover::after {
    width: 100%;
}

/* ACTIVE PAGE */
.nav-link.active {
    color: #ffffff !important;
}

/* KEEP LINE ON ACTIVE PAGE */
.nav-link.active::after {
    width: 100%;
}


/* Sign In button */
.btn-signin {
    border-radius: 25px;
    padding: 6px 18px;
    border: 1px solid #666;
    color: white;
    background: transparent;
}
.btn-signin:hover {
    background: white;
    color: black;
}
.no-arrow::after {
  display: none !important;
}

/* =========================
   HERO SECTION
========================= */

/* HERO SECTION WITH BACKGROUND IMAGE */


/* HERO SECTION */

.hero-section {
    min-height: 100vh;
    width: 100%;

    background:
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.9)),
        url("bg.png") center / cover no-repeat;

    display: flex;
    align-items: center;
    padding: 100px 80px;
    color: white;
}




/* LEFT CONTENT */

.hero-content {
    padding-right: 40px;
}

.hero-section .hero-title {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 10px;
    color: white !important;
}

.hero-subtitle {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-text {
    font-size: 18px;
    color: #d6d6d6;
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* BUTTONS */

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-btn-primary {
    background: #ffffff;
    color: #000;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
}

.hero-btn-primary:hover {
    background: #e5e5e5;
}

.hero-btn-secondary {
    background: transparent;
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    border: 1px solid #777;
}

.hero-btn-secondary:hover {
    background: #fff;
    color: #000;
}

/* TRUSTED TEXT */

.hero-trusted {
    font-size: 12px;
    letter-spacing: 2px;
    color: #b0b0b0;
}

/* RIGHT IMAGE */

.hero-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-circle {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, #1c2230, #0b0e14);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
}

.hero-image {
    width: 145%;
    height: auto;
    border-radius: 50%;
}

/* AUDIO BARS */

.audio-bars {
    margin-top: 25px;
    display: flex;
    gap: 6px;
}

.audio-bars span {
    width: 4px;
    height: 16px;
    background: #dcdcdc;
    border-radius: 2px;
    animation: pulse 1.2s infinite ease-in-out;
}

.audio-bars span:nth-child(even) {
    height: 26px;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* =========================
   WORLDWIDE SECTION
========================= */

/* =========================
   COMBINED ONE SCREEN SECTION
========================= */

.combined-section {
    min-height: 100vh;
    width: 100%;
    background: #000;
    color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 10px 80px;
}
/* =========================
   TEXT ANIMATIONS
========================= */

/* Initial hidden state */
.animate-title,
.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation-fill-mode: forwards;
}

/* TITLE ANIMATION */
.animate-title {
    animation: fadeUp 1s ease-out forwards;
}

/* PARAGRAPH ANIMATION (DELAYED) */
.animate-text {
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 0.4s;
}

/* KEYFRAMES */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -------- FEATURES (TOP) -------- */

.features-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
}

.features-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
}

.features-text {
    font-size: 18px;
    line-height: 1.7;
    color: #cfcfcf;
    max-width: 760px;
    margin: 0 auto;
}

/* -------- WORLDWIDE (BOTTOM) -------- */

.worldwide-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LEFT TEXT */
.worldwide-text {
    max-width: 480px;
}

.worldwide-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.worldwide-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #cfcfcf;
}

/* RIGHT GLOBE */
.worldwide-globe {
    position: relative;
    width: 420px;
    height: 420px;
}

.worldwide-globe img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 50px rgba(255,255,255,0.25));
}

/* GLOWING LOCATION DOT */
.glow-dot {
    position: absolute;
    top: 38%;
    left: 42%;
    width: 12px;
    height: 12px;
    background: #00e5ff;
    border-radius: 50%;
    box-shadow:
        0 0 10px rgba(0,229,255,0.8),
        0 0 25px rgba(0,229,255,0.9),
        0 0 50px rgba(0,229,255,0.6);
}

/* -------- RESPONSIVE -------- */

@media (max-width: 992px) {
    .combined-section {
        padding: 80px 30px;
    }

    .features-title {
        font-size: 36px;
    }

    .worldwide-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .worldwide-globe {
        width: 300px;
        height: 300px;
    }
}





/* =========================
   FULL SCREEN CTA SECTION
========================= */

.cta-section {
    min-height: 100vh;
    width: 100%;

    background:
        linear-gradient(
            rgba(0,0,0,0.65),
            rgba(0,0,0,0.9)
        ),
        url("bg.png") center / cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: #fff;
}

/* CONTENT */
.cta-content {
    max-width: 800px;
    padding: 0 20px;
}

/* TITLE */
.cta-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* SUBTITLE */
.cta-subtitle {
    font-size: 18px;
    color: #cfcfcf;
    margin-bottom: 40px;
}

/* BUTTON */
.cta-btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 12px;
    background: #ffffff;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #eaeaea;
}

/* MOBILE */
@media (max-width: 768px) {
    .cta-title {
        font-size: 38px;
    }

    .cta-subtitle {
        font-size: 16px;
    }
}
/* =========================
   FAQ SECTION
========================= */

.faq-section {
    background: #000;
    color: #fff;
    padding: 10px 20px;
}

/* HEADER */
.faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.faq-header h2 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
}

.faq-header p {
    font-size: 17px;
    color: #cfcfcf;
    line-height: 1.6;
}

/* CONTAINER */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* ITEM */
.faq-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    margin-bottom: 18px;
    overflow: hidden;
    transition: border 0.3s ease;
}

.faq-item.active {
    border-color: rgba(255,255,255,0.25);
}

/* QUESTION */
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
}

/* ICON */
.faq-icon {
    transition: transform 0.4s ease;
    font-size: 18px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 26px;
    font-size: 15px;
    line-height: 1.6;
    color: #cfcfcf;
    transition: max-height 0.5s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 26px 24px;
}

/* FOOTER */
.faq-footer {
    text-align: center;
    margin-top: 80px;
}

.faq-footer p {
    font-size: 16px;
    font-weight: 600;
}

.faq-footer span {
    font-size: 14px;
    color: #9a9a9a;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 36px;
    }
}
/* Footer Section */

/* ===== FOOTER BASE ===== */
.footer-section {
  background: radial-gradient(120% 120% at 50% 0%, #161620 0%, #050508 55%);
  color: #a6a6b3;
  padding-top: 96px;
  padding-bottom: 32px;
}

/* ===== BRAND ===== */
.footer-logo {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.footer-desc {
  font-size: 15px;
  line-height: 1.75;
  margin-top: 18px;
  max-width: 380px;
  color: #9b9bac;
}

/* ===== COLUMN HEADERS ===== */
.footer-title {
  font-size: 13px;
  letter-spacing: 2.4px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #ffffff;
}

/* ===== LINKS ===== */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  font-size: 15px;
  font-weight: 400;
  color: #9b9bac;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

/* ===== SOCIAL ICONS ===== */
.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 26px;
}

.social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
  transition: all 0.25s ease;
}

.social-icons a:hover {
  background: #ffffff;
  color: #000;
  transform: translateY(-2px);
}

/* ===== DIVIDER ===== */
.footer-divider {
  margin-top: 72px;
  margin-bottom: 28px;
  border-color: rgba(255,255,255,0.08);
}

/* ===== BOTTOM BAR ===== */
.footer-copy,
.footer-built {
  font-size: 14px;
  color: #8b8b99;
}

.footer-built strong {
  color: #ffffff;
  font-weight: 600;
}

/* ===== RESPONSIVE TUNING ===== */
@media (max-width: 768px) {
  .footer-section {
    padding-top: 72px;
  }

  .footer-logo {
    font-size: 30px;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-divider {
    margin-top: 56px;
  }
}
/* MOBILE NAVBAR FIX */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #0b0b0f;
        padding: 20px;
        border-radius: 12px;
        margin-top: 10px;
    }

    .nav-link {
        margin: 10px 0;
        font-size: 16px;
    }

    .btn-signin {
        width: 100%;
        margin-top: 10px;
        text-align: center;
    }
}
@media (max-width: 992px) {
    .hero-section {
        padding: 120px 25px 80px;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-subtitle {
        font-size: 28px;
    }

    .hero-text {
        font-size: 16px;
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image-wrapper {
        margin-top: 60px;
    }

    .hero-circle {
        width: 260px;
        height: 260px;
    }

    .hero-image {
        width: 140%;
    }
}
@media (max-width: 992px) {
    .combined-section {
        padding: 80px 25px;
    }

    .features-title {
        font-size: 34px;
    }

    .features-text {
        font-size: 16px;
    }

    .worldwide-text h2 {
        font-size: 30px;
    }

    .worldwide-text p {
        font-size: 15px;
    }
}
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 20px;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-btn {
        width: 100%;
        padding: 14px;
    }
}
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links {
        margin-bottom: 30px;
    }
}
