  /* ==============================
    GLOBAL VARIABLES
    ============================== */
*{
    transition: none !important;
    scroll-behavior: auto !important;
}
  :root {
    --bg-main: #0b1220;
    --bg-main-soft: #101827;
    --bg-glass: rgba(15, 23, 42, 0.75);
    --bg-glass-soft: rgba(15, 23, 42, 0.6);
    --card-bg: rgba(15, 23, 42, 0.85);
    --border-subtle: rgba(148, 163, 184, 0.3);

    --accent: #38bdf8; /* sky blue */
    --accent-soft: rgba(56, 189, 248, 0.25);
    --accent-strong: #0ea5e9;

    --text-main: #e5e7eb;
    --text-muted: #9ca3af;
    --text-strong: #f9fafb;

    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.75);
    --glass-border: 1px solid rgba(148, 163, 184, 0.35);

    --radius-lg: 18px;
    --radius-xl: 22px;
    --radius-full: 999px;
  }

  html, body {
  overflow-x: hidden;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden;
}

  /* Dark mode overrides */

  body.dark-mode {
    --bg-main: #020617;
    --bg-main-soft: #020617;
    --bg-glass: rgba(15, 23, 42, 0.85);
    --card-bg: rgba(15, 23, 42, 0.95);
    --text-main: #e5e7eb;
    --text-muted: #9ca3af;
  }

  /* Light mode base (when body doesn't have dark-mode, we simulate light feel) */

  body.light-mode {
    --bg-main: #e5f1ff;
    --bg-main-soft: #d4e3ff;
    --bg-glass: rgba(255, 255, 255, 0.85);
    --bg-glass-soft: rgba(255, 255, 255, 0.75);
    --card-bg: rgba(255, 255, 255, 0.95);
    --border-subtle: rgba(148, 163, 184, 0.35);

    --text-main: #0f172a;
    --text-muted: #4b5563;
    --text-strong: #020617;

    --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.18);
  }

  /* ==============================
    GLOBAL RESET & BODY
    ============================== */

  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #1f2937 0, #020617 50%, #020617 100%);
    color: var(--text-main);
    min-height: 100vh;
    line-height: 1.6;
  }

  /* Wrapper default (for non-hero pages) */

  body > section {
    padding-left: min(5vw, 60px);
    padding-right: min(5vw, 60px);
  }

  /* ==============================
    CUSTOM SCROLLBAR
    ============================== */

  ::-webkit-scrollbar {
    width: 10px;
  }

  ::-webkit-scrollbar-track {
    background: #093961;
  }

  ::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #38bdf8, #0ea5e9);
    border-radius: 999px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #0ea5e9, #0369a1);
  }

  /* ==============================
    NAVBAR
    ============================== */

  .navbar 
  {
    position: relative;      /* changed from absolute */
    width: 100%;
    z-index: 50;
    white-space: nowrap;
    padding: 16px 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0 !important;

    /* DEEP DARK GLASS EFFECT */
    background: rgba(5, 10, 25, 0.92);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(22px) saturate(160%) contrast(120%);
    -webkit-backdrop-filter: blur(22px) saturate(160%) contrast(120%);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);  /* subtle white line */
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);    /* inner shadow for depth */

  }

  .nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: auto;   /* pushes nav links to the right */
}

  .logo-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    /*filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.7));*/
  }

  .brand-name {
    font-family: "Garet", "Montserrat", system-ui;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-strong);
  }

  /* Nav links */

  .nav-links {
    display: flex;
    align-items: center;
    gap: 45px;
  }

  .nav-links a {
    position: relative;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding-bottom: 4px;
    transition: color 0.2s ease, transform 0.2s ease;
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 0;
    border-radius: 999px;
    background: linear-gradient(to right, #38bdf8, #0ea5e9);
    transition: width 0.2s ease;
  }

  .nav-links a:hover {
    color: var(--text-main);
    transform: translateY(-1px);
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .nav-links a.active {
    color: #e0f2fe;
  }

  .nav-links a.active::after {
    width: 100%;
  }

  /* Theme toggle */

  .theme-toggle {
    border: none;
    border-radius: 999px;
    padding: 6px 11px;
    cursor: pointer;
    font-size: 0.9rem;
    background: radial-gradient(circle at top left, #38bdf8 0, #0f172a 60%);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.45), 0 12px 30px rgba(15, 23, 42, 0.8);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  }

  .theme-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.6), 0 18px 40px rgba(15, 23, 42, 0.9);
  }

/* REMOVE underline inherited from normal nav links */
.nav-login::after {
    display: none !important;
}

/* ==============================
   HERO SECTION
============================== */
    .hero
     {
      position: relative;
      width: 100%;
      height: 100vh; /* reduce height so it fits screen with navbar */
      margin-top: 0px;  /* pushes video down */
      overflow: hidden;
}

    /* Fullscreen background video */
    .hero-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;        /* covers full width/height */
        z-index: 0;
    }

    /* Dark gradient overlay for text visibility */
    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
            rgba(0, 0, 0, 0.40),
            rgba(0, 0, 0, 0.65)
        );
        z-index: 1;
        transition: none !important;
        animation: none !important;
        opacity: 1 !important;
    }

    /* Content stays above video + overlay */
    .hero-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;   /* text aligned left like in your design */
        justify-content: center;
        height: 100%;
        padding-left: min(10vw, 120px);
        padding-right: min(10vw, 120px);
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 40px 60px;
        padding-top: 10px;
        padding-left: 10px;
    }

    .hero-content h1 
    {
        font-size: 3rem;         /* smaller than before */
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 20px;     /* reduce space below heading */
        text-transform: uppercase;
        letter-spacing: 2px;
        width: 100%;
    }

    .hero-content p 
    {
        font-size: 1.2rem;
        max-width: 650px;
        margin-top: 5px;         /* move up */
        margin-bottom: 25px;     /* tighter space before button */
    }
    /* Title */
    .hero-title {
        font-family: "Garet", "Montserrat", sans-serif;
        font-size: clamp(2.6rem, 5vw, 4rem);
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #fff;
        margin-bottom: 20px;
        text-shadow: 0 16px 45px rgba(15, 23, 42, 0.9);
    }

    /* Subtitle */
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 550px;
        color: rgba(255, 255, 255, 0.88);
        margin-bottom: 32px;
        line-height: 1.6;
    }

    /* CTA Button */
    .hero-btn 
    {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 34px;
        border-radius: 999px;
        border: none;
        cursor: pointer;
        background: radial-gradient(circle at top left, #38bdf8, #0ea5e9 50%, #0369a1);
        color: #fff;
        font-size: 1rem;
        font-weight: 600;
        text-transform: uppercase;
        text-decoration: none;
        letter-spacing: 0.05em;
        box-shadow: 0 20px 50px rgba(15, 23, 42, 0.9);
        transition: 0.2s ease-in-out;
        margin-top: 0px !important;
        font-size: 1.1rem;
    }

    .hero-btn:hover {
        transform: translateY(-2px);
        filter: brightness(1.1);
    }

  /* ==============================
    INTRO SECTION
    ============================== */

  .intro-section {
    padding: 60px min(5vw, 60px);
    background: radial-gradient(circle at top, #020617 0, #020617 100%);
    text-align: center;
  }

  .intro-section h2 {
    font-family: "Garet", "Montserrat", system-ui;
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--text-strong);
  }

  .intro-section p {
    max-width: 640px;
    margin: 0 auto;
    color: var(--text-muted);
  }

  /* ==============================
    PAGE HEADER (INNER PAGES)
    ============================== */

  .page-header {
    padding: 110px min(5vw, 60px) 40px;
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), #020617 55%);
    text-align: left;
  }

  .page-header h1 {
    font-family: "Garet", "Montserrat", system-ui;
    font-size: 2rem;
    margin-bottom: 8px;
    color: #e0f2fe;
  }

  .page-header p {
    max-width: 680px;
    color: var(--text-muted);
  }

  /* ==============================
    TRIP FILTERS
    ============================== */

  .trip-filters {
    padding: 10px min(5vw, 60px) 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 160px;
  }

  .filter-group label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--text-muted);
  }

  .filter-group select {
    border-radius: 999px;
    border: var(--glass-border);
    background: var(--bg-glass-soft);
    color: var(--text-main);
    padding: 12px 48px 12px 16px;
    font-size: 0.9rem;
    outline: none;
    backdrop-filter: blur(16px);
     /* FIX: Perfect dropdown arrow alignment */
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: calc(100% - 14px) center;
  }

  /* ==============================
    TRIPS GRID
    ============================== */

  .trips-grid {
    padding: 10px min(5vw, 60px) 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
  }

  .trip-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--card-bg);
    border: var(--glass-border);
    box-shadow: var(--shadow-soft);
    min-height: 320px;
  }

  .trip-image {
    width: 100%;
    height: 190px;
    background-size: cover;
    background-position: center;
  }

  .trip-content {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .trip-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-strong);
  }

  .trip-location {
    font-size: 0.86rem;
    color: var(--text-muted);
  }

  .trip-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
    margin-bottom: 4px;
  }

  .trip-duration {
    font-size: 0.82rem;
    color: var(--text-muted);
  }

  /* Tag styles – mix minimal + modern */

  .trip-tag {
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(148, 163, 184, 0.7);
  }

  .trip-tag.budget {
    border-color: #bbf7d0;
    color: #bbf7d0;
  }

  .trip-tag.standard {
    border-color: #bfdbfe;
    color: #bfdbfe;
  }

  .trip-tag.premium {
    border-color: #fde68a;
    color: #fde68a;
  }

  .trip-description {
    margin-top: 4px;
    font-size: 0.9rem;
    color: var(--text-main);
  }

  .trip-footer {
    margin-top: 10px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
  }

  .trip-price-block {
    display: flex;
    flex-direction: column;
  }

  .trip-price {
    font-size: 1rem;
    font-weight: 700;
    color: #e0f2fe;
  }

  .trip-price-note {
    font-size: 0.75rem;
    color: var(--text-muted);
  }

  .trip-cta {
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.45), transparent);
    color: var(--text-main);
    white-space: nowrap;
  }

  /* ==============================
    CATEGORY GRID
    ============================== */

  .category-grid {
    padding: 20px min(5vw, 60px) 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
  }

  .category-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--card-bg);
    border: var(--glass-border);
    box-shadow: var(--shadow-soft);
  }

  .category-img {
    width: 100%;
    height: 170px;
    background-size: cover;
    background-position: center;
  }

  .category-info {
    padding: 16px 18px 18px;
  }

  .category-info h2 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--text-strong);
  }

  .category-info p {
    font-size: 0.9rem;
    margin-bottom: 14px;
    color: var(--text-main);
  }

  .category-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: transparent;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
  }

  /* ===== Featured Poster Package ===== */

