@font-face {
  font-family: 'Priestacy';
  src: url('assets/fonts/Priestacy.woff2') format('woff2'),
       url('assets/fonts/Priestacy.woff') format('woff'),
       url('assets/fonts/Priestacy.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.priestacy {
  font-family: 'Priestacy', sans-serif;
  font-size: 2rem;
  font-weight: normal;  /* default font weight */

  
}


/* Reset + Roboto font */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #fff;
  background: #000;
}


/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 14px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  transition: background 0.35s ease, padding 0.25s ease;
}

/* transparent by default */
header.transparent { background: transparent; }
header.solid { background: #444f39; padding: 10px 5%; }

/* Left nav */
.nav-links { display: flex; gap: 18px; align-items: center; }
.nav-links a {
  color: #fff; text-decoration: none; font-weight: 300; font-size: 15px; opacity: .95;
}
.nav-links a:hover { color: #ff9800; }

/* Centered logo */
.logo img {
  height: 110px;     /* adjust size */
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); /* soft shadow */
}


/* Right icons + button */
.header-right { display: flex; gap: 12px; align-items: center; z-index: 1100; }
.header-right a { color: #fff; text-decoration: none; font-size: 18px; }
.header-right .btn {
  background: #ff9800; color: #111; padding: 8px 12px; border-radius: 6px; font-weight: 500; text-decoration: none;
}
.header-right .btn:hover { background: #e68900; }

/* Hamburger (mobile) */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 1200;
}

/* Hero + Slider */
.hero { width: 100%; height: 100vh; position: relative; overflow: hidden; }
.slider { position: relative; width: 100%; height: 100%; }

/* Slides: using flex so each .slide is exactly viewport width */
.slides {
  display: flex;
  height: 100%;
  transition: transform 0.85s cubic-bezier(0.22, 0.9, 0.35, 1);
  will-change: transform;
}
.slide {
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* Overlay - semi transparent black + centered text */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
  pointer-events: none; /* allow clicks to controls */
}
.overlay-inner { text-align: center; padding: 0 20px; max-width: 1100px; }
.overlay-inner h1 {
  font-size: clamp(28px, 6vw, 56px);
  letter-spacing: 0.6px;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: none;
  text-shadow: 0 6px 20px rgba(0,0,0,0.6);
}
.overlay-inner .tagline {
  font-size: clamp(14px, 2.2vw, 20px);
  opacity: 0.95;
  text-shadow: 0 3px 14px rgba(0,0,0,0.6);
}

/* Controls (prev/next) */
.controls { position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); display: flex; justify-content: space-between; padding: 0 12px; z-index: 8; }
.control {
  background: rgba(0,0,0,0.45);
  border: none;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .18s;
}
.control:hover { background: rgba(0,0,0,0.6); }

/* Responsive tweaks */
@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    gap: 14px;
    padding: 18px 20px;
    display: none;
    text-align: center;
    z-index: 1150;
  }
  .nav-links.active { display: flex; }

  /* center logo stays visible on mobile */
  .logo { position: absolute; left: 50%; transform: translateX(-50%); }

  .header-right { display: none; } /* keep icons hidden to save space */
  .hamburger { display: block; }
}

@media (max-width: 480px) {
  .overlay-inner h1 { font-size: clamp(22px, 7.2vw, 36px); }
  .overlay-inner .tagline { font-size: 13px; }
  .control { width: 46px; height: 46px; font-size: 28px; }
}






/* About Section */
.about-section {
  padding: 80px 8%;
  background: #fff;
  color: #111;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 50px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 500px;
}

.about-text .subtitle {
  color: #7c7c7c;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
}

.about-text h2 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 18px;
  font-weight: 700;
}

.about-text p {
  font-size: 16px;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.7;
  font-weight: 200;
}

.about-text .learn-more {
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: #7c7c7c;
  border-bottom: 1px solid #7c7c7c;
  padding-bottom: 2px;
  transition: 0.3s;
}

.about-text .learn-more:hover {
  color: #0056b3;
  border-color: #0056b3;
}

/* Right Images */
/* Right Images */
.about-images {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
}

