/* ================== GLOBAL STYLES ================== */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7));
}

img {
  max-width: 100%;
  height: auto;
}

/* ================== NAVBAR ================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  position: relative;
  margin-bottom: 100px;
  background: #111; /* Black */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
/* --- Logo Styles --- */
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .logo img {
    height: 40px;
  }
}
.logo-asg,
.logo-digi,
.gold-i,
.reverse-i {
  display: none !important;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.nav-links a:hover {
  color: #ffd700; /* Gold hover */
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: #e0e0e0;
}
.menu-toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* ================== BUTTONS ================== */
.btn, .service-btn, .hero-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #ffd700; /* Gold */
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.hero-btn:hover,
.btn:hover, 
.service-btn:hover {
  background: #e60000; /* Red hover */
  color: #fff;
  transform: translateY(-2px);
}
.service-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* ================== FOOTER ================== */
.footer {
  background: #111;
  color: #ccc;
  padding: 50px 30px 20px;
  margin-top: 200px;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-column {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
}
.footer-column h2, 
.footer-column h3 {
  color: #ffd700; /* Gold */
}
.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column li {
  margin-bottom: 10px;
}
.footer-column a, 
.footer-column p {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}
.footer-column a {
  position: relative;
  display: inline-block;
}
.footer-column a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #ffd700;
  left: 0;
  bottom: -2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}
.footer-column a:hover::after {
  transform: scaleX(1);
}
.footer-column a:hover {
  color: #ffd700;
}
.social-icons a {
  margin-right: 10px;
  color: white;
  font-size: 18px;
}
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
}

/* ================== FLOATING BUTTONS ================== */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.float-button.call-button {
  width: 50px;
  height: 50px;
  background-color: #e60000; /* Red */
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
}
.whatsapp-chat {
  background-color: white;
  color: #25D366; /* WhatsApp Green */
  border-radius: 30px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Arial', sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-size: 16px;
  transition: background-color 0.3s ease;
}
.whatsapp-chat img {
  width: 20px;
  height: 20px;
}
.whatsapp-chat:hover {
  background-color: #f1f1f1;
}

/* ================== NAVBAR LOGO FIX (Mobile) ================== */
@media (max-width: 768px) {
  .logo {
    font-size: 1.4rem;
    gap: 4px;
    letter-spacing: 0.5px;
  }
  .logo-asg,.logo-digi{
    font-size: 1rem;
  }
}

/* ================== NAVBAR MENU FIX (Mobile) ================== */
@media (max-width: 480px) {
  .menu-toggle {
    display: block;   
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 180ms ease;
    z-index: 2000; 
    max-height: 100vh;
    overflow-y: auto;
  }
  .nav-links.open {
    transform: scaleY(1);
  }
  .nav-links a {
    display: block;
    color: #000;
    padding: 1rem;
    text-align: center;
  }
}

/* Mobile navbar tweaks */
@media (max-width: 768px) {
  .menu-toggle { 
    display: inline-block !important; 
    color: #000 !important; 
    font-size: 1.8rem; 
    background:none; 
    border:0; 
  }
  .nav-links { transform: scaleY(0); transform-origin: top; transition: transform 180ms ease; }
  .nav-links.open { transform: scaleY(1); }
  .nav-links a { color: #000 !important; }
  .navbar { background: #fff; }
}
