*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: blinkWhatsApp 2.0s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0,0,0,0.35);
}

.whatsapp-icon {
    width: 100px;
    height: 100px;
}

/* Smooth Blink Animation */
@keyframes blinkWhatsApp {
    0% { opacity: 2; }
    50% { opacity: 0.45; }
    100% { opacity: 2; }
}

body{
  background:#ffffff;
  color:#022b36;
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 12px 40px;   /* balanced */
  background: rgb(19,75,144);
  /* overflow: visible;
      position: relative;
      z-index: 10000; */
}

.reveal {
    overflow: visible !important;
    transform: none !important;
}
.navbar .brand-box {
    display: flex;
    align-items: center;
    /* gap: 12px; */
}

.navbar .logo {
    width: 48px;
    height: auto;
}

.brand-text {
    font-size: 25px;
    font-weight: 600;
    color: #ffffff;
    animation: blinkText 1.4s infinite;
}
.vision {
    color: #ffffff;   /* Blue */
}

.tech {
    color: #ff2b2b;   /* Red */
}

/* Soft blinking animation */
@keyframes blinkText {
    0% { opacity: 1; }
    50% { opacity: 0.45; }
    100% { opacity: 1; }
}


/* ================= NAV LINKS ================= */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    width: fit-content;   /* 🔥 CRITICAL */
    margin: 0;
    padding: 0;
}
.nav-links > li {
    flex: 0 0 auto;       /* 🔥 MOST IMPORTANT LINE */
    margin: 0 10px;
    position: relative;
}

/* EACH ITEM */
.nav-links li {
    display: flex;
    align-items: center;
}
/* NAV LINK */
.nav-links a {

    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 8px 10px; 
    display: inline-flex;
    align-items: center;
}

/* HOVER */
.nav-links a:hover {
    opacity: 0.85;
}

.move-right {
    left : 100px;   /* adjust value as needed */
}


/* ================= DROPDOWN ================= */

.dropdown {
    position: relative;
    LEFT: 100PX;
}

.dropdown > a {
    padding-right: 6px;   /* arrow already adds width */
}

.dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 6px;
    background-color: rgb(19,75,144);
    min-width: 80px;
    padding: 8px 0;
    list-style: none;
    border-radius: 6px;
    display: none;
    z-index: 99999;
}

/* DROPDOWN LINKS */
.dropdown-menu li a {
    padding: 10px 16px;
    color: white;
    font-size: 15px;
    font-weight: normal;
    white-space: nowrap;
}

/* DROPDOWN HOVER */
.dropdown-menu li a:hover {
    background-color: rgba(255,255,255,0.18);
}

/* SHOW DROPDOWN */
.dropdown:hover .dropdown-menu {
    display: block;
}


/* ================= HERO SECTION ================= */
.hero {
  width: 100%;
  min-height: 100vh;
  background: #f4f9ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px;
  position: relative;
  overflow: hidden;
}

/* ================= HERO TEXT ================= */
.hero-text {
  text-align: center;
  max-width: 600px;
  margin-left: 45px; 
}

.hero-text h1 {
  font-size: 42px;
  margin-bottom: 20px;

  color: #0f172a;
}

.hero-text p {
  font-size: 20px;
  margin-bottom: 25px;
  color: #334155;
}

/* ================= BUTTONS ================= */
.cta-btn {
  background: #c2185b;
  color: #ffffff;
  padding: 12px 32px;
  font-size: 15px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  margin-top: 25px;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #880e4f;
  transform: scale(1.05);
}

.cta-btn:disabled {
  background: #9e9e9e;
  cursor: not-allowed;
  transform: none;
}

/* Small icon */
/* .btn-icon{
  width:30px;
  height:30px;
} */

/* ================= DEMO BUTTON ================= */
.hero-demo-btn {
  position: absolute;
  top: 120px;
  left: 240px;
  z-index: 10;
}

