/* 🌐 Global Styles */

body {
margin: 0;
font-family: 'Inter', sans-serif;
background-color: #f7f9fc;
color: #333;
}

header {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #ffffff;
padding-block: 6px; /* reduces vertical space only */
padding-inline: 32px; /* keeps horizontal spacing intact */
box-shadow: 0 2px 5px rgba(0,0,0,0.05);
position: sticky;
top: 0;
z-index: 1000;
flex-wrap: wrap;
}

/* 🔳 Logo Container */
.logo {
display: flex;
align-items: center;
flex-shrink: 0;
margin-right: 20px;
}

/* 🖼️ Logo Image */
.logo img {
height: 60px;
object-fit: contain;
display: block;
}

/* 🧭 Navigation */
nav {
display: flex;
align-items: center;
flex-wrap: wrap;
}

nav a {
text-decoration: none;
color: #0d3c8f;
margin-left: 20px;
font-weight: 500;
transition: color 0.3s ease;
}

nav a:hover {
color: #1e3a8a;
}

/* 🌐 Language Switcher */
.language-switcher {
margin-left: 20px;
display: flex;
gap: 10px;
}

.language-switcher button {
background: none;
border: 1px solid #0d3c8f;
border-radius: 6px;
padding: 6px 12px;
font-size: 0.95em;
color: #0d3c8f;
cursor: pointer;
font-weight: 500;
transition: background-color 0.3s ease, color 0.3s ease;
}

.language-switcher button:hover {
background-color: #0d3c8f;
color: #fff;
}

/* 🔽 Dropdown styling */
.dropdown {
position: relative;
}

.dropdown-content {
display: none;
position: absolute;
top: 100%;
left: 0;
background-color: #fff;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
border-radius: 6px;
z-index: 1001;
min-width: 180px;
}

.dropdown-content a {
display: block;
padding: 10px 15px;
text-decoration: none;
color: #2c3e50;
}

.dropdown-content a:hover {
background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
display: block;
}

/* ☰ Mobile Hamburger */
.mobile-menu-icon {
display: none;
font-size: 2em;
cursor: pointer;
color: #1e3a8a;
padding-left: 10px;
}

/* 📱 Mobile Dropdown */
.mobile-dropdown {
display: none;
flex-direction: column;
background-color: #ffffff;
position: absolute;
top: 65px;
right: 20px;
box-shadow: 0 2 px 8px rgba(0,0,0,0.2);
border-radius: 8px;
padding: 10px 0;
z-index: 1002;
}

.mobile-dropdown a {
padding: 12px 20px;
text-decoration: none;
color: #2c3e50;
font-weight: 500;
}

.mobile-dropdown a:hover {
background-color: #f4f4f4;
}

.mobile-submenu {
position: relative;
padding: 12px 20px;
cursor: pointer;
font-weight: 500;
color: #2c3e50;
}

.mobile-submenu-content {
display: none;
flex-direction: column;
background-color: #fff;
padding-left: 10px;
}

.mobile-submenu-content a {
padding: 10px 20px;
font-size: 0.95em;
color: #2c3e50;
text-decoration: none;
}

.mobile-submenu-content a:hover {
background-color: #f4f4f4;
}

