@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --tp-primary: #fe853f;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  height: 200vh; /* temporary for scroll testing */
  background: #f9f9f9;
}

/* --- Navbar --- */
/* --- Navbar --- */
.navbar {
  transition: all 0.3s ease;
  padding: 1rem 0;
  backdrop-filter: blur(10px);
}

.navbar-transparent {
  background: transparent !important;
}

.navbar-scrolled {
  background: rgba(255, 255, 255, 0.9) !important; /* translucent */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 0.6rem 0;
  backdrop-filter: blur(10px);
}

.navbar-transparent .navbar-brand,
.navbar-transparent .nav-link {
  color: #fff !important;
}

.navbar-scrolled .navbar-brand,
.navbar-scrolled .nav-link {
  color: #111 !important;
}


.navbar-transparent .navbar-brand,
.navbar-transparent .nav-link {
  color: #fff !important;
}

.navbar-scrolled .navbar-brand,
.navbar-scrolled .nav-link {
  color: #111 !important;
}

.nav-link {
  font-weight: 500;
  margin: 0 0.6rem;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--tp-primary) !important;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

.btn-tp-primary {
  background-color: var(--tp-primary);
  color: #fff !important;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.25s;
}

.btn-tp-primary:hover {
  background-color: #e46b25;
}

.hero-section {
  position: relative;
  height: 100vh;
  background: url("../images/hero-image.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 20px;
  color: #fff;
  animation: fadeInUp 1.5s ease-in-out;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}

.hero-title .highlight {
  background: linear-gradient(90deg, #FE853F, #E7D8BB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtext {
  font-size: 1.2rem;
  color: #eaeaea;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 14px 34px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.hero-btn.primary {
  background: linear-gradient(90deg, #FE853F, #E7D8BB);
  color: #0b0f19;
  box-shadow: 0 0 20px rgba(254, 133, 63, 0.5);
}

.hero-btn.primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(231, 216, 187, 0.6);
}

.hero-btn.secondary {
  border: 2px solid #E7D8BB;
  color: #E7D8BB;
}

.hero-btn.secondary:hover {
  background: #E7D8BB;
  color: #0b0f19;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: auto;
    padding: 120px 0;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-subtext {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero-btn {
    width: 80%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.9rem;
  }
  .hero-subtext {
    font-size: 0.95rem;
  }
}


/* --- GLOBAL STYLES FOR COMPANY + PRODUCT OVERVIEW --- */
.overview-section {
  position: relative;
  background: linear-gradient(180deg, #111827 0%, #0b0f19 100%);
  color: #E7D8BB;
  padding: 120px 0;
  overflow: hidden;
}

.overview-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.overview-container.reverse {
  flex-direction: row-reverse;
}

.overview-content {
  flex: 1;
  animation: fadeInUp 1.5s ease-in-out;
}

.overview-content h2 {
  font-size: 2.5rem;
  font-weight: 600;
  background: linear-gradient(90deg, #FE853F, #E7D8BB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.overview-content p {
  font-size: 1.1rem;
  color: #e7d8bbcc;
  line-height: 1.8;
  margin-bottom: 30px;
}

.btn-learn {
  display: inline-block;
  background: linear-gradient(90deg, #FE853F, #E7D8BB);
  color: #0b0f19;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(254, 133, 63, 0.5);
}

.btn-learn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(231, 216, 187, 0.6);
  background: linear-gradient(90deg, #E7D8BB, #FE853F);
}

/* FLOATING VISUALS */
.overview-visual {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.animated-blob {
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle at 30% 30%, rgba(254,133,63,0.35), rgba(231,216,187,0.25));
  border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%;
  filter: blur(90px);
  animation: blobMove 9s ease-in-out infinite;
  z-index: 1;
}

.floating-ai {
  position: relative;
  z-index: 2;
  animation: floatAI 4s ease-in-out infinite;
  filter: drop-shadow(0 0 15px rgba(254, 133, 63, 0.6));
}

/* ANIMATIONS */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes blobMove {
  0%, 100% {
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%;
    transform: scale(1);
  }
  50% {
    border-radius: 40% 60% 70% 30% / 60% 40% 60% 50%;
    transform: scale(1.1);
  }
}

@keyframes floatAI {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .overview-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .overview-container.reverse {
    flex-direction: column;
  }

  .overview-content h2 {
    font-size: 2rem;
  }

  .overview-content p {
    font-size: 1rem;
  }

  .animated-blob {
    width: 250px;
    height: 250px;
  }

  .floating-ai {
    width: 100px;
    height: 100px;
  }
}

/* Key Features Section */
.key-features {
  background: linear-gradient(180deg, #fffaf5 0%, #fff 100%);
  padding: 100px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Animated glowing blobs for subtle depth */
.key-features::before,
.key-features::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  animation: floatBlob 10s ease-in-out infinite alternate;
}

.key-features::before {
  width: 250px;
  height: 250px;
  top: 5%;
  left: 10%;
  background: #fe853f;
  animation-delay: 1s;
}

.key-features::after {
  width: 200px;
  height: 200px;
  bottom: 10%;
  right: 15%;
  background: #e7d8bb;
}

@keyframes floatBlob {
  from { transform: translateY(0px) scale(1); }
  to { transform: translateY(-20px) scale(1.1); }
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 60px;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  justify-items: center;
}

.feature-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 50px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  max-width: 320px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(254, 133, 63, 0.3);
}

.feature-icon {
  background: #fe853f;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 40px;
  margin: 0 auto 20px;
  box-shadow: 0 0 30px rgba(254, 133, 63, 0.4);
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.feature-card h3 {
  font-size: 1.2rem;
  color: #222;
  font-weight: 600;
  line-height: 1.4;
}

/* Responsive design */
@media (max-width: 768px) {
  .key-features {
    padding: 70px 20px;
  }
  .section-title {
    font-size: 2rem;
  }
  .feature-card {
    padding: 40px 20px;
  }
}
/* AI Tools Section */
@keyframes float1 {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-15px) rotate(10deg); }
    }
    @keyframes float2 {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(10px) rotate(-10deg); }
    }
    @keyframes float3 {
      0%, 100% { transform: translate(0, 0); }
      50% { transform: translate(10px, -10px); }
    }
    @keyframes float4 {
      0%, 100% { transform: translate(0, 0); }
      50% { transform: translate(-10px, 10px); }
    }

    @media (max-width: 600px) {
      .ai-tools-section h2 {
        font-size: 1.6rem !important;
      }
      #toolDesc {
        font-size: 1rem !important;
        padding: 20px !important;
      }
      #smartBtn, #chatBtn {
        padding: 8px 14px !important;
      }
    }

    /* ===========================
   WHO IS THIS PRODUCT FOR
=========================== */
.target-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom right, #fff9f3, #fef5ee);
  padding: 80px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.target-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.target-section .subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

/* Floating Background Icons */
.floating-icons i {
  position: absolute;
  opacity: 0.1;
  color: #fe853f;
  animation: float 10s ease-in-out infinite;
}

.floating-icons i:first-child {
  font-size: 90px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-icons i:last-child {
  font-size: 100px;
  bottom: 15%;
  right: 15%;
  animation-delay: 3s;
}

/* Floating Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Cards Layout */
.target-cards {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

/* Individual Card */
.target-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
  width: 280px;
  transition: all 0.4s ease;
  cursor: default;
}

.target-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(254, 133, 63, 0.25);
}

/* Card Icon */
.icon-circle {
  background: #fe853f;
  color: #fff;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon-circle i {
  font-size: 30px;
}

/* Card Text */
.target-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.target-card p {
  color: #555;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 700px) {
  .target-section h2 {
    font-size: 1.6rem;
  }

  .target-section .subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .target-card {
    width: 90%;
  }
}

/* ===========================
   GET STARTED SECTION
=========================== */
.get-started-section {
  background: linear-gradient(135deg, #0d1b2a, #1b263b);
  color: #fff;
  padding: 90px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

.get-started-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(254,133,63,0.2) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  z-index: 0;
  animation: pulseGlow 6s ease-in-out infinite alternate;
}

.get-started-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(231,216,187,0.15) 0%, transparent 70%);
  bottom: -150px;
  right: -150px;
  z-index: 0;
  animation: pulseGlow 6s ease-in-out infinite alternate-reverse;
}

@keyframes pulseGlow {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.2); opacity: 1; }
}

