﻿
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&display=swap");

:root {
  --c-dark-bg: #0d1117;
  --c-dark-surface: #161b22;
  --c-text-primary: #ffffff;
  --c-text-secondary: #8b949e;
  --c-border: rgba(255, 255, 255, 0.1);

  /* The star of the show: a vibrant gradient */
  --gradient-primary: linear-gradient(90deg, #00f2fe, #4c83ff, #a46bff);
  --gradient-primary-alt: linear-gradient(90deg, #a46bff, #4c83ff, #00f2fe);

  --font-family: "Manrope", sans-serif;
  --border-radius: 12px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family) !important;
  color: var(--c-text-secondary) !important;
  line-height: 1.6 !important;
  background-color: var(--c-dark-bg) !important;
}

.container {
  max-width: 1140px !important;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

h1,
h2,
h3,
h4 {
  color: var(--c-text-primary);
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem) !important;
}
h3 {
  font-size: 1.25rem !important;
}

p {
  max-width: 65ch; /* Improve readability */
}

.text-center {
  text-align: center;
}
.mt-4 {
  margin-top: 4rem;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ------------------- */
/* 2. Buttons & Shared Components
/* ------------------- */
.btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  padding: 0.8rem 1.75rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border-radius: var(--border-radius) !important;
  border: 2px solid transparent !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
}

.btn-primary {
  background: var(--gradient-primary) !important;
  color: var(--c-text-primary) !important;
  background-size: 200% 100% !important;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 4px 15px rgba(76, 131, 255, 0.4);
  background-position: right center;
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: var(--c-text-primary) !important;
  border-color: var(--c-border) !important;
}
.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2) !important;
  border-color: var(--c-text-primary) !important;
}

.btn-lg {
  padding: 1rem 2.25rem !important;
  font-size: 1.1rem !important;
}

.section-header {
  margin: 0 auto 4rem auto;
  max-width: 700px;
}
.section-header h2 {
  margin-bottom: 1rem;
}
.section-header p {
  font-size: 1.1rem;
  margin-left: auto;
  margin-right: auto;
}

/* ------------------- */
/* 3. Animations (Aurora & Scroll)
/* ------------------- */
.aurora-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.aurora-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: aurora-glow 15s infinite alternate;
}

.shape1 {
  width: 400px;
  height: 400px;
  background-color: #00f2fe;
  top: 10%;
  left: 10%;
}
.shape2 {
  width: 300px;
  height: 300px;
  background-color: #a46bff;
  top: 50%;
  right: 5%;
  animation-delay: 5s;
}
.shape3 {
  width: 350px;
  height: 350px;
  background-color: #4c83ff;
  bottom: 5%;
  left: 40%;
  animation-delay: 10s;
}

@keyframes aurora-glow {
  from {
    transform: translate(0, 0) rotate(0deg);
  }
  to {
    transform: translate(100px, 50px) rotate(180deg);
  }
}

/* Scroll Animation Setup */
.animated-item {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: var(--delay, 0s);
}
.animated-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------- */
/* 4. Header / Navbar
/* ------------------- */
header {
  padding: 1.5rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, padding 0.3s ease;
}
.navbar-nav {
    gap: 2.5rem;
    padding: 0 !important;
}
.navbar-scrolled {
  background-color: rgba(13, 17, 23, 0.8);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--c-border);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-text-primary);
  text-decoration: none;
}

.nav-link {
  font-weight: 600;
  color: var(--c-text-secondary) !important;
  text-decoration: none;
  transition: color 0.3s ease;
  padding:0!important;
}
.nav-link:hover {
  color: var(--c-text-primary) !important;
}
.navbar-cta {
  display: block;
}
.navbar-toggler {
    background: var(--gradient-primary) !important;
    border: transparent !important;
    padding: 9px 10px !important;
    color: #fff !important;
}
.header.offcanvas {
    background: #0d1117 !important;
    width:320px !important;
}
.header .offcanvas-header {
        border-bottom: 1px solid #07e7fe;
 }
.navbar-toggler:focus {
    box-shadow: none !important;
}
.btn-close {
    background-color: #fff !important;
    opacity:1 !important;
}
    /* ------------------- */
    /* 5. Page Sections
/* ------------------- */
    /* --- Hero Section --- */
    .hero-section {
        /*  padding: 10rem 0 6rem 0;*/
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
.hero-headline {
  margin: 0 auto 1.5rem auto;
}
.hero-subheadline {
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
  font-size: 1.25rem;
}
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Trusted By Section --- */
.trusted-section {
  padding: 3rem 0;
  background-color: rgba(0, 0, 0, 0.1);
}
.section-title-subtle {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--c-text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}
.logos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  color: var(--c-text-secondary);
  font-weight: 600;
}
.logos-container span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: color 0.3s ease;
}
.logos-container span:hover {
  color: var(--c-text-primary);
}

