/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9;
  color: #8f8f8f;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Header */
header {
  background: linear-gradient(45deg, #fffcf9, #8d8ad8);
  padding: 1.5rem 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  max-height: 50px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  text-decoration: none;
  font-weight: 300;
  font-family: 'poppins', sans-serif;
  color: #ffffff;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #F58426, #2C2A6B);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero */
#hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(#303675, rgba(157, 112, 253, 0.7)),
    url('Images/Technology\ Background.png') no-repeat center/cover;
  color: #e7d8fb;
}

#hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#hero p {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 2rem;
}

.cta-button {
  background: #d9d9d9;
  color: #4c5a94;
  padding: 1rem 2rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* About */
#about {
  background-color: #fff;
  background: url(Images/Background\ elements.svg) , center;
  padding: 10rem 10%;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #2C2A6B;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.1rem;
  color: #868686;
}

.about-image {
  flex: 1.5;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
}

/* Services */
#services {
  background: #f9f9ff;
  padding: 10rem 10%;
}

#services h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2C2A6B;
}

.services-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  max-width: 320px;
  flex: 1;
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.service-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: #F58426;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Contact */
#contact {
  padding: 5rem 10%;
  background: linear-gradient(135deg, #2C2A6B, #F58426), url(Images/Transparent\ waves.png);
  color: #fff;
  text-align: center;
}

#contact h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.contact-email {
  font-size: 1.2rem;
  background: #fff;
  color: #2C2A6B;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin: 1.5rem 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.contact-email:hover {
  transform: translateY(-4px);
  background: #f4f4f9;
}

.address {
  margin-top: 2rem;
  font-size: 1rem;
  color: #f0f0f0;
}

/* Footer */
footer {
  background-color: #303675;
  color: #ccc;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
  }

  #hero h1 {
    font-size: 2.5rem;
  }

  #hero p {
    font-size: 1.2rem;
  }

  .nav-links {
    display: none;
  }
}
