/* HEADER BASIC */
.saas-header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* DROPDOWN */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.arrow {
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* MENU */
.dropdown-menu {
  position: absolute;
  top: 130%;
  left: 0;
  min-width: 180px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown-menu a {
  display: block;
  padding: 12px 18px;
  color: #add100;
  font-size: 14px;
  transition: background 0.3s ease;
}

.dropdown-menu a:hover {
   color: #004d40;
   
}

/* HOVER EFFECT (DESKTOP) */
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .arrow {
  transform: rotate(180deg);
}

/* BUTTON */
.btn-primary {
  background: linear-gradient(to left, #799F0C, #FFE000);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
}


.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}


/* RESPONSIVE */
@media (max-width: 991px) {
  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: 260px;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    display: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  }

  .nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  /* Mobile dropdown */
  .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    position: static;
    transform: none;
    box-shadow: none;
  }

  .dropdown-menu {
    opacity: 1;
    visibility: visible;
    position: static;
    transform: none;
    display: none;
  }

  .nav-dropdown.active .dropdown-menu {
    display: block;
  }
}

/* Dropdown item layout */
.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

/* Icon style */
.dropdown-item i {
  font-size: 18px;
  color: #add100;
  background: rgba(0,77,64,0.08);
  padding: 10px;
  border-radius: 10px;
  min-width: 40px;
  text-align: center;
}

/* Text */
.dd-title {
  font-weight: 600;
  font-size: 14px;
  display: block;
}

.dropdown-item small {
  font-size: 12px;
  color: #777;
}

/* Hover */
 

.dropdown-item:hover i {
 
background: #add100;
 
 color: #fff;
}


.contact-hero {
   padding: 80px 20px;
  color: black;
}

.contact-hero-container {
 max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.contact-hero-content {
  flex: 1;
}

.contact-hero-content h1 {
  font-size: 44px;
  font-weight: 800;
  color: black;
  line-height: 1.2;
  margin-bottom: 15px;
}

.contact-hero-content p {
  margin: 22px 0 30px;
  font-size: 18px;
  color: #444;
}

/* QUICK INFO */
.contact-quick-info {
  display: flex;
  gap: 18px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.contact-info-item {
  padding: 10px 18px;
  border-radius: 30px;
  background: #f9f9f9;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  border: 1px solid #eee;
}

.contact-info-item a{
  color: #222;
  text-decoration: none;
} 
/* CTA */
.contact-hero-btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 40px;
  background: #add100;
  color: #000;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-hero-btn:hover {
  transform: translateY(-3px);
}

/* RIGHT VISUAL */
.contact-hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.contact-hero-box {
  background: #f9f9f9;
  padding: 40px 36px;
  border-radius: 22px;
  max-width: 360px;
  border-left: 5px solid #add100;
}

.contact-hero-box h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #111;
}

.contact-hero-box p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* TABLET */
@media (max-width: 992px) {
  .contact-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-quick-info {
    justify-content: center;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .contact-hero {
    padding: 70px 16px;
  }

  .contact-hero-content h1 {
    font-size: 28px;
  }

  .contact-hero-content p {
    font-size: 16px;
  }
}


.chat-availability-timeline {
  padding: 100px 20px;
  background: #ffffff;
  text-align: center;
}

.chat-container {
  max-width: 1100px;
  margin: auto;
}

/* TITLE */
.chat-title {
  font-size: 40px;
  font-weight: 800;
  color: #111;
  margin-bottom: 14px;
}

.chat-subtitle {
  font-size: 17px;
  color: #444;
  margin-bottom: 60px;
}

/* TIMELINE */
.chat-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-bottom: 50px;
}

.chat-time-block {
  background: #f9f9f9;
  padding: 30px 22px;
  border-radius: 20px;
  position: relative;
}

/* DOT */
.chat-dot {
  width: 16px;
  height: 16px;
  background: #add100;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 14px;
}

/* TEXT */
.chat-time-block h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #111;
}

.chat-time-block p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

/* CTA */
.chat-cta-btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 40px;
  background: #add100;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.chat-cta-btn:hover {
  transform: translateY(-3px);
}

