/* ===== CSS VARIABLES ===== */
    :root {
      --primary: #014cbf;
      --primary-light: #1565c0;
      --primary-dark: #0a3576;
      --secondary: #fd6220;
      --secondary-light: #fd6220;
      --bg: #ffffff;
      --bg-muted: #f4f6fb;
      --text: #1a2332;
      --text-muted: #5f6d7e;
      --border: #e2e8f0;
      --card: #ffffff;
      --radius: 1rem;
      --shadow: 0 4px 24px rgba(13,71,161,0.08);
      --shadow-lg: 0 12px 40px rgba(13,71,161,0.12);
    }

    /* ===== RESET ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Poppins', sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }
    input, textarea, select { font-family: inherit; }

    /* ===== UTILITY ===== */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
    .text-gradient {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .gradient-primary { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
    .gradient-secondary { background: linear-gradient(135deg, var(--secondary), var(--secondary-light)); }
    .gradient-hero { background: linear-gradient(135deg, #071e3d, var(--primary), var(--primary-light)); }
    .btn {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 0.875rem 2rem; border-radius: 50px;
      font-weight: 600; font-size: 1rem;
      transition: all 0.3s ease;
    }
    .btn-primary { background: linear-gradient(135deg, var(--secondary), var(--secondary-light)); color: #fff; }
    .btn-primary:hover { transform: scale(1.05); box-shadow: 0 0 25px rgba(255,111,0,0.4); }
    .btn-outline {
      border: 2px solid rgba(255,255,255,0.3); color: #fff; background: transparent;
    }
    .btn-outline:hover { background: rgba(255,255,255,0.1); transform: scale(1.05); }
    .section-title { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 700; margin-bottom: 0rem; }
    .section-subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 1rem; }
    .section-bar { width: 5rem; height: 4px; background: var(--secondary); border-radius: 2px; margin: 0 auto; margin-bottom:20px }

    /* ===== SCROLL REVEAL ===== */
    .reveal {
      opacity: 0; transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ===== TOPBAR ===== */
    .topbar {
      background: var(--primary); color: #fff; font-size: 0.85rem; padding: 0.5rem 0;
    }
    .topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
    .topbar-left { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }
    .topbar-left a { display: flex; align-items: center; gap: 0.4rem; color: #fff; transition: color 0.2s; }
    .topbar-left a:hover { color: var(--secondary); }
    .topbar-right { display: flex; gap: 0.75rem; }
    .topbar-right a {
      color: #fff; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
      border-radius: 50%; transition: all 0.2s;
    }
    .topbar-right a:hover { color: var(--secondary); transform: scale(1.15); }

    /* ===== NAVBAR ===== */
    .navbar {
      position: sticky; top: 0; z-index: 100;
      background: rgba(255,255,255,0.7); backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255,255,255,0.2);
      padding: 1rem 0; transition: all 0.3s ease;
    }
    .navbar.scrolled {
      padding: 0.5rem 0;
      background: rgba(255,255,255,0.9);
      box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    }
    .navbar .container { display: flex; justify-content: space-between; align-items: center; }
    .navbar-brand { font-size: 1.5rem; font-weight: 800; }
    .navbar-brand img {
      width: 200px;
    }
    .navbar-brand .q1 { color: var(--primary); }
    .navbar-brand .q2 { color: var(--secondary); }
    .nav-links { display: flex; gap: 2rem; }
    .nav-links a {
      color: var(--text-muted); font-weight: 500; position: relative; transition: color 0.2s;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0; width: 100%; height: 2px;
      background: var(--secondary); transform: scaleX(0); transform-origin: right; transition: transform 0.3s;
    }
    .nav-links a:hover { color: var(--primary); }
    .nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
    .nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; }
    .nav-toggle span { width: 24px; height: 2px; background: var(--text); transition: all 0.3s; display: block; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

    /* ===== HERO ===== */
  
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 700px;
  overflow: hidden;
}
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
      font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  transition: 0.3s;
}

.hero-arrow:hover {
  background: rgba(0,0,0,0.7);
}

.hero-arrow.prev {
  left: 20px;
}

.hero-arrow.next {
  right: 20px;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 25px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.hero-dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background: rgba(255,255,255,0.5);
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.hero-dot.active {
  background: #ff9800;
  width: 28px;
  border-radius: 10px;
}


    /* ===== ABOUT ===== */
    .about { padding: 5rem 0; background: var(--bg-muted); }
    .about-desc {  margin: 0 auto 3rem; text-align: center; }
    .about-desc p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 1rem; }
    .vm-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-bottom: 4rem; max-width: 800px; margin-left: auto; margin-right: auto; }
    .vm-card {
      padding: 2rem; border-radius: var(--radius); background: var(--card);
      box-shadow: var(--shadow); border: 1px solid var(--border);
      transition: all 0.3s;
    }
    .vm-card:hover { box-shadow: var(--shadow-lg); }
    .vm-icon {
      width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.25rem; font-size: 1.5rem; color: #fff;
    }
    .vm-card h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
    .vm-card p { color: var(--text-muted); }
    .features-title { font-size: 1.75rem; font-weight: 700; text-align: center; margin-bottom: 3rem; }
    .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; margin-bottom: 4rem; }
    .feature-card {
      text-align: center; padding: 2rem; border-radius: var(--radius);
      background: var(--card); box-shadow: var(--shadow); border: 1px solid var(--border);
      transition: all 0.3s;
    }
    .feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
    .feature-icon {
      width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.25rem; font-size: 1.75rem; color: #fff;
    }
    .feature-icon img {
        width: 40px;
    }
    .feature-card h4 { font-size: 1.2rem; margin-bottom: 0.75rem; }
    .feature-card p { color: var(--text-muted); font-size: 0.95rem; }
    .counters { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 2rem; text-align: center; }
    .counter-num { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--primary); }
    .counter-label { color: var(--text-muted); font-weight: 500; margin-top: 0.25rem; }

    /* ===== SERVICES ===== */
    .services { padding: 5rem 0; }
    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
    .service-card {
      position: relative; padding: 2rem; border-radius: var(--radius);
      background: rgba(255,255,255,0.7); backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,0.2); box-shadow: var(--shadow);
      transition: all 0.4s; overflow: hidden; cursor: pointer;
    }
    .service-card::before {
      content: ''; position: absolute; inset: 0; border-radius: var(--radius);
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      opacity: 0; transition: opacity 0.3s;
    }
    .service-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); }
    .service-card:hover::before { opacity: 1; }
    .service-card > * { position: relative; z-index: 1; }
    .service-icon {
      width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.5rem; font-size: 1.75rem; color: #fff;
      transition: transform 0.3s;
    }
    .service-card:hover .service-icon { transform: scale(1.1); }
    .service-icon img {
      width: 40px;
    }
    .service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; transition: color 0.3s; }
    .service-card p { color: var(--text-muted); transition: color 0.3s; line-height: 1.7; }
    .service-card:hover h3 { color: #fff; }
    .service-card:hover p { color: rgba(255,255,255,0.8); }

    /* ===== PORTFOLIO ===== */
    .portfolio { padding: 5rem 0; background: var(--bg-muted); }
    .portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
    .portfolio-card {
      position: relative; overflow: hidden;
      
    }
    .portfolio-card img{
      object-fit: cover;
      object-position: top;
      height: 350px;
      width: 100%;
      border-radius: var(--radius); 
      margin-bottom: 10px;
    }
    .portfolio-info h3 { font-size: 1.2rem; font-weight: 700; color: #fff; margin-top: 0.5rem; }

    /* ===== CONTACT ===== */
    .contact { padding: 5rem 0; }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 1000px; margin: 0 auto; }
    .contact-info h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 2rem; }
    .contact-item {
      display: flex; gap: 1rem; align-items: flex-start; padding: 1rem; border-radius: 12px;
      transition: background 0.2s; margin-bottom: 0.5rem;
    }
    .contact-item:hover { background: var(--bg-muted); }
    .contact-item-icon {
      width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; color: #fff; font-size: 1.1rem;
      transition: transform 0.2s;
    }
    .contact-item:hover .contact-item-icon { transform: scale(1.1); }
    .contact-item-label { font-size: 0.85rem; color: var(--text-muted); }
    .contact-item-value { font-weight: 600; }
    .contact-form {
      padding: 2rem; border-radius: var(--radius); background: var(--card);
      box-shadow: var(--shadow-lg); border: 1px solid var(--border);
    }
    .contact-form h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
    .form-group { margin-bottom: 1.25rem; }
    .form-group input, .form-group textarea, .form-group select {
      width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: 8px;
      font-size: 0.95rem; background: var(--bg); color: var(--text);
      transition: border-color 0.2s, box-shadow 0.2s; outline: none;
    }
    .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
      border-color: var(--primary); box-shadow: 0 0 0 3px rgba(13,71,161,0.1);
    }
    .form-group textarea { min-height: 100px; resize: vertical; }
    .btn-submit {
      width: 100%; padding: 0.875rem; border-radius: 12px; font-weight: 600; font-size: 1rem;
      color: #fff; border: none; cursor: pointer;
      transition: all 0.3s;
    }
    .btn-submit:hover { transform: scale(1.02); box-shadow: 0 0 25px rgba(255,111,0,0.4); }

    /* ===== FOOTER ===== */
    .footer { background: linear-gradient(135deg, #071e3d, var(--primary)); color: #fff; }
    .footer-main { padding: 4rem 0; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
    .footer-brand { font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; }
    .footer-brand img {
      width: 200px;
    }
    .footer-brand .q2 { color: var(--secondary); }
    .footer p { color: rgba(255,255,255,1); line-height: 1.7; }
    .footer h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; }
    .footer ul li { margin-bottom: 0.75rem; }
    .footer ul a { color: rgba(255,255,255,1); transition: color 0.2s; }
    .footer ul a:hover { color: var(--secondary); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1); padding: 1.25rem 0;
      text-align: center; color: rgba(255,255,255,0.45); font-size: 0.9rem;
    }

    /* ===== SCROLL TO TOP ===== */
    .scroll-top {
      position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 100;
      width: 48px; height: 48px; border-radius: 50%;
      color: #fff; font-size: 1.25rem; border: none;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 16px rgba(255,111,0,0.3);
      opacity: 0; transform: translateY(16px); pointer-events: none;
      transition: all 0.3s;
    }
    .scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .scroll-top:hover { transform: scale(1.1); box-shadow: 0 0 25px rgba(255,111,0,0.4); }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); padding: 1rem 0; gap: 0; border-top: 1px solid var(--border); }
      .nav-links.open { display: flex; }
      .nav-links a { padding: 0.875rem 1.5rem; }
      .nav-links a::after { display: none; }
      .nav-toggle { display: flex; }
      .contact-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
      .topbar-left { font-size: 0.75rem; gap: 0.75rem; }
      .vm-grid { grid-template-columns: 1fr; }
    }

    /* ===== SVG ICON INLINE HELPER ===== */
    .icon-svg { width: 1em; height: 1em; fill: currentColor; vertical-align: -0.125em; }
    .download-app {
  padding: 40px 0 0;
  background: linear-gradient(135deg, #f96122, #dc5b26, #fd6121);
  color: #fff;
}

.download-app .container {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.download-content {
  flex: 1;
  min-width: 300px;
}

.download-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.download-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.store-buttons img {
  height: 110px;
  transition: 0.3s;
}

.store-buttons img:hover {
  transform: scale(1.08);
}

.download-image {
  flex: 1;
  text-align: center;
  min-width: 300px;
}

.download-image img {
  max-width: 350px;
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .download-app .container {
    flex-direction: column;
    text-align: center;
  }

  .download-image {
    margin-top: 40px;
  }
}        

.app-screens {
  padding:40px 0 80px;
  background: #f8fafc;
  text-align: center;
}

.swiper {
  width: 100%;
  padding: 80px 0;
  overflow: visible !important;
  margin-top: 50px;
}

.swiper-slide {
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
}

.swiper-slide img {
  width: 250px;
  border-radius: 30px;
  transition: 0.4s;
}

.swiper-slide-active img {
  transform: scale(1.15);
} 


