* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Playfair Display', serif;
  cursor: none !important;
}

body {
  /* background: url('assets/printing.png'); */
   background: url('assets/printing.png');
              
  color: #000;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}


.custom-cursor {
      position: fixed;
      width: 20px;
      height: 20px;
      background: black;
      border-radius: 50%;
      pointer-events: none;
      transform: translate(-50%, -50%);
      z-index: 2000;
      transition: transform 0.15s ease, background 0.3s ease, opacity 0.3s;
    }

    .custom-cursor.hover {
      transform: translate(-50%, -50%) scale(1.5);
      background: #555;
      opacity: 0.7;
    }

    header, nav, .hero, .down-arrow {
      will-change: transform, opacity;
    }
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: url('') center/cover no-repeat;
  background-attachment: fixed;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.116);
  color: #000;
}
.header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.164); /* soften mural */
  backdrop-filter: blur(2px);
  z-index: 0;
}
header > * {
  position: relative;
  z-index: 2;
}


.logo {
  font-weight: bold;
  font-size: 1.8rem;
  cursor: pointer;

}
.logo img {
  height: 40px;   /* Adjust height as needed */
  width: auto;
  cursor: pointer;
}
nav {
  display: flex;
  gap: 20px;
}



.links a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    padding: 10px;
  }

.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url('assets/highness\ \(6\)-1.jpg') center/cover no-repeat;
  padding: 20px;
  color: #fff;  /* ensure text is visible on darker bg */
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.454);  /* dark overlay */
  /* backdrop-filter: brightness(0.8) blur(2px);   */
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
}


.hero h1 {
  font-size: clamp(2rem, 6vw, 5rem);
  margin-bottom: 120px;
  color:	#fdfaf5;
  animation: fadeInDown 1s ease;
  line-height: 1.2;
}

.down-arrow {
  font-size: 6rem;
  animation: bounce 2s infinite;
  color: #fdf9f9;
  cursor: pointer;
  font-family:'Playfair Display', serif;
}


@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile Styles */
@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100vw;
    background: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    display: none;
    transition: all 0.4s ease;
    z-index: 1000;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1100;
  }

  .dropdown-content {
    position: static;
    border: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  /* .dropdown.active .dropdown-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .dropdown-content a {
    background: #fff;
    border-radius: 4px;
  } */
}



/* creating-magic  */
.creating-magic {
  max-width: 1500px;
  margin: 100px auto;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
  color:#5a3e36;
}

.creating-magic.show {
  opacity: 1;
  transform: translateY(0);
}

.creating-magic h2 {
  font-size: 3.4rem;
  margin-bottom: 20px;
}
.creating-magic h2 {font-size: 3rem;
      font-weight: 700;
      margin-bottom: 3rem;
      color: #7a5731;
      position: relative;
      display: inline-block;
      letter-spacing: 1px;
      text-transform: uppercase;

    }
    .creating-magic h2::after {
      content: "";
      display: block;
      width: 80px;
      height: 3px;
      background: #b88e63;
      margin: 0.75rem auto 0;
      border-radius: 4px;
    }


.creating-magic p {
  font-size: 1.5rem;
  line-height: 1.7;
  padding: 0 20px;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .creating-magic h2 {
    font-size: 2.2rem;
  }

  .creating-magic p {
    font-size: 1rem;
  }
}

/* img slider */
.image-slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 100px auto;
  height: 90vh;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  background-color: #000; /* Prevents white flash */
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide.active img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .image-slider {
    height: 60vh;
    margin: 60px auto;
  }
}



