/* @import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap'); */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html,
body {
  height: 100%;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f3f4f6;
  overflow-x: hidden;
}

.splash-screen {
  position: fixed;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeOut 1s ease-in-out 2s forwards;
}

.splash-logo img {
  width: 300px;
  animation: logoPop 3s ease-in-out;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes logoPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(1);
  }
}



/* side-icons CSS */
.side-icons {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
  opacity: 0;
  /* Initially hidden */
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.side-icons.is-visible {
  opacity: 1;
  visibility: visible;
}

.icon-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: #ffffff;
  color: #374151;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem 0 0 0.75rem;
  box-shadow: -4px 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  overflow: hidden;
}

.icon-link:hover {
  transform: translateX(-5px);
  box-shadow: -8px 8px 16px rgba(0, 0, 0, 0.15);
}

.icon-text {
  white-space: nowrap;
  overflow: hidden;
  max-width: 0;
  transition: max-width 0.3s ease;
  font-size: 1rem;
  font-weight: 500;
}

.icon-link:hover .icon-text {
  max-width: 150px;
  margin-right: 0.5rem;
}

.icon {
  font-size: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a5568;
}

.icon
.icon-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.icon-facebook {
  color: #1877F2;
}

.icon-contact {
  color: #e42121;
}



/* Google Rating CSS */
.google-rating-widget {
  position: fixed;
  left: 0;
  bottom: 2rem;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0.75rem 0.75rem 0;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  text-decoration: none;
  color: #374151;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.google-rating-widget.is-visible {
  opacity: 1;
  visibility: visible;
}

.rating-stars {
  color: #f5b041;
  font-size: 1rem;
  margin-right: 0.5rem;
}

.rating-text {
  font-size: 0.875rem;
  font-weight: 600;
}

/* brand-carousel */
.brand-carousel {
  overflow: hidden;
  padding: 30px 0;
  background: #212121;
}

.brand-track {
  display: flex;
  gap: 50px;
  align-items: center;
}

.brand {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand img {
  height: 110px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0;
  transform: scale(0.4);
  transition: transform 0.1s ease;
}

.brand img:hover {
  transform: scale(2);
}

 @media (max-width: 640px) {
  .brand-carousel{
  padding: 12px;
        height: 12%;
        position: relative;
        top: 0%;
  }
  .brand img{
     height: 7dvh;
  }
  .brand-track{
    gap: 25px;
  }
}
/* precision */
/* .precision-section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #fff;
  overflow: hidden;
}

.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  max-width: 1200px;
}

.text-content {
  flex: 1;
  padding-right: 40px;
}

.title {
  font-size: 3rem;
  font-family: 'Georgia', serif;
  color: #212121;
  font-weight: 700;
  padding: 0px 36px;
}

.paragraph {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  padding: 22px 30px;
  letter-spacing: 1px;
  font-weight: 100;
}

.image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.gsap-img {
  width: 100%;
  height: auto;
}

.title span,
.paragraph span {
  display: inline-block;
  white-space: pre;
}

@media (max-width: 768px) {
  .precision-section {
    height: auto;
    padding: 40px 20px;
    flex-direction: column;
    text-align: center;
  }

  .content-wrapper {
    flex-direction: column;

    width: 100%;
    padding: 0;
  }

  .text-content {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .title {
    font-size: 2.5rem;
    padding: 0;
  }

  .paragraph {
    padding: 10px 0;
    font-size: 1rem;
  }

  .image-wrapper {
    justify-content: center;
    width: 90%;
  }

  .gsap-img {
    max-width: 100%;
  }
}*/

 .design-section {
          min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 20px;
    background: #ffffff;
    padding: 40px;
    box-sizing: border-box;
        }

        .design-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding: 20px;
                margin-left: 20%;
        }

        .design-title {
               font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #212121;
        }

        .design-list {
            list-style: none;
            padding: 0;
            font-size: 1.2rem;
            line-height: 2;
        }

        .design-list-item {
            font-weight: 500;
            color: #555;
        }

        .design-image-container {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        
        .design-image {
            width: 100%;
            height: auto;
            border-radius: 12px;
            /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
        }

        @media (max-width: 768px) {
            .design-section {
                grid-template-columns: 1fr;
                grid-template-rows: auto auto;
                padding: 20px;
            }
        }
/* New CSS for the card section */
.card-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
padding: 85px 37px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Style for the container of all three cards in a single row */
.all-cards-row {
  display: flex;
  flex-direction: row; /* Display cards in a row */
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.card-section {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  flex: 1 1 300px;
}

.card-img {
  width: 100%;
  height: 450px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease-in-out;
}

/* Overlay for the cards */
.card-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.0);
  transition: background-color 0.5s ease-in-out;
}

