h2 {
    font-size: 25px;
  font-weight:100px;
}
h3 {
    font-size: 18px;
  font-weight:100px;
}
h1,h2,h3,h4,h5,h6 {
    color: var(--tc-neutral-0);
    font-family: var(--tc-heading-font-family);
    font-weight: 800px;
    line-height: var(--tc-heading-line-height);
    margin-bottom: 16px;
    margin-top: 0;
    text-transform: unset
}


 .faq-container {
      max-width: 900px;
      margin: auto;
    }
    .faq-item {
      background: #fff;
      border-radius: 8px;
      margin-bottom: 15px;
      border: 1px solid #ddd;
      overflow: hidden;
      transition: box-shadow 0.3s ease;
    }
    .faq-item.active {
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .faq-question {
      padding: 16px 20px;
      cursor: pointer;
      font-weight: bold;
      position: relative;
    }
    .faq-question::after {
      content: '+';
      position: absolute;
      right: 20px;
      font-size: 18px;
      transition: transform 0.3s;
    }
    .faq-item.active .faq-question::after {
      transform: rotate(45deg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background: #fafafa;
      transition: max-height 0.5s ease, padding 0.3s ease;
    }
    .faq-item.active .faq-answer {
      max-height: 2000px;
      padding: 16px 20px;
    }
    .faq-answer p, .faq-answer ul {
      margin: 0 0 10px;
      line-height: 1.6;
    }
    .faq-answer ul {
      padding-left: 20px;
    }

  #services-section {
    font-family: 'Poppins', sans-serif;
    padding: 60px 20px;
    background: #fff;
    text-align: center;
  }

  #services-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
  }

  #services-header p {
    font-size: 16px;
    color: #444;
    margin-bottom: 40px;
  }

  #services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
  }

  #services-container a {
    background: linear-gradient(135deg, #6e4ef2 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    color: #000;
    text-align: left;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
  }

  #services-container a:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  }

  #services-container h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
  }

  #services-container p {
    font-size: 14px;
    color: #222;
    line-height: 1.6;
  }







/* public/css/custom.css */
/* Hero Section Styles for Designing in Kashmir */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

#hero-section {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 50%, #e9d5ff 100%);
    min-height: 100vh;
    padding: 60px 5%;
    position: relative;
    overflow: hidden;
}

#hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

#hero-content {
    padding: 20px 0;
}

#google-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
}

#google-icon {
    width: 20px;
    height: 20px;
}

#trending-icon {
    color: #8b5cf6;
    font-size: 18px;
}

#hero-heading {
    font-size: 58px;
    font-weight: 800;
    color: #1e1b4b;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

#hero-highlight {
    color: #1e1b4b;
    position: relative;
    display: inline-block;
}

#lightning-emoji {
    display: inline-block;
    font-size: 48px;
    animation: pulse 2s ease-in-out infinite;
}

#hero-description {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 550px;
}

#cta-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 50px;
}

#get-started-btn {
    background: #1e1b4b;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(30, 27, 75, 0.3);
}

#get-started-btn:hover {
    background: #312e81;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(30, 27, 75, 0.4);
}

#pricing-link {
    color: #8b5cf6;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

#pricing-link:hover {
    color: #7c3aed;
    gap: 10px;
}

#trust-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#trust-text {
    color: #9ca3af;
    font-size: 14px;
    font-weight: 500;
}

#clients-avatars {
    display: flex;
    align-items: center;
    gap: 15px;
}

#avatar-group {
    display: flex;
    align-items: center;
}

#avatar-group img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -12px;
    object-fit: cover;
}

#avatar-group img:first-child {
    margin-left: 0;
}

#client-count {
    background: #ede9fe;
    color: #7c3aed;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
}

#hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#main-image {
    width: 450px;
    height: auto;
    position: relative;
    z-index: 2;
}

#stats-card-1 {
    position: absolute;
    top: 50px;
    right: 50px;
    background: white;
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

#revenue-label {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 5px;
}

#revenue-amount {
    font-size: 26px;
    font-weight: 800;
    color: #1e1b4b;
    margin-bottom: 5px;
}

#revenue-growth {
    color: #10b981;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

#stats-card-2 {
    position: absolute;
    bottom: 100px;
    left: 0;
    background: white;
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 3;
    min-width: 200px;
}

#account-label {
    font-size: 14px;
    color: #1e1b4b;
    font-weight: 600;
    margin-bottom: 8px;
}

#account-number {
    font-size: 24px;
    font-weight: 800;
    color: #1e1b4b;
    display: flex;
    align-items: center;
    gap: 8px;
}

#account-growth {
    color: #10b981;
    font-size: 18px;
    font-weight: 700;
}

#wave-chart {
    width: 100%;
    height: 40px;
    margin-top: 10px;
}

#background-blob {
    position: absolute;
    top: 50%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 1;
    filter: blur(60px);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    #hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    #hero-heading {
        font-size: 48px;
    }
    
    #hero-image-container {
        order: -1;
    }
    
    #main-image {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    #hero-section {
        padding: 40px 5%;
    }
    
    #hero-heading {
        font-size: 36px;
    }
    
    #hero-description {
        font-size: 16px;
    }
    
    #cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    #stats-card-1, #stats-card-2 {
        position: static;
        margin: 20px auto;
    }
}