/* --- How It Works Section --- */
.how-it-works-section {
  padding: 6rem 0;
}
.step-card {
  background: var(--c-dark-surface);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--c-border);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  border-radius: var(--border-radius);
  padding: 2px;
  background: var(--gradient-primary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.step-card:hover::before {
  opacity: 1;
}
.step-number {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-text-primary);
}
.step-icon {
  width: 48px;
  height: 48px;
  color: var(--c-text-primary);
  margin-bottom: 1.5rem;
}

/* --- Features Section --- */

.features-section {
  padding-bottom: 3rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0)
  );
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--c-border);
  transition: background 0.3s ease;
}
.feature-card h3 {
        margin: 10px 0;
 }
.feature-card svg {
    color: #fff;
    background: var(--gradient-primary) !important;
    width: 40px;
    height: 40px;
    padding: 5px;
    border-radius: 5px;
    }
.feature-card:hover {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
}
.feature-card i {
  width: 32px;
  height: 32px;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- Who It's For (Audience) Section --- */
.audience-section {
  padding: 6rem 0;
  position: relative;
}
.audience-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.1;
  z-index: 0;
}

.audience-card {
    background-color: var(--c-dark-surface);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--c-border);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* --- Testimonials Section --- */

.testimonials-section {
  padding: 6rem 0;
}

.testimonial-card {
    background: var(--c-dark-surface);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--c-border);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.testimonial-card blockquote {
  font-size: 1.2rem;
  border-left: 4px solid;
  border-image: var(--gradient-primary) 1;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
}
.author-name {
  display: block;
  color: var(--c-text-primary);
}
.author-title {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--c-text-secondary);
}

/* --- FAQ Section --- */