/* On hover, change the overlay background and scale the image */
.card-section:hover::after {
  background-color: rgba(0, 0, 0, 0.4);
}

.card-section:hover .card-img {
  transform: scale(1.05);
}

.card-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

/* On hover, show the text */
.card-section:hover .card-text {
  opacity: 1;
}

/* about us */
.about-section {
  min-height: 100vh;
  /* allow scrolling for effect */
  position: relative;
  transition: background-color 0.6s ease;
}

.about-title {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  font-family: "Helvetica Neue", Arial, sans-serif;
  justify-content: center;
}

.about-title h1 {
  font-size: 8rem;
  font-weight: 500;
  letter-spacing: 10px;
  color: #212121;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
  /* This is animated by GSAP on desktop */
  opacity: 0; 
}

.about-image img {
  height: auto;
  max-width: 55%;
  margin-left: 15%;
  border-radius: 12px;
}

.about-text {
  max-width: 500px;
}

.about-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 900;
  line-height: 52px;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.7;
  /* max-width: 85%; */
  color: #cacaca;
}

/* default state */
.about-section {
  background: #fff;
  color: #000;
  transition: background-color 0.5s ease, color 0.5s ease;
}

/* dark mode when .about-content is active */
.about-section.dark-bg {
  background: #000;
  color: #fff;
}

/* Mobile responsiveness without touching existing structure */
@media (max-width: 1024px) {
  .about-content {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
    height: auto;
  }

  .about-image img {
    max-width: 100%;
    height: auto;
    margin-left: 0;
  }

  .about-text {
    max-width: 100%;
  }
}

/* NOTE: I fixed your nested media query here */
@media (max-width: 768px) {
  /* --- THIS IS THE FIX ---
    Make content visible by default on mobile, 
    since animations will be disabled.
  */
  .about-content {
    opacity: 1;
  }
  
  .about-title {
    height: auto;
    padding: 3rem 1rem;
  }

  .about-title h1 {
    font-size: 3rem;
    text-align: center;
    line-height: 1.2;
  }

  .about-text p {
    font-size: 1rem;
    font-weight: 500 !important;
    color: #2c2c2c !important ;
  }
}

@media (max-width: 480px) {
  .about-title h1 {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }
}

/* services */

.h-heading {
      text-align: center;
   padding: 15px;
    }

    .h-heading h1 {
     font-size: 53px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #212121;
    padding: 20px;
    }

  /* .hover-gallery {
      display: flex;
    gap: 15px;
    height: 100vh;
    overflow: hidden;
    padding: 28px;
    box-sizing: border-box;
}

.panel {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
  filter: grayscale(50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: flex 0.6s ease, filter 0.6s ease;
  will-change: transform;
  border-radius: 0;
  overflow: hidden;
}



    .panel:hover {
      flex: 5;
      filter: grayscale(0%);
    }

    .panel:not(:hover) {
      flex: 0.8;
    }

    .panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.35);
      z-index: 0;
      transition: background 0.3s ease;
    }

    .panel:hover::before {
      background: rgba(0, 0, 0, 0.15);
    }

    @media(max-width: 640px){
      .panel {
        height: 50%;
      }
      .panel:hover .text{
        font-size: 1.1rem;
      }
    } */

    .hover-gallery {
display: flex;
gap: 12px;
padding: 16px;
}