.about-images img {
  width: 80%;
  max-width: 320px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Staggered effect */
.about-images .img-top {
  align-self: flex-start;   /* left side */
}

.about-images .img-bottom {
  align-self: flex-end;     /* right side */
  margin-top: -350px;         /* just push down a bit */
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-images {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
  }

  .about-images .img-bottom {
    margin-top: 0; /* reset offset */
  }
}





/* ---------- Section Base ---------- */
.whatwedo {
  padding: 80px 20px;
  text-align: center;
  background: #444f39; /* your old section background */
  
  color: #eee;
}

.whatwedo .section-heading {
  max-width: 700px;
  margin: 0 auto 50px;
}



.whatwedo .title {
  font-size: 36px;
  font-weight: 700;
  margin: 10px 0;
  color: #fff;
}

.whatwedo .description {
  font-size: 16px;
  color: #aaa;
  line-height: 1.7;
}

/* ---------- Grid Layout ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* ---------- Service Card ---------- */
.service-card {
  padding: 30px 20px;
  border-radius: 12px;
  transition: all 0.4s ease;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: #444f39; /* match section bg */
}

.service-card:hover {
  transform: translateY(-8px);
  background: #2f3627; /* darker hover background */
  border-color: #d4af37;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

/* ---------- Icons (Image + Emoji) ---------- */
.service-card .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}

.service-card .icon img {
  width: 45px;   /* reduced image size */
  height: auto;
  display: block;
}

.service-card .icon {
  font-size: 32px; /* for emoji icons */
  color: #d4af37;
}

/* ---------- Text ---------- */
.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
}

.service-card p {
  font-size: 15px;
  color: #bbb;
  line-height: 1.6;
}

/* ---------- Responsive Tweaks ---------- */
@media (max-width: 768px) {
  .whatwedo .title {
    font-size: 28px;
  }
  .whatwedo .description {
    font-size: 14px;
  }
  .service-card h3 {
    font-size: 18px;
  }
}



/* Section Heading */
.portfolio-heading {
  text-align: center;
  margin-bottom: 40px;
}
.portfolio-heading h2 {
  font-size: 38px;
  font-weight: 700;
  color: white;
}

/* Portfolio Section */
.portfolio {
  
  background: #444f39;
  color: white;
  margin-bottom: 0px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0; /* remove gap */
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.portfolio-card:hover img {
  transform: scale(1.08);
}

/* Always visible bottom info */
.portfolio-info {
  position: absolute;
  
  left: 14px;
  color: #fff;
  z-index: 2;
}

.portfolio-info h3 {
  font-size: 18px;
  font-weight: 600;
}

/* Hover Overlay (slide left to right) */
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(-100%);
  transition: transform .5s ease;
  text-align: center;
}

.portfolio-card:hover .portfolio-overlay {
  transform: translateX(0);
}

.portfolio-overlay h3 {
  font-size: 22px;
  margin-bottom: 10px;

}

.portfolio-overlay .view-btn {
  color: #fff;
  font-size: 15px;
  text-decoration: underline;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: opacity .3s;
}

.portfolio-overlay .view-btn:hover {
  opacity: 0.7;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  max-width: 90%;
  max-height: 80%;
  overflow-y: auto;
}

.modal-content img {
  width: 100%;
  height: auto;
  display: block;
  
}

.modal .close {
  position: absolute;
  top: 20px;
  right: 35px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}




.brands-section {
  padding: 80px 8%;
  background: #f9f9f9;
  text-align: center;
}

.brands-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: 700;
  color: #111;
}

/* ✅ Flexbox instead of grid */
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* center each row */
  gap: 40px;
}

.brand-logo {
  background: #fff;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-logo img {
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
}

.brand-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}



.clients-section {
  padding: 80px 8%;
  background: #fff;
  text-align: center;
}

.clients-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #111;
}

.clients-section .subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 50px;
}