.package-card-poster {
  padding: 0;                 /* image should touch card edges */
  overflow: hidden;           /* hide any overflow from image */
  flex-direction: column;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--card-bg);
  border: var(--glass-border);
  box-shadow: var(--shadow-soft);
}

/* wrapper to keep image responsive */
.poster-wrapper {
  width: 100%;
  display: block;
}

.poster-image {
  display: block;
  width: 100%;
  height: auto;
}

/* Global primary button (used for Explore & View Details) */
.primary-btn {
   display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: transparent;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
  }

/* footer with button only */
.poster-footer {
  padding: 10px 16px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  justify-content: flex-end;
}

  /* ==============================
    COMMUNITY LAYOUT
    ============================== */

  .community-layout {
    padding: 20px min(5vw, 60px) 60px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }

  .community-main {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .community-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Cards and widgets */

  .community-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    border: var(--glass-border);
    padding: 18px 20px;
    box-shadow: var(--shadow-soft);
  }

  .community-card h2 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--text-strong);
  }

  .community-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
  }

  .community-text {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 14px;
  }

  .community-btn {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: transparent;
    color: var(--text-main);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
  }

  /* Sidebar widgets */

  .community-widget {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    border: var(--glass-border);
    padding: 16px 18px;
    box-shadow: var(--shadow-soft);
  }

  .community-widget h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-strong);
  }

  .community-widget ul {
    list-style: none;
    padding-left: 0;
  }

  .community-widget ul li {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 6px;
  }

  /* Tags */

  .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
  }

  .tag-pill {
    font-size: 0.78rem;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    color: var(--text-main);
  }

  /* Story invite */

  .community-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.88rem;
    color: #38bdf8;
    text-decoration: none;
  }