.panel {
flex: 1 1 calc(33.333% - 12px);
height: 70vh;
background-size: cover;
background-position: center;
border-radius: 8px;
position: relative;
cursor: pointer;
transition: all 0.5s ease;
filter: grayscale(50%);
display: flex;
align-items: center;
justify-content: center;
}


.panel.active {
flex: 1 1 100%;
height: 70vh;
filter: grayscale(0%);
z-index: 10;
}


.panel::before {
content: '';
position: absolute;
inset: 0;
background: rgba(0,0,0,0.4);
border-radius: 8px;
transition: background 0.3s ease;
}


.panel.active::before { background: rgba(0,0,0,0.15); }


.text {
position: relative;
z-index: 1;
font-size: 1.4rem;
background: rgba(0,0,0,0.4);
padding: 10px 18px;
border-radius: 6px;
text-transform: uppercase;
}
  
    /* Text styles */
    .text {
      position: absolute;
      transform: rotate(0deg) translateY(20px);
      font-size: 22px;
      font-weight: 700;
      color: #fff;
      z-index: 1;
      opacity: 0.8;
      transition: all 0.7s cubic-bezier(0.25, 1, 0.3, 1);
      text-shadow: 0 2px 10px rgba(0,0,0,0.6);
    }


    /* slide */
     .work-section {
            padding: 0px 20px;
            background-color: #f3f4f6;
        }

        .work-container {
            /* max-width: 1200px; */
            margin: 0 auto;
        }

        .work-header { 
            text-align: left;
            margin-left: 39px;
            margin-top: 31px;
            display: flex;
            align-items: center; /* Align items for better mobile view */
        }
        
        .work-title { 
            font-size: 4.5rem;
            margin-left: 35px;
            font-weight: bold;
        }
        
        .work-subtitle { 
            font-size: 0.9rem;
            font-weight: 500;
            max-width: 35%;
            margin-left: 40px;
            margin-top: 20px;
            line-height: 1.6;
        } 

        /* Slider base */
        .slider {
            width: 100%;
            overflow: hidden;
            margin: 20px 0;
            will-change: transform;
        }

        .slider-inner {
            display: flex;
            width: max-content;
            will-change: transform;
        }

        .slider-inner img {
            width: 253px;
            height: 466px;
            object-fit: cover;
            margin: 13px;
            transition: transform 0.2s;
            will-change: transform;
        }

        .slider-inner img:hover {
            transform: scale(1.1);
            z-index: 1;
        }

        /* Responsive */
        @media(max-width: 1200px) {
            .slider-inner img { width: 250px; height: 420px; }
        }
        
        @media(max-width: 1024px) {
            .slider-inner img { width: 200px; height: 350px; }
            .work-title { font-size: 3.5rem; }
            .work-subtitle { max-width: 50%; }
            .work-header { flex-direction: column; text-align: center; align-items: center;}
            .work-title, .work-subtitle { margin: 10px 0; }
        }
        
        @media(max-width: 768px) {
            .slider-inner img { width: 150px; height: 260px; }
            .work-title { font-size: 2.5rem; }
            .work-subtitle { max-width: 80%; }
        }

        /* theme */

        /* Main Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 0;
        }

        /* Grid Layout for Cards */
        .theme-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        /* Responsive grid for smaller screens */
        @media (max-width: 768px) {
            .theme-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Theme Item Card Styling */
        .theme-item {
            background-color: #ffffff;
            padding: 1rem;
            border-radius: 0.75rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .theme-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }

        .theme-item-content {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .theme-item img {
            width: 4rem;
            height: 4rem;
            border-radius: 0.75rem;
            object-fit: cover;
        }

        .theme-item span {
            font-size: 1.25rem;
            font-weight: 500;
        }

        .arrow-icon {
            width: 1.5rem;
            height: 1.5rem;
            color: #9ca3af;
            transform: rotate(0deg);
            transition: transform 0.3s ease;
        }

        /* Gallery Container */
        .gallery-container {
            grid-column: 1 / -1; /* This makes the gallery span all columns of the grid */
            display: none;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 1rem; /* Adjust margin to be closer to the card */
            padding: 1rem;
            border-radius: 0.75rem;
            background-color: #e5e7eb;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: max-height 0.8s ease-in-out, opacity 0.8s ease-in-out;
            position: relative;
        }

        /* State for an open gallery */
        .gallery-container.open {
            display: grid;
            max-height: 1000px;
            opacity: 1;
        }

        /* Responsive gallery grid */
        @media (max-width: 768px) {
            .gallery-container {
                grid-template-columns: 1fr;
            }
        }
        
        .gallery-img {
            width: 100%;
            height: 266px;
            object-fit: cover;
            border-radius: 0.75rem;
        }

        /* General Heading and Paragraph Styling */
        h1 {
            font-size: 2.25rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        p {
            font-size: 1.125rem;
            color: #6b7280;
            margin-bottom: 1.5rem;
        }

        .hide-button {
            position: absolute;
            top: 0.75rem;
            right: 0.75rem;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            color: #4b5563;
        }

        .hide-button svg {
            width: 1.5rem;
            height: 1.5rem;
        }

        /* statue */
.animated-section {
    /* height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Glowing Background Effect */
.glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px; /* Size of the glow */
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}
/* ===================================================================== */
/* Main content container */
.content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 40px 0;
    flex-wrap: wrap;
}

/* Statue Section */
.statue-container {
    width: 50%;
    text-align: right;
    padding-right: 20px;
}

.statue-img {
    max-width: 450px;
    width: 100%;
    height: auto;
    display: inline-block;
}

/* Quote Section */
.quote-container {
    width: 50%;
    text-align: left;
    padding-left: 20px;
}

.quote-text {
    font-style: italic;
    font-size: 1.5em;
    line-height: 2.2rem;
    color: #333;
    font-family: 'Georgia', serif;
}

/* =============== Responsive Design =============== */

/* Tablets */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .statue-container,
    .quote-container {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .statue-img {
        max-width: 350px;
    }

    .quote-text {
        font-size: 1.3em;
        line-height: 2rem;
    }
}

/* Mobile Devices */
@media (max-width: 600px) {
    .content-wrapper {
        padding: 20px 10px;
    }

    .statue-img {
        max-width: 280px;
    }

    .quote-text {
        font-size: 1.1em;
        line-height: 1.8rem;
        padding: 0 10px;
    }
}


/* ====================================================== */
/* core */

 /* --- Main Page Button Styles --- */
        .container {
            margin-top: 4rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }
        
        .pill-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            width: 100%;
            overflow: hidden; /* Prevent horizontal scrolling */
        }
        
        /* Flexbox properties for a single-row fluid layout */
        .pill-button {
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 9999px;
            padding: 0.5rem 1rem; /* Adjusted padding to allow for shrinking */
            height: 129px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            flex-grow: 1; /* Allow the pills to grow and shrink */
            flex-basis: 0; /* Ensures even distribution of space */
            min-width: 0; /* Prevents overflow */
            font-size: 1.5rem; /* Base font size */
            white-space: nowrap;
        }

        /* Adjust font size on smaller screens to prevent overflow */
        @media (max-width: 768px) {
            .pill-button {
                font-size: 1rem;
            }
        }
        
        .clickable-pill:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        
        .text-pill {
            background-color: #ffffff;
            color: #334155; /* Slate 700 */
            font-weight: 600;
        }

        .image-pill {
            position: relative;
            overflow: hidden;
            background-color: #475569;
        }
        
        .image-pill img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.85;
        }

        .image-pill span {
            position: relative;
            z-index: 10;
            color: #ffffff;
            font-weight: 600;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
        }
        
        .arrow-pill {
            background-color: #3b3c43;
    color: #fff;
    font-size: 5rem;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    padding: 0 1.5rem;
    flex-grow: 0;
    min-width: 200px;
        }
        
        /* --- Full-screen Overlay & Infographic Styles --- */
        .overlay {
           position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
   background-color: rgb(255 255 255 / 51%);
    display: flex
;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out;
    z-index: 100;
        }

        .overlay.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .infographic-wrapper {
           position: relative;
    width: 100%;
    max-width: 1200px;
    padding: 3rem 2rem;
    background-color: #ffffff17;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    max-height: 90vh;
    overflow-y: auto;
        }

        .main-content-grid {
            display: grid;
            grid-template-columns: 1fr;
            grid-template-rows: auto auto;
            gap: 2rem;
            position: relative;
            z-index: 10;
        }

        @media (min-width: 768px) {
            .main-content-grid {
                grid-template-columns: 1fr 1.5fr;
                grid-template-rows: 1fr;
                gap: 5rem;
            }
        }

        .circle-container {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }

        .infographic-circle {
            width: 250px;
            height: 250px;
            background-color: #212121; /* Slate 700 */
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 1rem;
            position: relative;
        }

        .circle-icon {
            position: absolute;
            top: 1rem;
            left: 1rem;
            width: 32px;
            height: 32px;
            color: #6a6a6a; /* Slate 500 */
        }

        .circle-text {
            font-size: 1.25rem;
            font-weight: 700;
            color: #f1f5f9; /* Slate 100 */
            text-transform: uppercase;
        }

        .circle-description {
            font-size: 0.875rem;
            color: #cbd5e1; /* Slate 300 */
            margin-top: 0.5rem;
            line-height: 1.4;
        }

        .pills-container {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            justify-content: center;
        }

        .pill-item {
            position: relative;
            display: flex;
            align-items: center;
            cursor: pointer;
        }
        
        /* Indent pills 2 and 4 */
        .pill-item:nth-child(2), .pill-item:nth-child(4) {
            margin-left: 2rem;
        }

        .pill-number {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
            background-color: #212121; /* Slate 600 */
            color: #f1f5f9; /* Slate 100 */
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 700;
            font-size: 1rem;
            border: 2px solid #334155; /* Slate 700 */
        }

        .pill-content {
            background-color: #f1f5f9; /* Slate 100 */
            color: #334155; /* Slate 700 */
            padding: 1rem 1.5rem;
            padding-left: 2.5rem;
            border-radius: 9999px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            width: 100%;
            transition: transform 0.2s ease-in-out;
        }
        
        .pill-item:hover .pill-content, .pill-item:active .pill-content {
            transform: scale(1.03);
        }

        .pill-title {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .pill-description {
            font-size: 0.75rem;
            font-weight: 400;
            line-height: 1.4;
            color: #64748b; /* Slate 500 */
        }
        
        .designer-credit {
            position: absolute;
            bottom: 1rem;
            right: 2rem;
            font-size: 0.75rem;
            color: #444444; /* Slate 400 */
        }
        
        /* Close Button */
        #closeBtn {
            position: absolute;
            top: 2rem;
            right: 2rem;
            background-color: transparent;
            color: #212121;
            font-size: 2.5rem;
            border: none;
            cursor: pointer;
            z-index: 110;
            transition: transform 0.2s;
        }
        
        #closeBtn:hover {
            transform: rotate(90deg);
        }
        /* marquee */

        .text-slider-wrapper {
            /* max-width: 1200px; */
            width: 100%;
            margin: 0 auto;
        }
        
        .line {
            width: 100%; /* Now takes up 100% of the wrapper's width */
            height: 1px;
            background-color: #A0A0A0;
            margin: 1.2rem 0; /* Adjusted margin */
        }

        .marquee-container {
            width: 100%;
            white-space: nowrap;
            /* overflow: hidden; */
        }

        .marquee-text {
            display: inline-block;
    font-size: 1.15rem;
    font-weight: 100;
    color: #212529;
    animation: marquee 35s linear infinite;
    padding-left: 100%;
        }
        
        .services-text {
            margin: 0 1.5rem;
        }

        @keyframes marquee {
            0%   { transform: translate(0, 0); }
            100% { transform: translate(-100%, 0); }
        }

