:root {
            --primary: #2D5BFF; /* Primary blue from logo */
            --secondary: #FF6B35; /* Complementary orange */
            --accent: #6C4DFF; /* Purple accent */
            --dark: #1A2238; /* Dark blue for text */
            --light: #F8F9FC; /* Light background */
            --gray: #6B7280; /* Gray text */
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--dark);
        }

.hero {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(45,91,255,0.05) 0%, rgba(108,77,255,0.05) 100%);
            text-align: center;
            margin-top:10%;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .hero h1 span {
            color:#ec2447;
        }
        
        .hero p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto 30px;
        }
        .bigbox {
            background-color:#e2c604; 
            height: 300px; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            color: white; 
            font-size: 24px; 
            font-weight: bold;
        }
        
        .btn {
            display: inline-block;
            padding: 15px 30px;
            background-color:#e2c604;
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .btn-secondary {
            background-color:#ec2447;
        }
        
        .btn-secondary:hover {
            background-color: #E55A2B;
        }
        
        /* Services Section */
        .services {
            padding: 100px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            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-color:#e2c604;
            border-radius: 2px;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: var(--light);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-icon {
            font-size: 40px;
            color:#e2c604;
            margin-bottom: 20px;
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        /* USP Section */
        .usp {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(45,91,255,0.05) 0%, rgba(108,77,255,0.05) 100%);
        }
        
        .usp-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .usp-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
        }
        
        .usp-number {
            display: inline-block;
            width: 50px;
            height: 50px;
            background-color:#e2c604;
            color: white;
            border-radius: 50%;
            line-height: 50px;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        /* ROI Section */
        .roi {
            padding: 100px 0;
            background-color: white;
        }
        
        .roi-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .roi-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .roi-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .roi-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: var(--light);
            border-radius: 10px;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color:#ec2447;
            margin-bottom: 10px;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(45,91,255,0.05) 0%, rgba(108,77,255,0.05) 100%);
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            padding-left: 30px;
        }
        
        .testimonial-text:before {
            content: '"';
            font-size: 60px;
            color: var(--primary);
            opacity: 0.2;
            position: absolute;
            left: 0;
            top: -20px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--light);
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color:#e2c604;
        }
        
        /* CTA Section */
        .cta {
            padding: 100px 0;
            background:#e2c604;
            color: white;
            text-align: center;
        }
        
        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        
        .cta .btn {
            background-color: white;
            color:#e2c604;
        }
        
        .cta .btn:hover {
            background-color: var(--light);
            color: var(--accent);
        }
        
        /* Form Section */
        .contact-form {
            padding: 100px 0;
            background-color: white;
        }
        
        .form-container {
            max-width: 800px;
            margin: 0 auto;
            background-color: var(--light);
            padding: 50px;
            border-radius: 10px;
            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: 600;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Open Sans', sans-serif;
            font-size: 16px;
        }
        
        .form-group textarea {
            min-height: 150px;
        }
        @media(max-width:767px) {
            .hero h1 {
                font-size:32px;
            }
            .hero .btn {
                width:100%;
                margin-bottom:15px;
            }
            .section-title h2 {
                font-size:32px;
            }
            .roi-content {
                display:block;
            }
            .bigbox {
                height:150px;
            }
            .cta h2 {
    font-size: 28px;
    margin-bottom: 20px;
}
        }
 