/* ================= SIDE BUTTON ================= */
.hero-side-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: #c2185b;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 10;
}

.hero-side-btn:hover {
  background: #b91550;
}

/* ================= IMAGE SLIDER (ONLY IMAGE MOVES) ================= */
.hero-image-slider {
  position: relative;
  width: 100%;
  max-width: 550px;
  height: 360px;
}

/* IMAGES */
.slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 35px;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.slide-img a {
  position: absolute;
  inset: 0;
  width: 40px;        /* reduced from 50% */
  height: 80%;       /* reduced from 100% */
  object-fit: cover;
  border-radius: 35px;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  margin: auto;      /* centers it */
}

.slide-img b{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 35px;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
/* ACTIVE IMAGE */
.slide-img.active {
  opacity: 1;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 120px 20px;
  }

  .hero-text h1 {
    font-size: 30px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-image-slider {
    margin-top: 30px;
    height: 280px;
  }

  .hero-demo-btn {
    top: 20px;
    left: 20px;
  }

  .hero-side-btn {
    top: 20px;
    right: 20px;
  }
}


/* HOW IT WORKS */
.how-it-works {
    padding: 70px 30px;
    text-align: center;
    background: #fff;
}

.how-it-works h2 {
    font-size: 38px;
    margin-bottom: 50px;
}

/* CONTAINER */
.hiw-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;   /* IMPORTANT for more steps */
}

/* EACH STEP */
.hiw-step {
    max-width: 260px;
    text-align: center;
}

.hiw-step img {
    width: 110px;
    margin-bottom: 16px;
}

.hiw-step h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.hiw-step p {
    color: #444;
    font-size: 14px;
    line-height: 20px;
}

/* ARROWS */
.hiw-arrow {
    font-size: 32px;
    font-weight: bold;
    color: #000;
}

/* MOBILE FRIENDLY */
@media (max-width: 900px) {
    .hiw-arrow {
        display: none;
    }

    .hiw-container {
        gap: 25px;
    }
}

.header-download-btn {
    background: #d81b60;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    margin-left: 15px;
    white-space: nowrap;
    transition: 0.3s ease;
}

.header-download-btn:hover {
    background: #b91550;
    transform: translateY(-1px);
}



/* FEATURES */
.features{
  padding:60px 50px;
  text-align:center;
}
.features h2{
  font-size:36px;
  margin-bottom:30px;
}
.features-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:18px;
}
.box{
  background:rgb(19,75,144);
  color:white;
  padding:18px;
  border-radius:7px;
  font-size:17px;
  font-weight:bold;
}

/* CONTACT */
.company-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.company-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.company-logo {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.company-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: bold;
}

.company-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.company-card li {
    margin-bottom: 8px;
    font-size: 16px;
}

.company-card a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
}

.company-card .phone {
    font-size: 18px;
    font-weight: bold;
}
#contact h2 {
    text-align: center;
    width: 100%;
    font-size:30px;
}
#contact {
    margin-bottom: 50px; /* adjust 30–80px as you like */
}
.tagline{
  font-size:20px;
  margin-bottom:20px;
}
.cities{
  display:flex;
  justify-content:center;
  gap:45px;
  font-size:22px;
  margin-bottom:20px;
}
.phone{
  font-size:24px;
  font-weight:bold;
  margin-top:8px;
}

/* FOOTER */
.vt-footer {
    background: rgb(19,75,144);
    padding: 01px 30px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
     padding-top: 1px;

}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* LEFT */
.footer-left {
    flex: 1;
}

/* RIGHT MAP */
.footer-map {
    flex: 1;
    display: flex;
    justify-content: flex-end;
     width: 1000px;
}

.footer-map iframe {
    width: 900px;
    height: 220px;
    border-radius: 1px;
    border: 0;
    margin-left: 200px; /* adjust value */
}