/* TABLET */
@media (max-width: 992px) {
  .chat-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .chat-title {
    font-size: 28px;
  }

  .chat-subtitle {
    font-size: 15px;
  }

  .chat-timeline {
    grid-template-columns: 1fr;
  }
}


/* ===============================
   CONTACT HERO SECTION
================================ */
 

.contact-hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

 

.contact-hero-content p {
  font-size: 18px;
  color: black;
  margin-bottom: 25px;
}

.contact-quick-info {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.contact-info-item {
  background: rgba(255, 255, 255, 0.12);
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 14px;
  backdrop-filter: blur(6px);
  color: black;
}

 


/* CTA Button */
.contact-hero-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(to left, #7B920A, #ADD100);
  color: white;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
}

 

/* ===============================
   RIGHT FORM
================================ */
.contact-hero-form-wrapper {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 35px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.contact-hero-form h3 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 24px;
}

/* Inputs */
.contact-hero-form input,
.contact-hero-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.95);
}

.contact-hero-form textarea {
  resize: none;
}

/* Focus effect */
.contact-hero-form input:focus,
.contact-hero-form textarea:focus {
  box-shadow: 0 0 0 2px #00d1b2;
}

/* Submit Button */
.contact-form-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(to left, #7B920A, #ADD100);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form-btn:hover {
  background: linear-gradient(to left, #7B920A, #ADD100);
  transform: translateY(-2px);
}

/* ===============================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 992px) {
  .contact-hero-container {
    grid-template-columns: 1fr;
  }

  .contact-hero-content h1 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .contact-hero {
    padding: 60px 15px;
  }

  .contact-hero-content h1 {
    font-size: 28px;
  }

  .contact-hero-form-wrapper {
    padding: 25px;
  }
}



/* ================= About us css ================= */

/* HERO WRAPPER */
.mh-about-hero-wrap {
  padding: 80px 20px;
}

/* CONTAINER */
.mh-about-hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.mh-about-hero-tag {
  display: inline-block;
  color: #add100;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.mh-about-hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.mh-about-hero-highlight {
  color: #add100;
  position: relative;
}

.mh-about-hero-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 4px;
  background: #add100;
  border-radius: 2px;
}

.mh-about-hero-desc {
  font-size: 1.05rem;
  color: #555;
  max-width: 520px;
  margin-bottom: 32px;
}

/* ACTION BUTTONS */
.mh-about-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.mh-about-btn-primary {
  background: #add100;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mh-about-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(173, 209, 0, 0.4);
}

.mh-about-btn-outline {
  border: 2px solid #add100;
  color: #add100;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mh-about-btn-outline:hover {
  background: #add100;
  color: #fff;
}

/* RIGHT VISUAL */
.mh-about-hero-visual {
  display: grid;
  gap: 20px;
}

.mh-about-visual-card {
  padding: 24px;
  border-radius: 16px;
  background: #f8f8f8;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.mh-about-visual-accent {
  border-left: 6px solid #add100;
}

.mh-about-visual-card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.mh-about-visual-card p {
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .mh-about-hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mh-about-hero-visual {
    order: -1;
  }
}

@media (max-width: 480px) {
  .mh-about-hero-wrap {
    padding: 60px 16px;
  }

  .mh-about-hero-desc {
    font-size: 1rem;
  }
}

.journey-wrap {
  padding: 80px 20px;
}

.journey-container {
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.journey-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.journey-label {
  display: inline-block;
  color: #add100;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.journey-head h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin-bottom: 14px;
}

.journey-head p {
  color: #555;
  font-size: 1.05rem;
}

/* TIMELINE */
.journey-line {
  position: relative;
  margin-top: 40px;
  padding-left: 34px;
}

.journey-line::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  width: 4px;
  height: 100%;
  background: #add100;
  border-radius: 4px;
}

.journey-step {
  display: flex;
  gap: 24px;
  margin-bottom: 52px;
  position: relative;
}

.journey-dot {
  min-width: 46px;
  height: 46px;
  background: #add100;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(173, 209, 0, 0.4);
}

