* {
    font-family: 'Outfit', sans-serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Outfit, sans-serif;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

section {
    margin: 100px 160px;
}

#contact {
    margin: 120px 120px 0;
    box-sizing: border-box;
}
#Hello{
    height: calc(var(--vh, 1vh) * 70);
}

h1 {
    font-family: Outfit, sans-serif;
    font-size: 80px;
    line-height: 1.5;
    color: #393939;
    font-weight: 600;
    margin: 0 auto;
}

h2 {
    font-family: Outfit, sans-serif;
    font-size: 48px;
    line-height: 1.5;
    color: #393939;
    font-weight: 700;
    margin: 0 auto;
}

h3 {
    font-family: Outfit, sans-serif;
    font-size: 40px;
    line-height: 1.5;
    color: #393939;
    font-weight: 700;
    margin: 0 auto;
}

h4 {
    font-family: Outfit, sans-serif;
    font-size: 32px;
    line-height: 1.5;
    color: #393939;
    font-weight: 600;
    margin: 0 auto;
}

h5 {
    font-family: Outfit, sans-serif;
    font-size: 24px;
    line-height: 1.5;
    color: #393939;
    font-weight: 600;
    margin: 0 auto;
}

h6 {
    font-family: Outfit, sans-serif;
    font-size: 20px;
    line-height: 1.5;
    color: #393939;
    font-weight: 600;
    margin: 0 auto;
}

p {
    font-family: Outfit, sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #5A5A5A;
    font-weight: 400;
    padding: 8px 0;
    max-width: 70%;
    margin: 0 auto;
}

.bg {
    background: url('Images/Ellipse 3.png') no-repeat center center;
    background-size: 100% 100%;
}

.container {
    display: flex;
    flex-direction: column;
}
.case-container{
    margin: 0 130px;

}
.hello{
    text-align: center;
}

.content {
    text-align: center;
    height: 100vh;
}

.content h2 {
    color: #7100BD;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border: 1px solid #CDCDCD;
    border-radius: 9999px;
    padding: 18px 40px;
    max-width: 60%;
    margin: 40px auto 80px;
    position: sticky;
    top: 20px; /* Keeps navbar fixed at top */
    z-index: 1000; /* Makes sure navbar stays on top of other elements */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%; /* Ensures navbar takes full width of its container */
}

.logo img {
    height: 24px;
    object-fit: contain;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger span {
    width: 25px;
    height: 3px;
    background-color: #393939;
    border-radius: 2px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none !important;
    margin: 0;
    padding: 0;
    color: #393939;
}

.nav-links li {
    cursor: pointer;
    font-weight: 500;
}

.nav-links li a {
    list-style: none;
    text-decoration: none;
    color: #393939;
}

.nav-links li a:hover {
    color: #7100BD;
}

/* New CSS for the full-page mobile menu */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95); /* Semi-transparent white */
    z-index: 1001; /* Above the main navbar */
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-nav-overlay .close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-nav-overlay .close-button span {
    position: absolute;
    width: 70%;
    height: 2px;
    background-color: #393939;
}

.mobile-nav-overlay .close-button span:first-child {
    transform: rotate(45deg);
}

.mobile-nav-overlay .close-button span:last-child {
    transform: rotate(-45deg);
}

.mobile-nav-overlay .mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav-overlay .mobile-nav-links li {
    padding: 20px 0;
}

.mobile-nav-overlay .mobile-nav-links li a {
    text-decoration: none;
    color: #393939;
    font-size: 18px;
}

.mobile-nav-overlay .mobile-nav-links li a:hover {
    color: #7100BD;
}

.buttons {
    margin-top: 30px;
    display: flex;
    gap: 24px;
    justify-content: center;
    text-decoration: none;
    text-align: center;
}


.btn {
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
}

.buttons a {
    text-decoration: none;
    color: #7100BD;
    text-align: center;
}

.nav-links a.active {
    color: #7100BD;
    font-weight: bold;
}

.primary:hover {
    background-color: rgba(99, 2, 164, 1);
}

.secondary:hover {
    background-color: rgba(246, 246, 246, 1);
}