/* what we do */

      .service-gallery {
      display: grid;
      grid-template-columns: repeat(3, minmax(280px, 1fr));
      gap: 20px;
      margin: 30px auto;
      padding: 1rem;
      max-width: 1580px;
    }

    .service-item {
      flex: 0 0 25%;
      min-height: 250px;
      background-size: cover;
      background-position: center;
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      transition: transform 0.4s ease, filter 0.4s ease;
      height: 600px;
    }

    .service-item::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0));
      z-index: 1;
    }

    .service-item:hover {
      transform: scale(1.04);
      filter: brightness(1.1);
    }
        .service-title-1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 3rem;
      color: #7a5731;
      position: relative;
      display: inline-block;
      letter-spacing: 1px;
      text-transform: uppercase;

    }
    .service-title-1::after {
      content: "";
      display: block;
      width: 80px;
      height: 3px;
      background: #b88e63;
      margin: 0.75rem auto 0;
      border-radius: 4px;
    }


    .service-item span {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(255, 255, 255, 0.9);
      padding: 12px 25px;
      font-weight: 600;
      font-size: 15px;
      color: #333;
      border-radius: 30px;
      z-index: 2;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
      width: 400px;
      text-align: center;
    }

    .service-content {
      padding: 5rem 2rem;
      /* background: linear-gradient(to bottom right, #fefcf9, #f7f1e7); */
      text-align: center;
    }

    .service-title {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 3rem;
      color: #7a5731;
      position: relative;
      display: inline-block;
      letter-spacing: 1px;
      text-transform: uppercase;
      
      

    }
    .service-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #b88e63;
  margin: 0.75rem auto 0;
  border-radius: 4px;
}


   

    .service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}




    @media (max-width: 768px) {
      .service-gallery {
        grid-template-columns: 1fr;
      }
      .service-title-1 {
    font-size: 2rem;
  }
      .service-item {
        flex: 0 0 100%;
      }
      .service-title {
        font-size: 2rem;
      }
      .service-card {
        padding: 1.2rem 1.4rem;
      }
    }

.fullscreen-image {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  margin: 100px 0;
}

.fullscreen-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  transform: translateY(0);
  transition: transform 0.1s linear;
  will-change: transform;
  pointer-events: none;
  z-index: -1;
}




/* logo sections */

    .logo-section {
      margin-top: 100px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      max-width: 1200px;
      margin: auto;
      margin-bottom: 200px;
      padding-top: 220px;
    }

    .logo-item {
      flex: 1 1 120px;
      max-width: 180px;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .logo-item.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .logo-item img {
      max-width: 100%;
      height: auto;
      object-fit: contain;
      filter: grayscale(0%);
      transition: transform 0.3s ease;
    }

    .logo-item img:hover {
      transform: scale(1.05);
    }

    @media (max-width: 768px) {
      .logo-item {
        flex: 1 1 40%;
      }
    }

    @media (max-width: 480px) {
      .logo-item {
        flex: 1 1 80%;
      }
    }



.footer-contact {
  background: linear-gradient(
                rgba(255, 255, 255, 0.333),
                rgba(255, 255, 255, 0.372)
              ),
              url('assets/paint-2.png') center/cover no-repeat;
              /* background: url('assets/printing.png'); */
  padding: 3rem 1.5rem;
  text-align: center;
  color: #222;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}



.footer-title a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.footer-title h1 {
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  display: inline-block;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}

.footer-title span {
  font-size: 2.8rem;
  margin-left: 10px;
  vertical-align: middle;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s;
}

.footer-title a:hover h1 {
  color: #000;
}

.footer-title a:hover span {
  transform: translateX(12px);
  color: #000;
}


    hr {
      margin: 2rem auto;
      width: 60%;
      border: none;
     
    }

    .footer-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      align-items: flex-start;
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid #666;
    }

    .footer-social {
      text-align: center;
    }

    .footer-social h3 {
      font-size: 1.5rem;
      margin-bottom: 0.8rem;
    }

    .social-links a {
      color: #333;
      margin: 0 10px;
      font-size: 20px;
      display: inline-block;
      transition: color 0.3s, transform 0.3s;
    }

    .social-links a:hover {
      color: #000;
      transform: scale(1.2);
    }

    .footer-address p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 8px 0;
      font-weight: 500;
      
    }

    .footer-address a {
      color: #333;
      text-decoration: none;
    }

    .footer-address a:hover {
      text-decoration: underline;
    }
    

    .reserved {
      text-align: center;
      margin-top: 20px;
      font-size: 0.9rem;
      color: #343434;
      font-family: 'Playfair Display', serif;
      font-variant-numeric: lining-nums tabular-nums;
    }
    .right-arrow{padding-bottom: 20px;}
    .footer-address {
      font-family: 'Playfair Display', serif;
      font-variant-numeric: lining-nums tabular-nums; 
      font-size: 30px; 
      line-height: 1.6; 
    }


    @media (max-width: 768px) {
      .footer-title h1 {
        font-size: 2rem;
      }

      .footer-title span {
        font-size: 2rem;
      }

      .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .social-links a {
        margin: 0 6px;
        font-size: 18px;
      }
    }


