@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #070c1f;
  color: #f5f5f5;
  line-height: 1.6;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(7, 12, 31, 0.9);
  padding: 0.8rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.navbar {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.navbar a.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar img.logo-img {
  height: 44px;
  width: 170px;
  object-fit: contain;
}

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

.nav-links li a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #10d4da;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #f5f5f5;
  border-radius: 999px;
}

@media (max-width: 900px) {
  #services .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 200px;
    height: calc(100vh - 70px);
    background-color: rgba(7,12,31,0.95);
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    padding-top: 2rem;
    transition: right 0.3s;
  }
  .nav-links.active {
    right: 0;
  }
  .menu-toggle {
    display: flex;
  }
}

/* Hero Section */
#hero {
  height: 100vh;
  background: url('assets/team1.jpg') center center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}
#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(7, 12, 31, 0.88), rgba(7, 12, 31, 0.55), rgba(7, 12, 31, 0.35));
}

#hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 1rem;
}

#hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  font-weight: 700;
  color: #e3ff37;
  margin-bottom: 1rem;
}

#hero p {
  font-size: 1.2rem;
  color: #f5f5f5;
  margin-bottom: 2rem;
}

#hero .btn-primary {
  background-color: #10d4da;
  color: #070c1f;
  border: none;
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s;
}

#hero .btn-primary:hover {
  background-color: #0bb0b5;
}

section {
  padding: 4rem 1rem;
}

section h2 {
  font-size: 2rem;
  color: #e3ff37;
  text-align: center;
  margin-bottom: 2rem;
}

/* Services */
#services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: auto;
}

.service-card {
  background-color: #0f1833;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.4);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

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

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.service-card .content {
  padding: 1rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #10d4da;
}

.service-card p {
  font-size: 0.9rem;
  color: #ddd;
}

/* Why section */
#why .why-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

#why .why-text, #why .why-img {
  flex: 1 1 300px;
}

#why .why-img img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.4);
}

#why ul {
  list-style: none;
  margin-top: 1rem;
}

#why ul li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
}

#why ul li::before {
  content: '✓';
  color: #10d4da;
  margin-right: 0.6rem;
  font-weight: bold;
}


/* Pricing */
#pricing {
  background:
    radial-gradient(circle at 15% 10%, rgba(16,212,218,0.12), transparent 22rem),
    radial-gradient(circle at 85% 20%, rgba(227,255,55,0.10), transparent 20rem),
    #081126;
}

.pricing-container {
  max-width: 1200px;
  margin: auto;
}

.pricing-block {
  background: #0f1833;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.pricing-header {
  padding: 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.pricing-header h3 {
  color: #10d4da;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-header p {
  color: #dbe3f3;
}

.table-wrap {
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.price-table th {
  background: #112d5f;
  color: #fff;
  padding: 1rem;
  text-align: left;
  font-weight: 700;
}

.price-table td {
  padding: 1rem;
  color: #eef6ff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.price-table tbody tr:nth-child(odd) {
  background: rgba(16,212,218,0.08);
}

.pricing-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 1rem 1.4rem 1.4rem;
  color: #dbe3f3;
}

.pricing-note strong {
  color: #e3ff37;
  width: 100%;
}

.pricing-note span {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  font-size: 0.92rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.price-card {
  background: #0f1833;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 1.35rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.price-card.highlight {
  border-color: rgba(227,255,55,0.45);
  background: linear-gradient(180deg, rgba(227,255,55,0.10), #0f1833 55%);
}

.price-tag {
  display: inline-flex;
  background: #e3ff37;
  color: #070c1f;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.price-card h3 {
  color: #10d4da;
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}

.price-card p {
  color: #dbe3f3;
  margin-bottom: 0.9rem;
}

.price-card ul {
  list-style: none;
}

.price-card li {
  color: #f5f5f5;
  padding: 0.35rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* Work showcase */
.section-intro {
  max-width: 850px;
  margin: 0 auto 2rem;
  text-align: center;
  color: #cfd8ea;
  line-height: 1.7;
}

#gallery .work-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.work-card {
  background-color: #0f1833;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
}

.work-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s;
}

.work-card img:hover {
  transform: scale(1.03);
}

.work-card figcaption {
  padding: 1rem;
}

.work-card h3 {
  color: #10d4da;
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.work-card p {
  color: #f5f5f5;
  line-height: 1.6;
  font-size: 0.96rem;
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 10000;
}

.lightbox-overlay.active {
  visibility: visible;
  opacity: 1;
}

.lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}


/* Testimonials */
#testimonials {
  background:
    radial-gradient(circle at 18% 22%, rgba(16,212,218,0.13), transparent 20rem),
    radial-gradient(circle at 82% 15%, rgba(227,255,55,0.10), transparent 18rem),
    #070c1f;
}

.testimonials-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.testimonial-card {
  position: relative;
  background: #0f1833;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 1.4rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  overflow: hidden;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -45px;
  bottom: -45px;
  border-radius: 999px;
  background: rgba(16,212,218,0.12);
}

.quote-mark {
  color: #e3ff37;
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.testimonial-card p {
  color: #f5f5f5;
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.testimonial-person {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.10);
  position: relative;
  z-index: 1;
}

.testimonial-person strong {
  display: block;
  color: #10d4da;
  font-size: 1.05rem;
}

.testimonial-person span {
  color: #cfd8ea;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* About */
#about .about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

#about .about-imgs {
  display: flex;
  flex-direction: column;
  flex: 1 1 300px;
  gap: 1rem;
}

#about .about-imgs img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.4);
}

#about .about-text {
  flex: 1 1 300px;
}

#about .about-text h3 {
  color: #10d4da;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

#about .about-text p {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 1rem;
}

/* Contact */
#contact .contact-container {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

#contact p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #ddd;
}

#contact .contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

#contact .contact-info a {
  color: #10d4da;
  text-decoration: none;
  font-weight: 500;
}

#contact .social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

#contact .social-links a {
  color: #070c1f;
  background: #10d4da;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, background-color 0.3s;
}

#contact .social-links a:hover {
  background-color: #e3ff37;
  transform: translateY(-2px);
}

footer {
  background-color: #0f1833;
  padding: 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: #888;
}
