
        :root {
            --bg-dark: #0F0F1B;
            --bg-section: #141424;
            --bg-card: #1A1A2E;
            --brand-accent-cyan: #00f0ff;
            --brand-accent-purple: #9f55ff;
            --brand-accent-gold: #ffc947;
            --brand-accent-magenta: #f024ff; /* New fancy color */
            --text-primary: #EAEAEA;
            --text-secondary: #A9A9B4;
            --border-color: rgba(0, 240, 255, 0.2);
            --shadow-glow: 0 0 35px rgba(0, 240, 255, 0.2);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.8;
            background-color: var(--bg-dark);
            color: var(--text-primary);
            overflow-x: hidden;
        }
        .container { width: 90%; max-width: 1200px; margin: auto; }
        h1, h2, h3, h4 { font-weight: 600; }
        h2 {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 1rem;
            white-space: nowrap; 
        }
        h3 { font-size: 2.2rem; margin-bottom: 25px; color: var(--brand-accent-cyan); }
        h4 { font-size: 1.5rem; margin-bottom: 15px; color: var(--brand-accent-cyan); }
        .section-subtitle { text-align: center; font-size: 1.1rem; color: var(--text-secondary); max-width: 800px; margin: 0 auto 70px auto; }
        .section { padding: 120px 0; position: relative; border-bottom: 1px solid rgba(255,255,255,0.05); }
        .section-alt { background-color: var(--bg-section); }

        /* --- Navigation Bar --- */
        .navbar {
            background-color: rgba(15, 15, 27, 0.85);
            backdrop-filter: blur(12px);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .nav-container { display: flex; justify-content: space-between; align-items: center; }
        .logo { display: flex; align-items: center; gap: 15px; font-size: 1.6rem; font-weight: bold; color: var(--text-primary); text-decoration: none; }
        .logo img { height: 40px; width: auto; }
        .nav-links { list-style: none; display: flex; gap: 35px; }
        .nav-links a { text-decoration: none; color: var(--text-secondary); font-weight: 500; position: relative; transition: color 0.3s ease; }
        .nav-links a:hover, .nav-links a.active { color: var(--brand-accent-cyan); text-shadow: 0 0 10px var(--brand-accent-cyan); }
        
        /* --- Hero Section --- */
        .hero { padding: 120px 0; text-align: center; position: relative; overflow: hidden; }
        .hero::before {
            content: ''; position: absolute; top: -50%; left: 50%; width: 900px; height: 900px;
            background: radial-gradient(circle, rgba(159, 85, 255, 0.1), transparent 60%);
            transform: translateX(-50%); z-index: -1; animation: pulse 5s infinite ease-in-out;
        }
        @keyframes pulse { 0%, 100% { opacity: 0.8; transform: translateX(-50%) scale(1); } 50% { opacity: 1; transform: translateX(-50%) scale(1.1); } }
        .hero h1 { 
            font-size: 4.5rem; 
            color: var(--text-primary); 
            margin-bottom: 25px; 
            line-height: 1.2;
            white-space: nowrap; 
        }
        
        /* Headline Color Styles */
        .highlight { background: -webkit-linear-gradient(45deg, var(--brand-accent-cyan), var(--brand-accent-purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .pixel-color {
            color: var(--brand-accent-cyan);
            text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
        }
        .insight-color {
            background: linear-gradient(90deg, var(--brand-accent-purple), var(--brand-accent-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 20px rgba(255, 201, 71, 0.5);
            display: inline-block; 
        }
        .fancy-platforms-color {
            background: linear-gradient(90deg, var(--brand-accent-purple), var(--brand-accent-magenta));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 15px rgba(240, 36, 255, 0.5);
        }
        /* ADDED: New class for AI blue text */
        .ai-blue-text {
            color: var(--brand-accent-cyan);
        }
        
        .hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 40px auto; color: var(--text-secondary); }
        .cta-button {
            background: linear-gradient(90deg, var(--brand-accent-cyan), var(--brand-accent-purple)); color: #000;
            padding: 15px 35px; border-radius: 50px; text-decoration: none; font-weight: 600;
            transition: all 0.3s ease; box-shadow: 0 0 20px rgba(0, 240, 255, 0.4); display: inline-block;
        }
        .cta-button:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 0 30px rgba(159, 85, 255, 0.6); }

        /* --- Content & Stats Layout --- */
        .content-layout { display: flex; gap: 60px; align-items: center; }
        .content-layout.reverse { flex-direction: row-reverse; }
        .content-layout .text-content { flex: 1.2; }
        .content-layout .image-content { flex: 1; text-align: center; }
        .content-layout img { max-width: 100%; height: auto; border-radius: 15px; border: 1px solid var(--border-color); box-shadow: var(--shadow-glow); }
        
        /* --- Features Grid --- */
        .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
        .feature-card {
            background: var(--bg-card); padding: 35px; border-radius: 15px;
            border: 1px solid transparent; transition: all 0.3s ease; position: relative; overflow: hidden;
        }
        .feature-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-glow); border-color: var(--border-color); }
        .feature-card .icon { font-size: 2.5em; color: var(--brand-accent-cyan); margin-bottom: 15px; line-height: 1; }
        .feature-card h4 { font-size: 1.5rem; color: var(--text-primary); margin-bottom: 15px; }
        .feature-card p { color: var(--text-secondary); }
        
        /* --- ADDED STYLES FOR DETAILED LIST --- */
        .feature-list { list-style: none; padding-left: 0; margin-top: 25px; }
        .feature-list li { 
            background: rgba(26, 26, 46, 0.5);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 15px;
            border-left: 3px solid var(--brand-accent-cyan);
            transition: all 0.3s ease;
        }
        .feature-list li:hover {
            transform: translateX(10px);
            background: var(--bg-card);
        }
        .feature-list h5 {
            font-size: 1.2rem;
            color: var(--text-primary);
            margin-bottom: 5px;
        }
        .feature-list p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
        }
        
        /* --- Use Cases --- */
        #use-cases .content-layout { margin-bottom: 100px; }
        .algorithm-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 25px;
            margin-bottom: 20px;
        }
        .algo-chip {
            background-color: var(--bg-card);
            color: var(--text-secondary);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }
        .algo-chip:hover {
            background-color: var(--brand-accent-cyan);
            color: var(--bg-dark);
            border-color: var(--brand-accent-cyan);
            transform: scale(1.05);
        }
        .more-scenarios {
            font-style: italic;
            color: var(--text-secondary);
            opacity: 0.8;
        }
        .final-use-case-card {
            margin-top: 100px;
            padding: 50px;
            background: linear-gradient(135deg, var(--bg-card), var(--bg-dark));
            border: 1px solid var(--border-color);
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow-glow);
        }
        .final-use-case-card h4 {
            font-size: 1.8rem;
            color: var(--brand-accent-cyan);
            margin-bottom: 20px;
        }
        .final-use-case-card p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto;
        }


        /* --- CTA & Footer --- */
        .cta-section { background: linear-gradient(90deg, #1A1A2E, #141424); text-align: center; }
        .cta-section h2 { color: var(--text-primary); }
        .footer { background: #0A0A14; color: var(--text-secondary); padding: 60px 0 30px 0; border-top: 1px solid var(--border-color); }
        .footer-bottom { text-align: center; padding-top: 30px; margin-top: 40px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.9rem; }
        
        /* --- Animation on Scroll --- */
        .reveal { opacity: 0; transform: translateY(50px); transition: opacity 0.8s ease, transform 0.8s ease; }
        .reveal.visible { opacity: 1; transform: translateY(0); }

        /* --- Responsive Design --- */
        @media (max-width: 1200px) {
            .hero h1, h2 {
                white-space: normal; /* Allow wrapping on smaller screens */
            }
        }
        @media (max-width: 992px) {
            h2 { font-size: 2.4rem; } .hero h1 { font-size: 3.5rem; }
            .content-layout, .content-layout.reverse { flex-direction: column; text-align: center; }
            .content-layout .text-content { text-align: left; }
        }
        @media (max-width: 780px) {
            .nav-container { flex-direction: column; gap: 20px; }
            .hero h1 { font-size: 2.8rem; } h2 { font-size: 2.2rem; } h3 { font-size: 2rem; }
        }



        /* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  box-shadow: var(--shadow-glow);
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
  position: relative; 
}

.modal-content h3 { margin-bottom: 20px; }

.close {
  position: absolute;
  top: 15px; right: 20px;
  font-size: 1.8rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input, 
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: var(--bg-section);
  color: var(--text-primary);
  font-size: 1rem;
}

.form-group input:focus, 
.form-group textarea:focus {
  border-color: var(--brand-accent-cyan);
  outline: none;
  box-shadow: 0 0 8px var(--brand-accent-cyan);
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}


/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: var(--shadow-glow);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-accent-cyan);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.3);
}

.service-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--brand-accent-cyan);
}

.service-card h4 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.learn-btn {
  display: inline-block;
  color: var(--brand-accent-cyan);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.learn-btn:hover {
  color: var(--brand-accent-purple);
  text-shadow: 0 0 8px var(--brand-accent-purple);
}


/* About Us Section */
.about-lists {
  display: flex;
  gap: 30px;
  margin: 20px 0;
}
.about-lists ul {
  list-style: none;
  padding: 0;
}
.about-lists li {
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.about-note {
  margin-top: 15px;
  color: var(--text-secondary);
  font-style: italic;
}

/* Choose Us Section */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 25px;
}
.choose-card {
  background: var(--bg-card);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
}
.choose-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-accent-cyan);
}
.choose-card h4 {
  color: var(--brand-accent-cyan);
  margin-bottom: 10px;
}
.choose-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}


