body { margin:0; font-family:Arial; background:#fff; color:rgb(0, 0, 0); overflow-x:hidden; }
header { display:flex; justify-content:space-between; padding:20px 50px; background:#07152a; }
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #0a0f1c; /* Dark premium background */
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* LOGO SECTION */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

/* LOGO TEXT */
.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.logo-text .mark {
    color: #00aaff; /* Blue color for MARK */
}

/* NAV LINKS */
nav a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    margin-left: 30px;
    transition: 0.3s;
}

nav a:hover {
    color: #00aaff;
}
  .contact-us {
    background-color: #f9f9f9;
    padding: 60px 20px;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .contact-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .contact-header h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 10px;
  }

  .contact-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
  }

  .contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }

  .contact-info, .business-hours, .map-location {
    flex: 1 1 350px;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .contact-info h2, .business-hours h2, .map-location h2 {
    color: #222;
    margin-bottom: 20px;
    font-size: 1.6rem;
    border-bottom: 2px solid #007BFF;
    display: inline-block;
    padding-bottom: 5px;
  }

  .contact-info ul, .business-hours ul {
    list-style: none;
    padding: 0;
    color: #555;
  }

  .contact-info ul li, .business-hours ul li {
    margin-bottom: 15px;
    font-size: 1rem;
  }

  .contact-info ul li a {
    color: #007BFF;
    text-decoration: none;
  }

  .contact-info ul li a:hover {
    text-decoration: underline;
  }

  
  .map-location iframe {
    border-radius: 10px;
    border: 0;
  }

  /* Responsive */
  @media(max-width: 992px) {
    .contact-content {
      flex-direction: column;
      gap: 30px;
    }
  }

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover Effect */
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Optional Pulse Animation */
.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: pulse 1.5s infinite;
  z-index: -1;
}
.email-float {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #099bf7;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  text-decoration: none;
  transition: all 0.4s ease;
}

/* Hover Effect */
.email-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Optional Pulse Animation */
.email-float::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: pulse 1.5s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* ===== COMPREHENSIVE RESPONSIVE DESIGN ===== */

/* Mobile Menu Toggle Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== TABLET (768px and below) ===== */
@media (max-width: 768px) {
  /* Navbar */
  .navbar {
    padding: 15px 20px;
  }

  .logo img {
    width: 40px;
    height: 40px;
  }

  .logo-text {
    font-size: 16px;
  }

  .menu-toggle {
    display: flex;
  }

  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #0a0f1c;
    flex-direction: column;
    padding: 20px;
    display: none;
    z-index: 999;
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 15px;
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  /* Contact Section */
  .contact-us {
    padding: 40px 20px;
  }

  .container {
    padding: 0 20px;
  }

  .contact-header h1 {
    font-size: 2rem;
  }

  .contact-header p {
    font-size: 1rem;
  }

  .contact-content {
    flex-direction: column;
    gap: 30px;
  }

  .contact-info,
  .business-hours,
  .map-location {
    flex: 1;
  }

  .contact-info h2,
  .business-hours h2,
  .map-location h2 {
    font-size: 1.4rem;
  }

  .contact-info ul li,
  .business-hours ul li {
    font-size: 0.95rem;
  }

  .map-location iframe {
    height: 300px;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 25px;
  }

  .footer-col h3 {
    font-size: 20px;
  }

  .footer-col p {
    font-size: 14px;
  }

  .footer-col ul li a {
    font-size: 14px;
  }

  /* Floating buttons */
  .email-float,
  .whatsapp-float {
    width: 55px;
    height: 55px;
  }
}