/* Flexbox logo container */
.clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.client-card {
  background: #f8f8f8;
  border-radius: 50px; /* pill shape */
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 80px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card img {
  max-height: 40px;
  max-width: 100px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.client-card:hover img {
  transform: scale(1.1);
}

/* ✅ Responsive for smaller screens */
@media (max-width: 768px) {
  .clients-logos {
    gap: 20px;
  }
  .client-card {
    min-width: 100px;
    height: 70px;
    padding: 15px 20px;
  }
  .client-card img {
    max-height: 30px;
    max-width: 80px;
  }
}








.overlap-section {
  background-color: #f7f8fa;
  padding: 80px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.overlap-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  flex-wrap: wrap;
}

.overlap-image {
  flex: 1 1 600px;
}

.overlap-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* The white text box */
.overlap-content {
  flex: 1 1 500px;
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
  margin-left: -120px; /* This makes it overlap the image */
  z-index: 2;
}

.overlap-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: black;
}

.overlap-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

.btn-learn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  background-color: #003399;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.btn-learn:hover {
  background-color: #001f66;
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .overlap-container {
    flex-direction: column;
  }

  .overlap-content {
    margin-left: 0;
    margin-top: -60px; /* slight overlap upwards on mobile */
    padding: 30px 20px;
  }

  .overlap-content h2 {
    font-size: 1.6rem;
  }
}





.stats-section {
      text-align: center;
      padding: 60px 20px;
      background: #fff;
    }

    .stats-section h1 {
      font-size: 2.2rem;
      margin-bottom: 50px;
      font-weight: bold;
      color: #222;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px;
      max-width: 1200px;
      margin: auto;
    }

    .stat-box {
      padding: 20px;
    }

    .stat-box h2 {
      font-size: 3.5rem; /* bigger numbers */
      font-weight: bold;
      color: #000;
      margin-bottom: 10px;
    }

    .stat-box h4 {
      font-size: 1.2rem;
      font-weight: bold;
      margin: 10px 0;
    }

    .stat-box p {
      font-size: 1rem;
      color: #555;
      margin: 0;
    }

    .stat-box h2::after {
      content: "";
      display: block;
      width: 60px;
      height: 2px;
      margin: 10px auto;
      background: #ddd;
    }

    @media (max-width: 600px) {
      .stats-section h1 {
        font-size: 1.8rem;
      }

      .stat-box h2 {
        font-size: 2.5rem;
      }
    }








.approach-section {
  background-color: #ffffff; /* white background */
  padding: 80px 20px;
  
}

.approach-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap; /* responsive */
}

/* Text Left */
.approach-content {
  flex: 1 1 550px;
  padding: 20px;
}

.approach-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: black;
}

.approach-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

/* Image Right */
.approach-image {
  flex: 1 1 550px;
}

.approach-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .approach-container {
    flex-direction: column-reverse; /* text above image on mobile */
  }

  .approach-content {
    text-align: center;
    padding-top: 30px;
  }

  .approach-content h2 {
    font-size: 1.8rem;
  }
}









 .process-section {
     
      margin: auto;
      padding: 60px 20px;
      background: white;
      
      text-align: center; /* Centers all text inside the section */
    }

 .process-section h1{
     
      color: black;
    }

    


    .process-title {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 15px;
      justify-content: center;
    }

    .process-title span {
      color: #caa548;
    }

    .process-subtext {
      font-size: 16px;
      color: #555;
      margin-bottom: 50px;
    }

    .process-cards {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      justify-content: center;
    }

    .process-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      width: 360px;
      padding: 20px;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      transition: 0.3s ease;
    }

    .process-card:hover {
      transform: translateY(-8px);
    }

    .process-card img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      border-radius: 12px;
      margin-bottom: 15px;
    }

    .process-step {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: black;
  text-align: center;   /* ✅ centers text inside the card */
  width: 100%;          /* makes text-align work fully */
}

  .process-text {
      font-size: 14px;
      color: #666;
      line-height: 1.6;
      margin-bottom: 40px;
    }

    .process-number {
      position: absolute;
      bottom: 15px;
      right: 20px;
      font-size: 48px;
      font-weight: 700;
      color: rgba(0,0,0,0.08);
    }

    @media (max-width: 768px) {
      .process-cards {
        flex-direction: column;
        align-items: center;
      }
      .process-card {
        width: 100%;
        max-width: 360px;
      }
    }


.custom-gallery-container {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: #fafafa;
    padding: 2rem 0;
}

.custom-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    width: fit-content;
    align-items: center;
    min-width: 100%;
    position: relative;
}

/* Scrolling Animations */
.custom-scroll-rtl {
    animation: custom-rtl-scroll 500s linear infinite;
}

.custom-scroll-ltr {
    animation: custom-ltr-scroll 120s linear infinite;
}

@keyframes custom-rtl-scroll {
    from { transform: translateX(-75%);}
    to { transform: translateX(100%);}
}