.social-title {
    margin-top: 30px;
    font-size: 16px;        /* increase as needed */
    font-weight: 750;
    opacity: 0.8;
    white-space: nowrap;   /* keeps text in one line */
}


.social-icons a {
    color: white;
    font-size: 22px;
    margin-right: 15px;
    transition: 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    opacity: 0.6;
    text-decoration: none;
}

.social-icons {
    /* display: flex; */
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.social-icons img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.social-icons img:hover {
    transform: scale(1.15);
    opacity: 0.85;
}


.footer-menu, .footer-terms {
    display: flex;
    flex-direction: column;
}

.footer-menu h3, .footer-terms h3 {
    margin-bottom: 18px;
    font-size: 20px;
}

.footer-menu a, .footer-terms a {
    color: #ddd;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 15px;
    transition: 0.3s;
}

.footer-menu a:hover, .footer-terms a:hover {
    color: #00e78c;
}

.copyright {
    margin-top: 25px;
    font-size: 16px;        /* increase size as needed */
    opacity: 0.6;
    white-space: nowrap;   /* keep in a single line */
}



/* 🔥 SCROLL FADE-UP ANIMATION */
.reveal{
  opacity:0;
  transform:translateY(50px);
  transition:all 0.9s ease;
}
.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* LOADING POPUP SCREEN */
#loadingScreen {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 450px;                  /* popup width */
    height: 220px;                 /* popup height */
    transform: translate(-50%, -50%);
    background: rgba(240, 239, 239, 0.945);           /* same dark teal */
    border-radius: 18px;           /* round popup */
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 25px;
    z-index: 9999;
    padding: 25px;
}

.loading-text {
    color: rgb(19,75,144);
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}

.loading-bar {
    width: 65%;
    height: 20px;
    border-radius: 20px;
    border: 3px solid rgb(19,75,144);
    overflow: hidden;
}

.loading-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, rgb(19,75,144), teal);
    transition: width 0.05s linear;
}


/* ================= SUBSCRIPTION SECTION ================= */
.subscription-section {
    padding: 60px 20px;
    background: #f6f9fc;
}

/* ======== SUBSCRIPTION TITLE ======== */
.subscription-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 10px;
}

/* ======== ANNUAL / MONTHLY SWITCH ======== */
.toggle-box {
    display: flex;
    justify-content: center;
    margin: 20px 0 40px;
}

