 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
           font-family:Manrope,sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.2rem 0 0 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #2c5aa0;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #2c5aa0;
        }

        .cta-button {
            background: #2c5aa0;
            color: white;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }

        .cta-button:hover {
            background: #1e3d6f;
        }

        /* Banner Section */
        .banner {
            background-image:url(images/main-bg.jpg);
            color: #000000;
            padding: 175px 0 100px;
           
        }

		

        .banner h1 {
            font-size: 4rem;
			line-height:1.1;
            font-weight: 600;
			margin-bottom:50px;
			
        }
		        .banner h1 .grad1 {
		background: #576DDF;
background: linear-gradient(to right, #576DDF 0%, #F78683 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;

				}
        .banner p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .banner-button {
            background: #ff6b6b;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .banner-button:hover {
            transform: translateY(-2px);
        }

        /* What We Do Section */
        .what-we-do , .services {
            padding: 80px 0 0 0;
			--tw-bg-opacity:1;
            background-color: rgb(240 245 249/var(--tw-bg-opacity));
        }
		.what-we-do .section-title {
            text-align: left;
			margin-bottom:0px;
			font-size:2.5rem;
			color:#000000;
		}
		.services .section-title {text-align: left;
			margin-bottom:0px;
			font-size:2rem;
			}
			
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #2c5aa0;
        }

        .what-we-do-content {
           
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .what-we-do-text h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .what-we-do-text p {
            font-size: 1.25rem;
            line-height: 1.8;
            margin-bottom:0rem;
        }
		.what-we-do-text ul {
            list-style-position:inside;
			 font-size: 1.25rem;
        }
		.what-we-do-text ul li {
            list-style-position:inside;
			 font-size: 1.1rem;
        }

        .what-we-do-image {
            text-align: center;
        }

        .what-we-do-image i {
            font-size: 8rem;
            color: #2c5aa0;
            opacity: 0.8;
        }

        /* Services Section */
        .services {
            padding: 80px 0;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-card i {
            font-size: 3rem;
            color: #2c5aa0;
            margin-bottom: 1rem;
        }

        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .service-card p {
            color: #666;
            line-height: 1.6;
        }

        /* Expertise Section */
        .expertise {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .tech-item {
            background: white;
            padding: 2rem 1rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .tech-item:hover {
            transform: translateY(-3px);
        }

        .tech-item img {
            width: 60px;
            height: 60px;
            margin-bottom: 0rem;
        }

        .tech-item span {
            font-weight: 600;
            color: #333;
			display:block;
        }

        /* Contact Section */
        .contact {
            padding: 80px 0;
            background: #2c5aa0;
            color: white;
            text-align: center;
        }

        .contact h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .contact p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .contact-button {
            background: #ff6b6b;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s;
        }

        .contact-button:hover {
            background: #ff5252;
        }

        /* Footer */
        footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: #2c5aa0;
        }

        .footer-section p, .footer-section a {
            color: #ccc;
            text-decoration: none;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 0px solid #555;
            padding-top: 1rem;
            color: #999;
        }

       
	
	
	
	
	
	
	
	
	/*    Services */
	
	
	

        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 150px 0 80px;
            text-align: center;
        }

        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .page-header p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Service Section Styles */
        .service-section {
            padding: 80px 0;
        }

        .service-section:nth-child(even) {
            background: #f8f9fa;
        }

        .service-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .service-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: #2c5aa0;
        }

        .service-text h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #333;
            font-weight: 600;
        }

        .service-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #666;
            margin-bottom: 1.5rem;
        }

        .service-features {
            list-style: none;
            margin: 2rem 0;
        }

        .service-features li {
            padding: 0.5rem 0;
            color: #666;
            position: relative;
            padding-left: 2rem;
        }

        .service-features li:before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: #2c5aa0;
            position: absolute;
            left: 0;
        }

        .service-button {
            background: #ff6b6b;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 1rem;
        }

        .service-button:hover {
            background: #ff5252;
        }

        .service-image {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .service-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .service-image:hover img {
            transform: scale(1.05);
        }

        .service-icon {
            background: #2c5aa0;
            color: white;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 2rem;
        }

        /* Reverse layout for alternating sections */
        .service-section.reverse .service-content {
            direction: rtl;
        }

        .service-section.reverse .service-text {
            direction: ltr;
        }

        /* Stats Section */
        .stats-section {
            background: #2c5aa0;
            color: white;
            padding: 60px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 3rem;
            margin-bottom: 0.5rem;
            color: #ff6b6b;
        }

        .stat-item p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-primary, .cta-secondary {
            padding: 1rem 2rem;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .cta-primary {
            background: white;
            color: #ff6b6b;
        }

        .cta-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .cta-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .cta-secondary:hover {
            background: white;
            color: #ff6b6b;
        }

        

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 1rem;
            }

            nav ul {
                flex-direction: column;
                gap: 1rem;
            }

            .page-header h1 {
                font-size: 2.5rem;
            }

            .service-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .service-section.reverse .service-content {
                direction: ltr;
            }

            .service-text h2 {
                font-size: 2rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
      
            .banner h1 {
                font-size: 2.5rem;
            }

            .what-we-do-content {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .tech-grid {
                grid-template-columns: repeat(3, 1fr);
            }

           
        }
	
		
		

        /* Image placeholder styles for demo */
        .image-placeholder {
            width: 100%;
            height: 400px;
            background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: #999;
            border-radius: 15px;
        }
  
	
	/*    Services */
	
	
	
	
	/* Culture */
	
	
        /* Hero Culture Section */
        .hero-culture {
            padding: 80px 0;
            background: white;
        }

        .hero-culture-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-culture-text h2 {
            font-size: 2.5rem;
            color: #2c5aa0;
            margin-bottom: 1.5rem;
        }

        .hero-culture-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #666;
            margin-bottom: 1rem;
        }

        .hero-culture-image {
            background: linear-gradient(135deg, #667eea, #764ba2);
            height: 400px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        /* Core Values Section */
        .core-values {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #2c5aa0;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 3rem;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .value-card {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }

        .value-card:hover {
            transform: translateY(-10px);
        }

        .value-icon {
            background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
            color: white;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
        }

        .value-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .value-card p {
            color: #666;
            line-height: 1.6;
        }

        /* Remote Work Section */
        .remote-work {
            padding: 80px 0;
            background: white;
        }

        .remote-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .remote-image {
            background: linear-gradient(45deg, #2c5aa0, #667eea);
            height: 450px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .remote-text h2 {
            font-size: 2.5rem;
            color: #2c5aa0;
            margin-bottom: 1.5rem;
        }

        .remote-features {
            list-style: none;
            margin: 2rem 0;
        }

        .remote-features li {
            padding: 1rem 0;
            border-bottom: 1px solid #e0e0e0;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .remote-features li:last-child {
            border-bottom: none;
        }

        .feature-icon {
            background: #2c5aa0;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-text h4 {
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
            color: #333;
        }

        .feature-text p {
            font-size: 0.95rem;
            color: #666;
        }

        /* Benefits Section */
        .benefits {
            padding: 80px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .benefits .section-title,
        .benefits .section-subtitle {
            color: white;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .benefit-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        .benefit-card i {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #ffa726;
        }

        .benefit-card h3 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .benefit-card p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Flexible Work Section */
        .flexible-work {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .flexible-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            margin-top: 3rem;
        }

        .flexible-card {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .flexible-card-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .flexible-card-icon {
            background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
            color: white;
            width: 70px;
            height: 70px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        .flexible-card h3 {
            font-size: 1.5rem;
            color: #333;
        }

        .flexible-card p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .flexible-card ul {
            list-style: none;
            margin-top: 1rem;
        }

        .flexible-card ul li {
            padding: 0.5rem 0;
            color: #666;
            position: relative;
            padding-left: 1.5rem;
        }

        .flexible-card ul li:before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: #2c5aa0;
            position: absolute;
            left: 0;
        }

        /* Team Culture Section */
        .team-culture {
            padding: 80px 0;
            background: white;
        }

        .culture-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-card {
            text-align: center;
            padding: 2rem;
            background: #f8f9fa;
            border-radius: 15px;
            transition: transform 0.3s;
        }

        .stat-card:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #2c5aa0;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.1rem;
            color: #666;
        }

        /* Work Environment Section */
        .work-environment {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .environment-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .environment-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }

        .environment-card:hover {
            transform: translateY(-10px);
        }

        .environment-image {
            height: 200px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }

        .environment-content {
            padding: 2rem;
        }

        .environment-content h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .environment-content p {
            color: #666;
            line-height: 1.6;
        }

       

        /* Join Us Section */
        .join-us {
            padding: 80px 0;
            background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
            color: white;
            text-align: center;
        }

        .join-us h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .join-us p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .join-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .join-primary, .join-secondary {
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
        }

        .join-primary {
            background: white;
            color: #ff6b6b;
        }

        .join-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .join-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .join-secondary:hover {
            background: white;
            color: #ff6b6b;
        }

	
	/* Culture */