/* grid-container */
    .grid-container {
      display: grid;
      grid-template-columns: repeat(4, minmax(280px, 1fr));
      gap: 20px;
      margin: 30px;
    }

    .grid-item {
      position: relative;
      height: 240px;
      overflow: hidden;
      border-radius: 12px;
      cursor: pointer;
    }

    .grid-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .grid-item:hover img {
      transform: scale(1.05);
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      color: white;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 60%);
      padding: 1rem;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }


   /* ========================= */
/* Responsive Breakpoints */
/* ========================= */

/* Large Desktops (1280px and up) */
@media (min-width: 1280px) {
  .grid-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Medium Laptops (1024px - 1279px) */
@media (max-width: 1279px) {
  .grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablets (820px - 1023px) */
@media (max-width: 1023px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large Phones & Small Tablets (540px - 819px) */
@media (max-width: 819px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .grid-item {
    height: 220px;
  }
}

/* Small Phones (Below 540px) */
@media (max-width: 540px) {
  .grid-container {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 15px;
  }
  .grid-item {
    height: 200px;
  }
}


    /* contact us */


    .contact-section {
      background-color: #f4eee6;
      max-width: 1200px;
      margin: auto;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.174);
      position: relative;
      margin: 50px auto;
    }

    .contact-section h2 {
      text-align: center;
      margin-bottom: 20px;
      font-size: 2.5rem;
      color: #333;
    }

    .contact-info {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      text-align: center;
      margin-bottom: 30px;
    }

    .info-block {
      flex: 1 1 200px;
      margin: 10px;
      border-right:1px solid #ccc ;
      padding-right: 5px;
      font-family: 'Playfair Display', serif;
      font-variant-numeric: lining-nums tabular-nums;
      line-height: 1.6;
    }
    .info-block:nth-child(4){
      border-right: none;
    }
    .info-block i {
      font-size: 24px;
      margin-bottom: 8px;
      display: block;
      color: #000;
    }


    .info-block a{color: #000;text-decoration: none;}
    .contact-form {
      display: grid;
      gap: 15px;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 20px;
      font-size: 1rem;
    }

    .contact-form textarea {
      border-radius: 15px;
      resize: none;
      min-height: 100px;
    }

    .name-fields {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
    }

    .contact-form button {
      background-color: #000;
      color: #fff;
      padding: 12px;
      border: none;
      border-radius: 20px;
      font-size: 1rem;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .contact-form button:hover {
      background-color: #333;
    }

    .success-message {
      display: none;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: #d4edda;
      color: #155724;
      padding: 20px;
      border: 1px solid #c3e6cb;
      border-radius: 10px;
      text-align: center;
      animation: fadeInScale 0.5s ease-in-out;
    }

    @keyframes fadeInScale {
      0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
      100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    }

    @media (max-width: 600px) {
      .name-fields {
        grid-template-columns: 1fr;
      }
      .info-block{
        border-right: none;

      }
    }

   button.loading {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}

button.loading::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}



    /* gallery */
   .instagram-gallery-section {
      max-width: 1200px;
      margin: 100px auto;

    }
    

    .gallery-header {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 40px;
      display: flex;
      align-items: center;
      gap: 15px;
      color: #7a5731;
      letter-spacing: 1px;
    }
    .instagram-gallery-section .gallery-header i {
  color: #b88e63; /* or any hex, rgb, or named color */
  margin-right: 8px;
}
    

    .gallery-header i {
      font-size: 2.5rem;
      color: #c2bcb2;
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.4s ease, box-shadow 0.3s ease;
      cursor: pointer;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
      margin-bottom: 30px;
    }

    .gallery-item.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    .gallery-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .gallery-item img {
      width: 100%;
      height: 400px;
      display: block;
      object-fit: cover;
      border-radius: 12px;
      transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.08);
    }

    .lightbox {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.85);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 2000;
      display: none;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 90vh;
      border-radius: 10px;
    }

    .lightbox.active {
      display: flex;
    }

    .floating-whatsapp {
      position: fixed;
      bottom: 80px;
      right: 20px;
      z-index: 1000;
    }

    .floating-whatsapp a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 55px;
      height: 55px;
      background: #25D366;
      color: white;
      font-size: 26px;
      border-radius: 50%;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      text-decoration: none;
    }

    .back-to-top {
      position: fixed;
      bottom: 20px;
      right: 25px;
      font-size: 26px;
      cursor: pointer;
      color: #333;
      z-index: 1000;
      transition: color 0.3s;
    }

    .back-to-top:hover {
      color: #000;
    }

    @media(max-width: 768px) {
      .gallery {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media(max-width: 500px) {
      .gallery {
        grid-template-columns: 1fr;
      }

      .gallery-header {
        font-size: 1.4rem;
        gap: 10px;
      }
    }
    .view-more-container {
  margin-top: 30px;
  text-align: end;
}

.view-more-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.view-more-link:hover {
  background-color: #333;
}








/* about us */
/* about hero */


    .about-hero-section {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #000;
}

.about-hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 0;
  filter: brightness(0.7);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 20px;
}


/*  */
    .about-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      padding: 100px 6vw;
      max-width: 1600px;
      margin: auto;
      align-items: center;
    }

    .about-left {
      text-align: left;
    }

    .about-left h1 {
      font-size: 3.5rem;
      margin-bottom: 40px;
      line-height: 1.3;
      background: linear-gradient(90deg, #000, #444);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .about-left img {
      width: 100%;
      border-radius: 16px;
      object-fit: cover;
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
      transition: transform 0.5s ease, filter 0.3s ease;
    }

    .about-left img:hover {
      transform: scale(1.03);
      filter: brightness(1.05);
    }

    .about-right {
      margin-top: 200px;
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .about-box {
      background: #fff;
      padding: 30px 25px;
      border-left: 5px solid #111;
      border-radius: 12px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
      transition: transform 0.3s ease, background 0.3s ease;
    }

    .about-box:hover {
      transform: translateY(-6px);
      background-color: #f5f2ef;
    }

    .about-box h3 {
      font-size: 1.2rem;
      text-transform: uppercase;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 12px;
      color: #111;
    }

    .about-box h3 i {
      color: #c5a57a;
      font-size: 1.1rem;
    }

    .about-box p {
      font-size: 1.05rem;
      line-height: 1.8;
      color: #333;
    }
    .about-box ul {
  margin-top: 12px;
  padding-left: 20px;
  list-style-type: disc;
  color: #444;
}

.about-box ul li {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.6;
}

    @media (max-width: 992px) {
      .about-section {
        grid-template-columns: 1fr;
        padding: 80px 5vw;
      }

      .about-left h1 {
        font-size: 2.8rem;
        text-align: center;
      }

      .about-left img {
        margin-top: 30px;
      }
    }

    @media (max-width: 600px) {
      .about-left h1 {
        font-size: 2.1rem;
      }

      .about-box {
        padding: 25px 20px;
      }

      .about-box p {
        font-size: 0.95rem;
      }
    }
.about-subtext {

  font-size: 1.1rem;
  margin: 10px 0 20px;
  color: #030303;
  max-width: 600px;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .about-subtext {
    font-size: 0.95rem;
    padding-right: 10px;
  }
}




    .highness-values-section {
  padding: 90px 6vw;
  background-color: #fff;
  text-align: center;
}

.highness-values-section h2 {
  font-size: 3rem;
  margin-bottom: 60px;
  font-family: 'Playfair Display', serif;
  background: linear-gradient(90deg, #000, #444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highness-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: #fdfaf6;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  background-color: #f5f2ef;
}

.value-card i {
  font-size: 2.2rem;
  color: #c5a57a;
  margin-bottom: 18px;
}

.value-card h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #111;
}

.value-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .highness-values-section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .value-card i {
    font-size: 2rem;
  }

  .value-card h4 {
    font-size: 1.2rem;
  }

  .value-card p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .highness-values-section {
    padding: 70px 5vw;
  }

  .highness-values-section h2 {
    font-size: 1.8rem;
  }

  .value-card {
    padding: 24px 20px;
  }
}




/* faq */
.highness-faq-section {
  padding: 90px 6vw;
  /* background: #fdfaf6; */
  font-family: 'Playfair Display', serif;
  color: #111;
}

.faq-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  background: #fdfaf6;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.116);
}

