 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      scroll-behavior: smooth;
    }

    body {
      background: #0a0f2c;
      color: #fff;
      overflow-x: hidden;
    }

   

    

    /* Hero Section */
	.hero {
	  position: relative;
	  display: flex;
	  align-items: center;
	  justify-content: flex-start;
	  height: 100vh;
	  padding: 0 8%;
	  background: url('img/aibanner1.webp') center/cover no-repeat;
	  background-attachment: fixed;
	  margin-top: 60px;
	  color: #fff;
	  overflow: hidden;
	}

	.hero::after {
	  content: "";
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  background: linear-gradient(to right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.3));
	}

	.hero-content {
	  max-width: 650px;
	  z-index: 2;
	  opacity: 0;
	  transform: translateY(40px);
	  animation: fadeSlideIn 1s ease-out forwards;
	  animation-delay: 0.3s;
	}

	@keyframes fadeSlideIn {
	  to {
		opacity: 1;
		transform: translateY(0);
	  }
	}

	.hero h1 {
	  font-size: clamp(2rem, 4vw, 2rem);
	  margin-bottom: 20px;
	  line-height: 1.2;
	  font-weight: 700;
	  text-shadow: 0 4px 15px rgba(0, 198, 255, 0.6);
	}

	.hero p {
	  font-size: clamp(1rem, 2vw, 1.3rem);
	  margin-bottom: 30px;
	  line-height: 1.7;
	  color: #e5e5e5;
	}

	.hero button {
	  padding: 12px 28px;
	  font-size: 1.05rem;
	  background: linear-gradient(135deg, #00c6ff, #0072ff);
	  border: none;
	  border-radius: 30px;
	  color: #fff;
	  cursor: pointer;
	  box-shadow: 0 6px 18px rgba(0, 198, 255, 0.4);
	  transition: all 0.3s ease;
	}
	.hero button:hover {
	  transform: translateY(-4px) scale(1.05);
	  box-shadow: 0 8px 25px rgba(0, 198, 255, 0.6);
	}

	@media (max-width: 768px) {
	  .hero {
		justify-content: center;
		text-align: center;
		padding: 0 5%;
	  }
	  .hero-content {
		max-width: 90%;
	  }
	}    

    @media (max-width: 900px) {
      .nav-links {
        display: none;
      }
      .hamburger {
        display: flex;
      }
      .hero {
        padding: 0 5%;
        text-align: center;
        justify-content: center;
      }
    }
	
	/* About Us Section */
/* Section */
.about-section {
  position: relative;
  background: #fff;
  padding: 80px 20px;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Container */
.about-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.about-text h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 20px;
}

.about-text h2 span {
  background: linear-gradient(90deg, #1e3a8a, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text .about-intro {
  font-size: 1.2rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 15px;
}

.about-text p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-points {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.about-points li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #222;
  position: relative;
  padding-left: 25px;
}

.about-points li::before {
  content: "✔";
  color: #2563eb;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.about-btn {
  display: inline-block;
  margin-top: 20px;
  background: linear-gradient(90deg, #1e3a8a, #3b82f6);
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.about-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

/* --------- Particle Background --------- */
.particles {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(30,58,138,0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: particleMove 25s linear infinite;
  z-index: 1;
  transition: transform 0.2s ease-out;
}

@keyframes particleMove {
  0% { background-position: 0 0; }
  100% { background-position: 100px 100px; }
}

/* --------- AI Grid Background --------- */
.ai-grid {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(59,130,246,0.1) 1px, transparent 1px),
              linear-gradient(rgba(59,130,246,0.1) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 2;
  transition: transform 0.3s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
  .about-text h2 {
    font-size: 2rem;
  }
  .about-btn {
    padding: 10px 20px;
  }
}

/* Services Section */
/* Service Section */
/* Services Section */
.services-section {
  background: #f9fafb;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Container */
.services-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 3;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.section-title span {
  background: linear-gradient(90deg, #1e3a8a, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

/* Service Card */
.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  perspective: 1000px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.service-card:hover {
  transform: translateY(-10px) rotateX(4deg) rotateY(4deg);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.service-icon {
  font-size: 2rem;
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  margin: 0 auto 15px;
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card h3 {
  font-size: 1.2rem;
  color: #1e3a8a;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  text-align: justify;
}

/* AI Circuit Background */
.ai-circuit {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(59,130,246,0.05),
    rgba(59,130,246,0.05) 1px,
    transparent 1px,
    transparent 30px
  );
  animation: circuitMove 15s linear infinite;
  z-index: 1;
}

@keyframes circuitMove {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

/* Floating AI Nodes */
.ai-nodes {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(30,58,138,0.07) 2px, transparent 2px);
  background-size: 60px 60px;
  animation: nodeFloat 25s linear infinite;
  z-index: 2;
}

@keyframes nodeFloat {
  0% { background-position: 0 0; }
  100% { background-position: 100px 100px; }
}



@keyframes pulse {
  0%, 100% { transform: scale(0.8); opacity: 0.6; }
  50% { transform: scale(1.5); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .service-card h3 {
    font-size: 1rem;
  }
  .service-card p {
    font-size: 0.9rem;
  }
}

 .rainbow-box {
            border-radius: 10px;
            border: 3px solid transparent;
            background: linear-gradient(white, white) padding-box, 
                        linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00fbff, #0048ff, #7a00ff, #ff00b3) border-box;
            padding: 10px;
            margin-bottom: 10px;
            transition: all 0.3s ease-in-out;
        }

        .box-title {
            background: linear-gradient(45deg, #0072ff, #00c6ff);
            color: white;
            padding: 10px;
            font-weight: bold;
            border-radius: 5px;
            cursor: pointer;
            text-align: center;
            transition: 0.3s;
        }

        .box-title:hover {
            opacity: 0.8;
        }

        .content {
            padding: 10px;
            display: none;
            font-size: 14px;
            color: #333;
        }
		  .rainbow-bg {
            background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet);
        }
		
		.role-competencies {
  padding: 4rem 2rem;
  background: linear-gradient(to right, #f7f8fc, #edf1f9);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

.role-competencies h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 3rem;
  position: relative;
}

.competency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  animation: fadeIn 1.5s ease-in-out;
}

.competency-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.competency-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.competency-card i {
  color: #4a90e2;
  margin-bottom: 1rem;
  animation: popIn 0.8s ease;
}

.competency-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.competency-card p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1rem;
}

.competency-card ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  animation: slideUp 1s ease;
}

.competency-card li {
  font-size: 0.95rem;
  color: #444;
  margin: 0.5rem 0;
}

.competency-card li i {
  color: #27ae60;
  margin-right: 8px;
}

/* Animations */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes slideUp {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.competency-card:hover {
  transform: translateY(-10px) rotateX(3deg);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
}

		.skill-bar {
  margin: 1rem 0;
  text-align: left;
}

.skill-bar span {
  font-size: 0.9rem;
  color: #555;
}

.bar {
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
  height: 10px;
  margin-top: 4px;
}

.fill {
  height: 100%;
  background: linear-gradient(to right, #4facfe, #38f9d7);
  border-radius: 10px;
  animation: fillAnim 2s ease forwards;
}

@keyframes fillAnim {
  from { width: 0; }
  to { width: var(--target-width); }
}

.competency-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(45deg, #4facfe, #00f2fe, #43e97b, #38f9d7);
  background-size: 300% 300%;
  z-index: -1;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.competency-card:hover::before {
  opacity: 1;
  animation: gradientMove 4s infinite linear;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* General Layout */
.pricing-section {
  background: linear-gradient(120deg, #e0f7ff, #f6faff);
  padding: 5rem 2rem;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.pricing-section h2 {
  font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 3rem;
}

/* Pricing Cards */
.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.price-card {
  position: relative;
  width: 380px;
  padding: 2.5rem;
  border-radius: 25px;
  transition: all 0.4s ease;
  animation: fadeIn 1s ease-in-out;
  overflow: hidden;
}

.price-card:hover {
  transform: scale(1.05);
}

/* Glassmorphism Effect */
.glass {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}

/* Highlighted/Popular Plan */
.popular {
  background: linear-gradient(to right, #43e97b, #38f9d7);
  color: white;
}

/* Headings & Price */
.price-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 2.6rem;
  font-weight: bold;
  margin: 1rem 0;
}

.price span {
  font-size: 1rem;
  color: #ddd;
}

/* Features List */
.price-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 1rem;
}

.price-card li {
  margin: 0.6rem 0;
  font-size: 1rem;
}

.price-card li i {
  color: #27ae60;
  margin-right: 8px;
}

/* Glow Buttons */
.btn-glow {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  color: white;
  padding: 0.75rem 1.8rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 1.5rem;
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.6);
  transition: all 0.3s ease-in-out;
}

.btn-glow:hover {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
  box-shadow: 0 0 18px rgba(56, 249, 215, 0.9);
  transform: translateY(-2px);
}

/* Badges */
.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #4facfe;
  color: white;
  padding: 6px 12px;
  font-size: 0.75rem;
  border-radius: 20px;
  animation: pulseBadge 1.5s infinite;
}

.highlight {
  background: #f39c12 !important;
}

/* Animations */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulseBadge {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}


.price-card.starter {
  color: #009efd; /* fallback */
  background: linear-gradient(135deg, #00c9ff, #92fe9d);
  color: #083b66;
}

.price-card.starter h3,
.price-card.starter .price {
  color: #004e92;
}

.price-card.enterprise {
  background: linear-gradient(135deg, #8e2de2, #4a00e0);
  color: #f3f3f3;
}

.price-card.enterprise h3,
.price-card.enterprise .price {
  color: #fff;
}

/* Contact Us Section */
/* Base Layout */
.contact-section {
  background: radial-gradient(circle at top left, #0a2a66, #071e3d);
  padding: 80px 20px;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: #fff;
}

.contact-3col {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Left & Right Cards */
.contact-card {
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 15px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(80, 191, 255, 0.1);
}

.contact-card h3 {
  color: #50bfff;
  margin-bottom: 15px;
}

.contact-card p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

/* Contact Form */
.contact-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(30, 144, 255, 0.25);
}

.contact-container h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #50bfff;
}

.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: transparent;
  border: 2px solid #50bfff;
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.form-group textarea {
  resize: none;
}

.form-group label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  background: #071e3d;
  padding: 0 5px;
  color: #aaa;
  transition: 0.3s ease;
  pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -12px;
  font-size: 0.85rem;
  color: #50bfff;
}

/* Button */
.send-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, #2196f3, #50bfff);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 20px #2196f3a0;
}

.send-btn:hover {
  background: linear-gradient(90deg, #50bfff, #2196f3);
  transform: scale(1.03);
}

/* Status & Error */
.form-status {
  margin-top: 15px;
  font-size: 0.95rem;
  text-align: center;
  display: none;
}

.form-status.success {
  color: #00ffcc;
}

.form-status.error {
  color: #ff4d4d;
}

.error-message {
  color: #ff4d4d;
  font-size: 0.8rem;
  display: none;
  margin-top: 5px;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.social-icons a {
  font-size: 1.5rem;
  color: #fff;
  transition: 0.3s ease;
}
.social-icons a:hover {
  color: #50bfff;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-3col {
    grid-template-columns: 1fr;
  }
  .contact-side {
    margin-bottom: 30px;
  }
}

/* Base */
.footer-ai {
  background: linear-gradient(135deg, #0a0f2c, #1a1f4c, #0a0f2c);
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 60px 20px 20px;
  position: relative;
  overflow: hidden;
}

/* Animated gradient glow */
.footer-ai::before {
  content: '';
  position: absolute;
  width: 300%;
  height: 300%;
  top: -100%;
  left: -100%;
  background: conic-gradient(from 180deg, #00f5ff, #0044ff, #ff00ff, #00f5ff);
  animation: rotateGlow 25s linear infinite;
  opacity: 0.08;
  z-index: 0;
}
@keyframes rotateGlow {
  100% { transform: rotate(360deg); }
}

/* Futuristic grid overlay */
.footer-ai::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(transparent 95%, rgba(0,245,255,0.2) 100%),
    linear-gradient(90deg, transparent 95%, rgba(0,245,255,0.2) 100%);
  background-size: 60px 60px;
  animation: moveGrid 15s linear infinite;
  z-index: 0;
  opacity: 0.15;
}
@keyframes moveGrid {
  100% { background-position: 60px 60px; }
}

/* Container */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* Section titles with AI pulse */
.footer-section h3 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #00f5ff;
  text-transform: uppercase;
  position: relative;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { text-shadow: 0 0 6px #00f5ff, 0 0 12px #0044ff; }
  50% { text-shadow: 0 0 12px #00f5ff, 0 0 20px #ff00ff; }
}

/* Company info */
.company-name {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* Links with neon underline */
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section li {
  margin-bottom: 10px;
}
.footer-section a {
  color: #cfd9ff;
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.footer-section a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00f5ff, #ff00ff);
  transition: width 0.4s ease;
}
.footer-section a:hover {
  color: #00f5ff;
}
.footer-section a:hover::after {
  width: 100%;
}

/* Social Icons with data-stream effect */
.social-icons {
  display: flex;
  gap: 15px;
}
.social-icons a {
  font-size: 1.6rem;
  color: #fff;
  transition: transform 0.4s, color 0.3s, text-shadow 0.3s;
}
.social-icons a:hover {
  color: #00f5ff;
  transform: translateY(-6px) scale(1.2);
  text-shadow: 0 0 10px #00f5ff, 0 0 20px #ff00ff;
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.9rem;
  color: #c0c8ff;
  z-index: 2;
  position: relative;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

