.our-work-section{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 475px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.our-work-section h1{
    font-family: Prata;
font-weight: 400;
font-size: 96px;
line-height: 98.95px;
text-align: center;
vertical-align: middle;
text-transform: capitalize;

    color: #fff;
    text-align: center;
}




/* Our Work: Results Stats Section */
.results-stats-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
}

.results-header {
    margin-bottom: 80px;
}

.results-title {
    font-family: 'Prata', serif;
    font-size: 82px;
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--text-color);
}

.results-lead {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    max-width: 850px;
    opacity: 0.9;
}

/* Impact Stats Grid */
.results-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Glassmorphism Card Style */
.results-stats-grid .stat-card {
    background: rgba(15, 15, 15, 1); /* Deep dark card background */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.results-stats-grid .stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(166, 49, 81, 0.4); /* Glow on hover */
}

.stat-number {
    font-family: 'Prata', serif;
    font-size: 80px;
    line-height: 1;
    margin-bottom: 20px;
    color: #fff;
}

.stat-label {
    font-family: 'Garet', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: rgba(166, 49, 81, 1); /* Brand Pink/Red */
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .results-title {
        font-size: 56px;
    }
    
    .results-stats-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}





/* Featured Project Styling */
.featured-project-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
}

.featured-eyebrow {
    color: #A30933;
    font-family: 'Garet', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 40px;
}

