/* =========================================================
   ROOT VARIABLES
========================================================= */
:root {
  /* Brand & Theme */
  --color-primary: #06b6d4;
  --color-primary-light: #06b6d4;
  /* --color-accent-green: #4ade80;
  --color-accent-green-dark: #16a34a;
  --color-accent-green-hover: #22c55e; */

  --color-dark-green: #083344;
  --color-bg-dark: #030712;
  --color-bg-card: #0f172a;
  --color-bg-section: #041a22;
  --color-bg-light: #ffffff;

  --color-text-dark: #6b7280;
  --color-text-light: #f5f5f5;
  --color-text-gray: #a3a3a3;
  --color-text-muted: #bbb;
  --color-text-white: #ffffff;

  /* Shadows */
  --shadow-soft: 0 6px 16px rgba(0, 0, 0, 0.25);
  --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.35);
  --shadow-strong: 0 12px 32px rgba(0, 0, 0, 0.45);

  /* Layout & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --container-width: 1200px;

  /* Typography */
  --font-family-base: "Inter", sans-serif;
  --font-size-sm: clamp(14px, 1.6vw, 15px);
  --font-size-base: clamp(15px, 1.8vw, 16px);
  --font-size-md: clamp(18px, 2vw, 20px);
  --font-size-lg: clamp(20px, 2.5vw, 24px);
  --font-size-xl: clamp(28px, 3vw, 32px);
  --line-height-base: 1.6;
}

/* =========================================================
   GLOBAL
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-base);
  line-height: var(--line-height-base);
  background: var(--color-bg-light);
  color: var(--color-text-dark);
  margin: 0;
  padding: 0;
}

img,
video {
  max-width: 100%;
  width: 100%;
  height: 100%;
}

/* Dark / Light Theme */
.dark-theme body {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}
.light-theme body {
  background: var(--color-bg-light);
  color: var(--color-text-dark);
}

.tawk-button{
  background-color: #06b6d450 !important;
}

/* =========================================================
   TOP BAR
========================================================= */
/* === BASE TOPBAR === */
#topbar {
  position: relative;
  overflow: hidden;
  width: 100%;
  font-weight: 500;
  text-align: center;
  color: var(--bm--preset--color--text, #fff);
  background-color: var(--bm--preset--color--background, #1a1a1a);
  padding: 8px 45px;

  .topbar-text{
    line-height: 1.5; 
  }
}

/* === MOVING LIGHT LINE EFFECT === */
#topbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  width: 30%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.01) 0%,
    #06b6d430 50%,
    rgba(255, 255, 255, 0.01) 100%
  );
  animation: shine 4s linear infinite;
  pointer-events: none;
}

@keyframes shine {
  0% {
    left: -30%;
  }
  100% {
    left: 100%;
  }
}

/* === CLOSE BUTTON === */
.topbar-close {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--font-size-base, 1.2rem);
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.topbar-close:hover {
  color: var(--color-primary-light, #22c55e);
  transform: translateY(-50%) rotate(90deg);
}

/* =========================================================
   Header
========================================================= */
.logo {
  width: 45px;
}

/* Default = Dark Theme */
.img-light {
  display: none; 
}
.img-dark {
  display: inline;
}

/* Light Theme active hone par */
body.light-theme .img-light {
  display: inline;
}
body.light-theme .img-dark {
  display: none;
}

/* Dark Theme (optional clarity) */
body.dark-theme .img-light {
  display: none;
}
body.dark-theme .img-dark {
  display: inline;
}

/* =========================================================
   HERO section
========================================================= */
@media (max-width: 360px){
.hero-subtitle{
  font-size: 10px;
}
}
/* =========================================================
   HERO SLIDER
========================================================= */
.hero-right {
  align-self: center;
  width: clamp(90%, 500px, 100%);
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  perspective: 1400px;
  position: relative;
  margin: 0 auto;
}
.swiper {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: visible;
  padding: 1rem !important;
}
.swiper-slide {
  background-position: center;
  background-size: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;

  img{
    border-radius: var(--radius-lg);
  }
}
.slide-content{
  position: absolute;
}

@media (hover: hover) {
  .swiper-slide:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
  }
}
.swiper-slide::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: 0;
  right: 0;
  height: 40%;
  transform: scaleY(-1);
  opacity: 0.12;
  filter: blur(6px);
  border-radius: var(--radius-lg);
}