/* ==============================
   CONTACT PAGE
   ============================== */

.contact-container {
    padding: 20px min(5vw, 60px) 60px;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 24px;
}

.contact-email {
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

/* Cards */

.contact-card,
.contact-info-box {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    border: var(--glass-border);
    padding: 20px 22px;
    box-shadow: var(--shadow-soft);
}

.contact-card h2,
.contact-info-box h2 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-strong);
}

/* Form */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    border-radius: 12px;
    border: var(--glass-border);
    background: var(--bg-glass-soft);
    color: var(--text-main);
    font-size: 0.9rem;
    padding: 9px 12px;
    outline: none;
    resize: vertical;
}

/* Main contact button (white one included) */

.contact-btn,
.contact-form button,
.contact-form .primary-cta {
    width: 100%;
    padding: 14px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #0084ff, #00c6ff);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: 0.3s ease;
}

.contact-btn:hover,
.contact-form button:hover,
.contact-form .primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 200, 255, 0.6);
}

/* Info text */

.contact-info-box p {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 6px;
}

/* Social wrapper */

.contact-info {
    line-height: 2.2;
    margin-top: 10px;
}

/* ==============================
   SOCIAL LINKS – INDIVIDUAL COLORS
   ============================== */

/* Base style for all links */
.contact-info a {
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    margin-right: 25px;
    transition: 0.3s ease;
}