/* Bounce animation for images */
.item-bounce {
  animation: bounce 3s infinite ease-in-out;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}


/* Pulse animation for images */
.item-pulse {
  animation: pulse 2s infinite ease-in-out;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

/* Slide from left animation for images */
.item-slide-left {
  animation: slideLeft 1s ease-out;
}
@keyframes slideLeft {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}

/* Right-to-left slide animation for text */
.text-slide-right {
  animation: textSlideRight 1.5s ease-out;
}
@keyframes textSlideRight {
  0% { transform: translateX(100%); }
  100% { transform: translateX(0); }
}


/* Color change animation for text */
.text-color-change {
  animation: textColorChange 3s infinite ease-in-out;
}
@keyframes textColorChange {
  0% { color: #ff0000; }
  50% { color: #00ff00; }
  100% { color: #0000ff; }
}


.my-hero {
  width: 100%;
  height: 600px; /* set a height, otherwise background won’t be visible */
  background-image: url("gemultitech hero section pic.png"); 
  background-size: cover;       /* scales image to cover whole div */
  background-position: center;  /* keeps it centered */
  background-repeat: no-repeat; /* prevents tiling */
  background-attachment: fixed;

}



/* Default - desktop */
.menu-toggle {
  display: none;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Mobile only */
@media (max-width: 768px) {
  .nav-container {
    display: -webkit-box;
  }
}

/* Mobile only */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex; /* instead of block for icon + text row */
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .menu-toggle {
    display: block;
    background: none;
    border: 1px solid #fff; /* add border like your screenshot */
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
  }
  
  .menu-toggle {
    display: block;
    margin-left: auto;   /* pushes it to the right */
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    /*border-top: 1px solid var(--border-color);*/
    width: 100%;
    padding: 40px 0 15px; /* padding-top increased for close button space */
    box-shadow: var(--shadow-glow);
    z-index: 2000;
  }
  
  .nav-links a {
    padding: 12px 20px;
    text-align: center;
    display: block;
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 0;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: var(--bg-section);
    color: var(--brand-accent-cyan);
    text-shadow: 0 0 10px var(--brand-accent-cyan);
  }

  .nav-links.show {
    display: flex;
  }
}




/* Default (desktop) */
.close-menu {
  display: none;
}

.close-menu {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  font-weight: bold;
  color: var(--brand-accent-cyan);
  cursor: pointer;
  z-index: 2100;
}

@media (max-width: 768px) {
  .close-menu {
    display: block;
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    font-weight: bold;
    color: var(--brand-accent-cyan);
    cursor: pointer;
    z-index: 2100;
  }