@keyframes custom-ltr-scroll {
    from { transform: translateX(100%);}
    to { transform: translateX(-100%);}
}

/* Gallery Items and Responsive Styles */
.custom-gallery-item {
    flex: 0 0 auto;
    width: 340px;
    height: 240px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 3px 16px 0 rgba(0,0,0,0.12);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .custom-gallery-item {
        width: 220px;
        height: 140px;
    }
    .custom-gallery-container {
        gap: 1rem;
        padding: 1rem 0;
    }
}

@media (max-width: 600px) {
    .custom-gallery-item {
        width: 140px;
        height: 95px;
    }
}






.testimonial-section {
  padding: 80px 20px;
  background: #f9f9f9;
  position: relative;
  
}

.testimonial-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.6rem;
  position: relative;
}

.testimonial-header h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #d4af37; /* gold accent */
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

.testimonial-header p {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
}

/* Slider Layout */
.testimonial-slider {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 1rem;
}

.slider-btn {
  background: #444f39;
  color: white;
  border: none;
  padding: 0.6rem 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  user-select: none;
  flex-shrink: 0;
}

.slider-btn:hover {
  background: #303829;
  transform: scale(1.1);
}

.slider-btn:disabled {
  background-color: #ddd;
  cursor: not-allowed;
}

.testimonial-cards-wrapper {
  overflow: hidden;
  flex: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-cards {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

/* Testimonial Card */
.testimonial-card {
  background: #fff;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 2rem;
  margin: 0 10px;
  flex: 0 0 100%; /* take full width of wrapper */
  max-width: 100%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  border-color: #d4af37;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.8rem;
  color: #444;
  position: relative;
}

.testimonial-text::before {
  content: "";
  font-size: 2.5rem;
  
  position: absolute;
  left: -10px;
  top: -10px;
  font-family: serif;
}

/* Author Section */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 2px solid #d4af37;
}

.testimonial-author h4 {
  font-weight: 600;
  margin: 0;
  color: #222;
}

.testimonial-author span {
  font-size: 0.9rem;
  color: #777;
}

/* Responsive */
@media (max-width: 900px) {
  .testimonial-card {
    max-width: 90%;
    margin: 0 auto;
  }
  .testimonial-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  .testimonial-header h2 {
    font-size: 1.8rem;
  }
  .testimonial-card {
    padding: 1.5rem;
  }
  .testimonial-author img {
    width: 50px;
    height: 50px;
  }
  .testimonial-text {
    font-size: 1rem;
  }
}



.footer {
  background: #444f39;
  color: #ddd;
  padding: 60px 20px 20px;
 
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 15px;
  border-left: 3px solid #d4af37; /* gold accent */
  padding-left: 10px;
}

.footer-column p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ccc;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #d4af37;
}

.footer-logo img {
  max-width: 160px;
  margin-bottom: 15px;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  background: #b8962f;
  transform: scale(1.1);
}

/* Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.9rem;
  color: #bbb;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 40px 15px 15px;
  }
  .footer-column h3 {
    font-size: 1.1rem;
  }
  .footer-logo img {
    max-width: 140px;
  }
}




/*-----------------------ABOUT US PAGE -------------------------*/
/* Scoped About Us Page Styles */

.gm-about-page {
  background-color: #000;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  padding-top: 120px; /* to compensate for fixed header */
}

.gm-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.gm-about-hero {
  padding: 60px 0;
  text-align: center;
  color: #d4af37; /* your goldish accent */
}

