
:root {
  --primary: #0aa6a6;
  --secondary: #0d6efd;
  --dark: #0b2e2e;
  --light: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}
/*@font-face {*/
/*  font-family: 'Inter';*/
/*  src: url('/fonts/inter.woff2') format('woff2');*/
/*  font-weight: 400 700;*/
/*  font-display: swap;*/
/*}*/

/*@font-face {*/
/*  font-family: 'Playfair Display';*/
/*  src: url('/fonts/playfair.woff2') format('woff2');*/
/*  font-weight: 400 700;*/
/*  font-display: swap;*/
/*}*/

body {
  background: var(--light);
  color: #333;
  line-height: 1.3;
}

/* Explicit heading sizes to avoid deprecated browser defaults */
h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.2;
  margin: 0.5em 0;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.25;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.3;
}

/* Fully override deprecated UA heading sizing */
h1,
section h1,
article h1,
main h1,
aside h1,
nav h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.2;
  margin-block: 0.5em;
}
h1, h2 {
  line-height: 1.2;
  min-height: 1.2em;
}


header,
.site-header {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  color: white;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 6px 20px rgba(2,42,42,0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.brand img {
    width: 105px;
  height: 45px;
  display: block;
  margin-right: 12px;
}
/* white background for logo for better contrast */
.brand img {
  background: #ffffff;
  padding: 6px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(2,42,42,0.08);
}
.brand span {
  font-weight: 700;
  font-size: 1.1rem;
}

@media(max-width: 480px) {
  .brand img { height: 36px; }
  .brand span { font-size: 1rem; }
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
  display: block;
  padding: 8px 0;
}

/* Hamburger menu button */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 6px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Navigation menu - MOBILE FIRST (hidden by default) */
.nav-menu {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  width: 100%;
  flex-direction: column;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  z-index: 999;
  display: none;
  padding: 0;
}

.nav-menu.active {
  display: flex;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-menu a {
  margin-left: 0;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: block;
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav-menu a:last-child {
  border-bottom: none;
}

/* FEATURES DROPDOWN - MODERN */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-toggle {
  background: linear-gradient(, var(--secondary), var(--primary));
  border: 0px solid rgba(255, 255, 255, 0.25);
  color: white;
  font-weight: 500;
  cursor: pointer;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size:1.00rem;
  transition: all 0.3s ease;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.nav-dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.nav-dropdown-toggle::after {
  content: "▼";
  font-size: 0.65rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.nav-dropdown.open .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 12px);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.12), 0 0 1px rgba(0, 0, 0, 0.05);
  min-width: 250px;
  opacity: 0;
  transform: translateY(-12px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 0.86, 0.36, 1), 
              transform 0.3s cubic-bezier(0.16, 0.86, 0.36, 1);
  z-index: 1001;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(20px);
}

.nav-dropdown.open .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: #1f2937;
  text-decoration: none;
  margin: 0;
  border: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.dropdown-menu a::before {
  content: "→";
  font-size: 0.8rem;
  opacity: 0;
  color: var(--secondary);
  transition: all 0.2s ease;
  transform: translateX(-8px);
}

.dropdown-menu a:hover {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(10, 166, 166, 0.08));
  color: var(--secondary);
  padding-left: 24px;
}

.dropdown-menu a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.dropdown-menu a:first-child {
  padding-top: 14px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.dropdown-menu a:last-child {
  padding-bottom: 14px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

/* Special styling for Blog link - last item */
.dropdown-menu a[href="blog.html"] {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(10, 166, 166, 0.12));
  color: var(--secondary);
  font-weight: 600;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 6px;
  padding-top: 14px !important;
}

/* Desktop Navigation Display */
@media(min-width: 769px) {
  .nav-menu {
    position: static;
    flex-direction: row;
    background: none;
    display: flex;
    padding: 0;
    width: auto;
    top: auto;
    left: auto;
    right: auto;
    box-shadow: none;
    z-index: auto;
  }

  .nav-menu a,
  .nav-dropdown-toggle {
    margin-left: 20px;
    padding: 0px 0;
    border-bottom: none;
  }

  .nav-dropdown {
    position: relative;
  }

  .dropdown-menu {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
  }

  .nav-dropdown.open .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.hero {
  padding: 50px 40px 20px 50px;
  /*min-height: 620px;*/
  min-height: 70vh;
  /*display: block;*/
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  background-size: cover;
  background-position: center center;
  align-items: center;
  display: flex;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap; /* keep image beside text on wider screens */
}

.hero-text {
  flex: 1 1 60%;
  min-width: 0; /* allow text to shrink instead of forcing wrap */
}

/* .hero-image {
  flex: 0 0 40%;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
} */

/* .hero-image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  opacity: 0;
  transform: translateY(8px) scale(0.98);

} */

 .hero-image img {
  width: 110%;
  max-width: 820px;   /* ⬅ increase width */
  height: auto;
  transform: translateX(40px); /* push right slightly */
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.35));
}
.hero-image {
  flex: 0 0 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Floating animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}


.tagline-highlight {
  color: var(--light);
  font-family: 'Playfair Display', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.2;
  display: inline-block;
  max-width: 900px;
  text-shadow: 0 6px 20px rgba(0,0,0,0.55);
  opacity: 0;
  transform: translateY(14px) translateX(-6px) scale(0.995);
  animation: tagline-in 900ms cubic-bezier(.16,.86,.36,1) 200ms forwards;
   background: linear-gradient(90deg, #ffffff, #cceeff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #f3f6ff;
}

@media(max-width: 768px) {
  .tagline-highlight { font-size: 1.9rem; }
}

@keyframes tagline-in {
  to { opacity: 1; transform: translateY(0) translateX(0) scale(1); }
}

@keyframes hero-image-in {
  0% { opacity: 0; transform: translateY(12px) scale(0.96); }
  60% { opacity: 1; transform: translateY(-6px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* @keyframes hero-float {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.01); }
  100% { transform: translateY(0) scale(1); }
} */

/* apply combined animations and respect reduced-motion */
.hero-image img {
  animation: hero-image-in 1200ms cubic-bezier(.16,.86,.36,1) 420ms forwards,
             hero-float 6.5s ease-in-out 1600ms both infinite;
}

@media (prefers-reduced-motion: reduce) {
  .tagline-highlight,
  .hero-image img {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* slightly larger paragraph under tagline */
.hero-text p { font-size: 1.05rem; color: rgba(255,255,255,0.92); max-width: 640px; text-shadow: 0 3px 10px rgba(0,0,0,0.45); }

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--light);
}

.hero p {
  margin: 20px 0;
  font-size: 18px;
}

.btn {
  padding: 14px 28px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

/* Softer Request Demo button (less intense red and gentler pulse) */
.btn.btn-demo {
  background: linear-gradient(90deg, #b23a3a, #d95a4f);
  color: #fff;
  border: 1px solid rgba(178,58,58,0.9);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  border-radius: 28px;
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  animation: pulse-border 3.2s infinite;
}

@keyframes pulse-border {
  0% { box-shadow: 0 0 0 0 rgba(178,58,58,0.12); }
  60% { box-shadow: 0 0 0 10px rgba(178,58,58,0.00); }
  100% { box-shadow: 0 0 0 0 rgba(178,58,58,0.00); }
}

.btn.btn-demo:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(178,58,58,0.12);
}

.section {
  padding: 80px 60px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform .4s, box-shadow .4s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Modern Standards: container, light-gradient cards and colorful icons */
.standards-section {
  background: linear-gradient(180deg, #f5fbfb, #eef9f9);
  padding: 40px 20px;
  text-align: center; /* for h2 & p only */
}

/* Headline width control */
.standards-section > h2,
.standards-section > p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.cards.standards {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
  gap: 30px;
  width: 100%;
}

/* Tablet */
@media (max-width: 992px) {
  .cards.standards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .cards.standards {
    grid-template-columns: 1fr;
  }
}
.standards-section {
  background: linear-gradient(180deg, #f5fbfb, #eef9f9);
  padding: 90px 20px;
}

.standards-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0aafaf;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #2563eb, #14b8a6);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
}

.standards-section .muted {
  max-width: 900px;
  margin: 0 auto 60px;
  font-size: 18px;
  color: #6b7280;
}
@media (max-width: 992px) {
  .cards.standards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .cards.standards {
    grid-template-columns: 1fr;
  }
}
.cards.standards .card {
  background: #ffffff;
  border-radius: 22px;
  padding: 36px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.cards.standards .card:hover {
  transform: translateY(-12px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
}
.cards.standards .icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: #0aa6a6;
  background: rgba(10, 166, 166, 0.12);
}
.c-teal .icon { background: rgba(10,166,166,.15); color:#0aa6a6; }
.c-indigo .icon { background: rgba(79,70,229,.15); color:#4f46e5; }
.c-cyan .icon { background: rgba(6,182,212,.15); color:#06b6d4; }
.c-red .icon { background: rgba(239,68,68,.15); color:#ef4444; }
.c-green .icon { background: rgba(34,197,94,.15); color:#22c55e; }
.c-purple .icon { background: rgba(168,85,247,.15); color:#a855f7; }

.cards.standards h3 {
  font-size: 20px;
  font-weight: 600;
  color: #083c3c;
  margin-bottom: 10px;
}

.cards.standards p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #4b5563;
}
.cards.standards .card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #0d6efd, #0aa6a6);
  transition: width 0.35s ease;
}

.cards.standards .card:hover::after {
  width: 100%;
}


.cards.standards .card {
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(246,252,252,0.98));
  color: var(--dark);
  box-shadow: 0 8px 20px rgba(2,42,42,0.06);
  border: 1px solid rgba(10,10,10,0.03);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}
.cards.standards .card h3 {
  margin-bottom: 8px;
  text-align: center;
  width: 100%;
}
.cards.standards .card p {
  color: rgba(0,0,0,0.72);
  margin-top: auto;
}
.cards.standards .card .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(0,0,0,0.03);
}

/* center icon horizontally inside card */
.cards.standards .card .icon {
  margin-left: auto;
  margin-right: auto;
}

/* Colored icon accents per card */
.cards.standards .card.c-teal .icon { color: var(--primary); background: rgba(10,166,166,0.10); }
.cards.standards .card.c-indigo .icon { color: #6f42c1; background: rgba(111,66,193,0.08); }
.cards.standards .card.c-cyan .icon { color: #17a2b8; background: rgba(23,162,184,0.08); }
.cards.standards .card.c-yellow .icon { color: #ffc107; background: rgba(255,193,7,0.08); }
.cards.standards .card.c-red .icon { color: #dc3545; background: rgba(220,53,69,0.08); }
.cards.standards .card.c-green .icon { color: #28a745; background: rgba(40,167,69,0.08); }

/* additional color accents */
.cards.standards .card.c-purple .icon { color: #8a63ff; background: rgba(138,99,255,0.08); }
.cards.standards .card.c-orange .icon { color: #ff7a00; background: rgba(255,122,0,0.08); }

.muted {
  color: #666;
  margin-bottom: 18px;
}

footer {
  background: var(--dark);
  color: white;
  padding: 40px;
  /* text-align: center; */
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

@media(max-width: 768px) {
  header,
  .site-header {
    padding: 15px 20px;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
  }

  .brand img {
    width: 100px;
    height: 32px;
    margin-right: 10px;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    gap: 5px;
  }

  .hamburger span {
    width: 22px;
    height: 2.5px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  /* Mobile nav-menu styles */
  .nav-menu {
    display: none;
  }

  .nav-menu.active {
    display: flex !important;
  }

  .hero {
    padding: 30px 20px 20px 20px;
    text-align: center;
    min-height: auto;
  }

  .hero-inner {
    flex-direction: column;
  }

  .hero-text {
    flex: 1 1 100%;
    order: -1;
  }

  .hero-image {
    width: 100%;
    margin-top: 30px;
  }

  .hero-image img {
    width: 100%;
    max-width: 100%;
    transform: translateX(0);
  }
}

/* DESKTOP BREAKPOINT - show nav horizontally */
@media(min-width: 769px) {
  .hamburger {
    display: none !important;
  }

  .nav-menu {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    width: auto;
    flex-direction: row;
    background: none;
    z-index: auto;
    display: flex;
    padding: 0;
    box-shadow: none;
  }

  .nav-menu.active {
    display: flex;
    padding: 0;
    box-shadow: none;
  }

  .nav-menu a {
    margin-left: 20px;
    padding: 0;
    border: none;
    display: inline-flexbox;
  }

  .nav-menu a:last-child {
    border-bottom: none;
  }
}

.feature-tabs {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 40px;
}

/* LEFT PANEL */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-radius: 16px;
  border: none;
  background: #f3f6ff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  color: #1f2937;
  transition: all 0.3s ease;
}

.feature-item .icon {
  font-size: 20px;
}

.feature-item:hover {
  background: #e6edff;
}

.feature-item.active {
  background: linear-gradient(135deg, #2563eb, #0aa6a6);
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.3);
}

/* RIGHT PANEL */
.feature-preview {
  position: relative;
  min-height: 420px;
}

.preview-img {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 820px;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: all 0.4s ease;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.preview-img.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 1;
}
@media (max-width: 992px) {
  .feature-tabs {
    grid-template-columns: 1fr;
  }

  .feature-preview {
    margin-top: 40px;
    min-height: 360px;
  }

  .preview-img {
    max-width: 100%;
  }
}
.testimonials-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f8fbff, #eef7f7);
  text-align: center;
}
.testimonials-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0aafaf;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #2563eb, #14b8a6);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
}
.testimonial-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
  position: relative;
}

.testimonial {
  width: 320px;
  padding: 32px;
  border-radius: 22px;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  opacity: 0.5;
  transform: scale(0.9);
  transition: all 0.6s ease;
}

.testimonial.active {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 30px 80px rgba(0, 180, 180, 0.25);
}

.testimonial p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.author strong {
  display: block;
}

.author span {
  font-size: 14px;
  color: #6b7280;
}

/* Mobile */
@media (max-width: 900px) {
  .testimonial-wrapper {
    flex-direction: column;
  }
}
.get-started-section {
  padding: 90px 20px;
  background: linear-gradient(135deg, #eafafa, #ffffff);
}

.get-started-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  /* align-items: center; */
}

/* LEFT CONTENT */
.get-started-content h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: #0f3d3e;
}

.get-started-content p {
  color: #5f7d7e;
  margin-bottom: 25px;
  max-width: 420px;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  margin-bottom: 12px;
  font-weight: 500;
  color: #1b5f61;
}

/* FORM */
.get-started-form {
  background: rgba(255, 255, 255, 0.85);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 120, 120, 0.15);
  backdrop-filter: blur(12px);
}

.get-started-form h3 {
  margin-bottom: 25px;
  font-size: 1.5rem;
  color: #0f3d3e;
}

.form-group {
  margin-bottom: 18px;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid #cfe8e8;
  font-size: 15px;
  transition: 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #23b5b5;
  box-shadow: 0 0 0 4px rgba(35, 181, 181, 0.15);
}

/* BUTTON */
.btn-primary {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #23b5b5, #0aa2a2);
  border: none;
  border-radius: 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(35, 181, 181, 0.4);
}

.form-note {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: #7d9d9e;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .get-started-container {
    grid-template-columns: 1fr;
  }

  .get-started-content {
    text-align: center;
  }

  .get-started-content p {
    margin-left: auto;
    margin-right: auto;
  }
}
.pricing-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #e0f7f7 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Add subtle decorative blobs */
.pricing-section::before,
.pricing-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  z-index: 0;
}

.pricing-section::before {
  width: 400px;
  height: 400px;
  background: #23b5b5;
  top: -120px;
  left: -100px;
}

.pricing-section::after {
  width: 500px;
  height: 500px;
  background: #0aa2a2;
  bottom: -150px;
  right: -120px;
}

/* Heading and text should be on top */
.pricing-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0aafaf;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #2563eb, #14b8a6);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
}
.pricing-section .muted {
  position: relative;
  z-index: 1;
}

/* Pricing Table */
.pricing-table {
  display: flex;
  justify-content: center;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  max-width: 1000px;
  margin: 60px auto 0;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

/* Panel Styles */
.plan {
  flex: 1;
  padding: 50px 30px;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 100px rgba(0, 180, 180, 0.25);
}

/* Enterprise Highlight */
.plan.enterprise {
  /* background: rgba(32, 178, 178, 0.1); */
  border-left: 2px solid #23b5b5;
}

/* Text */
.plan-header h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #0f3d3e;
}

.plan-header .price {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #23b5b5;
}

.plan-header .subtitle {
  font-size: 14px;
  color: #6b7280;
}

/* Features */
.features {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  text-align: left;
  color: #0f3d3e;
}

.features li {
  margin-bottom: 5px;
  font-size: 15px;
}

/* Button */
.btn-primary {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  border-radius: 14px;
  cursor: pointer;
  background: linear-gradient(135deg, #23b5b5, #0aa2a2);
  color: white;
  border: none;
  transition: 0.3s ease;
  margin-top: auto;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(35, 181, 181, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
  .pricing-table {
    flex-direction: column;
    border-radius: 20px;
  }

  .plan.enterprise {
    border-left: none;
    border-top: 2px solid #23b5b5;
  }
}
.feature-tabs {
  display: grid;
  /* grid-template-columns: 250px 1fr; */
  gap: 60px;
  padding: 100px 50px;
  background: linear-gradient(135deg, #e0f7f7 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}

/* Decorative floating blobs */
.feature-tabs::before,
.feature-tabs::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  z-index: 0;
  animation: float 15s ease-in-out infinite alternate;
}

.feature-tabs::before {
  width: 350px;
  height: 350px;
  background: #23b5b5;
  top: -100px;
  left: -120px;
}

.feature-tabs::after {
  width: 450px;
  height: 450px;
  background: #0aa2a2;
  bottom: -150px;
  right: -100px;
}

/* Feature List (LEFT) */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-radius: 16px;
  border: none;
  background: #f3f6ff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  color: #1f2937;
  transition: all 0.3s ease, transform 0.3s ease;
}

.feature-item .icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  background: #e6edff;
  transform: translateX(4px);
}

.feature-item.active {
  background: linear-gradient(135deg, #2563eb, #0aa6a6);
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.3);
}

.feature-item.active .icon {
  transform: scale(1.2);
}

/* Feature Preview (RIGHT) */
.feature-preview {
  position: relative;
  min-height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .preview-img {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 820px;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: all 0.5s ease;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  z-index: 0;
} */

.preview-img {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 900px;   /* ideal visible width */
  height: auto;       /* keep aspect ratio */
  max-height: 520px;  /* prevents overflow */
  object-fit: contain;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: all 0.5s ease;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  z-index: 0;
}

.preview-img.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 1;
}

/* Floating animation for blobs */
@keyframes float {
  0% { transform: translateY(0px) translateX(0px) rotate(0deg); }
  50% { transform: translateY(20px) translateX(20px) rotate(15deg); }
  100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
}

/* Responsive */
@media (max-width: 992px) {
  .feature-tabs {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px;
  }

  .feature-preview {
    min-height: 360px;
  }

  .preview-img {
    max-width: 100%;
  }
}
.site-footer {
  background: linear-gradient(90deg, var(--primary),var(--secondary));
  color: #ffffff;
  padding-top: 80px;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}

.footer-brand p {
  margin-top: 16px;
  line-height: 1.7;
  font-size: 16px;
  opacity: 0.9;
}

.footer-logo {
  max-width: 160px;
}

.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  margin-bottom: 18px;
  font-size: 16px;
}

.footer-links a {
  display: block;
  margin-bottom: 12px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #4dd6d6;
  transform: translateX(4px);
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 12px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 20px;
  font-size: 13px;
  opacity: 0.8;
}

/* Subtle glow line */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #4dd6d6, transparent);
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links a:hover {
    transform: none;
  }
}
.cta-section {
  padding: 100px 20px;
  background: radial-gradient(circle at top, #e6fbfb, #f9fefe);
  text-align: center;
}
.cta-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0aafaf;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #2563eb, #14b8a6);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
}
.cta-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: stretch;
}

.glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 120, 120, 0.15);
}

/* LEFT */
.cta-info {
  padding: 50px;
}

/* .cta-info h2 {
  font-size: 34px;
  margin-bottom: 14px;
} */
.cta-info h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0aafaf;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #2563eb, #14b8a6);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
}
.subtitle {
  color: #475569;
  /* max-width: 500px; */
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.info-item h4 {
  font-size: 14px;
  color: #0aa6a6;
  margin-bottom: 6px;
}

.info-item p {
  font-size: 15px;
  color: #334155;
}

.highlight {
  font-size: 20px;
  font-weight: 600;
  color: #0aa6a6;
}

.trial-banner {
  margin-top: 40px;
  padding: 26px;
  border-radius: 20px;
  background: linear-gradient(135deg, #2563eb, #0aa6a6);
  color: #fff;
}

/* RIGHT FORM */
.cta-form {
  padding: 45px;
}

.cta-form h3 {
  margin-bottom: 25px;
}

.cta-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #cceeee;
  margin-bottom: 14px;
  font-size: 14px;
}

.cta-form input:focus {
  outline: none;
  border-color: #0aa6a6;
  box-shadow: 0 0 0 3px rgba(10,166,166,0.15);
}

.cta-form button {
  width: 100%;
  padding: 15px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #2563eb, #0aa6a6);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cta-form button:hover {
  transform: translateY(-2px);
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: #64748b;
  margin-top: 12px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .cta-container {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GLOBAL */
/* body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f8fafc;
  color: #0f172a;
  line-height: 1.6;
} */

a {
  text-decoration: none;
  color: inherit;
}

/* HEADER */
.site-header {
  background: linear-gradient(90deg, #2563eb, #14b8a6);;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* border-bottom: 1px solid #e5e7eb; */
}

.logo {
  color: #0779c0;
  font-size: 28px;
  font-weight: 800;
}



nav a.active,
nav a:hover {
  color: #0779c0;
}

/* PRICING */
#pricing {
  padding: 10px 20px;
}

.pricing-container {
  max-width: 1200px;
  margin: auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 70px;
}

.pricing-header h1 {
  /*font-size: 44px;*/
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 10px;
}

.pricing-header p {
  font-size: 18px;
  color: #64748b;
}

/* LICENSE BOX */
.license-box {
  background: linear-gradient(135deg, #eef4ff, #f5fbff);
  border-radius: 32px;
  padding: 60px;
}

.license-box h2 {
  text-align: center;
  font-size: 32px;
}

.subtitle {
  text-align: center;
  color: #64748b;
  margin-bottom: 30px;
}

/* HIGHLIGHT */
.highlight-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  margin-bottom: 50px;
}

.highlight-box span {
  display: block;
  color: #64748b;
  font-size: 14px;
}

/* GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARDS */
.price-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.15);
}

.price-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.price {
  font-size: 42px;
  font-weight: 800;
  color: #0779c0;
}

.desc {
  color: #64748b;
  margin-bottom: 20px;
}

.price-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.price-card li {
  padding: 6px 0;
  font-size: 15px;
  color: #475569;
}

/* BUTTONS */
/* .btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 30px;
  border: 2px solid #0779c0;
  color: #0779c0;
  font-weight: 600;
  transition: all 0.3s ease;
} */

.btn:hover {
  background: #0779c0;
  color: #ffffff;
}

.primary {
  background: #0779c0;
  color: #ffffff;
}

/* FEATURED */
.featured {
  position: relative;
  border: 3px solid #0779c0;
}

.badge {
  position: absolute;
  top: -14px;
  right: 30px;
  background: #0779c0;
  color: #ffffff;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: 600;
}

/* AMC */
.amc-box {
  margin-top: 50px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  padding: 22px;
  border-radius: 18px;
  text-align: center;
}

.amc-box p {
  font-size: 14px;
  color: #475569;
}



/* RESPONSIVE */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  /* .site-header {
    flex-direction: column;
    gap: 12px;
  } */
}
.contact-section {
  padding: 100px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* INFO */
.contact-info h1 {
  /*font-size: 44px;*/
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.contact-info p {
  color: #64748b;
  margin-bottom: 30px;
}

.info-box p {
  margin-bottom: 12px;
  font-size: 16px;
}

/* FORM */
.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.contact-form h2 {
  font-size: 26px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
}

.form-group input {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
}

.form-group input:focus {
  outline: none;
  border-color: #0779c0;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  background: #0779c0;
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #065a94;
}
/* Adjust value to your navbar height */
.scroll-offset {
  scroll-margin-top: 110px;
}
.card {
  padding: 28px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
  /* Fade-in Animation */
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(25px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .fade-section {
    animation: fadeUp 0.8s ease-in-out;
  }

  /* Card Effect */
  .blog-card {
    background: white;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  }

  /* Heading Hover Effect */
  h3 {
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
  }

  h3:hover {
    color: #2563eb;
    transform: translateX(6px);
  }

  /* Button Animation */
  .btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 12px;
    background: linear-gradient(to right, #2563eb, #1e40af);
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .btn:hover {
    transform: scale(1.05);
    background: linear-gradient(to right, #1e40af, #2563eb);
  }

.card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 14px 0 8px;
}

.card-desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 14px;
  line-height: 1.6;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-list li::before {
  position: absolute;
  left: 0;
  color: #14b8a6; /* teal */
  font-size: 0.9rem;
}


.card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 8px;
}

.card-list .check {
  color: #14b8a6;
  font-size: 0.9rem;
  line-height: 1.4;
  min-width: 16px; /* KEY FIX */
}

.name-row {
  display: flex;
  gap: 12px;
}

.name-row input {
  flex: 1;
}
.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.success-box {
  background: #fff;
  padding: 32px 40px;
  border-radius: 16px;
  text-align: center;
  max-width: 380px;
  animation: scaleIn 0.35s ease;
}

.success-box h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.success-box p {
  color: #555;
  font-size: 15px;
}

.hidden {
  display: none;
}

@keyframes scaleIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.input {
  width: 100%;
  border: 1px solid #cceeee;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  outline: none;
}
.input:focus {
  border-color: #60a5fa;
  box-shadow: 0 0 0 2px rgba(96,165,250,0.3);
}
@keyframes scaleIn {
  from { transform: scale(.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ========== TAILWIND UTILITY CLASSES ========== */

/* DISPLAY & FLEX */
/* .flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-stretch { align-items: stretch; }
.justify-center { justify-content: center; }
.justify-start { justify-content: flex-start; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-30 { gap: 1.875rem; } */

/* GRID */
/* .grid { display: grid; }
.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.justify-items-center { justify-items: center; } */

/* POSITIONING */
/* .absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-1\/2 { top: 50%; }
.right-0 { right: 0; }
.left-0 { left: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.-z-10 { z-index: -10; } */


/* WIDTH & HEIGHT */
/* .w-full { width: 100%; }
.w-96 { width: 24rem; }
.w-24 { width: 6rem; }
.h-96 { height: 24rem; }
.h-32 { height: 8rem; }
.h-1 { height: 0.25rem; }
.h-14 { height: 3.5rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-xl { max-width: 28rem; }
.max-h-14 { max-height: 3.5rem; } */

/* MARGIN & PADDING */
/* .m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-24 { margin-bottom: 6rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-16 { margin-top: 4rem; }
.mt-auto { margin-top: auto; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-16 { padding-left: 4rem; padding-right: 4rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.ps-2 { padding-left: 0.5rem; }

.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.p-7 { padding: 1.75rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.p-14 { padding: 3.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; }
.mb-3 { margin-bottom: .75rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-24 { margin-top: 6rem; }
.mx-auto { margin-left: auto; margin-right: auto; } */

/* TEXT */
/* .text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-gray-50 { color: #f9fafb; }
.text-gray-100 { color: #f3f4f6; }
.text-gray-400 { color: #d1d5db; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-gray-900 { color: #111827; }
.text-white { color: #ffffff; }
.text-blue-600 { color: #2563eb; }
.text-teal-500 { color: #14b8a6; }
.text-teal-custom {color: #0aa2a2;}
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.leading-relaxed { line-height: 1.625; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; } */

/* BACKGROUND */
/* .bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-sky-50 { background-color: #f0f9ff; }
.bg-blue-50 { background-color: #eff6ff; }
.bg-blue-100 { background-color: #dbeafe; }
.bg-blue-200 { background-color: #bfdbfe; }
.bg-blue-500 { background-color: #3b82f6; }
.bg-blue-600 { background-color: #2563eb; }
.bg-blue-700 { background-color: #1d4ed8; }
.bg-teal-200 { background-color: #99f6e4; }
.bg-teal-400 { background-color: #2dd4bf; }
.bg-teal-50 { background-color: #f0fdfa; }
.bg-teal-500 { background-color: #14b8a6; }
.bg-gradient-to-r { background: linear-gradient(90deg, var(--tw-gradient-stops)); }
.bg-gradient-to-b { background: linear-gradient(180deg, var(--tw-gradient-stops)); }
.from-blue-50 { --tw-gradient-stops: #eff6ff, var(--tw-gradient-to, transparent); }
.from-blue-500 { --tw-gradient-stops: #3b82f6, var(--tw-gradient-to, transparent); }
.from-blue-600 { --tw-gradient-stops: #2563eb, var(--tw-gradient-to, transparent); }
.from-sky-50 { --tw-gradient-stops: #f0f9ff, var(--tw-gradient-to, transparent); }
.to-teal-50 { --tw-gradient-to: #f0fdfa; }
.to-teal-400 { --tw-gradient-to: #2dd4bf; }
.to-teal-500 { --tw-gradient-to: #14b8a6; }
.to-white { --tw-gradient-to: #ffffff; }
.via-white { --tw-gradient-stops: #ffffff, var(--tw-gradient-to, transparent); }
.bg-clip-text { background-clip: text; }
.text-transparent { color: transparent; }
.bg-blue-200\/40 { background-color: rgba(191, 219, 254, 0.4); } */

/* BORDER & ROUNDED */
/* .rounded { border-radius: 0.25rem; }
.rounded-full { border-radius: 9999px; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-lg { border-radius: 0.5rem; }
.border { border: 1px solid #e5e7eb; }
.border-t { border-top: 1px solid #e5e7eb; }
.border-sky-100 { border-color: #e0f2fe; } */

/* OPACITY & FILTERS */
/* .opacity-30 { opacity: 0.3; }
.opacity-50 { opacity: 0.5; }
.blur-3xl { filter: blur(64px); }
.drop-shadow { filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)); } */

/* SHADOWS */
/* .shadow { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); }
.shadow-md { box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1); } */

/* TRANSFORM & TRANSITIONS */
/* .transform { transform: translate(var(--tw-translate-x), var(--tw-translate-y)); }
.scale-105 { transform: scale(1.05); }
.-translate-y-2 { transform: translateY(-0.5rem); }
.translate-y-0 { transform: translateY(0); }
.transition { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: background-color, border-color, color, fill, stroke 0.2s cubic-bezier(0.4, 0, 0.2, 1); }
.transition-transform { transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.duration-300 { transition-duration: 300ms; }
.duration-300 { transition-duration: 300ms; }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1) !important; }
.hover\:-translate-y-2:hover { transform: translateY(-0.5rem); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:bg-blue-700:hover { background-color: #1d4ed8; }
.hover\:bg-teal-500:hover { background-color: #14b8a6; }
.hover\:text-blue-700:hover { color: #1d4ed8; } */

/* OBJECT FIT */
/* .object-contain { object-fit: contain; } */

/* INLINE BLOCK */
/* .inline-block { display: inline-block; } */

/* CURSOR */
/* .cursor-pointer { cursor: pointer; } */

/* OVERFLOW */
/* .overflow-hidden { overflow: hidden; } */

/* GRADIENT DIRECTIONS */
/* .bg-gradient-to-br { background: linear-gradient(135deg, var(--tw-gradient-stops)); } */

/* ADDITIONAL COLORS FOR GRADIENTS */
/* .from-blue-400 { --tw-gradient-stops: #60a5fa, var(--tw-gradient-to, transparent); }
.from-green-400 { --tw-gradient-stops: #4ade80, var(--tw-gradient-to, transparent); }
.from-purple-400 { --tw-gradient-stops: #c084fc, var(--tw-gradient-to, transparent); }
.from-red-400 { --tw-gradient-stops: #f87171, var(--tw-gradient-to, transparent); }
.from-indigo-400 { --tw-gradient-stops: #818cf8, var(--tw-gradient-to, transparent); }
.to-blue-600 { --tw-gradient-to: #2563eb; }
.to-teal-600 { --tw-gradient-to: #0d9488; }
.to-orange-600 { --tw-gradient-to: #ea580c; }
.to-pink-600 { --tw-gradient-to: #db2777; } */

/* ADDITIONAL BACKGROUND COLORS */
/* .bg-blue-100 { background-color: #dbeafe; }
.bg-blue-400 { background-color: #60a5fa; }
.bg-green-100 { background-color: #dcfce7; }
.bg-green-400 { background-color: #4ade80; }
.bg-purple-100 { background-color: #f3e8ff; }
.bg-purple-400 { background-color: #c084fc; }
.bg-red-100 { background-color: #fee2e2; }
.bg-red-400 { background-color: #f87171; }
.bg-indigo-100 { background-color: #e0e7ff; }
.bg-indigo-400 { background-color: #818cf8; }
.bg-orange-600 { background-color: #ea580c; } */

/* ADDITIONAL TEXT COLORS */
/* .text-blue-700 { color: #1d4ed8; }
.text-green-700 { color: #15803d; }
.text-purple-700 { color: #6b21a8; }
.text-red-700 { color: #b91c1c; }
.text-indigo-700 { color: #3730a3; } */

/* ROUNDED CORNERS */
/* .rounded-xl { border-radius: 0.75rem; } */

/* TRANSITION SHADOW */
/* .transition-shadow { transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1); } */

/* HEIGHT */
/* .h-48 { height: 12rem; } */

/* MEDIA QUERIES */
/* @media (max-width: 640px) {
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .sm\:text-5xl { font-size: 3rem !important; }
  .sm\:px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
  .md\:text-3xl { font-size: 1.875rem !important; }
  .md\:text-4xl { font-size: 2.25rem !important; }
  .md\:text-5xl { font-size: 3rem !important; }
  .md\:text-xl { font-size: 1.25rem !important; }
  .md\:text-lg { font-size: 1.125rem !important; }
  .md\:text-base { font-size: 1rem !important; }
  .md\:hover\:-translate-y-2:hover { transform: translateY(-0.5rem) !important; }
  .md\:p-5 { padding: 1.25rem !important; }
  .md\:px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; }
  .lg\:px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
}

.most-popular-badge {
  position: absolute;
  top: 1rem;          /* top-4 */
  right: 1rem;        /* right-4 */
  background-color: #ffffff;
  color: #0aa2a2;
  font-size: 0.75rem; /* text-xs */
  font-weight: 600;  /* font-semibold */
  padding: 0.25rem 0.75rem; /* py-1 px-3 */
  border-radius: 9999px; /* rounded-full */
} */

/* .max-w-7xl { max-width: 80rem; }
.max-w-4xl { max-width: 56rem; }

.grid { display: grid; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }

.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }


.text-center { text-align: center; }

.text-xs { font-size: .75rem; }
.text-sm { font-size: .875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }

.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.leading-relaxed { line-height: 1.625; }
.leading-snug { line-height: 1.375; }

.bg-white { background-color: #ffffff; }

.bg-blue-50 { background-color: #eff6ff; }
.bg-blue-100 { background-color: #dbeafe; }
.bg-green-50 { background-color: #ecfdf5; }
.bg-green-100 { background-color: #dcfce7; }
.bg-purple-50 { background-color: #f5f3ff; }
.bg-purple-100 { background-color: #ede9fe; }
.bg-orange-50 { background-color: #fff7ed; }
.bg-teal-100 { background-color: #ccfbf1; }
.bg-indigo-100 { background-color: #e0e7ff; }
.bg-cyan-100 { background-color: #cffafe; }
.bg-sky-100 { background-color: #e0f2fe; }


.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--from), var(--to));
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--from), var(--to));
}

.from-blue-600 { --from: #2563eb; }
.from-green-50 { --from: #ecfdf5; }
.from-indigo-50 { --from: #eef2ff; }
.from-purple-50 { --from: #f5f3ff; }

.to-teal-500 { --to: #14b8a6; }
.to-indigo-700 { --to: #4338ca; }
.to-emerald-50 { --to: #ecfdf5; }
.to-cyan-50 { --to: #ecfeff; }

.rounded-lg { border-radius: .5rem; }
.rounded-xl { border-radius: .75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

.border { border: 1px solid #e5e7eb; }
.border-gray-100 { border-color: #f3f4f6; }

.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.shadow-xl { box-shadow: 0 20px 25px rgba(0,0,0,.1); }


.transition { transition: all .2s ease; }
.transition-all { transition: all .3s ease; }
.duration-300 { transition-duration: .3s; }

.hover\:shadow-xl:hover { box-shadow: 0 20px 25px rgba(0,0,0,.1); }
.hover\:-translate-y-1:hover { transform: translateY(-4px); }
.hover\:bg-blue-100:hover { background-color: #dbeafe; } */
