* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root {
  --section-x: 4%;
  --primary-blue: #2563eb;
  --primary-dark: #0b1220;
  --text-muted: #4b5563;
  --border-light: #e2e8f0;
}

/* ===========================
   GLOBAL STYLES
=========================== */

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  color: #222;
  padding-top: 84px;
  width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
}

/* ===========================
   HEADER & NAVBAR
=========================== */

.navbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px var(--section-x);
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.08);
  z-index: 1000;
}

.nav-left {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-mark {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  width: 24px;
  height: 2px;
  background: #111827;
  display: block;
  position: relative;
  transition: 0.25s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

.navbar.mobile-open .hamburger {
  background: transparent;
}

.navbar.mobile-open .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.navbar.mobile-open .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #111827;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  transition: 0.2s ease;
}

.nav-links a:hover,
.login-link:hover {
  color: var(--primary-blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.login-link {
  color: #111827;
  text-decoration: none;
  font-weight: 500;
}

/* ===========================
   BUTTONS
=========================== */

.btn,
.btn-outline,
.btn-outline-ghost,
.btn-primary-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  transition: 0.2s ease;
}

.btn {
  background: var(--primary-blue);
  color: #fff;
}

.btn-primary {
  background: var(--primary-blue);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
}

.btn-outline {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-outline-ghost {
  background: transparent;
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
}

.btn-primary-pill {
  background: var(--primary-blue);
  color: #fff;
}

.btn:hover,
.btn-outline:hover,
.btn-outline-ghost:hover,
.btn-primary-pill:hover {
  transform: translateY(-2px);
}

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

.hero-feature {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 80px var(--section-x);
  margin: 0 auto;
  color: #ffffff;
}

.hero-feature__content {
  flex: 1;
  min-width: 280px;
}

.eyebrow {
  color: #000;
  font-weight: 600;
  margin-bottom: 12px;
  display: inline-block;
}

.hero-feature h1 {
  font-size: clamp(32px, 4.8vw, 40px);
  line-height: 1.06;
  margin: 20px 0 18px;
  color: var(--primary-dark);
}

.lead {
  color: var(--text-muted);
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 18px;
}

.feat-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feat-list li {
  position: relative;
  padding-left: 25px;
  color: #000;
}

.feat-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-blue);
  font-weight: 800;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.price-block {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.price {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-dark);
}

.price .per {
  font-size: 16px;
  font-weight: 600;
  margin-left: 6px;
  color: #6b7280;
}

.price .gst {
  font-size: 16px;
  color: #6b7280;
  margin-left: 10px;
  font-weight: 600;
}

.hero-feature__visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
  width: 100%;
}

.visual-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #f3f7ff 0%, #ffffff 100%);
  padding: 24px;
  box-shadow: 0 20px 60px rgba(2, 6, 23, 0.08);
}

.visual-frame img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* ===========================
   PRICING SECTION
=========================== */

.pricing {
  width: 100%;
  padding: 80px var(--section-x);
  background: #f7f7f7;
}

.pricing-header {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow--accent {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 0.88rem;
  font-weight: 700;
}



.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
  max-width: 100%;
}

.price-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.08);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: auto;
  transition: all 0.35s ease;
  position: relative;
  cursor: pointer;
}

.price-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.price-card__tag,
.price-card__discount,
.price-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.price-card__tag {
  background: #eef2ff;
  color: #1d4ed8;
  
}

.price-card__price-group {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.price-card__price {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.price-card__period {
  color: #6b7280;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.price-card__subtitle {
  color: #000;
  font-size: 1rem;
  line-height: 1.8;
}

.price-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.price-card__list li {
  position: relative;
  padding-left: 30px;
  color: #334155;
  font-size: 0.96rem;
}

.price-card__list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-blue);
  font-weight: 700;
}

.price-card button {
  width: 100%;
}

.price-card.featured {
  border: 2px solid rgba(37, 99, 235, 0.18);
}

.price-card:hover {
  transform: scale(1.06);
  box-shadow: 0 25px 60px rgba(37, 99, 235, 0.25);
  border: 2px solid var(--primary-blue);
  z-index: 10;
}

.price-card:hover .btn,
.price-card:hover button {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #ffffff;
  transform: translateY(-2px);
}

h2 {
  text-align: center;
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 40px;
  font-weight: 500;
}

/* ===========================
   FEATURES SECTION
=========================== */