.primary {
    background-color: #7100BD;
    color: white;
    border-radius: 999px;
    padding: 16px 32px;
    border: 1px solid #633F65;
    text-align: center;
}

.secondary {
    background-color: white;
    color: #7100BD;
    border-radius: 999px;
    padding: 16px 32px;
    border: 1px solid #633F65;
    text-align: center;
}

/* General Work Section Layout */
section.work {
    flex-direction: column;
    display: flex;
    margin-top: 32px;
}

.work .heading {
    text-align: center;
    margin-bottom: 40px;
}

.work .project {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    align-items: center;
    border: 1px solid #CDCDCD;
    padding: 32px;
    border-radius: 24px;
    margin-bottom: 32px;
}

/* Project Info Styling */
.project-info {
    width: 50%;
}

.project-info h3 {
    color: #7100BD;
}

.work .date {
    color: #007bff;
    font-size: 18px;
    margin: 0;
}

.work .tag {
    background-color: #BD00A6;
    border: 1px solid #990086;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 8px;
}

.divider {
    border: 1px solid #CDCDCD;
    margin: 24px 0;
    width: 200px;
}

.work .description {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #5A5A5A;
}

/* Image Section Styling */
.project-image {
    width: 50%;
}

.image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 66.66%; /* 3:2 aspect ratio (adjust as needed) */
    overflow: hidden;
    border-radius: 8px;
}

.image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}


.philosophy {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    height: auto;
}

.philosophy h2 {
    color: #7100BD;
}

.philosophy p {
    font-weight: 700;
    font-size: 40px;
    color: #393939;
    text-align: center;
    margin: 0 auto;}

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about p {
    text-align: center;
}

.about-text-primary {
    font-size: 18px;
    font-weight: 400;
    color: #393939;
    margin: 0 auto;
}

.about-text-secondary {
    font-size: 18px;
    font-weight: 400;
    color: #393939;
    margin: 0 auto;
}

.highlight {
    color: #0084FF;
    font-weight: 700;
}

.beliefs-section {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.beliefs-title{
    margin-bottom: 16px;
}

.beliefs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    padding-top: 24px;
}

.belief-card {
    display: flex;
    flex: 1;
    flex-direction: row;
    padding: 24px;
    border: 1px solid #CDCDCD;
    border-radius: 24px;
    background-color: #fff;
    align-items: center;
}


.belief-icon {
    border-radius: 8px;
    margin: 16px;
    flex-shrink: 0;
    text-align: center
}

.belief-icon i {
    font-size: 40px;
    text-align: center;
    padding: 16px;
    color: #7100BD;

}

.beliefs {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.belief-content {
    text-align: start;
}

.belief-content p {
    color: #5A5A5A;
    margin: 0;
    padding: 8px;
}
.testimonial{
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    flex-direction: column;
}
.cards{
    display: flex;
    flex: 1;
    border: 1px solid #CDCDCD;
    border-radius: 24px;
    margin-top: 32px;
    min-height: 560px;



}

.testimonial-card {
    padding: 40px 40px;
    display: none;
    flex-direction: column;
    margin-top: 32px;
    transform: translateX(100%);
    transition: transform 0.8s ease, opacity 0.1ms ease;
    position: absolute;
    flex: 1;
    justify-content: center;

}
.testimonial-card.active {
    display: flex;
    opacity: 1;
    transform: translateX(0);
    position: relative;
    z-index: 1;

}

.testimonial-card.exit-left {
    transform: translateX(-100%);
    opacity: 0;
}

.testimonial-card.exit-right {
    transform: translateX(100%);
    opacity: 0;
}

.testimonial-header {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin-bottom: 20px;
    justify-content: center;
}

.testimonial-logo-container {
    margin-right: 80px;
}
.testimonial-logo-container img{
    height: auto;
    object-fit: contain;
}



.testimonial-logo-subtext {
    font-size: 18px;
    color: #5A5A5A;
    max-width: 100%;
}

.testimonial-text-container {
    flex-grow: 1;
}

.testimonial-text {
    font-size: 18px;
    color: #393939;
    padding: 12px 12px 24px 0;
    max-width: 100%;
}

.testimonial-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin-right: 10px;
    overflow: hidden;
}

.author-info h6 {
    color: #0084FF;
    font-weight: 700;
}