.journey-box {
  background: #f8f8f8;
  padding: 24px 26px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.journey-box h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.journey-box p {
  color: #666;
  font-size: 1rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .journey-line {
    padding-left: 22px;
  }

  .journey-step {
    gap: 16px;
  }

  .journey-box {
    padding: 20px 22px;
  }
}

@media (max-width: 480px) {
  .journey-wrap {
    padding: 60px 16px;
  }

  .journey-box h3 {
    font-size: 1.1rem;
  }
}
.mv-wrap {
  padding: 80px 20px;
}

.mv-container {
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.mv-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.mv-tag {
  display: inline-block;
  color: #add100;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.mv-head h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin-bottom: 14px;
}

.mv-head p {
  color: #555;
  font-size: 1.05rem;
}

/* GRID */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD */
.mv-card {
  background: #f8f8f8;
  padding: 36px 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-6px);
}

.mv-card.highlight {
  border-top: 6px solid #add100;
}

.mv-icon {
  width: 56px;
  height: 56px;
  background: #add100;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 24px;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(173, 209, 0, 0.4);
}

.mv-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.mv-card p {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mv-card {
    padding: 30px 24px;
  }
}

@media (max-width: 480px) {
  .mv-wrap {
    padding: 60px 16px;
  }

  .mv-card h3 {
    font-size: 1.25rem;
  }
}


.solution-wrap {
  padding: 80px 20px;
}

.solution-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.solution-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.solution-tag {
  display: inline-block;
  color: #add100;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.solution-head h2 {
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  margin-bottom: 14px;
}

.solution-head p {
  color: #555;
  font-size: 1.05rem;
}

/* GRID */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* CARD */
.solution-card {
  background: #f8f8f8;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-8px);
}

.solution-card.highlight {
  border-top: 6px solid #add100;
}

/* IMAGE */
.solution-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* BODY */
.solution-body {
  padding: 26px 24px;
}

.solution-body h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.solution-body p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .solution-img img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .solution-wrap {
    padding: 60px 16px;
  }
}

.whyrail-wrap {
  padding: 90px 20px;
}

.whyrail-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.whyrail-tag {
  color: #add100;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 12px;
}

.whyrail-content h2 {
  font-size: clamp(2.1rem, 3.6vw, 2.9rem);
  margin-bottom: 14px;
}

.whyrail-intro {
  color: #555;
  max-width: 520px;
  margin-bottom: 36px;
  font-size: 1.05rem;
}