.get-started-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.get-started-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.get-started-content p {
  font-size: 1.1rem;
  color: #e7d8bb;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* Buttons */
.get-started-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.btn-demo, .btn-learn {
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-demo {
  background: #fe853f;
  color: #fff;
  box-shadow: 0 0 15px rgba(254,133,63,0.4);
}

.btn-demo:hover {
  background: #ff965a;
  transform: translateY(-4px);
}

.btn-learn {
  background: transparent;
  border: 2px solid #fe853f;
  color: #fe853f;
}

.btn-learn:hover {
  background: #fe853f;
  color: #fff;
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 700px) {
  .get-started-content h2 {
    font-size: 1.6rem;
  }
  .get-started-content p {
    font-size: 1rem;
  }
}

/* ===========================
   FAQ SECTION
=========================== */
.faq-section {
  background-color: #fff;
  padding: 100px 20px;
  font-family: "Poppins", sans-serif;
  position: relative;
  z-index: 1;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-container h2 {
  font-size: 2rem;
  color: #0d1b2a;
  font-weight: 700;
}

.faq-subtitle {
  color: #6c757d;
  margin-bottom: 50px;
  font-size: 1rem;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e7d8bb;
  transition: all 0.3s ease;
  background: #fff;
}

.faq-item:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: #f9f9f9;
  color: #0d1b2a;
  border: none;
  padding: 18px 20px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  position: relative;
  transition: all 0.3s ease;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.4rem;
  color: #fe853f;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  text-align: left;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 15px 20px 20px 20px;
  border-top: 1px solid #e7d8bb;
}

.faq-answer p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

/* Animation for smooth opening */
.faq-answer p {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 700px) {
  .faq-container h2 {
    font-size: 1.6rem;
  }
  .faq-question {
    font-size: 1rem;
  }
  .faq-answer p {
    font-size: 0.9rem;
  }
}
/* ===== FOOTER STYLES ===== */
.site-footer {
  background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
  padding: 60px 0 25px 0;
  border-top: 1px solid #e5e7eb;
  font-family: 'Poppins', sans-serif;
  color: #111;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-btn {
  display: inline-block;
  background-color: #ff7a2f;
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-btn:hover {
  background-color: #ff6210;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 25px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid #111;
  border-radius: 50%;
  color: #111;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background-color: #111;
  color: #fff;
}

/* Center Column */
.footer-column.center {
  text-align: center;
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #444;
}

.footer-contact i {
  color: #ff7a2f;
  margin-right: 10px;
}

/* Right Column */
.footer-column.right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  text-align: right;
}

.footer-column.right a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-column.right a:hover {
  color: #ff7a2f;
}

/* Bottom */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: #444;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #111;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff7a2f;
}

hr {
  margin: 40px 0 20px 0;
  border: none;
  border-top: 1px solid #e5e7eb;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-column.right {
    align-items: center;
    text-align: center;
  }
}

