@keyframes backgroundShift {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    color: #fff; /* White text for readability on dark background */
    background: radial-gradient(circle, #382E57, #1A1A1A, #000000);
    background-size: 100%; /* Large size to allow for the 'movement' */
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }

  .navbar {
    margin-top: 2%;
    background-color: #262527; /* Dark background for navbar */
    padding: 1rem 1.5rem; /* Add padding to navbar */
    border-radius: 10px; /* Rounded edges */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); /* Soft shadow */
    width: 80%;
  }

/* Google Sign-In Button */
.gsi-material-button {
    background-color: white; /* White background for Google sign-in */
    border: none;
    padding: 10px 20px;
    border-radius: 15px; /* Rounded corners */
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow */
  }
  
  .gsi-material-button:hover {
    background-color: #f8f8f8; /* Light grey on hover */
  }
  
  .gsi-material-button .gsi-material-button-icon svg {
    height: 20px;
    margin-right: 8px;
  }
  
  .gsi-material-button .gsi-material-button-contents {
    color: black; /* Black text for Google sign-in */
    font-weight: 500;
  }

  .transparent-input {
    background-color: transparent;
    color: white;
    /* border: 1px solid white; */
  }
  
  .transparent-input:focus {
    background-color: transparent; /* Keep the background transparent on focus */
    outline: none; /* Remove default browser outline */
    color: white; /* Ensure text remains visible */
  }

  .btn-outline-secondary {
    background-image: linear-gradient(45deg, #A083F7, #561EFF); /* Purple to blue gradient */
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

.btn-gradient:hover {
    background-image: linear-gradient(45deg, #2575fc, #6a11cb); /* Reverse gradient on hover */
}

.template-cards-section {
    margin-top: 1rem; /* Reduced margin-top */
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    align-items: flex-start; 
    max-width: 1200px; /* Adjust max-width as needed */
    margin-left: auto; /* Center the section */
    margin-right: auto; /* Center the section */
}

.template-card {
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5); /* Adjust shadow opacity for a softer look */
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease; /* Added transition for opacity */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2); /* Light border for glassy effect */
  }
  
  .template-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
    animation: gradientShift 2s ease infinite; /* Adjust the duration as needed */
  }

  .accordion-button {
    background-color: #1e1e1e;
    color: #fff;
    font-weight: 600;
    padding: 15px;
    border: none; /* Remove solid border */
    border-radius: 5px;
    text-align: left;
    box-shadow: none;
    transition: all 0.3s ease;
  }

  .freq-button {
    border-style: dashed; /* Apply the dashed border */
    border-width: 1px; /* Set the thickness of the dashed border */
    border-color: #858585; /* Set the border color */
    border-radius: 15px !important;
  }

  .freq-content {
    border-style: dashed; /* Apply the dashed border */
    border-width: 1px; /* Set the thickness of the dashed border */
    border-color: white; /* Set the border color */
    border-radius: 15px;
    border-top: none;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  }

  .accordion {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    border-radius: 20% !important;
  }
  
  .accordion .accordion-item {
    border-radius: 5px; /* Optional: to round the corners */
    border-style: none !important;
  }
  
  .accordion .accordion-button::before {
    content: 'Q';
    display: inline-block;
    padding: 2px 10px;
    background-color: white;
    border-radius: 8px;
    color: #000000;
    text-align: center;
    line-height: 30px;
    margin-right: 15px;
  }
  
  .accordion-header {
    border: none;
  }
  
  .accordion-body {
    background-color: transparent;
  }
  
  .accordion-item {
    width: 100%; /* Ensure the item takes up full width */
  }


  .cowrite-final {
    display: flex;
    justify-content: center;
  }
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .navbar-nav {
        flex-direction: column;
        gap: 10px; /* Space between items when stacked */
    }
    
    .btn-pricing, .gsi-material-button {
        margin-right: 0;
        margin-bottom: 10px; /* Add spacing between buttons */
    }

    .cowrite-final {
      flex-direction: column;
      gap: 20px;
      width: 50%;
    }
  }