.gm-title {
  font-size: 3.2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.gm-description {
  font-size: 1.25rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

.gm-about-section {
  padding: 50px 0;
  border-bottom: 1px solid #444f39; /* subtle border */
}

.gm-section-title {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #d4af37;
}

.gm-flex {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.gm-flex-reverse {
  flex-direction: row-reverse;
}

.gm-text-block {
  flex: 1 1 400px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #eee;
}

.gm-img-block {
  flex: 1 1 400px;
  max-width: 400px;
}

.gm-img-block img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.gm-bg-alt {
  background-color: #222;
  color: #d4af37;
}

/* Responsive */
@media (max-width: 768px) {

  .gm-flex,
  .gm-flex-reverse {
    flex-direction: column !important;
  }

  .gm-img-block {
    max-width: 100%;
    margin-top: 20px;
  }

  .gm-title {
    font-size: 2.4rem;
  }

  .gm-description,
  .gm-text-block {
    font-size: 1rem;
  }
}




/*------------------ABOUT US PAGE -------------------*/
/* ===== ABOUT US HERO FULL WIDTH (Unique Classes) ===== */
.mg-about-hero-section {
  width: 100vw;
  overflow: hidden;
  margin: 0;
  padding: 0;
  position: relative;
  
}

.mg-about-hero-bg {
  width: 100%;
  min-height: 510px;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
}

.mg-about-hero-dark {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  background: rgba(0,0,0,0.3); /* add 'darkness' overlay for readable text */
}

.mg-about-hero-overlay {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 8vw;
  z-index: 2;
  min-height: 290px;
}

.mg-about-hero-title {
  font-family: 'Priestacy', 'Roboto', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #fff; /* white title */
  margin-bottom: 32px;
  line-height: 1.1;
  background: none;
  text-shadow: 0 8px 32px rgba(0,0,0,0.32); /* subtle shadow for contrast */
}

.mg-about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.19rem;
  background: rgba(255,255,255,0.93);
  padding: 8px 21px;
  border-radius: 7px;
  width: fit-content;
}
.mg-breadcrumb-link a {
  color: #444f39;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.85;
  transition: color 0.2s;
}
.mg-breadcrumb-link a:hover { color: #ff9800; }
.mg-breadcrumb-divider {
  color: #d7d2ce;
}
.mg-breadcrumb-page {
  color: #333;
  opacity: 0.58;
}
.mg-breadcrumb-current {
  color: #444f39;
  font-weight: 600;
  opacity: 1;
}

@media (max-width: 900px) {
  .mg-about-hero-section { margin-top: 78px; }
  .mg-about-hero-bg { min-height: 141px; }
  .mg-about-hero-title { font-size: 2.3rem; margin-bottom: 14px; }
  .mg-about-breadcrumb { font-size: 0.98rem; padding: 5px 12px; }
  .mg-about-hero-overlay { margin-left: 6vw; }
}
@media (max-width: 600px) {
  .mg-about-hero-section { margin-top: 56px; }
  .mg-about-hero-bg { min-height: 80px; }
  .mg-about-hero-title { font-size: 1.02rem; margin-bottom: 5px; }
  .mg-about-hero-overlay { margin-left: 3vw; }
}

.gmg-info-section {
  padding: 80px ;
  background-color: white;
}

.gmg-info-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* Images Left */
.gmg-info-images {
  position: relative;
  flex: 1;
}

.gmg-img-main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 6px;
}

.gmg-img-small {
  position: absolute;
  bottom: -50px;
  right: 0;
  width: 60%;
}

.gmg-img-small img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  margin-left: 30px;
}

/* Right Content */
.gmg-info-content {
  flex: 1;
}

.gmg-sub-title {
  display: block;
  font-size: 14px;
  letter-spacing: 1px;
  color: black;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}

.gmg-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 18px;
  color: #444f39;
}

.gmg-text {
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: 15px;
}

/* Bullet Points */
.gmg-list {
  padding: 0;
  list-style: none;
  margin-bottom: 25px;
}

.gmg-list li {
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
  font-size: 15px;
  color: #444f39;
  font-weight: 700;
}

.gmg-list li:before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #444f39;
}

/* Button */
.gmg-btn {
  padding: 12px 26px;
  border: 2px solid #444f39;
  color: #444f39;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: .3s;
  
}

.gmg-btn:hover {
  background: #444f39;
  color: #fff;
}

/* Responsive */
@media(max-width:768px) {
  .gmg-info-wrapper {
    flex-direction: column;
  }
  .gmg-img-small {
    position: static;
    width: 100%;
    margin-top: 15px;
  }
}



.cc-process-section {
  padding: 90px 6%;
  text-align: center;
  background: #fff;
}

.cc-process-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 50px;
  color: #000;
}

.cc-process-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}

.cc-step {
  text-align: center;
  max-width: 180px;
}

.cc-step-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 38px;
  color: #555;
  transition: 0.6s ease-in-out;
}

/* Arrow between steps */
.cc-arrow::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #666;
  font-size: 24px;
}

/* Text under icons */
.cc-step p {
  font-size: 16px;
  line-height: 1.4;
  margin-top: 10px;
  color: #222;
}

