@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
  }
  
  body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #1d0425;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  header {
    display: flex;
    flex-direction: column;
    padding: 24px 24px 24px 32px;
    background-color: rgb(20, 2, 26);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .logo-title {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 24px;
  }
  
  .logo-title-top {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 8px;
  }
  
  .logo-title p {
    font-size: 14px;
    color: #aaa;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
    text-align-last: left;
    width: 100%;
    padding: 0 24px;
  }
  
  .logo-title h1 {
    font-size: 24px;
    font-weight: 350;
    letter-spacing: 2px;
  }
  
  .logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
  }
  
  .desktop-nav {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 16px 0;
    position: relative;
  }
  
  .desktop-nav::before,
  .desktop-nav::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(206, 178, 237, 0.1) 0%, rgba(129, 116, 211, 0.3) 50%, rgba(206, 178, 237, 0.1) 100%);
  }
  
  .desktop-nav::before {
    top: 0;
  }
  
  .desktop-nav::after {
    bottom: 0;
  }
  
  .desktop-nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 24px;
    font-weight: 300;
    position: relative;
    transition: color 0.2s;
    padding-bottom: 2px;
    display: inline-block;
    letter-spacing: 1.5px;
    font-size: 12px;

  }
  
  .desktop-nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ceb2ed 0%, #8174d3 100%);
    transition: width 0.25s cubic-bezier(.4,2,.6,1);
    border-radius: 2px;
    margin-top: 2px;
  }
  
  .desktop-nav a:hover::after {
    width: 100%;
  }
  
  .desktop-nav a.active {
    color: #dfd0ee;
    font-weight: 700; /* Make it bold */
  }
  
  .desktop-nav a.active::after {
    display: none;
  }
  .hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 101;
  }
  
  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    margin: 6px 0;
    transition: all 0.3s ease;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgb(20, 2, 26);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  
  .mobile-nav.active {
    transform: translateX(0);
  }
  
  .mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: minmax(300px, 1fr);
    gap: 24px;
    padding: 24px;
    min-height: calc(100vh - 144px);
    width: 100%;
    align-content: start;
  }
  
  .box {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #0b0111;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    transition: filter 0.3s ease;
  }
  
  .box:hover::before {
    filter: brightness(0.35);
  }
  
  .box-large {
    grid-column: span 2;
    grid-row: span 2;
  }
  
  .box-medium {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .box-tall {
    grid-column: span 1;
    grid-row: span 2;
  }
  
  .box-small {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .box-small:nth-child(3) {
    grid-row: span 2;
  }
  
  .title {
    position: absolute;
    font-size: 18px;
    font-weight: bold;
    pointer-events: none;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    color: rgb(236, 209, 255);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 1;
    
  }

  .box:hover .title {
    opacity: 1;
    visibility: visible;
  }

  footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    background-color: rgb(20, 2, 26);
    flex-wrap: wrap;
    height: 72px;
    margin-top: auto;
    position: sticky;
    bottom: 0;
    width: 100%;
    z-index: 100;
  }
  
  footer p {
    color: #aaa;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
  }
  
  .socials a {
    margin-left: 16px;
  }
  
  .socials img {
    width: 24px;
    height: 24px;
    transition: opacity 0.2s ease;
  }
  
  .socials img:hover {
    opacity: 0.7;
  }

  main.grid {
    flex: 1 0 auto;
    display: grid;
    min-height: calc(100vh - 144px);
  }

  /* =============================== About Section =============================== */
  .about-section {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 48px;
    max-width: 1200px;
    margin: 64px auto 64px auto;
    padding: 48px 32px;
    background: rgba(40, 10, 60, 0.55);
    border-radius: 32px;
    min-height: 520px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    border: 1.5px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(10px);
  }

  .about-image {
    flex: 2 1 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-image-rect {
    width: 100%;
    height: 100%;
    max-width: none;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, rgba(255,126,179,0.12) 0%, rgba(101,228,255,0.12) 100%);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(.4,2,.6,1), box-shadow 0.25s;
  }

  .about-image-rect:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(255,126,179,0.18), 0 2px 8px rgba(101,228,255,0.10);
  }

  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    background: none;
  }

  .about-text {
    flex: 2 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 12px;
  }

  .about-text h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    font-weight: 500;
    /* background: linear-gradient(90deg, #ceb2ed 0%, #8174d3 100%); */
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; */
    text-fill-color: transparent;
    letter-spacing: 2px;
    color: #ffffff; /* Make all h2 elements white */
    text-align:left; /* Center all h2 elements */
  }

  .about-text p {
    font-size: 1.18rem;
    line-height: 1.7;
    color: #f3f3f3;
    text-align: justify;
    text-align-last: left;
    letter-spacing: 0.5px;
    font-weight: 300;
    background: rgba(255,255,255,0.03);
    padding: 18px 20px;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(101,228,255,0.04);
  }

  @media (max-width: 900px) {
    .about-section {
        flex-direction: column;
        gap: 32px;
        padding: 24px 8px;
        min-height: unset;
        border-radius: 20px;
    }
    .about-image-rect {
        width: 100%;
        max-width: 350px;
        aspect-ratio: 3/4;
        height: auto;
    }
    .about-image {
        width: 100%;
        justify-content: center;
    }
    .about-text {
        width: 100%;
        padding: 0;
    }
  }

  /* =============================== Contact Section =============================== */
  .contact-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    padding: 32px 16px;
  }

  .contact-card {
    background: rgba(40, 10, 60, 0.7);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 32px;
    padding: 56px 44px 44px 44px;
    max-width: 440px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid rgba(255,255,255,0.10);
    position: relative;
    overflow: hidden;
  }

  .contact-heading {
    font-size: 2.7rem;
    font-weight: 200;
    margin-bottom: 36px;
    background: linear-gradient(90deg, #ceb2ed 0%, #8174d3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    letter-spacing: 2px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(101,228,255,0.08);
  }

  .contact-heading span {
    background: linear-gradient(90deg, #ceb2ed 0%, #8174d3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }

  .contact-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-bottom: px;
  }

  .contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.13rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.5px;
    padding: 2px 5px;
  }

  .contact-info-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s;
    letter-spacing: 1.5px;
  }

  .contact-info-item a:hover {
    color: #ceb2ed;
  }

  .contact-icon {
    font-size: 1.3em;
    background: linear-gradient(90deg, #ceb2ed 0%, #8174d3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /*
  .contact-divider {
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, #e49cfa 0%, #65ffdb 100%);
    opacity: 0.18;
    border-radius: 2px;
    margin: 18px auto 18px auto;
  }
  */

  .contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .input-group {
    width: 100%;
    position: relative;
  }

  .input-group input,
  .input-group textarea {
    width: 100%;
    padding: 16px 20px;
    border-radius: 14px;
    border: none;
    outline: none;
    background: rgba(255,255,255,0.10);
    color: #fff;
    font-size: 1.13rem;
    font-family: inherit;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, box-shadow 0.2s, border 0.2s;
    resize: none;
    border: 1.5px solid transparent;
  }

  .input-group input:focus,
  .input-group textarea:focus {
    background: rgba(255,255,255,0.18);
    box-shadow: 0 4px 16px rgba(101,228,255,0.15);
    border: 1.5px solid #65e4ff;
  }

  .send-btn,
  .resume-download-btn,
  button,
  input[type="submit"] {
    margin-top: 8px;
    padding: 18px 0;
    width: 100%;
    border: none;
    border-radius: 0 !important;
    background: linear-gradient(90deg, #ceb2ed 0%, #8174d3 100%);
    color: #1d0425;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    cursor: pointer;
    box-shadow: 0 2px 16px 0 rgba(101,228,255,0.10), 0 1.5px 0 #fff2 inset;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.18s;
    outline: none;
    text-transform: uppercase;
  }

  .send-btn:hover,
  .resume-download-btn:hover,
  button:hover,
  input[type="submit"]:hover {
    background: linear-gradient(90deg, #8174d3 0%, #ceb2ed 100%);
    color: #fff;
    box-shadow: 0 6px 32px rgba(101,228,255,0.16);
    transform: translateY(-2px) scale(1.025);
  }

  .send-btn:active,
  .resume-download-btn:active,
  button:active,
  input[type="submit"]:active {
    box-shadow: 0 1px 4px rgba(101,228,255,0.10);
    transform: scale(0.98);
  }


  .about-accent-bar {
    width: 60px;
    height: 5px;
    border-radius: 3px;
    margin: 0 0 24px 0;
    background: linear-gradient(90deg, #ceb2ed 0%, #8174d3 100%);
    box-shadow: 0 2px 8px rgba(101,228,255,0.10);
  }

  .contact-card.minimal {
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    max-width: 440px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none;
    position: relative;
    overflow: hidden;
  }

  .contact-form.minimal-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
  }

  .input-group.minimal-group {
    position: relative;
    width: 100%;
    margin-bottom: 0;
  }

  .input-group.minimal-group input,
  .input-group.minimal-group textarea {
    width: 100%;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-size: 1.13rem;
    font-family: inherit;
    padding: 8px 0 6px 0;
    box-shadow: none;
    outline: none;
    transition: color 0.2s;
    resize: none;
    border-bottom: 2px solid rgba(255,255,255,0.18);
  }

  .input-group.minimal-group input:focus,
  .input-group.minimal-group input:not(:placeholder-shown),
  .input-group.minimal-group textarea:focus,
  .input-group.minimal-group textarea:not(:placeholder-shown) {
    background: transparent !important;
    color: #dfd0ee !important;
  }

  .input-group.minimal-group input:-webkit-autofill,
  .input-group.minimal-group input:-webkit-autofill:focus,
  .input-group.minimal-group input:-webkit-autofill:hover,
  .input-group.minimal-group textarea:-webkit-autofill,
  .input-group.minimal-group textarea:-webkit-autofill:focus,
  .input-group.minimal-group textarea:-webkit-autofill:hover {
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    box-shadow: 0 0 0 1000px transparent inset !important;
    background: transparent !important;
    color: #dfd0ee  !important;
    -webkit-text-fill-color: #dfd0ee !important;
    caret-color: #dfd0ee  !important;
    transition: background-color 5000s ease-in-out 0s;
  }

  .input-group.minimal-group input:focus + label,
  .input-group.minimal-group input:not(:placeholder-shown):not(:focus) + label,
  .input-group.minimal-group textarea:focus + label,
  .input-group.minimal-group textarea:not(:placeholder-shown):not(:focus) + label {
    top: -18px;
    font-size: 0.98rem;
    color: #a27bcf;
    font-weight: bold;
    letter-spacing: 1px;
  }

  .input-group.minimal-group label {
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 1.08rem;
    color: #bdbdbd;
    pointer-events: none;
    transition: 0.18s cubic-bezier(.4,2,.6,1);
    letter-spacing: 0.5px;
    font-weight: 300;
  }

  .input-group.minimal-group .underline {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ceb2ed 0%, #8174d3 100%);
    border-radius: 2px;
    opacity: 0.7;
    pointer-events: none;
    transform: scaleX(0);
    transition: transform 0.2s cubic-bezier(.4,2,.6,1);
  }

  .input-group.minimal-group input:focus ~ .underline,
  .input-group.minimal-group textarea:focus ~ .underline {
    transform: scaleX(1);
  }

  .send-btn.minimal-btn {
    margin-top: 8px;
    padding: 18px 0;
    width: 100%;
    border: none;
    border-radius: 18px;
    background: linear-gradient(90deg, #ceb2ed 0%, #8174d3 100%);
    color: #1d0425;
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 2px;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(101,228,255,0.10);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.18s;
  }

  .send-btn.minimal-btn:hover {
    background: linear-gradient(90deg, #8174d3 0%, #ceb2ed 100%);
    color: #fff;
    box-shadow: 0 4px 24px rgba(101,228,255,0.12);
    transform: translateY(-2px) scale(1.03);
  }

  /* =============================== Resume Section =============================== */

  .resume-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 0 32px 0;
    gap: 32px;
  }

  .resume-download-btn {
    display: inline-block;
    margin-bottom: 24px;
    padding: 16px 40px;
    font-size: 1.2rem;
    font-weight: 300;
    border-radius: 18px;
    background: linear-gradient(90deg, #ceb2ed 0%, #8174d3 100%);
    color: #1d0425;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(101,228,255,0.10);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.18s;
    letter-spacing: 2px;
  }

  .resume-download-btn:hover {
    background: linear-gradient(90deg, #8174d3 0%, #ceb2ed 100%);
    color: #fff;
    box-shadow: 0 4px 24px rgba(101,228,255,0.12);
    transform: translateY(-2px) scale(1.03);
  }

  .resume-image-wrapper {
    width: 100%;
    max-width: 900px;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
    background: rgba(40, 10, 60, 0.10);
  }

  .resume-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 24px;
    background: #fff;
  }

 

  .desktop-nav a.active,
  .mobile-nav a.active {
    color: #dfd0ee !important;
    font-weight: 700;
  }
  .desktop-nav a.active::after,
  .mobile-nav a.active::after {
    width: 100%;
    background: linear-gradient(90deg, #dfd0ee 0%, #ceb2ed 100%);
  }

  /* =============================== Project Page =============================== */
  .project-page {
    padding: 0;
    max-width: 100%;
    overflow-x: hidden;
    background-color: #1d0425;
  }

  /* =============================== Hero Section with Split Layout =============================== */
  .project-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #1d0425;
    overflow: hidden;
  }

  .hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
    position: relative;
  }

  .hero-content {
    padding: 96px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
  }

  .title-wrapper {
    margin-bottom: 48px;
  }

  .project-category {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #cbbede;
    margin-bottom: 16px;
    padding: 8px 16px;
    background: rgba(203, 190, 222, 0.1);
    border-radius: 4px;
  }

  .hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(90deg, #cbbede 0%, #dad6f4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .project-tagline {
    font-size: 20px;
    color: #aaa;
    max-width: 500px;
    line-height: 1.6;
  }

  .hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
  }

  .image-stack {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .stack-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .stack-accent {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 128, 0.1), rgba(0, 255, 255, 0.1));
    border-radius: 20px;
    z-index: 0;
  }

  /* Dynamic Image Showcase */
  .image-showcase {
    padding: 96px 24px;
    background-color: rgb(25, 5, 31);
  }

  .showcase-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
  }

  .showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
  }

  .showcase-item.large {
    grid-column: span 8;
    aspect-ratio: 16/9;
  }

  .showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }

  .showcase-item:hover img {
    transform: scale(1.05);
  }

  .showcase-item:hover .showcase-overlay {
    transform: translateY(0);
  }

  /* =============================== Project Overview with Dynamic Layout =============================== */
  .project-overview {
    padding: 96px 24px;
    background-color: rgb(20, 2, 26);
    position: relative;
  }

  .overview-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    position: relative;
  }

  .overview-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #fff;
    position: relative;
    display: inline-block;
  }

  .overview-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #cbbede 0%, #dad6f4 100%);
  }

  .overview-text p {
    font-size: 0.98rem;
    text-align: justify;
    text-align-last: left;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: none;
    position: relative;
    transition: max-height 0.3s;
  }

  .overview-text.expanded p {
    display: block;
    -webkit-line-clamp: unset;
    max-height: none;
  }

  .read-more-link {
    display: inline-block;
    text-align: left;
    margin-top: 0.5em;
    font-size: 0.92em;
  
    color: inherit;
    background: none;
    border: none;
    padding: 10px;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 400;
    transition: color 0.2s;
  }

  .read-more-link:hover {
    color: #f1c7ff;
    text-decoration: underline;
  }

  .overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-self: start;
  }

  .stat-item {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease;
  }

  .stat-item:hover {
    transform: translateY(-8px);
  }

  .stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #cbbede;
    margin-bottom: 8px;
  }

  .stat-label {
    font-size: 14px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* =============================== Interactive Process Timeline =============================== */
  .design-process {
    padding: 96px 24px;
    background-color: rgb(25, 5, 31);
  }

  .design-process h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 64px;
    color: #fff;
  }

  .process-timeline {
    max-width: 1200px;
    margin: 0 auto;
  }

  .timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 96px;
    position: relative;
  }

  .timeline-item.reverse {
    direction: rtl;
  }

  .timeline-item.reverse .timeline-content {
    direction: ltr;
  }

  .timeline-content {
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    position: relative;
  }

  .timeline-number {
    font-size: 48px;
    font-weight: 700;
    color: rgba(203, 190, 222, 0.2);
    position: absolute;
    top: -24px;
    left: 24px;
  }

  .timeline-content h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 16px;
  }

  .timeline-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
  }

  .timeline-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
  }

  .timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* =============================== Final Design Gallery =============================== */
  .final-design {
    padding: 6rem 0;
  }

  .final-design h2 {
    text-align: center;
    width: 100%;
    margin-bottom: 2rem;
  }

  .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .gallery-caption:hover {
    background: rgba(0, 0, 0, 0.9);
  }

  .gallery-main, .gallery-item {
    position: relative;
    overflow: hidden;
  }

  .gallery-main img, .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
  }

  .design-gallery {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .gallery-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
  }

  .gallery-main img {
    width: 100%;
    height: auto;
    display: block;
  }

  .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
  }

  .gallery-caption h3 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
  }

  .gallery-caption p {
    margin: 0;
    opacity: 0.9;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .gallery-item:hover img {
    transform: scale(1.05);
  }

  .gallery-item .gallery-caption {
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  }

  .gallery-item .gallery-caption h4 {
    font-size: 1.1rem;
    margin: 0;
  }


  /* =============================== Carousel Styles =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Project Gallery Styles =============================== */
  .project-gallery {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
  }

  .project-gallery h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #e5c1ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .gallery-carousel {
    position: relative;
    width: 100%;
    height: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .carousel-slide img:hover {
    transform: scale(1.02);
  }

  .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .carousel-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
  }

  .carousel-nav.prev {
    left: 20px;
  }

  .carousel-nav.next {
    right: 20px;
  }

  .carousel-nav i {
    color: white;
    font-size: 24px;
  }

  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Modal Styles =============================== */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
  }

  .modal-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
  }

  .close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
  }

  .close-modal:hover {
    color: #bbb;
  }

 

  /* =============================== Process Work Carousel Styles =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }
 

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(218, 186, 252, 0.80), rgba(233, 213, 255, 0.80));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
  }
  
  body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #1d0425;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  header {
    display: flex;
    flex-direction: column;
    padding: 24px 24px 24px 32px;
    background-color: rgb(20, 2, 26);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .logo-title {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 24px;
  }
  
  .logo-title-top {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 8px;
  }
  
  .logo-title p {
    font-size: 14px;
    color: #aaa;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
    text-align-last: left;
    width: 100%;
    padding: 0 24px;
  }
  
  .logo-title h1 {
    font-size: 24px;
    font-weight: 350;
    letter-spacing: 2px;
  }
  
  .logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
  }
  
  .desktop-nav {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 16px 0;
    position: relative;
  }
  
  .desktop-nav::before,
  .desktop-nav::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(206, 178, 237, 0.1) 0%, rgba(129, 116, 211, 0.3) 50%, rgba(206, 178, 237, 0.1) 100%);
  }
  
  .desktop-nav::before {
    top: 0;
  }
  
  .desktop-nav::after {
    bottom: 0;
  }
  
  .desktop-nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 24px;
    font-weight: 300;
    position: relative;
    transition: color 0.2s;
    padding-bottom: 2px;
    display: inline-block;
    letter-spacing: 1.5px;
    font-size: 12px;

  }
  
  .desktop-nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ceb2ed 0%, #8174d3 100%);
    transition: width 0.25s cubic-bezier(.4,2,.6,1);
    border-radius: 2px;
    margin-top: 2px;
  }
  
  .desktop-nav a:hover::after {
    width: 100%;
  }
  
  .desktop-nav a.active {
    color: #dfd0ee;
    font-weight: 700; /* Make it bold */
  }
  
  .desktop-nav a.active::after {
    display: none;
  }
  .hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 101;
  }
  
  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    margin: 6px 0;
    transition: all 0.3s ease;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgb(20, 2, 26);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  
  .mobile-nav.active {
    transform: translateX(0);
  }
  
  .mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: minmax(300px, 1fr);
    gap: 24px;
    padding: 24px;
    min-height: calc(100vh - 144px);
    width: 100%;
    align-content: start;
  }
  
  .box {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #0b0111;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    transition: filter 0.3s ease;
  }
  
  .box:hover::before {
    filter: brightness(0.35);
  }
  
  .box-large {
    grid-column: span 2;
    grid-row: span 2;
  }
  
  .box-medium {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .box-tall {
    grid-column: span 1;
    grid-row: span 2;
  }
  
  .box-small {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .box-small:nth-child(3) {
    grid-row: span 2;
  }
  
  .title {
    position: absolute;
    font-size: 18px;
    font-weight: bold;
    pointer-events: none;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    color: rgb(236, 209, 255);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 1;
    
  }

  .box:hover .title {
    opacity: 1;
    visibility: visible;
  }

  footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    background-color: rgb(20, 2, 26);
    flex-wrap: wrap;
    height: 72px;
    margin-top: auto;
    position: sticky;
    bottom: 0;
    width: 100%;
    z-index: 100;
  }
  
  footer p {
    color: #aaa;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
  }
  
  .socials a {
    margin-left: 16px;
  }
  
  .socials img {
    width: 24px;
    height: 24px;
    transition: opacity 0.2s ease;
  }
  
  .socials img:hover {
    opacity: 0.7;
  }

  main.grid {
    flex: 1 0 auto;
    display: grid;
    min-height: calc(100vh - 144px);
  }

  /* =============================== About Section =============================== */
  .about-section {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 48px;
    max-width: 1200px;
    margin: 64px auto 64px auto;
    padding: 48px 32px;
    background: rgba(40, 10, 60, 0.55);
    border-radius: 32px;
    min-height: 520px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    border: 1.5px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(10px);
  }

  .about-image {
    flex: 2 1 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-image-rect {
    width: 100%;
    height: 100%;
    max-width: none;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, rgba(255,126,179,0.12) 0%, rgba(101,228,255,0.12) 100%);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(.4,2,.6,1), box-shadow 0.25s;
  }

  .about-image-rect:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(255,126,179,0.18), 0 2px 8px rgba(101,228,255,0.10);
  }

  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    background: none;
  }

  .about-text {
    flex: 2 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 12px;
  }

  .about-text h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    font-weight: 500;
    /* background: linear-gradient(90deg, #ceb2ed 0%, #8174d3 100%); */
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; */
    text-fill-color: transparent;
    letter-spacing: 2px;
    color: #ffffff; /* Make all h2 elements white */
    text-align:left; /* Center all h2 elements */
  }

  .about-text p {
    font-size: 1.18rem;
    line-height: 1.7;
    color: #f3f3f3;
    text-align: justify;
    text-align-last: left;
    letter-spacing: 0.5px;
    font-weight: 300;
    background: rgba(255,255,255,0.03);
    padding: 18px 20px;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(101,228,255,0.04);
  }

  @media (max-width: 900px) {
    .about-section {
        flex-direction: column;
        gap: 32px;
        padding: 24px 8px;
        min-height: unset;
        border-radius: 20px;
    }
    .about-image-rect {
        width: 100%;
        max-width: 350px;
        aspect-ratio: 3/4;
        height: auto;
    }
    .about-image {
        width: 100%;
        justify-content: center;
    }
    .about-text {
        width: 100%;
        padding: 0;
    }
  }

  /* =============================== Contact Section =============================== */
  .contact-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    padding: 32px 16px;
  }

  .contact-card {
    background: rgba(40, 10, 60, 0.7);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 32px;
    padding: 56px 44px 44px 44px;
    max-width: 440px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid rgba(255,255,255,0.10);
    position: relative;
    overflow: hidden;
  }

  .contact-heading {
    font-size: 2.7rem;
    font-weight: 200;
    margin-bottom: 36px;
    background: linear-gradient(90deg, #ceb2ed 0%, #8174d3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    letter-spacing: 2px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(101,228,255,0.08);
  }

  .contact-heading span {
    background: linear-gradient(90deg, #ceb2ed 0%, #8174d3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }

  .contact-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-bottom: px;
  }

  .contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.13rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.5px;
    padding: 2px 5px;
  }

  .contact-info-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s;
    letter-spacing: 1.5px;
  }

  .contact-info-item a:hover {
    color: #ceb2ed;
  }

  .contact-icon {
    font-size: 1.3em;
    background: linear-gradient(90deg, #ceb2ed 0%, #8174d3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /*
  .contact-divider {
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, #e49cfa 0%, #65ffdb 100%);
    opacity: 0.18;
    border-radius: 2px;
    margin: 18px auto 18px auto;
  }
  */

  .contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .input-group {
    width: 100%;
    position: relative;
  }

  .input-group input,
  .input-group textarea {
    width: 100%;
    padding: 16px 20px;
    border-radius: 14px;
    border: none;
    outline: none;
    background: rgba(255,255,255,0.10);
    color: #fff;
    font-size: 1.13rem;
    font-family: inherit;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, box-shadow 0.2s, border 0.2s;
    resize: none;
    border: 1.5px solid transparent;
  }

  .input-group input:focus,
  .input-group textarea:focus {
    background: rgba(255,255,255,0.18);
    box-shadow: 0 4px 16px rgba(101,228,255,0.15);
    border: 1.5px solid #65e4ff;
  }

  .send-btn,
  .resume-download-btn,
  button,
  input[type="submit"] {
    margin-top: 8px;
    padding: 18px 0;
    width: 100%;
    border: none;
    border-radius: 0 !important;
    background: linear-gradient(90deg, #ceb2ed 0%, #8174d3 100%);
    color: #1d0425;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    cursor: pointer;
    box-shadow: 0 2px 16px 0 rgba(101,228,255,0.10), 0 1.5px 0 #fff2 inset;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.18s;
    outline: none;
    text-transform: uppercase;
  }

  .send-btn:hover,
  .resume-download-btn:hover,
  button:hover,
  input[type="submit"]:hover {
    background: linear-gradient(90deg, #8174d3 0%, #ceb2ed 100%);
    color: #fff;
    box-shadow: 0 6px 32px rgba(101,228,255,0.16);
    transform: translateY(-2px) scale(1.025);
  }

  .send-btn:active,
  .resume-download-btn:active,
  button:active,
  input[type="submit"]:active {
    box-shadow: 0 1px 4px rgba(101,228,255,0.10);
    transform: scale(0.98);
  }


  .about-accent-bar {
    width: 60px;
    height: 5px;
    border-radius: 3px;
    margin: 0 0 24px 0;
    background: linear-gradient(90deg, #ceb2ed 0%, #8174d3 100%);
    box-shadow: 0 2px 8px rgba(101,228,255,0.10);
  }

  .contact-card.minimal {
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    max-width: 440px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none;
    position: relative;
    overflow: hidden;
  }

  .contact-form.minimal-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
  }

  .input-group.minimal-group {
    position: relative;
    width: 100%;
    margin-bottom: 0;
  }

  .input-group.minimal-group input,
  .input-group.minimal-group textarea {
    width: 100%;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-size: 1.13rem;
    font-family: inherit;
    padding: 8px 0 6px 0;
    box-shadow: none;
    outline: none;
    transition: color 0.2s;
    resize: none;
    border-bottom: 2px solid rgba(255,255,255,0.18);
  }

  .input-group.minimal-group input:focus,
  .input-group.minimal-group input:not(:placeholder-shown),
  .input-group.minimal-group textarea:focus,
  .input-group.minimal-group textarea:not(:placeholder-shown) {
    background: transparent !important;
    color: #dfd0ee !important;
  }

  .input-group.minimal-group input:-webkit-autofill,
  .input-group.minimal-group input:-webkit-autofill:focus,
  .input-group.minimal-group input:-webkit-autofill:hover,
  .input-group.minimal-group textarea:-webkit-autofill,
  .input-group.minimal-group textarea:-webkit-autofill:focus,
  .input-group.minimal-group textarea:-webkit-autofill:hover {
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    box-shadow: 0 0 0 1000px transparent inset !important;
    background: transparent !important;
    color: #dfd0ee  !important;
    -webkit-text-fill-color: #dfd0ee !important;
    caret-color: #dfd0ee  !important;
    transition: background-color 5000s ease-in-out 0s;
  }

  .input-group.minimal-group input:focus + label,
  .input-group.minimal-group input:not(:placeholder-shown):not(:focus) + label,
  .input-group.minimal-group textarea:focus + label,
  .input-group.minimal-group textarea:not(:placeholder-shown):not(:focus) + label {
    top: -18px;
    font-size: 0.98rem;
    color: #a27bcf;
    font-weight: bold;
    letter-spacing: 1px;
  }

  .input-group.minimal-group label {
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 1.08rem;
    color: #bdbdbd;
    pointer-events: none;
    transition: 0.18s cubic-bezier(.4,2,.6,1);
    letter-spacing: 0.5px;
    font-weight: 300;
  }

  .input-group.minimal-group .underline {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ceb2ed 0%, #8174d3 100%);
    border-radius: 2px;
    opacity: 0.7;
    pointer-events: none;
    transform: scaleX(0);
    transition: transform 0.2s cubic-bezier(.4,2,.6,1);
  }

  .input-group.minimal-group input:focus ~ .underline,
  .input-group.minimal-group textarea:focus ~ .underline {
    transform: scaleX(1);
  }

  .send-btn.minimal-btn {
    margin-top: 8px;
    padding: 18px 0;
    width: 100%;
    border: none;
    border-radius: 18px;
    background: linear-gradient(90deg, #ceb2ed 0%, #8174d3 100%);
    color: #1d0425;
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 2px;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(101,228,255,0.10);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.18s;
  }

  .send-btn.minimal-btn:hover {
    background: linear-gradient(90deg, #8174d3 0%, #ceb2ed 100%);
    color: #fff;
    box-shadow: 0 4px 24px rgba(101,228,255,0.12);
    transform: translateY(-2px) scale(1.03);
  }

  /* =============================== Resume Section =============================== */

  .resume-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 0 32px 0;
    gap: 32px;
  }

  .resume-download-btn {
    display: inline-block;
    margin-bottom: 24px;
    padding: 16px 40px;
    font-size: 1.2rem;
    font-weight: 300;
    border-radius: 18px;
    background: linear-gradient(90deg, #ceb2ed 0%, #8174d3 100%);
    color: #1d0425;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(101,228,255,0.10);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.18s;
    letter-spacing: 2px;
  }

  .resume-download-btn:hover {
    background: linear-gradient(90deg, #8174d3 0%, #ceb2ed 100%);
    color: #fff;
    box-shadow: 0 4px 24px rgba(101,228,255,0.12);
    transform: translateY(-2px) scale(1.03);
  }

  .resume-image-wrapper {
    width: 100%;
    max-width: 900px;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
    background: rgba(40, 10, 60, 0.10);
  }

  .resume-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 24px;
    background: #fff;
  }

 

  .desktop-nav a.active,
  .mobile-nav a.active {
    color: #dfd0ee !important;
    font-weight: 700;
  }
  .desktop-nav a.active::after,
  .mobile-nav a.active::after {
    width: 100%;
    background: linear-gradient(90deg, #dfd0ee 0%, #ceb2ed 100%);
  }

  /* =============================== Project Page =============================== */
  .project-page {
    padding: 0;
    max-width: 100%;
    overflow-x: hidden;
    background-color: #1d0425;
  }

  /* =============================== Hero Section with Split Layout =============================== */
  .project-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #1d0425;
    overflow: hidden;
  }

  .hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
    position: relative;
  }

  .hero-content {
    padding: 96px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
  }

  .title-wrapper {
    margin-bottom: 48px;
  }

  .project-category {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #cbbede;
    margin-bottom: 16px;
    padding: 8px 16px;
    background: rgba(203, 190, 222, 0.1);
    border-radius: 4px;
  }

  .hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(90deg, #cbbede 0%, #dad6f4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .project-tagline {
    font-size: 20px;
    color: #aaa;
    max-width: 500px;
    line-height: 1.6;
  }

  .hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
  }

  .image-stack {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .stack-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .stack-accent {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 128, 0.1), rgba(0, 255, 255, 0.1));
    border-radius: 20px;
    z-index: 0;
  }

  /* Dynamic Image Showcase */
  .image-showcase {
    padding: 96px 24px;
    background-color: rgb(25, 5, 31);
  }

  .showcase-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
  }

  .showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
  }

  .showcase-item.large {
    grid-column: span 8;
    aspect-ratio: 16/9;
  }

  .showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }

  .showcase-item:hover img {
    transform: scale(1.05);
  }

  .showcase-item:hover .showcase-overlay {
    transform: translateY(0);
  }

  /* =============================== Project Overview with Dynamic Layout =============================== */
  .project-overview {
    padding: 96px 24px;
    background-color: rgb(20, 2, 26);
    position: relative;
  }

  .overview-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    position: relative;
  }

  .overview-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #fff;
    position: relative;
    display: inline-block;
  }

  .overview-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #cbbede 0%, #dad6f4 100%);
  }

  .overview-text p {
    text-align: justify;
    text-align-last: left;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
  }

  .overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-self: start;
  }

  .stat-item {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease;
  }

  .stat-item:hover {
    transform: translateY(-8px);
  }

  .stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #cbbede;
    margin-bottom: 8px;
  }

  .stat-label {
    font-size: 14px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* =============================== Interactive Process Timeline =============================== */
  .design-process {
    padding: 96px 24px;
    background-color: rgb(25, 5, 31);
  }

  .design-process h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 64px;
    color: #fff;
  }

  .process-timeline {
    max-width: 1200px;
    margin: 0 auto;
  }

  .timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 96px;
    position: relative;
  }

  .timeline-item.reverse {
    direction: rtl;
  }

  .timeline-item.reverse .timeline-content {
    direction: ltr;
  }

  .timeline-content {
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    position: relative;
  }

  .timeline-number {
    font-size: 48px;
    font-weight: 700;
    color: rgba(203, 190, 222, 0.2);
    position: absolute;
    top: -24px;
    left: 24px;
  }

  .timeline-content h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 16px;
  }

  .timeline-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
  }

  .timeline-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
  }

  .timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* =============================== Final Design Gallery =============================== */
  .final-design {
    padding: 6rem 0;
  }

  .final-design h2 {
    text-align: center;
    width: 100%;
    margin-bottom: 2rem;
  }

  .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .gallery-caption:hover {
    background: rgba(0, 0, 0, 0.9);
  }

  .gallery-main, .gallery-item {
    position: relative;
    overflow: hidden;
  }

  .gallery-main img, .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
  }

  .design-gallery {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .gallery-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
  }

  .gallery-main img {
    width: 100%;
    height: auto;
    display: block;
  }

  .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
  }

  .gallery-caption h3 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
  }

  .gallery-caption p {
    margin: 0;
    opacity: 0.9;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .gallery-item:hover img {
    transform: scale(1.05);
  }

  .gallery-item .gallery-caption {
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  }

  .gallery-item .gallery-caption h4 {
    font-size: 1.1rem;
    margin: 0;
  }


  /* =============================== Carousel Styles =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Project Gallery Styles =============================== */
  .project-gallery {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
  }

  .project-gallery h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #e5c1ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .gallery-carousel {
    position: relative;
    width: 100%;
    height: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .carousel-slide img:hover {
    transform: scale(1.02);
  }

  .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .carousel-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
  }

  .carousel-nav.prev {
    left: 20px;
  }

  .carousel-nav.next {
    right: 20px;
  }

  .carousel-nav i {
    color: white;
    font-size: 24px;
  }

  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Modal Styles =============================== */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
  }

  .modal-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
  }

  .close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
  }

  .close-modal:hover {
    color: #bbb;
  }

 

  /* =============================== Process Work Carousel Styles =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }
 

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(218, 186, 252, 0.80), rgba(233, 213, 255, 0.80));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
  }
  
  body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #1d0425;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  header {
    display: flex;
    flex-direction: column;
    padding: 24px 24px 24px 32px;
    background-color: rgb(20, 2, 26);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .logo-title {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 24px;
  }
  
  .logo-title-top {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 8px;
  }
  
  .logo-title p {
    font-size: 14px;
    color: #aaa;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
    text-align-last: left;
    width: 100%;
    padding: 0 24px;
  }
  
  .logo-title h1 {
    font-size: 24px;
    font-weight: 350;
    letter-spacing: 2px;
  }
  
  .logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
  }
  
  .desktop-nav {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 16px 0;
    position: relative;
  }
  
  .desktop-nav::before,
  .desktop-nav::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(206, 178, 237, 0.1) 0%, rgba(129, 116, 211, 0.3) 50%, rgba(206, 178, 237, 0.1) 100%);
  }
  
  .desktop-nav::before {
    top: 0;
  }
  
  .desktop-nav::after {
    bottom: 0;
  }
  
  .desktop-nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 24px;
    font-weight: 300;
    position: relative;
    transition: color 0.2s;
    padding-bottom: 2px;
    display: inline-block;
    letter-spacing: 1.5px;
    font-size: 12px;

  }
  
  .desktop-nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ceb2ed 0%, #8174d3 100%);
    transition: width 0.25s cubic-bezier(.4,2,.6,1);
    border-radius: 2px;
    margin-top: 2px;
  }
  
  .desktop-nav a:hover::after {
    width: 100%;
  }
  
  .desktop-nav a.active {
    color: #dfd0ee;
    font-weight: 700; /* Make it bold */
  }
  
  .desktop-nav a.active::after {
    display: none;
  }
  .hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 101;
  }
  
  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    margin: 6px 0;
    transition: all 0.3s ease;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgb(20, 2, 26);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  
  .mobile-nav.active {
    transform: translateX(0);
  }
  
  .mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: minmax(300px, 1fr);
    gap: 24px;
    padding: 24px;
    min-height: calc(100vh - 144px);
    width: 100%;
    align-content: start;
  }
  
  .box {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #0b0111;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    transition: filter 0.3s ease;
  }
  
  .box:hover::before {
    filter: brightness(0.35);
  }
  
  .box-large {
    grid-column: span 2;
    grid-row: span 2;
  }
  
  .box-medium {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .box-tall {
    grid-column: span 1;
    grid-row: span 2;
  }
  
  .box-small {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .box-small:nth-child(3) {
    grid-row: span 2;
  }
  
  .title {
    position: absolute;
    font-size: 18px;
    font-weight: bold;
    pointer-events: none;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    color: rgb(236, 209, 255);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 1;
    
  }

  .box:hover .title {
    opacity: 1;
    visibility: visible;
  }

  footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    background-color: rgb(20, 2, 26);
    flex-wrap: wrap;
    height: 72px;
    margin-top: auto;
    position: sticky;
    bottom: 0;
    width: 100%;
    z-index: 100;
  }
  
  footer p {
    color: #aaa;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
  }
  
  .socials a {
    margin-left: 16px;
  }
  
  .socials img {
    width: 24px;
    height: 24px;
    transition: opacity 0.2s ease;
  }
  
  .socials img:hover {
    opacity: 0.7;
  }

  main.grid {
    flex: 1 0 auto;
    display: grid;
    min-height: calc(100vh - 144px);
  }
  .video-section {
    padding: 0 48px;
    box-sizing: border-box;
  }
  
  .responsive-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
  }
  /* =============================== About Section =============================== */
  .about-section {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 48px;
    max-width: 1200px;
    margin: 64px auto 64px auto;
    padding: 48px 32px;
    background: rgba(40, 10, 60, 0.55);
    border-radius: 32px;
    min-height: 520px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    border: 1.5px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(10px);
  }

  .about-image {
    flex: 2 1 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-image-rect {
    width: 100%;
    height: 100%;
    max-width: none;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, rgba(255,126,179,0.12) 0%, rgba(101,228,255,0.12) 100%);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(.4,2,.6,1), box-shadow 0.25s;
  }

  .about-image-rect:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(255,126,179,0.18), 0 2px 8px rgba(101,228,255,0.10);
  }

  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    background: none;
  }

  .about-text {
    flex: 2 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 12px;
  }

  .about-text h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    font-weight: 500;
    /* background: linear-gradient(90deg, #ceb2ed 0%, #8174d3 100%); */
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; */
    text-fill-color: transparent;
    letter-spacing: 2px;
    color: #ffffff; /* Make all h2 elements white */
    text-align:left; /* Center all h2 elements */
  }

  .about-text p {
    font-size: 1.18rem;
    line-height: 1.7;
    color: #f3f3f3;
    text-align: justify;
    text-align-last: left;
    letter-spacing: 0.5px;
    font-weight: 300;
    background: rgba(255,255,255,0.03);
    padding: 18px 20px;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(101,228,255,0.04);
  }

  @media (max-width: 900px) {
    .about-section {
        flex-direction: column;
        gap: 32px;
        padding: 24px 8px;
        min-height: unset;
        border-radius: 20px;
    }
    .about-image-rect {
        width: 100%;
        max-width: 350px;
        aspect-ratio: 3/4;
        height: auto;
    }
    .about-image {
        width: 100%;
        justify-content: center;
    }
    .about-text {
        width: 100%;
        padding: 0;
    }
  }

  /* =============================== Contact Section =============================== */
  .contact-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    padding: 32px 16px;
  }

  .contact-card {
    background: rgba(40, 10, 60, 0.7);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 32px;
    padding: 56px 44px 44px 44px;
    max-width: 440px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid rgba(255,255,255,0.10);
    position: relative;
    overflow: hidden;
  }

  .contact-heading {
    font-size: 2.7rem;
    font-weight: 200;
    margin-bottom: 36px;
    background: linear-gradient(90deg, #ceb2ed 0%, #8174d3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    letter-spacing: 2px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(101,228,255,0.08);
  }

  .contact-heading span {
    background: linear-gradient(90deg, #ceb2ed 0%, #8174d3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }

  .contact-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-bottom: px;
  }

  .contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.13rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.5px;
    padding: 2px 5px;
  }

  .contact-info-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s;
    letter-spacing: 1.5px;
  }

  .contact-info-item a:hover {
    color: #ceb2ed;
  }

  .contact-icon {
    font-size: 1.3em;
    background: linear-gradient(90deg, #ceb2ed 0%, #8174d3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /*
  .contact-divider {
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, #e49cfa 0%, #65ffdb 100%);
    opacity: 0.18;
    border-radius: 2px;
    margin: 18px auto 18px auto;
  }
  */

  .contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .input-group {
    width: 100%;
    position: relative;
  }

  .input-group input,
  .input-group textarea {
    width: 100%;
    padding: 16px 20px;
    border-radius: 14px;
    border: none;
    outline: none;
    background: rgba(255,255,255,0.10);
    color: #fff;
    font-size: 1.13rem;
    font-family: inherit;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, box-shadow 0.2s, border 0.2s;
    resize: none;
    border: 1.5px solid transparent;
  }

  .input-group input:focus,
  .input-group textarea:focus {
    background: rgba(255,255,255,0.18);
    box-shadow: 0 4px 16px rgba(101,228,255,0.15);
    border: 1.5px solid #65e4ff;
  }

  .send-btn,
  .resume-download-btn,
  button,
  input[type="submit"] {
    margin-top: 8px;
    padding: 18px 0;
    width: 100%;
    border: none;
    border-radius: 0 !important;
    background: linear-gradient(90deg, #ceb2ed 0%, #8174d3 100%);
    color: #1d0425;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    cursor: pointer;
    box-shadow: 0 2px 16px 0 rgba(101,228,255,0.10), 0 1.5px 0 #fff2 inset;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.18s;
    outline: none;
    text-transform: uppercase;
  }

  .send-btn:hover,
  .resume-download-btn:hover,
  button:hover,
  input[type="submit"]:hover {
    background: linear-gradient(90deg, #8174d3 0%, #ceb2ed 100%);
    color: #fff;
    box-shadow: 0 6px 32px rgba(101,228,255,0.16);
    transform: translateY(-2px) scale(1.025);
  }

  .send-btn:active,
  .resume-download-btn:active,
  button:active,
  input[type="submit"]:active {
    box-shadow: 0 1px 4px rgba(101,228,255,0.10);
    transform: scale(0.98);
  }


  .about-accent-bar {
    width: 60px;
    height: 5px;
    border-radius: 3px;
    margin: 0 0 24px 0;
    background: linear-gradient(90deg, #ceb2ed 0%, #8174d3 100%);
    box-shadow: 0 2px 8px rgba(101,228,255,0.10);
  }

  .contact-card.minimal {
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    max-width: 440px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none;
    position: relative;
    overflow: hidden;
  }

  .contact-form.minimal-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
  }

  .input-group.minimal-group {
    position: relative;
    width: 100%;
    margin-bottom: 0;
  }

  .input-group.minimal-group input,
  .input-group.minimal-group textarea {
    width: 100%;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-size: 1.13rem;
    font-family: inherit;
    padding: 8px 0 6px 0;
    box-shadow: none;
    outline: none;
    transition: color 0.2s;
    resize: none;
    border-bottom: 2px solid rgba(255,255,255,0.18);
  }

  .input-group.minimal-group input:focus,
  .input-group.minimal-group input:not(:placeholder-shown),
  .input-group.minimal-group textarea:focus,
  .input-group.minimal-group textarea:not(:placeholder-shown) {
    background: transparent !important;
    color: #dfd0ee !important;
  }

  .input-group.minimal-group input:-webkit-autofill,
  .input-group.minimal-group input:-webkit-autofill:focus,
  .input-group.minimal-group input:-webkit-autofill:hover,
  .input-group.minimal-group textarea:-webkit-autofill,
  .input-group.minimal-group textarea:-webkit-autofill:focus,
  .input-group.minimal-group textarea:-webkit-autofill:hover {
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    box-shadow: 0 0 0 1000px transparent inset !important;
    background: transparent !important;
    color: #dfd0ee  !important;
    -webkit-text-fill-color: #dfd0ee !important;
    caret-color: #dfd0ee  !important;
    transition: background-color 5000s ease-in-out 0s;
  }

  .input-group.minimal-group input:focus + label,
  .input-group.minimal-group input:not(:placeholder-shown):not(:focus) + label,
  .input-group.minimal-group textarea:focus + label,
  .input-group.minimal-group textarea:not(:placeholder-shown):not(:focus) + label {
    top: -18px;
    font-size: 0.98rem;
    color: #a27bcf;
    font-weight: bold;
    letter-spacing: 1px;
  }

  .input-group.minimal-group label {
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 1.08rem;
    color: #bdbdbd;
    pointer-events: none;
    transition: 0.18s cubic-bezier(.4,2,.6,1);
    letter-spacing: 0.5px;
    font-weight: 300;
  }

  .input-group.minimal-group .underline {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ceb2ed 0%, #8174d3 100%);
    border-radius: 2px;
    opacity: 0.7;
    pointer-events: none;
    transform: scaleX(0);
    transition: transform 0.2s cubic-bezier(.4,2,.6,1);
  }

  .input-group.minimal-group input:focus ~ .underline,
  .input-group.minimal-group textarea:focus ~ .underline {
    transform: scaleX(1);
  }

  .send-btn.minimal-btn {
    margin-top: 8px;
    padding: 18px 0;
    width: 100%;
    border: none;
    border-radius: 18px;
    background: linear-gradient(90deg, #ceb2ed 0%, #8174d3 100%);
    color: #1d0425;
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 2px;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(101,228,255,0.10);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.18s;
  }

  .send-btn.minimal-btn:hover {
    background: linear-gradient(90deg, #8174d3 0%, #ceb2ed 100%);
    color: #fff;
    box-shadow: 0 4px 24px rgba(101,228,255,0.12);
    transform: translateY(-2px) scale(1.03);
  }

  /* =============================== Resume Section =============================== */

  .resume-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 0 32px 0;
    gap: 32px;
  }

  .resume-download-btn {
    display: inline-block;
    margin-bottom: 24px;
    padding: 16px 40px;
    font-size: 1.2rem;
    font-weight: 300;
    border-radius: 18px;
    background: linear-gradient(90deg, #ceb2ed 0%, #8174d3 100%);
    color: #1d0425;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(101,228,255,0.10);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.18s;
    letter-spacing: 2px;
  }

  .resume-download-btn:hover {
    background: linear-gradient(90deg, #8174d3 0%, #ceb2ed 100%);
    color: #fff;
    box-shadow: 0 4px 24px rgba(101,228,255,0.12);
    transform: translateY(-2px) scale(1.03);
  }

  .resume-image-wrapper {
    width: 100%;
    max-width: 900px;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
    background: rgba(40, 10, 60, 0.10);
  }

  .resume-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 24px;
    background: #fff;
  }

 

  .desktop-nav a.active,
  .mobile-nav a.active {
    color: #dfd0ee !important;
    font-weight: 700;
  }
  .desktop-nav a.active::after,
  .mobile-nav a.active::after {
    width: 100%;
    background: linear-gradient(90deg, #dfd0ee 0%, #ceb2ed 100%);
  }

  /* =============================== Project Page =============================== */
  .project-page {
    padding: 0;
    max-width: 100%;
    overflow-x: hidden;
    background-color: #1d0425;
  }

  /* =============================== Hero Section with Split Layout =============================== */
  .project-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #1d0425;
    overflow: hidden;
  }

  .hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
    position: relative;
  }

  .hero-content {
    padding: 96px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
  }

  .title-wrapper {
    margin-bottom: 48px;
  }

  .project-category {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #cbbede;
    margin-bottom: 16px;
    padding: 8px 16px;
    background: rgba(203, 190, 222, 0.1);
    border-radius: 4px;
  }

  .hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(90deg, #cbbede 0%, #dad6f4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .project-tagline {
    font-size: 20px;
    color: #aaa;
    max-width: 500px;
    line-height: 1.6;
  }

  .hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
  }

  .image-stack {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .stack-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .stack-accent {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 128, 0.1), rgba(0, 255, 255, 0.1));
    border-radius: 20px;
    z-index: 0;
  }

  /* Dynamic Image Showcase */
  .image-showcase {
    padding: 96px 24px;
    background-color: rgb(25, 5, 31);
  }

  .showcase-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
  }

  .showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
  }

  .showcase-item.large {
    grid-column: span 8;
    aspect-ratio: 16/9;
  }

  .showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }

  .showcase-item:hover img {
    transform: scale(1.05);
  }

  .showcase-item:hover .showcase-overlay {
    transform: translateY(0);
  }

  /* =============================== Project Overview with Dynamic Layout =============================== */
  .project-overview {
    padding: 96px 24px;
    background-color: rgb(20, 2, 26);
    position: relative;
  }

  .overview-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    position: relative;
  }

  .overview-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #fff;
    position: relative;
    display: inline-block;
  }

  .overview-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #cbbede 0%, #dad6f4 100%);
  }

  .overview-text p {
    text-align: justify;
    text-align-last: left;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
  }

  .overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-self: start;
  }

  .stat-item {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease;
  }

  .stat-item:hover {
    transform: translateY(-8px);
  }

  .stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #cbbede;
    margin-bottom: 8px;
  }

  .stat-label {
    font-size: 14px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* =============================== Interactive Process Timeline =============================== */
  .design-process {
    padding: 96px 24px;
    background-color: rgb(25, 5, 31);
  }

  .design-process h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 64px;
    color: #fff;
  }

  .process-timeline {
    max-width: 1200px;
    margin: 0 auto;
  }

  .timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 96px;
    position: relative;
  }

  .timeline-item.reverse {
    direction: rtl;
  }

  .timeline-item.reverse .timeline-content {
    direction: ltr;
  }

  .timeline-content {
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    position: relative;
  }

  .timeline-number {
    font-size: 48px;
    font-weight: 700;
    color: rgba(203, 190, 222, 0.2);
    position: absolute;
    top: -24px;
    left: 24px;
  }

  .timeline-content h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 16px;
  }

  .timeline-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
  }

  .timeline-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
  }

  .timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* =============================== Final Design Gallery =============================== */
  .final-design {
    padding: 6rem 0;
  }

  .final-design h2 {
    text-align: center;
    width: 100%;
    margin-bottom: 2rem;
  }

  .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .gallery-caption:hover {
    background: rgba(0, 0, 0, 0.9);
  }

  .gallery-main, .gallery-item {
    position: relative;
    overflow: hidden;
  }

  .gallery-main img, .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
  }

  .design-gallery {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .gallery-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
  }

  .gallery-main img {
    width: 100%;
    height: auto;
    display: block;
  }

  .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
  }

  .gallery-caption h3 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
  }

  .gallery-caption p {
    margin: 0;
    opacity: 0.9;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .gallery-item:hover img {
    transform: scale(1.05);
  }

  .gallery-item .gallery-caption {
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  }

  .gallery-item .gallery-caption h4 {
    font-size: 1.1rem;
    margin: 0;
  }


  /* =============================== Carousel Styles =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Project Gallery Styles =============================== */
  .project-gallery {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
  }

  .project-gallery h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #e5c1ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .gallery-carousel {
    position: relative;
    width: 100%;
    height: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .carousel-slide img:hover {
    transform: scale(1.02);
  }

  .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .carousel-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
  }

  .carousel-nav.prev {
    left: 20px;
  }

  .carousel-nav.next {
    right: 20px;
  }

  .carousel-nav i {
    color: white;
    font-size: 24px;
  }

  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Modal Styles =============================== */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
  }

  .modal-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
  }

  .close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
  }

  .close-modal:hover {
    color: #bbb;
  }

 

  /* =============================== Process Work Carousel Styles =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }
 

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(218, 186, 252, 0.80), rgba(233, 213, 255, 0.80));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Style for the detail description */
  .detail-item p {
    font-weight: 300; /* Light */
    color: #ceb2ed;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* Design Elements Section - Horizontal Row Layout */
  .design-elements {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #cbbede;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .design-elements h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
  }

  .elements-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .element-item {
    flex: 1 1 200px;
    max-width: 260px;
  }

  .element-icon {
    font-size: 2rem;
    color: #8c52ff;
    margin-bottom: 16px;
  }

  .element-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .element-item p {
    font-size: 0.95rem;
    color: #cbbede;
    line-height: 1.5;
    margin: 0;
  }

  /* =============================== Carousel =============================== */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* =============================== Process Work =============================== */
  .process-work {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .process-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
  }

  .process-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .process-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .process-slide img {
    width: 80%;
    height: 280px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }

  .process-slide img:hover {
    transform: scale(1.05);
  }

  .process-caption {
    text-align: center;
    color: white;
  }

  .process-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f1c7ff, #a783ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; /* Center the Final Design heading */
  }

  .process-caption p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .process-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .process-dot.active {
    background: #f1c7ff;
    transform: scale(1.2);
  }

  .process-dot:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* =============================== Hero Carousel Styles =============================== */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  
  /* Project Goals Section */
  .project-goals {
    padding: 60px 0;
    margin-top: 40px;
  }

  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .goal-item {
    margin-bottom: 20px;
    border: 1px solid rgba(216, 180, 254, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .goal-item:last-child {
    margin-bottom: 0;
  }

  .goal-item.active {
    border-color: rgba(216, 180, 254, 0.4);
    box-shadow: 0 4px 20px rgba(216, 180, 254, 0.2);
  }

  .goal-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .goal-header:hover {
    border-color: rgba(216, 180, 254, 0.4);
  }

  .goal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 254, 0.2);
  }

  .goal-item.active .goal-icon {
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.4), rgba(233, 213, 255, 0.4));
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
  }

  .goal-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
  }

  .goal-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgba(216, 180, 254, 0.25), rgba(233, 213, 255, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 1;
  }

  .goal-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .goal-toggle i {
    color: rgba(216, 180, 254, 0.25);
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .goal-item.active .goal-toggle i {
    color: rgba(216, 180, 254, 0.4);
  }

  .goal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }

  .goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 20px 0;
  }

  /* =============================== Project Details =============================== */
  .project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Style for each detail item */
  .detail-item {
    display: flex;
    flex-direction: column;
  }

  /* Style for the detail label */
  .detail-label {
    font-weight: 700; /* Bold */
    color: #dad6f4;