:root {
  --primary-color: #ff5722;
  --secondary-color: #ffffff;
  --bg-color: #f9f9f9;
  --accent-color: #faf201;
  --hover-color: #e64a19;
  --card-bg: #fff;
  --a-color: #ff7300;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: var(--bg-color);
}

body {
  font-family: sans-serif;
  background-color: var(--bg-color);
}


header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 0.5rem 1rem;
}

header .logo {
  font-size: 1.2rem;
  font-weight: bold;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  position: relative;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo i {
  font-size: 1.8rem;
  color: var(--accent-color);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  transition: right 0.3s ease;
}

.nav-links li a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s, transform 0.2s;
  position: relative;
}

.nav-links li a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: -4px;
}

.nav-links li a:hover {
  color: var(--accent-color);
  transform: translateY(2px);
}

.nav-links li a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 25px;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background: var(--secondary-color);
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger:hover span {
  background: var(--accent-color);
  transform: scaleX(1.2);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100px;
    gap: 1.5rem;
    backdrop-filter: blur 10px;
    background: var(--primary-color);
    padding: 1.5rem 1rem;
    border-radius: 10px 0 0 10px;
    z-index: 999;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s, transform 0.3s;
    backdrop-filter: blur 20px;
  }

  .nav-links.active {
    display: flex;
    opacity: 1;
    transform: translateX(0);
    box-shadow: 0 0 10px #ebebeb;

  }

  .hamburger {
    display: flex;
  }

  
}

/* Active state for hamburger */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  transform: translateX(40px);
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-links,
.nav-links.active {
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar input {
  padding: 0.5rem;
  border-radius: 5px;
  border: none;
}





/* Footer Styles */
footer {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 2rem 1rem;
  margin-top: 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  align-items: start;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-info a {
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.footer-info a:hover {
  color: var(--secondary-color);
}

.quick-links h4,
.social-links h4 {
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.quick-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quick-links ul li a {
  color: var(--secondary-color);
  transition: color 0.3s ease;
  display: inline-block;
}

.quick-links ul li a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.social-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--secondary-color);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Social Media Icon Colors */
.social-icon.facebook:hover {
  background: #1877f2;
  color: white;
}

.social-icon.whatsapp:hover {
  background: #25d366;
  color: white;
}

.social-icon.messenger:hover {
  background: #0084ff;
  color: white;
}

.social-icon.phone:hover {
  background: #4caf50;
  color: white;
}
