/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
  overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #111;
}

/* Navbar */
.navbar {
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    height: 80px;
    position: relative;
}

.nav-left, .nav-right {
    display: flex;
    gap: 20px;
}

.logo img {
    width: 150px;
    height: 45px;
    object-fit: contain;
    display: block;
}

/* Gold bar in navbar */
.navbar .gold-bar {
    width: 100%;
    height: 3px;
    background-color: #D4AF37;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Nav links */
.navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

/* Gold bar between sections */
.gold-bar {
    width: 100%;
    height: 4px;
    background-color: #D4AF37;
}

/* Hero Section */
.hero {
    background: url('hero.jpg') center center/cover no-repeat;
    color: #fff;
    padding-top: 150px;
    padding-bottom: 180px;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 10px; /* <-- add horizontal spacing */
    position: relative;
    z-index: 1;
    text-align: center;
}


.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-buttons {
    margin-top: 10px; /* adds space below the subheading */
}

.hero-buttons button {
    margin: 10px;
    padding: 12px 23px;
    border: none;
    background: #D4AF37;
    color: #000;
    cursor: pointer;
    border-radius: 8px; /* rounded corners */
    font-weight: 700;
    transition: background 0.3s;
}

/* Optional: hover effect */
.hero-buttons button:hover {
    background: #ffd663;
}

/* Hero service cards */
.service-cards {
    display: flex;
    overflow-x: auto;
    margin-top: 20px;
    justify-content: center;
}

.card {
    min-width: 180px;
    padding: 20px;
    margin: 0 10px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    border-radius: 4px;
}

/* Universal Content Layout */
.content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
}

/* Headings */
h2, h3 {
    text-align: left;
    margin-bottom: 20px;
}

/* About Section */
.about-wrapper {
    background: #000;
    padding: 0px 0;
    color: #fff;
}

.about-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-image img {
    width: 200px;
    border-radius: 20px;
    object-fit: cover;
    max-width: 100%;
    height: auto;
}

.about-text {
    flex: 1;
}

.about-text p {
    line-height: 1.6;
    margin-bottom: 16px;  /* adjust this value as needed */
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    line-height: 1.6;
}

/* Services Section */
.services-wrapper {
    background: #fff;
    padding: 0px 0;
    color: #111;
}

/* Angled Dividers */
.angled-divider {
    width: 100%;
    height: 60px;
    background: #fff; /* Must match the background of the NEXT section */
    margin-bottom: -1px;
}