/* ===== PRODUCT FEATURES SECTION Product Page===== */
.product-features {
  padding: 100px 20px;
  background: #fff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  justify-content: center;
}

.feature-card {
  background: #fafafa;
  padding: 40px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f1f1f1;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.icon-box {
  background-color: #fe853f;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 28px;
  transition: all 0.3s ease;
}

.feature-card:hover .icon-box {
  transform: rotate(10deg) scale(1.05);
}

.feature-card h3 {
  font-size: 1.2rem;
  color: #111;
  margin-bottom: 12px;
  font-weight: 600;
}

.feature-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .product-features {
    padding: 70px 15px;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

/* ===== PRODUCT BENEFITS SECTION ===== */
.product-benefits {
  padding: 100px 20px;
  background: #f9f6f1; /* soft beige contrast background */
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.product-benefits .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.product-benefits .section-subtitle {
  font-size: 1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 50px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  justify-content: center;
}

.benefit-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f1f1f1;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.benefit-card .icon-box {
  background-color: #fe853f;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 28px;
  transition: all 0.3s ease;
}

.benefit-card:hover .icon-box {
  transform: rotate(10deg) scale(1.05);
}

.benefit-card h3 {
  font-size: 1.2rem;
  color: #111;
  margin-bottom: 12px;
  font-weight: 600;
}

.benefit-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .product-benefits {
    padding: 70px 15px;
  }

  .product-benefits .section-title {
    font-size: 1.8rem;
  }
}
/* ===== COMPARISON SECTION ===== */
.comparison-section {
  position: relative;
  background: #ffffff;
  padding: 100px 20px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.comparison-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.comparison-section .section-subtitle {
  font-size: 1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 60px;
}

.comparison-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.comparison-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.compare-left,
.compare-right {
  padding: 40px 25px;
  text-align: left;
  transition: all 0.3s ease;
}

.compare-left {
  background-color: #f3f3f3;
  border-right: 2px solid #fff;
}

.compare-right {
  background-color: #fff5ef;
}

.compare-left i,
.compare-right i {
  font-size: 26px;
  margin-bottom: 15px;
  color: #fe853f;
}

.compare-left h3,
.compare-right h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}

.compare-left p,
.compare-right p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.compare-left:hover,
.compare-right:hover {
  transform: translateY(-5px);
}

/* ===== FLOATING ICONS ===== */
.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.floating-icons i {
  position: absolute;
  color: rgba(254, 133, 63, 0.15);
  font-size: 40px;
  animation: float 10s infinite ease-in-out;
}

/* Position each icon randomly */
.icon1 { top: 10%; left: 15%; animation-delay: 0s; }
.icon2 { top: 30%; left: 75%; animation-delay: 2s; }
.icon3 { top: 60%; left: 20%; animation-delay: 4s; }
.icon4 { top: 80%; left: 60%; animation-delay: 6s; }
.icon5 { top: 45%; left: 50%; animation-delay: 8s; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
  50% { transform: translateY(-20px) rotate(15deg); opacity: 1; }
}

/* Responsive */
@media (max-width: 900px) {
  .comparison-item {
    grid-template-columns: 1fr;
  }
  .compare-left,
  .compare-right {
    border-right: none;
    text-align: center;
  }
  .comparison-section .section-title {
    font-size: 1.8rem;
  }
}
/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
  background: #fefaf6;
  padding: 100px 20px;
  position: relative;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.how-it-works .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.how-it-works .section-subtitle {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 60px;
}

.steps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.step {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  width: 200px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.icon-box {
  width: 70px;
  height: 70px;
  background: #fe853f;
  color: white;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}

.step:hover .icon-box {
  background: #e7d8bb;
  color: #fe853f;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* Arrow icons between steps */
.arrow {
  color: #fe853f;
  font-size: 24px;
  opacity: 0.7;
  animation: fadeIn 1.5s ease infinite alternate;
}

@keyframes fadeIn {
  from { opacity: 0.3; transform: translateX(0); }
  to { opacity: 1; transform: translateX(8px); }
}

/* Responsive layout */
@media (max-width: 1024px) {
  .steps-container {
    flex-direction: column;
    align-items: center;
  }
  .arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }
  .step {
    width: 80%;
    max-width: 350px;
  }
}

/* Vision & Mission Section */
.vision-mission-section {
  background: linear-gradient(135deg, #0a1a2f 0%, #112540 100%);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vision-mission-section::before,
.vision-mission-section::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(254, 133, 63, 0.08);
  border-radius: 50%;
  z-index: 0;
  animation: floatOrb 6s ease-in-out infinite alternate;
}
.vision-mission-section::before {
  top: -60px;
  left: -60px;
}
.vision-mission-section::after {
  bottom: -60px;
  right: -60px;
}

.section-title {
  font-size: 2.4rem;
  color: #fe853f;
  font-weight: 700;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.vision-mission-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.vm-card {
  background-color: #0f2340;
  border-radius: 18px;
  padding: 40px 30px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(254, 133, 63, 0.3);
}

.vm-icon {
  background-color: #fe853f;
  color: #fff;
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 30px;
}

.vm-card h3 {
  font-size: 1.6rem;
  color: #e7d8bb;
  margin-bottom: 15px;
}

.vm-card p {
  font-size: 1rem;
  color: #d5d5d5;
  line-height: 1.7;
}

.vm-card ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.vm-card ul li {
  color: #cfcfcf;
  font-size: 0.95rem;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.vm-card ul li::before {
  content: "•";
  color: #fe853f;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: -1px;
}

/* Floating Orb Animation */
@keyframes floatOrb {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(30px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .vision-mission-section {
    padding: 70px 15px;
  }
  .vm-card {
    text-align: center;
  }
  .vm-card ul li {
    text-align: left;
    display: inline-block;
  }
}
/* Problem We’re Solving Section */
/* Problem We’re Solving Section */
.problem-section {
  background: linear-gradient(120deg, #fff 0%, #f8f5ef 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.problem-section .section-title {
  color: #fe853f;
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 15px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.problem-section .section-subtitle {
  text-align: center;
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 50px;
  z-index: 2;
  position: relative;
}

.problem-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.problem-text {
  max-width: 800px;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.8;
  background: #ffffffb3;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.problem-text strong {
  color: #fe853f;
}

.btn-solve {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 32px;
  background-color: #fe853f;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-solve:hover {
  background-color: #e76e20;
  transform: translateY(-3px);
}

/* Floating Icons */
.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-icons i {
  position: absolute;
  font-size: 2.8rem;
  color: rgba(254, 133, 63, 0.15);
  animation: floatIcons 6s ease-in-out infinite alternate;
}

.floating-icons i:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.floating-icons i:nth-child(2) { top: 35%; right: 15%; animation-delay: 1s; }
.floating-icons i:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 2s; }
.floating-icons i:nth-child(4) { bottom: 10%; right: 25%; animation-delay: 3s; }

@keyframes floatIcons {
  0% { transform: translateY(0); opacity: 0.6; }
  100% { transform: translateY(-25px); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .problem-text {
    padding: 25px;
    font-size: 1rem;
  }

  .floating-icons i {
    font-size: 2rem;
  }
}

/* Why Choose Us Section */
.why-choose-section {
  background: linear-gradient(120deg, #001f3f 0%, #002b5c 100%);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-choose-section .section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fe853f;
  margin-bottom: 15px;
  z-index: 2;
  position: relative;
}

.why-choose-section .section-subtitle {
  font-size: 1.1rem;
  color: #ddd;
  max-width: 700px;
  margin: 0 auto 50px;
  z-index: 2;
  position: relative;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  z-index: 2;
  position: relative;
}

.choose-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 40px 25px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.choose-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-6px);
}

.choose-card i {
  font-size: 2.2rem;
  color: #fe853f;
  margin-bottom: 20px;
}

.choose-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.choose-card p {
  font-size: 1rem;
  color: #eee;
  line-height: 1.6;
}

.btn-why {
  display: inline-block;
  margin-top: 50px;
  background-color: #fe853f;
  color: #fff;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
}

.btn-why:hover {
  background-color: #e76e20;
  transform: translateY(-4px);
}

/* Floating Icons */
.why-choose-section .floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.why-choose-section .floating-icons i {
  position: absolute;
  font-size: 2.8rem;
  color: rgba(254, 133, 63, 0.1);
  animation: floatWhy 6s ease-in-out infinite alternate;
}

.why-choose-section .floating-icons i:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; }
.why-choose-section .floating-icons i:nth-child(2) { top: 30%; right: 15%; animation-delay: 1s; }
.why-choose-section .floating-icons i:nth-child(3) { bottom: 25%; left: 25%; animation-delay: 2s; }
.why-choose-section .floating-icons i:nth-child(4) { bottom: 15%; right: 20%; animation-delay: 3s; }

@keyframes floatWhy {
  0% { transform: translateY(0); opacity: 0.5; }
  100% { transform: translateY(-25px); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .choose-card {
    padding: 30px 20px;
  }

  .choose-card h3 {
    font-size: 1.1rem;
  }

  .choose-card p {
    font-size: 0.95rem;
  }

  .floating-icons i {
    font-size: 2rem;
  }
}

/* Terms and Conditions */
/* Terms and Conditions */
.terms-section {
  padding: 100px 20px;
  background: #f8fafc;
  color: #222;
  line-height: 1.7;
}

.terms-section h1 {
  font-size: 2.4rem;
  color: #002b5c;
  margin-bottom: 10px;
  text-align: center;
}

.terms-section .last-updated {
  text-align: center;
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 40px;
}

.terms-section h2 {
  font-size: 1.4rem;
  color: #fe853f;
  margin-top: 35px;
  margin-bottom: 10px;
}

.terms-section p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
}

.terms-section ul {
  margin-left: 20px;
  color: #333;
}

.terms-section li {
  margin-bottom: 8px;
}

.terms-section a {
  color: #fe853f;
  text-decoration: none;
}

.terms-section a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .terms-section {
    padding: 70px 15px;
  }

  .terms-section h1 {
    font-size: 2rem;
  }

  .terms-section h2 {
    font-size: 1.2rem;
  }
}
/* ===== PRIVACY POLICY STYLES ===== */

.privacy-hero {
  background: linear-gradient(135deg, #0a1f44, #123a73);
  color: #fff;
  text-align: center;
  padding: 100px 20px 70px;
}

.privacy-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.privacy-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 650px;
  margin: 0 auto;
}

.privacy-content {
  background: #f9fafc;
  padding: 80px 20px;
}

.policy-section {
  background: #fff;
  margin-bottom: 30px;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.policy-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.policy-section h2 {
  font-size: 1.5rem;
  color: #0a1f44;
  margin-bottom: 15px;
  position: relative;
}

.policy-section h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #007bff;
  display: block;
  margin-top: 8px;
  border-radius: 3px;
}

.policy-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 10px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.contact-list li {
  font-size: 1rem;
  color: #0a1f44;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-list i {
  color: #007bff;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .privacy-hero h1 {
    font-size: 2rem;
  }

  .policy-section {
    padding: 25px 20px;
  }

  .policy-section h2 {
    font-size: 1.3rem;
  }
}

/* === Modal Overlay === */
#bookDemo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  overflow-y: auto; /* ✅ entire popup scrolls */
  padding: 40px 20px;
  box-sizing: border-box;
}

/* === Modal Overlay === */
#bookDemo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: flex-start; /* ensures content starts from top */
  background: rgba(0, 0, 0, 0.65);
  z-index: 9999;
  overflow-y: auto; /* ✅ scroll entire popup if needed */
  padding: 40px 20px;
  box-sizing: border-box;
}

/* === Modal Content === */
#bookDemo .modal-content {
  background: #fff;
  border-radius: 16px;
  width: 90%;
  max-width: 1100px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  margin: auto;
  overflow: hidden;
}

/* === Close Button === */
#bookDemo .close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #333;
  cursor: pointer;
  z-index: 10;
  transition: color 0.3s;
}

#bookDemo .close:hover {
  color: #ff5a00;
}

