
    :root {
        --primary: #2563eb;
        --primary-dark: #1d4ed8;
        --secondary: #10b981;
        --accent: #8b5cf6;
        --light: #f8fafc;
        --dark: #0f172a;
        --gray: #64748b;
        --gradient: linear-gradient(135deg, #2563eb, #10b981);
        --gradient-dark: linear-gradient(135deg, #1d4ed8, #059669);
    }
    
    body {
        font-family: 'DM Sans', sans-serif;
        color: var(--dark);
        line-height: 1.6;
        overflow-x: hidden;
    }
    
    h1, h2, h3, h4, h5, h6 {
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 700;
    }
    
    h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
        color: var(--dark);
    }
    
    h2 {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
        color: var(--dark);
    }
    
    h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: var(--dark);
    }
    
    /* Geometric Backgrounds */
    .geometric-bg {
        background-color: var(--light);
        background-image: 
            radial-gradient(at 10% 20%, rgba(37, 99, 235, 0.05) 0px, transparent 50%),
            radial-gradient(at 90% 10%, rgba(16, 185, 129, 0.05) 0px, transparent 50%),
            radial-gradient(at 20% 80%, rgba(139, 92, 246, 0.05) 0px, transparent 50%);
    }
    
    .geometric-bg-dark {
        background-color: var(--dark);
        background-image: 
            radial-gradient(at 10% 20%, rgba(37, 99, 235, 0.1) 0px, transparent 50%),
            radial-gradient(at 90% 10%, rgba(16, 185, 129, 0.1) 0px, transparent 50%);
    }
    
    /* Header & Navigation */
    .navbar {
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 1px 10px rgba(0,0,0,0.05);
        padding: 1.2rem 0;
        transition: all 0.4s ease;
    }
    
    .navbar-brand {
        font-weight: 800;
        font-size: 1.8rem;
        color: var(--primary) !important;
        position: relative;
    }
    
    .navbar-brand::after {
        content: '';
        position: absolute;
        width: 8px;
        height: 8px;
        background: var(--secondary);
        border-radius: 50%;
        bottom: 8px;
        right: -12px;
    }
    
    .navbar-nav .nav-link {
        color: var(--dark) !important;
        font-weight: 500;
        margin: 0 0.8rem;
        position: relative;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover {
        color: var(--primary) !important;
    }
    
    .navbar-nav .nav-link::before {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background: var(--gradient);
        transition: width 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover::before {
        width: 100%;
    }
    
    .nav-cta {
        background: var(--gradient);
        border: none;
        padding: 0.6rem 1.5rem;
        border-radius: 8px;
        color: white;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }
    
    .nav-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
        color: white;
    }
    
    /* Hero Section */
    .hero-section {
        background: var(--light);
        color: var(--dark);
        padding: 10rem 0 6rem;
        position: relative;
        overflow: hidden;
    }
    
    .hero-section::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        background: var(--gradient);
        border-radius: 50%;
        top: -300px;
        right: -300px;
        opacity: 0.1;
    }
    
    .hero-section::after {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        background: var(--accent);
        border-radius: 50%;
        bottom: -200px;
        left: -200px;
        opacity: 0.1;
    }
    
    .hero-content h1 {
        font-size: 3.8rem;
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    .hero-content h1 span {
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero-content p {
        font-size: 1.3rem;
        margin-bottom: 2.5rem;
        color: var(--gray);
        max-width: 90%;
    }
    
    .cta-btn {
        background: var(--gradient);
        border: none;
        padding: 0.9rem 2.5rem;
        border-radius: 8px;
        color: white;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
        text-decoration: none;
        display: inline-block;
    }
    
    .cta-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
        background: var(--gradient-dark);
        color: white;
    }
    
    .lead-form {
        background: white;
        padding: 2.5rem;
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        border: 1px solid #e2e8f0;
        position: relative;
        z-index: 10;
    }
    
    .lead-form h3 {
        color: var(--primary);
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .form-control {
        border-radius: 8px;
        padding: 0.9rem;
        margin-bottom: 1.2rem;
        border: 1px solid #e2e8f0;
        transition: all 0.3s ease;
    }
    
    .form-control:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }
    
    /* Services Section */
    .services-section {
        padding: 6rem 0;
        background: white;
        position: relative;
    }
    
    .service-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: all 0.4s ease;
        height: 100%;
        margin-bottom: 2rem;
        border: 1px solid #f1f5f9;
        position: relative;
        z-index: 1;
    }
    
    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--gradient);
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    
    .service-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .service-card h4 {
        color: var(--dark);
        margin-bottom: 1rem;
    }
    
    /* Pricing Section */
    .pricing-section {
        padding: 6rem 0;
        background: var(--light);
        position: relative;
    }
    
    .pricing-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: all 0.4s ease;
        margin-bottom: 2rem;
        position: relative;
        border: 1px solid #f1f5f9;
    }
    
    .pricing-card.popular {
        transform: scale(1.05);
        border: 2px solid var(--primary);
        box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
    }
    
    .pricing-card.popular::before {
        content: 'Most Popular';
        position: absolute;
        top: 20px;
        right: -35px;
        background: var(--gradient);
        color: white;
        padding: 0.5rem 2.5rem;
        font-size: 0.8rem;
        font-weight: 600;
        transform: rotate(45deg);
        z-index: 10;
    }
    
    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    
    .pricing-card.popular:hover {
        transform: scale(1.05) translateY(-10px);
    }
    
    .pricing-header {
        background: var(--gradient);
        color: white;
        padding: 2.5rem 2rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .pricing-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    }
    
    .pricing-header h3 {
        color: white;
        margin-bottom: 0.5rem;
        position: relative;
        z-index: 1;
    }
    
    .price {
        font-size: 3rem;
        font-weight: 800;
        margin: 1rem 0;
        position: relative;
        z-index: 1;
    }
    
    .price span {
        font-size: 1rem;
        font-weight: 400;
    }
    
    .pricing-features {
        padding: 2.5rem 2rem;
    }
    
    .pricing-features ul {
        list-style: none;
        padding: 0;
    }
    
    .pricing-features li {
        margin-bottom: 0.8rem;
        position: relative;
        padding-left: 2rem;
    }
    
    .pricing-features li::before {
        content: '\f00c';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        color: var(--secondary);
        position: absolute;
        left: 0;
    }
    
    .pricing-btn {
        display: block;
        width: 100%;
        padding: 1rem;
        background: var(--gradient);
        color: white;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.3s ease;
        margin-top: 1.5rem;
        text-decoration: none;
        text-align: center;
    }
    
    .pricing-btn:hover {
        background: var(--gradient-dark);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
        color: white;
    }
    
    /* About Section */
    .about-section {
        padding: 6rem 0;
        background: white;
        position: relative;
    }
    
    .about-img {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        position: relative;
    }
    
    .about-img::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border: 2px solid var(--primary);
        border-radius: 12px;
        top: 20px;
        left: 20px;
        z-index: -1;
    }
    
    /* SEO Section */
    .seo-section {
        padding: 6rem 0;
        background: var(--light);
        position: relative;
    }
    
    .seo-section h2, .seo-section h3 {
        color: var(--dark);
    }
    
    .seo-card {
        background: white;
        border-radius: 12px;
        padding: 2.5rem;
        height: 100%;
        transition: all 0.4s ease;
        border: 1px solid #f1f5f9;
        box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        position: relative;
    }
    
    .seo-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: var(--gradient);
        border-radius: 12px 0 0 12px;
    }
    
    .seo-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    }
    
    /* Blog Section */
    .blog-section {
        padding: 6rem 0;
        background: white;
        position: relative;
    }
    
    .blog-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: all 0.4s ease;
        margin-bottom: 2rem;
        border: 1px solid #f1f5f9;
        height: 100%;
    }
    
    .blog-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    
    .blog-img {
        height: 200px;
        object-fit: cover;
        width: 100%;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-date {
        color: var(--gray);
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .blog-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: var(--dark);
    }
    
    .blog-excerpt {
        color: var(--gray);
        margin-bottom: 1.5rem;
    }
    
    .blog-link {
        color: var(--primary);
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
    }
    
    .blog-link:hover {
        color: var(--primary-dark);
    }
    
    .blog-link i {
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
    }
    
    .blog-link:hover i {
        transform: translateX(5px);
    }
    
    /* Clients Section */
    .clients-section {
        padding: 4rem 0;
        background-color: white;
    }
    
    .client-logo {
        filter: grayscale(100%);
        opacity: 0.7;
        transition: all 0.3s ease;
    }
    
    .client-logo:hover {
        filter: grayscale(0%);
        opacity: 1;
    }
    
    /* Portfolio Section */
    .portfolio-section {
        padding: 6rem 0;
        background: var(--light);
    }
    
    .portfolio-card {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        margin-bottom: 2rem;
        transition: all 0.4s ease;
        background: white;
        position: relative;
    }
    
    .portfolio-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient);
        opacity: 0;
        transition: all 0.4s ease;
        z-index: 1;
    }
    
    .portfolio-card:hover::before {
        opacity: 0.9;
    }
    
    .portfolio-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    
    .portfolio-img {
        height: 250px;
        object-fit: cover;
        transition: all 0.5s ease;
    }
    
    .portfolio-content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 2rem;
        color: white;
        z-index: 2;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }
    
    .portfolio-card:hover .portfolio-content {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Testimonials Section */
    .testimonials-section {
        padding: 6rem 0;
        background: white;
    }
    
    .testimonial-card {
        background: white;
        border-radius: 12px;
        padding: 2.5rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        margin: 1rem;
        border: 1px solid #f1f5f9;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .testimonial-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--gradient);
        border-radius: 12px 12px 0 0;
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    }
    
    .testimonial-text {
        font-style: italic;
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    .testimonial-text::before {
        content: '\201C';
        font-size: 4rem;
        color: var(--primary);
        opacity: 0.2;
        position: absolute;
        top: -1.5rem;
        left: -1rem;
    }
    
    .client-info {
        display: flex;
        align-items: center;
    }
    
    .client-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        margin-right: 1rem;
        object-fit: cover;
        border: 3px solid var(--primary);
    }
    
    /* Footer */
    .footer {
        background: var(--dark);
        color: white;
        padding: 5rem 0 2rem;
    }
    
    .footer h5 {
        color: white;
        margin-bottom: 1.5rem;
    }
    
    .footer-links a {
        color: #cbd5e1;
        text-decoration: none;
        display: block;
        margin-bottom: 0.5rem;
        transition: color 0.3s ease;
    }
    
    .footer-links a:hover {
        color: var(--secondary);
    }
    
    .social-icons a {
        display: inline-block;
        width: 45px;
        height: 45px;
        background: rgba(255,255,255,0.1);
        border-radius: 8px;
        text-align: center;
        line-height: 45px;
        margin-right: 0.5rem;
        transition: all 0.3s ease;
    }
    
    .social-icons a:hover {
        background: var(--primary);
        transform: translateY(-3px);
    }
    
    .copyright {
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 1.5rem;
        margin-top: 3rem;
        text-align: center;
        color: #94a3b8;
    }
    
    /* Section Headers */
    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }
    
    .section-header h2 {
        position: relative;
        display: inline-block;
        margin-bottom: 1rem;
    }
    
    .section-header h2::after {
        content: '';
        position: absolute;
        width: 80px;
        height: 4px;
        background: var(--gradient);
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 10px;
    }
    
    .section-header p {
        max-width: 600px;
        margin: 0 auto;
        font-size: 1.1rem;
        color: var(--gray);
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .hero-content h1 {
            font-size: 2.8rem;
        }
        
        h1 {
            font-size: 2.5rem;
        }
        
        h2 {
            font-size: 2rem;
        }
        
        h3 {
            font-size: 1.6rem;
        }
        
        .pricing-card.popular {
            transform: scale(1);
        }
        
        .pricing-card.popular::before {
            right: -20px;
            padding: 0.4rem 1.5rem;
        }
    }
.captcha-container{margin-bottom: 20px;}