/* ==========================================================================
   SwaDrive -style landing page
   ========================================================================== */

:root {
  /* Colors */
  --color-blue-dark: #0f1f52;
  --color-blue-deep: #0c1a45;
  --color-blue-royal: #1e3a8a;
  --color-blue-mid: #2b4fb0;
  --color-orange: #f5822f;
  --color-orange-light: #ffb35c;
  --color-white: #ffffff;
  --color-bg-start: #f7f8fb;
  --color-bg-end: #e9edf6;
  --color-text-muted: #7b869c;
  --color-text-footer: #aab3c8;

  /* Radius */
  --radius-card: 30px;
  --radius-link-card: 20px;

  /* Shadow */
  --shadow-soft: 0 20px 60px rgba(20, 35, 90, 0.12);
  --shadow-card: 0 10px 25px rgba(20, 35, 90, 0.08);
  --shadow-btn: 0 4px 14px rgba(20, 35, 90, 0.12);

  /* Fonts */
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-blue-dark);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* ==========================================================================
   Page background
   ========================================================================== */

.page-bg {
  position: relative;
  min-height: 100vh;
  width: 100%;
 html{
    scroll-behavior:smooth;
}

body{
    overflow-x:hidden;
    overflow-y:auto;
}
  background: linear-gradient(160deg, var(--color-bg-start) 0%, var(--color-bg-end) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 20px;
}

.blur-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.blur-shape--one {
  width: 420px;
  height: 420px;
  top: -100px;
  left: -120px;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.16), transparent 70%);
}

.blur-shape--two {
  width: 380px;
  height: 380px;
  bottom: -120px;
  right: -100px;
  background: radial-gradient(circle, rgba(245, 130, 47, 0.14), transparent 70%);
}

.blur-shape--three {
  width: 320px;
  height: 320px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(43, 79, 176, 0.08), transparent 70%);
}

/* ==========================================================================
   Main card
   ========================================================================== */

.card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

/* ==========================================================================
   Top bar
   ========================================================================== */

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 0;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--color-blue-mid);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.icon-btn:hover,
.icon-btn:focus-visible {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 24px rgba(20, 35, 90, 0.15);
}

.icon-btn:focus-visible {
  outline: 2px solid var(--color-blue-mid);
  outline-offset: 2px;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding: 8px 100px 0;
  min-height: 380px;
}

.hero-center {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
  padding: 0 4px;
  position: relative;
  z-index: 2;
}

.logo {
  width: 108px;
  height: 108px;
  margin: 0 auto 4px;
  object-fit: contain;
}

.brand-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: var(--color-blue-dark);
  margin: 4px 0 6px;
  letter-spacing: 0.2px;
}

.tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 14px;
  letter-spacing: 0.2px;
}

.tagline-blue {
  color: var(--color-blue-royal);
}

.tagline-orange {
  color: var(--color-orange);
}

.description {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--color-blue-dark);
  margin: 0 0 4px;
  line-height: 1.5;
}

.sub-description {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0 0 18px;
  line-height: 1.5;
}

/* Social icons */

.social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-blue-dark);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.social-icon:hover,
.social-icon:focus-visible {
  transform: scale(1.12);
  box-shadow: 0 0 0 6px rgba(15, 31, 82, 0.12), 0 8px 18px rgba(15, 31, 82, 0.25);
}

.social-icon:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 3px;
}

/* Illustrations */

.illustration {
  position: absolute;
  bottom: -4px;
  width: 150px;
  z-index: 1;
}

.illustration--left {
  left: -14px;
}

.illustration--right {
  right: -14px;
  text-align: right;
}

.illustration--right img {
  margin-left: auto;
}

.float-badge {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  z-index: 3;
}

.pin-wrap,
.gear-wrap {
  position: absolute;
  top: -70px;
  left: 6px;
  width: 60px;
  height: 130px;
}

.gear-wrap {
  left: auto;
  right: 0;
}

.pin-wrap .float-badge {
  color: var(--color-blue-mid);
  top: 0;
  left: 0;
}

.gear-wrap .float-badge {
  color: var(--color-orange);
  top: 0;
  right: 0;
}

