 :root {
            --primary: #00d4ff;
            --purple: #8b4eff;
        }
        body {
            font-family: 'Inter', sans-serif;
            background: #0a0e1a;
            color: #fff;
            overflow-x: hidden;
        }
		
		body {
			overflow-x: hidden;
		}

        h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; }
		
		.navbar-toggler {
  border-color: #fff;
}

.navbar-toggler {
  border-color: #000;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='black' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar {
  background-color: #fff; /* or your theme color */
}

		
		.display-2 {
				font-size: 2.3rem!important;
			}
			
		@media (min-width: 1200px) {
		.display-2 {
				font-size: 2.3rem!important;
			}	
		}
		
		.stats-bar {
		background: linear-gradient(90deg, #8b4eff, #00eaff);
		border-radius: 999px;
		padding: 20px;
		display: flex;
		flex-wrap: wrap;   /* IMPORTANT */
		justify-content: space-between;
		gap: 20px;
		}
		
			.stat-item {
				flex: 1 1 22%;
				text-align: center;
				color: #fff;
			}

			.stat-item i {
				font-size: 2rem;
				margin-bottom: 5px;
			}

			.stat-number {
				font-size: 1.8rem;
				font-weight: bold;
			}

			.stat-label {
				font-size: 0.85rem;
			}
		
		@media (max-width: 768px) {

    .stats-bar {
        border-radius: 20px;
        padding: 20px 10px;
    }

    .stat-item {
        flex: 1 1 45%;   /* 2 per row */
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .tech-bg {
        font-size: 5rem;
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

@media (max-width: 480px) {
	.technologywork{margin-top:110px;}

    .stat-item {
        flex: 1 1 100%;  /* 1 per row */
    }

    .tech-bg {
        display: none; /* hide on small screens */
    }
	
		.choose-us-section .stats-bar {
		  background: linear-gradient(90deg, #8b4eff, #00eaff);
		  border-radius: 21px;
		  padding: 18px 40px;
		  display: flex;
		  align-items: center;
		  justify-content: space-around;
		  max-width: 59%;
		  margin: 0 auto 100px;
		  box-shadow: 0 15px 40px rgba(139,78,255,0.3);
		}

}

.tech-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-12deg);
    font-size: 10rem;
    color: rgba(139,78,255,0.08);
    pointer-events: none;
    z-index: 0;
}

        /* NAVBAR */
        .navbar {
            background: #fff !important;
            backdrop-filter: blur(15px);
            padding: 12px 0;
        }
        .logo-pill {
            /*background: linear-gradient(90deg, #6b4eff, #00d4ff);
            padding: 10px 28px;*/
            border-radius: 50px;
            font-size: 1.6rem;
            font-weight: 700;
            color: #fff;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-talk {
            background: linear-gradient(90deg, #8b4eff, #00eaff);
            border: none;
            padding: 14px 36px;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 0 25px rgba(0, 212, 255, 0.5);
        }

        /* HERO */
        .hero {
            height: 100vh;
            /*min-height: 720px;*/
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: #0a0e1a;
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(transparent, rgba(0,212,255,0.08) 50%, transparent),
                        linear-gradient(90deg, transparent, rgba(139,78,255,0.06) 50%, transparent);
            background-size: 100% 400%, 400% 100%;
            animation: beamMove 22s linear infinite;
            pointer-events: none;
        }
        @keyframes beamMove {
            0% { background-position: 0 0, 0 0; }
            100% { background-position: 0 800px, 800px 0; }
        }
        .hero::after {
            content: '';
            position: absolute;
            top: 0; bottom: 0; left: 0; width: 350px;
            background: radial-gradient(circle at left, rgba(0,212,255,0.18), transparent 70%);
            pointer-events: none;
        }
        .right-glow {
            position: absolute;
            top: 0; bottom: 0; right: 0; width: 350px;
            background: radial-gradient(circle at right, rgba(139,78,255,0.18), transparent 70%);
            pointer-events: none;
        }

        .cube-container { perspective: 1400px; width: 100%; max-width: 650px; margin: 0 auto; }
        .cube {
            width: 420px;
            height: 420px;
            position: relative;
            transform-style: preserve-3d;
            animation: cubeFloat 9s ease-in-out infinite;
            transition: transform 0.1s linear;
        }
        .cube-face {
            position: absolute;
            width: 420px;
            height: 420px;
            border: 4px solid rgba(255,255,255,0.25);
            box-shadow: 0 0 80px rgba(0,212,255,0.6), inset 0 0 80px rgba(255,255,255,0.3);
            background: linear-gradient(135deg, rgba(0,240,255,0.9), rgba(139,78,255,0.85), rgba(255,0,204,0.8));
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
            text-shadow: 0 0 15px #fff;
            backface-visibility: hidden;
        }
        .cube .front  { transform: rotateY(0deg) translateZ(210px); }
        .cube .back   { transform: rotateY(180deg) translateZ(210px); }
        .cube .right  { transform: rotateY(90deg) translateZ(210px); }
        .cube .left   { transform: rotateY(-90deg) translateZ(210px); }
        .cube .top    { transform: rotateX(90deg) translateZ(210px); }
        .cube .bottom { transform: rotateX(-90deg) translateZ(210px); }

        .vertical-social {
            position: absolute;
            right: 45px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            display: flex;
            flex-direction: column;
            gap: 26px;
            font-size: 1.5rem;
        }
        .vertical-social a:hover { color: var(--primary); transform: scale(1.35); }

        /* Choose Section */
        .choose-section {
            background: linear-gradient(135deg, #0f0629 0%, #1a0f3d 100%);
            padding: 120px 0 100px;
        }
        .choose-section .title {
            font-size: 3.2rem;
            line-height: 1.1;
        }
        .skill-box {
            background: #fff;
            color: #111;
            padding: 45px 40px;
            border-radius: 20px;
            box-shadow: 0 25px 60px rgba(0,0,0,0.35);
        }
        .progress {
            height: 10px;
            background: #e9ecef;
            border-radius: 999px;
            overflow: hidden;
        }
        .progress-bar {
            height: 100%;
            transition: width 2.2s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        /* Services Section */
        .services-section {
            background: #0a0e1a;
            padding: 140px 0 100px;
            position: relative;
            overflow: hidden;
        }
        .services-section .purple-line {
            color: #8b4eff;
            font-size: 1rem;
            letter-spacing: 3px;
            font-weight: 600;
            position: relative;
            display: inline-block;
        }
        .services-section .purple-line::before,
        .services-section .purple-line::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background: #8b4eff;
            top: 50%;
        }
        .services-section .purple-line::before { left: -70px; }
        .services-section .purple-line::after { right: -70px; }

        .service-cards {
            position: relative;
            height: 520px;
            margin-top: 80px;
        }
        .service-card {
            position: absolute;
            width: 280px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            padding: 25px;
            color: #fff;
        }
        .service-card:hover {
            transform: rotate(0deg) translateY(-20px) scale(1.05) !important;
            z-index: 10;
        }
        .service-card img {
            width: 61px;
            object-fit: cover;
            border-radius: 16px;
            margin-bottom: 20px;
        }
        .service-card .icon-circle {
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .card1 { background: #8b4eff; transform: rotate(-12deg); top: 30px; left: 0;  }
        .card2 { background: #ff6b00; transform: rotate(8deg); top: 120px; left: 220px; }
        .card3 { background: #00c853; transform: rotate(-6deg); top: 80px; left: 480px; }
        .card4 { background: #3d5afe; transform: rotate(14deg); top: 220px; left: 80px; }
        .card5 { background: #ff9100; transform: rotate(-9deg); top: 210px; left: 380px; }
        .card6 { background: #00e5ff; transform: rotate(7deg); top: 180px; left: 620px; }

		.service-card {
		position: absolute;
		}

		.card2 { left: 220px; }
		.card3 { left: 480px; }
		.card6 { left: 620px; }

        /* Pricing Section */
        .pricing-section {
            background: linear-gradient(135deg, #0a0e1a 0%, #1a0f3d 100%);
            padding: 140px 0 120px;
            position: relative;
            overflow: hidden;
        }
        .pricing-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('../images/p4-bg-img-1.webp') center/cover no-repeat;
            opacity: 0.8;
            z-index: 0;
        }
        .pricing-section .content { position: relative; z-index: 1; }

        .pricing-card {
            background: rgba(15, 23, 42, 0.95);
            border: 1px solid rgba(139,78,255,0.2);
            border-radius: 24px;
            padding: 40px 30px;
            transition: all 0.4s ease;
            height: 100%;
        }
        .pricing-card:hover {
            transform: translateY(-15px);
            border-color: var(--primary);
            box-shadow: 0 30px 80px rgba(0,212,255,0.25);
        }
        .pricing-card .icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            margin: 0 auto 20px;
        }
        .price {
            font-size: 3.2rem;
            font-weight: 700;
            line-height: 1;
        }
        .price span {
            font-size: 1.1rem;
            font-weight: 500;
            opacity: 0.7;
        }
        .btn-get-started {
            background: linear-gradient(90deg, #8b4eff, #00eaff);
            border: none;
            padding: 14px 40px;
            border-radius: 50px;
            font-weight: 600;
            width: 100%;
            color: white;
            transition: all 0.3s;
        }
        .btn-get-started:hover {
            transform: scale(1.05);
        }
        .feature-list li {
            padding: 8px 0;
            font-size: 0.95rem;
        }
        .feature-list i {
            color: #00d4ff;
            width: 20px;
        }

        /* NEW CHOOSE US SECTION - EXACT MATCH */
        .choose-us-section {
            background: #0a0e1a;
            padding: 10px 0 100px;
            position: relative;
            overflow: hidden;
        }
        .choose-us-section .stats-bar {
            background: linear-gradient(90deg, #8b4eff, #00eaff);
            border-radius: 9999px;
            padding: 18px 40px;
            display: flex;
            align-items: center;
            justify-content: space-around;
            max-width: 93%;
            margin: 0 auto 100px;
            box-shadow: 0 15px 40px rgba(139,78,255,0.3);
        }
        .stat-item {
            text-align: center;
            color: white;
        }
        .stat-item i {
            font-size: 2.2rem;
            margin-bottom: 8px;
            display: block;
        }
        .stat-number {
            font-size: 2.1rem;
            font-weight: 700;
            line-height: 1;
        }
        .stat-label {
            font-size: 0.85rem;
            opacity: 0.9;
            letter-spacing: 1px;
        }

        .choose-us-section .tech-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(-12deg);
            font-size: 18rem;
            font-weight: 900;
            color: rgba(139,78,255,0.08);
            pointer-events: none;
            z-index: 0;
            white-space: nowrap;
            user-select: none;
        }

        .choose-us-content {
            position: relative;
            z-index: 1;
        }

        .feature-box {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(139,78,255,0.2);
            border-radius: 16px;
            padding: 24px 20px;
            transition: all 0.4s;
        }
        .feature-box:hover {
            background: rgba(139,78,255,0.15);
            border-color: var(--primary);
            transform: translateY(-8px);
        }
		
		
		
.projects-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.projects-track {
    scrollbar-width: thin;
    scrollbar-color: rgba(139,78,255,0.4) transparent;
}

.projects-track::-webkit-scrollbar {
    height: 8px;
}

.projects-track::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #8b4eff, #00eaff);
    border-radius: 10px;
}


.project-card {
    height: 420px;         
    transition: all 0.4s ease;
    border: 1px solid rgba(139,78,255,0.2);
    background: rgba(20,25,45,0.4);
    backdrop-filter: blur(10px);
}

.project-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 70px rgba(139,78,255,0.4);
    border-color: #00d4ff;
}

.project-card .overlay {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;

  opacity: 1;          /* 👈 ALWAYS visible */
  visibility: visible;

  z-index: 2;
  transition: all 0.4s ease;
}

.project-card img {
  position: relative;
  z-index: 1;
}

.project-card:hover .overlay {
   background: rgba(0, 0, 0, 0.8); /* darker on hover */
}

.btn-learn-more {
    width: 70px;
    height: 70px;
    background: linear-gradient(90deg, #8b4eff, #00eaff);
    font-size: 1.6rem;
    box-shadow: 0 0 25px rgba(0,212,255,0.5);
    transition: all 0.3s;
}

.btn-learn-more:hover {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 0 40px rgba(0,212,255,0.7);
}

.indicator {
    background: rgba(139,78,255,0.3);
    border: none;
    color: white;
    transition: all 0.3s;
}

.indicator.active,
.indicator:hover {
    background: linear-gradient(90deg, #8b4eff, #00eaff);
    box-shadow: 0 0 20px rgba(0,212,255,0.5);
}

/* Glows */
.glow-left, .glow-right {
    position: absolute;
    top: 0; bottom: 0;
    width: 400px;
    pointer-events: none;
}
.glow-left  { left: 0; background: radial-gradient(circle at left, rgba(139,78,255,0.12), transparent 70%); }
.glow-right { right: 0; background: radial-gradient(circle at right, rgba(0,212,255,0.12), transparent 70%); }		



/* Process Section */
.step-card {
    background: rgba(20, 25, 45, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139,78,255,0.3) !important;
    transition: all 0.4s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(139,78,255,0.35);
    border-color: #00d4ff !important;
}

.step-number {
    background: linear-gradient(90deg, #8b4eff, #00eaff) !important;
    box-shadow: 0 0 25px rgba(0,212,255,0.5);
    transform: translate(-50%, -50%);
}

.bg-gradient-purple {
    background: linear-gradient(90deg, #8b4eff, #00eaff);
	margin-top: 36px !important;
}

/* Brands Panel */
.brands-panel {
    box-shadow: 0 20px 60px rgba(139,78,255,0.4);
}

.brand-logo {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 10px 20px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(139,78,255,0.4);
    animation: float 12s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

/* Make logos different sizes/delays for natural scatter */
.brand-logo:nth-child(odd) { font-size: 0.95rem; animation-duration: 14s; }
.brand-logo:nth-child(even) { font-size: 1.1rem; animation-duration: 10s; }

.testimonials-section .testimonial-container {
    min-height: 500px;
}

.avatar-circle {
    box-shadow: 0 0 30px rgba(0,212,255,0.4);
    transition: all 0.6s ease;
}

.avatar-circle:hover {
    transform: scale(1.15);
    box-shadow: 0 0 50px rgba(139,78,255,0.6);
}

/* Simple orbiting animation for floating avatars */
@keyframes orbit1 { 0% { transform: rotate(0deg) translateX(180px) rotate(0deg); } 100% { transform: rotate(360deg) translateX(180px) rotate(-360deg); } }
@keyframes orbit2 { 0% { transform: rotate(0deg) translateX(220px) rotate(0deg); } 100% { transform: rotate(-360deg) translateX(220px) rotate(360deg); } }
@keyframes orbit3 { 0% { transform: rotate(0deg) translateX(260px) rotate(0deg); } 100% { transform: rotate(360deg) translateX(260px) rotate(-360deg); } }
@keyframes orbit4 { 0% { transform: rotate(0deg) translateX(200px) rotate(0deg); } 100% { transform: rotate(-360deg) translateX(200px) rotate(360deg); } }

/* Position adjustment - tweak translateX value per avatar for different orbit radii */
.nav-arrow:hover {
    transform: scale(1.15);
    box-shadow: 0 0 40px rgba(0,212,255,0.6);
}

.quote-marks {
    font-family: 'Space Grotesk', sans-serif;
}


.blog-news-section .purple-line {
    color: #a78bfa;
    font-size: 1.1rem;
    letter-spacing: 0.3em;
    font-weight: 600;
    position: relative;
}
.blog-news-section .purple-line::before,
.blog-news-section .purple-line::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #06b6d4);
    top: 50%;
    transform: translateY(-50%);
}
.blog-news-section .purple-line::before { left: -90px; }
.blog-news-section .purple-line::after  { right: -90px; }

.blog-card:hover {
    transform: translateY(-6px);
    border-color: #06b6d4 !important;
    box-shadow: 0 20px 50px rgba(139,92,246,0.3) !important;
}

.contact-section .purple-line {
    color: #8b4eff;
    font-size: 1.1rem;
    letter-spacing: 4px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}
.contact-section .purple-line::before,
.contact-section .purple-line::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #8b4eff, #00eaff);
    top: 50%;
    transform: translateY(-50%);
}
.contact-section .purple-line::before { left: -80px; }
.contact-section .purple-line::after  { right: -80px; }

.contact-form input:focus,
.contact-form textarea:focus {
    background: rgba(255,255,255,0.05);
    border-bottom-color: #00d4ff !important;
    box-shadow: none;
    outline: none;
}

.contact-form .social-icons a:hover {
    transform: scale(1.3);
    color: #00eaff !important;
}

.contact-section .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(0,212,255,0.7) !important;
}


.footer a:hover {
    color: #00eaff !important;
    text-decoration: underline;
}

.footer img {
    transition: all 0.3s ease;
}

.footer img:hover {
    transform: scale(1.08);
    filter: brightness(1.3);
    opacity: 1 !important;
}
.blog-card {
    display: flex;
    background: #111827;
    border: 1px solid #374151;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.blog-image {
    width: 50%;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-content {
    width: 50%;
    padding: 40px;
    color: white;
}

.blog-content p {
    color: #9ca3af;
    font-size: 14px;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #9ca3af;
}

.blog-footer span {
    color: #06b6d4;
}

/* Responsive (Mobile) */
@media (max-width: 768px) {
    .blog-card {
        flex-direction: column;
    }

    .blog-image,
    .blog-content {
        width: 100%;
    }
}