
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@700;800&family=Caveat:wght@600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
}

:root {
    --primary-color: #FF4F00;
    --text-dark: #1e293b;
    --text-light: #ffffff;
    --text-muted: #cbd5e1;
    --font-main: 'Poppins', sans-serif;
    --brand-orange: #FF4F00;
    --brand-orange-hover: #e04500;
    --primary: #FF4F00;
    --primary-hover: #E04500;
    --primary-light: #FFF2EC;
    --primary-muted: rgba(255, 79, 0, 0.15);
    --dark: #121316;
    --gray-text: #525866;
    --border-color: #E2E4E9;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.5;
}

/* --- Navbar Styles --- */
.navbar {
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1001;
}

.logo .icon {
    font-size: 1.3rem;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Container for nav items */
.nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    margin-left: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn-signin {
    text-decoration: none;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 500;
}

.btn-signin:hover {
    color: var(--primary-color);
}

.btn-cta {
    text-decoration: none;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-cta:hover {
    background-color: #e04600;
}

/* Hamburger Icon Styling */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease-in-out;
}

/* --- Hero Layout & Typography --- */
.hero {
    background-color: #ffffff;
    color: #0d0d0e;
    padding: 60px 24px 80px;
    text-align: center;
    width: 100%;
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    max-width: 820px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Handwritten Tagline Style */
.trust-badge {
    font-family: 'Caveat', cursive;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
    display: block;
    letter-spacing: -0.01em;
}

/* Typography Style for Title */
.hero-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 4rem;
    line-height: 1.05;
    font-weight: 800;
    color: #0d0d0e;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

/* Orange Underline Accent */
.hero-title .highlight {
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--brand-orange);
    border-radius: 4px;
}

/* Paragraph Subtitle */
.hero-description {
    font-size: 1.1rem;
    color: #4b5563;
    max-width: 600px;
    line-height: 1.5;
    margin: 0 auto 28px;
    font-weight: 400;
}

/* Action Group */
.hero-action-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
/* --- Button --- */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    
    /* Changed white background to orange */
    background-color: var(--brand-orange, #ff4f00) !important; 
    color: #ffffff !important; /* White text on orange button */
    
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    overflow: hidden;
    z-index: 1;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px -4px rgba(255, 79, 0, 0.4);
}

/* Arrow Icon inside button */
.btn-arrow {
    width: 18px;
    height: 18px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ripple Hover Background Effect */
.btn-primary::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 300%;
    background-color: #1a1a1a;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

/* Button Hover State */
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px -4px rgba(0, 0, 0, 0.3);
    padding-right: 28px;
    padding-left: 38px;
}

.btn-primary:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.btn-primary:hover .btn-arrow {
    opacity: 1;
    transform: translateX(0);
}

.sub-text {
    font-size: 0.8rem;
    color: #71717a;
    font-weight: 500;
}

/* --- Video Container --- */
.hero-media-wrapper {
    width: 100%;
    max-width: 1040px;
}

.video-container {
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background-color: #000000;
}

.hero-main-video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-main-video {
        height: 360px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.3rem;
    }
    .hero-main-video {
        height: 240px;
    }
}

/* --- Responsive Media Queries --- */

/* Tablet & Mobile Layout Shifts */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex; /* Display burger icon */
    }

    /* Transform menu container into dropdown drawer overlay */
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        margin-left: 0;
        gap: 24px;
        border-bottom: 1px solid #e2e8f0;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    }

    /* Show dropdown menu when active class is triggered */
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .nav-auth {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        gap: 16px;
        border-top: 1px solid #f1f5f9;
        padding-top: 16px;
    }

    .btn-cta {
        width: 100%;
        text-align: center;
    }

    /* Animate Hamburger Bars into 'X' when clicked */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Adjust typography for scaling */
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

/* Small Screens & Mobile Phones */
@media (max-width: 576px) {
    .hero {
        min-height: auto;
        padding: 80px 0;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-primary, .btn-secondary {
        text-align: center;
        width: 100%;
    }
}

/* --- Partners Section Styles --- */

.partners-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 0;
    overflow: hidden;
    border-bottom: 1px solid #f1f5f9;
}