.dotted-path {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.wrench-icon {
  position: absolute;
  bottom: 40px;
  left: 4px;
  color: var(--color-orange);
  font-size: 18px;
  background: var(--color-white);
  padding: 6px;
  border-radius: 50%;
  box-shadow: var(--shadow-card);
}

/* ==========================================================================
   Blue curved section
   ========================================================================== */

.blue-section {
  position: relative;
  margin-top: 22px;
  background: var(--color-blue-dark);
}

.wave {
  display: block;
  width: 100%;
  height: 44px;
  margin-bottom: -1px;
}

.blue-content {
  padding: 6px 22px 30px;
}

/* Link cards */

.link-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.link-card {
  display: flex;
  align-items: center;
  height: 75px;
  padding: 0 20px;
  background: var(--color-white);
  border-radius: var(--radius-link-card);
  box-shadow: var(--shadow-btn);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.link-card:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 2px;
}

.link-card__icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--color-white);
  margin-right: 16px;
}

.link-card__icon--web {
  background: var(--color-blue-mid);
}

.link-card__icon--instagram {
  background: radial-gradient(circle at 30% 110%, #ffdb73 0%, #fd5949 45%, #d6249f 70%, #285aeb 100%);
}

.link-card__icon--youtube {
  background: #ff0000;
}

.link-card__icon--linkedin {
  background: #0a66c2;
}

.link-card__icon--whatsapp {
  background: #25d366;
}

.link-card__text {
  flex: 1 1 auto;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-blue-dark);
  text-align: center;
}

.link-card__menu {
  flex: 0 0 auto;
  color: #c3c9d6;
  font-size: 16px;
}

/* Join button */

.join-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 60px;
  border-radius: 30px;
  background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-orange-light) 100%);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  box-shadow: 0 10px 24px rgba(245, 130, 47, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-bottom: 26px;
}

.join-btn:hover,
.join-btn:focus-visible {
  transform: scale(1.03);
  box-shadow: 0 14px 32px rgba(245, 130, 47, 0.5);
}

.join-btn:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}

.join-btn__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Footer */

.footer {
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--color-text-footer);
  margin-bottom: 16px;
}

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--color-white);
}

.thank-you {
  font-size: 13px;
  color: #d7dcec;
  margin: 0;
}

/* ==========================================================================
   QR block
   ========================================================================== */

