* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  min-height: 100vh;
}

:root {
  --gradient-primary: linear-gradient(to right, #ff7e5f, #feb47b);
  --gradient-secondary: linear-gradient(to right, #3b82f6, #6366f1);
  --gradient-accent: linear-gradient(to right, #ff7e5f, #feb47b, #3b82f6);
  --gradient-dark: linear-gradient(to right, #1e293b, #0f172a);
  --color-blue-500: #3b82f6;
  --color-blue-700: #1d4ed8;
  --color-orange-500: #f97316;
  --color-orange-700: #c2410c;
  --color-red-500: #ef4444;
  --color-purple-500: #8b5cf6;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-600: #4b5563;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.25);
  --transition: all 0.3s ease;
  --border-radius: 12px;
  --primary-gradient: linear-gradient(to right, #ff7e5f, #feb47b, #3b82f6);
  --secondary-gradient: linear-gradient(to right, #3b82f6, #6366f1);
  --accent-color: #1e40af;
  --light-bg: #f8fafc;
  --text-dark: #1d1d1d;
  --text-medium: #4a5568;
  --text-light: #718096;
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
  --border-radius: 12px;
  --transition: all 0.3s ease;
  --border-color: #e2e8f0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: translateY(-3px);
}

.logo img {
  height: 60px;
  transition: all 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05) rotate(3deg);
}

/* .logo h3 {
  font-size: 20px;
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 2vw;
} */

.nav-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-link:hover {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.nav-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: -100px;
  max-width: 800px;
  width: 750px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 25px;
  display: none;
  z-index: 100;
  border: 1px solid rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-item:hover .dropdown {
  display: block;
  opacity: 1;
  transform: translateY(15px);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.dropdown-category h3 {
  color: #ff7e5f;
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(255, 126, 95, 0.2);
}

.dropdown-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dropdown-links a {
  padding: 10px 15px;
  border-radius: 10px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  display: block;
}

.dropdown-links a:hover {
  background: linear-gradient(
    to right,
    rgba(59, 130, 246, 0.08),
    rgba(168, 85, 247, 0.08)
  );
  color: #3b82f6;
  transform: translateX(5px);
}

.contact-btn {
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  color: white;
  padding: 12px 25px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 126, 95, 0.3);
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 126, 95, 0.4);
  background: linear-gradient(to right, #3b82f6, #6366f1);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Mobile menu styles */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  z-index: 999;
}

.mobile-menu.open {
  max-height: 90vh;
  overflow-y: auto;
}

.mobile-nav {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 15px;
}

.mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.mobile-nav-link:hover {
  background: rgba(59, 130, 246, 0.1);
}

.mobile-dropdown {
  padding-left: 20px;
  margin-top: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mobile-dropdown.open {
  max-height: 1200px;
}

.mobile-category {
  margin: 15px 0 10px;
  color: #ff7e5f;
  font-weight: 600;
  font-size: 16px;
}

.mobile-dropdown-links {
  display: flex;
  flex-direction: column;
  gap: 10px;

  padding-left: 15px;
}

.mobile-dropdown-links a {
  padding: 12px 15px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.02);
  color: #333;
  text-decoration: none;
  font-weight: 500;
  border-left: 3px solid #3b82f6;
  transition: all 0.3s ease;
}

.mobile-dropdown-links a:hover {
  background: rgba(59, 130, 246, 0.1);
  transform: translateX(5px);
}

.mobile-contact-btn {
  margin-top: 15px;
  text-align: center;
  display: block;
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  color: white;
  padding: 15px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 126, 95, 0.3);
}

.mobile-contact-btn:hover {
  background: linear-gradient(to right, #3b82f6, #6366f1);
  transform: translateY(-3px);
}

/* Responsive styles */
@media (max-width: 1100px) {
  .dropdown {
    width: 650px;
  }
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .dropdown {
    display: none !important;
  }
}

/*footer here section*/

.footer {
  background: linear-gradient(135deg, #111827, #1f2937);
  color: white;
  position: relative;
  padding: 80px;
}

/* Make links relative and remove default underline */
.footer a {
  position: relative; /* for ::after positioning */
  text-decoration: none; /* remove default underline */
  color: inherit;
}

/* Hover orange underline effect */
.footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background-color: #f97316;
  transition: width 0.3s ease;
}

.footer a:hover::after {
  width: 100%;
}

.footer-inner {
  max-width: 1400px;
  margin: auto;
  padding: 0 10px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.company-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.company-logo {
  width: 48px;
  height: 48px;
  background: linear-gradient(90deg, #3b82f6, #9333ea);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 20px;
}

.company-name {
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  color: transparent;
}

.company-text {
  color: #d1d5db;
  font-size: 0.9rem;
  margin: 10px 0 20px;
}

.contact-item {
  font-size: 0.9rem;
  color: #d1d5db;
  margin-bottom: 8px;
}

.footer-title {
  color: #3b82f6;
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: bold;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 10px;
  font-size: 20px;
}

.social-links a {
  color: #b5b3b3;
  margin-left: 3px;
  margin-right: 4px;
  font-size: 1rem;
  &:hover {
    color: #fff;
    transition: cubic-bezier(0.19, 1, 0.22, 1);
    transform: scale(1.1);
  }
}
.footer-bottom {
  border-top: 1px solid rgba(156, 163, 175, 0.5);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #9ca3af;
}

.footer-legal a {
  margin-left: 15px;
  color: #9ca3af;
  text-decoration: none;
}

.footer-legal a:hover {
  color: white;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 829929920;
  display: flex;
  gap: 10px;
  padding: 10px;
  background: #1f2937;
  border-top: 1px solid #374151;
}

.cta-btn {
  flex: 1;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  text-decoration: none;
}

.call {
  background: #ea580c;
}

.call:hover {
  background: #c2410c;
}

.whatsapp {
  background: #16a34a;
}

.whatsapp:hover {
  background: #15803d;
}

.scroll-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: linear-gradient(90deg, #3b82f6, #9333ea);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
}

/* 📱 Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .footer {
    padding: 40px 20px;
  }

  .footer-grid {
    gap: 20px;
  }

  .company-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .company-name {
    font-size: 1.2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .footer-legal a {
    margin-left: 8px;
    font-size: 0.8rem;
  }

  .social-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .company-logo {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .footer {
    padding: 30px 15px;
  }

  .footer-title {
    font-size: 1rem;
  }

  .footer-links li {
    margin-bottom: 6px;
  }

  .sticky-cta {
    flex-direction: column;
    gap: 8px;
    z-index: 899292;
  }

  .cta-btn {
    padding: 12px;
    font-size: 0.9rem;
  }

  .scroll-top {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}
