/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0a0a1f;
  color: #ffffff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 2rem;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(0, 0, 20, 0.9);
  padding: 1rem 0;
  z-index: 999;
  backdrop-filter: blur(8px);
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #00f6ff;
}

.logo span {
  color: #fff;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.nav-links a {
  font-weight: 500;
  color: #ffffff;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00f6ff;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #0a0a23, #151530);
  overflow: hidden;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
  position: relative;
}

.hero-text {
  max-width: 600px;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.3;
}

.hero-title span {
  color: #00f6ff;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin: 1rem 0 2rem;
  color: #c0c0d0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn.primary {
  background: #00f6ff;
  color: #10101a;
}

.btn.primary:hover {
  background: #00d6dd;
}

.btn.secondary {
  border: 2px solid #00f6ff;
  color: #00f6ff;
  background: transparent;
}

.btn.secondary:hover {
  background: #00f6ff;
  color: #10101a;
}

/* Lottie Animation Container */
.hero-image {
  flex: 1;
  text-align: center;
}

/* Glass Effect */
.glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
}

/* Tech Glow in Background */
.tech-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 246, 255, 0.15), transparent 70%);
  top: -200px;
  left: -200px;
  z-index: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-image {
    margin-top: 2rem;
  }
}


/* About Section */
.about {
  background: linear-gradient(145deg, #0c0c26, #14142f);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 246, 255, 0.08);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.02);
}

.about-text {
  flex: 1;
  padding: 2rem;
  border-radius: 20px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #00f6ff;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0e0;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }
}


/* Services Section */
.services-section {
  padding: 80px 20px;
  background-color: #0b0f1a;
  color: #fff;
}

.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  color: #00fff0;
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-box {
  background: #121a2f;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 255, 240, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-box:hover {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 255, 255, 0.15);
}

.service-icon {
  margin-bottom: 20px;
  color: #00fff0;
}

.service-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #d2d2d2;
}

.learn-more {
  display: inline-block;
  margin-top: 15px;
  color: #00fff0;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.learn-more::after {
  content: "→";
  margin-left: 6px;
  transition: margin-left 0.2s ease;
}

.learn-more:hover::after {
  margin-left: 12px;
}


/* Why Choose Us */
.why-choose.section {
  background-color: #0b0f1a;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.why-choose .section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #00d4ff;
}

.why-choose .features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-box {
  background: #111729;
  padding: 30px;
  border-radius: 15px;
  width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.feature-box i {
  font-size: 2.5rem;
  color: #00d4ff;
  margin-bottom: 20px;
}

.feature-box h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.testimonial {
  margin-top: 60px;
  font-style: italic;
  color: #ccc;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial cite {
  display: block;
  margin-top: 15px;
  color: #00d4ff;
  font-weight: bold;
}


/* Contact Section */
.contact-section {
  background-color: #0f1b2a;
  color: #fff;
  padding: 80px 0;
}
.contact-section .section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 10px;
}
.contact-section .section-subtitle {
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
  color: #ccc;
}
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-form input,
.contact-form textarea {
  padding: 15px;
  margin-bottom: 20px;
  background: #192a3a;
  border: 1px solid #2c3e50;
  color: #fff;
  border-radius: 6px;
}
.contact-form button {
  padding: 15px;
  background: #00c3ff;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-form button:hover {
  background: #00a7d4;
}
.contact-info {
  flex: 1;
  background: #13202f;
  padding: 30px;
  border-radius: 8px;
}
.contact-info h3 {
  margin-bottom: 20px;
}
.contact-info p {
  margin-bottom: 10px;
  color: #ccc;
}
.contact-info .map {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
}

/* Footer */
.site-footer {
  background-color: #0f172a;
  color: #cbd5e1;
  padding: 60px 20px 30px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid #334155;
  padding-bottom: 50px;
}

.footer-brand,
.footer-links,
.footer-contact {
  flex: 1 1 300px;
  min-width: 260px;
}

.footer-brand h2 {
  font-size: 28px;
  color: #38bdf8;
  margin-bottom: 12px;
}

.footer-brand p {
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 20px;
  color: #f8fafc;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin: 10px 0;
}

.footer-links ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #38bdf8;
}

.footer-contact p {
  margin: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.footer-contact i {
  color: #38bdf8;
  margin-top: 3px;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  margin-right: 14px;
  color: #94a3b8;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #38bdf8;
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  font-size: 15px;
  color: #64748b;
}
