body {
    font-family: 'Satoshi', sans-serif;
    cursor: none;
}

.cursor-circle {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: width 0.2s ease, height 0.2s ease;

  /* Negative vision effect */
  backdrop-filter: invert(1);
  -webkit-backdrop-filter: invert(1);

  border: 0px solid #fff; /* optional border */
  background-color: transparent;
  opacity: 0;
}

.cookie-banner {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    min-width: 0;
}


/* Existing CSS (unchanged) */
.navbar-custom {
    width: 454px;
    border-radius: 4rem;
    padding: 0.75rem 2rem; /* Reduced vertical padding */
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    text-align: center;
    display: inline-flex; /* Better height control */
    align-items: center;
    min-height: 54px; /* Base height */
    position: relative;
    transition: top 0.3s ease;
}

.navbar-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 20px;
    z-index: 999;
}

.nav-link {
    line-height: 1;
    letter-spacing: -0.004rem; /* -1.1% of font size */
    color: #C9C9C9;
}

.nav-item{
    margin-right: 22px;    
}

.nav-link:hover {
    color: rgb(255, 255, 255);
}

.navbar-nav {
    list-style: none !important;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    gap: 1.5rem; /* Adjust spacing between items */
}

.nav-link.active {
    font-weight: 500;
    color: white !important;
}

.navbar-toggler {
    border: none; /* Remove default border */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

#mainNavbar {
    transition: top 0.4s ease-in-out;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translate(-50%, 0); /* Only X for default */
    z-index: 1000;
}

.navbar-hidden {
    transform: translate(-50%, -100%); /* Keep X center, move Y */
}

.navbar-visible {
    transform: translate(-50%, 0); /* Back to original */
}


/* Main container */
.page-container {
    margin-top: 6rem;
    margin-left: 80px;
    margin-right: 80px;
}

.header-container {
    width: 100%;
}

.custom-heading-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1890px;
    margin: 0 auto;
    padding-top: 1rem;
    gap: 2rem;
    position: relative;
    flex-wrap: wrap;
}

.custom-heading {
    font-size: 122px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
    padding: 0;
    word-spacing: -0.03em;
    color: #000000;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    white-space: pre-line; /* Allow line breaks */
    margin-top: -6rem !important;
}

