
/* ===== 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;
  overflow-x: hidden;
}
:root {
  --vh: 100%;
}






/* === 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*/


 .full-height {
  height: calc(var(--vh, 1vh) * 100);
}
/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #000;

  display: flex; 
  
  justify-content: flex-start; 
  align-items: center;

  padding-left: 20px;          /* Optional: padding from the left edge */
}


/* Hero Image */
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(60%);
  z-index: 1;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0); /* Fixes Chrome zoom-glitch on scroll */
}

/* Hero Text */
.hero-text {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 500px;
  text-align: left;
  padding: 20px;
}

/* Hero Heading */
.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* Hero Paragraph */
.hero-text p {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #ddd;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

/* Quote Button */
.quote-button {
  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;
  will-change: transform;
  backface-visibility: hidden;
}

.quote-button:hover {
  background-color: #000000;
  color: #ffffff;
  transform: scale(1.05);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    justify-content: flex-start; /* Align content to the top */
    align-items: flex-start;     /* Align items to the left */
    padding: 20px;               /* Uniform padding for mobile */
  }

  .hero-text {
    width: 100%;
    text-align: left;            /* Left-align text on mobile */
    padding: 0 10px 20px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .quote-button {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .hero-image {
    object-position: top; /* Ensures better crop on tall images */
  }
}






/* ===Our services=== */
/* Section wrapper */
/* Section wrapper */
.services-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 40px;
  font-family: Arial, sans-serif;
  text-align: center;
}

/* Section title */
.services-section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Container for services */
.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Each service card */
/* Default for desktop: enforce 3 items per row */
.service-item {
  flex: 1 1 calc(33.33% - 30px);
  min-width: 180px; /* Ensures items don't shrink too much */
  background-color: #000;
  color: #fff;
  border-radius: 10px;
  padding: 20px 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
}

/* Icon-style image: reduced to a small icon */
.service-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* Headings and text */
.service-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #fff;
}

.service-item p {
  font-size: 0.85rem;
  color: #ccc;
  margin: 0;
}

/* Fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
/* For screens up to 1024px, show 2 items per row */
@media (max-width: 1024px) {
  .service-item {
    flex: 1 1 calc(50% - 30px);
  }
}

/* For screens up to 768px, keep 2 items per row */
@media (max-width: 768px) {
  .service-item {
    flex: 1 1 calc(50% - 30px);
  }
}

/* For screens up to 500px, stack to 1 per row */
@media (max-width: 500px) {
  .service-item {
    flex: 1 1 100%;
  }
  
  .services-section {
    padding: 0 20px;
  }
  
  .services-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}





/* ===== "Why Choose Us" Section ===== */
.why-title {
  width: 100%;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #fff;
  font-weight: 600;
}

.why-choose {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  background-color: #000;
  padding: 40px;
}

.why-choose-card {
  background-color: #222;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: #fff;
  width: 300px;
  margin: 20px;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
  transition: transform 0.3s ease;
}

.why-choose-card:hover {
  transform: translateY(-5px);
}

.why-choose-card img.why-icon {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-bottom: 15px;
}

.why-choose-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.why-choose-card p {
  font-size: 1rem;
  line-height: 1.5;
}

/* === Our Office Section === */
.our-office {
  padding: 80px 20px 40px;
  background-color: #0d0d0d;
  color: #fff;
  text-align: center;
}

.our-office h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #ffffff;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

/* Layout: flex for info and map */
.office-details {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Info block on the left */
.office-info {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  color: #ddd;
}

/* Label + value styles */
.office-info .info-block {
  margin-bottom: 20px;
}

.office-info strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 5px;
  color: #fff;
}

.office-info span {
  display: block;
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
}

/* Map on the right */
.map-container {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .office-details {
    flex-direction: column;
    align-items: center;
  }

  .map-container iframe {
    height: 250px;
  }
}



/* === Review=== */
.review-section {
  background-color: #0d0d0d;
  padding: 60px 20px;
  color: #fff;
  display: flex;
  justify-content: center;
}

.review-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  max-width: 1000px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
}

.review-photo img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.review-content {
  flex: 1;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.review-user .user-pic {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}

.review-content h3 {
  font-size: 1.3rem;
  margin: 0;
  color: #fff;
}

.review-content p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

/* star css */
.star-rating {
  margin: 8px 0 16px;
}

.star-img {
  width: 120px; /* Adjust size as needed */
  height: auto;
}


/* responsivness */
@media (max-width: 768px) {
  .review-container {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .review-photo img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .review-content {
    text-align: center;
  }

  .review-user {
    justify-content: center;
  }
}



/* ===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;
}