/* Instagram */
.link-instagram {
    color: #d948ff;
}
.link-instagram:hover {
    color: #f2a4ff;
    text-shadow: 0 0 10px rgba(242, 164, 255, 0.6);
}

/* YouTube */
.link-youtube {
    color: #ff4d4d;
}
.link-youtube:hover {
    color: #ff9999;
    text-shadow: 0 0 10px rgba(255, 100, 100, 0.6);
}

/* WhatsApp */
.link-whatsapp {
    color: #25d366;
}
.link-whatsapp:hover {
    color: #74f5a0;
    text-shadow: 0 0 10px rgba(117, 245, 160, 0.6);
}

  /* ==============================
    GALLERY GRID
    ============================== */

/* Gallery Grid */
.gallery-grid {
       display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;

    /* NEW: center the whole gallery */
    justify-content: center;
    justify-items: center;
}

/* Gallery Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #0f1626;
}

/* Gallery Images */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    justify-content: center;
    justify-items: center;
    display: block;
    border-radius: 14px;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

/* Make the collage image bigger */
.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

/* Keep it centered properly */
.gallery-item-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ===========================
   ABOUT PAGE – UNIFORM LAYOUT
   =========================== */

.about-page {
    width: 100%;
    min-height: 100vh;
    background: #000814;  /* uniform dark navy */
    padding: 60px 0 80px; 
    color: #ffffff;
}

/* Top heading block */
.about-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.about-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-header p {
    font-size: 18px;
    color: #d1d5db;
    max-width: 900px;
    line-height: 1.6;
}

/* ===========================
   CARD CONTAINER
   =========================== */

.about-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px; /* spacing between cards */
}

/* Individual cards */
.about-card {
    background: rgba(255, 255, 255, 0.05); /* subtle glass effect */
    border-radius: 16px;
    padding: 30px 35px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.about-card h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
}

.about-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #d1d5db;
}

/* List inside “Why Choose Us?” */
.about-card ul {
    margin-top: 10px;
    padding-left: 20px;
}

.about-card li {
    font-size: 17px;
    color: #d1d5db;
    margin-bottom: 6px;
}

/* ==============================
   REVIEWS SECTION – GAP FIXED
============================== */