.qr-block {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.qr-code {
  width: 72px;
  height: 72px;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.qr-label {
  font-size: 11px;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 640px) {
  .page-bg {
    flex-direction: column;
    padding: 32px 14px;
    align-items: center;
  }

  .qr-block {
    position: static;
    margin-top: 24px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 8px 70px 0;
    min-height: 300px;
  }

  .illustration {
    width: 110px;
  }
}

@media (max-width: 480px) {
  .card {
    max-width: 100%;
    border-radius: 24px;
  }

  .brand-title {
    font-size: 26px;
  }

  .logo {
    width: 88px;
    height: 88px;
  }

  .hero {
    padding: 8px 74px 0;
    min-height: 270px;
  }

  .illustration {
    width: 72px;
  }

  .illustration--left {
    left: -4px;
  }

  .illustration--right {
    right: -4px;
  }

  .pin-wrap,
  .gear-wrap {
    top: -46px;
    width: 44px;
    height: 90px;
  }

  .float-badge {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .wrench-icon {
    font-size: 15px;
    padding: 5px;
    bottom: 30px;
  }

  .link-card {
    height: 68px;
    padding: 0 16px;
  }

  .link-card__text {
    font-size: 14.5px;
  }

  .join-btn {
    font-size: 14px;
  }

  .footer-links {
    font-size: 10.5px;
    gap: 6px;
  }
}

@media (max-width: 360px) {
  .hero {
    padding: 8px 48px 0;
    min-height: 240px;
  }

  .illustration {
    width: 68px;
  }

  .hero-center {
    max-width: 100%;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}



/* Default: Desktop/Laptop par show */
.qr-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Mobile aur tablets par hide */
@media (max-width: 768px) {
  .qr-block {
    display: none;
  }
}

.icon-btn--theme{
    transition:.35s;
    cursor:pointer;
}

.icon-btn--theme:hover{
    transform:scale(1.08) rotate(12deg);
}

body{
    transition:0.4s ease;
}

.card,
.link-card,
.join-btn,
.blue-section{
    transition:0.4s ease;
}


/* dark theme */


body.dark{

    background:#0f172a;
    color:white;

}

body.dark .card{

    background:#111827;

}

body.dark .brand-title{

    color:white;

}

body.dark .description,
body.dark .sub-description{

    color:#d1d5db;

}

body.dark .link-card{

    background:#1f2937;
    color:white;

}

body.dark .join-btn{

    background:linear-gradient(90deg,#2563eb,#f97316);
    color:white;

}

body.dark .footer{

    color:#cbd5e1;

}






/* replace */

/* DARK MODE */

body.dark .link-card{
    background:#1f2937;
    color:#ffffff;
}

body.dark .link-card__text{
    color:#ffffff !important;
}

body.dark .brand-title{
    color:#ffffff;
}

body.dark .tagline{
    color:#ffffff;
}

body.dark .description,
body.dark .sub-description{
    color:#d1d5db;
}

body.dark .footer,
body.dark .footer a{
    color:#d1d5db;
}

.link-card__text{
    color:#0A2A88;
    transition:.3s;
}

body.dark .link-card__text{
    color:#ffffff;
}














.watch-video-btn{

    margin-top:25px;

    padding:14px 28px;

    border:none;

    border-radius:50px;

    cursor:pointer;

    font-size:16px;

    font-weight:600;

    color:white;

    background:linear-gradient(90deg,#2563eb,#ff6b00);

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.18);

}

.watch-video-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 40px rgba(0,0,0,.25);

}

.watch-video-btn i{

    margin-right:10px;

}

.video-modal{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.75);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9999;

    backdrop-filter:blur(8px);

}

.video-modal.show{

    opacity:1;

    visibility:visible;

}

.video-box{

    width:90%;

    max-width:900px;

    aspect-ratio:16/9;

    position:relative;

    border-radius:18px;

    overflow:hidden;

    background:#000;

    box-shadow:0 20px 60px rgba(0,0,0,.45);

}

.video-box iframe{

    width:100%;

    height:100%;

    border:none;

}

.close-video{

    position:absolute;

    top:10px;

    right:15px;

    width:42px;

    height:42px;

    border:none;

    border-radius:40%;

    cursor:pointer;

    background:white;

    z-index:100;

    font-size:18px;

}
















/* ===========================
   Watch Video Button
=========================== */

.watch-video-btn{

    width:100%;

    max-width:460px;

    height:64px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    margin:30px auto 18px;

    padding:0 28px;

    border:none;

    border-radius:50px;

    cursor:pointer;

    font-family:"Poppins",sans-serif;

    font-size:18px;

    font-weight:600;

    color:#fff;

    background:linear-gradient(135deg,#2563EB 0%,#4F46E5 45%,#FF6B00 100%);

    box-shadow:
        0 15px 35px rgba(37,99,235,.30),
        0 8px 18px rgba(255,107,0,.20);

    transition:all .35s ease;

    overflow:hidden;

    position:relative;

}

.watch-video-btn:hover{

    transform:translateY(-5px) scale(1.02);

    box-shadow:
        0 25px 45px rgba(37,99,235,.35),
        0 12px 25px rgba(255,107,0,.30);

}

.watch-video-btn::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:70%;

    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );

    transition:.7s;

}

.watch-video-btn:hover::before{

    left:140%;

}

@media(max-width:768px){

.watch-video-btn{

    width:100%;

    height:58px;

    font-size:16px;

}

.watch-video-btn i{

    font-size:21px;

}

}



.video-box{
    width: 300px;
    max-width: 95vw;
    aspect-ratio: 9.1 / 17.1;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.visitor-counter{

    width:fit-content;

    margin:30px auto;

    padding:12px 24px;

    display:flex;

    align-items:center;

    gap:10px;

    background:#ffffff;

    border-radius:50px;

    border:1px solid #e5e7eb;

    box-shadow:0 10px 25px rgba(0,0,0,.12);

    font-family:"Poppins",sans-serif;

    font-size:16px;

    font-weight:600;

    color:#111827;

}

.visitor-counter i{

    color:#ff6b00;

    font-size:18px;

}

#visitorCount{

    color:#111827;

    font-weight:700;

}
body.dark .visitor-counter{

    background:#1f2937;

    border:1px solid rgba(255,255,255,.08);

}

body.dark #visitorCount{

    color:#ffffff;

}




/* =========================================
   FINAL MOBILE RESPONSIVE FIX
========================================= */

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.page-bg {
    width: 100%;
    min-height: 100vh;
    padding: 20px 10px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* MAIN CARD */

.card {
    width: 100% !important;
    max-width: 500px !important;
    margin: 0 auto;
}

/* HERO */

.hero {
    width: 100%;
}

/* BLUE SECTION */

.blue-section {
    width: 100%;
}

.blue-content {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
}

/* LINK BUTTONS */

.link-list {
    width: 100%;
}

.link-card {
    width: 100%;
}

/* VIDEO BUTTON */

.watch-video-btn {
    width: 100%;
    max-width: 100%;
    height: 52px;
    font-size: 14px;
    margin: 24px auto 16px;
}

/* JOIN BUTTON */

.join-btn {
    width: 100%;
}

/* VISITOR COUNTER */

.visitor-counter {
    margin: 24px auto 10px;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .page-bg {
        padding: 10px 8px;
    }

    .card {
        width: 100% !important;
        max-width: 500px !important;
        border-radius: 22px;
    }

    .top-bar {
        padding: 18px 18px 0;
    }

    .hero {
        padding: 8px 55px 0;
        min-height: 300px;
    }

    .hero-center {
        max-width: 100%;
        width: 100%;
    }

    .logo {
        width: 90px;
        height: 90px;
    }

    .brand-title {
        font-size: 27px;
    }

    .tagline {
        font-size: 12px;
    }

    .description {
        font-size: 13px;
    }

    .sub-description {
        font-size: 11.5px;
    }

    .illustration {
        width: 75px;
    }

    .illustration--left {
        left: -2px;
    }

    .illustration--right {
        right: -2px;
    }

    .blue-content {
        padding: 8px 14px 24px;
    }

    .link-list {
        gap: 12px;
        margin-bottom: 16px;
    }

    .link-card {
        height: 62px;
        padding: 0 14px;
        border-radius: 18px;
    }

    .link-card__icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
        margin-right: 12px;
    }

    .link-card__text {
        font-size: 14px;
    }

    .join-btn {
        height: 54px;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .join-btn__icon {
        width: 30px;
        height: 30px;
    }

    .footer-links {
        font-size: 10px;
    }

    .thank-you {
        font-size: 11px;
    }

}


/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 380px) {

    .page-bg {
        padding: 6px;
    }

    .card {
        width: 100% !important;
        border-radius: 20px;
    }

    .hero {
        padding-left: 45px;
        padding-right: 45px;
    }

    .logo {
        width: 80px;
        height: 80px;
    }

    .brand-title {
        font-size: 24px;
    }

    .description {
        font-size: 12px;
    }

    .sub-description {
        font-size: 10.5px;
    }

    .illustration {
        width: 65px;
    }

    .link-card {
        height: 58px;
    }

    .link-card__text {
        font-size: 13px;
    }

    .watch-video-btn {
        height: 48px;
        font-size: 13px;
    }

    .join-btn {
        height: 50px;
        font-size: 13px;
    }

}





/* =========================================
   VIDEO MODAL
========================================= */

.video-modal {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(5, 10, 20, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    z-index: 99999;
}

.video-modal.show {
    opacity: 1;
    visibility: visible;
}


/* =========================================
   VIDEO CONTAINER
========================================= */

.video-box {
    position: relative;

    width: min(420px, 90vw);
    height: min(750px, 88vh);

    max-height: 88vh;

    background: #000;

    border-radius: 24px;

    overflow: hidden;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(255, 255, 255, 0.12);

    transform: scale(0.94);

    transition: transform 0.35s ease;
}

.video-modal.show .video-box {
    transform: scale(1);
}


/* =========================================
   VIDEO / IFRAME
========================================= */

.video-box iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: none;

    background: #000;
}


/* =========================================
   CLOSE BUTTON
========================================= */

.close-video {
    position: absolute;

    top: 14px;
    right: 14px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.96);

    color: #111827;

    font-size: 21px;

    cursor: pointer;

    z-index: 100000;

    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.3);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.close-video:hover {
    transform: rotate(90deg) scale(1.08);

    background: #ff6b00;

    color: #fff;
}

.close-video:active {
    transform: scale(0.92);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .video-modal {
        padding: 12px;
    }

    .video-box {
        width: min(390px, 92vw);

        height: min(700px, 86vh);

        border-radius: 22px;
    }

    .close-video {
        top: 12px;
        right: 12px;

        width: 44px;
        height: 44px;

        font-size: 19px;
    }
}


/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-height: 700px) {

    .video-box {
        height: 84vh;
    }

    .close-video {
        width: 42px;
        height: 42px;
    }
}






/* =========================================
   REMOVE SECOND SCROLLBAR
========================================= */

html {
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

body {
    overflow-y: visible !important;
    overflow-x: hidden !important;
    height: auto !important;
    min-height: 100vh;
}

/* Main page should not have its own scrollbar */
.page-bg {
    overflow: visible !important;
    overflow-y: visible !important;
    height: auto !important;
    min-height: 100vh;
}

/* Card should scroll with the page, not separately */
.card {
    overflow: visible !important;
    overflow-y: visible !important;
    height: auto !important;
}

/* Sections should not create another scroll */
main,
.hero,
.blue-section,
.blue-content {
    overflow: visible !important;
    overflow-y: visible !important;
    height: auto !important;
}