 
        /* 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{
             display: flex;
             gap: 10px;
             width: 100%;
             
         }
        .about-image img {
            width: 100%;
            height: 100%;
            border-radius: 20px;
            box-shadow: var(--shadow);
            object-fit: cover;
        }
        
        /* 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);
        }
        
        /* Team/Developers Section */
        .team-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            position: relative;
        }
        
        .developers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .developer-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            border: 1px solid rgba(99, 102, 241, 0.1);
        }
        
        .developer-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .developer-card:hover::before {
            transform: scaleX(1);
        }
        
        .developer-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
            border-color: rgba(99, 102, 241, 0.3);
        }
        
        .developer-card.frontend {
            background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
        }
        
        .developer-card.backend {
            background: linear-gradient(135deg, #ffffff 0%, #fef3f2 100%);
        }
        
        .developer-image {
            position: relative;
            width: 100%;
            height: 280px;
            overflow: hidden;
            background: var(--gradient);
        }
        
        .developer-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
            transition: transform 0.5s ease;
        }
        
        .developer-card:hover .developer-image img {
            transform: scale(1.1);
        }
        
        .developer-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary-color);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
        }
        
        .developer-card:hover .developer-badge {
            transform: scale(1.1) rotate(5deg);
            background: white;
        }
        
        .developer-info {
            padding: 2.5rem;
        }
        
        .developer-info h3 {
            font-size: 1.75rem;
            color: var(--dark-color);
            margin-bottom: 0.5rem;
            font-weight: 700;
        }
        
        .developer-role {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 1rem;
            display: block;
        }
        
        .developer-bio {
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }
        
        .developer-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 2rem;
        }
        
        .skill-tag {
            background: var(--gradient);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
            transition: all 0.3s ease;
        }
        
        .skill-tag:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(99, 102, 241, 0.4);
        }
        
        .developer-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            padding-top: 1.5rem;
            border-top: 2px solid #f1f5f9;
        }
        
        .dev-stat {
            text-align: center;
            padding: 1rem;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
            border-radius: 12px;
            transition: all 0.3s ease;
        }
        
        .developer-card:hover .dev-stat {
            background: var(--gradient);
            color: white;
            transform: translateY(-3px);
        }
        
        .developer-card:hover .dev-stat .dev-stat-number,
        .developer-card:hover .dev-stat .dev-stat-label {
            color: white;
        }
        
        .dev-stat-number {
            display: block;
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 0.25rem;
            transition: color 0.3s ease;
        }
        
        .dev-stat-label {
            display: block;
            font-size: 0.85rem;
            color: var(--text-gray);
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        .developer-social {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 2px solid #f1f5f9;
        }
        
        .linkedin-link {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
        }
        
        .linkedin-link i {
            font-size: 1.2rem;
        }
        
        .linkedin-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
            background: linear-gradient(135deg, #005885 0%, #0077b5 100%);
        }
        
        .developer-card:hover .linkedin-link {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
            }
            50% {
                box-shadow: 0 6px 25px rgba(0, 119, 181, 0.5);
            }
        }
        
        /* 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;
            }
            
            .developers-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .developer-image {
                height: 240px;
            }
            
            .developer-info {
                padding: 2rem;
            }
            
            .footer-content {
                grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            }
        }
        
        @media (max-width: 576px) {
            .about-image img{
                width: 165px;
            }
            .about-image{
                justify-content: center;
            }
            .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;
            }
            
            .developers-grid {
                grid-template-columns: 1fr;
            }
            
            .developer-info {
                padding: 1.5rem;
            }
            
            .developer-stats {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }
        }
         @media (max-width: 330px) {
              .about-image img{
                width: 135px;
            }
            .cta-button{
                    padding: 0.5rem 1.1rem;
            }
        } 