
  :root {
    --primary: #132c70;
    --accent: #F97316;
    --light-bg: #f9fafc;
  }

  body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-bg);
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
  }

  /* Navbar */
  .navbar {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    transition: background 0.3s ease;
  }
  .navbar.scrolled {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  }
  .navbar-brand img {
    height: 50px;
    border-radius: 50%;
    margin-right: 8px;
  }

  /* Hero */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    overflow: hidden;
  }
  .hero h1 {
    font-weight: 700;
    font-size: 3rem;
    animation: fadeUp 1.2s ease;
  }
  .hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    animation: fadeUp 1.5s ease;
  }
  .hero img {
    width: 100%;
    max-width: 450px;
    border-radius: 1rem;
    animation: float 3s ease-in-out infinite;
  }

  @keyframes fadeUp {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
  }
  @keyframes float {
    0%, 100% {transform: translateY(0);}
    50% {transform: translateY(-10px);}
  }

  .py-5 {
    padding-top: 7rem !important;
  }

  /* Template Preview Section */

 #templates{
    padding: 2rem;
  }
  .preview-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 60px 10%;
    margin-top: 3rem;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  .template-image {
    flex: 1 1 400px;
  }
  .template-image img {
    width: 100%;
    border-radius: 12px;
  }
  .template-info {
    flex: 1 1 400px;
  }
  .template-info h2 {
    margin-bottom: 15px;
    color: #222;
  }
  .template-info p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
  }
  .features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
  }
  .features li {
    margin-bottom: 8px;
    padding-left: 18px;
    position: relative;
  }
  .features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #4CAF50;
  }
  .price {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
  }

  /* Section Titles */
  .section-title {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
  }
  .section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--accent);
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
  }

  /* Template Cards */
  .card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  }
  .card img {
    border-bottom: 3px solid var(--accent);
  }

  /* Why Choose Us */
  .feature-icon {
    background-color: rgba(30,58,138,0.1);
    color: var(--primary);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
  }
  .feature-icon:hover {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1);
  }

  /* Order Hero */
  .order-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
    color: white;
    text-align: center;
  }
  .order-hero h1 {
    font-weight: 700;
  }
  .order-hero p {
    opacity: 0.9;
    font-size: 1.1rem;
  }

  /* Order Form */
  .order-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-top: -60px;
    animation: fadeInUp 0.8s ease-in-out;
  }
  label {
    font-weight: 600;
    margin-bottom: 5px;
  }
  textarea {
    resize: none;
  }

  /* Footer */
  footer {
    background-color: #0d1117;
    color: #fff;
  }
  footer a {
    color: #bbb;
    text-decoration: none;
  }
  footer a:hover {
    color: var(--accent);
  }


