body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #0e1a2b;
  color: #f2f2f2;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 80px 20px;
}

h2 {
  font-size: 34px;
  margin-bottom: 30px;
  position: relative;
}

h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #c9a227;
  display: block;
  margin-top: 10px;
}

.hero {
  background: 
    linear-gradient(135deg, rgba(5,10,18,0.95), rgba(15,30,50,0.85)),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?q=80&w=1974&auto=format&fit=crop")
    center/cover no-repeat;
  min-height: 90vh;
  display: flex;
  align-items: center;
  text-align: center;
  margin-top: 70px;
}

.hero-overlay {
  width: 100%;
}

.hero h1 {
  font-size: 64px;
  margin-bottom: 15px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 0 25px rgba(0,0,0,0.6);
}


.hero span {
  display: block;
  font-size: 72px;
  margin-top: 10px;
  letter-spacing: 3px;
  background: linear-gradient(90deg, #ffffff, #c9a227);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 20px;
  margin-bottom: 35px;
  color: #ddd;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  background: #c9a227;
  color: black;
  padding: 14px 40px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: 0.3s;
}

.btn:hover {
  background: #e0b93b;
  transform: translateY(-3px);
}

.services {
  background: #12223a;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.card {
  background: linear-gradient(180deg, #162c4a, #13263f);
  padding: 35px;
  border-radius: 12px;
  border: 1px solid #1e3b60;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0%;
  background: #c9a227;
  transition: 0.35s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: #c9a227;
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.card:hover::before {
  height: 100%;
}

.card h3 {
  margin-bottom: 15px;
  color: #c9a227;
}

.why ul {
  list-style: none;
  padding: 0;
  line-height: 2;
  font-size: 18px;
}

.contact {
  background: #12223a;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
}

input, textarea {
  padding: 12px;
  border: none;
  border-radius: 5px;
  background: #1e3b60;
  color: white;
}

button {
  background: #c9a227;
  color: black;
  padding: 12px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #e0b93b;
}

footer {
  text-align: center;
  padding: 40px 20px;
  background: #0b1625;
  font-size: 14px;
  color: #777;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.crafted a {
  color: #c9a227;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: 0.3s ease;
}

.crafted a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #c9a227;
  transition: 0.3s ease;
}

.crafted a:hover {
  color: #e0b93b;
}

.crafted a:hover::after {
  width: 100%;
}

@media(max-width: 768px) {
  .hero h1 {
    font-size: 38px;
  }
}

.team {
  background: #0f1f34;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.team-card {
  background: #162c4a;
  padding: 35px;
  border-radius: 12px;
  border: 1px solid #1e3b60;
  transition: 0.3s ease;
}

.team-card:hover {
  border-color: #c9a227;
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.team-card h3 {
  color: #c9a227;
  margin-bottom: 15px;
  font-size: 18px;
  text-transform: capitalize;
}

.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10,20,35,0.85);
  backdrop-filter: blur(6px);
  z-index: 999;
  padding: 15px 0;
  border-bottom: 1px solid rgba(201,162,39,0.2);
  box-shadow: 0 5px 25px rgba(0,0,0,0.4);
}

.topbar-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  letter-spacing: 2px;
  color: #c9a227;
  text-transform: uppercase;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.top-btn {
  background: transparent;
  border: 1px solid #c9a227;
  padding: 8px 18px;
  text-decoration: none;
  color: #c9a227;
  transition: 0.3s ease;
}

.top-btn:hover {
  background: #c9a227;
  color: black;
}

.stats {
  background: #0c1828;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 40px;
}

.stats h3 {
  font-size: 48px;
  color: #c9a227;
  margin-bottom: 10px;
}

.stats p {
  color: #ccc;
  font-size: 16px;
}


.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: grayscale(100%);
  border-radius: 8px;
  margin-bottom: 20px;
  transition: 0.4s ease;
}

.team-card:hover img {
  filter: grayscale(0%);
}

.testimonials {
  background: #0f1f34;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 30px;
}

.testimonial-card {
  background: #162c4a;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #1e3b60;
  transition: 0.3s ease;
}

.testimonial-card:hover {
  border-color: #c9a227;
  transform: translateY(-6px);
}

.stars {
  color: #c9a227;
  margin-bottom: 15px;
  font-size: 22px;
  letter-spacing: 3px;
}

.testimonial-card span {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  color: #aaa;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-details {
  line-height: 2;
  font-size: 16px;
}

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

.about {
  background: #0b1625;
}

.why {
  background: #0c1828;
}


.card,
.team-card,
.testimonial-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.card:nth-child(1),
.team-card:nth-child(1),
.testimonial-card:nth-child(1) { animation-delay: 0.1s; }

.card:nth-child(2),
.team-card:nth-child(2),
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }

.card:nth-child(3),
.team-card:nth-child(3),
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