.author-info p {
    font-size: 16px;
    color: #5A5A5A;
    margin-bottom: 0;
    padding: 0;
    max-width: 100%;
}

.testimonial-controls {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    margin-left: auto; /* Push controls to the right */
    position: absolute;
    top: 130px;
    right: 40px;
    z-index: 1;
}


.control-button {
    background: #ffffff;
    color: #7100BD;
    cursor: pointer;
    border: 1px solid #CDCDCD;
    border-radius: 50%;
    padding: 12px;
    margin-right: 24px;
    line-height: 0;
}

.control-button-next {
    background: #7100BD;
    color: #ffffff;
    cursor: pointer;
    border: 1px solid #CDCDCD;
    border-radius: 50%;
    padding: 12px;
    line-height: 0;
}

.contact-us {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    height: -webkit-fill-available;
    justify-content: center;
}

.bg-contact {
    background: url('Images/contact-us.png') no-repeat center center;
    background-size: contain;

}

.contact-title {
    font-weight: 700;
    color: #7100BD;

}

.contact-intro {
    font-size: 56px;
    color: #393939;
    font-weight: 400;
    text-align: center;
}

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

.footer p {
    font-size: 16px;
    color: #393939;
}

.site-footer {
    padding: 30px 20px;
    color: #393939;
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left p {
    padding-top: 0;
}

.footer-left ul li {
    list-style: none;
    padding-right: 16px;
    display: flex;
    align-items: center;
}

li img {
    padding-right: 8px;
    color: #393939;
}

.footer-left,
.footer-middle,
.footer-right {
    text-align: center; /* Center text on smaller screens */
}

.footer-left a, .footer-middle a, .footer-right a {
    text-decoration: none;
    color: #393939;
}

.footer-left a:hover, .footer-middle a:hover,
.footer-right a:hover {
    text-decoration: underline;
    color: #7100BD;
}

.footer-nav,
.footer-secondary-nav {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0 0 16px 0;
    margin: 0;
    justify-content: center;
    gap: 16px;

}

.footer-nav li,
.footer-secondary-nav li {
    margin: 0;
}

/*about*/

.intro-section {
    display: flex;
    flex-direction: row;
    text-align: left;
}

.intro-text {
    padding-left: 48px;
}

.intro-text h2 {
    color: #393939;
}

.intro-image {
    flex: 0 0 30%;
    height: 591px;
    border-radius: 12px;
    background: url('Images/IMG_0192.JPG') no-repeat center center;
    background-size: cover;
}

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

.contact-details {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.project-title {
    margin: 0;
}

.contact-details p {

    font-size: 18px;
    margin: 8px 0;
    padding: 8px 0;
}

.contacts ul {
    list-style: none;
    align-items: center;
    padding: 0;
}

.contacts ul li {
    padding: 8px 0 8px 0;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.contacts a {
    text-decoration: none;
    color: #393939;
}


.contact a:hover {
    text-decoration: underline;
    color: #7100BD;
}

.impact h2 {
    color: #7100BD;
    max-width: 70%;
}

.impact p {
    font-size: 18px;
    color: #393939;
    text-align: center;
}
.approach{
    padding-top: 24px;
}

.approach p {
    text-align: center;
}

/*experience*/

.experience {
    margin: unset;
}

.experience-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.experience-section h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 40px;
}

.experience-entry {
    display: flex;
    gap: 60px;
    flex-direction: row;
    padding: 32px 0;
}

.experience-left {
    flex: 1;
}


.experience-left h3 {
    color: #7100BD;
    margin: 0 0 8px 0;
}

.experience-right {
    flex: 2;
}

.dates {
    color: #5E5E5E;
    padding-top: 0;
}

.role {
    font-weight: 700;
    margin-bottom: 16px;
}

.responsibilities {
    padding-left: 20px;
    margin: 0;
    color: #393939;
}

.responsibilities li {
    margin-bottom: 14px;
    font-size: 18px;
}

.earlier-experience {
    display: flex;
    flex-direction: column;
    padding: 40px 0;
}

.earlier-experience h3 {
    color: #7100BD;
}

.role-earlier {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.role-earlier h4, .role-earlier p {
    text-align: start;
    padding-right: 20px;
    margin: 0;
}

.role-earlier p {
    padding: 8px 0;
}

.case-study {
    display: flex;
    text-align: start;
}
.description{
    max-width: 100%;
    padding: 4px;
}
.description-case{
    margin: 0 auto;
}
.section-title {
    margin-left: 0;
}

.problem-list {
    font-size: 18px;
    line-height: 1.5;
    color: #5A5A5A;
}
.problem-container p{
    max-width: 100%;

}
.problem-intro{
    padding: 0;
    text-align: left;
}
.research-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 40px 0;
}
.research-container h2, .research-intro{
    text-align: center;
    margin: 0 auto;
}
.research h2{
    text-align: left;
}
.research-card {
    background-color: white;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #CDCDCD;
    flex: 1;
}

.icon-placeholder {
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid #CDCDCD;

}
.icon-placeholder i{
    font-size: 32px;
    text-align: center;
    padding: 16px;
    color: #7100BD;
}

.research-card strong {
    font-size: 18px;
    margin-bottom: 12px;
    color: #393939;
}

.research-card span {
    font-size: 18px;
    color: #5A5A5A;
}

.key-questions {
    margin-bottom: 48px;
}

.top-insights {
    margin-bottom: 48px;
}


.key-questions ol,
.top-insights ul, .my-role ul {
    padding-left: 24px;
    font-size: 18px;
    line-height: 1.5;
    color: #5A5A5A;
}

.section-heading, .design-goal-intro {
    text-align: center;
    max-width: 100%;
}


.step {
    margin: 16px 0;
}
.step p{
    max-width: 100%;
}

.token-list {
    font-size: 18px;
    line-height: 1.5;
    color: #5A5A5A;
    margin-top: 16px;
}



#scrollToTopBtn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
    background-color: #393939;
    color: #fff;
    border: none;
    padding: 14px 16px;
    border-radius: 1000px;
    cursor: pointer;
    display: none; /* Hidden by default */
    transition: opacity 0.3s ease;
}

#scrollToTopBtn.show {
    display: block;
}

