
        :root {
            --primary-color: #2563eb;
            --secondary-color: #1e40af;
            --accent-color: #f97316;
            --heading-font: 'Raleway', sans-serif;
            --body-font: 'Poppins', sans-serif;
            --gradient-bg: linear-gradient(135deg, #2563eb, #1e40af);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: var(--body-font);
            scroll-behavior: smooth;
        }

        /* Header Styles */
        header {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        header.scrolled {
            background-color: rgba(255, 255, 255, 0.98);
            padding: 0.5rem 0;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo i {
            font-size: 2rem;
            color: var(--accent-color);
        } */
.logo {
  display: flex;
  align-items: center;
  gap: 8px; /* space between logo and text */
  font-size: 1.5rem;
  font-weight: 600;
  color: #222;
  text-decoration: none;
}

.logo-img {
  width: 120px;  /* adjust size as needed */
  height: auto;
}

        .nav-links {
            list-style: none;
            display: flex;
            gap: 2.5rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
            transition: color 0.3s;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }
    .hero-body {
        margin: 0;
        font-family: "Poppins", Arial, sans-serif;
        background: linear-gradient(135deg, #ff6a00, #ff3c00);
        color: white;
        }
            /* Hero Section */
    .hero {
      text-align: center;
      padding: 100px 20px 60px;
      position: relative;
      overflow: hidden;
            background: linear-gradient(135deg, #ff6a00, #ff3c00);
      color: white;

    }

    /* Background circles */
    .circle {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      width: 150px;
      height: 150px;
    }
    .circle1 { top: 20%; left: 5%; }
    .circle2 { bottom: 20%; right: 5%; }
    .circle3 { top: 70%; left: 10%; width: 100px; height: 100px; }

    .hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 20px;
    }
    .hero h1 span {
      color: #ffe14f; /* yellow highlight for Mobile Apps & Games */
    }
    .hero p {
      max-width: 800px;
      margin: 0 auto 30px;
      font-size: 1.2rem;
      line-height: 1.6;
    }

    /* Tags */

.tags {
  display: flex;
  gap: 20px;
  align-items: center;
    justify-content: center;
    padding: 30px 0;

}

.tags-item {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.tags-item i {
  margin-right: 8px;
}

.tags-item span{
    font-size: larger;
}

/* Hover effect */
.service-item:hover {
  transform: scale(1.1);
}


    /* Buttons */
    .buttons {
      margin-bottom: 60px;
    }
    .btn {
      padding: 12px 24px;
      margin: 10px;
      border-radius: 6px;
      border: 2px solid #fff;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

   .buttons a {
  text-decoration: none; /* remove underline */
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

    .btn.primary {
      background: #fff;
      color: #ff3c00;
      border: none;
    }
    .btn.primary:hover {
      background: #ffe14f;
    }
    .btn.outline {
      background: transparent;
      color: #fff;
    }
    .btn.outline:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    /* Stats */
    .stats {
      display: flex;
      justify-content: center;
      gap: 90px;
      flex-wrap: wrap;
      margin-top: 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      padding-top: 40px;
    }
    .stat {
      text-align: center;
    }
    .stat h2 {
      font-size: 2rem;
      margin-bottom: 5px;
    }
    .stat p {
      font-size: 0.95rem;
      opacity: 0.9;
    }
        .expertise {
  padding: 60px 20px;
  background: #f9f9f9;
}

.expertise-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.expertise h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.expertise h3 {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 20px;
}

.expertise p {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #666;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.feature-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h4 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 10px;
}


        .cta-button:hover::before {
            left: 100%;
        }

        /* Services Section */
        .services {
            padding: 8rem 5%;
            background: linear-gradient(135deg, #f8fafc, #e2e8f0);
            position: relative;
            overflow: hidden;
        }

        .section-title {
            font-family: var(--heading-font);
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 4rem;
            position: relative;
            text-align: center;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(37, 99, 235, 0.1);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-bg);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-card:hover::before {
            opacity: 0.05;
        }

        .service-card i {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .service-card h3 {
            color: var(--primary-color);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .service-card p {
            color: #666;
            line-height: 1.6;
            position: relative;
            z-index: 2;
        }

        /* About Section */
        .about {
            padding: 8rem 5%;
            background: white;
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(37,99,235,0.05)"/></svg>') repeat;
            opacity: 0.5;
        }

        .about-content {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 4rem;
            align-items: center;
        }

        .about-content h3 {
            font-family: var(--heading-font);
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 2rem;
            line-height: 1.2;
            background: var(--gradient-bg);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .about-content p {
            color: #444;
            line-height: 1.8;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            padding-right: 2rem;
        }

        .about-content p:last-child {
            margin-bottom: 0;
        }

        .about-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .about-image:hover {
            transform: translateY(-10px);
        }

        @media (max-width: 768px) {
            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-content h3 {
                font-size: 2rem;
            }

            .about-content p {
                padding-right: 0;
            }

            .about-image {
                height: 300px;
                order: -1;
            }
        }

        /* Games Section */
        .games {
            padding: 8rem 5%;
            background: linear-gradient(135deg, #1e293b, #0f172a);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .games::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            opacity: 0.5;
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .game-card {
            position: relative;
            border-radius: 20px;
            height: 450px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.3);
            transition: all 0.4s ease;
        }

        .game-card:hover {
            transform: translateY(-15px) scale(1.02);
        }

        .game-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .game-card:hover img {
            transform: scale(1.1);
        }

        .game-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.9));
            padding: 3rem 2rem;
            transform: translateY(30px);
            transition: all 0.4s ease;
        }

        .game-card:hover .game-overlay {
            transform: translateY(0);
            background: linear-gradient(transparent, rgba(0,0,0,0.95));
        }

        .game-overlay h3 {
            font-family: var(--heading-font);
            font-size: 1.8rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        .game-overlay p {
            color: rgba(255,255,255,0.9);
            line-height: 1.6;
            font-size: 1.1rem;
        }

        /* Culture Section */
        .culture {
            padding: 8rem 5%;
            background: linear-gradient(135deg, #f8fafc, #e2e8f0);
            position: relative;
            overflow: hidden;
        }

        .culture-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            max-width: 1400px;
            margin: 2rem auto 0;
        }

        .culture-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .culture-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--accent-color);
            transition: height 0.3s ease;
        }

        .culture-card:hover::before {
            height: 100%;
        }

        .culture-card:hover {
            transform: translateY(-10px);
        }

        .culture-card i {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 1.5rem;
        }

        .culture-card h3 {
            color: var(--primary-color);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .culture-card p {
            color: #666;
            line-height: 1.6;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #1e293b, #0f172a);
            color: white;
            padding: 4rem 5%;
            position: relative;
            overflow: hidden;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .social-links {
            display: flex;
            gap: 2rem;
            margin-bottom: 1rem;
        }

        .social-links a {
            color: white;
            font-size: 1.8rem;
            transition: all 0.3s ease;
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .social-links a:hover {
            color: var(--accent-color);
            transform: translateY(-5px);
            background: rgba(255,255,255,0.2);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-content h1 {
                font-size: 3rem;
            }

            .hero-content p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .services-grid,
            .culture-grid {
                grid-template-columns: 1fr;
            }

            .game-card {
                height: 400px;
            }
        }

        /* Animations */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        .floating {
            animation: float 3s ease-in-out infinite;
        }

        /* Scroll Animations */
        [data-aos] {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        [data-aos].aos-animate {
            opacity: 1;
            transform: translateY(0);
        }
    