* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
}

html{
    scroll-behavior:smooth;
}

body {
  background: #000b1e;
  color: #e5e4e2;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  background: rgba(0, 11, 30, 0.95);
  border-bottom: 1px solid rgba(197, 160, 89, 0.3);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 55px;
  filter: drop-shadow(0 0 5px rgba(197, 160, 89, 0.2));
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #e5e4e2;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #ffd700;
}

button {
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-family: inherit;
}

.hero button, .services button {
  padding: 14px 35px;
  background: linear-gradient(135deg, #c5a059 0%, #8e6d28 100%);
  color: #000b1e;
  border: none;
  border-radius: 50px; /* Rounded pill shape is more modern */
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

button:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #ffd700 0%, #c5a059 100%);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.hero {
  padding: 150px 8%;
  text-align: center;
  background: radial-gradient(circle at top, #001f4d 0%, #000b1e 70%);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero p {
  color: #b0b0b0;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

.services {
  padding: 100px 8%;
  background: #000b1e;
}

.services h2 {
  text-align: center;
  color: #c5a059;
  font-size: 2.5rem;
  margin-bottom: 60px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: rgba(255, 255, 255, 0.03); /* Glass effect */
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(197, 160, 89, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: #c5a059;
  opacity: 0;
  transition: 0.3s;
}

.card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-10px);
  border-color: #ffd700;
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  color: #ffd700;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.card p {
  color: #d1d1d1;
  font-size: 0.95rem;
}

.cta {
  margin: 100px 8%;
  padding: 60px;
  background: linear-gradient(145deg, #001633, #000b1e);
  border: 1px solid #c5a059;
  border-radius: 30px;
  text-align: center;
}

.cta h2 {
  color: #ffd700;
  margin-bottom: 15px;
}

.cta button {
  background: transparent;
  border: 2px solid #c5a059;
  color: #c5a059;
  margin-top: 30px;
}

.cta button:hover {
  background: #c5a059;
  color: #000b1e;
}

@media (max-width: 768px) {
  header { padding: 20px 5%; }
  nav { display: none; }
  .cta { padding: 40px 20px; }
}

.about {
  padding: 100px 8%;
  background: radial-gradient(circle at bottom right, #001f4d 0%, #000b1e 100%);
  text-align: center;
}

.about h2 {
  font-size: 2.8rem;
  color: #c5a059; 
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 1;
  min-width: 320px;
  text-align: left;
}

.about-text p {
  font-size: 1.1rem;
  color: #e5e4e2; 
  line-height: 1.8;
  margin-bottom: 25px;
}

.about-text strong {
  color: #ffd700; 
  font-size: 1.2rem;
}

.about-boxes {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  min-width: 320px;
}

.about-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px 20px;
  border-radius: 15px;
  border: 1px solid rgba(197, 160, 89, 0.3);
  text-align: center;
  transition: 0.4s ease;
}

.about-box:hover {
  background: rgba(197, 160, 89, 0.1);
  border-color: #ffd700;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-box h3 {
  color: #ffd700;
  font-size: 2rem;
  margin-bottom: 5px;
}

.about-box p {
  color: #b0b0b0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .about-text {
    text-align: center;
  }
  .about-boxes {
    width: 100%;
  }
}
.logo h1{
  color:#e9dc1f;
}