.wall {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 80vw;
    margin: 0 auto;
}


.outcome {
    text-align: start;
    display: flex;
}

.outcome h2 {
    margin: 0;
}
.outcome p{
    margin-bottom: 32px;
}
.process-steps, .my-role {
    margin-bottom: 32px;
}

.solved {
    font-weight: 700;
    color: #393939;
}

.outcome img {
    width: 50%;
    padding: 8px;
    border-radius: 8px;
    /*flex grow may alter aspect ratio depending on images */
    flex-grow: 1;
    object-fit: cover;
}

.outcome img:hover {
    transition: transform 0.3s ease;
    transform: scale(1.02);
}
.case-study-navigation {
    display: flex;
    padding-top: 40px;
    border-top: 1px solid #ddd;
    align-items: center;
    justify-content: center;
}

.project-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.previous{
    padding: 8px;
}
.next{
    padding: 8px;
}




/* Responsive adjustments */
@media (max-width: 1650px) {
    .footer {
        align-items: center;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-nav, .footer-secondary-nav {
        text-align: center;
        justify-content: center;
        padding: 0 0 16px 0;
    }

    .footer-left, .footer-middle, .footer-right {
        text-align: center;
    }

    .bg-contact {
        background-size: cover;
    }

    #contact {
        margin: 0;
    }
    .intro-text h2{
        font-size: 72px ;
    }

    .contact-details ul {
        margin: 0;
    }



}

