 
        /* Critical CSS for above-the-fold content */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-color: #6366f1;
            --secondary-color: #4f46e5;
            --dark-color: #0f172a;
            --light-color: #f8fafc;
            --text-gray: #64748b;
            --gradient: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
            --shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.6;
            color: var(--dark-color);
            background-color: var(--light-color);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        nav{
            padding: 10px 20px !important;
        }
        /* Header Styles */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.8rem 0;
        }
        
        .logo {
            font-size: 1.6rem;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }
        
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark-color);
            cursor: pointer;
        }
        
        /* Hero Section - Critical */
        .hero {
            margin-top: 70px;
            padding: 4rem 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 3rem;
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            line-height: 1.2;
            color: var(--dark-color);
            margin-bottom: 1rem;
        }
        
        .hero .highlight {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero p {
            font-size: 1.1rem;
            color: var(--text-gray);
            margin-bottom: 2rem;
        }
        
        .cta-button {
            background: var(--gradient);
            color: white;
            padding: 0.7rem 1.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: inline-block;
        } 

 
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        nav a {
            text-decoration: none;
            color: var(--dark-color);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }
        
        nav a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        nav a:hover:after {
            width: 100%;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
        }
        
        .secondary-button {
            background: white;
            color: var(--primary-color);
            padding: 0.7rem 1.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            border: 2px solid var(--primary-color);
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .secondary-button:hover {
            background: var(--primary-color);
            color: white;
        }
        
        .hero-image {
            position: relative;
        }
        
        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }
        
        /* About Section */
        .about {
            padding: 4rem 0;
            background: white;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-header h2 {
            font-size: 2.2rem;
            color: var(--dark-color);
            margin-bottom: 1rem;
        }
        
        .section-header p {
            font-size: 1.1rem;
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }
        
        .about-text p {
            color: var(--text-gray);
            margin-bottom: 1.5rem;
        }
        
        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            color: var(--text-gray);
        }
        
        /* Services Section */
        .services {
            padding: 4rem 0;
            background: #f8fafc;
            position: relative;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }
        
        .service-card:hover::before {
            transform: translateX(0);
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        
        .service-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            color: white;
        }
        
        .service-card h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }
        
        .service-card p {
            color: var(--text-gray);
            margin-bottom: 1.5rem;
        }
        
        .service-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease;
        }
        
        .service-link:hover {
            gap: 1rem;
        }
        
        /* Blog Section */
        .blog {
            padding: 4rem 0;
            background: white;
            position: relative;
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        
        .blog-image {
            width: 100%;
            height: 180px;
            background: var(--gradient);
            position: relative;
            overflow: hidden;
        }
        
        .blog-content {
            padding: 1.5rem;
        }
        
        .blog-meta {
            display: flex;
            gap: 1rem;
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .blog-title {
            font-size: 1.2rem;
            color: var(--dark-color);
            margin-bottom: 1rem;
        }
        
        .blog-excerpt {
            color: var(--text-gray);
            margin-bottom: 1rem;
        }
        
        .read-more {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease;
        }
        
        .read-more:hover {
            gap: 1rem;
        }
        
        /* Contact Section */
        .contact {
            padding: 4rem 0;
            background: #f8fafc;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }
        
        .contact-info p {
            color: var(--text-gray);
            margin-bottom: 2rem;
        }
        
        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        
        .contact-form {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--dark-color);
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            transition: border-color 0.3s ease;
            font-family: inherit;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .submit-button {
            background: var(--gradient);
            color: white;
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: 100%;
        }
        
        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
        }
        
        /* Footer */
        footer {
            background: var(--dark-color);
            color: white;
            padding: 3rem 0 1rem;
            position: relative;
            overflow: hidden;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-section h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        
        .footer-section p {
            color: #94a3b8;
            margin-bottom: 1rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        
        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-links a {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: background 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--primary-color);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #94a3b8;
        }
        
        .contact-link-s {
    position: fixed;
    right: 0px;
    bottom: 70px;
    z-index: 2000;
}
.contact-link-s .box-x .whatapp i {
    height: 45px;
    width: 45px;
    display: flex
;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: green;
    color: white;
    border-radius: 4px;
    margin-bottom: 10px;
}
.contact-link-s .box-x .phone i {
    height: 45px;
    width: 45px;
    display: flex
;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background: #1f428e;
    color: white;
    border-radius: 4px;
    margin-bottom: 10px;
}
a{
    text-decoration: none;
}


        /* Mobile Responsiveness - Improved */
       
        @media (max-width: 768px) {
            
            .logo {
    font-size: 1.2rem;
    display: flex;
            }
            
            nav {
                padding: 0.6rem 0;
                        gap: 20px;
                            padding: 10px 10px !important;
            }
            
            .mobile-menu-toggle {
                display: block;
                position: absolute;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
                z-index: 1001;
            }
            
            nav ul {
                display: none;
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 1rem 0;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                border-radius: 0 0 20px 20px;
                z-index: 1000;
            }
            
            nav ul.show {
                display: flex;
            }
            
            nav ul li {
                margin: 0;
                padding: 0.5rem 1.5rem;
            }
            
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }
            
            .hero {
                padding: 3rem 0;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero-image {
                order: -1;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 1rem;
            }
            
            .stat-number {
                font-size: 1.5rem;
            }
            .blog-content {
    padding: 1rem;
}
.blog-title {
    margin-bottom: 0.4rem;
    font-size: 1rem;
}
.contact-info h3 {
    font-size: 1.3rem;
}
.contact-form { 
    padding: 1rem;
}
            .stat-label{
                font-size: 0.9rem;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .section-header h2 {
                font-size: 1.5rem;
            }
            .section-header p {
    font-size: 1rem;
            }
            .about-text h3 {
    font-size: 1.3rem;
            }
            .about {
                padding: 3rem 0;
            }
            
            .services, .blog, .contact {
                padding: 3rem 0;
            }
            
            .services-grid, .blog-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            
            .stats {
                /*grid-template-columns: 1fr;*/
                
                gap: 1.5rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
            }
            
            .cta-button, .secondary-button {
                width: 100%;
                text-align: center;
            }
            
            .contact-item {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .service-card {
                padding: 1.5rem;
            }
            
            .blog-card {
                min-width: 250px;
            }
        }
         @media (max-width: 330px) {
            .cta-button{
                    padding: 0.5rem 1.1rem;
            }
        } 