/* =============================================
   INSURANCE SOFTWARE DEVELOPMENT PAGE
   Follows exact design model of original site
   ============================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #333;
}

/* Base Typography Scaled Responsively */
h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 5vw, 53px);
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.3;
}

h3 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(20px, 3vw, 25px);
  font-weight: 600;
  line-height: 1.4;
}

h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.5;
}

p {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: #5E6570;
}

button { font-family: 'Roboto', sans-serif; font-weight: 500; }

/* Global Section Animation Enhancement */
section {
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
}

[data-aos] {
  transition-property: transform, opacity !important;
}


/* =============================================
   HEADER & NAV
   ============================================= */
header {
  background-color: #f9f9ff;
  padding: 0 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  height: 70px;
}

.logo { display: flex; align-items: center; z-index: 1001; }
.logo img { width: 124px; height: auto; }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-item { position: relative; }

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #4285f4;
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}
.nav-link:hover { color: #4285f4; }


.dropdown {
  position: absolute;
  top: 100%; left: 0;
  background: white;
  min-width: 220px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 10px 0;
}
.nav-item:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-item { list-style: none; }
.dropdown-link {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.dropdown-link:hover {
  background-color: #f8f9ff;
  color: #4285f4;
  padding-left: 25px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}
.hamburger {
  width: 25px; height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}
.mobile-toggle.active .hamburger:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
.mobile-toggle.active .hamburger:nth-child(2) { opacity: 0; }
.mobile-toggle.active .hamburger:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }

/* Focus States */
.nav-link:focus, .dropdown-link:focus, .mobile-toggle:focus {
  outline: 2px solid #4285f4;
  outline-offset: 2px;
}

/* =============================================
   HERO SECTION
   ============================================= */
body { padding-top: 70px; }

.wave {
  position: absolute;
  top: 70px; right: 0; bottom: 0;
  width: auto; height: calc(100vh - 70px);
  z-index: 1;
  margin-right: 800px;
}
.wave img {
  width: auto; height: 100%;
  object-fit: cover;
  object-position: left center;
}

.hero-illustration {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(calc(-50% + 35px));
  z-index: 2;
  margin: -15% 7%;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 60px;
  min-height: calc(100vh - 70px);
  position: relative;
  z-index: 3;
  max-width: 1620px;
  margin: 0 auto;
}

.heading {
  font-family: 'Poppins', sans-serif;
  color: mediumpurple;
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.description {
  font-family: 'Roboto', sans-serif;
  color: #5E6570;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 560px;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: mediumpurple;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  border-radius: 5px;
  transition: all 0.3s ease;
  min-width: 200px;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: pulse-glow 3s infinite;
}
.cta-button:hover {
  background-color: #4169E1;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(82,139,244,0.4);
}


@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(147, 112, 219, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(147, 112, 219, 0); }
  100% { box-shadow: 0 0 0 0 rgba(147, 112, 219, 0); }
}

/* Floating Animation for Illustrations */
.hero-illustration svg, .image-content1 svg, .image-wrap svg, .offer-image svg {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}


/* =============================================
   WHAT IS SECTION  (uber-clone-section)
   ============================================= */
.uber-clone-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  margin-top: 40px;
}

.content-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1440px;
  width: 100%;
  align-items: center;
  gap: 60px;
}

.text-contents { text-align: left; }
.text-contents h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #111827;
}
.text-contents p {
  font-size: 18px;
  line-height: 1.7;
  color: #5E6570;
}

.image-content1 {
  max-width: 100%;
  border-radius: 20px;
  display: flex;
  justify-content: center;
}

/* =============================================
   SERVICES TABS SECTION  (ai-container)
   ============================================= */
.ai-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 20px;
}

.top-title1 {
  color: mediumpurple;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ai-container h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #222;
  font-weight: 700;
}