.partners-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 24px;
}

.partners-header {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    min-width: 200px;
}

.partners-stat {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.1;
}

.partners-stat-label {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 4px;
}

/* Right side infinite scroll window */
.partners-marquee-window {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    padding: 30px 0; 
}

/* Gradient edge masks to fade logos at horizontal limits */
.partners-marquee-window::before,
.partners-marquee-window::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.partners-marquee-window::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff, transparent);
}

.partners-marquee-window::after {
    right: 0;
    background: linear-gradient(-90deg, #ffffff, transparent);
}

/* Logo movement track */
.partners-marquee-track {
    display: flex;
    gap: 60px; 
    width: max-content;
    align-items: center;
    animation: marqueeScroll 25s linear infinite;
}

.partners-marquee-track:hover {
    animation-play-state: paused;
}

/* Freestanding logo element containers */
.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 12px;
    background-color: transparent; 
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), filter 0.3s ease;
    cursor: pointer;
}

/* Partner Logo Default Styling */
.partner-mark {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: opacity(0.7) grayscale(30%);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), 
                filter 0.3s ease;
    cursor: pointer;
}

/* Hover Effect: Scale Up + Brightness Glow */
.partner-item:hover .partner-mark,
.partner-mark:hover {
    transform: scale(1.28) translateY(-2px);
    filter: opacity(1) grayscale(0%) drop-shadow(0 6px 12px rgba(255, 79, 0, 0.35));
}

/* Partner Marquee Item Container */
.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
}

/* Partner Container Item */
.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}

/* Partner Marquee Container Item */
.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
}

/* Wide Brand Logo Display */
.partner-mark-wide {
    height: 48px !important;
    width: auto !important;
    max-width: 220px !important;
    display: block !important;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                filter 0.3s ease;
    cursor: pointer;
}

/*  Hover Effect */
.partner-item:hover .partner-mark-wide,
.partner-mark-wide:hover {
    transform: scale(1.15) translateY(-2px);
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.15)) !important;
}
/* Hover Zoom & Elevation Animation */
.partner-item:hover .partner-mark,
.partner-mark:hover {
    transform: scale(1.15) translateY(-3px);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12)) !important;
}

/* --- Marquee Animation --- */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .partners-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .partners-header {
        min-width: auto;
    }
    
    .partners-marquee-window {
        width: 100%;
    }
    
    .partners-marquee-track {
        gap: 40px;
    }
}

/* --- video section View More Button Styles --- */
.btn-view-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 28px;
    background-color: #1c1917; 
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Arrow wrapper styles */
.btn-view-more .btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover Effects */
.btn-view-more:hover {
    background-color: #12100e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(255, 79, 0, 0.3), 0 8px 10px -6px rgba(255, 79, 0, 0.3);
    border-color: rgba(255, 79, 0, 0.4);
}

/* Arrow nudge animation on hover */
.btn-view-more:hover .btn-arrow {
    transform: translateX(5px);
    color: var(--primary-color); 
}

/* Active click push-down effect */
.btn-view-more:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px -5px rgba(255, 79, 0, 0.3);
}

/* --- Responsive Media Queries --- */
/* @media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .pricing-section-header h2 {
        font-size: 2rem;
    }
} */

/* features section */

@media (max-width: 768px) {
  .feature-card { 
    padding: 12px 16px;      
    margin-bottom: 12px;     
    border-radius: 8px;      
  }

  .feature-card h3 {
    font-size: 1rem;         
    margin-bottom: 6px;
  }

  .feature-card p {
    font-size: 0.875rem;     
    line-height: 1.4;
  }

  .feature-card img,
  .feature-card svg,
  .feature-card .icon {
    width: 28px;            
    height: 28px;
    margin-bottom: 8px;
  }
}

/* --- CTA Section Styles --- */

.cta-section {
  background-color: #fdfbf7;
  padding-top: 40px;
  width: 100%;
}

/* Full Width Main Orange Background Container */
.cta-wrap {
  width: 100%;
  background-color: #e54d19;
  border-top-left-radius: 44px;
  border-top-right-radius: 44px;
}