.circle-button-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-button {
    width: clamp(80px, 10vw, 150px);
    height: clamp(80px, 10vw, 150px);
    border-radius: 50%;
    background-color: #EEEEEE;
    border: none;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-button-image {
    width: 125%;
    height: auto;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.portfolio-designation {
    margin-top: 3.5rem !important; /* Adjust top margin */
}

.portfolio-email {
    margin-top: 3.5rem !important; /* Adjust top margin */
    font-weight: 500;
    color: black;
}

.portfolio-email-1 {
    margin-top: 3.5rem !important; /* Adjust top margin */
    font-weight: 500;
    color: #4A4A4A;
    text-decoration: none;
}

.portfolio-email:hover {
    color: #000;
}

.responsive-text-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 5.5rem;
    font-size: 4.5rem;
}
.no-word-break {
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
}
  
.right-justified-text {
    margin-left: auto; /* Pushes container to right */
    width: 666px; /* Controls text block width */
    transition: all 0.3s ease;
    text-indent: 15rem;
}

.right-justified-text p {
    text-align: justify;
    text-align-last: left; /* Last line aligns right */
    word-spacing: -0.05em;
    letter-spacing: 0.01em;
    hyphens: auto;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.3;
}

.division-line {
    background-color: #E0E0E0;
    height: 2px;  /* Thickness of the line */
    width: calc(100% - 20rem); /* Adjusts width to avoid full screen */
    margin-top: 10rem; /* Adds space above */
}

.side-heading {
    font-size: 4.8rem;
    font-weight: 500;
    color: #000;
}

.btn-primary {
    background-color: #EEEEEE;
    font-size: 1.5rem;
    height: 4.5rem;
    padding: 0.8rem 2rem;
    border: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 500;
    border-radius: 0 !important;
}

/* Hover Effect */
.btn-primary:hover {
    background-color: black;
    color: white !important;
}

.home-separator {
    width: 100%;
    height: 1px; /* Adjust thickness */
    background-color: #E5E5E5; /* Adjust color */
    margin: 20px 0; /* Adjust spacing */
    margin-top: 10rem;
}

/* Ensure captions align with images */
.image-caption-left, .image-caption-right {
    width: calc(100% - 10rem); /* Matches image width */
    text-align: center;
    margin: 6rem auto;
}

/* Remove absolute positioning */
.image-caption-right {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
}

/* Fix portfolio-item display */
.portfolio-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Hover effects */
.underline, .view-case-study {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.underline {
    width: 0;
    height: 2px;
    background-color: black;
    transition: width 0.5s ease-in-out;
}

.view-case-study {
    font-size: 1.2rem;
    color: gray;
    font-weight: 500;
}

.portfolio-item:hover .underline {
    width: 100%;
    opacity: 1;
}

.portfolio-item:hover .view-case-study {
    opacity: 1;
}

/* About section */
.about-side-heading {
    font-size: 72px;
    font-weight: 500;
    color: #000;
}

.about-image {
    width: 97%; /* Ensures it scales properly */
    height: 100%;
}

.brands-side-heading-home {
    margin-top: 120px !important;
    font-size: 72px;
    font-weight: 500;
    color: #000;
}

.brands-side-heading {
    margin-top: 65px;
    font-size: 72px;
    font-weight: 500;
    color: #000;
}

.download-btn {
    background-color: black;
    color: white;
    font-size: 1.5rem;
    height: 4.5rem;
    padding: 1.1rem 2rem;
    border: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 0 !important;
}

/* Hover Effect */
.download-btn:hover {
    background-color: #F8F8F8;
    color: black !important;
}
.resume-description {
    color: #3E3E3E
}

/* Existing CSS (unchanged) */
.footer {
  background-color: #000;
  margin-top: 10rem;
  position: relative;
  overflow: hidden;
}

/* White curtain panels */
.footer {
  position: relative;
  background: #000; /* footer background stays black */
  overflow: hidden;
  margin-top: 5rem;
}

.footer-inner {
  position: relative;
  z-index: 1; /* keep content above panels */
  color: white;
  padding: 4rem 2rem;
}

.footer-screen {
  position: absolute;
  left: 0;
  width: 100%;
  height: 30%;   /* each panel covers half */
  background: #fff; /* curtain color */
  z-index: 2;   /* above footer content initially */
  transition: transform 0.1s linear;
}

.footer-screen.top {
  top: 0;
  transform: translateY(0);
}

.footer-screen.bottom {
  bottom: 0;
  transform: translateY(0);
}


.motion-footer-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.motion-footer-wrapper {
    display: flex;
    width: fit-content;
    animation: scrollLeft 10s linear infinite;
}

.motion-footer {
    font-size: 212px;
    white-space: nowrap;
    padding-right: 4rem; /* Space between text instances */
    flex-shrink: 0;
}


@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Move by half the wrapper width */
    }
}

.get-in-touch-section{
    margin-top: 7rem;
}

.get-in-touch {
    margin-left: 10rem;
    height: 4.5rem;
    padding: 1rem 2rem;
    border: none;
    font-weight: 500;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border-radius: 0;
}

.get-in-touch:hover {
    background-color: rgb(234, 234, 234);
    color: black;
}

.available-text {
    font-size: 1.6rem;
    color: rgb(255, 255, 255);
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,2); }
  70%  { box-shadow: 0 0 0 0.9rem rgba(255,255,255,0); } /* use rem instead of px for scaling */
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* target the icon's bounding box and force it to be square */
.bi-circle-fill {
  display: inline-flex;           /* allow width/height and center contents */
  width: 1rem;                    /* square */
  height: 1rem;                   /* same as width */
  align-items: center;
  justify-content: center;
  font-size: 1rem;             /* tune so the glyph fits inside the square */
  line-height: 1;
  padding: 0;
  margin: 0;                       /* margins from ms-5 etc can remain on element itself */
  color: #fff;
  border-radius: 50%;             /* now this will be a true circle */
  animation: pulse 2s infinite;
  -webkit-font-smoothing: antialiased;
}


.email-text {
    margin-right: 10rem;
    font-size: 2.5rem;
    color: #ffff;
    font-weight: 500;
}

.email-text:hover {
  color: #C9C9C9; /* darker on hover */
}

.social-section {
    color: #fff;
    margin-top: 9rem;
}

.social-section:hover {
    color: #C9C9C9; /* Maintains white color on hover */
}

.social {
    margin-left: 10rem;
    color: #fff;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-decoration: none; /* Ensures no underline by default */
    position: relative; /* Needed for the pseudo-element */
    display: inline-block; /* Constrains underline to text width */
    transition: all 0.3s ease; /* Smooth hover transition */
}