/* 💬 Hero Section */
.hero {
padding: 100px 20px 60px;
text-align: center;
background: linear-gradient(to bottom, #eaf2ff, #f4f6f9);
color: #2c3e50;
}

.hero h1 {
font-size: clamp(2em, 5vw, 2.8em);
font-weight: 600;
margin-bottom: 20px;
}

.hero p {
font-size: 1.2em;
max-width: 700px;
margin: auto;
}

/* 🧱 Sections */
.section {
padding: 60px 30px;
max-width: 1200px;
margin: auto;
}

.section:nth-of-type(even) {
background-color: #eaf2ff;
}

.section:nth-of-type(odd) {
background-color: #f7f9fc;
}

h2.section-title {
text-align: center;
font-size: 2em;
margin-bottom: 40px;
color: #1e3a8a;
font-weight: 600;
}

/* 🧩 Cards */
.cards {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 30px;
}

.card {
background: #ffffff;
padding: 25px;
border-radius: 12px;
border: 1px solid #cbdafc;
box-shadow: 0 2px 6px rgba(30, 58, 138, 0.05);
}

/* 🔧 Individual Service Card Styling (New) */
.service-card {
background: #ffffff;
padding: 30px;
border-radius: 12px;
border: 1px solid #cbdafc;
box-shadow: 0 4px 12px rgba(30, 58, 138, 0.05);
transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
height: 100%;
display: flex;
flex-direction: column;
max-width: 350px;
}

.service-card:hover {
transform: scale(1.03);
box-shadow: 0 8px 25px rgba(30, 58, 138, 0.15);
}

.service-card h3 {
color: #0d3c8f;
margin-top: 0;
font-weight: 600;
}

.service-card p {
color: #555;
}

/* 🧭 Promo Section */
.promo {
background: linear-gradient(to right, #e8f0ff, #ffffff);
padding: 60px 30px;
}

.promo-container {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 40px;
max-width: 1200px;
margin: auto;
align-items: center;
}

.promo-title {
font-size: 2.2em;
color: #1e3a8a;
margin-bottom: 20px;
}

.promo-description {
font-size: 1.2em;
color: #333;
margin-bottom: 20px;
}

.promo-list {
list-style: none;
padding: 0;
font-size: 1em;
color: #444;
}

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

.promo-cta h3 {
font-size: 1.4em;
color: #0d3c8f;
margin-bottom: 10px;
}

.contact-button {
display: inline-block;
padding: 12px 20px;
background-color: #0d3c8f;
color: #fff;
text-decoration: none;
border-radius: 8px;
font-weight: 500;
margin-top: 10px;
transition: background 0.3s ease;
}

.contact-button:hover {
background-color: #1e52bf;
}

/* 📦 Footer */
footer {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 15px;
padding: 30px;
background-color: #ffffff;
font-size: 0.9em;
color: #666;
border-top: 1px solid #e0e0e0;
}

footer a {
color: #0d3c8f;
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
}

footer a:hover {
color: #1e3a8a;
text-decoration: underline;
}

/* === Contact Form Styles === */
.contact-section {
background-color: #f9f9f9;
padding: 40px 20px;
}

.contact-container {
display: flex;
flex-wrap: wrap;
gap: 40px;
max-width: 1000px;
margin: auto;
align-items: flex-start;
}

.contact-form {
flex: 1;
min-width: 300px;
}

.contact-form h3 {
margin-bottom: 20px;
font-size: 1.5em;
color: #333;
}

.contact-form form {
display: flex;
flex-direction: column;
}

.contact-form input,
.contact-form textarea {
margin-bottom: 15px;
padding: 12px;
font-size: 1em;
border: 1px solid #ccc;
border-radius: 6px;
background-color: #fff;
}

.contact-form textarea {
resize: vertical;
}

.contact-form button {
padding: 12px;
font-size: 1em;
background-color: #0078D4;
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
transition: background-color 0.3s ease;
}

.contact-form button:hover {
background-color: #005ea2;
}

/* 🌐 Language Switcher Visibility Control */
.language-switcher.desktop-lang {
display: flex;
}

.mobile-lang-wrapper {
display: none;
}

@media (max-width: 768px) {
    header nav {
        display: none;
    }
}

.mobile-menu-icon {
display: block;
}

.mobile-dropdown {
display: none;
}

.cards {
grid-template-columns: 1fr;
}

.hero h1 {
font-size: 2em;
}

body {
background: url('images/vyntech-bg.jpg') no-repeat center center;
background-size: cover;
font-family: 'Inter', sans-serif;
color: #333;
}
}

.content-wrapper {
max-width: 900px;
margin: 0 auto;
padding: 40px 20px;
background-color: rgba(255, 255, 255, 0.9);
border-radius: 12px;
}

/* ✨ Fade-in animation for hero text */
@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes fadeInDown {
    from { 
        opacity: 0; 
        transform: translateY(-40px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.hero h1 {
    animation: fadeInDown 3s ease-out forwards;
    animation-delay: 0.1s;
}

.hero p {
    animation: fadeInUp 3s ease-out forwards;
    animation-delay: 0.1s;
}

body:not(.loaded) .hero h1,
body:not(.loaded) .hero p {
    opacity: 0;
}

/* 🆕 Split Layout */
.split-layout-container {
display: flex;
flex-direction: column;
gap: 60px;
margin-top: 40px;
}

.split-layout-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
}

.split-layout-text h3 {
color: #0d3c8f;
font-size: 1.5em;
margin-bottom: 10px;
}

.split-layout-text p {
color: #555;
}

.split-layout-text.content-left {
text-align: left;
}

.split-layout-text.content-right {
text-align: right;
}

.split-layout-row.reverse-order {
grid-template-areas: "visual text";
}

.split-layout-row.reverse-order .split-layout-text {
grid-area: text;
}

.split-layout-row.reverse-order .split-layout-visual {
grid-area: visual;
}

/* Mobile */
@media (max-width: 768px) {
.split-layout-row,
.split-layout-row.reverse-order {
grid-template-columns: 1fr;
grid-template-areas: none;
}

.split-layout-text.content-right,
.split-layout-text.content-left {
text-align: left;
}

.split-layout-row.reverse-order .split-layout-visual {
order: -1;
}
}

/* Clickable titles */
.split-layout-text h3 a {
color: inherit;
text-decoration: none;
}

.split-layout-text h3 a:hover {
opacity: 0.8;
}
/* -----------------------------------------------------------
   RIGHT-SIDE TEXT ALIGNMENT FIX
   ----------------------------------------------------------- */
#services .split-layout-text.content-right {
    text-align: left;
}

/* -----------------------------------------------------------
   SERVICE TITLES — SIZE + MINIMAL HOVER
   ----------------------------------------------------------- */
#services .split-layout-text h3 a {
    color: var(--section-title-color, #0d3c8f);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

#services .split-layout-text h3 a:hover {
    transform: scale(1.03);
    opacity: 0.85;
}

/* Service title size (bigger than before, smaller than section title) */
#services .split-layout-text h3,
#services .split-layout-text h3 * {
    font-size: 1.35rem !important;
    font-weight: 600 !important;
    color: var(--section-title-color, #0d3c8f) !important;
}

/* -----------------------------------------------------------
   MAIN SECTION TITLE (BIGGER)
   ----------------------------------------------------------- */
.section-title {
    font-size: 12rem;
    font-weight: 700;
    color: #0d3c8f;
    margin-bottom: 40px;
    line-height: 1.05;

    /* Animation */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -----------------------------------------------------------
   VIDEO RESPONSIVENESS
   ----------------------------------------------------------- */
.split-layout-visual video {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

/* -----------------------------------------------------------
   TABLET FIX (768px–1024px)
   ----------------------------------------------------------- */
@media (max-width: 1024px) {
    .split-layout-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .split-layout-text {
        text-align: left !important;
    }
}

/* -----------------------------------------------------------
   MOBILE FIX (<768px)
   ----------------------------------------------------------- */
/* ⭐ FINAL FIX: Video must come AFTER text on mobile */
@media (max-width: 768px) {

    /* Switch to FLEX for stable stacking */
    .split-layout-row,
    .split-layout-row.reverse-order {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px;
    }

    /* Force text FIRST, video SECOND on ALL mobile rows */
    .split-layout-text {
        order: 0 !important;
        text-align: left !important;
    }

    .split-layout-visual {
        order: 1 !important;
    }

    .split-layout-visual video {
        width: 100%;
        height: auto;
    }
}
/* Fix CONTACT PROMO layout on mobile */
.promo-container {
    display: flex;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 20px;
}

/* Ensure both blocks take full width */
.promo-text,
.promo-cta {
    width: 100% !important;
}

/* Fix text alignment inside CTA */
.promo-cta h3,
.promo-cta p,
.promo-cta a {
    text-align: center !important;
    display: block;
    width: 100%;
}

/* Fix Google Translate dropdown text wrapping on desktop */
.goog-te-menu-frame {
    width: 100% !important;
    max-width: 300px !important; /* adjust if needed */
}

.goog-te-menu2-item div,
.goog-te-menu2-item span {
    white-space: nowrap !important;
}
/* SERVICE HERO WITH BACKGROUND VIDEO */
.service-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.service-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(40%); /* dim background */
  z-index: 1;
}

.service-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: white;
  text-align: left;
}

.service-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.service-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
}

/* SERVICE DETAILS SECTION */
.service-details {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
}

.service-details h2 {
  margin-top: 60px;
  font-size: 2rem;
  font-weight: 600;
}

.service-details p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  margin-top: 10px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .service-hero {
    height: 60vh;
    padding: 20px;
  }

  .service-content h1 {
    font-size: 2.2rem;
  }

  .service-content p {
    font-size: 1rem;
  }

  .service-details h2 {
    font-size: 1.6rem;
  }

  .service-details p {
    font-size: 1rem;
  }
}
/* Hide Google Translate dropdown and iframe */
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon {
  display: none !important;
}

