/* Base */
html {
  font-size: 16px; /* Base size for rem */
  scroll-behavior: smooth;
}

body {
  background-image: linear-gradient(-180deg, #6FA7FF 2%, #1E2D47 97%);
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1.125rem; /* slightly larger text */
  color: #000;
  line-height: 1.6;
  position: relative;
}

html, body {
  overflow-x: hidden;
}

.brand-box, .container-fluid {
  max-width: 100vw;
}

/* Force containers not to exceed viewport 
.container, .brand-box, .row {
  max-width: 100vw;
  box-sizing: border-box;
} */

h2 {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 20px;
}

/* h4 { 
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", sans-serif;
  font-weight: 700; /* Regular weight to avoid competition with H2 
  font-size: 1.25rem; /* 20px (slightly larger than regular paragraph text) 
  color: #000; /* Subtle gray color, matching your paragraph style 
  line-height: 1.5; /* Ensures readability 
  margin-bottom: 0.75rem; /* Small space below H5 for separation 
  text-align: center;
} */

h5 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", sans-serif;
  font-weight: 700; /* Regular weight to avoid competition with H2 */
  font-size: 1.0rem; /* 20px (slightly larger than regular paragraph text) */
  color: #fff; /* Subtle gray color, matching your paragraph style */
  line-height: 1.5; /* Ensures readability */
  margin-bottom: 0.75rem; /* Small space below H5 for separation */
  text-align: center;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 80px;
  overflow: hidden;
}

.logo-img {
  max-height: 60px; /* matches nav height */
  height: auto;
  width: auto;
}

.nav-brand {
  background-color: #128df4; /* brand blue */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 8px 40px; /* reduces vertical padding */
  
  /* --- Minimal fix for dropdown stacking --- */
  position: relative; /* creates stacking context for z-index */
  z-index: 1050;      /* ensures nav is above hero section */
}

.nav-links {
  list-style: none;
  display: flex;
  /* gap: 20px; */
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

.dropdown-menu {
  background-color: transparent;

  /* --- Minimal fix for dropdown stacking --- */
  position: absolute; /* ensures it can float above hero section */
  z-index: 1100;      /* above nav */
}

/* Remove default Bootstrap dropdown padding/indent */
#contact-dropdown {
  margin-top: 24px;       /* space below Contact button */
  padding-left: 0;        /* remove left padding */
  list-style: none;       /* remove bullet points */
  border: none;           /* no border */
  background: transparent; 
}

/* Make dropdown links line up exactly under the C */
#contact-dropdown li a {
  padding-left: 0;        /* remove Bootstrap default padding */
  display: block;         /* full width so spacing works */
  color: #128df4;         /* navbar blue */
}

#contact-dropdown li a:hover {
  color: #0F6BB8;         /* darker blue hover */
}

/* --- HERO SECTION --- */
.hero-logo-section {
  color: #fff;
  padding: 1rem 0 8rem;                 /* matches the "moved down" spacing you had */
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-logo-img {
  max-width: 280px;                     /* keeps logo balanced */
  width: 60%;
  height: auto;
  padding-top: 3rem;                    /* nudges logo down slightly for visual centering */
}


/* --- Tagline Row Container --- */
.hero-tagline-row {
  display: flex;
  flex-direction: column;      /* stack lines vertically on mobile first */
  justify-content: center;
  align-items: center;
  gap: 0.4rem;                 /* tighter gap between lines for mobile */
  margin-top: -1rem;           /* slightly reduced on mobile */
  margin-bottom: 2rem;
  text-align: center;
}

/* --- Individual Tagline Columns --- */
.hero-tagline-col {
  display: block;
  width: 100%;
}

/* --- Line 1 (flat) --- */
.hero-tagline-line1 {
  font-size: clamp(1.4rem, 2vw + 0.8rem, 1.8rem);
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); /* soft shadow to improve contrast */
}

/* --- Line 2 (emphasis) --- */
.hero-tagline-line2 {
  font-size: clamp(1.6rem, 2.5vw + 0.9rem, 2rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.8s;
  line-height: 1.2;
}

/* Simple fade-in keyframes */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}


/* Video box styling */
.hero-video-box {
  border: 2px solid #ffffff;            /* brand blue border */
  border-radius: 8px;
  box-shadow: 0 15px 30px 5px rgba(0,0,0,0.25);       
  overflow: hidden;
  padding: 0;                            /* no inner padding to interfere with video */
  transition: all 0.3s ease-in-out;
  text-align: center;
}


.hero-video-box:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  transform: scale(1.02);
}

.mt-4-5 {
  padding-top: 2rem;
}