/* Animated underline effect */
.social:hover {
    color: #C9C9C9; /* Maintains white color on hover */
}

.social:hover::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px; /* Adjust distance from text */
    width: 100%;
    height: 1px; /* Underline thickness */
    background-color: #fff; /* White underline */
    animation: underlineFade 0.3s ease-out;
}

.social-text {
    margin-right: 10rem;
    color: #C9C9C9;
    font-size: 2.4rem;
    max-width: 40rem;
    text-align: right;
    margin-left: 2rem;
}


.work-heading {
    font-size: 122px;
}

.work-image-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

/* Existing CSS (unchanged) */
.work-image-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 49.5%; /* Adjust width as needed */
    transition: transform 0.3s ease-in-out, margin-bottom 0.3s ease-in-out; /* Smooth transitions */
    margin-bottom: 20px; /* Add some initial margin to separate images */
}

.img-border:hover {
    /* Remove the transform and margin */
    border: 2px solid #EEEEEE; /* Thin black border - change color as needed */
    box-sizing: border-box; /* Ensures border doesn't affect dimensions */
}


.work-image-container img {
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out; /* Smooth transitions */
}

.work-image-container:hover img {
    opacity: 0.7; /* Optional: Reduce image opacity on hover */
}

.hover-icon {
    position: absolute;
    bottom: 10rem;
    right: 5rem;
    font-size: 7rem;
    color: black;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.work-image-container:hover .hover-icon {
    opacity: 1;
}

/* Update the work-image-caption styles */
.work-image-caption {
    font-size: 24px;
    font-weight: 500;
    margin-top: 10px;
    text-align: left;
    position: relative;
    color: black; /* Force text color to black */
    display: inline-block; /* Makes underline only as wide as text */
}

/* Update the underline animation */
.work-image-caption::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 1px;
    width: 0;
    height: 2px;
    background-color: black;
    transition: width 0.5s ease-in-out;
}

/* No changes needed to this part - it works correctly */
.work-image-container:hover .work-image-caption::after {
    width: 100%;
}

/* Update the view case study text */
.view-work-case-study {
    font-size: 1.5rem;
    color: black; /* Changed from #a6a6a6 to black */
    margin-top: -3px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.work-image-container:hover .view-work-case-study {
    animation: fadeOut 0.5s ease-in-out 1s forwards;
}

.work-image {
    gap: 2.5rem; /* Adjust this value as needed */
}

/* Or if you need to target Bootstrap spacing */
.work-image > .work-image-container {
    margin-right: 0rem; /* Negative margin to reduce space */
}

@keyframes fade-in-out {
    0% { opacity: 0; }
    30% { opacity: 1; }
    100% { opacity: 0; }
}

.work-image-caption {
    font-size: 2.5rem;
    margin-top: 10px;
    text-align: left;
    position: relative;
}

.work-image-caption::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 1px;
    width: 0;
    height: 0.5px;
    background-color: rgb(202, 202, 202);
    transition: width 0.5s ease-in-out;
}

.work-image-container:hover .work-image-caption::after {
    width: 100%;
}

.view-work-case-study {
    font-size: 1.5rem;
    color: #a6a6a6;
    margin-top: -3px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.work-image-container:hover .view-work-case-study {
    opacity: 1;
    transform: translateY(0);
}

.work-separator {
    width: 100%;
    height: 1px;
    background-color: #E5E5E5;
    margin: 40px 0;
    margin-bottom: 7rem;
}


.about-images-wrapper {
    width: 100%;
    overflow: hidden;
    margin-top: 10rem;
    position: relative;
}

.image-scroll-container {
    width: 100%;
    overflow: hidden;
}

.image-scroll-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    will-change: transform;
}


.square-image-frame {
    width: 376px;
    height: 376px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #ddd;
}

.cropped-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.square-image-frame:hover .cropped-image {
    transform: scale(1.05);
}

.brands-scroll-track {
    margin-top: 30px;
    display: flex;
    gap: 10rem;
    will-change: transform;
}

.brands-image-frame {
    width: 220px;
    height: 80.23px;
    overflow: hidden;
    flex-shrink: 0;
}

.brands-image-frame-1 {
    width: 347px;
    height: 56.19px;
    overflow: hidden;
    flex-shrink: 0;
}

.brands-cropped-image {
    width: 174px;
    height: 80.23px;
    /* object-fit: cover; */
    transition: transform 0.3s ease;
}