/* Inner Container for Aligned Layout Grid */
.cta-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 40px 0px 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 480px;
}

/* Left Content Block */
.cta-head {
  max-width: 582px;
  z-index: 2;
  color: #ffffff;
  padding-bottom: 60px;
}

.cta-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: 1.125rem;
  line-height: 1.5;
  opacity: 0.9;
  margin-bottom: 36px;
}

/* Action Buttons */
.cta-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-primary {
  background-color: #ffffff;
  color: #111111;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.2s ease;
}

.btn-primary:hover {
  background-color: #f3f4f6;
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  backdrop-filter: blur(8px);
  transition: background-color 0.2s ease;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* Phone Image Positioning */
.cta-img {
  position: absolute;
  right: 0px;
  bottom: 0;
  height: 115%;
  max-height: 560px;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  pointer-events: none;
  z-index: 10;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .cta-inner {
    flex-direction: column;
    padding: 60px 30px 0 30px;
    align-items: center;
  }

  .cta-head {
    padding-bottom: 0;
  }

  .cta-img {
    position: relative;
    right: auto;
    bottom: auto;
    height: auto;
    width: 100%;
    max-width: 400px;
    margin-top: 40px;
  }
}

/* --- testamonial Section Styles --- */

.testimonials-section {
  position: relative;
  background-color: #ffffff;
  padding: 110px 0;
  overflow: hidden;
  color: #17171a;
}

.reviews-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.img-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z-index-2 { z-index: 2; }
.z-index-3 { z-index: 3; }

.ratings-lines-svg {
  transform: scale(1.15);
  transform-origin: center center;
  opacity: 0.85;
}

.reviews-gradient-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(255, 79, 0, 0.15) 0%, rgba(255, 255, 255, 0.85) 60%, #ffffff 100%),
    linear-gradient(180deg, #ffffff 0%, transparent 20%, transparent 80%, #ffffff 100%);
  z-index: 4;
}

.relative-z {
  position: relative;
  z-index: 5;
  width: 100%;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  color: #FF4F00;
}

.section-header p {
  font-size: 1.15rem;
  color: #52525b;
  line-height: 1.5;
}

/* SLIDER WRAPPER */
.slider-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.testimonials-track {
  display: flex;
  gap: 28px;
  width: max-content;
  will-change: transform;
}

/* Card Styles */
.testimonial-card {
  width: 380px; 
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 79, 0, 0.2);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: #FF4F00;
  box-shadow: 0 20px 40px rgba(255, 79, 0, 0.15), 0 0 30px rgba(255, 79, 0, 0.1);
}

.featured-card {
  border-color: #FF4F00;
  background: rgba(255, 245, 242, 0.9);
}

.testimonial-stars {
  color: #FF4F00;
  font-size: 1rem;
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-quote {
  margin: 0 0 28px 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #27272a;
  font-weight: 400;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  background-color: #FF4F00;
  color: #ffffff;
}

.testimonial-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0d0d0e;
}

.testimonial-role {
  display: block;
  font-size: 0.8rem;
  color: #71717a;
}

/* Tablet View (below 1024px) */
@media (max-width: 1024px) {
  .testimonials-section {
    padding: 80px 0;
  }

  .section-header h2 {
    font-size: 2.3rem;
  }

  .testimonial-card {
    width: 320px;
    padding: 28px 22px;
    border-radius: 20px;
  }

  .testimonials-track {
    gap: 20px;
  }
}

/* Mobile View (below 768px) */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 1.85rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .testimonial-card {
    width: 280px;
    padding: 22px 18px;
    border-radius: 16px;
  }

  .testimonial-quote {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .testimonials-track {
    gap: 16px;
  }

  .testimonial-avatar {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }

  .testimonial-name {
    font-size: 0.88rem;
  }

  .testimonial-role {
    font-size: 0.75rem;
  }
}

/* Small Mobile Devices (below 480px) */
@media (max-width: 480px) {
  .testimonial-card {
    width: 250px;
    padding: 18px 14px;
  }
  
  .section-header h2 {
    font-size: 1.6rem;
  }
}

/* Scroll to top button fixed to bottom right */