.features {
  width: 100%;
  padding: 80px var(--section-x);
  background: #ffffff;
}

.features-header {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.features-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
  color: var(--primary-dark);
}

.features-header p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 100%;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 99, 235, 0.12);
  border: 1px solid var(--primary-blue);
}

.feature-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  background: #dbeafe;
  border-radius: 16px;
  margin: 0 auto;
}

.feature-icon svg {
  width: 48px;
  height: 48px;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1;
  margin: 0;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* ===========================
   INDUSTRY SECTION
=========================== */

.industry {
  width: 100%;
  padding: 60px var(--section-x);
  background: #f7f7f7;
}

.industry-header {
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.industry-header h2 {
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.1;
  margin-bottom:40px;
}

.industry-header .btn {
  padding: 12px 28px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 100%;
  margin: 0 auto;
}

.industry-more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.industry-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 320px;
  border-top: 4px solid transparent;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  transition: 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.industry-card__top {
  display: flex;
  align-items: center;
  gap: 18px;
}

.industry-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef2ff;
  color: var(--primary-blue);
}

.industry-card h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.3;
}

.industry-card p {
  color: #475569;
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

.industry-card .btn {
  width: max-content;
}

.industry-card--blue {
  border-top-color: #4338ca;
}

.industry-card--green {
  border-top-color: #059669;
}

.industry-card--orange {
  border-top-color: #c2410c;
}

.industry-card--purple {
  border-top-color: #8b5cf6;
}

/* ===========================
   SUPPORT SECTION
=========================== */

.support-section {
  width: auto;
  padding: 20px var(--section-x);
  background: #ffffff;
  margin: 50px 0;
}

.support-body {
  max-width: auto;
  margin: 0 auto;
}

.support-intro {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}

.support-intro .eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
}

.support-intro h2 {
  font-size: 18px;
  line-height: 1.8;
}

.support-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}

.support-panel {
  background: #ffffff;
  border-radius: 32px;
  padding: 36px;
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: auto;
}

.support-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.2);
}

