
        /* Global Styles */
        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #f97316;
            --light: #f8fafc;
            --dark: #1e293b;
            --gray: #64748b;
            --success: #10b981;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: var(--dark);
            line-height: 1.6;
            background-color: var(--light);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
       
/* Below is for new button  */ 
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background-color: #fff632;
            color: black;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: #b3ff32;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .btn-secondary {
            background-color: var(--secondary);
        }
        
        .btn-secondary:hover {
            background-color: #ea580c;
        }
        
        .btn-success {
            background-color: var(--success);
        }
        
        .btn-success:hover {
            background-color: #059669;
        }

/* New button End */
        
        section {
            padding: 20px 0;
        scroll-margin-top: 50px; /* If your menu is 50px tall */

        }
        
        h1, h2, h3 {
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
/* Caraousel */
.carousel-wrapper {
      position: relative;
      width: 600px;
      height: 420px;
      overflow: hidden;
    }

    .card {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 280px;
      height: 380px;
      transform: translate(-50%, -50%);
      border-radius: 12px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
      opacity: 0;
      transition: all 0.8s ease-in-out;
    }

    .center {
      transform: translate(-50%, -50%) scale(1);
      z-index: 3;
      opacity: 1;
    }

    .left {
      transform: translate(-90%, -50%) scale(0.9);
      z-index: 2;
      opacity: 0.6;
    }

    .right {
      transform: translate(-10%, -50%) scale(0.9);
      z-index: 1;
      opacity: 0.6;
    }

        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 100;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            font-size: 44px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            margin-right: 10px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s ease;
       }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        /* Hero Section */
        .hero {
            padding-top: 150px;
            padding-bottom: 80px;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        }
        
        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .hero-text {
            flex: 1;
            padding-right: 40px;
        }
        
        .hero-text h1 {
            font-size: 3rem;
            color: var(--dark);
            margin-bottom: 20px;
        }
        
        .hero-text p {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 30px;
        }
        
        .hero-image {
            flex: 1;
            text-align: center;
            position: relative;
        }
        
        .hero-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        /* How It Works */
        .how-it-works {
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
	    margin-top: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
        }
        
        .section-title p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .steps {
            display: flex;
            justify-content: space-between;
            gap: 30px;
        }
        
        .step {
            flex: 1;
            text-align: center;
            padding: 30px;
            border-radius: 10px;
            background-color: #f8fafc;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .step:hover {
            transform: translateY(-10px);
        }
        
        .step-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 30px;
        }
        
        .step h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        /* Before & After Section */
        .before-after {
            background-color: #f1f5f9;
        }
        
        .comparison {
            display: flex;
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .resume-example {
            flex: 1;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .resume-header {
            background: var(--dark);
            color: white;
            padding: 15px;
            text-align: center;
            font-weight: 600;
        }
        
        .resume-content {
            padding: 20px;
            min-height: 350px;
        }
        
        .old-resume .resume-content {
            font-family: 'Times New Roman', serif;
            color: #555;
            background: repeating-linear-gradient(
                transparent,
                transparent 23px,
                #f0f0f0 23px,
                #f0f0f0 24px
            );
        }
        
        .new-resume .resume-content {
            font-family: 'Segoe UI', sans-serif;
            color: #333;
            background: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .resume-design {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .design-sample {
            width: 80%;
            height: 40px;
            margin: 8px 0;
            border-radius: 4px;
        }
        
        .design-header {
            background: var(--primary);
            height: 20px;
            width: 85%;
            margin-bottom: 15px;
            border-radius: 4px;
        }
        
        .design-item {
            background: #e0f2fe;
            height: 12px;
        }
        
        .design-item.short {
            width: 60%;
        }
        
        .design-item.medium {
            width: 75%;
        }
        
        .design-item.long {
            width: 90%;
        }
        
        /* Design Examples Section */
        .design-examples {
            background-color: white;
        }
        
        .example-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
        
         
.design-card {
  width: 380px;
  height: 550px;
  margin-right: 20px;
  position: relative;
  overflow: visible;
}

/* Image Styling */
.img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: 4px solid grey
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
  position: relative;
}

/* Hover Effect */
.img:hover {
  transform: scale(1.2);
  z-index: 10;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}
   
     .design-card:hover {
            transform: translateY(-5px);
         }
        
        .design-preview {
            height: 200px;
            background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .design-preview.minimal {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        }
        
        .design-preview.modern {
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
        }
        
        .design-preview.creative {
            background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
        }
        
        .design-elements {
            width: 80%;
            height: 80%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .design-elements .header {
            height: 20px;
            width: 85%;
            background: var(--primary);
            margin-bottom: 15px;
            border-radius: 4px;
        }
        
        .design-elements .line {
            height: 10px;
            background: #93c5fd;
            margin: 6px 0;
            border-radius: 2px;
        }
        
        .design-elements .line.short {
            width: 60%;
        }
        
        .design-elements .line.medium {
            width: 75%;
        }
        
        .design-elements .line.long {
            width: 90%;
        }
        
        .design-info {
            padding: 20px;
        }
        
        .design-info h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .design-info p {
            color: var(--gray);
            font-size: 0.95rem;
        }
        
        /* Pricing Section */
        .pricing {
            background-color: #f1f5f9;
        }
        
        .pricing-plans {
            display: flex;
            gap: 30px;
            justify-content: center;
        }
        
        .pricing-plan {
            flex: 1;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            max-width: 350px;
            transition: transform 0.3s ease;
        }
        
        .pricing-plan:hover {
            transform: translateY(-10px);
        }
        
        .plan-header {
            background: var(--primary);
            color: white;
            padding: 25px;
            text-align: center;
        }
        
        .plan-header h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .plan-price {
            font-size: 2.5rem;
            font-weight: 700;
        }
        
        .plan-price span {
        	text-decoration: line-through;
	        color: #e8dada;
            font-weight: normal;
        }
        
        .plan-features {
            padding: 25px;
        }
        
        .plan-features ul {
            list-style: none;
            margin-bottom: 25px;
        }
        
        .plan-features li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }
        
        .plan-features li i {
            color: var(--success);
            margin-right: 10px;
        }
        
        .plan-cta {
            padding: 0 25px 25px;
            text-align: center;
        }
        
        .popular {
            position: relative;
            overflow: visible;
        }
        
        .popular::before {
            content: "MOST POPULAR";
            position: absolute;
            top: -15px;
            right: 20px;
            background: var(--secondary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        /* Testimonials */
        .testimonials {
            background-color: white;
        }
        
        .testimonial-cards {
            display: flex;
            gap: 30px;
        }
        
        .testimonial {
            flex: 1;
            background-color: #f8fafc;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--gray);
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary);
            margin-right: 15px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }
        
        .author-details h4 {
            margin-bottom: 5px;
        }
        
        .author-details p {
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
            color: white;
            text-align: center;
            padding: 100px 0;
        }
        
        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta p {
            max-width: 600px;
            margin: 0 auto 30px;
            font-size: 1.2rem;
        }
        
        .cta .btn {
            background-color: white;
            color: var(--primary);
            font-size: 1.1rem;
            padding: 15px 40px;
        }
        
        .cta .btn:hover {
            background-color: #f0f9ff;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        
        .footer-column {
            flex: 1;
        }
        
        .footer-column h3 {
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column a:hover {
            color: white;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
            }
            
            .hero-text {
                padding-right: 0;
                margin-bottom: 40px;
                text-align: center;
            }
            
            .steps, .comparison, .testimonial-cards, .pricing-plans, .example-grid {
                flex-direction: column;
                grid-template-columns: 1fr;
            }
            
            .step, .resume-example, .testimonial, .pricing-plan, .design-card {
                margin-bottom: 20px;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .footer-column {
                margin-bottom: 30px;
            }
            
            .popular::before {
                right: 50%;
                transform: translateX(50%);
            }
        }

/* FAQ Section Styles */
.faq-section {
    background: #f1f5f9;;
    padding: 80px 0;
}
.faq-section h1{
    font-size: 2.0rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 15px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 0 20px 0;
    margin: 0;
    color: var(--gray);
    line-height: 1.6;
}

/* Active state */
.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}
