body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

/* Navbar */
nav {
    background-color: #0d1b2a;
    padding: 15px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 2px;
    width: 0;
    background: #3cefff;
    transition: width 0.3s ease-in-out;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #3cefff;
}

.cta-btn {
    background-color: #3cefff;
    color: #000;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover {
    background-color: #2bc4e4;
}
/* HR Animation */
.fancy-hr {
  border: none;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, #a9f8ff, #01d5ff);
  margin: 0 auto;
  animation: expand 3s ease forwards;
}

@keyframes expand {
  to {
    width: 90%;
  }
}
/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: white;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.hero-btn {
  background-color: #0d1b2a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.hero-btn:hover {
  background-color: #3cefff;
  color: #000;
}
/* Services Section */
.services {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 50px 20px;
  background-color: #f9f8f8;
}

.service-card {
  background: white;
  padding: 20px;
  margin: 10px;
  width: 280px;
  border-radius: 10px;
  text-align: center;
  transition:all 0.5s;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.service-card:hover {
    transform: translateY(-8px);
    cursor: pointer;
}

.service-card h2 {
  margin-bottom: 10px;
}
/* Projects Section */
.projects {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 50px 20px;
  background: white;
}

.project {
  text-align: center;
}

.project img {
  border-radius: 10px;
  max-width: 100%;
}

/* Footer */
footer {
  background-color: #555;
  color: white;
  text-align: center;
  padding: 20px;
}