:root {
  --bg: #0b1220; /* dark navy */
  --accent: #c7a87a; /* warm gold */
  --muted: black;
  --card: #0f1722;
  --glass: black;
  --radius: 14px;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: white;
  color: black;
  line-height: 1.55;
}
a {
  color: inherit;
}

/* Layout */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px;
}

/* NAV */
/* ===== Navbar ===== */
      header {
        width: 100%;
        background-color: rgba(11, 18, 32, 0.95);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      }

      .navbar {
        max-width: 1200px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
      }

      /* Logo */
      .logo {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .logo img {
        width: 45px;
        height: 45px;
        background-color: white;
      }

      .logo h2 {
        font-size: 20px;
        color: #fff;
        letter-spacing: 1px;
      }

      /* Center Menu */
      .nav-links {
        display: flex;
        gap: 40px;
        list-style: none;
      }

      .nav-links li a {
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        transition: 0.3s;
      }

      .nav-links li a:hover {
        color: #e63946;
      }

      /* Right Button */
      .nav-btn {
        background: #c7a87a;
        color: #fff;
        padding: 10px 22px;
        border: none;
        border-radius: 5px;
        font-size: 15px;
        cursor: pointer;
        transition: 0.3s;
      }

      .nav-btn:hover {
        background: #c92b38;
      }

      /* ===== Mobile Menu ===== */
      .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
      }

      .hamburger span {
        width: 25px;
        height: 3px;
        background: #fff;
        transition: 0.3s;
      }

      /* Responsive */
      @media (max-width: 900px) {
        .nav-links {
          display: none;
          position: absolute;
          top: 70px;
          left: 0;
          width: 100%;
          background: #131a2e;
          flex-direction: column;
          align-items: center;
          gap: 20px;
          padding: 20px 0;
          transition: 0.3s;
        }

        .nav-links.active {
          display: flex;
        }

        .hamburger {
          display: flex;
        }
      }


/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: center;
  padding: 48px 0;
}
.hero-left h2 {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  margin: 0 0 12px;
  color: black;
}
.hero-left p {
  margin: 0 0 18px;
  color: black;
  max-width: 64ch;
}
.kpis {
  display: flex;
  gap: 20px;
  margin-top: 18px;
}
.kpi {
  background: var(--glass);
  padding: 12px 16px;
  border-radius: 12px;
  text-align: center;
}
.kpi strong {
  display: block;
  font-size: 18px;
  color: var(--accent);
}

.hero-right {
  background-color: #ececec;
  padding: 20px;
  border-radius: 16px;
}
.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  padding: 18px;
  border-radius: 12px;
}
.enquire input,
.enquire select,
.enquire textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255,);
  background: transparent;
  color: inherit;
  margin-bottom: 10px;
}
.enquire .small {
  font-size: 13px;
  color: black;
}

/* Services */
/* ===== Services Section ===== */
#services-section {
  text-align: center;
  padding: 80px 20px;
  /* background: ; */
}

#services-section h3 {
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: black;
  margin-bottom: 10px;
}

#services-section .muted {
  color: #777;
  font-size: 16px;
  margin-bottom: 40px;
}

#services-section .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.service {
  flex: 1 1 300px; /* allows wrapping */
  max-width: 360px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
}

.service h4 {
  font-size: 20px;
  color: #111;
  margin-bottom: 10px;
}

.service p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.service:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #e6b800; /* gold accent */
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  #services-section h3 {
    font-size: 26px;
  }
  .service {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Portfolio */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.port {
  height: 160px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.03);
}
.port .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.6));
  display: flex;
  align-items: flex-end;
  padding: 12px;
  font-weight: 600;
  color:white
}

/* Testimonials */
.testi {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent);
  padding: 20px;
  border-radius: 12px;
}

/* Footer */
:root {
    --navy: #071018;
    --accent: #c7a87a;
    --text: #f5f5f5;
  }

  .footer {
    background: var(--navy);
    color: var(--text);
    padding: 60px 6% 20px;
  }

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Logo + About */
  .footer-logo {
    width: 140px;
    margin-bottom: 20px;
  }

  .footer-about {
    flex: 1 1 35%;
  }
.footer-about img{
  background-color: white;
}
  .footer-about p {
    line-height: 1.6;
    font-size: 15px;
    color: rgba(255,255,255,0.85);
  }

  /* Links */
  .footer-links h4,
  .footer-contact h4 {
    color: var(--accent);
    margin-bottom: 15px;
  }

  .footer-links ul {
    list-style: none;
    padding: 0;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-links a:hover {
    color: var(--accent);
  }

  /* Contact */
  .footer-contact p {
    margin: 6px 0;
    font-size: 15px;
  }

  .footer-contact a {
    color: var(--accent);
    text-decoration: none;
  }

  /* Social Icons */
  .social-icons {
    margin-top: 15px;
  }

  .social-icons a {
    display: inline-block;
    margin-right: 10px;
    transition: transform 0.3s ease;
  }

  .social-icons img {
    width: 22px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    background-color: white;
  }

  .social-icons a:hover {
    transform: translateY(-3px);
  }

  .social-icons a:hover img {
    opacity: 1;
  }

  /* Footer Bottom */
  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 15px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
  }

  /* Responsive */
  @media (max-width: 800px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
      gap: 30px;
    }
    .footer-about, .footer-links, .footer-contact {
      flex: 1 1 100%;
    }
    .footer-logo {
      margin: 0 auto 20px;
    }
    .social-icons a {
      margin-right: 15px;
    }
  }