/* Animation trigger */
.cc-step-circle.start-animate {
  background: #444f39;
  border-color: #444f39;
  color: #fff;
}

/* Responsive */
@media(max-width: 768px) {
  .cc-arrow { display: none; }
  .cc-step-circle { width: 110px; height: 110px; font-size: 32px; }
}


/* =========================
   HERO SECTION
========================= */
.cc-hero {
  position: relative;
  height: 40vh;
  background: url("assets/images/hero/6.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  
}

.cc-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.45); /* overlay for readability */
}

.cc-hero-inner {
  position: relative;
  max-width: 800px;
}

.cc-hero-inner h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 15px;
}

.cc-hero-inner p {
  font-size: 18px;
  line-height: 1.6;
}






/* Unique hb- prefix classes to prevent conflicts */
.hb-section {
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 40px 20px;
  background: #fff;
}

.hb-top {
  position: relative;
  margin-bottom: 30px;
}

.hb-title {
  font-size: 28px;
  color: #2c2c2c;
  font-weight: 700;
}

.hb-subtitle {
  color: #555;
  margin-top: 8px;
  font-size: 15px;
}

.hb-btn {
  position: absolute;
  right: 0;
  top: 0;
  background: #ee5858;
  border: none;
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.hb-btn:hover {
  background: #d84848;
}

.hb-slider-container {
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.hb-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.hb-card {
  position: relative;
  min-width: 300px;
  margin: 0 10px;
  border-radius: 10px;
  overflow: hidden;
  background: #f9f9f9;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hb-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.hb-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #4e3d5a;
  color: #fff;
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
}

.hb-card-title {
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  text-align: left;
}

.hb-arrow {
  position: absolute;
  top: 45%;
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.hb-arrow:hover {
  background: rgba(0,0,0,0.8);
}

.hb-prev { left: -10px; }
.hb-next { right: -10px; }

@media (max-width: 768px) {
  .hb-btn { position: static; margin-top: 15px; }
  .hb-slider { overflow-x: auto; scroll-behavior: smooth; }
  .hb-card { min-width: 80%; }
  .hb-arrow { display: none; }
}

/* Fix for slider arrows positioning */
.hb-slider-container {
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px; /* Add padding to prevent arrows from overlapping content */
}

.hb-slider {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

.hb-arrow {
  position: absolute;
  top: 45%;
  background: rgba(0,0,0,0.7);
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  z-index: 10; /* Ensure arrows are above the images */
}

.hb-arrow:hover {
  background: rgba(0,0,0,0.9);
}

.hb-prev { 
  left: 0; /* Position from left edge of container */
}

.hb-next { 
  right: 0; /* Position from right edge of container */
}

/* Disabled state for arrows */
.hb-arrow:disabled {
  background: rgba(0,0,0,0.3);
  cursor: not-allowed;
}



/* Our Clients Section */
.clients-section {
  padding: 80px 20px;
  background: #f8f9fa;
  text-align: center;
}

.clients-container {
  max-width: 1200px;
  margin: 0 auto;
}

.clients-header {
  margin-bottom: 50px;
}

.clients-subtitle {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #444f39;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.clients-title {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.clients-description {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Clients Slider */
.clients-slider-container {
  position: relative;
  overflow: hidden;
  margin: 40px 0;
  padding: 20px 0;
}

.clients-slider-track {
  display: flex;
  animation: clients-slide 30s linear infinite;
  gap: 40px;
}

.clients-slider-track.paused {
  animation-play-state: paused;
}

.client-logo-item {
  flex: 0 0 auto;
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  padding: 20px;
}

.client-logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.client-logo {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.client-logo-item:hover .client-logo {
  filter: grayscale(0%);
  opacity: 1;
}

/* Slider Animation */
@keyframes clients-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-180px * 6 - 40px * 6)); /* Move by 6 items */
  }
}

/* Controls */
.clients-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.client-prev,
.client-next,
.client-pause,
.client-play {
  background: #444f39;
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.client-prev:hover,
.client-next:hover,
.client-pause:hover,
.client-play:hover {
  background: #2f3627;
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .clients-section {
    padding: 60px 15px;
  }
  
  .clients-title {
    font-size: 28px;
  }
  
  .client-logo-item {
    width: 140px;
    height: 80px;
  }
  
  .client-logo {
    max-width: 100px;
    max-height: 50px;
  }
  
  @keyframes clients-slide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-140px * 6 - 40px * 6));
    }
  }
}