.faq-content {
  flex: 1 1 500px;
}

.faq-content h2 {
  font-size: 2.8rem;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #000, #555);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 20px 0;
  text-align: left;
  color: #111;
  position: relative;
  cursor: pointer;
}

.faq-question .arrow {
  float: right;
  transition: transform 0.3s ease;
}

.faq-question.active .arrow {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.6;
  padding-bottom: 15px;
}

.faq-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .faq-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .faq-content h2 {
    font-size: 2.2rem;
  }

  .faq-question {
    font-size: 1.1rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }
}


/* team */

    .team-section {
      padding: 80px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .team-section h1 {
      font-size: 2.8rem;
      margin-bottom: 40px;
      color: #7a5731;
      position: relative;
      z-index: 1;
    }

    .team-section h1::after {
      content: '';
      width: 80px;
      height: 3px;
      background: #7a5731;
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 80px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .member-card {
      background: #fff;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.304);
      transition: all 0.4s ease;
      transform: translateY(20px);
      opacity: 0;
      animation: fadeUp 0.8s ease forwards;
    }

    .member-card:hover {
      transform: translateY(-5px) scale(1.02);
      box-shadow: 0 10px 35px rgba(0,0,0,0.12);
    }

    @keyframes fadeUp {
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .member-img {
      width: 120px;
      height: 120px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 20px;
      transition: transform 0.3s ease;
    }

    .member-card:hover .member-img {
      transform: scale(1.1);
    }

    .member-name {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 5px;
      color: #000;
    }

    .member-role {
      font-size: 0.95rem;
      color: #888;
      margin-bottom: 15px;
    }

    .member-bio {
      font-size: 0.9rem;
      color: #555;
    }

    .social-icons {
      margin-top: 15px;
    }

    .social-icons a {
      color: #c79b53;
      margin: 0 10px;
      font-size: 1rem;
      transition: color 0.3s;
      text-decoration: none;
      
    }
    .social-icons a span{
      margin-left: 5px;

    }

    .social-icons a:hover {
      color: #000;
    }

    @media (max-width: 600px) {
      .team-section h1 {
        font-size: 2rem;
      }
    }

/* whatsapp */

    .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background-color: #25d366;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
  }

  .whatsapp-float img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
  }

  @media (max-width: 768px) {
    .whatsapp-float {
      width: 48px;
      height: 48px;
      bottom: 15px;
      right: 15px;
    }

    .whatsapp-float img {
      width: 24px;
      height: 24px;
    }
  }
  /* gallery */

       .grid-wrapper {
        margin: 40px;
      display: grid;
      gap: 20px;
      grid-template-columns: repeat(6, 1fr);
      grid-auto-rows: 200px;
      grid-template-areas:
         "banner banner banner feature feature apparel"
        "banner banner banner menu menu highlight"
        "badge badge employee1 employee2 employee3 highlight"
        "custom1 custom1 custom2 custom2 custom3 custom3"
        "custom4 custom4 custom5 custom6 custom6 custom7"
        "custom8 custom8 custom8 custom10 custom10 custom11"
        "custom12 custom12 custom13 custom13 custom14 custom14";
    }
    .grid-item img {
  transition: transform 0.3s ease;
}
.grid-item:hover img {
  transform: scale(1.05);
}

    .grid-item {
      border-radius: 10px;
      overflow: hidden;
      position: relative;
      width: 100%;
      height: 100%;
    }

    .grid-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .banner { grid-area: banner; }
    .feature { grid-area: feature; }
    .apparel { grid-area: apparel; }
    .menu { grid-area: menu; }
    .highlight { grid-area: highlight; }
    .badge { grid-area: badge; }
    .employee1 { grid-area: employee1; }
    .employee2 { grid-area: employee2; }
    .employee3 { grid-area: employee3; }
    .custom1 { grid-area: custom1; }
    .custom2 { grid-area: custom2; }
    .custom3 { grid-area: custom3; }
    .custom4 { grid-area: custom4; }
    .custom5 { grid-area: custom5; }
    .custom6 { grid-area: custom6; }
    .custom7 { grid-area: custom7; }
    .custom8 { grid-area: custom8; }
    .custom10 { grid-area: custom10; }
    .custom11 { grid-area: custom11; }
    .custom12 { grid-area: custom12; }
    .custom13 { grid-area: custom13; }
    .custom14 { grid-area: custom14; }
    

    @media (max-width: 800px) {
      .grid-wrapper {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
          "banner banner"
      "feature feature"
      "apparel menu"
      "badge highlight"
      "employee1 employee2"
      "employee3 custom1"
      "custom2 custom3"
      "custom4 custom5"
      "custom6 custom7"
      "custom8 custom8"
      "custom10 custom11"
      "custom12 custom13"
      "custom14 ";
        grid-auto-rows: 200px;
      }
    }

    @media (max-width: 500px) {
      .grid-wrapper {
        grid-template-columns: 1fr;
        grid-template-areas:
          "banner"
          "feature"
          "apparel"
          "menu"
          "badge"
          "highlight"
          "employee1"
          "employee2"
          "employee3"
          "custom1"
          "custom2"
          "custom3"
          "custom4"
          "custom5"
          "custom6"
          "custom7"
          "custom8"
          "custom9"
          "custom10"
          "custom11"
          "custom12"
          "custom13"
          "custom14"
          ;
        grid-auto-rows: 200px;
      }
    }



    /* testimonial */

   

    .testimonial-section {
      max-width: 1000px;
      margin: 50px auto;
      padding: 2rem;
      background: white;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      position: relative;
    }

    .testimonial {
      display: none;
      align-items: center;
      gap: 1.5rem;
      animation: fadeSlide 1s ease-in-out;
    }

    .testimonial.active {
      display: flex;
    }

    .testimonial img {
      width: 400px;
      height: 400px;
      object-fit: cover;
      border-radius: 12px;
      flex-shrink: 0;
    }

    .testimonial-content {
      flex: 1;
    }

    .testimonial-content p {
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    .testimonial-content h3 {
      font-size: 1.2rem;
      margin-bottom: 0.3rem;
      color: #5a3e36;
    }

    .testimonial-content span {
      font-size: 0.9rem;
      color: #999;
    }

    .nav-dots {
      text-align: center;
      margin-top: 1.5rem;
    }

    .dot {
      display: inline-block;
      width: 12px;
      height: 12px;
      margin: 0 5px;
      background-color: #ccc;
      border-radius: 50%;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .dot.active {
      background-color: #5a3e36;
    }



    
    .testimonial-content .stars {
  color: #FFD700; /* gold color */
  margin-bottom: 10px; /* space before paragraph */
  font-size: 18px;

}
.testimonial-content .stars i{ text-shadow: 
    1px 1px 2px rgba(0,0,0,0.4), /* depth */
    -1px -1px 2px rgba(255,255,255,0.6); /* highlight */}

    @keyframes fadeSlide {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 768px) {
      .testimonial {
        flex-direction: column-reverse;
        text-align: center;
      }

      .testimonial img {
        margin-bottom: 1rem;
      }
    }

    @media (max-width: 480px) {
      .testimonial-section {
        margin: 20px;
      }

      .testimonial img {
        width: 70px;
        height: 70px;
      }
    }




    