.brands-image-frame:hover .cropped-image {
    transform: scale(1.05);
}

.experiecne-heading {
    font-size: 72px;
    font-weight: 500;
}

.rotate-right {
    display: inline-block;
    transform: rotate(45deg);
  }

.experience-download-btn {
    background-color: #EEEEEE;
    font-size: 20px;
    width: 273px;                /* fixed width */
    height: 60px;                /* fixed height */
    padding: 0 1rem;             /* only horizontal padding, since height is fixed */
    border: none;
    color: black;
    border-radius: 0;
    font-weight: 500;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}



.experience-download-btn:hover {
    background-color: black;
    color: #ffff !important;
}

.experience-section {
    display: flex;
    flex-direction: column;
    margin-left: 632px;
    gap: 2rem;
    padding: 2rem;
}

.experience-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
}

.experience-image {
    width: 110px;
    height: 110px;
}

.experience-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.small-text {
    font-size: 16px;
    font-weight: 500;
    color: #525252;
}

.big-text {
    font-size: 32px;
    font-weight: 700;
}

.medium-text {
    font-size: 20px;
    font-weight: 500;
    color: #525252;
}

/* MOBILE VIEW ONLY */
@media (max-width: 788px) {
    .page-container {
        margin-left: 5px;
        margin-right: 5px;
    }

    body {
        cursor: auto; /* restore default cursor on mobile/touch */
    }

    .cursor-circle {
        display: none !important;
    }
  .navbar-custom {
    width: 100%;
    border-radius: 0;
    padding: 1rem;
    background-color: transparent !important;
    display: flex;
    justify-content: flex-start; /* Puts the icon on the left */
    position: relative;
}

/* Custom hamburger icon (bold) */
.navbar-toggler {
    margin-left: auto;
    border: none;
    background: transparent;
    padding: 0;
}

.navbar-toggler-icon {
    background-image: none;
    display: inline-block;
    width: 30px;
    height: 24px;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon div {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: black;
    left: 0;
    transition: all 0.3s;
}

.navbar-toggler-icon::before {
    top: 0;
}

.navbar-toggler-icon::after {
    bottom: 0;
}

.navbar-toggler-icon div {
    top: 50%;
    transform: translateY(-50%);
}   

/* Dropdown menu with background */
.navbar-collapse {
    background-color: #000000 !important; /* Set your desired background */
    border-radius: 1rem;
    padding: 1rem;
    margin-top: 1rem;
    position: absolute;
    top: 100%;
    right: 16px;
    width: 140px;
    text-align: left;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    z-index: 1000;
}

.navbar-nav {
    flex-direction: column;
    width: 100%;
    align-items: flex-end;
    padding: 0;
    margin: 0;
}

.nav-item {
    width: 100%;
    text-align: right;
}

.nav-link {
    font-size: 1.5rem;
    padding: 0.5rem 0;
    color: rgb(255, 255, 255) !important;
    text-align: right;
}

#cookie-banner {
        left: 50% !important;
        transform: translateX(-50%);
        bottom: 20px !important;
        width: 95% !important;
        max-width: 95% !important;
        padding: 0.8rem 1rem !important;
        font-size: 0.9rem !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 0.8rem !important;
    }

    #cookie-banner > div {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 1rem !important;
        width: 100%;
    }

    #cookie-banner i {
        flex-shrink: 0;
        font-size: 20px !important;
    }

    #cookie-banner > div span {
        white-space: nowrap;
        font-size: 0.85rem !important;
    }

    #cookie-banner button {
        padding: 0.45rem 0.9rem !important;
        font-size: 0.85rem !important;
        flex-shrink: 0;
    }

    #decline-cookies {
        background: #EEEEEE !important;
    }

    #accept-cookies {
        background: #000 !important;
        color: #fff !important;
    }

    

  .header-container {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 0; 
  }

  .circle-button-wrapper {
    order: -1; /* Show image first */
    margin-left: -5px; /* Start exactly at left */
    padding-left: 0;
    align-self: flex-start; /* Prevent centering */
  }

  .circle-button {
    margin: 0;
    padding: 0;
    align-self: flex-start; /* Ensure button is not centered */
  }

  .custom-heading {
    font-size: 50px !important;
    margin-top: 2rem;
    margin-left: -9px;
    margin-right: 5px;
    text-align: center;
    align-self: center; /* Center the text below the image */
    margin-top: -4rem !important;
  }

    .custom-heading-container {
        display: flex;
        justify-content: space-between; /* Push heading to the left and button to the right */
        align-items: center; /* Align items vertically */
        width: 100%; /* Ensure the container takes full width */
        gap: 1rem; /* Add some spacing between heading and button */
        padding: 0 5%; /* Add padding to align with the rest of the content */
    }

    .circle-button {
        width: 8rem; /* Smaller button size for mobile */
        height: 7.5rem; /* Smaller button size for mobile */
        margin-top: -12%; /* Remove top margin */
    }

    .portfolio-email {
        font-size: 1.5rem; /* Smaller font size for mobile */
        margin-top: 2.5rem !important; /* Adjust top margin */
        margin-left: 11px;
    }

    .responsive-text-container{
        width: 95%;
        margin-left: 10px;
        margin-right: 0px;
    }

    .right-justified-text{
        width: 100%;
        line-height: 1.5;
        margin-right: 65px !important;
        margin-left: 0px !important;
        text-indent: 10rem;
        word-spacing: 2px;
    }

    .right-justified-text p{
        font-size: 24px !important;
        line-height: 1.5;
        box-sizing: border-box;
        word-spacing: 4px;
        letter-spacing: 0px;
    }
    .no-word-break {
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
    }
    /* For Bootstrap users (these classes are already available) */
    .text-end { 
        text-align: right !important; 
        font-size: 2.7rem;
    }
    .text-justify { text-align: justify !important; }
    .text-start { text-align: left !important; }

    .d-flex {
    flex-wrap: nowrap; /* Prevents items from wrapping */
}
    
    .side-heading {
        font-size: 20px !important;
        text-align: left !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        margin: 0 !important;
        flex: 1 !important;
        min-width: 0 !important;
        /* Remove or adjust this line */
        margin-left: 12px !important;
    }

    .btn-primary {
        font-size: 1.2rem !important;
        height: 42px !important;
        padding: 0.5rem 1.5rem !important;
        white-space: nowrap !important;
        margin: 0 !important;
        margin-right: 14px !important;
        background-color: #000;
        color: #fff !important;
    }

    .work-image{
        margin-left: -4px;
        margin-right: 8px;
    }

    .home-separator {
        margin-top: 5rem;
    }

    .about-side-heading {
        font-size: 4rem; /* Smaller font size for mobile */
    }

    .brands-side-heading {
        font-size: 4rem; /* Smaller font size for mobile */
    }

    .about-image {
        width: 100%; /* Full width on mobile */
        height: auto;
    }

    .resume-description {
        font-size: 1.5rem; /* Smaller font size for mobile */
    }

    .download-btn {
        font-size: 1.2rem;
        height: 3.5rem;
        padding: 0.5rem 1.5rem;

        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem; /* optional: spacing between icon and text */
    }


    .portfolio-item {
        margin-bottom: 2rem; /* Add spacing between stacked items */
    }

    .work-image-container {
        width: 100%; /* Full width on mobile */
        margin-bottom: 2rem; /* Add spacing between stacked items */
    }

    .work-image-caption, .view-work-case-study {
        font-size: 1rem; /* Smaller font size for mobile */
    }

    .work-heading {
        font-size: 50px; /* Smaller font size for mobile */
        margin-left: 11px;
    }

    .work-separator {
        align-items: center;
        width: 94%;
        margin-bottom: 3rem; /* Reduce bottom margin for mobile */
        margin-left: 12px;
    }
    .work-image-wrapper {
        flex-direction: column; /* Stack images vertically */
        gap: 1rem; /* Reduce gap for mobile */
    }
    .mobile-column {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
    .work-image{
        margin-left: 12px;
    }
    

    .work-image-container {
        width: 98.6%; /* Full width for mobile */
        margin-bottom: 2rem; /* Add spacing between stacked images */
    }

    .work-image-caption {
        font-size: 1.8rem; /* Smaller font size for mobile */
    }

    .view-work-case-study {
        font-size: 1.2rem; /* Smaller font size for mobile */
    }

    .hover-icon {
        position: absolute; /* Position the icon within the image container */
        bottom: 6rem; /* Adjust bottom position */
        right: 2rem; /* Adjust right position */
        font-size: 2.5rem; /* Adjust icon size */
        color: black; /* Icon color */
        opacity: 0; /* Initially hidden */
        transition: opacity 0.3s ease-in-out; /* Smooth transition */
        font-size: 5rem;
    }

    .mobile-show-more {
        font-size: 1.2rem !important;
        height: 42px !important;
        padding: 0.5rem 1.5rem !important;
        white-space: nowrap !important;
        margin: 0 !important;
        margin-right: -8px !important;
        background-color: #000;
        color: #fff !important;
    }

    .mobile-side-heading {
        font-size: 20px !important;
        text-align: left !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        margin: 0 !important;
        flex: 1 !important;
        min-width: 0 !important;
        /* Remove or adjust this line */
        margin-left: -9px !important;
    }

    .square-image-frame {
        width: 140px;
        height: 140px;
    }

    .about-images-wrapper {
        flex-wrap: wrap; /* Allow images to wrap to the next line */
        gap: 0.5rem; /* Reduce gap for mobile */
        margin-top: 5rem; /* Reduce top margin for mobile */
    }

    
    .about-side-heading {
        font-size: 32px; /* Smaller font size for mobile */
        margin-left: 11px;
        margin-right: 8px;
    }

    .brands-side-heading {
        font-size: 32px; /* Smaller font size for mobile */
        margin-left: 11px;
        margin-right: 8px;
    }
    
    .about-image-container {
        width: 98% !important;
        margin-left: 3px;
        margin-right: 8px;
    }
    .resume-description {
        font-size: 1.5rem; /* Smaller font size for mobile */
    }
    
    .square-image-frame{
        width: 182px;
        height: 182px;
    }

    .experience-download-btn {
        font-size: 1.2rem;
        height: 3.5rem;
        padding: 0.5rem 1.5rem;

        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .download-button{
        width: 395px;
        height: 110px;
        margin-left: 13px;
        margin-right: 8px;
    }

    .experience-section {
        margin-left: 1px; /* Reduce left margin for mobile */
        padding: 1rem; /* Reduce padding for mobile */
    }

    .experience-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start; /* Align text top with image */
    gap: 1rem;
}

.experience-image {
    width: 52px !important;
    height: 52px;
    flex-shrink: 0;
}

.experience-text {
    margin-left: 4px !important;  /* Override .ms-5 */
    margin-top: -17px !important;   /* Align with top of image */
}

    .small-text {
        font-size: 1.2rem; /* Smaller font size for mobile */
    }

    .big-text {
        font-size: 1.5rem; /* Smaller font size for mobile */
    }

    /* Stack image and paragraph vertically on mobile */
    .container-fluid.d-flex.w-100 {
        flex-direction: column; /* Stack image and paragraph vertically */
        align-items: center; /* Center-align items */
    }

    .col-md-6, .col-md-5 {
        width: 100%; /* Full width for mobile */
        text-align: center; /* Center-align text */
    }

    .col-md-6 img {
        margin-bottom: 2rem; /* Add spacing between image and paragraph */
    }

    .footer {
        display: flex;
        flex-direction: column;
    }

    .motion-footer,
    .motion-footer-container,
    .motion-footer-wrapper {
        display: none !important;
    }

    /* Social section - should be first */
    .social-section {
        width: 95%;
        order: 1;
        flex-direction: column;
        margin-left: 13px;
        align-items: flex-start;
        margin-top: 30px;
    }

    .social{
        font-size: 20px !important;
    }

    /* Social links in a row */
    .social-section .flex-column {
        flex-direction: row !important;
        gap: 1.5rem;
        margin-bottom: 1rem;
    }

    /* Social paragraph text */
    .social-text {
        font-size: 32px;
        margin: 0;
        margin-top: 1.5rem;
    }
    /* Social links */
    .social {
        font-size: 1.5rem;
        margin: 0 !important;
    }

    

    /* Get in touch section (wrapper div) */
    .get-in-touch-section {
        margin-top: 25px;
        margin-left: -75px;
        order: 4;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    /* Available for work text */
    .available-text {
        width: 95%;
        order: 1;
        font-size: 1.2rem;
        margin-left: 5px !important;
        margin-top: 0.5rem;
    }

    /* Get in touch button */
    .get-in-touch {
        width: 95%;
        order: 0;
        margin-left: -6px;
        font-size: 1.5rem;
        height: auto;
        padding: 0.5rem 1.5rem;
        white-space: nowrap;
    }

    /* Email */
    .email-text {
        width: 42%;
        order: 2;
        margin-top: 25px;
        margin-left: 5px;
        font-size: 1.4rem;
        display: block;
        margin-bottom: 25px;
    }

}