body {
  top: 0px !important;
}

/* Optional: hide the mini toolbar */
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-text-highlight {
  display: none !important;
}

.goog-te-banner-frame,
.goog-te-gadget,
.goog-te-menu-frame,
.goog-te-balloon-frame,
.goog-te-combo {
  display: none !important;
}

html.translated-ltr body,
html.translated-rtl body {
  top: 40px !important; /* adjust height of Chrome bar */
  position: relative !important;
}

/* Prevent Google Translate from affecting layout */
body {
  top: 0 !important;
  position: relative !important;
  z-index: 0 !important;
}

/* Hide all injected Google Translate UI */
.goog-te-banner-frame,
.goog-te-menu-frame,
.goog-te-balloon-frame,
.goog-te-gadget,
.goog-te-combo,
#goog-gt-tt {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  z-index: -9999 !important;
}

/* Prevent iframe from overlapping header */
iframe.goog-te-banner-frame {
  display: none !important;
  pointer-events: none !important;
  height: 0 !important;
  width: 0 !important;
  position: absolute !important;
  z-index: -9999 !important;
}
/* FORCE DESKTOP HEADER LAYOUT */
@media (min-width: 769px) {
    .mobile-menu-icon {
        display: none !important;
    }

    #mobileMenu {
        display: none !important;
    }

    header nav {
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
    }
}
/* OPTIMIZED DESKTOP HERO TEXT SIZE */
#home #heroTitle {
    font-size: 3rem !important;      /* was 3.8rem */
    font-weight: 700 !important;
    line-height: 1.15 !important;
    margin-bottom: 18px !important;
}

