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

body {
  font-family: Arial, sans-serif;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease, padding 0.3s ease;
  z-index: 1000;
}

nav.scrolled {
  background: rgba(0, 0, 0, 0.85);
  padding: 10px 30px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #f39c12;
}

.web{
  margin:0;
}
.section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  background: url('https://images.unsplash.com/photo-1503264116251-35a269479413?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
}

.hero-content{
  display: grid;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.btn {
  margin-top: 100px;
  background: #f39c12;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn:hover {
  background: #d35400;
}

/* About Section */
.about {
  background: url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
}

.text-container {
  background: rgba(0,0,0,0.6);
  padding: 20px;
  border-radius: 8px;
}

/* Services Section */
.services {
  overflow:hidden;
  
  background: #2c3e50;
  flex-direction: column;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.card {
  display: flex;
  flex-wrap: wrap;
  background: white;
  color: black;
  border-radius: 8px;
  overflow: hidden;
  width: 300px;
  transition: transform 0.3s ease;
}

.card img {
  width: 100%;
  max-width: 350px;
  display: block;
}

.card:hover {
  transform: scale(1.05);
}

/* Contact Section */
.contact {
  color: black;
  position: relative;
  display: flex;
  flex-direction: column;
  background: url('https://images.unsplash.com/photo-1492724441997-5dc865305da7?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
}

.contact h2{
  margin-top: -50px;
}

.contact p {
  color: white;
  background: rgba(0,0,0,0.6);
  padding: 10px;
  border-radius: 8px;
}