.faq-accordion {
  max-width: 800px;
  margin: auto;
}
.faq-item {
  border-bottom: 1px solid var(--c-border);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: none;
  border: none;
  text-align: left;
  color: var(--c-text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
}
.faq-icon {
  transition: transform 0.3s ease;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer p {
  padding-bottom: 1.5rem;
}
.faq-item.open .faq-question {
  color: var(--c-text-primary);
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
}
.faq-item.open .faq-answer {
  max-height: 200px;
}

/* --- Final CTA Section --- */
.final-cta-section {
  padding: 6rem 0;
}
.final-cta-section h2 {
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
}
.final-cta-section p {
    margin: 0 auto 2rem;
}

/* ------------------- */
/* 6. Footer
/* ------------------- */
.footer {
  padding: 4rem 1.5rem 0;
  background-color: #010409;
  color: var(--c-text-secondary);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-about h4,
.footer-links h4,
.footer-contact h4 {
  color: var(--c-text-primary);
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact p {
  color: var(--c-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--c-text-primary) !important;
}

.footer-contact p {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.9rem;
}

/* Pricing Section CSS Start */


.pricing-section {
    padding: 80px 20px;
    background: radial-gradient(ellipse at center, rgba(0, 242, 254, 0.1), transparent 70%);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(76, 131, 255, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(164, 107, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}
.pricing-section .container {
    max-width: 1600px !important;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    overflow:hidden;
    display:flex;
    flex-direction:column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00f2fe, #4c83ff, #a46bff);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 242, 254, 0.3);
    box-shadow: 0 20px 40px rgba(0, 242, 254, 0.2);
}

.plan-name {
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    min-height: 70px;
    line-height: 1.4;
}
.plan-price {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(90deg, #00f2fe, #4c83ff, #a46bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.plan-period {
    color: #888;
    font-size: 1rem;
    margin-bottom: 30px;
}

.plan-description {
    font-size: 14px;
    color: #cbd5e1;
    margin: 10px 0;
    min-height: 80px;
    letter-spacing: 1.2px;
    line-height: 1.4;
}
.features-list {
    list-style: none;
    margin-bottom: 40px;
    padding:0;
}

.features-list li {
    padding: 12px 0;
    color: #e0e0e0;
    position: relative;
    padding-left: 30px;
    display: flex;
    align-items: center;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00f2fe;
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-btn {
    width: 100%;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #00f2fe, #4c83ff, #a46bff);
    color: #000;
    position: relative;
    overflow: hidden;
    margin-top:auto;
}

.pricing-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.pricing-btn:hover::before {
    left: 100%;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.4);
}

.pricing-btn.secondary {
    background: transparent;
    border: 2px solid rgba(0, 242, 254, 0.5);
    color: #00f2fe;
}

.pricing-btn.secondary:hover {
    background: var(--gradient-primary);
    background-position: right center;
    color: #FFF;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 242, 254, 0.1), rgba(164, 107, 255, 0.1));
    animation: float 6s ease-in-out infinite;
}

.floating-circle:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-circle:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-circle:nth-child(3) {
    width: 40px;
    height: 40px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}
/* Pricing Section CSS End */


/* Contact Us Section Start */

.contact-section {
    padding: 80px 20px;
    background: radial-gradient(ellipse at center, rgba(0, 242, 254, 0.1), transparent 70%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(76, 131, 255, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(164, 107, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.contact-section .container {
    max-width: 1440px;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00f2fe, #4c83ff, #a46bff);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-form-container:hover::before {
    transform: scaleX(1);
}

.contact-form-container:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 242, 254, 0.3);
    box-shadow: 0 20px 40px rgba(0, 242, 254, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 280px;
}

.form-group label {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color:#fff
}

.form-input,
.form-textarea {
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #00f2fe;
    box-shadow: 0 0 0 3px rgba(0, 242, 254, 0.2);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #a0aec0;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.form-submit .pricing-btn {
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Animation styles for the contact form */
.contact-form-container.animated-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.contact-form-container.animated-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Us Section End */

.popup-overlay {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 20, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.popup-box {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    color: white;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.popup-title {
    font-size: 24px !important;
    margin-bottom: 15px;
    color: #c4cfff;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.popup-close-btn {
    margin-top: 20px;
    background: linear-gradient(to right, #00f0ff, #c77dff);
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    color: #0b0b2c;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.popup-close-btn:hover {
    background: linear-gradient(to right, #00e4ff, #be68ff);
}
.footer-contact a {
    color: var(--c-text-secondary);
}
.footer-contact a:hover {
    color: var(--c-text-primary) !important;
    transition: color 0.3s ease;
}

.no-underline {
    text-decoration: none;
}


/* Privacy Page CSS Start  */

.privacy-section {
    padding-top: calc(90px + 2rem);
}
.privacy-inner {
    background: rgba(26, 35, 50, 0.6);
    padding: 32px;
    border-radius: 15px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
    .privacy-inner:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
    }
.privacy-section .content-wrapper {
    max-width: 1030px;
    margin: 0 auto;
}
.privacy-header h1 {
    font-size: clamp(2.5rem, 1rem + 3vw, 3.5rem)!important;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
}
.privacy-header  {
    color: var(--c-text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}
.section-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #4a90e2, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: white !important;
    -webkit-text-fill-color: #fff !important;
}

.privacy-inner h2 {
    font-size: clamp(1.4rem, -0.8931rem + 2.659vw, 1.7rem) !important;
    font-weight: 600;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.effective-date {
    background: rgba(74, 144, 226, 0.1);
    padding: 24px;
    border-radius: 10px;
    border-left: 4px solid #4a90e2;
    margin-bottom: 48px;
}
.privacy-content ul {
    padding-left:10px;
}
.privacy-content li {
    color: var(--c-text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    list-style: none;
}
.privacy-content li::before {
    content: "•";
    color: #00f2fe;
    position: absolute;
    left: 0;
    font-weight: bold;
}
.privacy-content {
    color: #e1e8f0;
    line-height: 1.7;
}

.privacy-content a {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-content a:hover {
    color: #00d4ff;
}
/* Privacy Page CSS End  */

/* Login Screen CSS Start */

.login-container .form-floating > label {
    position: unset !important;
    padding: 0 !important;
    margin: 0;
    color: #000;
}

.login-container input::placeholder {
    font-weight: bold;
    opacity: 0.5;
    color: red;
}

.login-container .form-floating > .login-container .form-control:-webkit-autofill, .login-container .form-floating > .login-container .form-control-plaintext:-webkit-autofill,
.login-container .form-floating > .form-control:not(:placeholder-shown), .login-container .form-floating > .form-control, .login-container .form-floating > .form-control-plaintext {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.login-container .form-control {
    border: 2px solid rgba(0, 0, 0, 0.1) !important;
}

.login-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    display: flex;
    width: 90%;
    max-width: 1200px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 !important;
}

.login-container .login-img {
    background: linear-gradient(45deg, #1a1a2e, #16213e, #0f3460);
    display: flex;
    align-items: center;
}

 .shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

    .shape:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    animation-delay: 0s;
}

    .shape:nth-child(2) {
    width: 120px;
    height: 120px;
    left: 20%;
    animation-delay: 2s;
}

    .shape:nth-child(3) {
    width: 60px;
    height: 60px;
    left: 70%;
    animation-delay: 4s;
}

    .shape:nth-child(4) {
    width: 100px;
    height: 100px;
    left: 80%;
    animation-delay: 6s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7);*/
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
    opacity: 0.8;
}

.login-container .login-section {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    height: 100%;
}

.login-container .login-header p {
    color: #fff;
    text-shadow: 0 0 1px #fff;
    font-size: 17px;
    color: #000;
}

.login-container .login-header img {
    margin-bottom: 30px;
}

.login-container .login-section .card-title {
    font-size: clamp(2rem, 1vw + 2rem, 2.7rem) !important;
    font-weight: 800 !important;
    color: #2d3748;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #00f2fe, #4c83ff, #a46bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    animation: textGlow 3s ease-in-out infinite alternate line-height: normal !important;
    margin-bottom: 10px;
    line-height: 1.5 !important;
}
.login-container .login-section .pricing-btn {
    border-radius: 16px;
    color: #fff;
    padding: 18px 0;
    font-size: 17px;
    text-transform: capitalize;
}

.forgot-password {
    text-align: right;
    margin: -16px 0 24px 0;
}

.login-container .forgot-password a {
    color: #000;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding-top: 5px;
    transition: color 0.3s ease;
    display: block;
    margin-top: 15px;
}

.login-container .forgot-password a:hover {
    color: #764ba2;
    transform: translateX(2px);
}

.login-container .form-control {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px;
    color: white;
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}


.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.login-container input::placeholder {
    color: #000;
}

.login-container .input-container {
    position: relative;
}

.login-container .form-group input {
    width: 100%;
    padding: 1.25rem 4rem 1.25rem 1.25rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 13px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    max-width: 100%;
}
 
.login-container .input-container input:focus {
    outline: none;
    border-color: #5284fa63;
    box-shadow: 0 0 0 3px rgb(161 108 250 / 41%);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15) !important;
}

.login-section form {
    margin-top: 30px;
}


@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.login-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-direction: column;
    position: relative;
}
.login-hero > p {
    font-size:30px;
    color:#fff;
}
.login-header p {
    text-shadow: 0 0 1px #fff;
    font-size: 19px;
    color: #191d33;
    font-weight: 600;
}

.login-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, #00f2fe, #4c83ff, #a46bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    animation: textGlow 3s ease-in-out infinite alternate
}

.geometric-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape-3d {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(240, 147, 251, 0.3), rgba(79, 172, 254, 0.3));
    border-radius: 20px;
    animation: rotate3d 10s linear infinite;
    backdrop-filter: blur(5px);
}

.shape-3d:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    transform-origin: center;
}

.shape-3d:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
    border-radius: 50%;
    width: 80px;
    height: 80px;
}

.shape-3d:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    border-radius: 0;
}

@keyframes rotate3d {
    0% {
        transform: rotate(0deg) translateZ(0) scale(1);
    }

    25% {
        transform: rotate(90deg) translateZ(10px) scale(1.1);
    }

    50% {
        transform: rotate(180deg) translateZ(0) scale(1);
    }

    75% {
        transform: rotate(270deg) translateZ(-10px) scale(0.9);
    }

    100% {
        transform: rotate(360deg) translateZ(0) scale(1);
    }
}
.login-input-icon {
    cursor: pointer;
    padding: 0 6px;
    background: #fff;
    display: flex;
    width: 55px;
    height: 55px;
    align-items: center;
    margin-right: 5px !important;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    color: #17213c;
}

/* Particle system */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}



/* ------------------- */
/* 7. Responsive Media Queries
/* ------------------- */

/* Tablet View */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        gap: 2rem;
    }
}

@media(max-width:991px){
    header {
        background: #0d1117f0;
    }
    .navbar-nav {
        padding: 20px 0 0 0 !important;
        gap: 1.5rem;
    }
    a.nav-link {
        border-bottom: 1px solid #05ecfe !important;
        padding: 8px 0 !important;
        color: #fff !important;
    }
  
    .how-it-works-section,
    .audience-section {
        padding: 4rem 0;
    }
    .hero-section {
        min-height: 75vh;
    }
    header .btn {
        padding: 0.5rem 1.05rem !important;
    }
    .hero-section {
        padding: 8rem 0 3rem 0;
    }
    .plan-name {
        min-height: 50px;
        line-height: 1.4;
    }
    .plan-description {
        min-height: auto;
    }
    .features-list li {
        padding: 5px 26px;
    }
}


/* Mobile View */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-about,
    .footer-links,
    .footer-contact {
        margin-bottom: 2rem;
    }

        .footer-contact p {
            justify-content: center;
        }

    .pricing-title {
        font-size: 2.5rem;
    }

    .pricing-grid {
        gap: 20px;
    }

    .plan-price {
        font-size: 2.4rem;
    }

    .plan-name {
        font-size: 24px;
        min-height: 40px;
    }


    .pricing-section {
        padding: 60px 15px;
    }
    .login-section {
        padding: 20px
    }

 
}


/* Extra Small Devices */
@media (max-width: 480px) {
    .footer {
        padding: 3rem 1rem 0;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }

    .footer-contact p {
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }
    .hero-section {
        min-height: 85vh;
    }
}

/* Singup Screen CSS*/