@media (max-width: 1300px) {
    h1 {
        font-size: 64px;
    }

    h2 {
        font-size: 40px;
    }

    h3 {
        font-size: 32px;
    }

    h4 {
        font-size: 24px;
    }

    h5 {
        font-size: 20px;
    }

    p {
        font-size: 18px;
        padding: 16px 0;
        max-width: 100%
    }

    section {
        margin: 80px 100px;
    }

    #contact {
        margin: 0;
    }
    .case-container{
        margin: 0;
    }

    .navbar{
        max-width: 70%;
        padding: 16px 32px;

    }
    #Hello {
        height:auto
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        right: 30px;
        background: white;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        z-index: 999;
    }

    .nav-links.active {
        display: none;
    }
    .nav-links {
        display: none; /* Hide desktop nav */
    }
    .burger {
        display: flex; /* Show burger icon */
    }

    .project {
        flex-direction: column-reverse;
        padding: 16px;

    }

    .project-image {
        width: 100%;
    }

    .beliefs {
        flex-direction: column;
    }

    .testimonial-content {
        flex-direction: column;
        margin-right: 0;
        align-items: start;
    }

    .belief-icon {
        margin-bottom: 16px;
    }

    .testimonial-card {
        padding: 20px 20px;
    }
    .testimonial-controls{
        top: 160px;
    }

    .project-info{
        width: 100%;
    }

    .philosophy h2 {
        font-size: 56px;
    }

    .philosophy p {
        font-size: 40px;
    }

    .about-text-primary {
        font-size: 18px;
    }

    .about-text-secondary {
        font-size: 18px;
        padding-top: 0;
    }

    .contact-title {
        font-size: 56px;
    }

    .contact-intro {
        font-size: 32px;
    }
    .contacts  li{
        text-decoration: none;
        list-style: none;
    }

    .footer {
        align-items: center;
        text-align: center;
        margin-top: 24px;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-nav, .footer-secondary-nav {
        text-align: center;
        justify-content: center;
        padding: 0 0 16px 0;
    }

    .footer-left, .footer-middle, .footer-right {
        text-align: center;

    }

    .bg-contact {
        background-size: cover;
    }
    .experience{
        text-align: left;
    }

    .experience-entry {
        flex-wrap: wrap;
        flex-direction: column;
        gap: 24px;
    }

    .belief-card {
        flex-wrap: wrap;
    }

    .bg-contact {
        height: auto;
    }

    .contact {
        margin: 80px 100px;
    }
    .contact-us{
        margin-bottom: 40px;
    }

    .intro-section {
        flex-direction: column;
    }

    .intro-text {
        padding: 0;
    }

    .intro-image {
        background: none;

    }

    .role-earlier {
        flex-direction: column;
        align-items: self-start;
        margin-top: 16px;
    }

    .role-earlier h4 {
        align-items: self-start;;
    }

    .contact ul li {
        padding: 8px 0 8px 0;
    }

    .footer-nav {
        row-gap: 16px;
    }

    .beliefs {
        flex: auto;
    }
    .belief-card{
        justify-content: center;
    }
    .belief-content{
        text-align: center;
    }

    .belief-content p {
        padding: 16px 0;
    }

    .problem-list li {
        font-size: 18px;
    }

    .key-questions li {
        font-size: 18px;
    }

    .research-card strong {
        font-size: 18px;
    }

    .research-card span {
        font-size: 18px;
    }

    .top-insights li {
        font-size: 18px;
    }

    .token-list li {
        font-size: 18px;
    }

    .my-role li {
        font-size: 18px;
    }

    .research-stats {
        flex-direction: column;
    }



}

@media (max-width: 1024px) {

    .navbar {
        max-width: 70%;
        padding: 16px 32px;
    }
    .case-container{
        margin: 0;
    }

    p{
        max-width: 100%
    }

    .wall {
        display: flex;
        flex-direction: revert;
        height: auto;
    }

    .outcome img {
        margin: 8px;
        flex-wrap: wrap;
        width: 100%;
    }

    section {
        margin: 60px 60px;
    }
    .content{
        height: 100%;
        margin: 0 60px;
    }

    .belief-content {
        padding-top: 16px;
    }

    .responsibilities > li {
        margin-bottom: 14px;
        font-size: 18px;
    }

    .experience-entry {
        gap: normal;
    }

    .dates {
        padding: 12px 0;
    }

    .contact {
        margin: 60px 60px;
    }
    .testimonial-card {
        padding: 20px 20px;
    }
    .testimonial-controls{
        top: 160px;
    }
    .testimonial-content{
        align-items: start;
    }
    .belief-card{
        justify-content: center;
    }
    .belief-content{
        text-align: center;
    }
    .testimonial-logo-container{
        margin-right: 0;
    }
    .work .project{
        padding: 16px;
    }
    .contact-us{
        margin-bottom: 40px;
    }
    .contact-details {
        flex-direction: column;
        gap: normal;
    }

    .contact-details ul {
        margin: 0;
    }
    .beliefs-section p {
        text-align: center;
    }
    .research-container h2 {
        text-align: center;
    }
    .research-intro{
        text-align: center;
    }


}