/* Responsive */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* small utilities */
.muted {
  color: var(--muted);
}
.center {
  text-align: center;
}
.gap {
  height: 28px;
}

/* simple modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 80;
}
.modal .box {
  background: #071018;
  padding: 18px;
  border-radius: 10px;
  max-width: 820px;
  width: 92%;
}

/* testimonial carousel */
.carousel {
  display: flex;
  gap: 12px;
  overflow: hidden;
}
.slide {
  min-width: 100%;
  transition: transform 0.4s ease;
}

a:-webkit-any-link {
  text-decoration: none;
}

#eventType {
  background-color:#ececec;
}
#portfolio h3 {
  text-align: center;
  font-size: 2.5rem;
  margin: 10px 0;
}
#portfolio p {
  text-align: center;
}
#services-section h3 {
  text-align: center;
  font-size: 2.5rem;
  margin: 10px 0;
}
#services-section p {
  text-align: center;
}
.service {
  text-align: center;
}
#testimonials h3 {
  text-align: center;
  font-size: 2.5rem;
  margin: 10px 0;
}

.clients-section {
  text-align: center;
  padding: 80px 20px;
}

.clients-section h2 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.divider {
  width: 60px;
  height: 4px;
  background: #e63946;
  margin: 10px auto 50px;
  border-radius: 2px;
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.client-card {
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: all 0.3s ease;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.client-card img {
  max-width: 120px;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.client-card:hover img {
  filter: grayscale(0%);
}

@media (max-width: 600px) {
  .clients-section h2 {
    font-size: 22px;
  }
}



:root {
  --navy: #071018;
  --accent: #c7a87a;
  --muted: rgba(255, 255, 255, 0.85);
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #05060a 0%, #0b1220 100%);
  color: var(--muted);
}
.carousel-viewport {
  outline: none;
}
.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 0.9, 0.33, 1);
  will-change: transform;
}
.carousel-item {
  min-width: 100%;
  position: relative;
  display: block;
  overflow: hidden;
}
.carousel-item img {
  width: 100%;
  height: 85vh;
  object-fit: cover;
  display: block;
  filter: brightness(0.4);
}
/* caption */
.caption {
  position: absolute;
  left: 6%;
  bottom: 10%;
  max-width: 46ch;
  color: white;
}
.caption h2 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  margin: 0 0 6px;
  color: var(--accent);
}
.caption p {
  margin: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}
/* controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(7, 16, 24, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--accent);
  width: 48px;
  height: 48px;
  border-radius: 10px;
  font-size: 28px;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 40;
}
.carousel-btn.prev {
  left: 18px;
}
.carousel-btn.next {
  right: 18px;
}
.carousel-btn:focus {
  outline: 2px solid rgba(199, 168, 122, 0.35);
}
/* dots */
.carousel-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  display: flex;
  gap: 8px;
  z-index: 40;
}
.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.15);
}
/* responsive */
@media (max-width: 900px) {
  .caption h2 {
    font-size: 28px;
  }
  .caption p {
    font-size: 14px;
  }
  .carousel-item img {
    height: 52vh;
  }
}
@media (max-width: 520px) {
  .caption {
    left: 5%;
    bottom: 8%;
  }
  .carousel-item img {
    height: 46vh;
  }
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
}

/* Contact form css section */
  :root {
    --navy: #071018;
    --accent: #c7a87a;
    --text: #f5f5f5;
    --light-bg: #0e1620;
  }

  .contact-section {
    background: white;
    color: var(--text);
    padding: 80px 6%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }

  .contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .contact-info {
    flex: 1 1 45%;
  }

  .contact-info h2 {
    font-size: 38px;
    color: black;
    margin-bottom: 12px;
  }

  .contact-info p {
    line-height: 1.6;
    color: black;
  }

  .contact-details {
    margin-top: 30px;
  }
  
  .contact-details p {
    margin: 8px 0;
    font-size: 15px;
    color: black;
  }

  .contact-details a {
    color: var(--accent);
    text-decoration: none;
  }

  /* Form */
  .contact-form {
    flex: 1 1 45%;
    background: white;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  }

  .form-group {
    margin-bottom: 18px;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,);
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    color: black;
    font-size: 15px;
    outline: none;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,0.08);
  }

  .btn {
    display: inline-block;
    background: var(--accent);
    color: var(--navy);
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .btn:hover {
    background: #b89868;
    transform: translateY(-2px);
  }

  /* Responsive */
  @media (max-width: 900px) {
    .contact-container {
      flex-direction: column;
      gap: 40px;
    }
    .contact-info, .contact-form {
      flex: 1 1 100%;
    }
  }