.reviews-section {
  padding: 30px 0;
  background: radial-gradient(circle at top, #020617, #020617);
  overflow: hidden;
}

.reviews-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #e0f2fe;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Viewport */
.reviews-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* ✅ TRACK FIX: guaranteed seamless width */
.reviews-track {
  display: flex;
  gap: 18px;
  width: fit-content;          /* ✅ CRUCIAL */
  animation: reviewScrollLeft 30s linear infinite;
}

/* Card */
.review-card {
  min-width: 240px;
  max-width: 240px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Header */
.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Avatar */
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
}

/* Name */
.review-header h4 {
  font-size: 0.95rem;
  margin: 0;
  color: #fff;
}

/* Stars */
.stars {
  color: gold;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

/* Text */
.review-card p {
  font-size: 0.85rem;
  color: #d1d5db;
  line-height: 1.5;
}

/* ✅✅✅ PERFECT SEAMLESS LOOP (NO EMPTY GAP) */
@keyframes reviewScrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

  /* ==============================
    FOOTER
    ============================== */

  .footer {
    position: relative;
    padding: 18px min(5vw, 60px) 22px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), #020617 65%);
  }

  /* ==============================
    ANIMATIONS
    ============================== */

  .fade-in {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.7s ease forwards;
    animation-delay: 0.15s;
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Disable all scroll animations */
.fade-in,
.fade-in-start,
.animated-section,
.visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* ==============================
   ✅ RESPONSIVENESS (REVERSE ORDER)
============================== */

/* ✅ 325px */
@media screen and (max-width: 325px) {

  .logo-icon { display: none !important; }

  .brand-name {
    display: block !important;
    text-align: center;
    font-size: 1rem;
  }

  .hero-title { 
    font-size: 2.2rem !important; 
    text-align: left;
  }

  .hero-content {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .hero-subtitle { 
    font-size: 0.8rem; 
    text-align: left; 
  }

  /* ✅ NEVER center navbar on mobile */
  .navbar {
    justify-content: space-between !important;
  }
}

/* ✅ 480px */
@media (max-width: 480px) {
  .hero-title { font-size: 1.9rem !important; }
  .hero-subtitle { font-size: 0.9rem; }

  .hero-content {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

/* ✅ 650–700px Fix */
@media screen and (min-width: 650px) and (max-width: 700px) {
  .brand-name { display: none !important; }
  .logo-icon { display: block !important; }
}

/* ✅ 840px */
@media (max-width: 840px) {
  .navbar { padding: 10px 18px; }
  .brand-name { display: block; font-size: 1rem; }
}

/* ✅ 1024px */
@media (max-width: 1024px) {
  .navbar { padding: 10px 22px; }
  .hero-title { font-size: 2.8rem; }
}

/* ✅ FIX BLUE BOX BETWEEN 700px–800px */
@media screen and (min-width: 700px) and (max-width: 800px) {

  .navbar {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    border-radius: 0 !important;
    background: linear-gradient(
      to bottom,
      rgba(15, 23, 42, 0.95),
      rgba(15, 23, 42, 0.6),
      transparent
    ) !important;
  }

  header, 
  header.navbar {
    max-width: 100vw !important;
  }

  body {
    overflow-x: hidden !important;
  }
}

/* ✅ DESKTOP */
@media (min-width: 769px) {

  .nav-links {
    display: flex !important;
    position: static;
    flex-direction: row;
    transform: none !important;
    background: none;
    height: auto;
    width: auto;
    padding: 0;
  }

  .hamburger {
    display: none !important;
  }
}

/* ✅ MOBILE & TABLET – PERFECT DRAWER + VISIBLE HAMBURGER */
@media (max-width: 768px) {

  /* ✅ Hamburger ALWAYS visible */
  .hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10005;
  }

  .hamburger span {
    width: 26px;
    height: 3px;
    background: #38bdf8;
    border-radius: 6px;
  }

  /* ✅ RIGHT-ALIGNED, NON-FULL-WIDTH DRAWER */
  .nav-links {
    position: fixed;
    top: 70px;
    right: 0;
    left: auto;

    width: 78%;          /* ✅ NOT full width */
    max-width: 300px;   /* ✅ never exceeds this */
    height: calc(100vh - 70px);

    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(14px);

    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 28px 22px;

    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 9999;
  }
  
  /* ✅ When hamburger is clicked, show the mobile menu */
    .nav-links.active {
        transform: translateX(0) !important;
    }


    .review-card {
    min-width: 230px;
    max-width: 230px;
  }

  .reviews-title {
    font-size: 1.6rem;
  }
}