@media (max-width: 600px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 40px;
        text-align: center;
    }

    h3 {
        font-size: 28px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 18px;
    }

    p {
        font-size: 18px;
        padding: 12px 0;
        max-width: 100%
    }

    section {
        margin: 60px 20px;
    }

    #contact {
        margin: 0;
        height: calc(var(--vh, 1vh) * 120);
        box-sizing: border-box;
    }
    .case-container{
        margin: 0;
    }


    .belief-content {
        padding-top: 16px;
    }
    .content{
        height: 100%;
        margin: 0 20px;
    }
    .belief-content p {
        padding: 16px 0;
    }
    .belief-card{
        justify-content: center;
    }
    .belief-content{
        text-align: center;
    }

    .navbar {
        max-width: 90%;
        padding: 12px 24px;
    }

    .bg {
        background-size: 100% 100%;
    }

    .content {
        height: auto;
    }

    .contact {
        margin: 40px 20px;
    }

    .bg-contact > .content {
        height: -webkit-fill-available;
    }

    .bg-contact > .container {
        margin-bottom: 0;
    }

    .belief-card {
        flex-direction: column;

    }

    .belief-icon {
        margin-bottom: 12px;
    }

    .contact-details {
        flex-direction: column;
    }

    .contact-details ul {
        margin: 0;
    }

    .testimonial-logo-container {
        margin-right: 0
    }

    .work .description {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .contact-intro {
        font-size: 18px;
        padding: 24px 12px;
    }

    .contact-us {
        padding: 16px 0;
    }

    .contact-title {
        font-size: 48px;
    }

    .footer-nav {
        row-gap: 16px;
    }

    .contact ul li {
        padding: 8px 0 8px 0;
    }

    .about-text-primary {
        font-size: 18px;
    }

    .about-text-secondary {
        font-size: 18px;
    }

    .responsibilities > li {
        margin-bottom: 14px;
        font-size: 18px;
    }

    .problem-list li {
        font-size: 18px;
    }

    .key-questions li {
        font-size: 18px;
    }

    .research-card strong {
        font-size: 18px;
    }

    .research-card span {
        font-size: 18px;
    }

    .top-insights li {
        font-size: 18px;
    }

    .token-list li {
        font-size: 18px;
    }

    .my-role li {
        font-size: 18px;
    }
    .testimonial-card {
        padding: 20px 16px;
    }
    .testimonial-header, .testimonial-content{
        margin: 0;
    }
    .testimonial-controls{
        top: 120px;
        right: 20px;
    }
    .testimonial-logo-container img {
        width: 100%;
    }
    .testimonial-author{
        flex-wrap: wrap;

    }
    .work .project{
        padding: 16px;
    }
    .work .date{
        font-size: 12px;
        padding: 0;
    }
    .buttons{
        flex-direction: column;
        margin: 0;
        gap: 8px;
        width: 100%;
        text-align: center;
        white-space: nowrap
    }
    .divider{
        margin: 12px 0;
        width: 100%;
    }
    .contact-us{
        margin-bottom: 40px;
    }
    .intro-text h2{
        text-align: left;
    }
    .conclusion-title p{
        text-align: center;
    }
    .conclusion{
        text-align: center;!important;
    }
    .design-process-container h2{
        text-align: left;
    }
    .outcome h2 {
        text-align: left;
    }
    .case-study-navigation{
        flex-direction: column;
    }
    .project-title{
        text-align: left;
    }
    .problem-container h2{
        text-align: left;
    }
    .research-intro{
        text-align: center;
    }


    .research-container h2 {
        text-align: center;
    }
    .research-intro{
        text-align: center;
    }
    .beliefs-section p {
        text-align: center;
    }
    .token h2{
        text-align: left;
    }
    .impact h2 {
        max-width: 100%;
    }

    .project-nav {
        width: 100%;
        flex-direction: column;
    }
    .nav-btn{
        flex-direction: row;
    }


}

