* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

:root {
    --primary-purple: #3d2e7c;
    --primary-orange: #f39c12;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}


/* Hero Section  */
/* Hero Section */
.hero-section {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,#FBB03B 16% , #23194D 10%, #604CA4 80%, #FBB03B -4%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}


/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header1 {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle1 {
    font-size: 1.2rem;
    color: #666;
    margin-top: 1rem;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 20px;
}

.section-title1 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--white);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.why-choose-section {
    background: var(--light-bg);
    padding: 80px 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.feature-box {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.3s ease;
}

.feature-box.animate {
    animation: slideInLeft 0.6s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-purple), #2a1f5c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.4rem;
    color: var(--primary-purple);
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.process-section {
    padding: 80px 20px;
    background: var(--white);
}

.process-section .section-title1 {
    margin-bottom: 60px;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    margin-top: 60px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-purple));
    z-index: 0;
}

.process-step {
    position: relative;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.process-step.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.process-step:nth-child(2).animate {
    animation-delay: 0.2s;
}

.process-step:nth-child(3).animate {
    animation-delay: 0.4s;
}

.process-step:nth-child(4).animate {
    animation-delay: 0.6s;
}

.step-number {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-orange), #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    border: 5px solid var(--white);
}

.process-step:nth-child(even) .step-number {
    background: linear-gradient(135deg, var(--primary-purple), #2a1f5c);
    box-shadow: 0 8px 25px rgba(61, 46, 124, 0.3);
}

.process-step:hover .step-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(243, 156, 18, 0.5);
}

.process-step:nth-child(even):hover .step-number {
    box-shadow: 0 12px 35px rgba(61, 46, 124, 0.5);
}

.step-content h3 {
    font-size: 1.4rem;
    color: var(--primary-purple);
    margin-bottom: 15px;
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.step-icon {
    font-size: 3rem;
}

.pricing-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 20px 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    border: 3px solid transparent;
}

.pricing-card.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.pricing-card:nth-child(2).animate {
    animation-delay: 0.2s;
}

.pricing-card:nth-child(3).animate {
    animation-delay: 0.4s;
}

.pricing-card.featured {
    border-color: var(--primary-orange);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(243, 156, 18, 0.3);
}

.pricing-card.featured .popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-orange), #e67e22);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: var(--primary-purple);
    margin-bottom: 15px;
    font-weight: 700;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-purple), #2a1f5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.pricing-card.featured .pricing-icon {
    background: linear-gradient(135deg, var(--primary-orange), #e67e22);
}

.pricing-card:hover .pricing-icon {
    transform: rotate(360deg) scale(1.1);
}

.price {
    font-size: 3rem;
    color: var(--primary-purple);
    font-weight: 700;
    margin: 25px 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price .currency {
    font-size: 1.5rem;
    color: var(--text-light);
}

.price .period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.features-list {
    list-style: none;
    padding: 30px 0;
    margin: 0;
    border-top: 2px solid var(--light-bg);
    border-bottom: 2px solid var(--light-bg);
}

.features-list li {
    padding: 12px 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.features-list li:before {
    content: '✓';
    color: var(--primary-orange);
    font-weight: 700;
    margin-right: 10px;
    font-size: 1.2rem;
}

.pricing-button {
    display: inline-block;
    background: var(--primary-purple);
    color: var(--white);
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 30px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-purple);
}

.pricing-button:hover {
    background: transparent;
    color: var(--primary-purple);
    transform: translateY(-3px);
}

.pricing-card.featured .pricing-button {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

.pricing-card.featured .pricing-button:hover {
    background: transparent;
    color: var(--primary-orange);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #2a1f5c 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 100px;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.cta-button:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.6);
}

@media (max-width: 968px) {
    .hero-section1 h1 {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title1 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 2.2rem;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }

    .process-timeline::before {
        display: none;
    }

    .step-number {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }

    .pricing-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 600px) {
    .hero-section1 {
        padding: 80px 20px 60px;
    }

    .hero-section1 h1 {
        font-size: 2rem;
    }

    .hero-section1 p {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .section {
        padding: 60px 20px;
    }

    .section-title1 {
        font-size: 1.8rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .feature-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step-number {
        width: 90px;
        height: 90px;
        font-size: 1.8rem;
    }
}