.support-panel--highlight {
  background: linear-gradient(180deg, var(--primary-blue) 0%, #3b82f6 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

.support-panel--highlight h3,
.support-panel--highlight p,
.support-panel--highlight .btn {
  color: #ffffff;
}

.panel-icon,
.panel-ring {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 24px;
}

.panel-icon {
  background: #dbeafe;
  color: #1d4ed8;
}

.support-panel--highlight .panel-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.panel-ring {
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  font-size: 28px;
}

.support-panel h3 {
  font-size: 1.6rem;
  color: #111827;
  line-height: 1.2;
}

.support-panel--highlight h3 {
  color: #ffffff;
}

.support-panel p {
  color: #475569;
  line-height: 1.8;
}

.support-panel--highlight p {
  color: rgba(255, 255, 255, 0.9);
}

.support-cta {
  margin-top: auto;
  width: max-content;
}

.days-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.days-pill-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f0f9ff;
  color: #0f172a;
  font-weight: 700;
  border: 1px solid #dbeafe;
  font-size: 14px;
}

.support-panel--highlight .days-pill-grid span {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

.panel-media {
  display: flex;
  align-items: center;  
  justify-content: center;
  margin-top: auto;
}
 .name{
    color:#ffffff;
 }
 
.panel-media-shape {
  width: 110px;
  height: 110px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #d1fae5 0%, #10b981 100%);
  color: #065f46;
  box-shadow: 0 14px 35px rgba(16, 185, 129, 0.22);
  font-size: 32px;
}

/* ===========================
   TESTIMONIAL SECTION
=========================== */

.testimonial {
  width: 100%;
  padding: 80px var(--section-x);
  background: #f7f7f7;
}

.testimonial-header {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.testimonial-header h2 {
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.1;
  margin-top: 10px;
}

.testimonial-slider {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
}

.testimonial-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 24px;
  padding-bottom: 8px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-track {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.testimonial-card {
  min-width: 320px;
  flex: 0 0 320px;
  scroll-snap-align: center;
  padding: 30px;
  border-radius: 24px;
  /* box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08); */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  background: #fff;
}

.testimonial-card p {
  color: #334155;
  line-height: 1.8;
  margin: 0;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.testimonial-rating span {
  color: #f59e0b;
  display: flex;
  gap: 6px;
}

.testimonial-rating strong {
  color: var(--primary-dark);
  font-size: 0.95rem;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-meta strong {
  color: var(--primary-dark);
}

.testimonial-meta span {
  color: #64748b;
  font-size: 0.95rem;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: #fff;
  color: var(--primary-blue);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
}

.testimonial-nav:hover {
  transform: translateY(-50%) scale(1.05);
}

.testimonial-prev {
  left: -18px;
}

.testimonial-next {
  right: -18px;
}

/* ===========================
   FAQ SECTION
=========================== */

.faq {
  width: 100%;
  padding: 80px var(--section-x);
  background: #ffffff;
}

.faq-item {
  background-color: #f5f5f5;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.08);
}

.faq-question {
  width: 100%;
  padding: 20px;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--primary-blue);
  transition: transform 0.2s ease;
}

.faq-item.active .faq-question::after {
  content: '-';
  transform: rotate(0deg);
}

.faq-answer {
  display: none;
  padding: 20px;
  border-top: 1px solid #e2e8f0;
  color: #000000;
  background-color: #ffffff;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ===========================
   ABOUT PAGE
=========================== */

.about-page {
  width: 100%;
  padding: 80px var(--section-x) 100px;
}

.about-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 20px 0 40px;
}

.about-hero h1 {
  font-size: clamp(32px, 4.2vw, 44px);
  line-height: 1.1;
  margin: 8px 0 16px;
  color: #0f172a;
}

.about-hero .lead {
  max-width: 640px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.stat-card {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-card strong {
  font-size: 22px;
  color: #0f172a;
}

.stat-card span {
  color: #475569;
  font-size: 14px;
}

.about-panel {
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
  border: 1px solid #dbeafe;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.about-panel img {
  border-radius: 18px;
}

.about-section {
  padding: 24px 0 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.about-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.about-card h2,
.about-card h3 {
  margin-bottom: 10px;
  color: #0f172a;
}

.about-card p {
  color: #475569;
  line-height: 1.7;
}

.about-cta {
  margin-top: 36px;
  text-align: center;
  background: linear-gradient(90deg, #eff6ff 0%, #f8fafc 100%);
  border: 1px solid #dbeafe;
  border-radius: 24px;
  padding: 40px 24px;
}

.about-cta h2 {
  font-size: clamp(24px, 3vw, 32px);
  color: #0f172a;
  margin-bottom: 10px;
}

.about-cta p {
  color: #475569;
  max-width: 700px;
  margin: 0 auto 20px;
}

/* ===========================
   SIGNUP PAGE
=========================== */

.signup-page {
  width: 100%;
  min-height: calc(100vh - 84px);
  padding: 80px var(--section-x);
  background: #f8fafc;
}

.signup-hero {
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

.signup-form-card {
  width: 100%;
  background: #fff;
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
}

.form-heading {
  max-width: 420px;
  margin-bottom: 24px;
}

.form-heading h1 {
  margin: 18px 0 0;
  font-size: clamp(34px, 4vw, 38px);
  line-height: 1.05;
  color: var(--primary-dark);
}

.form-intro {
  margin: 0 0 32px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
}

.signup-form {
  display: grid;
  gap: 22px;
}

.form-label {
  display: block;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: -15px;
}

.phone-input-group {
  display: flex;
  gap: 0;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  overflow: hidden;
}

.phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: #f8fafc;
  color: #334155;
  font-weight: 600;
}

.phone-input-group input {
  width: 100%;
  border: 0;
  padding: 16px 14px;
  font-size: 1rem;
  outline: none;
}

.signup-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.signup-note {
  margin-top: 10px;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

.signup-note a {
  color: var(--primary-blue);
  text-decoration: none;
}

.signup-note a:hover {
  text-decoration: underline;
}

.back-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 600;
}

.back-link:hover {
  color: var(--primary-blue);
}

/* ===========================
   FOOTER
=========================== */

.site-footer {
  width: 100%;
  background: #01091E;
  color: #e6eef8;
  padding: 56px var(--section-x) 30px;
  margin-top:0px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: flex-start;
  width: 100%;
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 15px;
  height: 42px;
  width: auto;
  object-fit: contain;
}

.footer-brand p {
  color: #d1d5db;
  margin-bottom: 20px;
  line-height: 1.6;
}

.app-download {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.app-download a {
  display: inline-block;
}

.app-download img {
  height: 50px;
  width: auto;
  display: block;
}

.social-follow {
  margin-top: 5px;
  margin-left: -10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.social-follow h4 {
  display: inline-block;
  color: #fff;
  padding: 8px 12px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  width: 100%;
}

.social {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 26px;
  transition: 0.3s ease;
  border-radius: 8px;
}

.facebook {
  background: #4267B2;
}

.instagram {
  background: #F56040;
}

.linkedin {
  background: #0077B5;
}

.twitter {
  background: #1DA1F2;
}

.youtube {
  background: #FF0000;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-contact h2 {
  color: #fff;
  font-size: 2rem;
  margin: 0;
  text-align: left;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-label {
  color: #94a3b8;
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-phone,
.footer-contact a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: 0.2s ease;
}

.contact-phone:hover,
.footer-contact a:hover {
  color: #60a5fa;
}

.contact-meta {
  color: #94a3b8;
  font-size: 0.93rem;
  margin: 0;
}

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #15233f;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  background: var(--primary-blue);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  width: 100%;
}

.footer-col h4 {
  margin-bottom: 18px;
  color: #f8fafc;
  font-size: 1.05rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer-col a {
  color: #cbd5e1;
  text-decoration: none;
  opacity: 0.92;
  transition: 0.2s ease;
}

.footer-col a:hover {
  opacity: 1;
  color: #fff;
}

.divider-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin-top: 40px;
  margin-bottom: 20px;
  padding: 0;
}

.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
  padding-top: 18px;
  text-align: left;
}

.footer-bottom-left,
.footer-bottom-right {
  white-space: nowrap;
}

.footer-bottom-left p,
.footer-bottom-right p {
  margin: 0;
}

.footer-bottom-left a,
.footer-bottom-right a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-bottom-left a:hover,
.footer-bottom-right a:hover {
  color: #dbeafe;
}

.footer-bottom-right {
  text-align: right;
}

/* ===========================
   ABOUT PAGE NEW LAYOUT
=========================== */

.about-page-new {
  width: 100%;
  overflow: hidden;
  background: #ffffff;
}

.about-vy-hero {
  width: 100%;
  padding: 70px var(--section-x);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #03C1FD 100%);
  color: #fff;
}

.about-tag {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.18);
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 18px;
}

.about-vy-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  max-width: 760px;
  margin-bottom: 18px;
}

.about-vy-hero p {
  font-size: 17px;
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 24px;
  color: #eef6ff;
}

.about-vy-right {
  display: flex;
  justify-content: center;
}

.about-vy-right img {
  max-width: 520px;
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.about-stats-strip {
  padding: 45px var(--section-x);
  text-align: center;
  background: #fff;
}

.about-stats-strip h2 {
  font-size: 28px;
  margin-bottom: 34px;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.about-stats-row div {
  padding: 20px;
}

.about-stats-row span {
  font-size: 34px;
  color: var(--primary-blue);
  display: block;
  margin-bottom: 10px;
}

.about-stats-row strong {
  display: block;
  font-size: 28px;
  color: #0f172a;
}

.about-stats-row p {
  color: #64748b;
  margin-top: 6px;
}

.about-pink {
  background: #f6f9ff;
  padding: 60px var(--section-x);
}

.about-pink h2 {
  text-align: center;
  margin-bottom: 30px;
}

.about-text-box {
  max-width:auto;
  margin: 0 auto 45px;
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
  border: 1px solid #dbeafe;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.about-text-box p {
  color: #475569;
  line-height: 1.9;
  margin-bottom: 14px;
}

.vision-mission {
  max-width: auto;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.vm-card {
  background: #fff;
  padding: 34px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
  border: 1px solid #e2e8f0;
}

.vm-card h3 {
  color: var(--primary-blue);
  margin-bottom: 14px;
}

.vm-card p {
  color: #475569;
  line-height: 1.8;
}

.vm-blue {
  background: var(--primary-blue);
  color: #fff;
}

.vm-blue h3,
.vm-blue p {
  color: #fff;
}

.sme-section {
  padding: 75px var(--section-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  background: #fff;
}

.sme-left h2 {
  text-align: left;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.sme-left p {
  color: #475569;
  line-height: 1.9;
  margin-bottom: 14px;
}

.sme-right img {
  width: 100%;
  max-width: 430px;
  margin: auto;
  border-radius: 50%;
  border: 8px solid #dbeafe;
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.15);
}

.feature-about-section {
  padding: 75px var(--section-x);
  background: #f8fafc;
  text-align: center;
}

.feature-about-section h2 {
  max-width: 800px;
  margin: 0 auto 35px;
}

.about-feature-grid {
  max-width: auto;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.about-feature-grid div {
  background: #fff;
  padding: 20px 24px;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  text-align: left;
  font-weight: 600;
  color: #0f172a;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.about-trust {
  padding: 80px var(--section-x);
  background: linear-gradient(135deg, #01091E 0%, var(--primary-blue) 100%);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: center;
  gap: 40px;
}

.about-trust h2 {
  text-align: left;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  margin-bottom: 18px;
  color: #fff;
}

.about-trust p {
  color: #dbeafe;
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 24px;
}

.trust-logo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FE8301, #03C1FD);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 110px;
  font-weight: 800;
  margin: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */

@media (max-width: 1100px) {
  .support-panels {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1000px) {
  body {
    padding-top: 76px;
  }

  .navbar {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 14px 5%;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .navbar.mobile-open .nav-links,
  .navbar.mobile-open .nav-actions {
    display: flex;
  }

  .nav-links {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 8px;
    padding: 16px 0;
    border-top: 1px solid #e5e7eb;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 12px;
    border-radius: 12px;
  }

  .nav-actions {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-bottom: 16px;
  }

  .nav-actions a {
    width: 100%;
    text-align: center;
  }

  .hero-feature {
    flex-direction: column;
    text-align: center;
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero-ctas,
  .price-block {
    justify-content: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero,
  .about-grid,
  .vision-mission,
  .sme-section,
  .about-vy-hero {
    grid-template-columns: 1fr;
  }

  .about-vy-hero {
    text-align: center;
  }

  .about-vy-hero p,
  .sme-left h2,
  .about-trust h2 {
    margin-left: auto;
    margin-right: auto;
  }

  .about-trust {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .pricing,
  .features,
  .industry,
  .support-section,
  .testimonial,
  .faq {
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media (max-width: 820px) {
  .support-section {
    padding: 60px 5%;
  }

  .support-panels {
    grid-template-columns: 1fr;
  }

  .support-panel {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 72px;
  }

  .hero-feature,
  .pricing,
  .features,
  .industry,
  .support-section,
  .testimonial,
  .faq,
  .site-footer {
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero-feature {
    flex-direction: column;
    text-align: center;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero-feature__visual {
    order: -1;
  }

  .pricing-grid,
  .features-grid,
  .industry-grid,
  .support-panels,
  .footer-grid,
  .about-feature-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: auto;
  }

  .testimonial-card {
    min-width: 260px;
    flex: 0 0 260px;
  }

  .testimonial-nav {
    display: none;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-card,
  .about-panel,
  .about-cta {
    padding: 20px;
  }

  .about-trust p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 650px) {
  .about-stats-row,
  .about-feature-grid {
    grid-template-columns: 1fr;
  }

  .about-page {
    padding: 60px var(--section-x) 80px;
  }

  .signup-page {
    padding: 40px 5%;
  }

  .signup-form-card {
    padding: 30px;
  }

  .trust-logo {
    width: 150px;
    height: 150px;
    font-size: 76px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 12px 4%;
  }

  .logo-mark {
    height: 32px;
  }

  .btn,
  .btn-outline,
  .btn-outline-ghost,
  .btn-primary-pill {
    padding: 10px 16px;
    font-size: 13px;
  }

  .hero-feature h1 {
    font-size: 30px;
  }

  .hero-feature,
  .pricing,
  .features,
  .industry,
  .support-section,
  .testimonial,
  .faq,
  .site-footer {
    padding-left: 4%;
    padding-right: 4%;
  }

  .footer-bottom {
    font-size: 11px;
    gap: 8px;
  }

  .footer-bottom-left,
  .footer-bottom-right {
    white-space: normal;
  }

  .app-download img {
    height: 42px;
  }

  .social {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}

/* ===========================
   CONTACT PAGE
=========================== */

.contact-hero {
  background: linear-gradient(135deg, var(--primary-blue), #1e3a8a);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
}

.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.contact-hero p {
  font-size: 1.1rem;
  opacity: 0.95;
}

.methods-grid {
  max-width: 1200px;
  margin: -2rem auto 0;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.method-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-top: 4px solid #3b82f6;
  transition: all 0.3s;
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.method-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #ffffff;
  font-size: 1.5rem;
}

.method-card h3 {
  font-size: 1.2rem;
  color: #111827;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.method-card p {
  color: #4b5563;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.method-card a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.method-card a:hover {
  text-decoration: underline;
}

.contact-container {
  max-width: auto;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.contact-content {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 3rem;
}

.contact-left h2 {
  font-size: 2rem;
  color: #111827;
  margin-bottom: 1.5rem;
  font-weight: 800;
  padding-left:80px;
}

.contact-left p {
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.response-time {
  background: linear-gradient(135deg, #f9fafb, #ffffff);
  padding: 1.5rem;
  border-left: 4px solid #3b82f6;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

.response-time h4 {
  color: #111827;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.response-time p {
  margin-bottom: 0;
  color: #4b5563;
  font-size: 0.9rem;
}

.contact-left h3 {
  color: #111827;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-left ul {
  color: #4b5563;
  line-height: 2;
  padding-left: 0;
  list-style: none;
}

.contact-left li {
  margin-bottom: 0.5rem;
}

.contact-form {
  background: linear-gradient(135deg, #f9fafb, #ffffff);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #111827;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-form .btn {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
}

.form-message {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  display: none;
}

.form-message.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  display: block;
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
  display: block;
}

.locations-section {
  background: #f9fafb;
  padding: 4rem 2rem;
}

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

.locations-container h2 {
  font-size: 2rem;
  color: #111827;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 800;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.location-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.location-card h3 {
  font-size: 1.1rem;
  color: #111827;
  margin-bottom: 1rem;
  font-weight: 700;
}

.location-card p {
  color: #4b5563;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.location-card a {
  color: #2563eb;
  text-decoration: none;
}

.location-card a:hover {
  text-decoration: underline;
}

.faq-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.faq-section h2 {
  font-size: 2rem;
  color: #111827;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 800;

}

.faq-item {
  background: #ffffff;
  margin-top: 30px;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 1.5rem;
  background: linear-gradient(135deg, #f9fafb, #ffffff);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #111827;
  user-select: none;
  transition: all 0.3s;
}

.faq-question:hover {
  background: #f3f4f6;
}

.faq-item.active .faq-question {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #ffffff;
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 1.5rem;
  color: #4b5563;
  line-height: 1.8;
}

.contact-cta {
  background: linear-gradient(135deg, #2563eb, #1e3a8a);
  color: #ffffff;
  padding: 5rem 5rem;
  text-align: center;
  margin-top: 0px;
  margin-bottom: 0px;

}

.contact-cta h2 {
  font-size: 1.8rem;
  margin-bottom:1rem;
  font-weight: 800;
}

.contact-cta p {
  font-size: 1rem;
  opacity: 0.95;
  margin-bottom: 2rem;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 1.8rem;
  }

  .contact-content,
  .form-row {
    grid-template-columns: 1fr;
  }

  .methods-grid {
    grid-template-columns: 1fr;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-hero-page{
background:#2563eb;
padding:90px 20px;
text-align:center;
color:#fff;
}

.pricing-hero-page h1{
font-size:clamp(32px,5vw,52px);
margin-bottom:20px;
}

.pricing-toggle{
display:flex;
justify-content:center;
gap:12px;
margin-top:30px;
}

.pricing-toggle button{
padding:12px 30px;
border:none;
border-radius:999px;
font-weight:600;
cursor:pointer;
}

.pricing-toggle .active{
background:#fff;
color:#2563eb;
}

.free-plan-section{
padding:80px 4%;
}

.free-plan-card{
background:#fff;
border-radius:24px;
padding:40px;
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.free-plan-right ul{
margin:20px 0;
}

.free-plan-right li{
margin-bottom:10px;
}

.addon-section{
padding:80px 4%;
background:#0b1220;
color:#fff;
}

.addon-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:24px;
margin-top:40px;
}

.addon-card{
background:#111827;
padding:30px;
border-radius:20px;
}

.contact-pricing{
padding:80px 4%;
}

.contact-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:24px;
}

.contact-card{
background:#fff;
padding:30px;
border-radius:20px;
text-align:center;
box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.contact-card i{
font-size:40px;
color:#2563eb;
margin-bottom:15px;
}

@media(max-width:768px){

.free-plan-card{
grid-template-columns:1fr;
}

.pricing-toggle{
flex-direction:column;
align-items:center;
}

.testimonial-prev,
.testimonial-next{
display:none;
}

}