/* ===== General Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #0d0d0d;
  color: #fff;
}

/* === Navbar Styling === */
/* ===== Base Styles ===== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* .navbar {
  background-color: #111;
  padding: 20px 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
} */

.navbar {
  background-color: rgba(17, 17, 17, 0.8); /* Slight transparency */
  backdrop-filter: blur(6px); /* Optional: subtle blur effect behind navbar */
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}


.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  position: relative;
}

/* ===== Logo Image ===== */
.logo img {
  height: 100px; /* Adjust size as needed */
  width: auto;
  display: block;
}


/* ===== Desktop Phone Number ===== */
.desktop-phone {
  margin-left: 20px;
}

.desktop-phone a {
  color: #ddd;
  font-weight: bold;
  text-decoration: none;
  font-size: 18px;
}


/* ===== Nav List ===== */
.nav-list {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-list li a {
  color: #eee;
  text-decoration: none;
  font-size: 18px;
  padding: 5px 0;
  transition: color 0.3s ease;
  position: relative;
}

.nav-list li a:hover {
  color: #aaaaaa;
}

/* ===== Hamburger Icon ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle .bar {
  height: 3px;
  width: 25px;
  background-color: white;
  margin: 4px 0;
  transition: all 0.3s ease-in-out;
}

/* ===== Responsive Styling ===== */
@media screen and (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .desktop-phone {
    display: none;
  }

    .nav-list {
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 70px); /* ensures menu doesn't overflow */
    overflow-y: auto;                /* allows scrolling */
    background-color: #111;
    padding: 60px 20px;
    display: none;
    animation: fadeInSlide 0.3s ease forwards;
  }

  .nav-list.active {
    display: flex;
  }

  .nav-list li {
    width: 100%;
    text-align: center;
    margin: 1px 0;
  }

  .nav-list li a {
    display: block;
    font-size: 20px;
    padding: 10px 0;
    border-radius: 6px;
    transition: background 0.3s;
  }

  .nav-list li a:hover {
    background-color: #222;
  }

  .mobile-call-btn {
    display: block;
  }

  .call-now-btn {
    background-color: #333;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 18px;
    text-decoration: none;
    transition: background 0.3s;
  }

  .call-now-btn:hover {
    background-color: #444;
  }

}

/* Hide call button in desktop */
@media screen and (min-width: 769px) {
  .mobile-call-btn {
    display: none;
  }
}

/* ===== Animation for mobile menu ===== */
@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== Animate hamburger into X ===== */
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}






  
  /* ===== Hero Section ===== */
  .hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%);
  }
  
  /* ===== Text Over Image ===== */
  .hero-text {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 500px;
    text-align: left;
    z-index: 2;
  }
  
  .hero-text h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  }
  
  .hero-text p {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #ddd;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
  }
  
  /* ===== Get a Quote Button ===== */
  .quote-btn {
    background-color: #ffffff;
    color: #000000;
    padding: 12px 25px;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  }
  
  .quote-btn:hover {
    background-color: #000000;
    color: #ffffff;
    transform: scale(1.05);
  }

/* ======== Phone Number ====== */
.glass-contact {
  position: absolute;
  bottom: 30px;
  right: 40px;
  padding: 12px 20px;
  background: rgba(246, 244, 244, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 10;
}



  /* ===services=== */

  .gallery-services-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 30px;
  font-family: Arial, sans-serif;
  text-align: center;
}

.gallery-services-section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Grid layout */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

/* Individual item */
.gallery-item {
  background-color: #000;
  color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.gallery-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.gallery-item p {
  font-size: 0.95rem;
  color: #ccc;
  margin: 0;
}

/* Scroll animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===Submit Enquiry=== */
/* ===Submit Enquiry=== */

/* Enquiry Section Container */
.enquiry-section {
  max-width: 420px;
  margin: 20px auto;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(31, 38, 135, 0.25);
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* Heading */
.enquiry-section h2 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

/* Description paragraph */
.enquiry-section p {
  font-size: 0.85rem;
  margin-bottom: 14px;
  color: #ccc;
}

/* Form container */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Labels */
.enquiry-form label {
  font-size: 0.8rem;
  margin-bottom: 2px;
  font-weight: 500;
}

/* Inputs & Textarea */
.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 5px;
  font-size: 0.85rem;
  border: 1px solid #aaa;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
  color: #bbb;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: #888;
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

/* Checkbox group */
.checkbox-group {
  font-size: 0.75rem;
  margin-top: 5px;
  gap: 6px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Checkbox */
.checkbox-group input[type="checkbox"] {
  width: 14px;
  height: 14px;
}

/* Submit button */
.enquiry-form button {
  padding: 8px 20px;
  font-size: 0.85rem;
  border-radius: 16px;
  background: #444;
  color: white;
  border: none;
  margin-top: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.enquiry-form button:hover {
  background: #222;
}

@media screen and (max-width: 480px) {
  .enquiry-section {
    margin-left: 15px;
    margin-right: 15px;
    max-width: unset; /* allow width to be less constrained */
  }
}

/* thank you pop up */
/* Popup overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Popup box */
.popup-content {
  background: rgba(255, 255, 255, 0.08);
  padding: 24px 32px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  color: white;
  text-align: center;
  box-shadow: 0 4px 16px rgba(31, 38, 135, 0.25);
}

/* Close button */
.popup-content button {
  margin-top: 16px;
  padding: 8px 20px;
  background: #444;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.popup-content button:hover {
  background: #222;
}


/* ===FootNote=== */
.site-footer {
  background-color: #111;
  color: #eee;
  padding: 100px 60px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  align-items: start;
}

.footer-values h3,
.footer-contact h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #fff;
}

.footer-values p,
.footer-contact p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 8px;
}

.footer-contact a {
  color: #4fc3f7;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* Black and White Quote Button */
.quote-button {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 25px;
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.quote-button:hover {
  background-color: #000;
  color: #fff;
}

/* Social media icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
  margin-top: 20px;
}

.social-icons img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

/* animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
  animation: fadeInUp 0.8s ease-out forwards;
}