.features-section1 {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* Tabs */
.tabs-container1 {
  flex: 1;
  max-width: 420px;
}

.tab {
  display: flex;
  align-items: center;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  background-color: white;
}
.tab.active { background-color: mediumpurple; color: white; }
.tab:hover:not(.active) {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border-color: mediumpurple;
}


.tab-icon {
  min-width: 44px; min-height: 44px;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 15px;
  flex-shrink: 0;
}
.tab.active .tab-icon { background-color: rgba(255,255,255,0.2); }
.tab.active .tab-icon svg rect { fill: rgba(255,255,255,0.15); }
.tab.active .tab-icon svg path,
.tab.active .tab-icon svg circle,
.tab.active .tab-icon svg line { stroke: white; }

.tab-content { margin-left: 5px; text-align: left; }
.tab-title { font-weight: 600; font-size: 17px; margin-bottom: 5px; }
.tab-desc { font-size: 14px; line-height: 1.5; display: none; }
.tab.active .tab-desc { display: block; color: rgba(255,255,255,0.9); }

/* Image container */
.image-container {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-container svg {
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  max-width: 100%;
}

.triangle {
  position: absolute;
  top: -20px; left: -20px;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, #e8f0fe 0%, transparent 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 0;
  border-radius: 10px;
}

/* =============================================
   BENEFITS SECTION
   ============================================= */
.benefits-section {
  text-align: center;
  padding: 0px 20px 60px;
  background-color: #ffffff;
  position: relative;
  /* margin-top: 60px; */
}

.curve-container {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: -30px;
}
.curve-svg {
  width: 40%;
  max-width: 500px;
  display: inline-block;
  height: 60px;
  margin-bottom: -10px;
}

.section-benefits-title {
  font-size: 48px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}
.section-subwords {
  font-size: 16px;
  color: #747980;
  margin-bottom: 50px;
}

.benefits-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #DAE3FF;
  box-shadow: 0 4px 6px rgba(0,0,0,0.08);
  padding: 28px;
  text-align: left;
  flex: 1 1 calc(33.333% - 30px);
  max-width: 320px;
  min-width: 260px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}
/* Enhanced Hover for Benefit Cards */
.benefits-container .benefit-card {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.benefits-container .benefit-card:hover {
  background-color: mediumpurple !important;
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(147, 112, 219, 0.4);
  border-color: mediumpurple !important;
}

.benefit-card:hover h3, 
.benefit-card:hover p,
.benefit-card:hover .tab-title,
.benefit-card:hover .tab-desc {
  color: #ffffff !important;
}

/* Specific SVG targeting for Benefit Icons */
.benefit-card:hover .icon svg circle {
  fill: rgba(255, 255, 255, 0.2) !important;
  stroke: #ffffff !important;
}

.benefit-card:hover .icon svg path {
  stroke: #ffffff !important;
}


.benefit-card .icon {
  width: 52px; height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 1.1rem;
  color: #111827;
  margin-bottom: 10px;
  font-weight: 600;
  transition: color 0.3s ease;
}
.benefit-card p {
  font-size: 0.92rem;
  color: #5E6570;
  line-height: 1.6;
  transition: color 0.3s ease;
}

/* SVG Transitions */
.benefit-card svg path, 
.benefit-card svg circle,
.feature-box svg path,
.feature-box svg circle,
.addon-item svg path {
  transition: all 0.3s ease;
}

/* =============================================
   WHY CHOOSE US SECTION
   ============================================= */
.why-choose-section {
  max-width: 1440px;
  margin: 80px auto;
  padding: 10px 40px;
}

.content-choose-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.text-content { text-align: left; order: 1; }

.section-title {
  color: #3E76FE;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1.5px;
  display: inline-block;
}
.main-heading-text {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 16px;
  line-height: 1.3;
}

.features-list { list-style: none; padding: 0; margin: 0; }




.features-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #38404A;
}
.list-content { width: 100%;
    border: 5px solid mediumpurple;
    padding: 3%;
}
.list-content h3 {
  font-size: 17px;
  color: #111827;
  margin-bottom: 5px;
  font-weight: 600;
  /* text-decoration: underline 1px; */
}
.list-content p { color: #5E6570; font-size: 14px; margin: 0; }

.image-content {
  display: flex;
  justify-content: center;
  align-items: center;
  order: 2;
}
.image-content svg { max-width: 100%; }

/* =============================================
   CUSTOM SOFTWARE SECTION (revenue-growth style)
   ============================================= */
.revenue-growth {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9ff;
}

.content-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  width: 100%;
}

.image-wrap {
  flex: 1;
  min-width: 300px;
  max-width: 480px;
}
.image-wrap svg { max-width: 100%; border-radius: 16px; }

.text-page { flex: 1; max-width: 580px; }

.subheading-text {
  color: #3E76FE;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.main-heading-text {
  font-size: 30px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.3;
}
.description-page {
  font-size: 17px;
  color: #5E6570;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* =============================================
   FEATURES SECTION (key features)
   ============================================= */
.features-section {
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.curve-container2 {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: -30px;
}
.curve-svg2 {
  width: 35%; max-width: 500px;
  display: inline-block;
  height: 60px;
  margin-bottom: -10px;
}

.section-title-features {
  font-size: 42px;
  color: #111827;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}
.section-description-features {
  font-size: 16px;
  color: #666;
  max-width: 640px;
  margin: 0 auto 50px auto;
  line-height: 1.7;
  text-align: center;
}

.features-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-box {
  background: #fff;
  border: 2px solid #C7D0F9;
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  width: 310px;
  max-width: 100%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}
/* Enhanced Hover for Feature Boxes */
.features-container .feature-box {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  position: relative;
  overflow: visible;
  will-change: transform;
}

/* Hover effect: Continuous zoom in/out pulse */
.features-container .feature-box:hover {
  animation: zoom-pulse 2s infinite ease-in-out;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  z-index: 10;
}

/* SVG shake only */
.features-container .feature-box:hover svg {
  display: inline-block;     /* important for transform */
  animation: shake 0.4s ease-in-out;
}

/* Shake animation for SVG */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  50% { transform: translateX(3px); }
  75% { transform: translateX(-3px); }
}

/* Zoom in/out pulse animation for the box */
@keyframes zoom-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}


.icon-container { margin-bottom: 18px; }
.feature-icon { width: 52px; height: 52px; }
.feature-title {
  font-size: 17px;
  color: #111827;
  margin-bottom: 10px;
  font-weight: 600;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}
.feature-description { 
  font-size: 14px; 
  color: #747980; 
  line-height: 1.6; 
  transition: color 0.3s ease;
}

/* =============================================
   WHAT WE OFFER SECTION
   ============================================= */
.offer-section {
  max-width: 1440px;
  margin: 50px auto 80px;
  padding: 0 40px;
}

.offer-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.offer-text { text-align: left; }
.subheading-offer {
  color: #3E76FE;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.main-heading-offer {
  font-size: 34px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.3;
}
.description-offer {
  font-size: 17px;
  color: #5E6570;
  margin-bottom: 24px;
  line-height: 1.6;
}

.offer-list { list-style: none; padding: 0; margin: 0; }

.offer-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.list-number {
  color: mediumpurple;
  font-weight: 700;
  font-size: 15px;
  min-width: 30px;
  margin-right: 12px;
  margin-top: 2px;
}

.offer-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-image svg { max-width: 100%; border-radius: 12px; }

/* =============================================
   PROCESS SECTION (addons-section style)
   ============================================= */
.addons-section {
  text-align: center;
  padding: 0px 20px;
  background-color: #f9f9ff;
  position: relative;
}

.curve-container3 {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: -30px;
}
.curve-svg3 {
  width: 30%; max-width: 500px;
  display: inline-block;
  height: 60px;
  margin-bottom: -10px;
}

.section-title2 {
  font-size: 42px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 16px;
  color: #747980;
  margin-bottom: 50px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.addons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.addon-item {
  background-color: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 1px solid #e8efff;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  cursor: pointer;
}
/* Enhanced Hover for Addon Items (Process Steps) */
.addons-grid .addon-item {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.addons-grid .addon-item:hover {
  transform: translateY(-15px) scale(1.02);
  background-color: mediumpurple !important;
  box-shadow: 0 25px 50px rgba(147, 112, 219, 0.4);
  border-color: mediumpurple !important;
}

.addon-item:hover .addon-title,
.addon-item:hover .addon-description {
  color: #ffffff !important;
}

/* Ensure the step numbers remain visible */
.addon-item:hover .process-step-num {
  background: #ffffff;
  color: mediumpurple;
}


.process-step-num {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: mediumpurple;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12px;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.addon-image {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 10px auto 0;
  display: block;
}
.addon-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin: 15px 0 10px;
  transition: color 0.3s ease;
}
.addon-description {
  font-size: 13px;
  color: #747980;
  line-height: 1.6;
  transition: color 0.3s ease;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
}

.faq-header { max-width: 700px; }
.faq-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1a1a2e;
  font-weight: 700;
}
.faq-subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #555;
  max-width: 400px;
  line-height: 1.6;
}

.faq-content {
  display: flex;
  flex-direction: column;
  max-width: 900px;
}

.faq-item {
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #e8efff;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.4rem;
  cursor: pointer;
  font-weight: 500;
  color: #1a1a2e;
  transition: background 0.2s;
}
.faq-question:hover { background-color: #f8f9ff; }

.faq-answer {
  padding: 0 1.4rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #5E6570;
  font-size: 15px;
  line-height: 1.7;
}
.faq-answer.active {
  max-height: 300px;
  padding: 0 1.4rem 1.4rem;
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid #c5cef5;
  color: #c5cef5;
  margin-left: 1rem;
  font-size: 16px;
  transition: all 0.2s;
}
.faq-toggle.active {
  border-color: mediumpurple;
  color: mediumpurple;
  background-color: #e8f0fe;
}

/* =============================================
   FOOTER
   ============================================= */
.cr-footer {
  background: #f9f9ff;
  border-top: 1px solid #e8efff;
  margin-top: 0px;
}
.cr-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 40px 30px;
}

.cr-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.cr-footer__col h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cr-footer__desc {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.cr-footer__social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.cr-footer__social-icons a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  /* background: #e8f0fe; */
  border-radius: 8px;
  color: #4285f4;
  text-decoration: none;
  transition: all 0.2s;
}
.cr-footer__social-icons a:hover {
  background: mediumpurple;
  color: white;
  transform: translateY(-2px);
}
.cr-footer__social-icons svg { width: 18px; height: 18px; }

.cr-footer__list { list-style: none; padding: 0; }
.cr-footer__list li { margin-bottom: 10px; }
.cr-footer__list a {
  color: #666;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s;
}
.cr-footer__list a:hover { color: #4285f4; padding-left: 4px; }

.cr-footer__contact-list { list-style: none; padding: 0; }
.cr-footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.cr-footer__contact-icon {
  width: 32px; height: 32px;
  min-width: 32px;
  border-radius: 8px;
  /* background: #e8f0fe; */
  color: #4285f4;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.cr-footer__contact-icon svg { width: 16px; height: 16px; }
.cr-footer__contact-text strong {
  display: block;
  font-size: 12px;
  color: #1a1a2e;
  font-weight: 600;
  margin-bottom: 2px;
}
.cr-footer__contact-text a,
.cr-footer__contact-text { font-size: 12px; color: #666; text-decoration: none; line-height: 1.5; }
.cr-footer__contact-text a:hover { color: #4285f4; }

.cr-footer__divider { border: none; border-top: 1px solid #e0e7ff; margin: 20px 0; }

.cr-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.cr-footer__disclaimer h5 {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 6px;
}
.cr-footer__disclaimer p { font-size: 12px; color: #888; line-height: 1.6; }

.cr-footer__copyright {
  text-align: center;
  font-size: 13px;
  color: #888;
  padding: 10px 0;
}

/* =============================================
   RESPONSIVE DESIGN SYSTEM
   ============================================= */

/* TABLETS (1024px) */
@media screen and (max-width: 1024px) {
  .container { padding: 80px 40px; min-height: auto; }
  .wave { margin-right: 400px; }
  .hero-illustration { right: 20px; transform: scale(0.7) translateY(-40%); }
  
  .content-container { grid-template-columns: 1fr; gap: 40px; }
  .text-contents { text-align: center; }
  .image-content1 { margin-top: 10px; }

  .features-section1 { flex-direction: column; gap: 40px; align-items: center; }
  .tabs-container1 { max-width: 100%; width: 100%; }
  .image-container { max-width: 100%; width: 100%; }
  
  .benefit-card { flex: 1 1 calc(50% - 20px); max-width: 45%; }
  
  .content-choose-container { grid-template-columns: 1fr; text-align: center; }
  .text-content { order: 1; }
  .image-content { order: 2; }
  
  .content-wrap { flex-direction: column; align-items: center; text-align: center; }
  .image-wrap { max-width: 80%; }
  
  .offer-container { grid-template-columns: 1fr; text-align: center; }
  .offer-text { text-align: center; }
  .feature-box { width: calc(50% - 20px); }
  
  .addons-grid { grid-template-columns: 1fr 1fr; }
  .cr-footer__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .cr-footer__col:first-child, .cr-footer__col:last-child { grid-column: span 3; }
}

/* SMARTPHONES (768px) */
@media screen and (max-width: 768px) {
  .hero-illustration, .wave { display: none; }
  .container { 
    padding: 60px 20px; 
    align-items: center; 
    text-align: center; 
    min-height: calc(100vh - 70px);
  }
  
  .logo img { width: 110px; }
  .mobile-toggle { display: flex; }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;
    flex-direction: column;
    padding: 20px;
    transition: 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  }
  .nav-menu.active { left: 0; }
  .nav-item { width: 100%; margin: 10px 0; }
  .nav-link { justify-content: space-between; padding: 12px 15px; border-bottom: 1px solid #eee; }
  
  .dropdown {
    position: static;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    box-shadow: none !important;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    background: #f9f9ff;
  }
  .nav-item.dropdown-open .dropdown { max-height: 800px; padding: 10px 0; }
  
  .benefit-card { flex: 1 1 100%; max-width: 100%; }
  .feature-box { width: 100%; }
  .addons-grid { grid-template-columns: 1fr; }
  
  .cr-footer__grid { grid-template-columns: 1fr 1fr; }
  .cr-footer__col:first-child, .cr-footer__col:last-child { grid-column: span 2; }
}

/* SMALL MOBILE (480px) */
@media screen and (max-width: 480px) {
  .logo img { width: 90px; }
  .container { padding: 0px 15px 40px; }
  .heading { font-size: 28px !important; line-height: 1.2 !important; }
  .description { font-size: 15px !important; }
  .cta-button { width: 100%; padding: 12px 20px; font-size: 16px; }
  
  .section-benefits-title, .section-title-features, .section-title2, .main-heading-offer {
    font-size: 24px !important;
    line-height: 1.3 !important;
  }
  
  .cr-footer__grid { grid-template-columns: 1fr; }
  .cr-footer__col:first-child, .cr-footer__col:last-child { grid-column: span 1; }
  .cr-footer__bottom { flex-direction: column; text-align: center; }
}

/* FAQ Layout Adjustment */
@media screen and (min-width: 992px) {
  .faq-container { flex-direction: row; align-items: flex-start; }
  .faq-header { width: 35%; position: sticky; top: 100px; }
  .faq-content { width: 65%; }
}

/* =============================================
   PROCESS TIMELINE SECTION (Binary MLM Style)
   ============================================= */
.process-timeline {
    position: relative;
    /* max-width: 1000px; */
    margin: 60px auto;
    padding: 20px 0;
}

/* The central vertical line */
.process-timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #e5d5ff; /* Soft purple line */
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    z-index: 1;
}

/* Container for each timeline item */
.timeline-container {
    padding: 10px 50px;
    position: relative;
    background-color: inherit;
    width: 50%;
    z-index: 2;
}

.timeline-container.left {
    left: 0;
}

.timeline-container.right {
    left: 50%;
}

/* The numbered circles on the timeline */
.timeline-dot {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: mediumpurple;
    color: white;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 5px solid #f6f0ff; /* Creates a cutout effect against the background */
}

/* Position dots correctly based on left/right alignment */
.timeline-container.left .timeline-dot {
    right: -25px; 
}

.timeline-container.right .timeline-dot {
    left: -25px; 
}

/* The actual content box */
.timeline-content {
    padding: 30px;
    background-color: white;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e8efff;
    border-left: 6px solid mediumpurple; /* The thick accent border from the video */
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(147, 112, 219, 0.25);
    border-color: mediumpurple;
}


.timeline-content .addon-title {
    margin: 0 0 10px 0; /* Override previous grid margins */
}

.timeline-content .addon-description {
    margin: 0;
}

/* =============================================
   RESPONSIVE TIMELINE (Tablets & Mobile)
   ============================================= */
@media screen and (max-width: 768px) {
    /* Move the line to the far left */
    .process-timeline::after {
        left: 31px;
    }

    /* Make containers full width */
    .timeline-container {
        width: 100%;
        padding-left: 80px;
        padding-right: 20px;
        margin-bottom: 20px;
    }

    /* Reset right container alignment */
    .timeline-container.right {
        left: 0%;
    }

    /* Move all dots to the left line */
    .timeline-container.left .timeline-dot,
    .timeline-container.right .timeline-dot {
        left: 6px;
        right: auto;
    }
}