@media (max-width: 480px) {
  .client-logo-item {
    width: 120px;
    height: 70px;
  }
  
  .clients-slider-track {
    gap: 20px;
  }
  
  .client-logo {
    max-width: 80px;
    max-height: 40px;
  }
  
  @keyframes clients-slide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-120px * 6 - 20px * 6));
    }
  }
}


/* Design Portfolio Section */
.design-section {
  padding: 100px 20px;
  background: #fff;
  color: #333;
}

.design-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.design-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.design-subtitle {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #444f39;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.design-title {
  font-size: 48px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.2;
}

.design-intro {
  font-size: 18px;
  color: #666;
  line-height: 1.7;
}

/* Main Content Layout */
.design-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

/* Text Content */
.design-text-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.design-feature {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #444f39;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 24px;
}

.feature-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
}

.feature-content p {
  color: #666;
  line-height: 1.7;
  font-size: 16px;
}

/* Stats */
.design-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #444f39;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Design Grid */
.design-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  height: fit-content;
}

.design-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.design-item.large {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}

.design-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.design-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(68, 79, 57, 0.9));
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.design-item:hover .design-overlay {
  transform: translateY(0);
}

.design-item:hover img {
  transform: scale(1.05);
}

.design-info h4 {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.design-info p {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  margin-bottom: 8px;
}

.design-category {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

/* Design Categories */
.design-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 80px 0;
}

.category-card {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #444f39;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.category-icon {
  width: 80px;
  height: 80px;
  background: #444f39;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 32px;
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  background: #2f3627;
  transform: scale(1.1);
}

.category-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

.category-card p {
  color: #666;
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 20px;
}

.category-link {
  color: #444f39;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.category-link:hover {
  color: #2f3627;
}

.category-link i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.category-link:hover i {
  transform: translateX(4px);
}

/* Call to Action */
.design-cta {
  background: linear-gradient(135deg, #444f39 0%, #2f3627 100%);
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  color: white;
}

.cta-content h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: white;
  color: #444f39;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.cta-button:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .design-content {
    gap: 50px;
  }
  
  .design-title {
    font-size: 42px;
  }
  
  .design-categories {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .design-section {
    padding: 60px 20px;
  }
  
  .design-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .design-title {
    font-size: 36px;
  }
  
  .design-categories {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 60px 0;
  }
  
  .design-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .design-feature {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .feature-icon {
    align-self: center;
  }
  
  .design-grid {
    grid-template-columns: 1fr;
  }
  
  .design-item.large {
    aspect-ratio: 4/3;
  }
}

@media (max-width: 480px) {
  .design-header {
    margin-bottom: 50px;
  }
  
  .design-title {
    font-size: 28px;
  }
  
  .design-intro {
    font-size: 16px;
  }
  
  .feature-content h3 {
    font-size: 20px;
  }
  
  .cta-content h3 {
    font-size: 24px;
  }
  
  .cta-content p {
    font-size: 16px;
  }
  
  .design-cta {
    padding: 40px 20px;
  }
}





/*----------------------CONTACT US PAGE ------------------------*/

/* Contact Page Styles */

/* Contact Hero Section */
.contact-hero-section {
  width: 100vw;
  overflow: hidden;
  margin: 0;
  padding: 0;
  position: relative;
}

.contact-hero-bg {
  width: 100%;
  min-height: 510px;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.contact-hero-dark {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  background: rgba(0,0,0,0.4);
}

.contact-hero-overlay {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 8vw;
  z-index: 2;
  min-height: 290px;
}

.contact-hero-title {
  font-family: 'Priestacy', 'Roboto', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.1;
  text-shadow: 0 8px 32px rgba(0,0,0,0.32);
}

.contact-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.19rem;
  background: rgba(255,255,255,0.93);
  padding: 8px 21px;
  border-radius: 7px;
  width: fit-content;
}

.contact-breadcrumb-link a {
  color: #444f39;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.85;
  transition: color 0.2s;
}

.contact-breadcrumb-link a:hover { color: #ff9800; }

.contact-breadcrumb-divider {
  color: #d7d2ce;
}

.contact-breadcrumb-page {
  color: #333;
  opacity: 0.58;
}

.contact-breadcrumb-current {
  color: #444f39;
  font-weight: 600;
  opacity: 1;
}

/* Contact Info Section */
.contact-info-section {
  padding: 100px 20px;
  background: #fff;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-subtitle {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #444f39;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.contact-title {
  font-size: 48px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-description {
  font-size: 18px;
  color: #666;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.contact-card {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #444f39;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: #444f39;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 32px;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  background: #2f3627;
  transform: scale(1.1);
}

.contact-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

.contact-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 16px;
}

.contact-timing {
  font-size: 14px !important;
  color: #888 !important;
  font-style: italic;
}

.contact-link {
  color: #444f39;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-link:hover {
  color: #2f3627;
}

.contact-link i {
  transition: transform 0.3s ease;
}

.contact-link:hover i {
  transform: translateX(4px);
}

/* Studio Section */
.studio-section {
  padding: 100px 20px;
  background: #f8f9fa;
}

.studio-container {
  max-width: 1200px;
  margin: 0 auto;
}

.studio-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.studio-text {
  padding-right: 40px;
}

.studio-subtitle {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #444f39;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.studio-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.3;
}

.studio-text p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 16px;
}

.studio-features {
  margin-bottom: 40px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #444;
  font-weight: 500;
}

.feature i {
  color: #444f39;
  font-size: 14px;
}

.studio-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #444f39;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.studio-cta:hover {
  background: #2f3627;
  transform: translateY(-2px);
}

.studio-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.studio-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.studio-image:hover img {
  transform: scale(1.05);
}

.studio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(68, 79, 57, 0.9));
  padding: 30px;
  color: white;
}

