/* =====================================================
   HMS DESIGN SYSTEM – COLOR THEME
   Brand: Techinnovation App (HMS)
===================================================== */

:root{

  /* ===============================
     PRIMARY BRAND COLORS
  =============================== */

  --hms-primary: #0b5ed7;          /* Primary Blue (Trust) */
  --hms-primary-dark: #083d8c;     /* Deep Navy */
  --hms-primary-light: #eaf2ff;    /* Soft Blue BG */

  --hms-accent: #00e5c4;           /* Teal / Cyan Accent */
  --hms-accent-dark: #00bfa6;
  --hms-accent-soft: #dffcf7;

  --hms-highlight: #ff6a00;        /* Orange CTA / Highlights */

  /* ===============================
     HERO / GRADIENT SYSTEM
  =============================== */

  --hms-hero-bg: linear-gradient(
    135deg,
    #061b2e 0%,
    #0b3558 45%,
    #0a4b78 100%
  );

  --hms-glass-bg: rgba(255,255,255,.08);
  --hms-glass-border: rgba(255,255,255,.15);

  /* ===============================
     TEXT COLORS
  =============================== */

  --hms-text-white: #ffffff;
  --hms-text-light: #d6e4ff;
  --hms-text-muted: #9bb3d1;
  --hms-text-dark: #1c2b3a;
  --hms-text-grey: #555555;

  /* ===============================
     BACKGROUND COLORS
  =============================== */

  --hms-bg-white: #ffffff;
  --hms-bg-light: #f7fbff;
  --hms-bg-soft: #f1f6ff;
  --hms-bg-dark: #061b2e;

  /* ===============================
     BORDER & SHADOW
  =============================== */

  --hms-border-light: #e6eef8;
  --hms-border-accent: rgba(0,229,196,.4);

  --hms-shadow-sm: 0 10px 25px rgba(0,0,0,.08);
  --hms-shadow-md: 0 25px 60px rgba(0,0,0,.12);
  --hms-shadow-lg: 0 40px 120px rgba(0,0,0,.25);

  /* ===============================
     BUTTON COLORS
  =============================== */

  --hms-btn-primary-bg: var(--hms-accent);
  --hms-btn-primary-text: #002b26;

  --hms-btn-secondary-bg: transparent;
  --hms-btn-secondary-text: var(--hms-text-white);
  --hms-btn-secondary-border: rgba(255,255,255,.4);

  /* ===============================
     STATUS COLORS
  =============================== */

  --hms-success: #16c784;
  --hms-warning: #ffb703;
  --hms-danger: #e63946;
}

/* Common Global Polish */
.btn-orange-premium {
  background-color: #0f172a !important;
  border: none;
}

.mega-label {
  color: #0f172a; /* Section titles in menu */
}

.svg-icon-box {
  background-color: var(--hms-icon-glow);
  color: #0f172a;
}
body { font-family: 'Plus Jakarta Sans', sans-serif; }

/* --- NAV POLISH --- */
.navbar { height: 85px; }

/* Double Arrow Kill Switch */
.dropdown-toggle::after { display: none !important; }

.premium-nav-link {
  display: flex !important;
  align-items: center;
  gap: 6px;
  color: var(--dark) !important;
  font-size: 15px;
  font-weight: 600;
  transition: 0.2s ease;
}

.nav-arrow-svg {
  transition: transform 0.3s ease;
  opacity: 0.5;
}

.dropdown:hover .nav-arrow-svg {
  transform: rotate(180deg);
  color: var(--primary);
  opacity: 1;
}

/* --- MEGA MENU WRAPPER --- */
.mega-wrapper {
  width: 100%;
  left: 0;
  right: 0;
  border-radius: 0 0 32px 32px;
  box-shadow: var(--premium-shadow);
  padding: 20px 0;
  /* Animation */
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown-mega:hover .mega-wrapper {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mega-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 20px;
}

/* --- SVG ICON BOXES --- */
.mega-link-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-radius: 16px;
  text-decoration: none;
  transition: 0.3s;
  margin-bottom: 8px;
}

.mega-link-item:hover {
  background: #f8fafc;
  transform: translateX(5px);
}

