/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f5f5f5;
}

/* Navigation */
header {
  background: linear-gradient(90deg, #4267B2, #365899);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .logo img {
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.3s ease, transform 0.3s ease;
}

nav ul li a:hover {
  color: #ffd700;
  transform: translateY(-3px);
}

/* Hero Section */
#hero {
  position: relative;
  height: 80vh;
  background: url('hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

#hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

#hero .hero-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#hero .hero-content p {
  font-size: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}

/* Section Titles */
section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  position: relative;
  color: #333;
}

section h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #4267B2;
  display: block;
  margin: 10px auto 0;
}

/* About Section */
#about {
  background: #fff;
  padding: 60px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-bottom: 60px;
}

/* Services Section */
#services .services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#services .service {
  background: #fff;
  flex: 1;
  margin: 15px;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#services .service:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#services .service h3 {
  margin-bottom: 15px;
  color: #4267B2;
}

/* Testimonials Section */
#testimonials .testimonials-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#testimonials .testimonial {
  background: #fff;
  flex: 1;
  max-width: 450px;
  margin: 15px;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  font-style: italic;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#testimonials .testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#testimonials .testimonial h4 {
  margin-top: 20px;
  text-align: right;
  font-weight: 600;
  color: #333;
}

/* Contact Section */
#contact {
  background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
  padding: 60px 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#contact p {
  margin: 15px 0;
  font-size: 1.2rem;
  color: #333;
}

#contact p strong {
  color: #4267B2;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

footer p {
  font-size: 1rem;
}