.custom-green-btn {
  background-color: #54c452;   /* green that contrasts with dark blue */
  border-color: #1CC88A;
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  width: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* subtle lift effect */
}

.custom-green-btn:hover {
  background-color: #0baa73;   /* slightly darker on hover */
  border-color: #17A673;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25); /* slightly stronger shadow on hover */
}

.section-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff; 
  text-align: center;
  letter-spacing: .25px;
  text-shadow: 1.5px 1.5px 2.5px rgba(0,0,0,0.5);
}

.process-container {
  display: flex;
  justify-content: center; /* horizontally center */
  align-items: center;     /* vertically center */
  gap: 0.5rem;             /* optional, spacing between text and arrow */
}

/* Process Text & Arrow */
.process-text {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(0.8rem, 2vw + 0.8rem, 2.5rem);
  letter-spacing: 0.5px;
  font-style: italic;
  color: #ffffff; /* white text */
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); /* soft shadow to improve contrast */
}

.process-arrow {
  height: 1.5rem; /* adjust to your arrow size */
  display: inline-block;
  width: auto;
  vertical-align: middle;
}
   
.pop-text {
  color: #ffffff; /* white text */
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); /* soft shadow to improve contrast */
}

/* Let boxes overflow so badges can sit outside */
.package-box {
  background-color: #128df4;
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  overflow: visible; /* allows badges to hang outside */
  z-index: 1;
  color: #fff; /* ensure text is white */
  border: 1px solid #ffffff;
}

/* Row containing package boxes */
.package-row {
  gap: 2rem; /* controls space between columns */
  justify-content: center; /* center boxes in container */
  margin-top: 5rem;
}

/* Special badge - now overlaps into white space properly */
.special-badge {
  position: absolute;
  top: -20px;   /* pull it above the top of the box */
  left: -20px;  /* pull it left outside the box */
  width: 70px;
  height: 70px;
  z-index: 10;
}


/* Package title and line */
.package-title {
  text-decoration: underline;
  text-decoration-color: #fff;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

/* Bullet points visible and white */
.package-list {
  list-style-type: disc;
  padding-left: 1.5rem; /* create indent for bullets */
}

.package-list li {
  color: #fff;
  margin-bottom: 0.5rem;
}

.social-logos {
  width: 40px;
}


/* Brand Line Text */
.brand-line-text {
  color: #128df4; /* brand blue */
  font-weight: 700;
  font-family: 'Nunito', sans-serif; /* or whatever you want */
  font-size: 2.5rem; /* adjust as needed */
}

.offer-text {
  color: #42d840; /* green */
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 0.8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-style: italic;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8); /* existing shadow for depth */
}

.offer-text-white {
  color: #ffffff; /* green */
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 0.8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-style: italic;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8); /* existing shadow for depth */
}

.brand-box {
  background-color: #128df4;
  border-radius: 8px;
  color: #FFF;
  padding: 2rem; /* default */
  border: 1px solid #ffffff;
}
.BrandBoxAudio audio {
  width:80%; 
  /* any other styles for both audio players */
}

.tv-logos {
  display: inline-block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}

.blue-pic {
  max-width: 150px;
}

.test {
  border: 1px solid red;
}


/* TV SAMPLES */

/* Video box styling */
.video-box {
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.3), 0 3px 6px rgba(0,0,0,0.15); /* softened lift */
  overflow: hidden;
  padding: 0;
  transition: all 0.3s ease-in-out;
  text-align: center;
  outline: 1px solid rgba(255,255,255,0.05); /* subtle outline for separation */
}

.video-box:hover {
  box-shadow: 0 12px 20px rgba(0,0,0,0.35), 0 6px 10px rgba(0,0,0,0.2);
  transform: scale(1.02); /* leave hover pop as is */
}

.video-box h5 {
/*  margin-top: 0; */
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", sans-serif;
font-weight: 700; /* Regular weight to avoid competition with H2 */
font-size: 1.0rem; /* 20px (slightly larger than regular paragraph text) */
color: #fff; /* Subtle gray color, matching your paragraph style */
line-height: 1.5; /* Ensures readability */
margin-bottom: 0.75rem; /* Small space below H5 for separation */
text-align: center;
}

.video-box p {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.video-fix iframe {
  width: 100%;
  height: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: contain;
  box-sizing: border-box;
}

.faq-heading {
  text-align: left;
  font-weight: bold;    /* ensure it stands out */
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6); 
}

.faq-list li {
  margin-bottom: 1rem;  /* space between each item */
  line-height: 1.6;     /* improves readability */
}

/* Remove extra space after the last list item */
.faq-list li:last-child {
  margin-bottom: 0;
}

ol {
  padding-left: 1.2rem;
}

