* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
  min-height: 100vh;
}
/* LOGO CONTAINER */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* LOGO IMAGE */
.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}


.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

.brand-main {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.4px;
}

.brand-sub {
  font-size: 0.85rem;
  font-weight: 600;
  color: #60a5fa;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.logo-img {
  filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.35));
}



nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.95);
  z-index: 1000;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #60a5fa;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  padding: 150px 2rem 100px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.gradient-text {
  color: #60a5fa;
}

.hero p {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: #3b82f6;
  color: white;
}

.btn-primary:hover {
  background: #2563eb;
}

.btn-secondary {
  background: transparent;
  color: #60a5fa;
  border: 2px solid #60a5fa;
}

.btn-secondary:hover {
  background: #60a5fa;
  color: white;
}

section {
  padding: 80px 2rem;
}

.section-dark {
  background: rgba(30, 41, 59, 0.5);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  font-size: 2.5rem;
  color: white;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: #9ca3af;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-5px);
}

.service-icon {
  color: #60a5fa;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: #9ca3af;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.client-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s;
}

.client-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
}

.client-card span {
  color: #d1d5db;
  font-weight: 600;
  font-size: 0.9rem;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  color: #d1d5db;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-icon {
  background: rgba(59, 130, 246, 0.2);
  padding: 0.75rem;
  border-radius: 0.5rem;
  color: #60a5fa;
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-details h3 {
  color: white;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: #9ca3af;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.whatsapp-btn {
  background: #25d366;
  color: white;
}

.whatsapp-btn:hover {
  background: #20ba5a;
  transform: translateY(-2px);
}

.email-btn {
  background: #3b82f6;
  color: white;
}

.email-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.phone-btn {
  background: transparent;
  color: #60a5fa;
  border: 2px solid #60a5fa;
}

.phone-btn:hover {
  background: #60a5fa;
  color: white;
  transform: translateY(-2px);
}

footer {
  background: #0f172a;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  padding: 2rem;
  text-align: center;
  color: #9ca3af;
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #1e293b;
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    transform: translateX(-100%);
    transition: transform 0.3s;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .mobile-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  h2 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
