
/* Devesh HRMS - Responsive site (inspired by SaaS HRMS websites) */
/* Fonts */
@font-face {
  font-family: 'InterVar';
  src: local('Inter'), local('Segoe UI'), local('Roboto');
  font-display: swap;
}
:root{
  --bg: #ffffff;
  --muted: #f8fafc;
  --ink: #0f172a;
  --ink-2:#334155;
  --primary:#4f46e5;
  --primary-2:#6366f1;
  --accent:#06b6d4;
  --ring: rgba(79,70,229,.35);
  --card:#ffffff;
  --border:#e5e7eb;
  --shadow: 0 10px 30px rgba(2,6,23,.08);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Inter, InterVar, "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
.container{
  max-width:1200px;
  margin-inline:auto;
  padding:0 20px;
}

/* Navbar */
.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: saturate(1.2) blur(8px);
  background: color-mix(in oklab, #ffffff 70%, #ffffff 70%);
  border-bottom:1px solid var(--border);
}
.navbar{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--ink)}
.brand img{height:36px; width:auto;}
.brand strong{font-size:18px}
.nav-links{display:flex; align-items:center; gap:20px}
.nav-links a{
  text-decoration:none; color:var(--ink-2); font-weight:600; padding:8px 10px; border-radius:8px;
}
.nav-links a:hover{background:var(--primary);
color: white;}
.cta{
  display:flex; gap:10px; align-items:center;
}
/* Base Button Styles */
.btn {
  display: inline-block;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

/* Primary Button */
.btn.primary {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border: none;
}

.btn.primary:hover {
  filter: brightness(1.1);
  transform: scale(1.05);
}

/* Ghost Button */
.btn.ghost {
  background: transparent;
  border: 1px solid var(--border);
  box-shadow: none;
  color: var(--primary);
}

.btn.ghost:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
}

/* Responsive Buttons for Small Screens */
@media (max-width: 640px) {
  .btn {
    font-size: 0.9rem;
    padding: 8px 16px;
    width: 100%;        /* Full width on small screens */
    margin-bottom: 10px; /* Spacing between buttons */
  }

  .btn:last-child {
    margin-bottom: 0;
  }
}

.menu-toggle {
  display: none; /* hidden by default on desktop */
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #1f2937;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f0f4ff, #e8f0fe);
  padding: 50px 20px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Text content */
.hero-text {
  flex: 1;
  min-width: 200px;
  animation: slideInLeft 1s ease-out;
}

.hero-text h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  color: #1a237e;
}

.hero-text p {
  margin: 16px 0 24px;
  font-size: 1.1rem;
  color: #444;
  max-width: 500px;
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  gap: 16px;
}

.btn-primary {
  background: #1a73e8;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #1558b0;
}

.btn-secondary {
  border: 2px solid #1a73e8;
  color: #1a73e8;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #1a73e8;
  color: #fff;
}

/* KPIs */
.hero-kpis {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.kpi {
  background: #fff;
  padding: 16px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.kpi strong {
  font-size: 1.4rem;
  color: #1a237e;
}

.kpi:hover {
  transform: translateY(-5px);
}

/* Image */
.hero-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* Animation */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .hero-kpis {
    justify-content: center;
  }
}

/* Drawer base */
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 50%;          /* half width */
  height: 100vh;       /* full screen height */
  background: #fff;
  transform: translateX(-100%); /* hidden offscreen */
  transition: transform 0.3s ease-in-out;
  z-index: 9999;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 2px 0 8px rgba(0,0,0,0.2);
  overflow: hidden;    /* 🔥 prevent scrolling inside */
}

/* When open */
.drawer.open {
  transform: translateX(0);
}

/* Panel inside */
.drawer-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* items top aligned */
  height: 100%;  /* take full height */
}

/* Nav links inside */
.drawer-panel a.btn {
  display: block;
  padding: 14px;
  margin-bottom: 10px;
  font-size: 1rem;
  border-radius: 6px;
  text-align: left;
  text-decoration: none;
  transition: background 0.2s;
}

.drawer-panel a.btn:hover {
  background: #f2f2f2;
}

/* Mobile specific */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; font-size: 1.6rem; }
  .drawer { width: 100%; }  /* half screen */
}
/* Medium screen (tablet) */
@media (max-width: 900px) {
  .brand img {
    max-height: 40px;  /* smaller logo */
  }
  header .btn {
    padding: 8px 14px;
    font-size: 0.9rem;
  }
  .menu-toggle {
    display: block; 
    /* show menu bar */
  }
  .nav-links {
    display: none; /* hide nav links in mobile */
  }
}