/* === Left Section === */
.form-left {
  flex: 1 1 35%;  /* was 40% → slightly smaller left panel */
  background: #fff;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-left h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.form-left h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ff5a00;
}

.form-left p {
  margin-top: 15px;
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.form-left a {
  color: #00a3e0;
  text-decoration: none;
}

.form-left a:hover {
  text-decoration: underline;
}

/* === Right Section === */
.form-right {
  flex: 1 1 65%;  /* was 60% → give more space to the form */
  padding: 60px 50px;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.form-right h3 {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 20px;
}

/* === Scroll Area (Fix for mobile) === */
.form-scroll {
  overflow: visible; /* ✅ remove nested scroll */
  max-height: none;
}

/* === Form Styles === */
.form-group {
  margin-bottom: 18px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-row .form-group {
  flex: 1 1 calc(50% - 10px);
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: #333;
}

input,
textarea {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid #ccc;
  padding: 10px 0;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
  background: transparent;
}

input:focus,
textarea:focus {
  border-color: #ff5a00;
}

.btn-submit {
  background: #ff5a00;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 10px;
}

.btn-submit:hover {
  background: #e64a00;
}

/* === Responsive Fixes === */
@media (max-width: 992px) {
  #bookDemo .modal-content {
    flex-direction: column;
    width: 95%;
    margin: 60px auto;
  }

  .form-left,
  .form-right {
    flex: 1 1 100%;
    padding: 40px 25px;
  }

  #bookDemo .close {
    top: 12px;
    right: 18px;
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .form-left h1 {
    font-size: 1.7rem;
  }

  .form-left h2 {
    font-size: 1.5rem;
  }

  .form-right h3 {
    font-size: 1.1rem;
  }

  .btn-submit {
    width: 100%;
  }
}
/* Contact Box */
.contact-box {
  margin-top: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}

.contact-item:hover {
  transform: translateY(-3px);
}

.contact-item i {
  font-size: 28px;
  color: #ff5a00;
  margin-right: 20px;
}

.contact-item label {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}

.contact-item p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 3px 0 0;
}

.form-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .form-container {
    flex-direction: column !important;   /* stack vertically */
    padding: 20px !important;
    gap: 30px !important;
  }

  .form-left, 
  .form-right {
    width: 100% !important;
    padding: 0 !important;
  }
}

.success-popup {
  display: none;
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fe853f;
  color: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  font-size: 1rem;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.success-popup.show {
  opacity: 1;
}
