:root {
  --primary: #ffbb00;
  --dark: #0a0a0a;
  --light: #f8f8f8;
  --accent: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
}

.navbar {
  position: fixed;
  width: 100%;
  background: #000;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.navbar a {
  color: white;
  margin-left: 1.2rem;
  text-decoration: none;
  font-weight: 500;
}

nav a.active,
nav a:hover {
  color: #ffbb00;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  inset: 0;
}

.hero-content {
  color: white;
  z-index: 1;
  text-align: center;
  padding: 1rem;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
   animation: fadeInDown 1.5s ease-in-out;
}

 @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1.5s ease-in-out;
}

 @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .call-section {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  padding: 2rem;
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #ffbb00;
}

/* Phone Number */
.phone-number {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1.5rem;
}

/* Bouncing Animation */
.bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Call Button */
.call-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: #ffbb00;
  color: #333;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(255, 187, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.call-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 187, 0, 0.6);
}

/* Responsive Text */
@media (max-width: 480px) {
  .phone-number {
    font-size: 1.5rem;
  }

  .title {
    font-size: 1.5rem;
  }

  .call-btn {
    font-size: 0.95rem;
    padding: 0.7rem 1.2rem;
  }
}

.btn {
  padding: 0.8rem 1.5rem;
  margin: 0.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
}

.primary {
  background: var(--primary);
  color: #000;
}

.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.secpry {
  padding: 1rem 4.5rem;
  background: #000;
  color: #ffbb00;
  border: 2px solid #fff;
}

.section {
  padding: 4rem 2rem;
  text-align: center;
}

.services-grid, .why-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 2rem;
}

.service-card, .why-grid div {
  background: #fff;
  padding: 2rem 1rem;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px) scale(1.03);
}

.service-card i, .why-grid i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.testimonials {
  background: var(--light);
}

.testimonial-slider {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.testimonial {
  display: none;
  font-size: 1.1rem;
}

.testimonial.active {
  display: block;
  animation: fade 1s ease-in-out;
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cta {
  background: var(--primary);
  color: #000;
}

.cta a {
  background: #000;
  color: var(--primary);
  padding: 1rem 2rem;
  margin-top: 1rem;
  display: inline-block;
}

.footer-links{
  background: #8a7c7c;
  padding-bottom: 1rem;
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.footer-links ul li{
  text-decoration: none;
}

.footer-links a{
    color: blue;
}

.footer-links a:hover {
    color: #ffbb00;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.alpha{
    text-decoration: none;
    background: aqua;
    padding: 5px 12px;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  #nav-links {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    padding: 1rem;
  }
  #nav-links.show {
    display: flex;
  }
}