.angled-down-right {
    clip-path: polygon(0 0, 100% 100%, 100% 100%, 0% 100%);
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Base card style */
.service-card {
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: multiply;
    transition: all 0.4s ease;
    padding: 20px;
    position: relative;
}

.service-card span {
    font-weight: 600;
    margin-bottom: 10px;
    z-index: 2;
    position: relative;
}

/* Hidden paragraph initially */
.service-card p {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* On hover, expand card and show paragraph */
.service-card:hover {
    height: 260px; /* adjust as needed */
}

.service-card:hover p {
    opacity: 1;
    max-height: 100px;
    margin-top: 10px;
}



/* Individual backgrounds */
.card1 { background-image: url('scard1.jpg'); }
.card2 { background-image: url('scard2.jpg'); }
.card3 { background-image: url('scard3.jpg'); }
.card4 { background-image: url('scard4.jpg'); }
.card5 { background-image: url('scard5.jpg'); }
.card6 { background-image: url('scard6.jpg'); }

/* Gallery Section */
.gallery-wrapper {
    background: #000000;
    padding: 0px 0;
    color: #ffffff;
}

.gallery-grid-container {
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-auto-rows: 150px;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  border: 2px solid #d4af37;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #444;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gallery-item img:hover {
  transform: scale(1.03);
}

/* Shape modifiers */
.gallery-item.square {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.modal-content {
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  margin: auto;
  border-radius: 10px;
  image-rendering: auto;
}
.modal-content {
  width: auto;
  height: 100%;
  max-width: 90vw;
  max-height: 70vh;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
}

.modal-arrow {
  position: absolute;
  top: 50%;
  font-size: 48px;
  color: white;
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 1000;
  user-select: none;
  padding: 8px;
}

.modal-arrow.left {
  left: 30px;
}

.modal-arrow.right {
  right: 30px;
}

.modal-arrow:hover {
  color: #d4af37;
}

.triangle-wrapper {
  background-color: #888888; /* Same as why-choose-wrapper background */
}

.gallery-triangle {
  width: 100%;
  height: 80px;
  background: #000; /* match surrounding section exactly */
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin-top: -2px; /* clean overlap */
  display: block;
  line-height: 0;
  font-size: 0;
}

/* Main Testimonials Wrapper */
.testimonials-section {
  margin: 0;
  padding: 0;
}

.testimonials-triangle {
  background: #adadad;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  height: 100px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 15px; /* Helps center it better */
  margin-bottom: -1px;
    margin-top: 60px; /* adjust as needed */
}

.testimonials-triangle h2 {
  margin: 0;
  color: #ffffff;
}

/* Carousel area */
.testimonials-carousel {
  background: #8d8d8d;
  text-align: center;
  padding: 80px 20px 60px;
  position: relative;
  overflow: hidden;
}
.testimonial-quote-left,
.testimonial-quote-right {
  position: absolute;
  font-size: 300px; /* adjust for balance */
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  font-family: serif; /* more elegant quote style */
}

.testimonial-quote-left {
  top: 55%;
  left: 10%;
  transform: translateY(-50%);
}

.testimonial-quote-right {
  top: 75%;
  right: 10%;
  transform: translateY(-50%);
}

/* Slides */
.testimonial-slide {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  font-style: italic;
  z-index: 1;
  position: relative;
  display: none;
  color: white;
}

.testimonial-slide.active {
  display: block;
}

/* Dots */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.testimonial-dots .dot {
  width: 14px;
  height: 14px;
  background: #D4AF37;
  border-radius: 50%;
  opacity: 0.4;
  transform: scale(1);
  transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
  opacity: 1;
  transform: scale(1.4);
}
.testimonial-arrow {
  position: absolute;
  top: calc(50% + -48px); /* fine-tune vertically */
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.testimonial-arrow.left {
  left: 25%;
}

.testimonial-arrow.right {
  right: 25%;
}

/* CTA Button */
.testimonials-cta {
  margin-top: 30px;
}

.cta-button {
  background: #D4AF37;
  color: #000;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #fcd452;
}
.why-choose-wrapper {
  background: #888888;
  padding: 80px 20px;
}
.why-choose-wrapper {
  background-color: #888888;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

.why-choose-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('whybg.png') no-repeat center center;
  background-size: contain;
  opacity: 0.1; /* subtle fade */
  pointer-events: none;
  z-index: 0;
}

.why-choose-section h2 {
  color: #ffffff; /* White heading */
}

.why-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.why-column {
  flex: 1 1 45%;
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid #d4af37;
  padding: 20px 24px;
  color: #fff;
  backdrop-filter: blur(3px);
  transition: transform 0.3s ease;
}

.why-column:hover {
  transform: translateY(-4px);
}

.why-column h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #d4af37;
}

.why-column p {
  font-size: 1rem;
  line-height: 1.6;
}

.angled-divider-gallery {
  width: 100vw;
  height: 60px;
  background: white; /* Transitioning to the white Contact section */
  margin: 0;
  padding: 0;
  position: relative;
  bottom: -40px; /* Removes visible gap */
}

.angled-to-white {
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}


.contact-wrapper {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}
.contact-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 25px;
}

.contact-section form {
  background: #000;
  padding: 30px;
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto 30px;
}

.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 16px;
  background: #8888;
  border: 2px solid #d4af37; /* gold border */
  color: #fff;
  border-radius: 4px;
  font-family: inherit;
}

.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 16px;
  background: #111;
  border: 2px solid #d4af37;
  color: #fff;
  border-radius: 4px;
  font-family: inherit;
  resize: none; /* Prevents manual stretching */
}


.contact-section button {
  background: #d4af37;
  color: #000;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
  display: block;
  margin: 20px auto 0; /* center button */
}

.contact-section button:hover {
  background: #f5cb5a;
}

.contact-info {
  font-size: 1rem;
  color: #000;
}
.contact-icons {
  display: flex;
  flex-direction: column; /* Stack vertically */
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.icon-block a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 8px;
}

.icon-block img {
  width: 30px;
  height: 30px;
  filter: brightness(1);
}

.icon-block p {
  margin: 0;
  font-size: 0.9rem;
  color: #000;
  text-align: center;
}


/* Footer */
footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
}

/* ---------------------------------
   RESPONSIVE NAVBAR STYLES
---------------------------------- */