#home #heroSubtitle {
    font-size: 1.2rem !important;    /* was 1.4rem */
    line-height: 1.55 !important;
    max-width: 850px !important;
}

/* WHY VYNTECH — SINGLE ROW, NO SCROLL, SHRUNK CARDS */
.why-grid {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  flex-wrap: nowrap;       /* prevent wrapping */
  overflow: hidden;        /* prevent horizontal scroll */
  max-width: 1200px;       /* fits inside your section */
  margin: 0 auto;
  padding: 20px 0;
}

/* Shrink cards so 5 fit in one row */
.why-item {
  flex: 1;                 /* equal width for all cards */
  min-width: 0;            /* prevents overflow */
  max-width: 220px;        /* shrinks the cards */
  background: #ffffff;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid #d7e3ff;
  box-shadow: 0 4px 14px rgba(30, 58, 138, 0.08);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(30, 58, 138, 0.18);
}

/* Icon + text adjustments for smaller cards */
.why-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.why-item h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.why-item p {
  font-size: 0.85rem;
  line-height: 1.4;
}

.why-subtitle {
  text-align: center !important;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #555;
}
/* MOBILE FIX — allow wrapping + bigger cards */
@media (max-width: 768px) {
  .why-grid {
    flex-wrap: wrap;        /* allow cards to move to next row */
    justify-content: center;
    gap: 16px;
    overflow: visible;      /* allow natural layout */
  }

  .why-item {
    max-width: 45%;         /* two cards per row */
    flex: 0 0 45%;
    padding: 16px;
  }

  .why-icon {
    font-size: 1.6rem;
  }

  .why-item h3 {
    font-size: 0.95rem;
  }

  .why-item p {
    font-size: 0.8rem;
  }
}
/* Scroll reveal base state */
.split-layout-text h3 {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

/* When visible */
.split-layout-text h3.reveal {
  opacity: 1;
  transform: translateY(0);
}
/* CLICKABLE TITLE (COLOR + SLIDE ON HOVER) */
.split-layout-text h3 a {
  text-decoration: none;
  color: #0d3c8f;
  transition: color 0.3s ease, transform 0.3s ease;
}

.split-layout-text h3 a:hover {
  color: #1e5ad6;
  transform: translateX(4px);
}

/* ARROW ATTENTION ANIMATION BELOW TITLE */
.split-layout-text h3 {
  position: relative;
  overflow: visible;
}

/* Hidden by default */
.split-layout-text h3::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  width: 38px;
  height: 38px;
  opacity: 0;
  transform: translateX(-50%) translateY(20px) scale(0.7);
  pointer-events: none;
  z-index: 10;

  /* HIGH‑VISIBILITY ARROW SVG */
  background: url('data:image/svg+xml;utf8,
    <svg width="48" height="48" viewBox="0 0 24 24" fill="none" stroke="%231e5ad6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round">
      <path d="M5 12h14"/>
      <path d="M13 5l7 7-7 7"/>
    </svg>
  ') no-repeat center;
}

/* Trigger animation when title reveals */
.split-layout-text h3.reveal::after {
  animation: arrowFlyIn 2s ease-out forwards;
}

/* ARROW FLY-IN + POINTING ANIMATION */
@keyframes arrowFlyIn {
  0% {
    opacity: 0;
    transform: translateX(-120%) translateY(20px) scale(0.6);
  }
  20% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1.1);
  }
  40% {
    transform: translateX(-45%) translateY(0) scale(1.2); /* nudge */
  }
  55% {
    transform: translateX(-50%) translateY(0) scale(1);
  }
  70% {
    transform: translateX(-48%) translateY(0) scale(1.2); /* second nudge */
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px) scale(0.7);
  }
}