/* Small screen (mobile) */
@media (max-width: 640px) {
  .brand img {
    max-height: 32px; /* shrink more */
  }
  header .btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  .menu-toggle {
    font-size: 1.4rem; /* smaller icon */
  }
}




/* Background */
.industry-section {
  background: linear-gradient(135deg, #f6f9fc, #e9f3ff);
  padding: 60px 20px;
  text-align: center;
}

/* Container */
.industry-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* Pill Box */
.industry-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Icon style */
.industry-pill i {
  font-size: 18px;
  color: #0077ff;
  transition: transform 0.3s ease;
}

/* Hover effect */
.industry-pill:hover {
  background: #0077ff;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 119, 255, 0.3);
}

.industry-pill:hover i {
  color: #fff;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .industry-pill {
    font-size: 14px;
    padding: 10px 18px;
  }
}

/* Feature sections */
.features-area {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f4f6ff, #e8ecff);
  text-align: center;
}

.features-header h2 {
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 10px;
}

.features-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}

/* Scrolling Container */
.features-scroll {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.features-track {
  display: flex;
  gap: 20px;
  animation: scroll-left 20s linear infinite;
}

.features-track:hover {
  animation-play-state: paused;
}

/* Feature Card */
.feature-card {
  min-width: 250px;
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Icons */
.feature-card i {
  font-size: 32px;
  color: #4a6cf7;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #333;
}

.feature-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Keyframes for scrolling */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .features-header h2 {
    font-size: 1.8rem;
  }
  .feature-card {
    min-width: 200px;
  }
}
@media (max-width: 480px) {
  .features-header h2 {
    font-size: 1.6rem;
  }
  .features-subtitle {
    font-size: 1rem;
  }
  .feature-card {
    min-width: 180px;
    padding: 15px;
  }
}

/* Section layout */
.section {
  padding: 80px 0;
}
.section .head {
  text-align: center;
  margin-bottom: 28px;
}
.section h2 {
  font-size: clamp(24px, 3vw, 38px);
  margin: 0 0 8px;
}
.section p.lead {
  color: var(--primary-2);
  margin: 0 auto;
  max-width: 760px;
}

/* Grid */
.grid-3 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

/* Card design */
.card {
  background: var(--card);
  border: 2px solid #e5e7eb; /* light border always visible */
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  cursor: pointer;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  transition: color 0.3s ease, transform 0.3s ease;
}

.card p {
  color: var(--ink-2);
  transition: color 0.3s ease;
}

.card .tag {
  display: inline-block;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #4338ca;
  font-weight: 700;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Hover Effects */
.card:hover {
  border-color: #6366f1; /* indigo highlight */
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.2);
}

.card:hover h3 {
  color: #4f46e5; /* deep indigo */
  transform: translateY(-3px); /* smooth lift */
}

.card:hover p {
  color: #374151; /* darker text */
}

.card:hover .tag {
  background: #4f46e5;
  color: #fff;
}

/* Tabs (Solutions) */


/* Testimonials */
.testimonials{ display:grid; gap:20px; grid-template-columns: repeat(3,1fr)}

/* CTA */
.cta-band{ padding:40px; border-radius:22px; background:linear-gradient(90deg,#eef2ff,#ecfeff); border:1px solid var(--border); box-shadow:var(--shadow); text-align:center}

/* Footer */
.footer{ background:#334ae0; color:#cbd5e1; padding:40px 0 20px}
.footer .cols{ display:grid; gap:24px; grid-template-columns: 2fr repeat(3,1fr)}
.footer a{ color:#cbd5e1; text-decoration:none}
.footer small{ display:block; margin-top:20px; color:#94a3b8}

/* Forms */
.input{
  width:100%; padding:12px 14px; border:1px solid var(--border); border-radius:10px; outline:none;
}
.input:focus{ box-shadow:0 0 0 4px var(--ring); border-color:var(--primary)}
.form-row{ display:grid; gap:12px; grid-template-columns:1fr 1fr}

/* Responsive */
@media (max-width: 1024px){
  .hero .content{ grid-template-columns:1fr; text-align:center}
}
@media (max-width: 900px){
  .grid-3, .pricing, .testimonials{ grid-template-columns:1fr 1fr}
  .footer .cols{ grid-template-columns: 1fr 1fr }
}
@media (max-width: 640px){
  .grid-3, .pricing, .testimonials{ grid-template-columns:1fr}
  .form-row{ grid-template-columns:1fr}
  .logo-pill{ flex: 1 1 45%}
}


/*customer says*/
/* Section with background */
.testimonials-section {
 background: linear-gradient(135deg, #1a237e, #283593, #3949ab);
  padding: 60px 20px;
  text-align: center;
  color: #333;
}

.testimonials-section .head h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: white;
}

.testimonials-section .head .lead {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: floralwhite;
}

/* Testimonials grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.testimonial-card .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 12px;
  color: #444;
}

.testimonial-card strong {
  display: block;
  font-size: 1.1rem;
  color: #111;
}

.testimonial-card span {
  font-size: 0.9rem;
  color: #666;
}

/* CTA band */
/* CTA Band Section */
.cta-band {
  background: linear-gradient(135deg, #1a237e, #283593, #3949ab); /* royal gradient */
  color: #fff;
  text-align: center;
  padding: 50px 20px;
  border-radius: 16px;
  margin-top: 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-band h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.cta-band p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #e0e0e0;
}

/* Button Style */
.cta-band .btn.primary {
  background: #ffeb3b;
  color: #1a237e;
  font-weight: bold;
  padding: 14px 32px;
  border-radius: 50px;
  display: inline-block;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-band .btn.primary:hover {
  background: #fff176; /* lighter yellow */
  color: #0d1333;
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-band {
    padding: 40px 15px;
  }

  .cta-band h3 {
    font-size: 1.5rem;
  }

  .cta-band p {
    font-size: 1rem;
  }

  .cta-band .btn.primary {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .cta-band {
    padding: 30px 10px;
    border-radius: 12px;
  }

  .cta-band h3 {
    font-size: 1.3rem;
  }

  .cta-band p {
    font-size: 0.9rem;
  }

  .cta-band .btn.primary {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
  }
}

/* Responsive styles */
@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    padding: 20px;
  }
  .testimonial-card .avatar {
    width: 70px;
    height: 70px;
  }
  .cta-band h3 {
    font-size: 1.4rem;
  }
  .cta-band p {
    font-size: 0.95rem;
  }
}


/* Section Base */
.solutions-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #4a148c, #6a1b9a);
  color: #fff;
  text-align: center;
}

.solutions-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.solutions-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.solutions-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Tabs */
.solutions-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.solutions-tab {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.solutions-tab:hover,
.solutions-tab.active {
  background: #ffca28;
  color: #4a148c;
}

/* Tab Content */
.solutions-pane {
  display: none;
}

.solutions-pane.active {
  display: block;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

/* Card */
.solutions-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.4s ease, background 0.4s ease;
  animation: slideIn 3s ease infinite alternate;
}

.solutions-card i {
  font-size: 2.5rem;
  color: #ffca28;
  margin-bottom: 15px;
}

.solutions-card h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.solutions-card p {
  font-size: 1rem;
  opacity: 0.9;
}

.solutions-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.2);
}

/* Animation for left-to-right transition */
@keyframes slideIn {
  0% { transform: translateX(-20px); opacity: 0.8; }
  50% { transform: translateX(0); opacity: 1; }
  100% { transform: translateX(20px); opacity: 0.8; }
}

/* Responsive */
@media (max-width: 768px) {
  .solutions-header h2 {
    font-size: 2rem;
  }

  .solutions-tabs {
    flex-direction: column;
    gap: 15px;
  }
}


.features-section {
  background: linear-gradient(135deg, #4b0082, #6a5acd, #8a2be2);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

.features-head h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.features-lead {
  font-size: 1.2rem;
  margin-bottom: 50px;
  opacity: 0.9;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: center;
  animation: floatAll 6s infinite ease-in-out;
}

.features-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.features-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.features-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.features-tag {
  background: #ffcc00;
  color: #222;
  font-size: 0.9rem;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
  font-weight: bold;
}

.features-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.features-card p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Animate all cards together */
@keyframes floatAll {
  0% { transform: translateY(-40px); opacity: 0; }
  30% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-40px); opacity: 0; }
}

/* Responsive */
@media (max-width: 768px) {
  .features-head h2 { font-size: 2rem; }
  .features-lead { font-size: 1rem; }
}



/* Section Styling */
.pricing-section {
  background: linear-gradient(135deg, #4b0082, #6a5acd, #8a2be2);
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}

/* Container */
.pricing-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Heading */
.pricing-head h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.pricing-lead {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #e0e0e0;
}

/* Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Card */
.pricing-card {
  background: #fff;
  color: #333;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  position: relative;
  animation: floatDown 2s infinite alternate;
}

/* Icon */
.pricing-icon {
  font-size: 40px;
  color: #4ca1af;
  margin-bottom: 15px;
}

/* Title */
.pricing-title {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

/* Amount */
.pricing-amount {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 15px;
}
.pricing-amount .small {
  font-size: 14px;
  color: #666;
}

/* Features */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.pricing-features li {
  margin: 10px 0;
  font-size: 1rem;
  color: #444;
}

/* Button */
.pricing-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  background: #4ca1af;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}
.pricing-btn:hover {
  background: #2c3e50;
}

/* Hover Scale */
.pricing-card:hover {
  transform: translateY(-10px);
}

/* Animation (all move together top to middle) */
@keyframes floatDown {
  0% { transform: translateY(-50px); opacity: 0.6; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-head h2 {
    font-size: 2rem;
  }
  .pricing-amount {
    font-size: 1.5rem;
  }
}




/*pricing*/
/* Section background & container */
.pricing-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #eef2ff, #dbeafe);
  font-family: 'Inter', sans-serif;
  color: #1f2937;
}

.pricing-header {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-header h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.pricing-header .subtitle {
  font-size: 1.1rem;
  color: #4b5563;
}

/* Pricing cards */
.pricing-cards {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 50px;
}

.plan-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.plan-card i {
  font-size: 36px;
  color: #4f46e5;
  margin-bottom: 15px;
}

.plan-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.plan-card .amount {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.plan-card .amount span {
  font-size: 0.9rem;
  color: #6b7280;
}

.plan-card .features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  color: #4b5563;
}

.plan-card .features-list li {
  margin-bottom: 8px;
}

/* Buttons */
.btn.primary {
  background: #4f46e5;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn.primary:hover {
  background: #4338ca;
  transform: scale(1.05);
}

/* Extra Cards */
.extra-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.extra-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.extra-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.extra-card i {
  font-size: 30px;
  color: #4f46e5;
  margin-bottom: 12px;
}

.extra-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.extra-card p {
  color: #4b5563;
  font-size: 0.95rem;
}

.faq-item {
  text-align: left;
  margin-bottom: 8px;
}

.faq-item .q {
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 4px;
}

.faq-item .a {
  font-weight: 400;
  color: #6b7280;
  padding-left: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
  .pricing-cards, .extra-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .pricing-cards, .extra-cards {
    grid-template-columns: 1fr;
  }
  .plan-card i, .extra-card i {
    font-size: 28px;
  }
}



.about-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #eef2ff, #dbeafe);
  font-family: 'Inter', sans-serif;
  color: #1f2937;
  text-align: center;
}

.about-head h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.about-head p {
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 40px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  justify-items: center;
}

.about-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: center;
  animation: moveFromTop 2s ease forwards;
  animation-delay: 0.5s; /* delay before appearing */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
}

.about-card i {
  font-size: 36px;
  color: #4f46e5;
  margin-bottom: 12px;
}

.about-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.about-card p {
  font-size: 1rem;
  color: #4b5563;
}

/* Hover effect */
.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* Animation */
@keyframes moveFromTop {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-card i {
    font-size: 28px;
  }

  .about-card h3 {
    font-size: 1.3rem;
  }
}


.contact-section {
  padding: 80px 20px;
  background: #eef2ff;
  font-family: 'Inter', sans-serif;
  color: #1f2937;
}

.contact-head {
  text-align: center;
  margin-bottom: 40px;
}

.contact-head h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.contact-head .lead {
  font-size: 1.1rem;
  color: #4b5563;
}

/* Form Card */
.contact-card {
  background: #fff;
  border: 1px solid #c7d2fe;
  border-radius: 16px;
  padding: 30px 25px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Form Rows */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group i {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #4f46e5;
  font-size: 16px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  padding-left: 28px;
  color: #1f2937;
}

.input {
  width: 100%;
  padding: 10px 12px 10px 32px;
  border-radius: 8px;
  border: 1px solid #c7d2fe;
  font-size: 1rem;
  color: #1f2937;
  background: #f8fafc;
  transition: border 0.3s ease, background 0.3s ease;
}

.input:focus {
  border-color: #4f46e5;
  background: #ffffff;
  outline: none;
}

/* Button */
.btn.primary {
  background: #4f46e5;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn.primary:hover {
  background: #4338ca;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-card {
    padding: 25px 20px;
  }

  .form-group i {
    font-size: 14px;
    top: 10px;
  }
}
