*{
  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 */
.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 40px;
  background:rgb(19,75,144);
  height: 60px;
}
.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{
  list-style:none;
  display:flex;
  gap:25px;
}
.nav-links a{
  text-decoration:none;
  font-size:16px;
  color:white;
  font-weight:bold;
}
.nav-links a:hover{
  opacity:.7;
}

/* HERO */
.hero{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:90px 70px;
  background:rgb(244, 249, 255);
  flex-wrap:wrap;
  position: relative;

}
.hero-text{
  /* max-width:600px; */
  text-align: center;
}
.hero-text h1{
  font-size:42px;
  margin-bottom:20px;
}
.hero-text p{
  font-size:20px;
  margin-bottom:25px;
}
.cta-btn {
    background: #c2185b; /* cherry color */
    color: white;
    padding: 12px 32px;
    font-size: 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 25px;
    display: inline-block;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #880e4f; /* darker cherry */
    transform: scale(1.05);
}
.hero-side-btn {
    position: absolute;
    top: 15px;              /* adjust vertically */
    right: 20px;             /* adjust horizontally */
    background: #c2185b;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;    
    text-decoration: none;
    box-shadow: 0 8px 20px;
    transition: 0.3s ease;
    z-index: 10;
}

.hero-side-btn:hover {
    background: #b91550;
    transform: translateY(-2px);
}

.hero-demo-btn {
    position: absolute;
    top: 90px;       /* vertical position */
    left: 250px;      /* horizontal position */
    z-index: 10;
    padding: 12px 20px;
    font-weight: 600;
}
/* HERO IMAGE BOX */
.hero-img{
  width:100%;
  max-width:550px;
  height:auto;
  border-radius:35px;
  object-fit:cover;
}

/* 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: 40px 80px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
     padding-top: 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
}

.company-name {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.social-title {
    margin-top: 25px;
    font-size: 14px;
    opacity: 0.8;
}

.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: 15px;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.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: 13px;
    opacity: 0.6;
}


/* 🔥 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;
}