/* BASE HIDDEN STATE FOR STAGGERED REVEAL */
.split-layout-text h3,
.split-layout-text p,
.split-layout-visual video {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

/* STAGGERED REVEAL STATES */
.split-layout-text h3.reveal {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.split-layout-text p.reveal {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

.split-layout-visual video.reveal {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.45s;
}
/* Floating video popup */
#video-popup-preview {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 260px;
  height: 150px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 99999;
}

#video-popup-preview.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

#video-popup-preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}
.vyntech-positioning {
  max-width: 1100px;
  margin: 80px auto 40px;
  padding: 0 20px;
  text-align: center;
}

.vyntech-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 20px;
}

.vyntech-subheading {
  font-size: 1.2rem;
  color: #334155;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.vyntech-pillars {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.pillar {
  max-width: 300px;
  text-align: left;
}

.pillar h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0d3c8f;
  margin-bottom: 10px;
}

.pillar p,
.pillar ul {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
}

.pillar ul {
  padding-left: 20px;
}

.vyntech-summary {
  font-size: 1.1rem;
  color: #334155;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* SIGNAL BAR SECTION */
.vyntech-signalbar {
  padding: 80px 0;
  text-align: center;
}

/* Horizontal bar container */
.signalbar {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-top: 40px;
  border: 1px solid #1f1f1f;
  border-radius: 14px;
  overflow: hidden;
  background: #0d0d0d;
}

/* Each item */
.signal-item {
  flex: 1;
  padding: 28px 24px;
  transition: background 0.3s ease;
}

.signal-item:hover {
  background: #151515;
}

/* Minimal geometric icon */
.signal-icon {
  width: 14px;
  height: 14px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #3a3a3a;
}

/* Divider */
.signal-divider {
  width: 1px;
  background: #1f1f1f;
}

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .signalbar {
    flex-direction: column;
  }
  .signal-divider {
    height: 1px;
    width: 100%;
  }
}
/* COOKIE BAR — FLOATING + TWO‑COLUMN LAYOUT */
.cookie-consent-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to right, #0d3c8f, #0a2a63);
  backdrop-filter: blur(6px);
  color: white;
  padding: 20px;
  font-size: 14px;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.15);
  display: none;
  font-family: Inter, sans-serif;

  /* Two‑column layout */
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* TEXT BLOCK */
.cookie-consent-bar p {
  margin: 0;
  line-height: 1.5;
  max-width: 70%;
  flex: 1;        /* allows text to shrink */
  min-width: 0;   /* prevents overflow */
}

.cookie-consent-bar a {
  color: #ffffff;
  text-decoration: underline;
}

/* BUTTON GROUP — RIGHT SIDE */
.cookie-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: nowrap;
  flex-shrink: 0; /* prevents squeezing */
}

.cookie-buttons button {
  background: #ffffff;
  color: #0d3c8f;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap; /* keeps text on one line */
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100000;
}

.cookie-modal-content {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 14px;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  font-family: Inter, sans-serif;
}

.cookie-modal-content h2 {
  margin-top: 0;
  color: #0d3c8f;
  font-size: 1.6rem;
}

.cookie-option {
  margin: 15px 0;
  font-size: 0.95rem;
  color: #333;
}

.cookie-modal-buttons {
  margin-top: 25px;
  display: flex;
  gap: 10px;
}

.cookie-modal-buttons button {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-modal-buttons button#saveCookieSettings {
  background: #0d3c8f;
  color: white;
}

.cookie-modal-buttons button.secondary {
  background: #e5e7eb;
  color: #333;
}

/* MOBILE OPTIMIZATION FOR COOKIE BAR */
@media (max-width: 768px) {
  .cookie-consent-bar {
    flex-direction: column;       /* stack text + buttons */
    align-items: flex-start;      /* align left */
    gap: 15px;
    padding: 16px;
  }

  .cookie-consent-bar p {
    max-width: 100%;              /* allow full width */
    margin: 0;
  }

  .cookie-buttons {
    width: 100%;                  /* buttons take full width */
    flex-wrap: wrap;              /* allow wrapping */
    justify-content: flex-start;  /* align left */
    gap: 10px;
  }

  .cookie-buttons button {
    flex: 1 1 calc(50% - 10px);   /* two buttons per row */
    min-width: 140px;             /* prevent tiny buttons */
    white-space: nowrap;
  }
}
@keyframes vynbotFadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(20px); }
}

#vyntech-chat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

