  /* Navbar */
  .marketing-navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease-in-out;
  }

  .marketing-navbar .navbar-brand span {
    font-size: 1.2rem;
    color: #0d6efd;
  }

  /* Nav links */
  .nav-link-marketing {
    font-weight: 500;
    color: #333 !important;
    margin: 0 0.6rem;
    position: relative;
    transition: all 0.3s ease-in-out;
  }

  .nav-link-marketing:hover {
    color: #0d6efd !important;
  }

  .nav-link-marketing::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -4px;
    background-color: #0d6efd;
    transition: width 0.3s ease-in-out;
  }

  .nav-link-marketing:hover::after {
    width: 100%;
  }

  /* Mobile fixes */
  @media (max-width: 991px) {
    .navbar-collapse {
      background: #fff;
      padding: 1rem;
      border-radius: 8px;
      margin-top: 0.5rem;
    }
    .btn-demo {
      display: block;
      text-align: center;
      margin: 0.5rem 1.3rem !important;
    }
    .marketing-navbar .container {
      padding: 0;
    }
  }  

:root {
    --primary: #0d6efd;
    --secondary: #fd7e14;
    --dark: #212529;
    --light: #f8f9fa;
    --success: #198754;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #cb0c9f 0%, #004aad 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    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.05'%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");
    top: -50%;
    left: -50%;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-5%, -5%) rotate(1deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-image {
    position: relative;
    animation: floatUpDown 3s infinite alternate ease-in-out;
}

@keyframes floatUpDown {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}
        
/* Features */
.features {
    padding: 100px 0;
}

.feature-card {
    border-radius: 10px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary);
    font-size: 30px;
}

    /* How It Works */
.how-it-works {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.step-card {
    position: relative;
    padding: 30px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: scale(1.03);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
}

.testimonial-card {
    border-radius: 10px;
    padding: 30px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 80px;
    color: rgba(13, 110, 253, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

        
/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2152ff 0%, #e55c00 100%);
    color: white;
}

.cta-card {
    border-radius: 15px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 50px;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 50px;
        text-align: center;
    }
    
    .features, .how-it-works, .testimonials, .cta {
        padding: 60px 0;
    }
    
    .cta-card {
        padding: 30px;
    }
}
        
/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 50px;
        text-align: center;
    }
    
    .features, .how-it-works, .testimonials, .cta {
        padding: 60px 0;
    }
    
    .cta-card {
        padding: 30px;
    }
}

/* Footer */
footer {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    color: #333;
    padding: 70px 0 20px;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0d6efd !important;
}

/* About Us Section */
.about-us {
    padding: 80px 0;
}
.about-us h2 {
    color: #071950; /* your primary dark color */
}
.about-us p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}
.about-us img {
    max-width: 90%;
    border-radius: 12px;
    transition: transform 0.3s ease;
}
.about-us img:hover {
    transform: scale(1.05);
}

/* Contact Us Section */
.contact-us {
    padding: 80px 0;
}
.contact-us h2 {
    color: #071950;
}
.contact-us .form-control {
    border-radius: 10px;
    padding: 14px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}
.contact-us .form-control:focus {
    border-color: #36cfd9;
    box-shadow: 0 0 8px rgba(54, 207, 217, 0.3);
}
.contact-us button {
    border-radius: 10px;
    font-weight: 600;
}
.contact-us .card {
    border-radius: 15px;
}

.step-card img{
    border-radius:20px;
}