/* =========================================================
   MARQUEE SLIDER
========================================================= */
.is-marquee .marquee-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(30px, 6vw, 70px);
}
.is-marquee .marquee-slide img {
  width: 30px;
  border-radius: 50%;
}
.is-marquee .marquee-slide span {
  font-size: 1.2rem;
  font-weight: 500;
  margin-left: -50px;
}

/* =========================================================
   FEATURES SECTION
========================================================= */
.features-section {
  max-width: var(--container-width);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(40px, 6vw, 80px) 1rem;
  gap: 20px;
  margin: 0 auto;
  flex-wrap: wrap;

  a{
    text-decoration: none;
  }
}
.features-left {
  flex: 1 1 300px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}
.features-left h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 20px;
  line-height: 1.3;
  background: linear-gradient(135deg, #fff, var(--color-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.features-left p {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: var(--line-height-base);
}
.features-left button {
  padding: 14px 20px;
  border: none;
  border-radius: 100px;
  background: var(--color-primary);
  color: var(--color-text-white);
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (hover: hover) {
  .features-left button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-hover);
  }
}
.features-right {
  flex: 2 1 300px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}
.feature-card {
  background: var(--color-bg-card);
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(6, 182, 212, 0.2);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}
.feature-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-in-out;
}
@media (hover: hover) {
  .feature-card:hover {
    transform: translateY(-10px) scale(1.03) rotateX(5deg);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-primary);
  }
}
.feature-icon {
  width: 55px;
  height: 55px;
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: var(--color-bg-dark);
}
.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}
.feature-card p {
  /* color: var(--color-text-gray); */
  font-size: 1rem;
  line-height: var(--line-height-base);
}

.light-theme .feature-card {
  background-color: var(--color-text-light);
}

/* =========================================================
   FEATURES PAGE (Non-Sticky Layout) start
========================================================= */

.features-page {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: clamp(60px, 6vw, 100px) 1rem;
  text-align: center;
}

/* ---------- Features Grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 35px;
  justify-content: center;

  a{
    text-decoration: none;;
  }
}
/* =========================================================
   FEATURES PAGE (Non-Sticky Layout) end
========================================================= */

/* =========================================================
   TIMELINE / TRACKER
========================================================= */
.timeline-container {
  position: sticky;
  top: 0;
  max-height: 100vh;
  overflow-y: auto;
  padding: 40px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--color-bg-dark);
}
.timeline-container::-webkit-scrollbar {
  width: 10px;
}
.timeline-container::-webkit-scrollbar-track {
  background: #1e1e1e;
  border-radius: 10px;
}
.timeline-container::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 10px;
  transition: background 0.3s ease;
}
.timeline-container::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-light);
}
.timeline {
  position: relative;
  width: 90%;
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}
.track {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 82%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}
.track .fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12%;
  background: var(--color-primary);
  border-radius: 3px;
  transform: scaleY(0);
  transform-origin: top;
  animation: fillLine 2s ease-out forwards;
}
@keyframes fillLine {
  to {
    transform: scaleY(1);
  }
}
.dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
  background: var(--color-bg-card);
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  z-index: 3;
  animation: pulse 2.5s infinite;
  box-shadow: var(--shadow-soft);
}
.dot.completed {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(6, 182, 212, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0);
  }
}
.step {
  position: relative;
  width: 50%;
  padding: 30px;
  box-sizing: border-box;
}
.step.left {
  left: 0;
  text-align: right;
}
.step.right {
  left: 50%;
}
.content {
  display: inline-block;
  background: var(--color-bg-card);
  padding: 22px 26px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
  box-shadow: var(--shadow-soft);
  animation: fadeSlide 1s ease forwards;
  opacity: 0;
}
.step.left .content {
  border-left: none;
  border-right: 3px solid var(--color-primary);
}
.content{
h3 {
  margin: 0 0 10px;
  color: var(--color-primary);
  font-size: var(--font-size-md);
}
p{
  color: var(--color-text-dark);
}
}
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.step:nth-child(2) .content {
  animation-delay: 0.3s;
}
.step:nth-child(3) .content {
  animation-delay: 0.7s;
}
.step:nth-child(4) .content {
  animation-delay: 1.1s;
}
.step:nth-child(5) .content {
  animation-delay: 1.5s;
}

