:root {
  --purple: var(--purple, #6a49f2);
  --dark-purple: var(--dark-purple, #32236f);
  --body-text-purple: var(--body-text-purple, #3e3f66);
  --text-white: var(--text-white, #fff);
  --bg-white: var(--bg-white, #fff);
  --card-radius: 16px;
  --ring: 0 0 0 3px rgba(106, 73, 242, 0.18);
  --shadow-md: 0 10px 30px rgba(50, 35, 111, 0.1);
  --shadow-lg: 0 18px 50px rgba(50, 35, 111, 0.16);
  --card-shadow: 0 10px 30px rgba(50, 35, 111, 0.08);
}

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

body {
  background-color: #ffffff;
  color: #222;
  line-height: 1.6;
}

/* Hero Section */
.hero2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  /* background: #0d1224; */
  /* background-image: url(/img/bg-img/bg-2.jpg); */
  color: white;
  flex-wrap: wrap;
}

.hero-content2 {
  flex: 1;
  min-width: 300px;
}

.hero2 h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1rem;
  max-width: 500px;
}

.hero-img2 img {
  width: 280px;
}

/* About Section - Responsive Fix */
.about {
  display: flex;
  justify-content: space-between;
  padding: 60px 10%;
  flex-wrap: wrap;
  gap: 20px;
}

.about-text,
.about-img {
  flex: 1 1 45%; /* allows shrinking and growing */
  min-width: 280px; /* prevents too small on mobile */
}

.about-text h3 {
  font-size: 2.5rem;
  font-weight: 600;
  padding-bottom: 20px;
  color: #32236f;
}

.about-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.about-img img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 70px;
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
  .about {
    flex-direction: column-reverse;
    align-items: center;
    padding: 40px 5%;
  }
  .breadcumb-area {
    height: 400px !important;
  }

  .about-text,
  .about-img {
    flex: 1 1 100%;
    min-width: 100%;
    text-align: center;
  }

  .about-img img {
    max-height: 300px;
  }

  .getintoch {
    flex-direction: column;
    padding: 40px 5%;
  }

  .signup-content,
  .form-container {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .signup-content h3 {
    font-size: 1.8rem;
  }
}

/* Features Section */
.features {
  text-align: center;
  padding: 70px 10%;
}

.features h3 {
  font-size: 3rem;
  font-weight: 600;
  color: #32236f;
}

.features p {
  margin: 10px auto 30px;
  max-width: 600px;
  color: #555;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.feature-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
  box-shadow: var(--card-shadow);

  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(50, 35, 111, 0.12);
}

.feature-card img {
  width: 50px;
  margin-bottom: 15px;
}

.feature-card h4 {
  color: #0d1224;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

/* Signup Section */
.getintoch {
  color: black;
  padding: 60px 10%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px; /* smaller gap looks cleaner */
  align-items: center;
  border: 2px solid #00000049;
  width: 95%;
  margin: 0 auto;
  border-radius: 10px;
}

.signup-content,
.form-container {
  flex: 1 1 45%; /* makes them share equal available space */
  max-width: 50%; /* optional: prevents one from growing too large */
}

.form-container {
  border-radius: 12px;
  padding: 40px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
  box-shadow: var(--card-shadow);
}

.signup-content h3 {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 600;
}

.signup-content ul {
  list-style: none;
  margin-bottom: 25px;
  padding-left: 0;
}

.signup-content li {
  margin: 8px 0;
  line-height: 1.5;
}

.partner-badge {
  display: block;
  margin: 20px 0 0;
  width: 100%;
  max-width: 240px;
  height: auto;
  background: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(13, 13, 50, 0.18);
}

.feedback-form {
  display: flex;
  flex-direction: column;
}

.feedback-form h3 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

.form-subtitle {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
}

.feedback-form input,
.feedback-form textarea {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background-color: #f8f8f8;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
  border-color: #6a49f2;
  background-color: #fff;
  outline: none;
}

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

.checkbox {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.checkbox input {
  margin-right: 8px;
}

.feedback-form button {
  background-color: #6a49f2;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.feedback-form button:hover {
  background-color: #5e3be7;
  transform: translateY(-2px);
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .content {
    flex-direction: column;
    align-items: center;
  }

  .form-container,
  .review {
    width: 100%;
  }
}

.btn {
  background: #6a49f2;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: background 0.3s;
}

.btn:hover {
  background: #6a49f2;
}

/* Video Section */
.video {
  padding: 70px 10%;
  text-align: center;
}

.video h3 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #32236f;
}
.video p {
  font-size: 1.5rem;
  color: #555;
  line-height: 1.6;
}

.video-container {
  margin-top: 25px;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero,
  .about {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-img img,
  .about-img img {
    margin-top: 25px;
  }
}

/* ================================================
   PAGE HERO BANNER (Lebanon-themed background)
   Shared across all zoho-solution/* pages
================================================ */
.zs-page-hero {
  position: relative;
  padding: 110px 8% 90px;
  text-align: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      rgba(5, 8, 22, 0.92) 0%,
      rgba(12, 18, 38, 0.86) 55%,
      rgba(20, 28, 56, 0.8) 100%
    ),
    url("https://images.unsplash.com/photo-1559494007-9f5847c49d94?auto=format&fit=crop&w=1900&q=80")
      center/cover no-repeat;
  background-color: #060912; /* fallback if remote image fails */
  background-attachment: fixed; /* parallax-style — the gradient stays sharp */
}

/* Disable fixed bg on iOS for performance */
@media (max-width: 768px) {
  .zs-page-hero {
    background-attachment: scroll;
  }
}

/* Bottom accent bar — bluish gradient (replaces old red flag bar) */
.zs-page-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    #35208f 0%,
    #6a49f2 30%,
    #38bdf8 55%,
    #6a49f2 80%,
    #35208f 100%
  );
  z-index: 1;
}

/* Soft glow accent */
.zs-page-hero::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  top: -150px;
  right: -150px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.zs-page-hero > * {
  position: relative;
  z-index: 2;
}

.zs-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #fff;
  backdrop-filter: blur(6px);
}

.zs-page-hero h1,
.zs-page-hero h2 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin: 0 auto 18px;
  max-width: 900px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.zs-page-hero h1 span,
.zs-page-hero h2 span {
  /* button-style vivid blue — solid, eye-catching, on dark navy hero */
  color: #8b6df5;
  background: linear-gradient(90deg, #8b6df5 0%, #6a49f2 50%, #5433d8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 24px rgba(59, 130, 246, 0.35);
}

.zs-page-hero h1::after,
.zs-page-hero h2::after {
  content: none;
}

.zs-page-hero p {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

.zs-page-hero p strong {
  color: #8b6df5;
}

.zs-hero-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.zs-hero-meta span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: #fff;
  backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
  .zs-page-hero {
    padding: 80px 6% 70px;
  }
  .zs-page-hero h1,
  .zs-page-hero h2 {
    font-size: 1.7rem;
  }
  .zs-page-hero p {
    font-size: 0.95rem;
  }
}

/* ================================================
   COMPACT 2-COLUMN FEEDBACK FORM
================================================ */
.feedback-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.feedback-form .form-row .field {
  display: flex;
  flex-direction: column;
}

.feedback-form .field label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #2a1a55;
}

.feedback-form .field-full {
  grid-column: 1 / -1;
}

.feedback-form input,
.feedback-form textarea {
  margin-bottom: 0; /* gap handles spacing */
  padding: 11px 12px;
  font-size: 0.92rem;
  border-radius: 8px;
}

.feedback-form textarea {
  min-height: 90px;
}

.feedback-form button {
  margin-top: 6px;
  padding: 12px;
  font-size: 0.95rem;
}

.form-container {
  padding: 28px 26px !important;
}

.form-container h3 {
  margin-bottom: 4px;
}

.form-container .form-subtitle {
  font-size: 0.88rem;
  margin-bottom: 18px;
}

@media (max-width: 600px) {
  .feedback-form .form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .form-container {
    padding: 22px 18px !important;
  }
}