/* Hamburger icon (hidden on desktop) */
.hamburger {
  display: none;
  font-size: 23px;
  color: #fff;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1100;
  
}
.mobile-nav {
  display: none;
  flex-direction: column;
  align-items: center;
  background-color: #000;
  position: absolute;
  top: 22px; /* below navbar */
  right: 14px; /* aligns with hamburger’s right */
  padding: 10px;
  border: 1px solid #d4af37;
  border-radius: 8px;
  z-index: 1001;
  width: 120px; /* narrower box */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.mobile-nav a {
  color: #fff;
  padding: 8px 0;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  text-decoration: none;
}

/* Hover effect only on non-touch screens */
@media (hover: hover) and (pointer: fine) {
  .mobile-nav a:hover {
    background-color: #222;
    border-radius: 4px;
  }
}

/* Show mobile nav when toggled */
.mobile-nav.show {
  display: flex;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  /* Hide desktop nav */
  .nav-left,
  .nav-right {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .navbar {
    justify-content: center;
    position: relative;
  }

  .logo {
    margin: 0 auto;
  }
}
/* Mobile styles */
@media (max-width: 767px) {
  .about-inner {
    display: block;
    padding: 0 16px;
    text-align: left;
  }

  .about-image img {
    content: url('aboutpicphone.jpg'); /* override image for mobile */
    width: 100%;
    border-radius: 12px;
    margin-bottom: 16px;
  }

  .about-text h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .about-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 14px;
  }
}
@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .testimonials-triangle h2 {
    font-size: 1.25rem;
    line-height: 1.2;
    margin-top: 2rem;
    text-align: center;
  }
}
@media (max-width: 1200px) {
  /* Testimonials Carousel */
  .testimonials-carousel {
    padding: 1.5rem 1rem;
    position: relative; /* Needed for arrow positioning */
  }

  .testimonial-slide {
    font-size: 1rem;
    line-height: 1.4;
    text-align: center;
    padding: 0 10px;
  }

  .testimonial-quote-left,
  .testimonial-quote-right {
    font-size: 4rem;
    opacity: 0.1;
    top: 0.5rem;
  }

  /* Arrows */
  .testimonial-arrow {
    font-size: 1.4rem;
    padding: 0.5rem 0.8rem;
    position: absolute;
    top: 23%; /* aligns with quote text */
    transform: translateY(-50%);
    z-index: 10;
    background: transparent;
    border: none;
    color: #fff;
  }

  .testimonial-arrow.left {
    left: 0px;
  }

  .testimonial-arrow.right {
    right: 0px;
  }

  /* Dots */
  .testimonial-dots .dot {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }

  /* CTA Button */
  .testimonials-cta {
    text-align: center;
    margin-top: 1.5rem;
  }

  .testimonials-cta .get-in-touch-btn {
    display: inline-block;
    padding: 10px 22px;
    font-size: 0.9rem;
    font-weight: 600;
    background-color: #d4af37;
    color: #000;
    border-radius: 8px;
    width: auto;
    min-width: unset;
    margin: 0 auto;
  }
  .testimonial-quote-left,
  .testimonial-quote-right {
    display: block;
    position: absolute;
    font-size: 15rem;
    color: #fff;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
  }

  .testimonial-quote-left {
    top: 100px;
    left: 10px;
  }

  .testimonial-quote-right {
    top: 110px;
    right: 10px;
  }
  
}

@media (max-width: 767px) {
  /* Reorder gallery items */
.gallery-item:nth-child(1) { order: 1; }
.gallery-item:nth-child(2) { order: 2; }
.gallery-item:nth-child(9) { order: 3; }
.gallery-item:nth-child(3) { order: 4; }
.gallery-item:nth-child(5) { order: 5; }
.gallery-item:nth-child(6) { order: 6; }
.gallery-item:nth-child(7) { order: 7; }
.gallery-item:nth-child(4) { order: 8; }
.gallery-item:nth-child(8) { order: 9; }

/* Make item 4 a square on mobile */

}
@media (max-width: 1023px) {
  #modal img {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-sizing: border-box;
    min-width: 90vw;

  }

  #modal {
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .modal-arrow {
    color: white !important;
    background: none !important;
  }

  .modal-arrow:focus,
  .modal-arrow:active,
  .modal-arrow:hover {
    color: white !important;
    background: none !important;
    outline: none;
    box-shadow: none;
  }
}
@media (max-width: 768px) {
  .why-choose-wrapper::before {
    background-image: url('whybgphone.png');
    background-position: center;
    background-repeat: no-repeat;
      background-size: contain;
  opacity: 0.1; /* subtle fade */
  }
}