.light-theme .timeline-container{
  background: var(--color-bg-light) !important;
}

.light-theme .track {
  background: #00e0ff50;
}

.light-theme .dot{
  background-color: var(--color-bg-light);
}

.light-theme .dot.completed{
  background-color: var(--color-primary);
}

.light-theme .content{
  background-color: var(--color-text-light);
}


/* =========================================================
   TESTIMONIAL SECTION
========================================================= */
.testimonial-section {
  position: relative;
  max-width: var(--container-width) !important;
  margin: 0 auto;
  padding: 2rem 1rem;
  overflow: hidden;
  height: 600px;
}
.testimonial-section::before,
.testimonial-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 100px;
  pointer-events: none;
  z-index: 2;
}
.dark-theme .testimonial-section::before {
  top: 0;
  background: linear-gradient(to bottom, var(--color-bg-dark), transparent);
}
.dark-theme .testimonial-section::after {
  bottom: 0;
  background: linear-gradient(to top, var(--color-bg-dark), transparent);
}
.light-theme .testimonial-section::before {
  top: 0;
  background: linear-gradient(to bottom, var(--color-bg-light), transparent);
}
.light-theme .testimonial-section::after {
  bottom: 0;
  background: linear-gradient(to top, var(--color-bg-light), transparent);
}
.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.testimonial-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
  animation: scrollDown 25s linear infinite;
}
.testimonial-column.reverse {
  animation: scrollUp 25s linear infinite;
}
.testimonial {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 25px;
  text-align: left;
  font-size: var(--font-size-sm);
  line-height: var(--line-height-base);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dark-theme .testimonial {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-light);
}
.light-theme .testimonial {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--color-text-dark);
}
@media (hover: hover) {
  .testimonial:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
  }
}
.testimonial .stars {
  color: #ffb400;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial .author {
  font-weight: 600;
  font-size: var(--font-size-base);
  color: var(--color-primary);
}
.testimonial .role {
  font-size: 13px;
  opacity: 0.7;
}
@keyframes scrollDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes scrollUp {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

/* =========================================================
   PRICING PLAN
========================================================= */
.tab-container {
  display: inline-flex;
  background: var(--color-bg-section);
  border-radius: 30px;
  padding: 4px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.tab-btn {
  border: none;
  background: transparent;
  color: var(--color-text-muted);
  padding: 10px 30px;
  cursor: pointer;
  border-radius: 30px;
  font-size: var(--font-size-base);
  transition: all 0.3s ease;
}
.tab-btn.active {
  background: var(--color-primary);
  color: var(--color-text-white);
  box-shadow: var(--shadow-soft);
}
.plans {
  max-width: 1200px !important;
  display: grid;
  gap: 25px;
  padding: 0 1rem;
}

.plans-grid{
  display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 2fr));
}
.plan {
  background: var(--color-bg-section);
  border: 1px solid #333;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (hover: hover) {
  .plan:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
  }
}
.plan h3 {
  margin-top: 0;
  font-size: var(--font-size-lg);
}
.plan-hr {
  width: 100%;
  border: 1px solid var(--color-text-muted);
}

.price {
  font-size: var(--font-size-xl);
  color: var(--color-primary);
  margin: 10px 0 20px;
}
.price span {
  font-size: 18px;
  color: var(--color-text-light);
}
.features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  color: var(--color-text-gray);
}
.features li {
  margin: 8px 0;
}
.disable-plan {
  pointer-events: none;
  opacity: 0.5;
  filter: grayscale(40%);
}
.plan-discription {
  text-align: left;
}
.plan-details li {
  text-align: left;
}
.feature-list li.extra {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}
.feature-list li.extra.show {
  max-height: 100px;
  opacity: 1;
}
.toggle-text {
  color: var(--color-primary);
  cursor: pointer;
  text-decoration: underline;
}

