
:root {
            --primary: #2D5BFF;
            --secondary: #FF6B35;
            --accent: #00C2FF;
            --dark: #333333;
            --light: #F8FAFF;
            --white: #FFFFFF;
        }
        .cta-button {
            background:#ec2447;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .cta-button:hover {
            background: #e55a2b;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
        }
.hero {
            padding: 100px 0 100px;
            background-color:#e2c604;
            color: var(--white);
            text-align: center;
            border-radius: 0 0 30px 30px;
            margin-bottom: 50px;
            margin-top:10%;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--white);
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        .aeoul {
            margin-left: 20px; 
            margin-top: 15px;
        }
        .aeoboost {
            margin-top: 30px;
        }
        .secondary-button {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .secondary-button:hover {
            background: var(--white);
            color: var(--primary);
        }
        
        /* Services Section */
        .services {
            padding:60px 0;
            background: var(--white);
            border-radius: 30px;
            margin: 50px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: var(--light);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background:#e2c604;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 30px;
        }
        
        /* USP Section */
        .usp {
            padding: 80px 0;
            background: linear-gradient(135deg, #f6f9ff 0%, #eef4ff 100%);
            border-radius: 30px;
            margin: 50px 0;
        }
        
        .usp-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .usp-card {
            background: var(--white);
            border-radius: 15px;
            padding: 30px;
            display:block;
            align-items: flex-start;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align:center;
        }
        
        .usp-icon {
            background-color:#e2c604;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
            margin:0 auto;
        }
        
        /* ROI Section */
        .roi {
            padding: 80px 0;
            background: var(--white);
            border-radius: 30px;
            margin: 50px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        
        .roi-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .roi-chart {
            background: var(--light);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .stats {
            display: flex;
            justify-content: space-around;
            margin-top: 30px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color:#ec2447;
            margin-bottom: 5px;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background: linear-gradient(135deg, #f6f9ff 0%, #eef4ff 100%);
            border-radius: 30px;
            margin: 50px 0;
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background: var(--white);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background:#e2c604;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
        }
        
        /* Contact Form */
        .contact {
            padding: 80px 0;
            background: var(--white);
            border-radius: 30px;
            margin: 50px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        
        .form-container {
            background: var(--light);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
        }
        
        .form-group textarea {
            min-height: 150px;
        }
        
        .submit-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            font-size: 1.1rem;
        }
        
        .submit-btn:hover {
            background: #1a3dc9;
        }
        
        /* FAQ Section */
        .faq {
            padding: 80px 0;
            background: linear-gradient(135deg, #f6f9ff 0%, #eef4ff 100%);
            border-radius: 30px;
            margin: 50px 0;
        }
        
        .accordion {
            margin-top: 30px;
        }
        
        .accordion-item {
            background: var(--white);
            border-radius: 8px;
            margin-bottom: 15px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            overflow: hidden;
        }
        
        .accordion-header {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
        }
        
        .accordion-content {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }
        
        .accordion-item.active .accordion-content {
            max-height: 300px;
            padding: 0 20px 20px;
        }

        @media(max-width:767px) {
            .hero h1 {
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--white);
}
.section-title h2 {
    font-size:28px;
}
.hero-buttons {
    display:block;
}
.services {
    padding:30px 0;
}
.usp-card {
    display: block;
    text-align: center;
    
}
.usp-icon {
    margin:0 auto 15px;
}
.roi-content {
    display:block;
}
.stat-number {
    font-size:24px;
}

        }