:root {
  --yellow: #ffcc00;
  --dark: #111;
  --white: #fff;
  --gray: #ccc;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: var(--dark);
  color: var(--white);
}

header {
  position: fixed;
  top: 0;
  width: 96%;
  background: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  z-index: 1000;
  border-bottom: 2px solid var(--yellow);
}

.logo {
  font-size: 24px;
  color: var(--yellow);
  font-weight: bold;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: var(--yellow);
}

.menu-icon {
  display: none;
  font-size: 24px;
  color: var(--yellow);
  cursor: pointer;
}

.hero {
  padding: 120px 20px 60px;
  text-align: center;
  background: #222;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  color: var(--gray);
}

.about, .services, .contact {
  padding: 50px 20px;
  text-align: center;
}

.about h2, .services h2, .contact h2 {
  color: var(--yellow);
  font-size: 28px;
  margin-bottom: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.service-card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.service-card:hover {
  background: #292929;
}

.service-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.service-card h4 {
  font-size: 16px;
  color: var(--white);
}

.contact p, .contact a {
  font-size: 18px;
  margin: 10px 0;
  color: var(--white);
}

.whatsapp {
  background: #0c7031;
  padding: 10px 20px;
  border-radius: 6px;
  display: inline-block;
  color: white;
  text-decoration: none;
}

footer {
  text-align: center;
  padding: 20px;
  background: #000;
  border-top: 2px solid var(--yellow);
}

@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: var(--dark);
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    text-align: center;
  }

  nav.open {
    display: flex;
  }

  .menu-icon {
    display: block;
  }
}


.testimonials {
  padding: 60px 20px;
  background: #1a1a1a;
  text-align: center;
  color: var(--white);
}

.testimonials h2 {
  color: var(--yellow);
  font-size: 28px;
  margin-bottom: 30px;
}

.testimonial-slider {
  position: relative;
  max-width: 600px;
  margin: 0 auto 20px;
  min-height: 140px;
}
.testimonials {
  padding: 50px 20px;
  text-align: center;
  background: #1a1a1a;
  color: white;
}

.testimonials h2 {
  color: #ffcc00;
  font-size: 28px;
  margin-bottom: 30px;
}

.testimonial-slider {
  position: relative;
  max-width: 600px;
  margin: auto;
  overflow: hidden;
}

.slides {
  display: none;
  padding: 20px;
  background: #292929;
  border-radius: 10px;
  animation: fade 0.5s ease-in-out;
}

.slides.active {
  display: block;
}

.slides h4 {
  margin-top: 10px;
  color: #ffcc00;
  font-weight: normal;
}

.testimonial-controls {
  margin-top: 20px;
}

.testimonial-controls button {
  background: #ffcc00;
  color: #000;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 18px;
  margin: 0 5px;
  cursor: pointer;
  transition: 0.3s;
}

.testimonial-controls button:hover {
  background: #ffd633;
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}


.packages {
  padding: 60px 20px;
  background: #111;
  color: white;
  text-align: center;
}

.packages h2 {
  font-size: 30px;
  color: #ffcc00;
  margin-bottom: 40px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.package-card {
  background: #1a1a1a;
  border: 2px solid #333;
  border-radius: 12px;
  padding: 30px 20px;
  transition: 0.3s;
}

.package-card:hover {
  border-color: #ffcc00;
  transform: scale(1.02);
}

.package-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #fff;
}

.package-card .price {
  font-size: 20px;
  color: #ffcc00;
  margin-bottom: 15px;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.package-card ul li {
  margin: 8px 0;
  color: #ccc;
}

.buy-btn {
  background: #ffcc00;
  color: #000;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s;
}

.buy-btn:hover {
  background: #ffd633;
}

.about-me {
  background: #111;
  color: white;
  padding: 60px 20px;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1000px;
  margin: auto;
  gap: 40px;
}

.about-image img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #ffcc00;
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 28px;
  color: #ffcc00;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #ccc;
}

.skills {
  list-style: none;
  padding: 0;
}

.skills li {
  margin: 8px 0;
  font-size: 16px;
}

.site-logo {
  height: 60px; /* Change size here */
  width: auto;
}