.toggle-box button {
    width: 140px;
    padding: 12px;
    border: 2px solid #0a2540;
    background: transparent;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.toggle-box .active {
    background: #0a2540;
    color: #fff;
}

/* ================= PRICING SECTION =================
.pricing-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: auto;
    padding: 20px;
}

/* Dim other cards when one is hovered */
.pricing-section:hover .pricing-card {
    filter: blur(1px) brightness(0.85);
}

/* Restore hovered card */
.pricing-section:hover .pricing-card:hover {
    filter: none;
}

/* ================= PRICING CARD ================= */
.pricing-card {
    background: rgb(19, 75, 144);
    padding: 30px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        filter 0.35s ease;
}

/* Hover – bring to front & enlarge */
.pricing-card:hover {
    transform: scale(1.12);
    z-index: 10;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: -4px;
}

/* ================= LEFT (TOP) PANEL ================= */
.pricing-card .left {
    width: 100%;
    text-align: center;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.pricing-card .left h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.pricing-card .originalPrice {
    font-size: 16px;
    opacity: 0.7;
    margin-bottom: 6px;
    text-decoration: line-through;
}

.pricing-card .price {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* ================= BUTTON ================= */
.pricing-card button {
    padding: 12px 26px;
    background: #ffffff;
    color: #006d6d;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-card button:hover {
    background: #0a2540;
    color: #ffffff;
}

/* ================= RIGHT (FEATURES) PANEL ================= */
.pricing-card .right {
    width: 100%;
    color: #e6f4f4;
}

.pricing-card .right h3 {
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
}

.pricing-card .right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card .right li {
    font-size: 15px;
    padding: 8px 0;
    position: relative;
    padding-left: 22px;
}

.pricing-card .right li::before {
    content: "✔";
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* ================= POPULAR PLAN ================= */
.pricing-card.popular {
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.15);
    z-index: 15;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .pricing-section {
        grid-template-columns: 1fr;
    }

    .pricing-section:hover .pricing-card {
        filter: none;
    }

    .pricing-card:hover {
        transform: scale(1.03);
    }
} */


/* ===== SECTION ===== */
.subscription-section {
    background: #f4f6f9;
    padding: 80px 20px;
}

.subscription-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 50px;
}

/* ===== GRID ===== */
.pricing-grid {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* ===== CARD ===== */
.plan {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
    min-height: 420px;   /* reduced & equal height */
}

/* ===== HOVER EFFECT (FRONT HIGHLIGHT) ===== */
.plan:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 30px 65px rgba(0,0,0,0.25);
    z-index: 5;
}

/* ===== CHEVRON TOP ===== */
.plan-top {
    padding: 22px 20px 50px; /* reduced height */
    color: #fff;
    position: relative;
}

.plan-top::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -32px;
    width: 100%;
    height: 65px;
    background: inherit;
    transform: skewY(-8deg);
}

/* ===== COLORS ===== */
.basic .plan-top { background: #e74c3c; }
.standard .plan-top { background: #2980b9; }
.advanced .plan-top { background: #16a085; }
.premium .plan-top { background: #ae2aeb; }

/* ===== PRICE ===== */
.plan-top h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.75;
    font-size: 13px;
}

.price {
    font-size: 22px;
    font-weight: 700;
    margin-top: 4px;
}

/* ===== FEATURES ===== */
.plan ul {
    list-style: none;
    padding: 45px 22px 18px;
    margin: 0;
    flex-grow: 1;
}

.plan ul li {
    padding: 4px 0;           /* reduced height */
    font-size: 13px;
    line-height: 1.4;
    position: relative;
}

.plan ul li::before {
    content: "✔";
    color: #27ae60;
    margin-right: 8px;
    font-size: 12px;
}

/* ===== BUTTON COMMON ===== */
.plan button {
    margin: 16px;
    padding: 8px 5px;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* ===== DIFFERENT BUTTON COLORS ===== */
.basic button {
    background: #e74c3c;
}

.standard button {
    background: #2980b9;
}

.advanced button {
    background: #16a085;
}

.premium button {
    background: #ae2aeb;
}

/* ===== BUTTON HOVER ===== */
.plan button:hover {
    filter: brightness(1.15);
    transform: scale(1.05);
}

/* ===== POPULAR ===== */
/* .plan.popular {
    transform: translateY(-25px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.25);
} */

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    /* .plan.popular {
        transform: none;
    } */
}
/* ===== BLUR OTHER CARDS WHEN ONE IS HOVERED ===== */
.pricing-grid:hover .plan {
    filter: blur(3px);
    opacity: 0.5;
    transform: scale(0.95);
}

/* ===== KEEP HOVERED CARD CLEAR & BIG ===== */
.pricing-grid .plan:hover {
    filter: blur(0);
    opacity: 1;
    transform: translateY(-14px) scale(1.06);
    box-shadow: 0 35px 75px rgba(0,0,0,0.35);
    z-index: 10;
}
/* ===== QR POPUP ===== */
.qr-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(5px);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.qr-box {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  width: 320px;
  text-align: center;
  position: relative;
  animation: pop 0.3s ease;
}

.qr-img {
  width: 220px;
  margin: 15px 0;
}

.qr-close {
  position: absolute;
  top: -40px;
  right: -10px;
  font-size: 42px;
  color: white;
  cursor: pointer;
}
#qrAmount {
  font-size: 18px;
  font-weight: bold;
  color: #c2185b;
  margin-bottom: 10px;
}
