/* Reset default styles */
@font-face {
    font-family: 'Whyte Inktrap';
    src: url('fonts/WhyteInktrap-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #fffcf3;
}

html ,body {
    /* font-family: 'Montserrat', sans-serif; Clean, minimalist font for consistency */
    font-family: 'IdentifiedFont', sans-serif;
    overflow-x: hidden;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

/* Navbar styles */
.navbar {
    height: 0px;
    padding: 3rem;
    display: flex;
    justify-content: space-between; /* Distribute space between items */
    align-items: center;
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); Subtle shadow for depth */
}

/* Navbar blur effect when scrolled */
.navbar.scrolled {
    background-color: rgba(255, 252, 243, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem 3rem;
}

/* Navbar hidden state */
.navbar.hidden {
    transform: translateY(-100%);
}

/* Logo section */
.logo {
    background-color: transparent;
    flex: 1; /* Take up 1/3 of the space */
    text-align: left; /* Align logo to the left */
    margin-right: 40px;
}

.logo a {
    background-color: transparent;
    font-family: 'Roboto', sans-serif; /* Ensure Roboto font is loaded */
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem; /* Smaller, refined size */
    display: inline-block; /* Required for transform to work */
    transform: scaleX(1.13); /* Stretch text horizontally by 1.2x */
    transform-origin: left; /* Stretch from the left */
    white-space: nowrap; /* Prevent text from wrapping */
}

/* Menu content (nav-links + social-links) */
.menu-content {
    background-color: transparent;
    flex: 2; /* Take up 2/3 of the space */
    display: flex;
    justify-content: space-between; /* Space between nav-links and social-links */
    align-items: center;
}

/* Nav-links section */
.nav-links {
    background-color: transparent;
    display: flex;
    list-style: none;
    gap: 2rem; /* Spacing between links */
}
.nav-links li{
    background-color: transparent;
}

.nav-links li a {
    background-color: transparent;
    font-family: 'Roboto', sans-serif; /* Ensure Roboto font is loaded */
    color: #000000;
    text-decoration: none;
    font-weight: 900;
    font-size: 0.8rem; /* Smaller, refined size */
    display: inline-block; /* Required for transform to work */
    transform: scaleX(1.13); /* Stretch text horizontally by 1.2x */
    transform-origin: left; /* Stretch from the left */
    white-space: nowrap; /* Prevent text from wrapping */
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #666; /* Slightly darker gray on hover for subtlety */
}

/* Social-links section */
.social-links {
    background-color: transparent;
    display: flex;
    gap: 1.5rem; /* Spacing between social links */
}

.social-links a {
    background-color: transparent;
    font-family: 'Roboto', sans-serif; /* Ensure Roboto font is loaded */
    color: #000000;
    text-decoration: none;
    font-weight: 900;
    font-size: 0.8rem; /* Smaller, refined size */
    display: inline-block; /* Required for transform to work */
    transform: scaleX(1.13); /* Stretch text horizontally by 1.2x */
    transform-origin: left; /* Stretch from the left */
    white-space: nowrap; /* Prevent text from wrapping */
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #666; /* Subtle hover effect */
}

/* Hide checkbox */
.nav-toggle {
    display: none;
}

/* Hamburger menu styling */
.nav-toggle-label {
    display: none; /* Hidden on desktop */
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 25px;
    height: 25px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle-label span {
    display: block;
    width: 100%;
    height: 3px;
    background: #333;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

/* Responsive design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
        background-color: #fffcf3;
        padding-bottom: 1.5rem;
    }
    .logo a{
        padding-top: 1rem;
        font-size: 0.7rem;
    }

    .nav-toggle-label {
        display: block; /* Show hamburger on mobile */
        background-color: transparent;
    }


    .menu-content {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fffcf3;
        height: 0; /* Hidden by default */
        overflow: hidden;
        transition: height 0.3s ease; /* Slide animation */
    }

    .nav-links, .social-links {
        display: block;
        text-align: center;
    }

    .nav-links li {
        padding: 0.8rem 0;
    }

    .social-links {
        padding: 0.8rem;
        justify-content: center;
    }
    .social-links a{
        margin-right: 0.8rem;
    }

    /* When checkbox is checked, show menu-content */
    .nav-toggle:checked ~ .menu-content {
        height: 230px; /* Adjust based on content height (nav-links + social-links) */
    }

/* 
.header-banner {
    width: 100%;
    margin-top: 65px; 
    padding: 20px 1.7rem; 
    background-color: #FFF9E8; 
  }
  
  .header-banner img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  

  .navbar {
    height: 65px; 
    
  }
  .header-banner {
    margin-top: 50px; 
    padding: 10px 1rem;
  } */

    
}


/* .header-banner {
    width: 100%;
    margin-top: 5px; 
    padding: 20px 1.7rem; 
    background-color: #FFF9E8; 
  }
  
  .header-banner img {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .rotating-icon {
    position: absolute;
    border-radius: 100%;
    bottom: 24vw;
    right: -34vw;
    animation: rotate 6s linear infinite;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0)); 
  }
  
  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  } */

.header-banner{
    position: relative;
    display: flex;
        justify-content: center;
        background-color: transparent;
        align-items: center;
        font-size: 9vw;
        margin: 0;
        margin-top: 0;
        padding: 0;
        padding-top: 9vw;
        font-family: 'Lexend';
}

  .container {
    position: relative;
    margin: 5vw auto;
    margin-bottom: 2vw;
    background-color: transparent;
  }
  
  
  .creative {
    color: #232d3d;
    height: 9vw;
    font-weight: 400;
    background-color: transparent;
  }
  
  
  .devv { 
    height: 9vw;
    font-weight: bold;
    color: #F4AF1D;
    white-space: nowrap;
    background-color: transparent;
  }
  .devopss{
      position: absolute;
      left: 19.5vw ;
      top: 9.6vw;
      background-color: transparent;
  }
  .devopss img{
      width: 21vw;
      background-color: transparent;
  }
  .software{
      position: absolute;
      left: 41vw ;
      top: -1.5vw;
      background-color: transparent;
  }
  .software img{
      width: 23.5vw;
      background-color: transparent;
  }
  
  .admin {
    height: 9vw;
    font-weight: bold;
    color: #000000; 
    background-color: transparent;
  }
  


  .job-offer-banner {
    background-color: transparent;
    /* position: relative; */
    /* bottom: 23vw; */
    padding: 0 1.5rem;
    text-align: center;
    /* margin-top: -4px;  */
  }

  .job-offer-banner p {
    display: flexbox;
    justify-content: end;
    position: relative;
    background-color: transparent;
    font-family: 'Playfair Display', serif;
    /* font-family: 'Roboto', sans-serif; */
    font-weight: 400;
    font-size: 0.7rem;
    /* letter-spacing: 0.1em; */
    color: #333;
    transform: scaleX(1.13);
    transform-origin: center;
  }
  .job-offer-banner p span b{
    display: inline-block;
    transform: scaleX(1.1); /* Stretch text horizontally by 1.2x */
    transform-origin: left;
    margin-right: 0.5vw;
    background-color: transparent;
  }
  .job-offer-banner p img{
    position: absolute;
    width: 9px;
    height: auto;
    bottom: 1.9px;
    margin-left: 4px;
  }

  
/* Profile Introduction Section */
.profile-section {
    /* top: 56vw; */
    /* position: absolute; */
    margin-top: 5vw;
    /* margin-left: 2vw; */
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 3.5vw;
    width: 100%;
    padding: 2rem;
    padding-left: 5vw;
    background-color: transparent;
}

.profile-container {
    background-color: transparent;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-pic {
    background-color: transparent;
    border-radius: 30%;
    margin-bottom: -10px;
    width: 6vw;
    height: auto;
    object-fit: cover;
}

.profile-text {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}


.greeting ,.design-text  {
   background-color: transparent;
    color: #000;
}

.year-badge {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    background-color: transparent;
    border: 1px solid #000;
    border-radius: 50px;
   
}

 .bold-name {
   background-color: transparent;
    color: #000;
}


.tomsUP ,.light , .world ,.cloud{
    width: 3.6vw;
}


.skills-container {
    position: relative;
    background-color:transparent;
    width: 100%;
    height: 20vw;
    margin: 5vw 1vw;
    /* margin-top: 8.3vw; */
    /* padding: 20px; */
    /* border: 2px solid #000; */
}

.header {
    position: absolute;
    top: -2%;
    left: 3%;
    /* font-family: 'Courier New', monospace; */
    font-family: 'Poppins';
    font-size: 1.7vw;
    font-weight: 500;
    letter-spacing: 1px;
}

.skill-badge {
    position: absolute;
    border: 0.5px solid rgb(54, 53, 53);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Arial', sans-serif;
    padding: 0.55vw 1.4vw;
    /* box-shadow: 3px 3px 0px rgba(0,0,0,0.1); */
}

.skill-badge.white {
    background-color: #fcf9f0;
    font-size: 2.4vw;
    font-weight: 500;
    font-family:'Poppins';
    color: black;
}

.skill-badge.white.type{
    padding: 1.2vw 1.4vw;
    padding-bottom: 1.13vw;
    font-family: 'Pixelify Sans';
    font-size: 2vw;
}
.skill-badge.white.script{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding-bottom: 0.75vw ;
    padding-top: 0.8vw;
}

.skill-badge.white.dev{
    font-family:'Poppins';
    font-weight: 600;
    font-size: 1vw;
    padding: 1.7% 0.5%;
    border-radius: 100%;
}

.skill-badge.white.probl{
    font-family: 'Cormorant Garamond';
    padding: 1vw 1.2vw;
    padding-bottom: 0.74vw;
}

.skill-badge.black.cri{
    font-family: 'Poppins';
    font-weight: 400;
    padding: 0.4vw 1.5vw;
}

.skill-badge.white.com{
    font-size: 2.15vw;
    padding: 0.4vw 1.7vw;
    padding-bottom: 0.5vw;
}

.skill-badge.black {
    background-color: black;
    color: white;
    font-weight: 600;
    font-size: 2.4vw;
    padding: 1vw 1.2vw;
}

.skill-badge.and-symbol {
    height: 7vw;
    font-family: 'Poppins';
    font-size: 6vw;
    font-weight: 500;
    border-radius: 50%;
    background-color: transparent;
    padding: 0% 1.5%;
    color: black;
}

  

  
  /* Mobile optimization */
  @media (max-width: 768px) {
    .rotating-icon {
      width: 10px;
      height: auto;
      bottom: 23.5vw;
      right: -34vw;
    }

    .job-offer-banner p {
        background-color: transparent;
        font-size: 0.6rem;
        padding: 0 1rem;
      }
      .job-offer-banner{
        background-color: transparent;
      }
      .job-offer-banner p img{
        position: absolute;
        width: 9px;
        height: auto;
        bottom: 1px;
        margin-left: 4px;
      }

      .skill-badge.white.script{
        padding-bottom: 0.9vw ;
        padding-top: 0.9vw;
    }

    .main-text{
    padding: 5px !important;
    letter-spacing: 0px !important;
    }

    .footer {
        font-size: 2.5vw !important;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .left-text {
        width: 100% !important;
        font-size: 2.5vw !important;
    }

    .buttonss {
        flex-wrap: wrap;
        justify-content: center;
    }

    .button-footer {
        font-size: 2.5vw !important;
        padding: 8px 16px;
    }

    .right-text {
        font-size: 2.5vw !important;
    }

    .back-to-top {
        font-size: 2.5vw !important;
    }
    .cursor-icon {
        right: 33% !important;
    }

    /* Timeline Container Mobile Styles */
    .timeline-container {
        max-width: 95vw !important;
        margin: 5vw auto !important;
        padding: 15px !important;
    }

    .timeline-container h1 {
        font-size: 8vw !important;
        margin-bottom: 4vw !important;
    }

    .timeline-header {
        font-size: 3vw !important;
        margin-top: 4vw !important;
        padding: 2vw 0 !important;
    }

    .timeline-entry {
        font-size: 3.5vw !important;
        padding: 3vw 0 !important;
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1vw;
    }

    .year {
        font-size: 3.5vw !important;
        margin-bottom: 1vw;
    }

    .project {
        width: 100%;
        flex-direction: column;
        align-items: flex-start !important;
        gap: 2vw;
    }

    .project-name {
        font-size: 3.5vw !important;
    }

    .button {
        padding: 2vw 4vw !important;
        font-size: 3vw !important;
        align-self: flex-start;
    }

    /* Main Container Mobile Styles */
    .main-container {
        padding: 8vw 4vw !important;
        margin-right: 0 !important;
    }

    .contact-info {
        font-size: 4vw !important;
        margin-top: 4vw !important;
    }

    .contact-info .mail {
        font-size: 4vw !important;
        margin-bottom: 2vw !important;
    }

    .contact-info a {
        font-size: 4vw !important;
    }

    /* Card Container Mobile Styles */
    .card-container {
        width: 100% !important;              /* Make all cards equal full width on mobile */
        max-width: none !important;
        margin: 0 0 6vw 0 !important;        /* Slightly larger bottom spacing */
        border-radius: 18px !important;       /* Subtle larger radius for bigger look */
    }

    .stripe-background {
        height: 72vw !important;             /* Make media area taller so cards look bigger */
    }

    .image-carousel {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }

    .min-read {
        font-size: 2.5vw !important;
        margin: 0 5px !important;
    }

    .live-website-badge {
        right: 20vw !important;
        bottom: 3% !important;
        padding: 1.5vw 3vw !important;
        font-size: 2.5vw !important;
        border-radius: 15px !important;
    }

    .sound-badge {
        right: 2% !important;
        bottom: 3% !important;
        padding: 1.5vw 3vw !important;
        font-size: 2.5vw !important;
        border-radius: 15px !important;
    }

    .card-content {
        padding: 4vw !important;
        padding-left: 4vw !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .case-study-label {
        font-size: 2.5vw !important;
        margin-bottom: 3vw !important;
        order: 1;
    }

    .card-content > div[style*="display: block"] {
        order: 2;
        margin-bottom: 3vw !important;
    }

    .card-content > div[style*="display: block"] p {
        margin-bottom: 1vw !important;
    }

    .title {
        font-size: 5.2vw !important;         /* Slightly bigger titles on mobile */
        line-height: 1.25 !important;
        display: block !important;
        margin-bottom: 1vw !important;
    }

    .subtitle {
        font-size: 4.2vw !important;         /* Slightly bigger subtitles */
        line-height: 1.3 !important;
        display: block !important;
        margin-bottom: 1vw !important;
        color: #666 !important;
    }

    /* Fix for the third card with inline text */
    .card-content span.title:has(.subtitle) {
        display: block !important;
        font-size: 4.5vw !important;
        line-height: 1.3 !important;
    }

    .card-content span.title .subtitle {
        font-size: 3.8vw !important;
        color: #666 !important;
        font-weight: 400 !important;
    }

    .info-pills {
        font-size: 2.8vw !important;
        gap: 2vw !important;
        margin-top: 3vw !important;
        flex-wrap: wrap;
        order: 3;
    }

    .view-case-study {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        margin-top: 3vw !important;
        padding: 2vw 4vw !important;
        font-size: 3vw !important;
        border-radius: 15px !important;
        align-self: flex-start;
        order: 4;
    }

    .row2 {
        flex-direction: column !important;
        gap: 4vw !important;
        padding: 2vw !important;
        align-items: center !important;
    }

    /* Skills Container Mobile Styles - Keep same format but bigger */
    /* .skills-container {
        height: 35vw !important;
        margin: 8vw 1vw !important;
    }
 
    .skills-container .header {
        font-size: 4vw !important;
    }

    .skill-badge {
        font-size: 4vw !important;
        padding: 1.2vw 2.5vw !important;
    }

    .skill-badge.white.type {
        font-size: 3.5vw !important;
        padding: 2vw 2.5vw !important;
    }

    .skill-badge.white.dev {
        font-size: 2vw !important;
        padding: 3vw 1vw !important;
    }

    .skill-badge.white.probl {
        padding: 2vw 2.2vw !important;
    }

    .skill-badge.black.cri {
        padding: 1vw 2.8vw !important;
    }

    .skill-badge.white.com {
        font-size: 3.8vw !important;
        padding: 1vw 3vw !important;
    }

    .skill-badge.and-symbol {
        font-size: 10vw !important;
    }
    

    .skill-badge.white[style*="transform: rotate(-35deg)"] {
        top: 70% !important;
        left: 2% !important;
        transform: rotate(-30deg) !important;
    } */
    /* Skills Container Mobile Styles - 3 badges per line layout */
    .skills-container {
        height: 70vw !important;
        margin: 8vw 2vw !important;
        position: relative;
    }

    .skills-container .header {
        font-size: 4.5vw !important;
        top: -8% !important;
        text-align: center;
        margin-bottom: 4vw;
    }

    .skills-containerV2 {
        position: relative;
        width: 100%;
        height: 100%;
    }

    /* Reset and improve all skill badges for mobile */
    .skill-badge {
        position: absolute !important;
        font-size: 4vw !important;
        padding: 2vw 3vw !important;
        border-radius: 20px !important;
        transform: none !important;
        right: auto !important;
        white-space: nowrap;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    /* Redistribute badges naturally across the mobile screen */
    .skill-badge.white:nth-of-type(1) { /* Autonom */
        top: 8% !important;
        left: 8% !important;
    }

    .skill-badge.black:nth-of-type(2) { /* Cloud Computing */
        top: 8% !important;
        left: 35% !important;
        font-size: 2.4vw !important;
        padding: 2.2vw 2.5vw !important;
    }

    .skill-badge.white:nth-of-type(3) { /* Networking */
        top: 8% !important;
        right: 8% !important;
        left: auto !important;
    }

    .skill-badge.white.type { /* Prototyping */
        top: 28% !important;
        left: 25% !important;
    }

    .skill-badge.white.script { /* Scripting */
        top: 28% !important;
        right: 15% !important;
        left: auto !important;
    }

    .skill-badge.white.dev { /* Dev&ops */
        top: 48% !important;
        left: 8% !important;
    }

    .skill-badge.white.probl { /* Problem Solving */
        top: 48% !important;
        left: 40% !important;
        font-size: 2.4vw !important;
        padding: 2.2vw 2.5vw !important;
    }

    .skill-badge.black.cri { /* Critical Thinking */
        top: 48% !important;
        right: 8% !important;
        left: auto !important;
        font-size: 2.4vw !important;
        padding: 2.2vw 2.5vw !important;
    }

    .skill-badge.white.com { /* Communication */
        top: 68% !important;
        left: 10% !important;
    }

    .skill-badge.and-symbol { /* & */
        top: 68% !important;
        left: 50% !important;
        font-size: 5vw !important;
        padding: 1.5vw 3vw !important;
    }

    .skill-badge.white:nth-of-type(11) { /* Collaboration */
        top: 68% !important;
        right: 12% !important;
        left: auto !important;
        font-size: 2.6vw !important;
    }

    /* Add some breathing room */
    .skills-container {
        padding-bottom: 5vw;
    }
    
    .profile-section {
        margin-top: 8vw !important;
        padding: 4vw !important;
        font-size: 5vw !important;
    }

    .profile-container {
        flex-direction: column !important;
        text-align: center !important;
        gap: 4vw !important;
    }

    .profile-pic {
        width: 20vw !important;
        margin-bottom: 0 !important;
    }

    .greeting, .design-text {
        font-size: 5vw !important;
        line-height: 1.3 !important;
    }

    .bold-name {
        font-size: 5.5vw !important;
        font-weight: 600 !important;
    }

    .year-badge {
        font-size: 4vw !important;
        padding: 1vw 2vw !important;
        margin: 0 1vw !important;
    }

    .tomsUP, .light, .world, .cloud {
        width: 8vw !important;
    }

    }

  .projects{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 93vw;
    margin: 0 auto;
    max-width: 100%;
    box-sizing: border-box;
  }

  .projects.Header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
  }

  .projects.Header p{
    font-size: 12vw;
    font-family: 'Whyte Inktrap', sans-serif;
    margin: 0 auto;
  }


 .Cards{
    display: grid;
           justify-items: center;
            align-items: center;
            gap: 3vw;
            /* min-height: 100vh; */
            /* background-color: black; */
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins';

 }


  .card-container {
    width:100%;
    /* max-width: 900px; */
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgb(0, 0, 0);
    border-radius: 20px;
}

/* Sliding header with repeating text */
.sliding-header {
    position: absolute;
    z-index: 2;
    width: 100%;
    background-color: transparent;
    color: white;
    font-size: 12px;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* Blurred background for header */
.header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(241, 235, 243, 0.5);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(7px);
    z-index: 1;
}

.sliding-text {
    display: inline-block;
    white-space: nowrap;
    color: white;
    background-color: transparent;
    animation: slide 40s linear infinite;
    position: relative;
    z-index: 7;
    padding: 1px 0;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.min-read {
    font-family: 'Poppins';
    font-size: 0.7vw;
    z-index: 16;
    background-color: transparent;
    display: inline-block;
    margin: 0 10px;
}

.min-read::before {
    content: "•";
    margin-right: 5px;
}

.stripe-background {
    /* width: 100%; */
    height: 40vw;
    /* background: linear-gradient(135deg, #f8f9fa, #e9ecef); */
    position: relative;
    overflow: hidden;
}

.stripe-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.02),
        rgba(0, 0, 0, 0.02) 15px,
        transparent 15px,
        transparent 30px
    );
}

.image-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-carousel:hover .carousel-container {
    animation-play-state: paused;
}

.carousel-container {
    position: relative;
    width: 300%;
    height: 100%;
    display: flex;
    animation: slideCarousel 9s infinite;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    width: 33.333%;
    height: 100%;
    flex-shrink: 0;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@keyframes slideCarousel {
    0%, 30% {
        transform: translateX(0);
    }
    33.33%, 63.33% {
        transform: translateX(-33.333%);
    }
    66.66%, 96.66% {
        transform: translateX(-66.666%);
    }
    100% {
        transform: translateX(0);
    }
}


.live-website-badge {
    position: absolute;
    right: 8.5vw;  /*9%*/
    bottom: 4.55%;
    background-color: rgba(0, 0, 0, 0.6);
    border: 0.2px solid rgb(146, 129, 129);
    color: white;
    /* padding: 5px 15px; */
    padding: 0.4vw 1.1vw;
    border-radius: 20px;
    font-size: 0.9vw;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.live-website-badge:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: scale(1.05);
}

.live-website-badge a {
    color: white;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.live-website-badge a:hover {
    color: white;
    text-decoration: none;
}

.sound-badge {
    position: absolute;
    right: 1.3%;
    bottom: 4.7%;
    background-color: white;
    color: black;
    padding: 0.4vw 1.1vw;
    border-radius: 20px;
    font-size: 0.9vw;
    font-weight: 500;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sound-badge:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

.play-icon {
    transition: all 0.3s ease;
    display: inline-block;
}

.card-content {
    border-left: 1px solid rgb(0, 0, 0);
    border-right: 1px solid rgb(0, 0, 0);
    padding-left: 2vw;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.case-study-label {
    color: #353535;
    font-size: 0.75vw;
    text-transform: uppercase;
    /* margin-bottom: 5px; */
    font-weight: 600;
}

.title {
    font-size: 2.2vw;
    font-weight: bold;
    /* margin-bottom: 0.2vw; */
}

.subtitle {
    font-size: 2.2vw;
    font-weight: 400;
    color: black;
    /* margin-bottom: 0.vw; */
}

.info-pills {
    display: flex;
    gap: 1vw;
    /* margin-top: 0.3vw; */
    font-size: 0.8vw;
    color: #353535;
}

.view-case-study {
    position: absolute;
    right: 1.5%;
    bottom: 4%;
    background-color: black;
    color: white;
    padding: 0.4vw 1vw;
    border-radius: 20px;
    font-size: 0.9vw;
    display: flex;
    align-items: center;
    gap: 5px;
}
.row2{
    display: flex;
    flex: 1;
    column-gap: 2vw;
    padding: 1vw;
}





.timeline-container {
    max-width: 80vw;
    margin: 7vw auto; 
    padding: 20px; 
    font-family: 'Poppins';
}

.timeline-container h1 {
    font-size: 4vw;
    font-family: 'Whyte Inktrap', sans-serif; 
}

 

.timeline-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2vw;
    padding: 0.2vw 0;
    font-family: 'Poppins';
    font-weight: bold;
    font-size: 0.75vw;
}

.year-header {
    flex: 1;
}

.project-header {
    flex: 2;
}

.timeline-entry {
    display: flex;
    align-items: center;
    font-size: 1.1vw;
    justify-content: space-between; /* Space between year and project */
    padding: 0.7vw 0;
    border-bottom: 2px solid #a0a0a0;
}

.year {
    flex: 1;
    font-weight: 500;
    text-align: left;
}

.project {
    flex: 2;
    display: flex;
    justify-content: space-between; /* Space between project name and button */
    align-items: center;
    color: #4d4d4d;
}

.button {
    padding: 0.6vw 2.7vw;
    font-family: 'Poppins';
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 0.75vw;
    cursor: pointer;
}

.case-study {
    background-color: #FD601A;
}

.view-gallery {
    background-color: #800080;
}

.website-live {
    background-color: #000000;
}










.main-container {
    position: relative;
    padding: 5vw;
    margin: 0 auto;
    max-width: 100%;
    min-width: 0;
    text-align: center;
    font-family: 'Whyte Inktrap', sans-serif;
    box-sizing: border-box;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.main-text {
    font-size: 5.3vw; 
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: -4px;
    white-space: nowrap;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    min-width: max-content;
    /* margin-top: 4vh; */
}

.contact-info {
    margin-top: 0.2vw;
    font-size: 1.1vw; /* Smaller than main text */
    color: black;
}

.contact-info .mail {
    font-family: 'Poppins';
    color:#333;
    font-weight:300 ;
    margin-bottom: 0.4vw;
}
.contact-info a {
    color: black;
    text-decoration: none;
}

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

.hand-graphic {
    position: absolute;
    top: 7.5%;
    right: 22%;
    width: 8%;
    height: auto;
}

.cursor-icon {
    position: absolute;
    bottom: 3%;
    right: 34.3%;
    width: 6%;
    height: auto;
    transform: rotate(-13deg);
    animation: clickMotion 1.4s infinite ease-in-out;
}
@keyframes clickMotion {
    0%, 100% {
        transform: rotate(-13deg) translateX(0);
    }
    50% {
        transform: rotate(-13deg) translateX(-4px);
    }
}




/* Footer*/



.footer {
    background-color: transparent; /* Light beige background */
    font-size: 0.75vw;
    font-weight: 600;
    padding: 20px; /* Spacing around the content */
    display: flex; /* Horizontal alignment */
    justify-content: space-between; /* Left, center, right distribution */
    align-items: center; /* Vertical centering */
    /* font-family: Arial, sans-serif;  */
    font-family: 'Poppins';
    color: #333; /* Dark gray text */
  }
  
  .left-text {
    font-family: 'Poppins';
    background-color: transparent;
    width: 10%;
  }
  
  .buttonss {
    display: flex; /* Horizontal button alignment */
    gap: 15px; /* Consistent spacing between buttons (10-20px) */
  }
  
  .button-footer {

    padding: 5px 15px; /* Padding for oval shape */
    border: 1px solid #ccc;
    border-radius: 20px; /* Oval shape */
    background-color: transparent;
    color: #333; /* Dark gray text */
    text-decoration: none; /* No underline */
    text-transform: uppercase; /* Uppercase text */
    font-size: 0.9vw; /* Consistent text size */
    font-weight: 500;
    transition: background-color 1s ease, transform 0.3s ease;
    
  }
  
  .button-footer:hover {
    background-color: #333; /* Light gray on hover */
    color: #ccc ;
    transform: scale(1.05);

  }
  
  .right-text {
    background-color: transparent;
    text-align: right; /* Right-aligned text */
  }
  
  .right-text p {
    margin: 0.5vw; /* Remove default margin */
  }
  
  .back-to-top {
    font-size: 12px; /* Slightly smaller text */
    color: #333; /* Dark gray */
    text-decoration: none; /* No underline by default */
    transition: color 0.3s ease, text-decoration 0.3s ease;
  }
  
  .back-to-top:hover {
    text-decoration: underline; /* Underline on hover */
  }
  
  .follow-main{
    position: fixed;
    z-index: 100;
    width: 5.5vw;     
    height: 5.5vw;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    transition: all 0.3s ease;
    animation: rotate 8s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  } 


  .follow{
    background-color: transparent;
    z-index: 101;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: grid;
    place-items: center;

}
.circle{
    background-color: transparent;
    position: relative;
    width: 5.2vw;
    height: 5.2vw;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.text{
    background-color: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
}
.text span{
    background-color: transparent;
    position: absolute;
    left: 50%;
    top: 0.5%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.55em;
    font-weight: 900;
    transform-origin: 0 2.5vw;
}
  

  
  
