/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
header {
  background: #6a11cb;
  color: white;
  padding: 15px 50px;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s;
}
.nav-links li a:hover {
  color: #ffcc00;
}

/* Hero Section */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #6a11cb, #ff6600);
  color: white;
}
.hero h1 {
  font-size: 3rem;
}
.hero h1 span {
  color: #ffcc00;
}
.hero p {
  margin: 15px 0;
  font-size: 1.2rem;
}
.btn-hero {
  background: white;
  color: #6a11cb;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}
.btn-hero:hover {
  background: #ffcc00;
  color: #000;
}

/* About Section */
.about {
  padding: 60px 20px;
  background: #e9f1ff;
}
.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}
.about-image img {
  width: 250px;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.about-text {
  flex: 1;
}
.about-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.btn-about {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #6a11cb;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}
.btn-about:hover {
  background: #ff6600;
}

/* Services Section */
.services {
  padding: 60px 20px;
  text-align: center;
}
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.service-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}
.service-card i {
  font-size: 40px;
  color: #ff6600;
  margin-bottom: 15px;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Contact Section */
.contact {
  padding: 60px 20px;
  background: #e9f1ff;
  text-align: center;
}

.contact-icons {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  padding: 0;
}

.contact-icons li {
  display: inline;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff6600;
  color: white;
  font-size: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s ease;
}

.icon-btn:hover {
  background: #6a11cb;
  transform: scale(1.1);
}


/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #6a11cb;
  color: white;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .services-container {
    grid-template-columns: 1fr;
  }
}