/* video */
  .section-container {
            margin: auto;
            padding: 2rem;
        }

        .header-container {
          text-align: center;
            align-items: center;
            margin-bottom: 2rem;
            padding: 0 1rem;
        }

        .header-title {
            font-size: 3.25rem; /* text-4xl */
            font-weight: 700; /* font-bold */
            color: #212121;
        }

        .button-container {
            display: flex;
            gap: 1rem; /* space-x-4 */
        }

        .nav-btn {
            padding: 0.75rem; /* p-3 */
            background-color: #ffffff; /* bg-white */
            color: #374151; /* text-gray-800 */
            border-radius: 9999px; /* rounded-full */
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); /* shadow-lg */
            transition-property: transform, box-shadow; /* transition-transform */
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); /* transition-all */
            transition-duration: 300ms; /* duration-300 */
            border: none;
            cursor: pointer;
        }

        .nav-btn:hover {
            transform: scale(1.05); /* hover:scale-105 */
            box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.2), 0 8px 10px -6px rgb(0 0 0 / 0.2);
        }

        .nav-btn:active {
            transform: scale(0.95); /* active:scale-95 */
        }

        .nav-btn:focus {
            outline: 2px solid transparent;
            outline-offset: 2px;
            box-shadow: 0 0 0 2px rgba(156, 163, 175, 1); /* focus:ring-2 focus:ring-gray-400 */
        }

        /* Video container styles */
        .video-container {
            display: flex;
            overflow-x: auto;
            /* Scroll snapping is removed to allow programmatic scrolling with buttons */
            scroll-behavior: smooth;
            gap: 1.5rem; /* space-x-6 */
            padding-bottom: 1rem; /* pb-4 */
        }

        /* Hide scrollbar for Webkit browsers (Chrome, Safari) */
        .video-container::-webkit-scrollbar {
            display: none;
        }

        /* Hide scrollbar for Firefox and IE */
        .video-container {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        
        /* Individual card styles */
        .card-item {
            flex-shrink: 0;
            width: 100%;
            scroll-snap-align: start;
        }

        @media (min-width: 640px) {
            .card-item {
                width: 50%; /* sm:w-1/2 */
            }
        }

        @media (min-width: 768px) {
            .card-item {
                width: 33.333333%; /* md:w-1/3 */
            }
        }

        @media (min-width: 1024px) {
            .card-item {
                width: 25%; /* lg:w-1/4 */
            }
        }
        
        .card {
            background-color: #fff; /* bg-white */
            border-radius: 0.75rem; /* rounded-xl */
            box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); /* shadow-xl */
            overflow: hidden;
            transform: scale(1); /* transform */
            transition-property: transform; /* transition-all */
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); /* transition-all */
            transition-duration: 300ms; /* duration-300 */
        }
        
        .card:hover {
            transform: scale(1.05); /* hover:scale-105 */
        }

        /* The card-image class is now also applied to the iframe */
        .card-image {
            width: 100%;
            height: 480px;
            object-fit: cover;
            border-top-left-radius: 0.75rem;
            border-top-right-radius: 0.75rem;
        }
        
        .card-content {
            padding: 1rem; /* p-4 */
        }
        
        .card-title {
            font-weight: 700; /* font-bold */
            font-size: 1.125rem; /* text-lg */
            line-height: 1.75rem; /* mb-2 */
            margin-bottom: 0.5rem;
            color: #1f2937;
        }
        
        .card-description {
            font-size: 0.875rem; /* text-sm */
            line-height: 1.25rem;
            color: #4b5563; /* text-gray-600 */
        }

        /* SVG icon styles */
        .svg-icon {
            width: 1.5rem; /* w-6 */
            height: 1.5rem; /* h-6 */
        }

        /* testimonial */

         /* Testimonial container styling */
        .testimonial-container {
            background-color: #ffffff;
            border-radius: 0.75rem; /* Equivalent to rounded-xl */
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            padding: 2rem; /* Equivalent to p-8 */
            max-width: 72rem; /* Equivalent to max-w-6xl */
            width: 100%;
            margin-left: auto;
            margin-right: auto;
        }

        /* Heading styling */
        .testimonial-heading {
            font-size: 1.875rem; /* Equivalent to text-3xl */
            font-weight: 700; /* Equivalent to font-bold */
            text-align: center;
            margin-bottom: 1.5rem; /* Equivalent to mb-6 */
            color: #1f2937;
        }

        /* Video wrapper for centering and aspect ratio */
        .video-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .video-frame-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 0.5rem; /* Equivalent to rounded-lg */
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        
        .video-frame-container::before {
            content: '';
            display: block;
            padding-top: 56.25%; /* 16:9 Aspect Ratio */
        }
        
        .video-frame-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* Text testimonial styling */
        .text-testimonial-container {
            margin-top: 2rem; /* Equivalent to mt-8 */
            text-align: center;
        }

        .testimonial-text {
            color: #4b5563;
            font-style: italic;
            font-size: 1.125rem; /* Equivalent to text-lg */
            margin-bottom: 1rem; /* Equivalent to mb-4 */
        }
        
        .testimonial-author {
            font-weight: 600; /* Equivalent to font-semibold */
            color: #1f2937;
        }
        
        .testimonial-author-title {
            font-size: 0.875rem; /* Equivalent to text-sm */
            color: #6b7280;
        }

        /* magazine */


        .magazine-section {
            width: 100%;
            padding: 0 1rem;
            box-sizing: border-box;
            max-width: 1440px;
        }

        /* Header for the section */
        .header1 {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            padding: 1rem 0;
            margin-bottom: 2rem;
        }

        .header-title1 {
            font-size: clamp(3rem, 10vw, 8rem);
            font-weight: 900;
            letter-spacing: -0.05em;
            text-transform: uppercase;
        }

        /* Styles for the "COLLECTION" circles */
        .header-title-inner {
            position: relative;
        }
        .header-title-inner::before,
        .header-title-inner::after {
            content: '';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 2rem;
            height: 2rem;
            border: 2px solid #b0a694;
            border-radius: 50%;
        }
        .header-title-inner::before { left: -1.5rem; }
        .header-title-inner::after { right: -1.5rem; }
        
        .header-number {
            font-size: 3rem;
            font-weight: 700;
            color: #b0a694;
        }

        /* Horizontal scroll container and animation */
        .scrolling-container {
            width: 100%;
            overflow: hidden;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding: 2rem 0;
        }

        .scroll-track {
            display: flex;
            gap: 2rem;
            animation: scroll-left 20s linear infinite; /* Adjusted animation duration for 6 items */
        }

        /* Keyframe animation for automatic scrolling */
        @keyframes scroll-left {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }

        /* Magazine card styling */
        .magazine-card {
            min-width: 250px;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .magazine-card::before {
            content: attr(data-number);
            position: relative;
            font-size: 1.5rem;
            font-weight: 700;
            color: #b0a694;
            margin-bottom: 1rem;
        }

        .magazine-image {
            width: 100%;
            height: 350px;
            object-fit: cover;
            border-radius: 0.5rem;
        }

        .magazine-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.25rem;
            padding-bottom: 1rem;
        }

        .magazine-title {
            font-size: 1.25rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .magazine-subtitle {
            font-size: 0.875rem;
            color: #b0a694;
        }

        .view-collection-btn {
            color: #fff;
            text-transform: uppercase;
            font-size: 0.75rem;
            font-weight: 700;
            text-decoration: none;
            position: relative;
            padding-bottom: 0.25rem;
        }

        .view-collection-btn::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 1px;
            background-color: #fff;
        }

        