* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* Hero Section */
.hero {
  background: url('ChatGPT Image Aug 11, 2025, 05_59_32 PM.png?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 600;
}

.hero-content p {
  margin: 1rem 0;
  font-size: 1.2rem;
}

.cta-button {
  background: #ff914d;
  padding: 12px 24px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #ff6b1a;
}

/* Sections */
section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #222;
}

/* About Section */
.about ul {
  margin-top: 1rem;
  list-style: none;
  padding-left: 0;
}

.about li {
  margin-bottom: 0.5rem;
}

/* Why Java */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.card {
  background: white;
  padding: 1.5rem;
  border-left: 5px solid #ff914d;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-radius: 8px;
}

/* Services */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.service-list div {
  flex: 1 1 45%;
  background: #fff;
  padding: 1rem;
  border-left: 4px solid #ffa366;
  border-radius: 6px;
}

/* Contact */
.contact a {
  color: #ff914d;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

.footer-links {
  margin-top: 1rem;
}

.footer-links a {
  margin: 0 10px;
  color: #ddd;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}