.whyrail-points {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.whyrail-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.whyrail-dot {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 50%;
  background: #add100;
  box-shadow: 0 0 0 6px rgba(173, 209, 0, 0.15);
}

.whyrail-point h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.whyrail-point p {
  color: #666;
  font-size: 0.98rem;
  line-height: 1.6;
}

/* RIGHT */
.whyrail-visual {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.whyrail-image-box {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}

.whyrail-image-box img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.whyrail-highlight {
  background: #f8f8f8;
  padding: 24px;
  border-radius: 18px;
  border-left: 6px solid #add100;
}

.whyrail-highlight h3 {
  margin-bottom: 6px;
}

.whyrail-highlight p {
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .whyrail-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .whyrail-visual {
    order: -1;
  }
}

@media (max-width: 480px) {
  .whyrail-wrap {
    padding: 60px 16px;
  }

  .whyrail-image-box img {
    height: 240px;
  }
}

.valflow-wrap {
  padding: 90px 20px;
}

.valflow-container {
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.valflow-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.valflow-tag {
  color: #add100;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 12px;
}

.valflow-head h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin-bottom: 14px;
}

.valflow-head p {
  color: #555;
  font-size: 1.05rem;
}

/* LOOP DESIGN */
.valflow-loop {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.valflow-loop::before {
  content: "";
  position: absolute;
  inset: 20% 10%;
  border: 2px dashed rgba(173, 209, 0, 0.5);
  border-radius: 50%;
  z-index: -1;
}

/* NODE */
.valflow-node {
  text-align: center;
  padding: 24px 18px;
}

.valflow-dot {
  width: 16px;
  height: 16px;
  background: #add100;
  border-radius: 50%;
  margin: 0 auto 14px;
  box-shadow: 0 0 0 8px rgba(173, 209, 0, 0.15);
}

.valflow-node h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.valflow-node p {
  color: #666;
  font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .valflow-loop {
    grid-template-columns: repeat(2, 1fr);
  }

  .valflow-loop::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .valflow-wrap {
    padding: 60px 16px;
  }

  .valflow-loop {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}


.talkcta-wrap {
  padding: 100px 20px;
}

.talkcta-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: center;
}

/* LEFT */
.talkcta-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(173, 209, 0, 0.15);
  color: #000;
  font-weight: 600;
  margin-bottom: 16px;
}

.talkcta-message h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 18px;
}

.talkcta-message h2 span {
  color: #add100;
}

.talkcta-message p {
  max-width: 520px;
  font-size: 1.05rem;
  color: #555;
}

/* RIGHT */
.talkcta-choices {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.talkcta-choice {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 24px;
  border-radius: 22px;
  background: #f8f8f8;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.talkcta-choice:hover {
  transform: translateY(-6px);
}

.talkcta-choice.highlight {
  border-left: 6px solid #add100;
}

.talkcta-icon {
  width: 56px;
  height: 56px;
  background: #add100;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.talkcta-text h4 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.talkcta-text span {
  color: #666;
  font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .talkcta-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .talkcta-message p {
    margin: auto;
  }

  .talkcta-choice {
    justify-content: center;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .talkcta-wrap {
    padding: 70px 16px;
  }

  .talkcta-choice {
    flex-direction: column;
    text-align: center;
  }
}

/* ================================
   HERO SECTION BASE
================================ */
.uxs-hero-wrapper {
  padding: 15px 20px;
  background: #ffffff;
  overflow: hidden;
}

.uxs-hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}

/* ================================
   LEFT CONTENT
================================ */
.uxs-hero-content {
  animation: uxsFadeUp 0.8s ease-in-out;
}

.uxs-hero-title {
  font-size: 46px;
  line-height: 1.25;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 18px;
}

.uxs-hero-title span {
  color: #add100;
}

.uxs-hero-description {
  font-size: 18px;
  color: #475569;
  max-width: 520px;
  margin-bottom: 32px;
}

/* ================================
   BUTTONS
================================ */
.uxs-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.uxs-btn-primary {
  background: linear-gradient(to left, #799F0C, #FFE000);
  color: #fff;
  padding: 14px 34px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.uxs-btn-primary:hover {
  background: white;
  color: #add100;
  transform: translateY(-2px);
  border: 2px solid #add100;
}

.uxs-btn-secondary {
  border: 2px solid #add100;
  color: #add100;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.uxs-btn-secondary:hover {
  background: linear-gradient(to left, #799F0C, #FFE000);
  color: #fff;
}

/* ================================
   RIGHT IMAGE
================================ */
.uxs-hero-visual {
  text-align: center;
  animation: uxsFadeIn 1s ease-in-out;
}

.uxs-hero-visual img {
  width: 100%;
  /* max-width: 480px; */
  height: auto;
}

/* ================================
   ANIMATIONS
================================ */
@keyframes uxsFadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes uxsFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .uxs-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .uxs-hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .uxs-hero-actions {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .uxs-hero-title {
    font-size: 32px;
  }

  .uxs-hero-description {
    font-size: 16px;
  }
}


/* ===== SaaS Terms & Conditions Styles ===== */

.saas-terms-wrapper {
  background: #f4f7fb;
  padding: 60px 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.saas-terms-container {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 42px;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.saas-terms-heading {
  font-size: 36px;
  color: #0f172a;
  margin-bottom: 8px;
}

.saas-terms-updated {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 28px;
}

.saas-terms-description {
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 32px;
}

.saas-terms-section {
  margin-bottom: 32px;
}

.saas-terms-subheading {
  font-size: 22px;
  color: #020617;
  margin-bottom: 10px;
}

.saas-terms-text {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
}

.saas-terms-contact a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.saas-terms-contact a:hover {
  text-decoration: underline;
}

.saas-terms-footer {
  margin-top: 45px;
  padding-top: 22px;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  font-size: 14px;
  color: #64748b;
}

.saas-terms-footer a {
  color: #0f766e;
  font-weight: 600;
  text-decoration: none;
}

.saas-terms-footer a:hover {
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .saas-terms-container {
    padding: 26px;
  }

  .saas-terms-heading {
    font-size: 28px;
  }

  .saas-terms-subheading {
    font-size: 20px;
  }
}