.scroll-to-top-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 48px;
  height: 48px;
  background-color: rgba(0, 0, 0, 0.25); 
  backdrop-filter: blur(8px);            
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;                   
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;                           
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;                        
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Arrow icon styling */
.scroll-to-top-btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

/* Class added by JS when user scrolls down */
.scroll-to-top-btn.show {
  opacity: 1;
  visibility: visible;
}

/* Hover State: Dark orange matching your site theme */
.scroll-to-top-btn:hover {
  background-color: #e64a19; 
  border-color: #e64a19;
  transform: translateY(-4px); /* Moves up slightly */
  box-shadow: 0 8px 20px rgba(230, 74, 25, 0.4);
}

.scroll-to-top-btn:hover svg {
  transform: translateY(-2px); /* Arrow moves slightly up */
}


/* ==========================================================================
   LOADING ANIMATIONS
   ========================================================================== */

/* --- 1. Underline Animation --- */
.highlight {
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 4px; 
  background: var(--primary-color, #FF4F00); 
  border-radius: 2px;
  transform-origin: left;
  transform: scaleX(0);
  animation: underlineDraw 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.3s;
}

/* --- 2. Video Load Animation --- */
.hero-video,
.hero-video-wrapper,
.video-container {
  animation: videoEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.5s;
}

/* --- Keyframe Definitions --- */

/* Draws the underline smoothly from left to right */
@keyframes underlineDraw {
  to {
    transform: scaleX(1);
  }
}

/* Video scales up & fades in gracefully */
@keyframes videoEntrance {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


/* ==========================================================================
   RE-TRIGGERABLE SCROLL ANIMATIONS (UP & DOWN)
   ========================================================================== */

/* Defaults: Keep visible if JS fails, but smooth out state transitions */
h1, h2, h3, h4, p, span, a, button, img, details, .card {
  opacity: 1;
}

/* ==========================================================================
   STEP SECTION LOADING ANIMATION
   ========================================================================== */

/* Step Section Text Loading Animation */
@keyframes stepTextLoad {
  0% {
    opacity: 0;
    transform: translateY(25px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.anim-step-text {
  animation: stepTextLoad 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* --------------------------------------------------------------------------
   2. FEATURES SECTION (Left Slide-In & Card Zoom)
   -------------------------------------------------------------------------- */
@keyframes featureTextIn {
  0% { opacity: 0; transform: translateX(-30px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes featureCardIn {
  0% { opacity: 0; transform: scale(0.92) translateY(25px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.anim-feature-text { animation: featureTextIn 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.anim-feature-card { animation: featureCardIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

/* ==========================================================================
   3. TESTIMONIAL SECTION ANIMATIONS
   ========================================================================== */

/* Header Animation (Soft Glow, Fade In & Scale Up) */
.anim-section-header {
  opacity: 0;
  animation: sectionHeaderLoad 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes sectionHeaderLoad {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Individual Testimonial Cards Animation */
.anim-testimonial-card {
  opacity: 0; /* Start hidden until observer triggers */
  animation: testimonialCardLoad 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes testimonialCardLoad {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.95);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
/* ==========================================================================
    PRICING SECTION ANIMATION
   ========================================================================== */

/* Simple Fade & Upward Slide Keyframe */
@keyframes simplePricingFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Applied Animation Classes */
.anim-pricing-text {
  animation: simplePricingFadeIn 0.6s ease-out forwards;
}

.anim-pricing-card {
  animation: simplePricingFadeIn 0.6s ease-out forwards;
}

/* --------------------------------------------------------------------------
   5. FAQ SECTION 
   -------------------------------------------------------------------------- */
@keyframes faqIn {
  0% { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}

.anim-faq-item { animation: faqIn 0.6s ease-out forwards; }

/* --------------------------------------------------------------------------
   6.  CTA SECTION 
   -------------------------------------------------------------------------- */
@keyframes ctaTextIn {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes ctaImageIn {
  0% { opacity: 0; transform: translateX(50px) scale(0.92); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}

.anim-cta-text { animation: ctaTextIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.anim-cta-image { animation: ctaImageIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

