:root {
            --primary: #2D6FF7; /* Primary blue from logo */
            --secondary: #F86343; /* Accent orange from logo */
            --dark: #1A2233; /* Dark blue for text */
            --light: #F8FAFC; /* Light background */
            --gray: #64748B; /* Medium gray */
            --light-gray: #E2E8F0; /* Light gray */
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--dark);
        }
        
        /* Hero Section */
        .hero {
            padding:80px 0 80px;
            background: linear-gradient(135deg, rgba(45, 111, 247, 0.05) 0%, rgba(248, 99, 67, 0.05) 100%);
            text-align: center;
            margin-top:10%;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            color: var(--gray);
        }
        
        .highlight {
            color:#e2c604;
            position: relative;
            display: inline-block;
        }
        
        .highlight:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 30%;
/*            background-color: rgba(248, 99, 67, 0.2);*/
            z-index: -1;
        }
        
        .btn {
            display: inline-block;
            padding: 15px 30px;
            background-color:#ec2447;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            border:#ec2447;
        }
        
        .btn:hover {
            background-color: transparent;
            color: var(--primary);
        }
        
        .btn-secondary {
            background-color:#00b0dd;
            border-color:#00b0dd;
            margin-left: 15px;
        }
        
        .btn-secondary:hover {
            background-color: transparent;
            color: var(--secondary);
        }
        
        /* Services Section */
        .services {
            padding: 100px 0;
            background-color: white;
        }
        
        .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:#ec2447;*/
            border-radius: 2px;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 20px 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 {
            width: 70px;
            height: 70px;
            background:#e2c604;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 28px;
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        /* USP Section */
        .usp {
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .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 20px rgba(0, 0, 0, 0.05);
            text-align: center;
        }
        
        .usp-number {
            font-size: 3rem;
            font-weight: 700;
            color:#e2c604;
            margin-bottom: 15px;
        }
        
        /* ROI Section */
        .roi {
            padding: 100px 0;
            background-color: white;
        }
        
        .roi-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 50px;
        }
        
        .roi-text {
            flex: 1;
            min-width: 300px;
        }
        
        .roi-visual {
            flex: 1;
            min-width: 300px;
            background:#e2c604;
            border-radius: 10px;
            padding: 30px;
            color: white;
            text-align: center;
        }
        
        .stat {
            margin: 20px 0;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .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 20px rgba(0, 0, 0, 0.05);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
        }
        
        .testimonial-text:before {
            content: '"';
            font-size: 4rem;
            color: var(--light-gray);
            position: absolute;
            top: -20px;
            left: -10px;
            z-index: 0;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--light-gray);
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color:#e2c604;
            font-weight: 700;
        }
        @media(max-width:767px) {
            .hero h1 {
    font-size: 34px;
    margin-bottom: 1.5rem;
}
.hero .btn {
    width:100%;
    margin-bottom:10px;
}
.service-card {
    padding:15px;
}
.services, .roi, .usp, .testimonials, .contact {
    padding:60px 0;
}
.section-title h2 {
    font-size:26px;
}
        }