/* =========================================================
   RESPONSIVE BREAKPOINTS
========================================================= */
@media (max-width: 1024px) {
  .hero-m-margin{
    margin-top: 40px !important;
  }

  .is-marquee .marquee-slide{
    gap: 60px;
  }

  .is-marquee .marquee-slide img{
    width: 25px;
    height: 25px;
  }
  .is-marquee .marquee-slide span{
    font-size: 0.9rem;
  }

  .step,
  .step.left,
  .step.right {
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .topbar-text{
    font-size: 0.7rem;
  }

  .features-section {
    flex-direction: column;
    padding: 60px 1rem;
  }
  .features-left,
  .features-right {
    width: 100%;
  }
  .features-left {
    position: relative;
    top: 0;
  }
  .timeline-container {
    padding: 20px 0;
  }
}
@media (max-width: 640px) {
  .tab-btn {
    padding: 8px 20px;
    font-size: 14px;
  }
  .testimonial-container {
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .features-left h2 {
    font-size: 1.8rem;
  }
  .feature-card {
    padding: 20px;
  }
  .plan {
    padding: 20px 15px;
  }
}
@media (min-width: 1440px) {
  body {
    font-size: 18px;
  }
}

/* =========================================================
   RESPONSIVE TIMELINE
========================================================= */

/* For tablets and smaller laptops (max-width: 992px) */
@media (max-width: 1024px) {
  .timeline {
    width: 95%;
    padding: 10px;
  }

  .step {
    padding: 20px;
    width: 100%;
  }

  .step.left,
  .step.right{
    width: 50%;
  }

  .content {
    padding: 18px 22px;
  }

  .content h3 {
    font-size: 1rem;
  }

  .content p {
    font-size: 0.9rem;
  }
}

/* For mobile devices (max-width: 768px) */
@media (max-width: 768px) {
  .track {
    left: 8%;
    width: 4px;
  }

  .dot {
    left: 8%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
  }

  .step {
    width: 100%;
    padding-left: 60px;
    padding-right: 10px;
    text-align: left;
  }

  .step.left,
  .step.right {
    left: 0;
    text-align: left;
    width: 100%;
  }

  .content {
    display: block;
    width: calc(100%);
    background: var(--color-bg-card);
    border-left: 3px solid var(--color-primary);
    border-right: none;
    padding: 16px 20px;
    margin-bottom: 30px;
  }

  .content h3 {
    font-size: 1rem;
  }

  .content p {
    font-size: 0.9rem;
  }

  .timeline {
    width: 100%;
    padding: 0 15px;
  }
}

/* For extra small phones (max-width: 480px) */
@media (max-width: 480px) {
  .timeline {
    padding: 0 15px;
  }
  .dot {
    width: 14px;
    height: 14px;
    left: 8.2%
  }

  .step {
    padding-left: 35px;
  }

  .content {
    padding: 14px 18px;
  }

  .content h3 {
    font-size: 0.95rem;
  }

  .content p {
    font-size: 0.85rem;
  }
}


/* =========================================================
   About Us hero section Start
========================================================= */
/* Container */
.about-hero {
  padding: 20px 20px 80px 20px ;
  transition: background 0.3s, color 0.3s;
}

.about-hero .container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}


/* Content */
.about-hero h1 {
  font-size: 3.5rem;
  line-height: 1.3;
  margin-bottom: 20px;
}
.about-hero p {
  margin-bottom: 50px;
}
.about-hero .btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s ease;
  background: var(--color-primary, #06b6d4);
  color: #fff;
  text-decoration: none;
}
.about-hero .btn:hover {
  background: var(--color-primary-light, #00e0ff);
}

/* Image */
.about-hero .about-image img {
  width: 80%;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}
.about-hero .about-image img:hover {
  transform: scale(1.03);
}

.about-reverse{
  grid-template-columns: 1fr 1.2fr !important;

  .about-image{
    width: 90%;
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .about-hero h1{
    font-size: 2.8rem;
  }
}

@media (max-width: 1024px) {
  .about-hero h1{
    font-size: 2.8rem;
  }

}

@media (max-width: 992px) {
  .about-hero .container {
    grid-template-columns: 1fr;
  }
  .about-reverse {
    grid-template-columns: 1fr !important;

    .about-image{
      order:2;
      width: 100%;
    }
    }

  .about-hero h1{
  font-size: 2.3rem;
  }   
}
@media (max-width: 768px) {
  .about-hero h1{
    font-size: 2rem;
  }

}
@media (max-width: 468px) {
  .about-hero h1{
    font-size: 1.9rem;
  }

}


/* =========================================================
   About Us Hero section End
========================================================= */
/* =========================================================
   before footer CTA Start
========================================================= */
/* CTA Section */
.cta-section {
  margin-top: 60px;
  font-family: sans-serif;
}

/* Top Bar */
.cta-top {
  background: var(--color-bg-dark);
  color: #fff;
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}

.cta-top p {
  margin: 0;
  font-size: 1rem;
}

/* Features Row */
.cta-features {
  background: var(--color-dark-green);
  color: var(--color-text-dark);
  display: flex;
  justify-content: space-around;
  gap: 20px;
  padding: 30px 20px;
  text-align: center;
  flex-wrap: wrap;
}

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

.feature i {
  font-size: 2rem;
  display: inline-block;
  color: var(--color-primary);
}

.feature p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--color-text-light);
}

.light-theme .cta-features {
  background: var(--color-text-dark);
  color: var(--color-text-light);
}

.light-theme .cta-top{
  background: var(--color-bg-light);
  color: var(--color-text-dark);
}

/* =========================================================
   before footer CTA End
========================================================= */
/* =========================================================
   Terms Of Service privacy policy breadcrumb start
========================================================= */
.breadcrumb {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 7rem;
  padding-bottom: 1rem;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li::after {
  content: "›";
  margin-left: 8px;
  color: var(--color-text-muted);
}

.breadcrumb li:last-child::after {
  content: "";
}

.breadcrumb a {
  text-decoration: none;
  color: var(--color-primary);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 400px){
  .breadcrumb{
    flex-direction: column;
    padding-top: 8rem;
  }
}

/* =========================================================
   Terms Of Service and pricvacy breadcrumb end
========================================================= */
/* =========================================================
   Terms Of Service and privacy policy section start
========================================================= */
.tos-section {
  max-width: var(--container-width);
  margin: 40px auto;
  padding: 30px 25px;
  background: #08334430;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.light-theme .tos-section {
  background: #08334404;
}

.tos-section h1 {
  text-align: center;
  margin-bottom: 40px;
}

.tos-section h2 {
  font-size: var(--font-size-lg);
  margin-top: 25px;
  margin-bottom: 15px;
}

.tos-section h3 {
  font-size: var(--font-size-md);
  color: var(--color-primary);
  margin-top: 15px;
  margin-bottom: 8px;
}

.tos-section p {
  font-size: var(--font-size-base);
  margin-bottom: 12px;
  line-height: 1.8;
}

.tos-section ol,
.tos-section ul {
  padding-left: 20px;
  margin-bottom: 15px;
  list-style-type: none;
}

.tos-section li {
  margin-bottom: 8px;
}

.tos-section li span {
  font-weight: 500;
  color: var(--color-primary);
}

/* Responsive */
@media (max-width: 768px) {
  .tos-section {
    padding: 20px 15px;
  }
  .tos-section h1 {
    font-size: clamp(24px, 5vw, 28px);
  }
  .tos-section h2 {
    font-size: clamp(20px, 4vw, 22px);
  }
}

/* =========================================================
   Terms Of Service and privacy policy section end
========================================================= */
/* =========================================================
   contact Us Page Start
========================================================= */
.contact-section {
  padding: 60px 20px;
  background: var(--color-bg-dark);
}

.contact-container {
  max-width: var(--container-width);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-heading {
  font-size: var(--font-size-xl);
  margin-bottom: 20px;
}

.brand {
  color: var(--color-primary);
}

.contact-points {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.contact-points li {
  margin: 10px 0;
}

.help-text {
  font-size: var(--font-size-sm);
  margin-bottom: 30px;
}

.help-text a {
  color: var(--color-primary);
  text-decoration: none;
}

.info-cards {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  margin-top: 5rem;
}

.card {
  flex: 1;
  background: var(--color-bg-card);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: 0.3s;
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.card h3 {
  font-size: var(--font-size-md);
  margin-bottom: 10px;
  color: var(--color-primary-light);
}

.contact-right .form-card {
  background: var(--color-bg-card);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.form-card h2 {
  margin-bottom: 20px;
  font-size: var(--font-size-xl);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: var(--radius-sm);
  border: 1px solid #444;
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}

.btn-submit {
  background: var(--color-primary);
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  width: 100%;
  font-size: var(--font-size-md);
  transition: 0.3s;
}

.btn-submit:hover {
  background: var(--color-primary-light);
  box-shadow: var(--shadow-hover);
}

/* Light Theme (auto apply when toggler is active globally) */
.light-theme .contact-section {
  background: var(--color-bg-light);
  color: var(--color-text-dark);
}

.light-theme input,
.light-theme select,
.light-theme textarea {
  background: var(--color-bg-light);
  color: var(--color-text-dark);
  border: 1px solid #ddd;
}

.light-theme .card {
  background: var(--color-text-light);
}
.light-theme .contact-right .form-card {
  background: var(--color-text-light);
}

/* Phone Number Field */
.phone-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.phone-group select {
  flex: 1;
}

.phone-group input {
  flex: 2;
}

/* submission message */
/* 🌙 Base Style for Message Box */
#formMessage {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: var(--radius-lg);
  display: none;
  transform: translateY(10px);
  transition: all 0.4s ease;
  letter-spacing: 0.3px;
}

/* ✨ Animation when visible */
#formMessage.show {
  display: inline-block;
  transform: translateY(0);
}

/* ✅ Success Message */
#formMessage.success {
  background: linear-gradient(90deg, #00e676, #00c853);
  color: var(--color-text-light);
  box-shadow: 0 0 15px rgba(0, 230, 118, 0.6);
}

/* ❌ Error Message */
#formMessage.error {
  background: linear-gradient(90deg, #ff5252, #d50000);
  color: var(--color-text-light);
  box-shadow: 0 0 15px rgba(255, 82, 82, 0.6);
}

/* ⏳ Loading Message */
#formMessage.loading {
  background: linear-gradient(90deg, #00bcd4, #0097a7);
  color:  var(--color-text-light);
  box-shadow: 0 0 15px rgba(0, 188, 212, 0.5);
}

/* ✨ Small pulse animation */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 10px rgba(255,255,255,0.1); }
  50% { box-shadow: 0 0 20px rgba(255,255,255,0.3); }
  100% { box-shadow: 0 0 10px rgba(255,255,255,0.1); }
}

#formMessage.show {
  animation: pulseGlow 2s ease-in-out infinite;
}


@media (max-width: 968px){
  .info-cards{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  .contact-container{
    grid-template-columns: 1fr;
  }
  .info-cards{
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 468px){
  .info-cards{
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   contact Us Page End
========================================================= */
/* =========================================================
   Faq page start
========================================================= */
.faq-search-section {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
  padding: 0 20px;
}

.faq-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-primary);
}

.faq-search-box input {
  width: 60%;
  max-width: 500px;
  padding: 12px 18px;
  border: 1px solid #ccc;
  border-radius: 30px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.faq-search-box input:focus {
  border-color: var(--color-primary, #06b6d4);
  box-shadow: 0 0 8px rgba(6, 182, 212, 0.3);
}

/* =========================================================
   Faq page end
========================================================= */
/* =========================================================
   Feedback page start
========================================================= */
/* Rating Stars */
.rating-group {
  margin: 15px 0;
}

.stars {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 5px;
}

.stars input {
  display: none;
}

.stars label {
  font-size: 24px;
  cursor: pointer;
  transition: color 0.2s;
}

.stars input:checked ~ label,
.stars label:hover,
.stars label:hover ~ label {
  color: #ffcc00;
}

/* Radio Buttons Group */
.radio-group {
  display: flex;
  justify-content: flex-start;
  width: fit-content;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 1rem;
}

.radio-group label {
  cursor: pointer;
  font-size: var(--font-size-sm);
}

.radio-group input {
  margin-right: 6px;
}

/* =========================================================
   Feedback page end
========================================================= */

/* =========================================================
   Blog PAGE start
========================================================= */
.blog-section {
  padding: 60px 20px;
  max-width: var(--container-width);
  margin: auto;
  position: relative;
  overflow: hidden;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 50px;
}

.blog-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}
.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-img img {
  transform: scale(1.08);
}

.blog-content {
  padding: 20px;
}
.blog-content h3 {
  font-size: var(--font-size-md);
  background: linear-gradient(90deg, #06b6d4, #0891b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}
.blog-content p {
  font-size: var(--font-size-sm);
  margin-bottom: 15px;
}
.read-more {
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}
.read-more:hover {
  color: #0891b2;
  transform: translateX(5px);
}

.light-theme .blog-card {
  background-color: var(--color-text-light);
}

/* =========================================================
   Blog PAGE end
========================================================= */
/* =========================================================
   Blog inner page start
========================================================= */
.blog-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

/* Blog Layout */
.blog-layout {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 40px;
}
@media (max-width: 900px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    margin-top: 60px;
  }
}

/* Hero Section */
.blog-hero {
  position: relative;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.blog-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
  transition: transform 0.6s ease;
}
.blog-hero:hover img {
  transform: scale(1.05);
}
.blog-hero-overlay {
  position: absolute;
  bottom: 30px;
  left: 40px;
  color: #fff;
}
.blog-title {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 5px;
  color: var(--color-text-light);
}
.blog-meta {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Blog Content */
.blog-content {
  line-height: 1.8;
  color: var(--color-text);
}
.blog-content h2 {
  color: #06b6d4;
  margin-top: 40px;
  font-size: 1.4rem;
}
.blog-content p {
  margin: 15px 0;
}
.blog-inline-image {
  width: 100%;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.blog-content blockquote {
  background: rgba(6, 182, 212, 0.1);
  border-left: 4px solid #06b6d4;
  padding: 20px;
  font-style: italic;
  margin: 30px 0;
  border-radius: 8px;
}
.blog-tags {
  margin-top: 30px;
}
.blog-tags span {
  display: inline-block;
  background: #06b6d4;
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  margin: 5px 10px 0 0;
}

/* Related Posts */
.related-posts {
  margin-top: 80px;
}
.related-posts h3 {
  font-size: 1.4rem;
  margin-bottom: 30px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.related-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.related-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}
.related-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.related-card h4 {
  padding: 16px;
  font-size: 1rem;
  color: #06b6d4;
}
.related-card a {
  display: inline-block;
  padding: 0 16px 16px;
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.related-card a:hover {
  color: #0891b2;
  transform: translateX(4px);
}

.light-theme .related-card {
  background-color: var(--color-text-light);
}

/* Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}
.sidebar-widget {
  background: var(--color-bg-card);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  padding: 24px;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}
.sidebar-widget:hover {
  transform: translateY(-3px);
}
.sidebar-widget h3 {
  font-size: 1.1rem;
  background: linear-gradient(90deg, #06b6d4, #0891b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.light-theme .sidebar-widget {
  background-color: var(--color-text-light);
}

/* Search Widget */
.search-widget form {
  display: flex;
  gap: 10px;
}
.search-widget input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
}
.search-widget button {
  height: 100%;
  background: #06b6d4;
  color: #fff;
  border: none;
  padding: 12px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.search-widget button:hover {
  background: #0891b2;
}

/* Categories */
.category-list {
  list-style: none;
  padding: 0;
}
.category-list li {
  margin-bottom: 10px;
}
.category-list a {
  text-decoration: none;
  color: var(--color-text);
  transition: color 0.3s ease;
}
.category-list a:hover {
  color: #06b6d4;
}

/* Recent Posts */
.recent-posts .recent-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.recent-posts img {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
}
.recent-posts a {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--color-text);
  transition: color 0.3s ease;
}
.recent-posts a:hover {
  color: #06b6d4;
}

/* Tags */
.tag-list a {
  display: inline-block;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  margin: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.tag-list a:hover {
  background: #06b6d4;
  color: #fff;
}

/* =========================================================
   Site Generator Page Start
========================================================= */

.spg-hero {
  background: linear-gradient(
    90deg,
    var(--color-dark-green),
    var(--color-primary)
  );
  padding: 80px 20px 60px;
  position: relative;
  overflow: hidden;
}
.spg-hero-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}
.spg-hero-left {
  flex: 1 1 520px;
  color: #fff;
  min-width: 220px;

  span{
    color: var(--color-primary);
    text-transform: uppercase;
    font-weight: 600;
  }
}

.spg-hero-left h1 {
  font-size: clamp(26px, 3.8vw, 44px);
  margin: 8px 0 18px;
  line-height: 1.05;
  color: #fff;
}


/* hero right illustration */
.spg-hero-right {
  flex: 0 1 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 220px;
}
.spg-hero-right img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  box-shadow: var(--shadow-hover);
  transform: translateY(0);
  transition: transform 0.6s ease;
}
.spg-hero-right img:hover {
  transform: translateY(-6px) scale(1.02);
}

/* container sections */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* center title */
.center-title {
  text-align: center;
  color: var(--color-primary);
  font-size: var(--font-size-xl);
  margin-bottom: 18px;
}

/* INTRO */
.spg-intro {
  text-align: center;
  padding: 30px 20px 10px;
}

/* Steps (zig-zag) */
.spg-steps {
  padding: 40px 20px 10px;
}
.step-row {
  display: flex;
  gap: 28px;
  align-items: center;
  margin: 32px 0;
  flex-wrap: wrap;
}
.step-row.reverse {
  flex-direction: row-reverse;
}
.step-media,
.step-content {
  flex: 1 1 420px;
  min-width: 220px;
}
.step-media img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 320px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s ease;
}
.step-media img:hover {
  transform: scale(1.03);
}
.step-content {
  background: var(--color-bg-card);
  padding: 28px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  color: var(--color-text-light);
}
.step-content h3 {
  font-size: var(--font-size-lg);
}

.step-number {
  display: inline-block;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-primary-light)
  );
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  text-align: center;
  line-height: 46px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* WHY GRID */
.spg-why {
  padding: 50px 20px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  max-width: var(--container-width);
  margin: 50px auto 0;
  padding: 40px 0;
}
.why-card {
  background: var(--color-bg-card);
  padding: 22px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
  color: var(--color-text-light);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.why-card h4 {
  font-size: var(--font-size-md);
}
.why-card p {
  margin-top: 8px;
}

/* BUILT FOR */
.spg-built {
  padding: 40px 20px;
  text-align: center;
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.02), transparent);
}
.spg-extras {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin-top: 20px;
  max-width: 900px;
}

/* CTA */
.spg-cta {
  padding: 60px 20px;
  text-align: center;
  margin-top: 24px;
}
.cta-inner {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--color-dark-green),
    var(--color-primary)
  );
  color: var(--color-text-light);
  padding: 36px 44px;
  border-radius: 14px;
  box-shadow: var(--shadow-hover);
}

/* responsive */
@media (max-width: 1024px) {
  .step-media img {
    height: 260px;
  }
  .spg-hero-inner {
    gap: 18px;
  }
  .spg-hero-right {
    order: 3;
  }
  .why-grid{
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 768px){
    .spg-hero-inner{
    grid-template-columns: 1fr;
    place-items: flex-start;
  }
  .why-grid{
    grid-template-columns: 1fr;
  }

}

@media (max-width: 468px){

}

.light-theme .spg-hero {
  background: linear-gradient(
      135deg,
      rgba(6, 182, 212, 0.04),
      rgba(6, 182, 212, 0.02)
    ),
    linear-gradient(90deg, #e6f8fb, #d9fbff);
  color: #083344;
}
.light-theme .spg-hero-left h1 {
  color: var(--color-dark-green);
}
.light-theme .spg-hero-left p {
  color: var(--color-text-dark);
}
.light-theme .spg-hero-right img {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.light-theme .step-content,
.light-theme .why-card {
  background: var(--color-text-light);
  color: var(--color-text-dark);
}

.light-theme .cta-inner{
  background: var(--color-text-light);

  p{
    color: var(--color-text-dark)
  }
}

[data-anim] {
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.7s cubic-bezier(0.2, 0.9, 0.3, 1);
}
[data-anim].in-view {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================================
   Site Generator Page end
========================================================= */

/* =========================================================
   Job & Task Tracker Page Start
========================================================= */
.job-f-icon-bg{
  background-color: var(--color-primary);
  display: inline-block;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  color: var(--color-bg-card);

  i{
    font-size: 2rem;
  }
}
/* =========================================================
   Job & Task Tracker Page End
========================================================= */