     body {
      font-family: Arial, sans-serif;
      background-color: #5a43f1;
      color: white;
    }
    
    .navbar {
      background-color: transparent;
      margin-top: 15px;
    }
    .navbar-nav .nav-link {
      color: white;
      font-weight: 500;
      margin-right: 5px;
    }
 
    .btn-signup {
      background-color: #06d6a0;
      color: white;
      border: none;
      padding: 6px 20px;
      border-radius: 5px;
    }
    .login-card {
      background: white;
      border-radius: 8px;
      padding: 30px;
      box-shadow: 0px 3px 10px rgba(0,0,0,0.1);
      color: black;
    }
    .form-control {
      border-radius: 6px;
    }
    .btn-login {
      background-color: #06d6a0;
      color: white;
      border: none;
    }
    .btn-login:hover {
      background-color: #04b98a;
    }
    .form-text a {
      color: #4d35e7;
      text-decoration: none;
    }
     .feature-box {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      background: #fff;
      padding: 20px;
      border-radius: 12px;
    }
    .feature-box:hover {
      transform: translateY(-8px);
      box-shadow: 0px 8px 20px rgba(0,0,0,0.1);
    }
    /* Template cards */
    .template-card {
      border: none;
      overflow: hidden;
      border-radius: 15px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .template-card img {
      transition: transform 0.4s ease;
    }
    .template-card:hover {
      transform: translateY(-8px);
      box-shadow: 0px 8px 25px rgba(0,0,0,0.15);
    }
    .template-card:hover img {
      transform: scale(1.05);
    }
    .wave-section {
      position: relative;
      background: linear-gradient(135deg, #5a43f1, #3dc1c4);
      color: white;
      text-align: center;
      padding: 80px 20px 60px;
      overflow: hidden;
    }
    /* Animated wave using SVG */
    .wave-section svg {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: auto;
    }
    /* Button styling */
    .btn-dark {
      padding: 10px 25px;
      font-size: 1.1rem;
      border-radius: 8px;
    }
    /* Footer contact section */
    .footer-contact {
      background: white;
      padding: 40px 20px;
    }
    .footer-contact h6 {
      font-weight: bold;
      margin-bottom: 10px;
    }
    .footer-contact a {
      color: #5a43f1;
      text-decoration: none;
    }
    .footer-contact a:hover {
      text-decoration: underline;
      color:black;
    }
    /* Social icons */
    .social-icons a {
      display: inline-block;
      margin-right: 8px;
      font-size: 1.2rem;
      color: black;
      background: #5a43f1;
      padding: 8px;
      border-radius: 5px;
      transition: background 0.3s ease;
    }
    .social-icons a:hover {
      background: #2b459bff;
    }
    @media (max-width: 991px) {
     .navbar-brand {
    font-size: 1.4rem; /* smaller brand size */
     }}

  .navbar-brand .sub-head {
    font-size: 0.65rem; /* shrink tagline */
  }
     /* Extra spacing for Get Started link */
    .footer-contact .get-started-link {
      display: inline-block;
      margin-bottom: 20px; /* adjust as needed */
    }
    /* Responsive center alignment */
    @media (max-width: 767px) {
      .footer-contact .col-md-4{
        margin-bottom: 20px;
        text-align: center;
      }
    }