@import url('https://fonts.googleapis.com/css2?family=Geomini:wght@200..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap%27');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #0184FE;
  --green-dark: #053A96;
  --green-light: #e8f0ff;
  --purple: #7708FE;
  --gradient: linear-gradient(135deg, #0184FE 0%, #7708FE 100%);
  --gradient-hover: linear-gradient(135deg, #0174e0 0%, #6a07e0 100%);
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg: #f9fafb;
  --white: #ffffff;
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 100% !important;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}


@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
}

.nav-logo .logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}

.nav-logo .logo-text span {
  color: var(--purple);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a.active {
  color: var(--green);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .2s;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background: var(--gradient-hover);
  opacity: .92;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
}

.btn-outline:hover {
  background: var(--green-light);
}

.btn-arrow::after {
  content: ' →';
}

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, #eef4ff 0%, #f5eeff 50%, #ffffff 100%);
  padding: 40px 5% 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero .left {
  width: 48%;
}

.hero h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--green);
}

.hero p {
  font-size: 18px;
  color: var(--muted);
}

.hero .main-title {
  font-size: 14px;
  color: var(--purple);
  font-weight: 500;
  text-transform: uppercase;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  margin-top: 20px;
}

.hero-proof {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}

.hero-dashboard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.10);
  overflow: hidden;
  width: 48%;
}

/* ── SECTION COMMON ── */
section {
  padding: 90px 5%;
}

.section-tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-title span {
  color: var(--green);
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 48px;
}

.text-center {
  text-align: center;
}

/* ── PAGE HEADER (for inner pages) ── */
.page-header {
  background: linear-gradient(160deg, #eef4ff 0%, #f5eeff 50%, #ffffff 100%);
  padding: 70px 5% 50px;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  max-width: 760px;
  margin: 0 auto 16px;
}

.page-header h1 span {
  color: var(--green);
}

.page-header p {
  font-size: 17px;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
}

/* ── PLATFORMS ── */
.platforms {
  background: var(--bg);
}

.platforms-logos {
  display: flex;
  justify-content: center;
  gap: 80px;
  align-items: center;
  flex-wrap: wrap;
}

.platform-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: .5;
  transition: opacity .2s;
}

.platform-item:hover {
  opacity: 1;
}

.platform-icon {
  font-size: 48px;
}

.platform-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

/* ── FEATURES ── */
#features {
  padding-inline: 0;
}

.features-grid {
  width: 100%;
  overflow-x: hidden;
}

.marquee-block {
  animation-duration: 40s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  display: flex;
  width: 100%;
  justify-content: space-between;
  position: relative;
}

.marquee-item-list {
  display: inline-flex;
  margin: 0;
}

@keyframes marquee1 {
  0% {
    left: 0;
  }

  100% {
    left: -100%;
  }
}

@keyframes marquee2 {
  100% {
    left: 0;
  }

  0% {
    left: -100%;
  }
}

.marquee1 {
  animation-name: marquee1;
}

.marquee2 {
  animation-name: marquee2;
  margin-top: 20px;
}

.feature-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  font-size: 14px;
  font-weight: 500;
  transition: box-shadow .2s, border-color .2s;
  margin-right: 40px;
  white-space: nowrap;
}

.feature-chip:hover {
  border-color: var(--green);
  box-shadow: 0 4px 12px rgba(1, 132, 254, .14);
}

.check {
  width: 20px;
  height: 20px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 11px;
}

/* ── SPLIT SECTIONS ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.split.reverse {
  direction: rtl;
}

.split.reverse>* {
  direction: ltr;
}

.split-content .section-sub {
  margin: 0 0 32px;
  text-align: left;
}

/* ── PRICING ── */
.pricing {
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
}

.price-card.popular {
  border-color: var(--green);
  box-shadow: 0 8px 30px rgba(1, 132, 254, 0.18);
}

