/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
}


body {
    color: #111;
    background: #fff;
    line-height: 1.6;
    
}



a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5px;
}


.btn-primary {
    background-color: #0070ff;
    color: #fff;
}

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


.text-center {
    text-align: center;
}

.section {
    padding: 80px 0;
    background: #fff;
}


.section-title {
   font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 35px;
    position: relative;
   
}
.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0070ff, #00c6ff);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.decoration-dot {
    width: 10px;
    height: 10px;
    background: #0070ff;
    border-radius: 50%;
    margin: 0 10px;
}

.decoration-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #0070ff, transparent);
}


/* Header Styles */




/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5% 8% 52px 8%;
  gap: 40px;
  min-height: 90vh;
  flex-wrap: wrap;
  position: relative;
}

.hero-left {
  flex: 1.2;
  animation: fadeUp 1.2s ease-out forwards;
  transform: translateY(30px);
  opacity: 0;
  margin-top: 100px;
}

.hero-left h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #111;
  margin-bottom: 20px;
  line-height: 1.05;
  word-spacing: -6px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: right;
  align-items: center;
  margin-top: 80px;
  animation: fadeUp 1.2s ease-out forwards;
  transform: translateY(30px);
  opacity: 0;
}

.hero-visual {
  width: 80%;
  max-width: 400px;
  animation: fadeUp 1s ease-out forwards;
  transform: translateY(30px);
  opacity: 0;
  margin-right: auto;
  margin-left: auto;
  border-radius: 16px;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    justify-content: end;
    /* push cards to the right */
    background: #f0f0f0;
    border-radius: 24px;
    padding: 40px 15px 20px 15px;
    margin-bottom: 40px;
    box-shadow: 0 2px 16px rgba(0, 112, 255, 0.04);
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
}
.features-grid:before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0,112,255,0.1) 0%, rgba(0,112,255,0) 70%);
    z-index: 0;
}

.features-grid:after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0,198,255,0.1) 0%, rgba(0,198,255,0) 70%);
    z-index: 0;
}

.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 112, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #050505;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0, 112, 255, 0.1);
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0070ff, #00c6ff);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover:before {
    opacity: 1;
}

.feature-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 112, 255, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,112,255,0.1) 0%, rgba(0,198,255,0.1) 100%);
    border-radius: 50%;
    color: #0070ff;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
    background: linear-gradient(135deg, #0070ff 0%, #00c6ff 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 112, 255, 0.3);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    position: relative;
}

.feature-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #0070ff;
    transition: width 0.3s;
}

.feature-card:hover .feature-title:after {
    width: 60px;
}

.feature-highlight {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(0, 112, 255, 0.05);
    top: -30px;
    right: -30px;
    z-index: -1;
    transition: all 0.5s;
}

.feature-card:hover .feature-highlight {
    transform: scale(1.5);
    opacity: 0;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        padding: 20px 10px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}


/* How It Works Section */
/* General Section Styling */
.how-it-works {
    background: linear-gradient(135deg, #f8faff 0%, #f0f7ff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.how-it-works .container {
    position: relative;
    z-index: 2;
}

.how-it-works:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%230070ff" fill-opacity="0.03" d="M0,0 L100,0 L100,100 L0,100 Z"></path></svg>');
    background-size: 300px;
    opacity: 0.3;
}

/* Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0070ff, #00c6ff);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.process-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 112, 255, 0.3), transparent);
    width: 80%;
    margin: 30px auto 0;
}

/* Steps Container */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 112, 255, 0.1);
    padding: 60px;
    margin-bottom: 60px;
    position: relative;
    border: 1px solid rgba(0, 112, 255, 0.1);
}

.steps-container:before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px dashed rgba(0, 112, 255, 0.15);
    border-radius: 25px;
    z-index: -1;
    pointer-events: none;
}

/* Step Styling */
.step {
    display: flex;
    gap: 30px;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 12px;
}

.step:hover {
    background: rgba(0, 112, 255, 0.03);
    transform: translateX(5px);
}

.step-number-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-number {
    background: linear-gradient(135deg, #0070ff, #00c6ff);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 112, 255, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 112, 255, 0.4);
}

.step-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #0070ff, rgba(0, 112, 255, 0.3));
    margin: 10px 0;
    flex-shrink: 0;
}

.step:last-child .step-connector {
    display: none;
}

.step-content {
    flex: 2;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
    position: relative;
}

.step-title:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #0070ff;
    transition: width 0.3s ease;
}

.step:hover .step-title:after {
    width: 60px;
}

.step p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
}

body.dark-mode .step p{
color: white;
}

body.dark-mode .step-title {
    color: #44aaff;
}

/* Icon Styling */
.step-icon {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 112, 255, 0.1);
    color: #0070ff;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.step:hover .icon-wrapper {
    background: linear-gradient(135deg, #0070ff, #00c6ff);
    color: white;
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 112, 255, 0.3);
}