.overlay-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.overlay-content p {
  opacity: 0.9;
  margin: 0;
}

/* Contact Process Section */
.contact-process-section {
  padding: 100px 20px;
  background: #fff;
}

.process-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.process-container h2 {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 60px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #444f39;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}



.process-step:last-child::after {
  display: none;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.step-content p {
  color: #666;
  line-height: 1.6;
  font-size: 15px;
}

/* FAQ Section */
.faq-section {
  padding: 100px 20px;
  background: #f8f9fa;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-subtitle {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #444f39;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.faq-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.faq-header p {
  color: #666;
  font-size: 16px;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question h4 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin: 0;
  flex: 1;
}

.faq-question i {
  color: #444f39;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer p {
  color: #666;
  line-height: 1.7;
  margin: 0;
  padding-bottom: 25px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

/* Contact CTA Section */
.contact-cta-section {
  padding: 100px 20px;
  background: white;
  color: BLACK;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-btn.primary {
  background: #444f39;
  color: WHITE;
}

.cta-btn.primary:hover {
  background: #333b2b;
  color: white;
  border-color: white;
  transform: translateY(-3px);
}

.cta-btn.secondary {
  background: transparent;
  color: BLACK;
  border-color: #444f39;
}

.cta-btn.secondary:hover {
  background: #333b2b;
  color: WHITE;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-hero-title {
    font-size: 3.5rem;
  }
  
  .studio-content {
    gap: 40px;
  }
  
  .studio-text {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .contact-hero-section {
    margin-top: 78px;
  }
  
  .contact-hero-bg {
    min-height: 400px;
  }
  
  .contact-hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .contact-hero-overlay {
    margin-left: 5vw;
  }
  
  .contact-info-section,
  .studio-section,
  .contact-process-section,
  .faq-section,
  .contact-cta-section {
    padding: 60px 20px;
  }
  
  .contact-title,
  .studio-text h2,
  .process-container h2,
  .faq-header h2 {
    font-size: 32px;
  }
  
  .studio-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .process-step::after {
    display: none;
  }
  
  .cta-content h2 {
    font-size: 32px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-hero-section {
    margin-top: 56px;
  }
  
  .contact-hero-bg {
    min-height: 300px;
  }
  
  .contact-hero-title {
    font-size: 2rem;
  }
  
  .contact-breadcrumb {
    font-size: 0.9rem;
    padding: 6px 15px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-card {
    padding: 30px 20px;
  }
  
  .faq-question {
    padding: 20px;
  }
  
  .faq-question h4 {
    font-size: 16px;
  }
  
  .cta-content h2 {
    font-size: 28px;
  }
  
  .cta-content p {
    font-size: 16px;
  }
}