/* ===== MOBILE (480px and below) ===== */
@media (max-width: 480px) {
  /* Navbar */
  .navbar {
    padding: 12px 15px;
  }

  .logo {
    gap: 8px;
  }

  .logo img {
    width: 35px;
    height: 35px;
  }

  .logo-text {
    font-size: 14px;
  }

  .menu-toggle span {
    width: 20px;
    height: 2.5px;
  }

  /* Contact Section */
  .contact-us {
    padding: 30px 15px;
  }

  .container {
    padding: 0 12px;
  }

  .contact-header {
    margin-bottom: 30px;
  }

  .contact-header h1 {
    font-size: 1.5rem;
  }

  .contact-header p {
    font-size: 0.9rem;
  }

  .contact-content {
    gap: 20px;
  }

  .contact-info,
  .business-hours,
  .map-location {
    padding: 20px;
  }

  .contact-info h2,
  .business-hours h2,
  .map-location h2 {
    font-size: 1.1rem;
  }

  .contact-info ul li,
  .business-hours ul li {
    font-size: 0.9rem;
  }

  .map-location iframe {
    height: 250px;
  }

  /* Footer */
  .footer-top {
    gap: 12px;
    padding: 12px;
  }

  .contact-box {
    flex-direction: column;
    gap: 8px;
    font-size: 16px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    padding: 20px 12px;
    gap: 20px;
  }

  .footer-col h3 {
    font-size: 16px;
  }

  .footer-col p {
    font-size: 13px;
  }

  .footer-col ul li a {
    font-size: 13px;
  }

  /* Floating buttons */
  .email-float,
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 22px;
    right: 20px;
  }

  .email-float {
    bottom: 85px;
  }

  .whatsapp-float {
    bottom: 20px;
  }
}

/* ===== EXTRA SMALL (under 360px) ===== */
@media (max-width: 360px) {
  .navbar {
    padding: 10px 12px;
  }

  .logo-text {
    font-size: 12px;
  }

  .contact-us {
    padding: 20px 10px;
  }

  .container {
    padding: 0 8px;
  }

  .contact-header h1 {
    font-size: 1.2rem;
  }

  .contact-header p {
    font-size: 0.85rem;
  }

  .contact-info,
  .business-hours,
  .map-location {
    padding: 15px;
  }

  .contact-info h2,
  .business-hours h2,
  .map-location h2 {
    font-size: 1rem;
  }

  .contact-info ul li,
  .business-hours ul li {
    font-size: 0.85rem;
  }

  .map-location iframe {
    height: 200px;
  }

  .footer-col h3 {
    font-size: 14px;
  }

  .footer-col p {
    font-size: 12px;
  }
}

/* MAIN FOOTER */
.footer {
  background: #000; /* PURE BLACK */
  color: #fff;
  font-family: Arial, sans-serif;
  margin-top: 30px;
}

/* TOP CONTACT BAR */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 48px;
  padding: 20px;
  border-bottom: 1px solid #111;
  background: #050505;
}

.contact-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
}

.contact-box .icon {
  font-size: 24px;
  color: #00b4ff;
}

.email-float {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #099bf7;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  text-decoration: none;
  transition: all 0.4s ease;
}

/* Hover Effect */
.email-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Optional Pulse Animation */
.email-float::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: pulse 1.5s infinite;
  z-index: -1;
}

/* CONTAINER */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  padding: 50px 40px;
}

/* LOGO IMAGE CONTROL */
.footer-logo {
  width: 160px;
  margin-bottom: 15px;
  transition: 0.4s ease;
}

/* LOGO HOVER EFFECT */
.footer-logo:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

/* HEADINGS */
.footer-col h3 {
  margin-bottom: 18px;
  font-size: 30px; /* BIGGER FONT */
}

/* TEXT */
.footer-col p {
  font-size: 18px;
  color: #aaa;
  margin-bottom: 10px;
  transition: 0.3s;
}

/* ICON COLOR */
.footer-col .icon {
  margin-right: 8px;
  color: #00b4ff;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #aaa;
  font-size: 18px;
  transition: 0.3s;
}

/* HOVER BLUE EFFECT */
.footer-col ul li a:hover,
.footer-col p:hover {
  color: #00b4ff; /* BRIGHT BLUE */
}

/* SOCIALS */
.socials {
  margin-top: 15px;
}

.socials a {
  display: inline-block;
  margin-right: 10px;
  padding: 8px 12px;
  background: #111;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

/* SOCIAL HOVER */
.socials a:hover {
  background: #00b4ff;
  color: #000;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #111;
  font-size: 14px;
  color: #777;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }

  .contact-box {
    font-size: 16px;
    justify-content: center;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .footer-top {
    gap: 12px;
    padding: 14px;
  }

  .contact-box {
    font-size: 14px;
  }

  .footer-logo {
    width: 120px;
  }
}