/* Image Styling (alternative option) */
.step-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-image img {
    max-width: 150px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.step:hover .step-image img {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* CTA Button */
.cta-container {
    text-align: center;
    margin-top: 40px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #0070ff, #00c6ff);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 112, 255, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 112, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {

    .steps-container {
        padding: 30px 20px;
        gap: 30px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .step-number-container {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    
    .step-connector {
        width: 40px;
        height: 2px;
        margin: 0 10px;
    }
    
    .step-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .icon-wrapper {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

/* Pricing Section */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    background: #fff;
    border-radius: 24px;
    padding: 40px 10px 20px 10px;
    margin-bottom: 40px;
    box-shadow: 0 2px 16px rgba(0, 112, 255, 0.04);
}

.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular {
    border: 2px solid #0070ff;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0070ff;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin: 20px 0;
    color: #0070ff;
}

.price span {
    font-size: 1rem;
    color: #666;
}

.pricing-features {
    margin: 30px 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* Testimonials Section */
.testimonials {
    background: #f0f0f0;
    border-radius: 24px;
    box-shadow: 0 2px 16px rgba(0, 112, 255, 0.04);
    padding-top: 60px;
    padding-bottom: 60px;
    margin-bottom: 40px;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    min-height: 250px;
    /* increase min height */
    min-width: 0;
    /* ensure flex/grid shrink works */
    word-break: break-word;
    /* prevent overflow */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card p {
    color: #050505;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 20px 20px 25px rgba(0, 0, 0, 0.10);
    background-color: #f0f0f0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    /* allow wrapping if needed */
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-weight: 700;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #0070ff 0%, #005bb5 100%);
    color: white;
    text-align: center;
}

.cta .section-title,
.cta .section-subtitle {
    color: black;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 30px;
}


.cta .btn-outline:hover {
    background-color: #0070ff;
    color: #fff;
}


/* Footer */
footer.footer {
    margin-top: 60px;
    background: #f0f0f0;
    padding: 60px 40px 30px;
    border-top: 1px solid #cccccc;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-column {
    min-width: 150px;
}

.footer-column h4 {
    font-size: 1rem;
    color: #0070ff;
    margin-bottom: 10px;
}

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

.footer-bottom {
    color: #888fa6;
    text-align: center;
    font-size: 0.95rem;
    margin-top: 20px;
}

/* Solutions Section */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    /* increased gap */
    margin-top: 60px;
    /* slightly more space above */
    background: #f0f0f0;
    border-radius: 24px;
    padding: 40px 15px 20px 15px;
    margin-bottom: 40px;
    box-shadow: 0 2px 16px rgba(0, 112, 255, 0.04);
}

.solution-card {
    background: #fff;
    border-radius: 18px;
    /* larger radius */
    padding: 56px 36px;
    /* more padding */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    /* stronger shadow */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 340px;
    /* taller card */
    max-width: 420px;
    /* wider card */
    margin-left: auto;
    margin-right: auto;
}

.solution-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.13);
}

.solution-image img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 28px;
}

.solution-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.solution-card p {
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-list {
    max-width: 1000px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(0, 112, 255, 0.04);
    padding: 32px 0;
    margin-bottom: 40px;
}

.faq-item {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item.open {
    box-shadow: 0 8px 28px rgba(68, 170, 255, 0.10);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0070ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    transition: background 0.15s;
}

.faq-question:hover {
    background: #f0f6ff;
}

.faq-arrow {
    margin-left: 18px;
    font-size: 1.2em;
    color: #0070ff;
    transition: transform 0.2s;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #f9fafc;
    color: #222;
    font-size: 1.08rem;
    padding: 0 28px;
    transition: max-height 0.4s cubic-bezier(.4, 0, .2, 1), padding 0.2s;
}

.faq-item.open .faq-answer {
    padding: 18px 28px 28px 28px;
    max-height: 1000px;
    /* Large enough for any answer */
}

/* Dark Mode Styles */

body.dark-mode header{background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 5%, rgba(34, 34, 34, 0.5) 100%);}

body.dark-mode .navbar {
    background: transparent;
    color: #f1f5fa;
}

body.dark-mode .logo {
    color: #44aaff;
}

body.dark-mode .nav-links a {
    color: #f1f5fa;
}

body.dark-mode .nav-links a:hover {
    color: #44aaff;
}


body.dark-mode .btn-primary {
    background: #223;
    color: #44aaff;
}

body.dark-mode .btn-primary:hover {
    background: #44aaff;
    color: #fff;
}

body.dark-mode .section-title,
body.dark-mode .section-subtitle {
    color: #f1f5fa;
}

body.dark-mode .feature-card,
body.dark-mode .pricing-card,
body.dark-mode .testimonial-card,
body.dark-mode .faq-item,
body.dark-mode .solution-card {
    background: #242323;
    color: #f1f5fa;
    box-shadow: 0 5px 15px rgba(68, 170, 255, 0.07);
}

body.dark-mode .feature-card p,
body.dark-mode .pricing-card p,
body.dark-mode .testimonial-card p,
body.dark-mode .solution-card p {
    color: white;
}

body.dark-mode .feature-title,
body.dark-mode .solution-title {
    color: #44aaff;
}

body.dark-mode .testimonials {
    background: #181c2a;
}

body.dark-mode .faq-answer {
    background: #181c2a;
    color: white;
}

body.dark-mode .faq-question {
    color: #44aaff;
}
body.dark-mode .faq-question:hover {
    color: black;
}

body.dark-mode .faq-item.open {
    box-shadow: 0 8px 28px rgba(68, 170, 255, 0.10);
}

body.dark-mode .cta {
    background: linear-gradient(135deg, #223 0%, #223c4f 100%);
    color: #f1f5fa;
}

body.dark-mode .cta .section-title,
body.dark-mode .cta .section-subtitle {
    color: #f1f5fa;
}



body.dark-mode .cta .btn-outline:hover {
    background: #44aaff;
    color: #fff;
}

body.dark-mode footer.footer {
    background: #1a1a1a;
    border-top: 1px solid #223c4f;
    color: #f1f5fa;
}

body.dark-mode .footer-column h4 {
    color: #44aaff;
}

body.dark-mode .footer-bottom {
    color: #888fa6;
}

body.dark-mode .steps-container {
    background: transparent;
    backdrop-filter: blur(12px);
}

body.dark-mode .step {
    background: transparent;
}

/* Responsive Styles */
@media (max-width: 992px) {

    .features-grid,
    .pricing-cards,
    .testimonial-cards,
    .footer-content,
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content {
        flex-direction: column;
    }

}



@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
        word-spacing: normal;
    }
      .hero-visual{
border-radius: 12px;
max-width: 75%;
margin-bottom: 20px;
  }
}

@media (max-width: 576px) {

    .features-grid,
    .pricing-cards,
    .testimonial-cards,
    .footer-content,
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: row;
        
    }
    .cta-buttons{
        flex-direction: column;
    }

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

    .hero{
        flex-direction: column;
        align-items: center;    
    }
}

@media (max-width: 400px) {
    .hero{
        margin-top: 0%;
        gap: 25px;
    }
}


/* --- Section backgrounds for visual separation --- */
.section {
    padding: 80px 0;
    background: #ffffff;
    /* subtle light blue for most sections */
}

/* Features Section */
.features-grid {
    background: #f0f0f0;
    border-radius: 24px;
    padding: 40px 0 20px 60px;
    margin-bottom: 40px;
    box-shadow: 0 2px 16px rgba(0, 112, 255, 0.04);
}

/* How It Works Section */
.steps-container {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(0, 112, 255, 0.04);
    padding: 40px 24px;
    margin-bottom: 40px;
}

/* Solutions Section */
.solutions-grid {
    background: #f0f0f0;
    border-radius: 24px;
    padding: 40px 15px 20px 15px;
    margin-bottom: 40px;
    box-shadow: 0 2px 16px rgba(0, 112, 255, 0.04);
}

/* Pricing Section */
.pricing-cards {
    background: #fff;
    border-radius: 24px;
    padding: 40px 10px 20px 10px;
    margin-bottom: 40px;
    box-shadow: 0 2px 16px rgba(0, 112, 255, 0.04);
}

/* Testimonials Section */
.testimonials {
    background: #f0f0f0;
    border-radius: 24px;
    box-shadow: 0 2px 16px rgba(0, 112, 255, 0.04);
    padding-top: 60px;
    padding-bottom: 60px;
    margin-bottom: 40px;
}

/* FAQ Section */
.faq-list {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(0, 112, 255, 0.04);
    padding: 32px 0;
    margin-bottom: 40px;
}

.navbar nav a :active{
    color: #d7ff44;
}
/* CTA Section already has a gradient background */

/* Footer already has a different background */

/* --- Dark Mode Section backgrounds --- */
body.dark-mode .section {
    background: #1a1a1a;
}

body.dark-mode .section:nth-of-type(even) {

}

body.dark-mode .features-grid,
body.dark-mode .solutions-grid,
body.dark-mode .pricing-cards {
    background: transparent;
    backdrop-filter: blur(20px);
    border-right: 0.1px solid rgb(105, 105, 105);
    border-bottom:0.1px solid rgb(105, 105, 105);
    box-shadow: 0 2px 16px rgba(68, 170, 255, 0.04);
}

body.dark-mode .faq-list {
    background: transparent;
    
}

body.dark-mode .testimonials {
    background: #202a3a;
    box-shadow: 0 2px 16px rgba(68, 170, 255, 0.04);
}

/* Add a subtle divider between sections for extra clarity */
.section+.section {
    border-top: 1px solid #e3e9f3;
}

body.dark-mode .section+.section {
    border-top: 1px solid #223040;
}