.featured-project-card {
   background: rgba(28, 28, 28, 1); /* Slightly lighter than pure black for depth */
    border-radius: 40px;
    padding: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Visual Styling */
.project-visual img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

/* Typography Hierarchy */
.project-category {
    font-family: 'Prata', serif;
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
    display: block;
}

.project-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.project-title .text-signature {
    font-size: 64px;
}

.project-description {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.85;
}

/* Services Grid */
.project-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 45px;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    font-family: 'Garet', sans-serif;
    font-weight: 850; /* Garet-Bold */
    font-size: 14px;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

/* Red Dot Bullets consistent with framework styles */
.service-list li::before {
    content: '●';
    color: #A30933;
    position: absolute;
    left: 0;
    font-size: 12px;
}

.view-case-study {
    font-family: 'Prata', serif;
    font-size: 20px;
    color: #A30933;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s ease;
}

.view-case-study:hover {
    border-bottom-color: #A30933;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .featured-project-card {
        padding: 40px 30px;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .project-title {
        font-size: 42px;
    }
}




/* Portfolio Filter Styling */
.portfolio-grid-section {
    padding: 80px 24px;
    background-color: #000;
}

.portfolio-filter {
    gap: 25px;
}

.portfolio-filter .nav-item .nav-link {
    background: transparent;
    border: none !important;
    color: #fff;
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 16px;
    padding: 0 0 5px 0;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.portfolio-filter .nav-item .nav-link.active {
    opacity: 1;
    color: #A30933; /* Brand Red */
    border-bottom: 1.5px solid #A30933;
}

.portfolio-filter .nav-item .nav-link:hover {
    opacity: 1;
}

/* 3x3 Grid Layout */
.portfolio-layout-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 82px;
    row-gap: 68px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Torn Paper / Logo Card Styling */
.portfolio-item-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}



.portfolio-item-wrap img {
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
}

.portfolio-item-overlay{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all 0.3s ease;
}
.portfolio-item-overlay h3{
    color: #fff;
    font-family: "Prata", Sans-serif;
    font-weight: 600;
    text-align: center;
    font-size: 18px;
}


.portfolio-item-wrap:hover .portfolio-item-overlay{
    opacity: 1;
}




/* Animation states */
.portfolio-item-wrap {
    opacity: 1;
    transform: scale(1);
    transition: 
        opacity 0.4s ease, 
        transform 0.4s ease;
}

/* When hiding */
.portfolio-item-wrap.hide {
    opacity: 0;
    transform: scale(0.95);
    filter: blur(4px);
}

/* When showing */
.portfolio-item-wrap.show {
    opacity: 1;
    transform: scale(1);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .portfolio-layout-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-filter {
        overflow-x: auto;
        justify-content: flex-start !important;
        padding-bottom: 15px;
    }
    
    .portfolio-filter::-webkit-scrollbar {
        height: 2px;
    }

    .portfolio-layout-grid {
        grid-template-columns: 1fr;
    }
}








/* Testimonials Section Styling */
.testimonials-section {
  padding: 100px 24px;
  background-color: var(--body-bg);
}

.testimonials-header {
  margin-bottom: 70px;
}

.testimonials-header .eyebrow {
  font-family: "Garet", sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  color: #F60043;
}

.testimonials-title {
  font-family: "Prata", serif;
  font-size: 64px;
  margin-top: 10px;
  max-width: 475px;
  margin: 0 auto;
}

.testimonials-slider {
  display: block;
  margin: 0 -20px;
  /* Offset the slide margins */
}

.testimonial-card {
  background: rgba(26, 26, 26, 1);
  border: 5.32px solid rgba(32, 32, 32, 0.93);
  border-radius: 20px;
  padding: 48px;
  min-height: 420px;
  position: relative;
  display: flex !important;
  flex-direction: column;
  /* margin: 0 20px;  Removed from here, applied to slick-slide instead */
}

.testimonial-card > img {
  width: 120px;
}

.testimonial-text {
  flex-grow: 1;
}

.testimonial-card p {
  font-family: "Garet";
  font-weight: 300;
  font-size: 16px;
  line-height: 27.59px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.testimonial-author img {
  width: 87px;
  height: 87px;
}

.testimonial-author strong {
  font-family: "Poppins";
  font-weight: 600;
  font-style: SemiBold;
  font-size: 23px;
  line-height: 26.97px;
  letter-spacing: -2%;
  text-transform: capitalize;
}

.testimonial-author .designation {
    font-family: "Garet", sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 27.59px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 16px;
}

.testimonials-cta {
  text-align: center;
  margin-top: 70px;
}

.testimonials-slider .slick-track {
  display: flex !important;
}

.testimonials-slider .slick-slide {
  height: inherit !important;
  margin: 0 40px; /* Creates the 80px gap */
}

.testimonials-slider {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .testimonials-slider {
    margin: 0;
  }
  .testimonials-section {
    padding: 70px 24px;
  }
  .testimonials-header {
    margin-bottom: 40px;
  }
  .testimonials-title {
    font-size: 42px;
  }

  .testimonial-card {
    width: 100%;
    padding: 24px;
    min-height: auto;
  }

  .testimonial-card > img {
    width: 60px;
  }

  .testimonial-author img {
    width: 60px;
    height: 60px;
  }

  .testimonial-author strong {
    font-size: 16px;
  }

  .testimonial-text p {
    font-size: 14px;
  }

  .testimonial-text p:last-child {
    margin-bottom: 0;
  }

  .testimonial-author {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 50px 20px;
  }
  .testimonials-header {
      margin-bottom: 30px;
  }
  .testimonials-title {
    font-size: 32px;
  }
  .testimonials-slider .slick-slide {
      margin: 0 10px;
  }
}

/* --- Comprehensive Responsiveness --- */
@media (max-width: 1024px) {
    .our-work-section {
        height: 350px;
    }
    .our-work-section h1 {
        font-size: 72px;
        line-height: 80px;
    }
    .stat-number {
        font-size: 64px;
    }
    .stat-label {
        font-size: 20px;
    }
    .project-title .text-signature {
        font-size: 48px;
    }
    .view-case-study {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .our-work-section {
        height: 250px;
    }
    .our-work-section h1 {
        font-size: 48px;
        line-height: 56px;
    }
    .results-stats-section {
        padding: 60px 20px;
    }
    .results-header {
        margin-bottom: 40px;
    }
    .results-title {
        font-size: 36px;
    }
    .results-lead {
        font-size: 16px;
    }
    .stat-number {
        font-size: 48px;
    }
    .stat-label {
        font-size: 16px;
    }
    .results-stats-grid .stat-card {
        padding: 40px 20px;
    }
    
    .featured-project-section {
        padding: 60px 20px;
    }
    .featured-project-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    .project-category {
        font-size: 16px;
    }
    .project-title {
        font-size: 32px;
    }
    .project-title .text-signature {
        font-size: 36px;
    }
    .project-description {
        font-size: 14px;
    }
    .project-grid {
        gap: 30px;
    }
    .service-list li {
        font-size: 13px;
    }
    .view-case-study {
        font-size: 16px;
    }

    .portfolio-grid-section {
        padding: 50px 20px;
    }
    
    .portfolio-layout-grid {
        column-gap: 20px;
        row-gap: 30px;
    }
    
    .portfolio-item-overlay h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .our-work-section h1 {
        font-size: 36px;
        line-height: 42px;
    }
    .results-title {
        font-size: 28px;
    }
    .stat-number {
        font-size: 40px;
    }
    .project-title {
        font-size: 28px;
    }
    .project-title .text-signature {
        font-size: 32px;
    }
    .project-services-grid {
        grid-template-columns: 1fr;
    }
}



