* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #939393;
    color: #ffffff;
    background: rgb(2,0,36);
background: linear-gradient(180deg, rgba(2,0,36,1) 21%, rgba(41,41,149,1) 63%, rgba(0,212,255,1) 100%);
  }
  
  header {
    background-color: #0066cc; /* New Color */
    padding: 10px 0;
  }
  
  header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }
  
  .logo img {
    width: 120px; /* Adjust width as needed */
    height: auto; /* Maintains aspect ratio */
    display: block;
}
nav {
  display: flex;
  justify-content: space-between; /* Aligns logo and menu properly */
  align-items: center; /* Ensures vertical alignment */
  padding: 10px 20px;
}

.logo img {
  width: 84px; /* Adjust width as needed */
  height: auto; /* Maintain aspect ratio */
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px; /* Adds spacing between menu items */
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  padding: 8px 12px;
  border-radius: 5px;
}

.hamburger {
  display: none; /* Hide hamburger menu for now */
}

  
  .nav-links {
    list-style: none;
  }
  
  .nav-links li {
    display: inline;
    margin: 0 15px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
  }
  
  .hamburger {
    display: none;
    cursor: pointer;
  }
  
  .hamburger span {
    background-color: #fff;
    width: 25px;
    height: 3px;
    margin: 5px 0;
  }
  
  .hero {
    background-color: #f4f4f4;
    padding: 50px 0;
    text-align: center;
  }
  
  .hero h2 {
    color: #0066cc; /* New Color */
    font-size: 2.5em;
  }
  
  .hero p {
    color: #555;
    font-size: 1.2em;
    margin: 20px 0;
  }
  
  .cta-button {
    padding: 10px 20px;
    background-color: #0066cc; /* New Color */
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
  }
  
  .about, .services, .team, .contact {
    padding: 50px 20px;
    text-align: center;
  }
  
  .services {
    display: flex;
    justify-content: space-around; /* Ensures even spacing */
    flex-wrap: wrap; /* Ensures responsiveness */
    text-align: center;
    padding: 20px;
}
.services h2 {
    width: 100%;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}
.services p {
    font-size: 15px;
    color:black
}

.service-card {
    display: inline-block;
    width: 30%; /* Ensures cards take equal space */
    min-width: 250px;
    vertical-align: top; /* Keeps cards aligned properly */
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 150px; /* Ensures equal height for images */
    object-fit: cover;
}

h3 {
    font-size: 18px;
}
 
  
  .team-member {
    margin: 20px;
    display: inline-block;
    width: 45%;
    text-align: center;
  }
  
  .contact form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
  }
  
  .contact input, .contact textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .contact button {
    background-color: #0066cc; /* New Color */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  footer {
    background-color: #15212d; /* New Color */
    color: #fff;
    padding: 20px;
    text-align: center;
  }
  .hero {
    background: rgb(2,0,36);
    background: linear-gradient(0deg, rgba(2,0,36,1) 21%, rgba(41,41,149,1) 63%, rgba(0,212,255,1) 100%);
    background-size: cover; /* Ensures the image covers the entire section */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Ensures the image does not repeat */
    padding: 50px 20px;
    text-align: center;
    color: #fff; /* White text color to stand out on the background */
    position: relative;
  }
  
  .hero h2 {
    font-size: 2.5em;
    color: #fff; /* Ensure the text is visible */
  }
  
  .hero p {
    font-size: 1.2em;
    color: #fff;
    margin: 20px 0;
  }
  
  .cta-button {
    padding: 10px 20px;
    background-color: #0066cc;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #004d99;
  }
  
  
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      width: 100%;
      text-align: center;
    }
  
    .hamburger {
      display: block;
    }
  
    .nav-links.active {
      display: block;
      width: 100%;
    }
  
    .services .service-card,
    .team-member {
      width: 100%;
      margin: 10px 0;
    }
  }
  /* Header & Navbar */
header {
    background-color: #0066cc;
    padding: 5px 0; /* Reduced padding */
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px; /* Reduced side padding */
}



/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px; /* Even spacing */
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 14px; /* Adjusted text size */
    padding: 5px 10px; /* Less padding */
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffcc00;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    background-color: #fff;
    width: 22px;
    height: 2.5px;
    margin: 4px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        text-align: center;
    }

    .hamburger {
        display: block;
    }

    .nav-links.active {
        display: flex;
    }
}
.team-container {
  display: flex;
  justify-content: space-around; /* Distributes elements evenly */
  align-items: flex-start;
  flex-wrap: wrap; /* Ensures responsiveness */
  gap: 20px; /* Adds spacing between elements */
}

.team-member {
  flex: 1;
  min-width: 300px; /* Ensures responsiveness on smaller screens */
  text-align: center;
}
.contact-info{
  text-decoration: none;
}
.contact-details {
  text-align: center;
  padding: 15px;
  border-radius: 10px;
}

.contact-details a {
  color: #ffd700;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}