.ordered-list li {
  margin-bottom: 1.3rem;  /* space between each item */
  line-height: 1.6;     /* improves readability */
}

.ordered-list li:last-child {
  margin-bottom: 0;
}

.footer-text{
  color: #fff;
  text-align: center;
}

.footer-text a {
  color: #ffffff; /* slightly lighter gray for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-text a:hover {
  color: #bfbfbf; /* hover effect */
}


/* ===== Badge / sticker positioning — mobile-first base ===== */
/* Cancel any translate or transform applied by bootstrap helper classes */
.package-box .special-badge {
  transform: none !important;       /* cancel translate-middle */
  left: -10px !important;           /* small negative offset for mobile */
  top: -18px !important;
  width: 60px !important;           /* mobile-friendly size */
  height: 60px !important;
  z-index: 60 !important;
  position: absolute !important;    /* make sure positioning is absolute */
  object-fit: contain;
}

.package-box {
    transition: all 0.3s ease-in-out;
  }
  
  .package-box:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
  }


/* ===== Social icons — mobile-first (base) ===== */
.social-logos-space {
  display: flex;
  justify-content: center;  /* keep centered on small phones */
  align-items: center;
  gap: 0.45rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  box-sizing: border-box;
  flex-wrap: nowrap;        /* force single row */
  overflow: hidden;         /* hide overflow */
}

/* make each icon a fixed flex item */
.social-logos {
  flex: 0 0 auto;
  width: 36px;              /* tuned for iPhone SE */
  height: auto;
  display: block;
}

.social-logos-smaller {
  flex: 0 0 auto;
  width: 34px;              /* tuned for iPhone SE */
  height: auto;
  display: block;
}

@media screen and (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    position: absolute;
    top: 60px;
    right: 40px;
    /* padding: 20px; */
    gap: 10px;
    border-radius: 12px;
  }

  .nav-links.active {
    display: flex;
  }

  /* ✅ Keep links transparent and white */
  .nav-links li a {
    color: white;
    background-color: transparent;
    /* padding: 0.5rem 1rem; */
    text-decoration: none;
    font-weight: 600;
  }

  .nav-links li a:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Optional subtle hover */
  }
}

/* Mobile adjustments */
@media (max-width: 767.98px) {
  .brand-box {
    padding: 1rem; /* reduce padding on phones */
  }
}

@media (min-width: 576px) {
/* Scale social logos up for small devices */
.social-logos {
  width: 80px;
}
.social-logos-space {
  gap: 50px !important;
}

}


  @media (max-width: 390px) {
    .nav-links {
      gap: 0px !important;
    }   
    ul.dropdown-menu li a.dropdown-item {
      display: block;
      margin-bottom: 0 !important;
    }
  }

/* Mobile-first media query for small devices */
@media (max-width: 575.98px) {
  /* Adjust package column width so badges have room */
  .package-row > .col-12 {
    padding-left: 0.5rem;  /* adds small space on the left */
    padding-right: 0.5rem; /* optional: keeps some breathing room */
  }

  /* Pull the badge closer to the box without clipping off-screen */
  .package-box .special-badge {
    left: -8px;    /* start at the very left edge of the box */
    top: -20px;    /* adjust vertical overlap */
    transform: none; /* remove translate-middle */
  }

  /* Extra vertical spacing between stacked boxes */
  .package-row > .col-12 + .col-12 {
    margin-top: 1.5rem; /* creates breathing room between stacked boxes */
  }
}

/* Tablet / small laptop media query */
@media screen and (min-width: 320px) and (max-width: 899px) {
  .cta-button {
    margin-bottom: 6rem; /* pushes it up */
  }
}



/* Desktop: slightly bigger and pulled further out to match look from before */
@media (min-width: 576px) {
  .package-box .special-badge {
    left: -20px !important;
    top: -20px !important;
    width: 70px !important;
    height: 70px !important;
  }
}

@media (max-width: 575.98px) {
  .social-logos {
    width: 40px;  /* small enough to fit 6 icons on all phones */
  }
  .social-logos-space {
    gap: 0.34rem; /* tight gap to avoid wrapping */
  }
}

/* >= 576px: tablets and desktop */
@media (min-width: 576px) {
  .social-logos {
    width: 80px;
  }
  .social-logos-space {
    gap: 1.5rem;
    flex-wrap: nowrap;
    justify-content: center;  /* keep row centered */
  }
}


  /* Responsive tweaks if needed */
@media (max-width: 767.98px) {
  .process-text {
    display: block;
    margin: 0.3rem 0;
  }
  .process-arrow {
    display: block;
    margin: 0.5rem auto;
  }
}








