/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FF 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #437DFF;
}

.hero-subtitle {
    font-size: 20px;
    color: #333;
    margin-bottom: 30px;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-image {
    background: #E8E8E8;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Value Bar */
.value-bar {
    background: #000000;
    color: #FFFFFF;
    padding: 30px 0;
}

.value-items {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.value-item h3 {
    font-size: 36px;
    color: #437DFF;
}

.value-item p {
    font-size: 16px;
    margin-top: 5px;
}

@keyframes fadeUp {
    0% { 
        opacity: 0;
        transform: translateY(30px);
    }
    100% { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Counting number styling */
.value-item h3 {
    font-size: 36px;
    color: #437DFF;
    font-weight: bold;
}

/* Features Grid */
.features {
    padding: 80px 0;
}

.features h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

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

.feature-card {
    padding: 30px;
    border-radius: 12px;
    background: #FFFFFF;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.feature-card:hover {
    background-color: #F8F9FF;
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 10px 25px rgba(67, 125, 255, 0.3);
}



.feature-icon {
    width: 60px;
    height: 60px;
    background: #437DFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #FFFFFF;
    margin: 20px auto;
}

@media (max-width: 768px) {
    .feature-icon{
        margin: 0px auto;
        margin-bottom: 1rem;
    }
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

@keyframes popUp {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.feature-icon {
    opacity: 1;
}

/* Testimonials */
.testimonials {
    background: #F8F9FF;
    padding: 80px 0;
}

.testimonials h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
background: #FFFFFF;
padding: 30px;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}


.testimonial-card:hover {
background-color:#FFFFFF;
transform: translateY(-8px) scale(1.03);
box-shadow: 0 10px 25px rgba(67, 125, 255, 0.3);
}


.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    color: #333;
}

.testimonial-author {
    font-weight: 600;
    color: #000;
}

.testimonial-role {
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .testimonial-grid{
        grid-template-columns: 1fr;
    }
}



/* How it Works */
.how-it-works {
    padding: 80px 0;
}

.how-it-works h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #437DFF;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.step p {
    color: #666;
}

@keyframes flipIn {
    0% {
        transform: rotateY(90deg);
        opacity: 0;
    }
    100% {
        transform: rotateY(0deg);
        opacity: 1;
    }
}

.step-number {
    opacity: 1;
    transform: none;
}


/* CTA Section - Standardized across all pages */
.cta-section {
    background: linear-gradient(135deg, #437DFF 0%, #3366DD 100%);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    opacity: 1;
    transform: none;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 1;
    transform: none;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 1;
    transform: none;
}

/* Scroll-triggered animation classes */
.cta-section h2.animate,
.cta-section p.animate,
.cta-buttons.animate {
    opacity: 1;
    transform: translateY(0);
}

/* CTA elements: always visible — animations disabled sitewide */
.cta-section h2.animate-on-scroll,
.cta-section p.animate-on-scroll,
.cta-buttons.animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
}

.cta-section h2.animate-on-scroll.animated,
.cta-section p.animate-on-scroll.animated,
.cta-buttons.animate-on-scroll.animated {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* CTA animations for About Us page - Same as homepage */
.aboutus .cta-section h2.animate-on-scroll {
    transition: opacity 1.2s ease-out, transform 1.2s ease-out !important;
}

.aboutus .cta-section p.animate-on-scroll {
    transition: opacity 1.2s ease-out, transform 1.2s ease-out !important;
}

.aboutus .cta-section .cta-buttons.animate-on-scroll {
    transition: opacity 1.2s ease-out, transform 1.2s ease-out !important;
}

/* No staggered delays - Same as homepage */
.aboutus .cta-section h2.animate-on-scroll.animated {
    transition-delay: 0s !important;
}

.aboutus .cta-section p.animate-on-scroll.animated {
    transition-delay: 0s !important;
}

.aboutus .cta-section .cta-buttons.animate-on-scroll.animated {
    transition-delay: 0s !important;
}

/* Custom slower animations for About Us page cards */
@keyframes aboutUsCardSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes aboutUsCardFadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px) rotateX(10deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

@keyframes aboutUsCardScaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8) rotateY(-5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateY(0deg);
    }
}

/* Apply slower animations to About Us cards */
.aboutus .story-content.animate-on-scroll.animated {
    animation: aboutUsCardFadeUp 3s ease-out forwards !important;
}

.aboutus .mission-box.animate-on-scroll.animated,
.aboutus .values-heading.animate-on-scroll.animated {
    animation: aboutUsCardFadeUp 3s ease-out forwards !important;
}

.aboutus .value-card.animate-on-scroll.animated {
    animation: aboutUsCardFadeUp 3s ease-out forwards !important;
}

/* Prevent blinking by overriding any conflicting animations for value cards */
.aboutus .value-card.animate-on-scroll {
    animation: none !important;
}

.aboutus .value-card.animate-on-scroll.slideBounceIn {
    animation: none !important;
}

/* Staggered delays for value cards - same animation as mission box */
.aboutus .values-grid .value-card:nth-child(1).animate-on-scroll.animated {
    animation-delay: 0.3s !important;
}

.aboutus .values-grid .value-card:nth-child(2).animate-on-scroll.animated {
    animation-delay: 0.6s !important;
}

.aboutus .values-grid .value-card:nth-child(3).animate-on-scroll.animated {
    animation-delay: 0.9s !important;
}

.aboutus .values-grid .value-card:nth-child(4).animate-on-scroll.animated {
    animation-delay: 1.2s !important;
}

/* Ensure CTA animations override any conflicting animations */
.cta-section .animate-on-scroll.animated {
    animation: none !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Active navigation link styling */
.nav-links a.nav-link.active {
    color: #437DFF !important;
    background: rgba(67, 125, 255, 0.1) !important;
    border-radius: 8px !important;
    padding: 8px 16px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 8px rgba(67, 125, 255, 0.2) !important;
    transition: all 0.3s ease !important;
}

.nav-links a.nav-link.active:hover {
    background: rgba(67, 125, 255, 0.15) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(67, 125, 255, 0.3) !important;
}

/* Prevent default browser active state and ensure smooth transitions */
.nav-links a.nav-link {
    transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease !important;
    -webkit-tap-highlight-color: transparent !important;
}

.nav-links a.nav-link:active {
    color: inherit !important;
    background: inherit !important;
    transform: none !important;
}

.nav-links a.nav-link:focus {
    outline: none !important;
    color: inherit !important;
    background: inherit !important;
}





/* Override any conflicting animations for CTA elements */
.cta-section h2.animate-on-scroll.animated,
.cta-section p.animate-on-scroll.animated,
.cta-buttons.animate-on-scroll.animated {
    animation: none !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Also handle fade-in class conflicts */
.cta-section .fade-in.animated {
    animation: none !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Staggered CTA animations */
.cta-section h2.animate-on-scroll.animated {
    transition-delay: 0s;
}

.cta-section p.animate-on-scroll.animated {
    transition-delay: 0.2s;
}

.cta-buttons.animate-on-scroll.animated {
    transition-delay: 0.4s;
}

/* CTA Animation */
@keyframes ctaFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Standalone CTA buttons (for pages without full cta-section) */
.cta-buttons:not(.cta-section .cta-buttons) {
    margin: 40px 0;
    text-align: center;
}

/* CTA button hover effects */
.cta-buttons .btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Ensure consistent CTA styling across all page types */
.aboutus .cta-section,
.features-page .cta-section,
.pricing-page .cta-section,
.contactus-page .cta-section {
    background: linear-gradient(135deg, #437DFF 0%, #3366DD 100%);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

/* CTA buttons consistency - ensuring consistent styling */

/* Pricing page CTA buttons */
.pricing-page .pricing-cta {
    display: inline-block;
    background: linear-gradient(90deg,#437DFF,#6A93FF);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    width: 100%;
    opacity: 1;
    transform: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.pricing-page .pricing-cta:hover {
    background: linear-gradient(90deg,#3366DD,#567DFF);
    transform: translateY(-2px);
}

.pricing-page .pricing-cta.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Contact page CTA */
.contact-cta {
    display: inline-block;
    background: #437DFF;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    opacity: 1;
    transform: none;
    transition: background-color 0.3s;
}

.contact-cta:hover {
    background: #3366DD;
}

.contact-cta.animated {
    opacity: 1;
    transform: translateY(0);
}

.btn-white {
    background: #FFFFFF;
    color: #2A5CE0;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

/* ── Global button/link no-underline guard ───────────────────────
   Ensures every <a> styled as a button never shows an underline on
   hover/focus/active states (or any user-agent override).         */
.btn-white,
.btn-white:link,
.btn-white:visited,
.btn-white:hover,
.btn-white:focus,
.btn-white:focus-visible,
.btn-white:active,
.btn-primary,
.btn-primary:link,
.btn-primary:visited,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus-visible,
.btn-primary:active,
.btn-secondary,
.btn-secondary:link,
.btn-secondary:visited,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:focus-visible,
.btn-secondary:active,
.btn-secondary-outline,
.btn-secondary-outline:link,
.btn-secondary-outline:visited,
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline:focus-visible,
.btn-secondary-outline:active,
.pricing-cta,
.pricing-cta:link,
.pricing-cta:visited,
.pricing-cta:hover,
.pricing-cta:focus,
.pricing-cta:focus-visible,
.pricing-cta:active,
.contact-cta,
.contact-cta:link,
.contact-cta:visited,
.contact-cta:hover,
.contact-cta:focus,
.contact-cta:focus-visible,
.contact-cta:active,
.banner-item,
.banner-item:link,
.banner-item:visited,
.banner-item:hover,
.banner-item:focus,
.banner-item:focus-visible,
.banner-item:active,
.nav-links a,
.nav-links a:link,
.nav-links a:visited,
.nav-links a:hover,
.nav-links a:focus,
.nav-links a:focus-visible,
.nav-links a:active,
.feature-nav-links a,
.feature-nav-links a:link,
.feature-nav-links a:visited,
.feature-nav-links a:hover,
.feature-nav-links a:focus,
.feature-nav-links a:focus-visible,
.feature-nav-links a:active,
.footer-links a,
.footer-links a:link,
.footer-links a:visited,
.footer-links a:hover,
.footer-links a:focus,
.footer-links a:focus-visible,
.footer-links a:active {
    text-decoration: none !important;
}

/* Remove the harsh black click outline only for these button-like
   anchors. Keyboard focus rings are preserved via :focus-visible.  */
.btn-white,
.btn-primary,
.btn-secondary,
.btn-secondary-outline,
.pricing-cta,
.contact-cta,
.banner-item,
.nav-links a,
.feature-nav-links a,
.footer-links a {
    outline: none;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Footer */
footer {
    background: #000000;
    color: #FFFFFF;
    padding: 60px 0 30px;
}

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

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-brand h3 span {
    color: #437DFF;
}

.footer-links h3 {
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    opacity: 0.8;
    line-height: 2;
}

.footer-links a:hover {
    opacity: 1;
    color: #437DFF;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    opacity: 0.8;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(67, 125, 255, 0.6); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(67, 125, 255, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(67, 125, 255, 0); }
}

.demo {
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.demo:hover {
    transform: translateY(-2px) scale(1.08);
}

@keyframes fadeInUpText {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.trusted-title,
.flip-text,
.cta-heading {
    opacity: 1;
}

.office-container {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start; /* align items to top */
    text-align: left;
  }

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .value-items {
        flex-direction: column;
        gap: 30px;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Nav-related responsive styles - matches navbar breakpoint */
@media (max-width: 1024px) {
    /* Show Book Demo button in mobile nav (overrides generic .demo hide) */
    .nav-links .btn-primary.demo {
        display: block !important;
    }

    /* ensure equal side padding on mobile */
    .container { padding-left: 16px; padding-right: 16px; }
    .form-container { padding: 1rem; margin-left: 8px; margin-right: 8px; box-sizing: border-box; }

    .contact-grid {
      grid-template-columns: 1fr;
      display: flex;
      justify-content: center;
  }

  .office-container{
    grid-template-columns: 1fr;
    
  }
  
  /* .form-row {
      grid-template-columns: 1fr;
  } */
  
  .form-container {
      padding: 2rem;
  }

}

/* About Us: Intro Section */
.about-intro-section {
    padding: 40px 0 20px;
    background: #fff;
}

.about-intro-section .container {
    max-width: 100%;
}

.about-intro-section p {
    font-size: 20px;
    line-height: 1.8;
    color: #4a5568;
    text-align: center;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Us: Story Section */
.story-section {
    padding: 40px 0 80px;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #437DFF;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 12px;
}

.story-image {
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
    border-radius: 16px;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* About Us: Mission & Values */
.mission-section {
    padding: 80px 0;
    background: #F8F9FF;
}

.mission-box {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.mission-box h3 {
    font-size: 24px;
    color: #437DFF;
    margin-bottom: 12px;
}

.mission-box p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.value-card {
    background: #FFFFFF;
    padding: 24px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(67, 125, 255, 0.15);
}

.value-card h3 {
    font-size: 20px;
    color: #437DFF;
    margin-bottom: 10px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* About Us: Utilities */
.subheadline {
    font-size: 20px;
    color: #FFFFFF;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.stat-highlight {
    /* background: #437DFF; */
    color: #16215c;
    /* padding: 12px 16px; */
    /* border-radius: 10px; */
    font-weight: 700;
    display: inline-block;
    /* box-shadow: 0 0 8px 2px rgba(67,125,255,0.4); */
}

/* About Us: Heading Animation */
.animated-heading {
    animation: slideBounceIn 1s ease-out forwards;
    animation-fill-mode: forwards;
}

@keyframes slideBounceIn {
    0% { opacity: 0; transform: translateY(50px); }
    60% { opacity: 1; transform: translateY(-10px); }
    80% { transform: translateY(5px); }
    100% { opacity: 1; transform: translateY(0); }
}

.slideBounceIn {
    animation: slideBounceIn 1s ease-out forwards;
    animation-fill-mode: forwards;
}

/* Responsive (About Us) */
@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* About Us: Hero override */
.aboutus .hero {
    background: linear-gradient(135deg, #437DFF 0%, #3366DD 100%);
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
}

.aboutus .hero h1 {
    color: #FFFFFF;
}

/* About Us headings — visible immediately */
.aboutus h1,
.aboutus h2,
.aboutus h3 {
    opacity: 1;
    transform: none;
    animation: none;
}

/* Values section headings */
.aboutus .values-grid h3 {
    animation-delay: 1.4s;
}

/* Features page: clip horizontal overflow without breaking position:sticky nav */
.features-page {
	overflow-x: clip;
}

/* Features Page: Hero override */
.features-page .hero {
	background: linear-gradient(135deg, #437DFF 0%, #3366DD 100%);
	color: #FFFFFF;
	text-align: center;
	padding: 80px 0 20px;
	margin-bottom: 0;
}

.features-page .hero h1 {
	color: #FFFFFF;
}

/* Features hero — visible immediately (no fade-in delay) */
.features-page .hero .fade-in,
.features-page .hero .fade-in.show {
	opacity: 1;
	transform: none;
	transition: none;
}

/* Fade-in utility */
.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.fade-in.show {
	opacity: 1;
	transform: translateY(0);
}

/* Feature Navigation */
.feature-nav {
	background: #1A2B4A;
	padding: 12px 0;
	position: sticky;
	top: 72px;
	z-index: 999;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	margin-top: 0;
}

.feature-nav::before {
	content: '';
	position: absolute;
	top: -20px;
	left: 0;
	right: 0;
	height: 20px;
	background: #1A2B4A;
}

.feature-nav-links {
	display: flex;
	justify-content: center;
	/* gap: 1rem; */
    gap: 0.6rem;
	list-style: none;
	flex-wrap: nowrap;
    flex-direction: row !important;
    overflow-x: auto;
    overflow-y: hidden;
}

.feature-nav-links a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s;
	padding: 8px 16px;
	border-radius: 25px;
    text-wrap:nowrap;
}

.feature-nav-links a:hover,
.feature-nav-links a.active {
	color: #FFFFFF;
	background: #437DFF;
	border-radius: 6px;
}

/* Feature Sections */
.feature-section {
	padding: 64px 0;
	border-bottom: 1px solid #EEE;
}

.feature-section:last-child {
	border-bottom: none;
}

.section-header {
	text-align: center;
	margin-bottom: 48px;
}

.section-header h2 {
	font-size: 2.5rem;
	margin-bottom: 8px;
	color: #437DFF;
}

.section-header p {
	font-size: 1.125rem;
	color: #666;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-bottom: 48px;
}

/* Scope feature card tweaks to features page so homepage cards remain the same */
.features-page .feature-card {
	background: #F8F8F8;
	padding: 2rem;
	border-radius: 10px;
	transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
	border: 2px solid transparent;
}

.features-page .feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(67, 125, 255, 0.2);
	border-color: #437DFF;
}

.features-page .feature-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #437DFF;
}

.features-page .feature-card ul {
	list-style: none;
}

.features-page .feature-card li {
	padding: 0.5rem 0 0.5rem 1.5rem;
	position: relative;
}

/* .features-page .feature-card li:before {
	content: "•";
	color: #437DFF;
	font-weight: bold;
	position: absolute;
	left: 0;
} */

/* Feature icon — visible immediately */
.feature-icon {
	opacity: 1;
}

/* Process Flow */
.process-flow {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 2rem 0;
	flex-wrap: wrap;
	gap: 1rem;
}

.process-step {
	flex: 1;
	text-align: center;
	padding: 1rem;
	position: relative;
	background: linear-gradient(135deg, #437DFF 0%, #3366DD 100%);
	color: #FFFFFF;
	border-radius: 10px;
	min-width: 150px;
}

.process-step p { font-weight: 600; margin: 0; }

.process-step:not(:last-child):after {
	content: "→";
	position: absolute;
	right: -20px;
	top: 50%;
	transform: translateY(-50%);
	color: #437DFF;
	font-size: 1.5rem;
}

/* Comparison Section */
.comparison-section {
	padding: 64px 0;
	background: linear-gradient(135deg, #437DFF 0%, #3366DD 100%);
}

.comparison-section .section-header h2 { color: #FFFFFF; }

.comparison-table {
	background: #FFFFFF;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
	margin-top: 2rem;
}

table { width: 100%; border-collapse: collapse; }

th, td { padding: 1rem; text-align: left; border-bottom: 1px solid #EEE; }

th { background: #7bd0ff; color: #000; font-weight: 600; }

tr:hover { background: #F8F8F8; }

.check { color: #437DFF; font-weight: bold; }

.cross { color: #FF4444; font-weight: bold; }

/* CTA buttons used in comparison footer */
/* duplicate .btn-white removed — canonical definition is above */

/* Responsive adjustments for features page */
@media (max-width: 768px) {
	.process-step:not(:last-child):after { display: none; }
	.comparison-table { overflow-x: auto; }
	table { min-width: 600px; }

    .feature-nav-links {
        display: flex;
        gap: 0.7rem;
       align-items: center;
       padding-bottom: 5px;
       justify-content: start !important;

    }

    .feature-nav{
        top: 57px;
        padding-bottom: 8px;
    }


    .feature-nav-links a {
        padding: 0px 8px;
    }

    .feature-nav-links a:hover,
    .feature-nav-links a.active {
        color: #FFFFFF;
        background: #437DFF;
    }

}

/* Pricing Page: Hero override */
.pricing-page .hero {
	background: #437DFF;
	color: #FFFFFF;
	text-align: center;
	padding: 80px 0;
}

/* Flip-in X animation for pricing hero */
@keyframes flipInX {
	0% { transform: rotateX(-90deg); opacity: 0; }
	60% { transform: rotateX(20deg); opacity: 1; }
	100% { transform: rotateX(0deg); opacity: 1; }
}

/* .pricing-page .animate-flip-x { animation: flipInX 0.8s ease-out forwards; } */

/* Pricing sections */
.pricing-section { padding: 64px 0; }

.pricing-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

/* Card styles */
.pricing-page .pricing-card {
	background: linear-gradient(145deg, #ffffff, #f9f9f9);
	border: 1px solid rgba(0,0,0,0.05);
	border-radius: 18px;
	padding: 2.5rem;
	text-align: center;
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
	position: relative;
	overflow: hidden;
}

.pricing-page .pricing-card .features-list{
    list-style: none;
    text-align: center;
}

.pricing-page .pricing-card::before {
	content: "";
	position: absolute;
	top: -50%; left: -50%; width: 200%; height: 200%;
	background: radial-gradient(circle at top right, rgba(67,125,255,0.08), transparent 60%);
	transform: rotate(25deg);
	z-index: 0;
}

.pricing-page .pricing-card * { position: relative; z-index: 1; }

.pricing-page .pricing-card h3 { font-size: 1.85rem; margin-bottom: 1rem; color: #000; opacity: 1; }

/* Heading stagger animation */
@keyframes headingFadeUp { to { opacity: 1; transform: translateY(0); } }
.pricing-page .pricing-card h3.animate { animation: headingFadeUp 0.6s ease forwards; }

.pricing-page .pricing-card .price {
	font-size: 3.2rem;
	font-weight: 800;
	background: linear-gradient(90deg, #437DFF, #6A93FF);
	-webkit-background-clip: text; -webkit-text-fill-color: transparent;
	margin: 1rem 0;
}

/* Price digit flip */
.pricing-page .price span {
	font-size: 3rem; font-weight: 700;
	background: linear-gradient(90deg, #437DFF, #6A93FF);
	-webkit-background-clip: text; -webkit-text-fill-color: transparent;
	display: inline-block;
	opacity: 0; transform: rotateX(-90deg);
	animation: priceFlip 0.5s forwards;
}

@keyframes priceFlip { to { opacity: 1; transform: rotateX(0deg); } }

.pricing-page .price-period { font-size: 1rem; color: #666; font-weight: 400; }

.pricing-page .pricing-subtitle { color: #555; font-size: 1rem; font-style: italic; margin-bottom: 1.5rem; }

.pricing-page .pricing-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: 0 15px 40px rgba(0,0,0,0.12);
	border-color: #437DFF;
}

.pricing-page .pricing-card.featured { border: 2px solid #437DFF; box-shadow: 0 20px 50px rgba(67,125,255,0.15); }

/* CTA inside pricing card */
.pricing-page .pricing-card .pricing-cta,
.pricing-page .pricing-cta { display: inline-block; background: linear-gradient(90deg,#437DFF,#6A93FF); color:#fff; padding:1rem 2rem; border-radius:30px; text-decoration:none; font-weight:600; transition: background 0.3s ease, transform 0.2s ease; width: 100%; }
.pricing-page .pricing-card .pricing-cta:hover,
.pricing-page .pricing-cta:hover { background: linear-gradient(90deg,#3366DD,#567DFF); transform: translateY(-2px); }

.per-agent-note { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid #EEE; font-size: 0.875rem; color: #666; }

/* ROI */
.roi-section { padding: 64px 0; background: #F5F5F5; }
.roi-calculator { background:#fff; border-radius: 15px; padding: 3rem; box-shadow: 0 5px 20px rgba(0,0,0,0.1); margin-top: 2rem; }
.calculator-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.calculator-column h3 { font-size: 1.5rem; margin-bottom: 1.5rem; color:#000; }
.cost-item { display:flex; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid #EEE; }
.cost-item:last-child { border-bottom:none; font-weight:700; font-size:1.125rem; margin-top:0.5rem; padding-top:1rem; border-top: 2px solid #437DFF; }

/* Savings highlight animations */
.savings-highlight { background:#437DFF; color:#fff; padding:2rem; border-radius:10px; text-align:center; margin-top:2rem; opacity:0; transform: scale(0.8); }
@keyframes savingsPop { 0%{ transform: scale(0.8); opacity:0; } 60%{ transform: scale(1.05); opacity:1; } 100%{ transform: scale(1); opacity:1; } }
@keyframes savingsPulse { 0%{ transform: scale(1); } 50%{ transform: scale(1.03); } 100%{ transform: scale(1); } }
.savings-highlight.animate { animation: savingsPop 0.8s ease-out forwards, savingsPulse 2s ease-in-out infinite 0.8s; }

/* Included */
.included-section { padding: 64px 0; }
.included-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 2rem; margin-top: 3rem; }
.included-category { background:#F8F8F8; padding:2rem; border-radius:10px; opacity:0; transform: translateY(30px); }
.included-category h3 { font-size:1.5rem; margin-bottom:1rem; color:#437DFF; }
.included-category ul { list-style:none; }
.included-category li { padding: 0.5rem 0 0.5rem 1.5rem; position: relative; }
/* .included-category li:before { content: "•"; color:#437DFF; position:absolute; left:0; } */
@keyframes boxFadeUp { to { opacity:1; transform: translateY(0); } }
.included-category.animate { animation: boxFadeUp 0.6s ease forwards; }

/* FAQ */
.faq-section { padding: 64px 0; background: #F5F5F5; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background:#fff; margin-bottom:1rem; border-radius:10px; padding:1.5rem; transition: box-shadow 0.3s; }
.faq-item:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.faq-question { font-size:1.125rem; font-weight:600; margin-bottom:0.5rem; color:#000; }
.faq-answer { color:#666; line-height:1.8; }

/* Responsive: Pricing */
@media (max-width: 768px) {
	.pricing-cards { grid-template-columns: 1fr; }
	.calculator-grid { grid-template-columns: 1fr; gap: 2rem; }
	.pricing-card.featured { transform: none; }
    .pricing-page .container{
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
}

 /* Contact Options */
 .contact-options-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-card {
  background: #f8f8f8;
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

@keyframes flipInY {
  0% {
      transform: perspective(400px) rotateY(90deg);
      opacity: 0;
  }
  100% {
      transform: perspective(400px) rotateY(0deg);
      opacity: 1;
  }
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #437DFF 0%, #3366DD 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #fff;
  font-size: 2rem;
  opacity: 0;
  transform: perspective(400px) rotateY(90deg);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.contact-icon.animated {
  animation: flipInY 2.0s forwards;
}

.contact-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #000;
}

.contact-card p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.contact-info {
  margin: 1.5rem 0;
}

.contact-info-item {
  margin: 0.5rem 0;
  font-weight: 600;
  color: #437DFF;
}

.contact-cta {
  display: inline-block;
  background: #437DFF;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
  margin-top: 1rem;
}

.contact-cta:hover {
  background: #3366DD;
}

/* Contact Form Section */
.form-section {
  padding: 4rem 0;
  background: #f5f5f5;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #000;
}

.form-header p {
  color: #666;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .form-container { padding: 1.5rem; }
  .form-header h2 { font-size: 1.5rem; }
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid #eee;
  border-radius: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #437DFF;
}

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

.optional-tag {
  font-size: 0.875rem;
  color: #999;
  font-weight: 400;
}

.form-submit {
  text-align: center;
  margin-top: 2rem;
}

.submit-button {
  background: #437DFF;
  color: #fff;
  padding: 1rem 3rem;
  border: none;
  border-radius: 25px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-button:hover {
  background: #3366DD;
}

/* Office Info Section */
.office-section {
  padding: 4rem 0;
}


.office-container h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #000;
}

.office-info {
  background: #f8f8f8;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
}

.office-info h3 {
  color: #437DFF;
  margin-bottom: 1rem;
}

.office-info p {
  margin: 0.5rem 0;
  color: #666;
}

.business-hours {
  background: #437DFF;
  color: #fff;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
}

.business-hours h3 {
  margin-bottom: 1rem;
}

.business-hours p {
  margin: 0.25rem 0;
}

/* Map placeholder */
.map-container {
  /* margin-top: 3rem; */
  background: #e8e8e8;
  height: 400px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 1.5rem;
}

/* Initial state: hidden and moved down */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }

  /* When animated class added, fade in and slide up */
  .animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
  }

  .contactus-page .hero {
    padding: 4rem 0;
    text-align: center;
    background: #437DFF;
  }

  .contactus-page .hero h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: #FFF;
  }

  /* Contact hero — visible immediately (no scroll animation) */
  .contactus-page .hero .animate-on-scroll,
  .contactus-page .hero .animate-on-scroll.animated {
      opacity: 1;
      transform: none;
      transition: none;
  }

  .contactus-page .hero .subheadline {
      font-size: 1.25rem;
      color: #FFF;
      max-width: 600px;
      margin: 0 auto;
  }

/* ============================================
   Top Resources Banner - Blue Carousel
   ============================================ */
.top-resources-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #2563eb 100%);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.top-resources-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.banner-text {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  z-index: 1;
}

.banner-icon {
  font-size: 20px;
}

.banner-label {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.banner-carousel {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.banner-track {
  display: flex;
  gap: 40px;
  animation: bannerScroll 25s linear infinite;
  width: max-content;
}

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

@keyframes bannerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 20px));
  }
}

.banner-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFFFFF;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background-color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}

.banner-item:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.banner-item:link,
.banner-item:visited,
.banner-item:hover,
.banner-item:active {
  color: #FFFFFF;
  text-decoration: none;
}

.item-icon {
  font-size: 18px;
}

.item-text {
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
}

.banner-item:hover .item-text {
  color: #FFFFFF;
}

.item-arrow {
  font-size: 16px;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.banner-item:hover .item-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Banner */
@media (max-width: 768px) {
  .banner-text {
    display: none;
  }
  
  .banner-content {
    padding: 0 10px;
  }
  
  .banner-item {
    padding: 6px 14px;
  }
  
  .item-text {
    font-size: 13px;
  }
}

/* ============================================
   Redesigned Hero Section
   ============================================ */
.hero.hero-redesigned {
  background: linear-gradient(180deg, #FFFFFF 0%, #F0F4FF 50%, #FFFFFF 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero.hero-redesigned::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(67, 125, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero.hero-redesigned::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero.hero-redesigned .hero-content {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text-content {
  position: relative;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(67, 125, 255, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
  border: 1px solid rgba(67, 125, 255, 0.2);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #437DFF;
  margin-bottom: 24px;
}

.hero.hero-redesigned h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero.hero-redesigned .hero-subtitle {
  font-size: 19px;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.btn-secondary-outline {
  color: #437DFF;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
  background: rgba(67, 125, 255, 0.1);
}

.hero-trust-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
}

.trust-icon {
  font-size: 16px;
}

/* Hero Image Container */
.hero-image-container {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  background: linear-gradient(145deg, #1a365d 0%, #2563eb 100%);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.hero-main-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Floating Stats */
.floating-stat {
  position: absolute;
  background: #FFFFFF;
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: floatBounce 3s ease-in-out infinite;
}

.floating-stat.stat-1 {
  top: 20px;
  left: -30px;
  animation-delay: 0s;
}

.floating-stat.stat-2 {
  bottom: 40px;
  right: -30px;
  animation-delay: 1.5s;
}

@keyframes floatBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: #437DFF;
  line-height: 1;
}

.stat-text {
  font-size: 12px;
  color: #666;
  font-weight: 500;
  margin-top: 4px;
}

/* Responsive Hero */
@media (max-width: 1024px) {
  .hero.hero-redesigned .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .hero.hero-redesigned h1 {
    font-size: 42px;
  }
  
  .hero-cta-group {
    justify-content: center;
  }
  
  .hero-trust-badges {
    justify-content: center;
  }
  
  .floating-stat.stat-1 {
    left: 10px;
  }
  
  .floating-stat.stat-2 {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .hero.hero-redesigned {
    padding: 60px 0 50px;
  }
  
  .hero.hero-redesigned h1 {
    font-size: 32px;
  }
  
  .hero.hero-redesigned .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta-group {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-trust-badges {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  .hero-image-wrapper {
    padding: 20px;
  }
  
  .floating-stat {
    padding: 12px 16px;
  }
  
  .stat-number {
    font-size: 22px;
  }
  
  .floating-stat.stat-1 {
    top: 10px;
    left: 5px;
  }
  
  .floating-stat.stat-2 {
    bottom: 20px;
    right: 5px;
  }
}

/* ── No animations (sitewide) ──────────────────────────────────────────
   Disables all CSS keyframe animations on every page.
   Scroll-reveal elements are shown immediately in their visible state.  */

*,
*::before,
*::after {
  animation: none !important;
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
}

/* Scroll-reveal: always visible, no entrance transition */
.animate-on-scroll,
.animate-on-scroll.animated,
.cta-section h2.animate-on-scroll,
.cta-section p.animate-on-scroll,
.cta-buttons.animate-on-scroll,
.fade-in,
.fade-in.show,
.blog-reveal,
.blog-reveal.is-visible,
.wp-show,
.animate-in,
/* Elements with opacity:0 base state — rescued from permanent invisibility */
.value-item,
.savings-highlight,
.savings-highlight.animate,
.included-category,
.included-category.animate,
.contact-icon,
.contact-icon.animated,
.about-intro-section p,
.pricing-page .pricing-cta,
.pricing-page .pricing-cta.animated,
.contact-cta,
.contact-cta.animated {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  visibility: visible !important;
}
.next-steps .fa-link {
  margin-right: 5px;
}

/* Fix for use only flexbox in content area */
.next-steps .row {
  margin-bottom: 0;
}

.next-steps .col-md-5 {
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .next-steps .col-md-5 {
    margin-bottom: 0;
  }
}

.loader-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.spinner-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
  margin-top: 20px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 32px;
  height: 32px;
  margin: 8px;
  border: 4px solid #000000;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #000000 transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.result-block-container .result-block {
  opacity: 1;
}

.tinder-container {
  overscroll-behavior-y: contain;
  overflow: hidden;
}

.property-matcher-title {
  z-index: 10;
  position: relative;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.property-matcher {
  background: aliceblue;
  position: fixed;
  overflow: hidden;
  width: 100%;
  height: 100%;
  cursor: url("https://uploads.codesandbox.io/uploads/user/b3e56831-8b98-4fee-b941-0e27f39883ab/Ad1_-cursor.png")
      39 39,
    auto;
}

.property-matcher > div {
  position: absolute;
  width: 100vw;
  height: 100vh;
  will-change: transform;
  display: flex;
  align-items: center;
  justify-content: center;
}

.property-matcher > div > div {
  background-color: white;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  width: 70%;
  /* max-width: 350px; */
  height: 60vh;
  /* max-height: 570px; */
  display: flex;
  will-change: transform;
  border-radius: 10px;
  box-shadow: 0 12.5px 100px -10px rgba(50, 50, 73, 0.4),
    0 10px 10px -10px rgba(50, 50, 73, 0.3);
}

.tinder-icon {
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  top: 50%;
  z-index: 1;
  padding: 15px;
  transform: translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 2px 8px 0 rgb(77 77 77 / 20%);
  background-color: #ffffff;
}

.tinder-icon.interest {
  fill: #e91e63;
  left: 6px;
}

.tinder-icon.reject {
  fill: #e91e63;
  right: 6px;
}

.title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  margin: 0;
  padding: 0;
  text-align: center;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  margin: 0;
  padding: 0;
  text-align: center;
  margin-bottom: 10px;
  max-width: 640px;
}

.modal-content-recommendation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.no-more-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.no-more-cards-title {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin: 0;
  padding: 0;
  text-align: center;
  margin-bottom: 10px;
}

.no-more-cards-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  margin: 0;
  padding: 0;
  text-align: center;
  margin-bottom: 10px;
  max-width: 400px;
}

@media only screen and (max-width: 768px) {
  .property-matcher > div > div {
    background-color: white;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center center;
    width: 45vh;
    max-width: 350px;
    height: 55vh;
    max-height: 570px;
    display: flex;
    will-change: transform;
    border-radius: 10px;
    box-shadow: 0 12.5px 100px -10px rgba(50, 50, 73, 0.4),
      0 10px 10px -10px rgba(50, 50, 73, 0.3);
  }
}

.tinder-icon-button {
  width: 55px;
  height: 55px;
  display: block;
  position: absolute;
  bottom: 7%;
  z-index: 1;
  padding: 15px;
  transform: translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 2px 8px 0 rgb(77 77 77 / 20%);
  background-color: #ffffff;
}

.tinder-icon-button:hover {
  cursor: pointer;
}

.tinder-icon-button.interest {
  fill: #e91e63;
  right: 25%;
}

.tinder-icon-button.reject {
  fill: #e91e63;
  left: 25%;
}

@media only screen and (max-width: 768px) {
  .deck-card-buttons {
    display: none;
  }
  .tinder-icon-button {
    display: none;
  }
}

/* Property Mather Guidance tour */

/* .right-icon-container {
  height: 120px;
  width: 120px;
  position: relative;
}

.circle {
  background-color: #fff;
  height: 120px;
  width: 120px;
  display: block;
  border: 5px solid #00baff;
  border-radius: 100px;
  position: absolute;
  bottom: 0;
  z-index: 1;
  animation-name: circle;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-play-state: running;
  -webkit-animation-name: circle;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
  -webkit-animation-play-state: running;
}

.fa {
  font-size: 42px;
  color: #00baff;
  bottom: 35px;
  position: absolute;
  left: 50%;
  margin-left: -18px;
  animation-name: arrow;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-play-state: running;
  -webkit-animation-name: arrow;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
  -webkit-animation-play-state: running;
}

.pulse {
  margin: 0 auto;
  border-radius: 100px;
  position: absolute;
  left: 5px;
  top: 5px;
  z-index: 0;
  background-color: transparent;
  opacity: 0;
  width: 110px;
  height: 110px;
  border: 10px solid #00baff;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  -webkit-animation: pulse 1s linear infinite 0.3s;
  -moz-animation: pulse 1s linear infinite 0.3s;
  border-image: initial;
}

@keyframes arrow {
  0% {
    right: 0;
  }
  75% {
    right: 90px;
  }
  100% {
    right: 0;
  }
}
@-webkit-keyframes arrow {
  0% {
    right: 0;
  }
  75% {
    right: 90px;
  }
  100% {
    right: 0;
  }
}
@keyframes circle {
  0% {
    width: 120px;
  }
  10% {
    width: 120px;
  }
  50% {
    width: 130px;
  }
  75% {
    width: 150px;
  }
  90% {
    width: 130px;
  }
  100% {
    width: 120px;
  }
}
@-webkit-keyframes circle {
  0% {
    width: 120px;
  }
  10% {
    width: 120px;
  }
  50% {
    width: 130px;
  }
  75% {
    width: 150px;
  }
  90% {
    width: 130px;
  }
  100% {
    width: 120px;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  8% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  15% {
    -webkit-transform: scale(0.1);
    opacity: 1;
  }
  30% {
    -webkit-transform: scale(0.5);
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes pulse {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  8% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  15% {
    -webkit-transform: scale(0.1);
    opacity: 1;
  }
  30% {
    -webkit-transform: scale(0.5);
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
} */
