/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease; }
  .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
  .owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
      transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }
  /* Pricing */
.pricing{display:grid; grid-template-columns:repeat(3,1fr); gap:1rem}
    @media (max-width:900px){.pricing{grid-template-columns:1fr;}}
    .price{position:relative; overflow:hidden}
    .price .ribbon{position:absolute; top:16px; right:-40px; rotate:35deg; background:linear-gradient(90deg,var(--brand),var(--accent)); color:#001018; font-weight:800; padding:.3rem 2.5rem}
    .price h3{margin:.2rem 0}
    .price ul{padding-left:1rem}
/* Cards */
    .grid{display:grid; gap:1rem}
    .grid-3{grid-template-columns:repeat(3, 1fr)}
    .grid-2{grid-template-columns:repeat(2, 1fr)}
    @media (max-width:900px){.grid-3{grid-template-columns:repeat(2,1fr)}.grid-2{grid-template-columns:1fr}}
    @media (max-width:580px){.grid-3{grid-template-columns:1fr}}
    .card{background:var(--card); border:1px solid rgba(148,163,184,.12); border-radius:var(--radius-xl); padding:1.1rem}
    .card:hover{box-shadow:var(--shadow-xl); transform:translateY(-2px)}
    /* Animations */
    .fade-up{opacity:0; transform:translateY(10px); animation:fadeUp .7s ease forwards}
    @keyframes fadeUp{to{opacity:1; transform:none}}
     /* Utilities */
    .hidden{display:none !important}
    .center{text-align:center}
    .muted{color:var(--muted)}
    .chip{display:inline-flex; align-items:center; gap:.4rem; padding:.2rem .55rem; border-radius:999px; background:rgba(148,163,184,.12); font-size:.8rem}
    .divider{border-top:1px dashed rgba(148,163,184,.2); margin:1rem 0}
 .container{width:min(1200px, 92vw); margin-inline:auto}
    .btn{display:inline-flex; align-items:center; gap:.6rem; padding:.85rem 1.15rem; border-radius:999px; font-weight:600; border:1px solid transparent; transition:transform .15s ease, box-shadow .2s ease, background .2s ease; cursor:pointer}
    .btn-primary{background:linear-gradient(90deg,var(--brand),var(--brand-2)); color:#001018; box-shadow:0 8px 18px rgba(14,165,233,.35)}
    .btn-primary:hover{transform:translateY(-1px)}
    .btn-ghost{background:rgba(148,163,184,.08); border-color:rgba(148,163,184,.25)}
    .tag{display:inline-block; padding:.35rem .7rem; border-radius:999px;
   /* Marquee */
    .marquee{overflow:hidden; mask-image:linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent)}
    .marquee-track{display:flex; gap:3rem; padding:1rem 0; animation:scroll 30s linear infinite}
    .logo-chip{padding:.6rem .9rem; border-radius:999px; background:rgba(148,163,184,.08); border:1px solid rgba(148,163,184,.16)}
    @keyframes scroll{to{transform:translateX(-50%)}}
     /* Sections */
    section{padding:clamp(2.5rem,6vw,4.5rem) 0}
    .section-head{display:flex; justify-content:space-between; align-items:end; gap:1rem; margin-bottom:1.5rem}
    .section-head h2{font:700 clamp(1.4rem,3vw,2rem) Poppins, Inter, sans-serif}
    .kicker{color:var(--muted)}
    }
    :root{
      --bg:#0b1020; /* deep navy */
      --card:#ffffff; /* slate-900 */
    --muted:#94a3b8; /* slate-400 */}
    /* Keep the logo within navbar height */
.header-area .logo img {
  max-height: 80px;  /* Adjust this to match your header height */
  height: auto;
  width: auto;
  display: block;
}

/* Ensure the logo and menu are aligned vertically */
.header-area .main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-area .logo {
  display: flex;
  align-items: center;
}
.changing-words {
  color: #ff4500; /* highlight color */
  font-weight: bold;
  display: inline-block;
  position: relative;
  min-width: 120px; /* prevents layout shift */
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.changing-words::after {
  content: "|";
  animation: blink 0.7s infinite;
  position: absolute;
  right: -10px;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}
.last-thumb a {
  color: black;        /* make text black */
  text-decoration: none; /* remove underline */
}

.last-thumb a:hover {
  color: #ff6600; /* optional hover color */
}
.plans {
  padding: 80px 0;
  background: #fafafa;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-head h2 {
  font-size: 32px;
  font-weight: 700;
}

.section-head .highlight {
  color: #ff5722;
}

.pricing-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.featured {
  border: 2px solid #ff5722;
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.pricing-card .price {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing-card .price span {
  font-size: 14px;
  color: #888;
}

.pricing-card .features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.pricing-card .features li {
  margin: 10px 0;
  font-size: 15px;
}

.pricing-card .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  border-radius: 6px;
  background: #ff5722;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.pricing-card .btn:hover {
  background: #e64a19;
}
.plans .card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
}
.plans .card h4 {
  margin-bottom: 12px;
  font-weight: 600;
}
.qr-code {
  display: none;
  margin-top: 12px;
  text-align: center;
}
.qr-code img {
  max-width: 120px;
  border: 2px solid #eee;
  border-radius: 8px;
  padding: 6px;
}
.btn-qr {
  margin-top: 12px;
  padding: 8px 14px;
  border: none;
  background: #2563eb;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.btn-qr:hover {
  background: #1e40af;
}
.qr-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.qr-modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  animation: fadeIn 0.3s ease;
  max-width: 300px;
  width: 90%;
}

.qr-modal-content img {
  max-width: 200px;
  margin-top: 10px;
  border-radius: 8px;
  border: 2px solid #eee;
}

.qr-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 22px;
  cursor: pointer;
  color: #333;
}

@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}

.btn-qr {
  margin-top: 12px;
  padding: 8px 14px;
  border: none;
  background: #2563eb;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.btn-qr:hover {
  background: #1e40af;
}
.card .price {
  font-size: 1.6rem;       /* make it bigger */
  font-weight: bold;       /* bold for emphasis */
  color: #e63946;          /* standout color (red shade, change as you like) */
  margin: 10px 0;          /* spacing around price */
}

.card .price span {
  font-size: 0.9rem;       /* smaller for "/month" */
  font-weight: normal;
  color: #555;             /* muted color */
}
/* Pricing Cards Container */
.cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* allows wrapping on small screens */
}

/* Card Styling */
.card {
  width: 260px;              /* fixed width */
  height: 360px;             /* fixed height */
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* spaces content evenly */
  transition: transform 0.3s ease;
}

/* Hover effect */
.card:hover {
  transform: translateY(-6px);
}

/* Title */
.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: bold;
}

/* Price */
.card .price {
  color: #e63946;
  font-size: 1.6rem;
  font-weight: bold;
}

.card .price span {
  font-size: 0.9rem;
  color: #777;
}

/* Features */
.card p {
  font-size: 0.95rem;
  color: #555;
  margin: 6px 0;
  line-height: 1.4;
  flex-grow: 1; /* keeps button at bottom */
}

/* Button */
.card .btn-qr {
  background: #2563eb;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}

.card .btn-qr:hover {
  background: #1d4ed8;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  min-height: 380px;          /* fixed height */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* button stays at bottom */
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 260px;           /* all cards same width */
  display: flex;
  
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  min-height: 380px;         /* consistent height */
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