.svg-icon-box {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.orange-tint { background: #fff7ed; color: #f97316; }
.blue-tint { background: #eff6ff; color: #3b82f6; }
.purple-tint { background: #faf5ff; color: #a855f7; }
.green-tint { background: #f0fdf4; color: #22c55e; }

.mega-text-content strong { display: block; font-size: 14.5px; color: var(--dark); margin-bottom: 2px; }
.mega-text-content span { font-size: 12.5px; color: var(--muted); }

/* --- BUTTONS --- */
.btn-orange-premium {
  background: var(--primary);
  color: white !important;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 700;
  border: none;
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
  transition: 0.3s;
}

.btn-orange-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(249, 115, 22, 0.4);
}

.login-link { color: var(--dark); font-weight: 700; text-decoration: none; transition: 0.2s; }
.login-link:hover { color: var(--primary); }

.highlight-card {
  background: linear-gradient(135deg, #f97316, #fb923c);
  border-radius: 20px; padding: 25px; color: white; height: 100%;
}



/* 1. DOUBLE ARROW KILLER - Isse arrow fix ho jayega */
.dropdown-toggle::after {
    display: none !important;
    content: none !important;
}

/* 2. PREMIUM ALIGNMENT - Screenshot jaisa gap lane ke liye */
.navbar {
    height: 85px;
    background: #fff !important;
}

.nav-link {
    display: flex !important;
    align-items: center;
    gap: 8px;
    font-weight: 700 !important;
    color: #0f172a !important; /* Dark Navy for Hospital Trust */
}

/* 3. MEGA MENU BOX - Isko clean white aur rounded banane ke liye */
.mega-wrapper {
    background: #ffffff !important;
    border-radius: 24px !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    box-shadow: 0 40px 100px rgba(0,0,0,0.12) !important;
    padding: 30px !important;
    margin-top: 5px !important;
}

/* 4. HOSPITAL THEME COLORS (SVG & TEXT) */
.mega-link-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 15px;
    text-decoration: none;
    transition: 0.3s;
}

.mega-link-item:hover {
    background-color: #f8fafc !important; /* Light blue tint on hover */
}

/* Icons Box - Hospital Colors */
.svg-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff7ed !important; /* Soft medical tint */
    color: #f97316 !important; /* Action Orange */
}

/* Titles inside menu */
.mega-label {
    color: #f97316 !important;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}







 /* =====================================================
   HERO – PREMIUM ENTERPRISE (EDUSATHI)
===================================================== */

/* ===============================
   HMS HERO SECTION
================================ */

.hms-hero{
  padding:140px 0 100px;
  background:linear-gradient(135deg,#071c2f,#0b3c5d);
  color:#ffffff;
  overflow:hidden;
}

.hero-badge{
  display:inline-block;
  background:rgba(0,229,195,.15);
  color:#00e5c3;
  padding:6px 14px;
  border-radius:20px;
  font-weight:600;
  margin-bottom:15px;
}

.hero-heading{
  font-size:42px;
  font-weight:700;
  line-height:1.25;
}

.hero-subtext{
  font-size:17px;
  color:#dbe9f5;
  max-width:620px;
}

.hero-actions{
  margin-top:30px;
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.hero-btn-primary{
  background:#00e5c3;
  color:#003b36;
  padding:14px 28px;
  border-radius:30px;
  font-weight:600;
  text-decoration:none;
}

.hero-btn-outline{
  border:1px solid rgba(255,255,255,.4);
  color:#fff;
  padding:14px 28px;
  border-radius:30px;
  text-decoration:none;
}

.hero-stats{
  margin-top:40px;
  display:flex;
  gap:30px;
  flex-wrap:wrap;
}

.stat-item strong{
  font-size:22px;
  display:block;
}

.stat-item span{
  font-size:14px;
  color:#cfe6ff;
}

/* ===============================
   HERO SVG
================================ */

.hero-hms-visual{
  max-width:520px;
  margin:auto;
}

.hms-hero-svg{
  width:100%;
  height:auto;
}

.hms-hero-svg rect,
.hms-hero-svg circle,
.hms-hero-svg path,
.hms-hero-svg line{
  fill:none;
  stroke:#00e5c3;
  stroke-width:2.5;
}

/* Background */
.bg-pulse{
  stroke:#1e90ff;
  opacity:.4;
  animation:scalePulse 6s ease-in-out infinite;
}

/* Hospital */
.hospital{
  animation:floatUp 5s ease-in-out infinite;
}

/* Doctor */
.doctor{
  stroke:#ffffff;
  animation:floatSide 4.5s ease-in-out infinite;
}

/* Heartbeat */
.heartbeat{
  stroke:#ff4d6d;
  stroke-width:3;
  stroke-linecap:round;
  stroke-linejoin:round;
  animation:heartbeat 2s infinite;
}

/* Data */
.data-nodes circle{
  fill:#00e5c3;
  stroke:none;
  animation:blink 3s infinite;
}
.data-nodes circle:nth-child(2){animation-delay:.6s}
.data-nodes circle:nth-child(3){animation-delay:1.2s}

/* Animations */
@keyframes floatUp{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-12px)}
}

@keyframes floatSide{
  0%,100%{transform:translateX(0)}
  50%{transform:translateX(10px)}
}

@keyframes scalePulse{
  0%,100%{transform:scale(1);opacity:.35}
  50%{transform:scale(1.08);opacity:.6}
}

@keyframes blink{
  0%,100%{opacity:.4}
  50%{opacity:1}
}

@keyframes heartbeat{
  0%,100%{stroke-dasharray:0,100}
  50%{stroke-dasharray:40,100}
}

/* MOBILE */
@media(max-width:768px){
  .hero-heading{font-size:32px}
  .hero-hms-visual{margin-top:30px}
}





/* ===============================
   HMS MODULES SECTION
================================ */
.hms-section {
  background: #f4f7fa;
  padding: 60px 0;
}

.hms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 20px;
}

/* Card ko 3D look dene ke liye */
.hms-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Soft Shadow */
  transition: all 0.3s ease-in-out;
  border: 1px solid #edf2f7;
}

/* 3D Floating Icon Box */
.hms-icon-3d {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Ye hai 3D effect: Double shadow */
  box-shadow: 8px 8px 15px #d1d9e6, -8px -8px 15px #ffffff;
  transition: 0.3s;
}

.hms-icon-3d svg {
  width: 35px;
  height: 35px;
  color: #204bc2; /* Orange Theme */
}

/* Hover par 3D Lift */
.hms-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hms-card:hover .hms-icon-3d {
  background: #204bc2;
  transform: scale(1.1);
}

.hms-card:hover .hms-icon-3d svg {
  color: #fff;
}

.hms-card h4 {
  color: #2d3748;
  margin-bottom: 10px;
  font-weight: 700;
}

.hms-card p {
  color: #718096;
  font-size: 14px;
}





.features-section {
    padding: 60px 20px;
    width: 100%;
   
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 50px;
}

.section-title span {
    color: #204bc2; /* Accent Color */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* 3D Card Styling */
.feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    overflow: hidden;
}

/* 3D Hover Effect */
.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Active/Highlighted Card */
.feature-card.active {
    border: 2px solid #204bc2;
    box-shadow: 0 15px 35px rgba(255, 126, 95, 0.2);
}

/* Icon Box Design */
.icon-box {
    width: 80px;
    height: 80px;
    background: #fff5f2;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: #204bc2;
    transition: 0.4s;
    box-shadow: inset 0 5px 10px rgba(0,0,0,0.05);
}

.feature-card:hover .icon-box {
    background: #204bc2;
    color: #fff;
    transform: rotateY(360deg); /* 3D Rotation */
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #2d3436;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.95rem;
    color: #636e72;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
}






/* =====================================================
   
===================================================== */


/* ===== HMS CAPABILITY STACK ===== */

/* =====================================================
   HMS CAPABILITY STACK – FINAL CSS
===================================================== */

.hms-stack{
  background:#ffffff;
  padding:120px 0;
}

/* ---------- HEADER ---------- */

.hms-stack-head{
  text-align:center;
  max-width:900px;
  margin:0 auto 70px;
}

.hms-stack-tag{
  font-size:14px;
  font-weight:600;
  color:#0b5ed7;
}

.hms-stack-head h2{
  font-size:42px;
  font-weight:800;
  margin-top:10px;
}

.hms-stack-head h2 span{
  color:#ff6a00;
}

/* ---------- LAYOUT ---------- */

.hms-stack-wrap{
  display:grid;
  grid-template-columns:420px 1fr;
  gap:60px;
  align-items:flex-start;
}

/* ---------- LEFT LIST ---------- */

.hms-stack-list{
  position:relative;
  padding-left:20px;
  border-left:3px solid #eef2f7;
}

.hms-stack-item{
  display:flex;
  gap:18px;
  padding:22px 24px;
  margin-bottom:18px;
  border-radius:14px;
  cursor:pointer;
  transition:all .3s ease;
}

.hms-stack-item:hover{
  background:#f7fbff;
}

.hms-stack-item.active{
  background:#fff3ed;
  box-shadow:inset 4px 0 0 #ff6a00;
}

.hms-stack-no{
  min-width:34px;
  font-weight:700;
  color:#ff6a00;
}

.hms-stack-item h4{
  font-size:16px;
  font-weight:700;
  margin-bottom:4px;
}

.hms-stack-item p{
  font-size:14px;
  color:#555;
  margin:0;
}

/* ---------- RIGHT PANEL ---------- */

.hms-stack-content{
  background:#f9fbff;
  border-radius:24px;
  padding:60px;
  box-shadow:0 30px 80px rgba(0,0,0,.08);
  overflow:hidden;
}

/* PANEL VISIBILITY (IMPORTANT FIX) */
.hms-stack-panel{
  display:none !important;
}

.hms-stack-panel.active{
  display:block !important;
  animation:hmsFade .35s ease;
}

/* ---------- INNER CONTENT ---------- */

.hms-stack-inner{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:40px;
  align-items:center;
}

.hms-stack-text{
  max-width:520px;
}

.hms-stack-text h3{
  font-size:26px;
  font-weight:700;
  margin-bottom:12px;
}

.hms-stack-text p{
  font-size:16px;
  color:#555;
}

/* ---------- IMAGE ---------- */

.hms-stack-image{
  text-align:right;
}

.hms-stack-image img{
  display:block;
  width:100%;
  max-width:340px;
  border-radius:18px;
  box-shadow:0 25px 60px rgba(0,0,0,.12);
}

/* ---------- ANIMATION ---------- */

@keyframes hmsFade{
  from{
    opacity:0;
    transform:translateY(10px);
  }
  to{
    opacity:1;
    transform:none;
  }
}

/* ---------- RESPONSIVE ---------- */

@media(max-width:991px){

  .hms-stack-wrap{
    grid-template-columns:1fr;
  }

  .hms-stack-content{
    padding:40px;
    margin-top:40px;
  }

  .hms-stack-inner{
    grid-template-columns:1fr;
  }

  .hms-stack-image{
    text-align:center;
    margin-top:30px;
  }
}



/* =====================================================
   HMS PRICING
===================================================== */

.hms-pricing{
  background:#f7fbff;
  padding:120px 0;
}

/* HEADER */
.hms-pricing-head{
  text-align:center;
  max-width:900px;
  margin:0 auto 70px;
}

.hms-pricing-head h2{
  font-size:42px;
  font-weight:800;
}

.hms-pricing-head h2 span{
  color:#ff6a00;
}

.hms-pricing-head p{
  margin-top:12px;
  font-size:16px;
  color:#666;
}

/* GRID */
.hms-pricing-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:36px;
}

/* CARD */
.pricing-card{
  background:#ffffff;
  border-radius:24px;
  padding:48px 36px;
  box-shadow:0 25px 60px rgba(0,0,0,.08);
  text-align:center;
  position:relative;
  transition:.35s ease;
}

.pricing-card:hover{
  transform:translateY(-10px);
}

.pricing-card h4{
  font-size:22px;
  font-weight:700;
  margin-bottom:6px;
}

.pricing-sub{
  font-size:14px;
  color:#666;
  margin-bottom:20px;
}

/* PRICE */
.pricing-price{
  font-size:40px;
  font-weight:800;
  margin-bottom:28px;
  color:#0b5ed7;
}

.pricing-price span{
  font-size:16px;
  font-weight:600;
}

.pricing-price.custom{
  font-size:28px;
}

/* FEATURES */
.pricing-features{
  list-style:none;
  padding:0;
  margin:0 0 32px;
}

.pricing-features li{
  margin-bottom:12px;
  font-size:15px;
  color:#444;
}

/* BUTTON */
.pricing-btn{
  display:inline-block;
  padding:14px 32px;
  border-radius:40px;
  background:#eaf2ff;
  color:#0b5ed7;
  font-weight:700;
  text-decoration:none;
  transition:.3s ease;
}

.pricing-btn:hover{
  background:#d8e6ff;
}

.pricing-btn.primary{
  background:#ff6a00;
  color:#ffffff;
}

.pricing-btn.primary:hover{
  background:#e55d00;
}

/* POPULAR */
.pricing-card.popular{
  border:2px solid #ff6a00;
  transform:scale(1.04);
}

.popular-badge{
  position:absolute;
  top:-14px;
  left:50%;
  transform:translateX(-50%);
  background:#ff6a00;
  color:#ffffff;
  padding:6px 16px;
  border-radius:20px;
  font-size:12px;
  font-weight:700;
}

/* NOTE */
.pricing-note{
  text-align:center;
  margin-top:40px;
  font-size:14px;
  color:#777;
}

/* RESPONSIVE */
@media(max-width:768px){
  .pricing-card.popular{
    transform:none;
  }
}





/* =====================================================
   WHATSAPP CHAT FLOATING BUTTON
===================================================== */

/* =====================================================
   FINAL CTA – HMS
===================================================== */

.hms-cta{
  background:linear-gradient(135deg,#0b5ed7,#083d8c);
  padding:120px 0;
  color:#ffffff;
}

.hms-cta-box{
  max-width:1000px;
  margin:0 auto;
  background:rgba(255,255,255,.08);
  border-radius:28px;
  padding:80px 60px;
  text-align:center;
  box-shadow:0 40px 120px rgba(0,0,0,.25);
  backdrop-filter:blur(6px);
}

/* TEXT */
.hms-cta-content h2{
  font-size:44px;
  font-weight:800;
  margin-bottom:16px;
}

.hms-cta-content h2 span{
  color:#ffb703;
}

.hms-cta-content p{
  font-size:18px;
  max-width:720px;
  margin:0 auto 36px;
  color:#eaf2ff;
}

/* BUTTONS */
.hms-cta-actions{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.btn-cta-primary{
  background:#ff6a00;
  color:#ffffff;
  padding:16px 34px;
  border-radius:40px;
  font-size:16px;
  font-weight:700;
  text-decoration:none;
  transition:.3s ease;
}

.btn-cta-primary:hover{
  background:#e55d00;
}

.btn-cta-secondary{
  background:transparent;
  color:#ffffff;
  padding:16px 34px;
  border-radius:40px;
  font-size:16px;
  font-weight:700;
  text-decoration:none;
  border:2px solid rgba(255,255,255,.4);
  transition:.3s ease;
}

.btn-cta-secondary:hover{
  background:rgba(255,255,255,.15);
}

/* NOTE */
.hms-cta-note{
  margin-top:28px;
  font-size:14px;
  color:#d6e4ff;
}

/* RESPONSIVE */
@media(max-width:768px){
  .hms-cta-box{
    padding:60px 30px;
  }

  .hms-cta-content h2{
    font-size:34px;
  }

  .hms-cta-content p{
    font-size:16px;
  }
}



.hms-footer {
  background-color: #0f172a;
  color: #ffffff;
  padding: 80px 0 30px 0;
  font-family: 'Inter', -apple-system, sans-serif;
  position: relative;
  overflow: hidden;
}

/* Upgraded SVG Background Illustration */
.footer-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm56-76c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zm-45 37c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6z' fill='%2338bdf8' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.footer-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}

/* Quote Section Upgrade */
.footer-quote {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 60px;
  color: #f1f5f9;
}

.footer-quote span {
  color: #38bdf8;
  font-weight: 600;
}

/* Grid Layout */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 50px;
}

.footer-col h4 {
  color: #38bdf8;
  font-size: 1.1rem;
  margin-bottom: 25px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: -8px;
  width: 30px; height: 2px;
  background: #38bdf8;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 15px; }

.footer-col ul li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #fff;
  transform: translateX(8px);
  display: inline-block;
}

/* App Buttons Styling */
.app-text { font-size: 0.9rem; color: #94a3b8; margin-bottom: 15px; }
.store-buttons { display: flex; flex-direction: column; gap: 12px; }
.store-buttons img { width: 140px; filter: grayscale(0.2); transition: 0.3s; }
.store-buttons img:hover { filter: grayscale(0); transform: translateY(-3px); }

/* USP Icons Upgrade (Glassmorphism) */
.footer-usp {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
}

.hms-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 150px;
}

.icon-circle {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
}

.hms-icon:hover .icon-circle {
  background: #38bdf8;
  transform: rotateY(180deg);
}

.hms-icon svg {
  width: 28px; height: 28px;
  stroke: #fff; stroke-width: 1.5; fill: none;
}

.hms-icon span { font-size: 0.85rem; font-weight: 500; color: #cbd5e1; }

/* Bottom Copyright */
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  font-size: 0.85rem;
  color: #64748b;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container { grid-template-columns: 1fr 1fr; }
  .footer-quote { font-size: 1.2rem; }
  .hms-icon { min-width: 45%; }
}