.price-card.enterprise {
  border-color: var(--purple);
  background: linear-gradient(160deg, #faf5ff, #fff);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 99px;
  white-space: nowrap;
}

.plan-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.plan-price {
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1;
}

.plan-price sup {
  font-size: 20px;
  vertical-align: super;
}

.plan-price span {
  font-size: 16px;
  color: var(--muted);
  font-weight: 400;
}

.plan-price-alt {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}

.plan-price-alt strong {
  color: var(--green);
}

.plan-desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

.plan-features {
  list-style: none;
  text-align: left;
  margin-bottom: 0;
  flex: 1;
}

.plan-features li {
  font-size: 13px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
}

.plan-features li .feat-label {
  color: var(--text);
  font-weight: 500;
}

.feat-yes {
  color: #16a34a;
  font-weight: 700;
}

.feat-no {
  color: #dc2626;
  font-weight: 700;
}

.feat-val {
  color: var(--text);
  font-weight: 600;
  font-size: 12px;
}

.pricing-grid-btn {
  text-align: center;
  margin-bottom: 70px;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}


/* ── COMPARE TABLE ── */
.compare-wrap {
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 0 20px;
  border-radius: 10px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.compare-table th {
  padding: 14px 20px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  border-bottom: 2px solid var(--border);
}

.compare-table th:first-child {
  text-align: left;
  color: var(--text);
  background: transparent;
}

.th-premium {
  color: #0184FE;
}

.th-enterprise {
  color: #6a07e0;
}

.compare-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

.compare-table td:first-child {
  text-align: left;
  color: var(--text);
}

.compare-table tr:hover td {
  background: #f8fafc;
}

.ct-yes {
  color: #16a34a;
  font-weight: 700;
  font-size: 16px;
}

.ct-no {
  color: #dc2626;
  font-weight: 700;
  font-size: 16px;
}

.ct-dash {
  color: #d1d5db;
  font-size: 18px;
}

.ct-cta {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.compare-table .ct-info {
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
  display: block;
}

.compare-section-row td {
  font-weight: 700;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding-top: 18px;
  background: #f8fafc;
}

/* ── FAQ ── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 0;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.faq-q .arrow {
  font-size: 28px;
  transition: transform .3s;
  color: var(--purple);
  flex-shrink: 0;
}

.faq-item.open .faq-q .arrow {
  transform: rotate(45deg);
}

.faq-a {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 20px;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, #053A96 0%, #0184FE 45%, #7708FE 100%);
  padding: 80px 5%;
  text-align: center;
  color: #fff;
}

.cta-banner h2 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-banner p {
  font-size: 18px;
  opacity: .85;
  margin-bottom: 36px;
}

.btn-white {
  background: #fff;
  color: #053A96;
}

.btn-white:hover {
  background: #eef4ff;
}

/* ── FOOTER ── */
footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 60px 5% 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-text {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.footer-brand .logo-text span {
  color: #7708FE;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}

.social-btn img {
  max-width: 16px;
}

.social-btn:hover {
  background: var(--gradient);
  color: #fff;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 14px;
  color: #94a3b8;
  transition: color .2s;
}

.footer-col a:hover {
  color: #0184FE;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-contact-item a {
  display: flex;
}

.footer-contact-item a img {
  max-width: 13px;
  margin-right: 5px;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 24px;
  font-size: 13px;
}

.footer-bottom span {
  display: block;
  text-align: center;
}

.footer-bottom a {
  color: #94a3b8;
}

.footer-bottom a:hover {
  color: #0184FE;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 110px;
}

/* ── CONTACT PAGE ── */
.contactus-section {
  display: flex;
  background: #fff;
  box-shadow: 0 0 33.3px #00000026;
  border-radius: 24px;
}

.contactus-section .left {
  width: 32%;
  background: linear-gradient(135deg, #0184FE 0%, #7708FE 100%);
  border-radius: 24px;
  padding-top: 70px;
  padding-left: 40px;
  padding-right: 40px;
}

.contactus-section h2 {
  color: #fff;
  font-size: 26px;
  font-weight: 500;
}

.contactus-section p {
  color: #fff;
}

.contactus-section ul {
  margin: 0;
  padding: 0;
  margin-top: 40px;
}

.contactus-section ul li {
  list-style: none;
  margin-bottom: 15px;
}

.contactus-section ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  display: flex;
  align-items: flex-start;
}

.contactus-section ul li img {
  max-width: 20px;
  height: auto;
  position: relative;
  top: 2px;
}

.contactus-section ul li a span {
  margin-left: 10px;
}

.contactus-section .right {
  width: 68%;
}

.contactus-section form {
  padding-top: 40px;
  padding-inline: 40px;
  position: relative;
}

.contactus-section .form-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

.contactus-section .form-row .form-group {
  width: 48%;
}

.contactus-section form p {
  margin-bottom: 30px;
}

.contactus-section form .recaptcha p {
  color: #000;
  margin-bottom: 15px;
}

.contactus-section form label {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  display: block;
}

.contactus-section .form-row .form-group .required-star {
  color: #d70909;
}

.contactus-section form .wpcf7-form-control-wrap {
  display: block;
}

.contactus-section form input {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 5px;
  font-size: 16px;
  padding: 10px;
  width: 100%;
  /* margin-top: 5px; */
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.contactus-section form .intl-tel-input {
  display: block;
  margin-top: 5px;
}

.contactus-section form select {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 5px;
  font-size: 16px;
  padding: 10px;
  width: 100%;
  /* margin-top: 5px; */
  cursor: pointer;
}

.contactus-section form textarea {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 5px;
  font-size: 16px;
  padding: 10px;
  width: 100%;
  max-height: 100px;
  margin-top: 5px;
  resize: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.captcha-box p {
  display: flex;
  align-items: center;
  gap: 15px;
}

#captcha-refresh {
  display: inline-block;
  cursor: pointer;
  transition: transform 0.5s ease;
}

.captcha-box p img {
  max-width: 40px;
  cursor: pointer;
}

.captcha-box p input {
  margin-top: 0;
}

.contactus-section .form-row .submit {
  position: relative;
  width: 100%;
}

.contactus-section form input[type="submit"] {
  background: linear-gradient(135deg, #0184FE 0%, #7708FE 100%);
  color: #fff;
  cursor: pointer;
  border: 0;
  max-width: 200px;
  margin: 0 auto;
  padding: 15px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.contactus-section .form-row .textarea {
  width: 100%;
}

/* ── BLOG PAGE ── */
.blogs .blog-content {
  display: flex;
  box-shadow: 0 0 7px -4px #000;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.blogs .blog-content .blog-img {
  width: 35%;
}

.blogs .blog-content .blog-data {
  width: 65%;
  padding: 30px;
}

.blogs .blog-content a {
  display: block;
}

.blogs .blog-content .blog-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.blogs .blog-content .blog-tag .tag-title {
  color: #fff;
  background-color: #053A96;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  padding: 4px 6px;
}

.blogs .blog-content .blog-tag .date {
  font-size: 13px;
  font-weight: 600;
  color: #000;
}

.blogs .blog-content h2 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 12px;
}

.blogs .blog-content p {
  color: #000;
  font-size: 15px;
  margin-bottom: 15px;
}

.blogs .blog-content .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .2s;
  background: var(--gradient);
  color: #fff;
  border: none;
}

.blogs .blog-content .read-more:hover {
  background: var(--gradient-hover);
  opacity: .92;
}

#feature-marquee {
  padding: 50px 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.terms-page {
  padding: 90px 5%;
}

.terms-page .legal-hero {
  margin-bottom: 30px;
}

.terms-page .legal-wrap h2 {
  margin-bottom: 10px;
}

.terms-page .legal-wrap p {
  margin-bottom: 20px;
}

.terms-page .legal-wrap ul {
  padding-left: 30px;
  margin-bottom: 20px;
}

.terms-page .legal-wrap ul li {
  margin-bottom: 10px;
}

.thank-you-container {
  padding: 50px 0;
}

.thank-you-container h1 {
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.thank-you-container .back-to-home {
  margin-top: 25px;
  text-align: center;
}

.thank-you-container p {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

.feature-common-sec {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

#collaboration {
  padding-bottom: 70px !important;
}

.humburg-btn {
  background-image: url('../img/toggle-open.png');
  background-repeat: no-repeat;
  background-position: center;
  padding: 0;
  border: 0;
  height: 30px;
  width: 30px;
  background-size: cover;
  cursor: pointer;
  background-color: transparent;
  display: none;
}

.humburg-btn:focus {
  outline: none;
  box-shadow: none;
}

.humburg-btn.active {
  background-image: url('../img/toggle-close.png');
  background-repeat: no-repeat;
  background-position: center;
  padding: 0;
  border: 0;
  height: 30px;
  width: 30px;
  background-size: cover;
  cursor: pointer;
  background-color: transparent;
}

.home-feature-sec {
  padding-top: 0px;
}

.home-feature-row {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr 2fr;
  gap: 25px;
}

.home-feature-row .feature-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 0 4px -2px #000;
  transition: 0.4s ease-in-out;
}

.home-feature-row .feature-box:hover {
  transform: translateY(-10px);
}

.home-feature-row h3 {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 15px;
  margin-top: 15px;
}

.home-feature-row p {
  text-align: justify;
}

.viewall-feature {
  text-align: center;
  margin-top: 50px;
}

.home-feature-sec .top-bar{
  margin-bottom: 40px;
}
.home-feature-sec .top-bar h2{
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 14px;
}
.home-feature-sec .title-txt{
  font-size: 16px;
  color: var(--muted);
  text-align: center;
}
.home-feature-sec .top-bar h2 span {
    color: var(--green);
}

.blog-detail{
  padding: 90px 5%;
}
.blog-detail .blog-title{
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 30px;
}
.blog-detail .social-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.blog-detail .social-content ul{
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-detail .social-content ul li{
  list-style: none;
}
.blog-detail .blog-date{
  font-weight: 700;
  font-size: 14px;
}
.blog-detail ul{
  padding-left: 32px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1199px) {
  .hero h1 br {
    display: none;
  }

  .blogs .blog-content .blog-img {
    width: 45%;
  }

  .blogs .blog-content .blog-data {
    width: 55%;
  }
}

@media (max-width: 991px) {
  .nav-right {
    position: absolute;
    right: 0;
    top: 66px;
    display: none;
    background: #fff;
    width: 100%;
    height: 100vh;
    padding: 0 5%;
    transform: translateX(110%);
    transition: 0.4s ease-in-out;
  }

  .nav-right.menu-open {
    transform: translateX(0%);
    display: block;
  }

  .nav-right .nav-links {
    display: block;
    margin-bottom: 20px;
    padding-top: 20px;
  }

  .nav-right .nav-links li a {
    padding: 10px 0;
    display: block;
  }

  .humburg-btn {
    display: block;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .split.reverse {
    direction: ltr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .feature-chip {
    gap: 7px;
    padding: 11px 13px;
    font-size: 13px;
    margin-right: 20px;
    white-space: nowrap;
  }

  .marquee-block {
    animation-duration: 15s;
  }

  .mock-screen {
    width: 100%;
  }

  .section-title br,
  .page-header h1 br {
    display: none;
  }

  .split-content {
    width: 100%;
    text-align: center;
  }

  .split-content .section-sub {
    text-align: center;
    max-width: 100%;
  }

  .split {
    flex-direction: column;
    display: flex;
  }

  .page-header {
    padding: 40px 5% 40px;
  }

  .feature-common-sec:nth-child(even) .split {
    flex-direction: column-reverse;
  }

  .contactus-section .right {
    width: 100%;
  }

  .contactus-section .left {
    width: 100%;
  }

  .compare-table td {
    white-space: nowrap;
  }

  .contactus-section {
    flex-wrap: wrap;
  }

  .hero {
    flex-wrap: wrap;
    gap: 25px;
  }

  .hero .left,
  .hero-dashboard {
    width: 100%;
  }

  .split {
    gap: 30px;
  }

  .feature-common-sec {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  #collaboration {
    padding-bottom: 40px !important;
  }

  .hero h1 {
    text-align: center;
  }

  .hero p {
    font-size: 16px;
    text-align: center;
  }

  .hero-cta {
    margin-bottom: 20px;
    justify-content: center;
  }

  section {
    padding: 50px 5%;
  }

  .home-feature-row {
    grid-template-columns: 2fr 2fr;
  }

  .terms-page {
    padding: 50px 5%;
  }

  .blogs .blog-content .blog-img {
    width: 100%;
  }

  .blogs .blog-content .blog-data {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero h1 {
    font-size: 30px;
  }

  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  footer {
    padding-top: 30px;
  }

  .footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 10px;
  }

  .footer-brand {
    width: 100%;
    margin-bottom: 30px;
  }

  .footer-col#contact-info {
    width: 100%;
    margin-top: 20px;
  }

  .contactus-section .left {
    padding: 20px;
  }

  .contactus-section .form-row .form-group {
    width: 100%;
  }

  .contactus-section form {
    padding-inline: 20px;
  }

  .contactus-section form .submit p {
    margin-bottom: 0;
  }

  .home-feature-row .feature-box {
    width: 100%;
  }

  .home-feature-row {
    grid-template-columns: 1fr;
  }

  .faq-q .arrow {
    font-size: 20px;
  }
  .hero .main-title{
    text-align: center;
  }
  .ct-cta{
    width: 360px;
  }
  .blog-detail .blog-title {
    font-size: 30px;
    line-height: 40px;
  }
}

/* For captcha */
#refresh-captcha {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: background 0.2s ease;
}

#refresh-captcha img {
  display: block;
  transition: transform 0.2s ease;
}

#refresh-captcha.spinning img {
  animation: spin 0.6s linear;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}