/* Global Styles */
:root {
  --primary-color: #ff8c00;
  --secondary-color: #29365f;
  --hover-color: #1d3557;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #fff;
}

/* Navigation */
nav {
  background: linear-gradient(to bottom right, #f47721, #dd2476, #4724dd);
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

nav a.logo {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li a {
  display: block;
  padding: 0 20px;
  line-height: 60px;
  transition: all 0.3s ease;
}

nav ul li a:hover {
  background-color: var(--hover-color);
  border-radius: 30px;
}

nav .menu-icon {
  cursor: pointer;
  display: none;
  font-size: 25px;
  color: #fff;
}

@media only screen and (max-width: 800px) {
  nav ul {
    display: none;
  }
  nav .menu-icon {
    display: block;
  }
}

/* Home Section */
#home {
  color: #333;
  padding-top: 80px;
}

.banner {
  background-image: url('https://dummyimage.com/1600x900/555555/ffffff');
  background-size: cover;
  height: 600px;
  display: flex;
  align-items: center;
}

.banner-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.banner h1 {
  font-size: 60px;
  margin-bottom: 20px;
}

.banner p {
  font-size: 24px;
  margin-bottom: 40px;
}

.btn {
  font-size: 20px;
  font-weight: bold;
  padding: 20px 40px;
  border-radius: 5px;
  background-color: var(--primary-color);
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  background-color: #FFA500;
}

/* Service Section */
.service-section {
  background-color: #fff;
  padding: 80px 0;
}

.service-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto;
  max-width: 1000px;
}

.service-box {
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 30px;
  width: calc(33.33% - 20px);
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.service-box h3 {
  color: var(--primary-color);
  font-size: 24px;
}

.service-box:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

.service-box:hover h3 {
  color: #fff;
}

@media (max-width: 768px) {
  .service-box {
    width: 100%;
  }
}

/* About Section */
#about {
  background: #fff;
  padding: 50px;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  text-align: justify;
}

.about-container h2 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 50px;
}

.about-container p {
  font-size: 18px;
  line-height: 28px;
  color: #666;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

footer p {
  margin: 0;
  font-size: 1.2em;
}
