/* Center pip install statements in software descriptions */
.center-pip {
    display: block;
    text-align: center;
    margin: 8px 0;
}
@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');

@font-face {
    font-family: CircularStd;
    src: url(assets/fonts/CircularStd-Bold.eot);
    src: url("assets/fonts/CircularStd-Bold.eot?#iefix") format("embedded-opentype"), url("assets/fonts/CircularStd-Bold.woff") format("woff"), url("assets/fonts/CircularStd-Bold.ttf") format("truetype"), url("assets/fonts/CircularStd-Bold.svg#bcc26993292869431e54c666aafa8fcd") format("svg");
}

:root {
    --primary-color: none;
    --overlay-color: rgba(255, 255, 255, 0.9);
    --menu-speed: 0.75s;
    --light-text-color: #444;
    --black-color: #000;
    --white-color: #fff;
    --hero-color: black;
}
.work-hero-card{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: 0 auto 40px auto;
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    align-items: stretch;
    padding: 0;
    border-radius: 16px;
    padding-bottom: 18px;
    border: 1px solid #e2e2e2;
    box-shadow: 0 18px 30px rgba(0,0,0,0.06);
    cursor: default;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.work-hero-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 24px 40px rgba(0,0,0,0.12);
    border-color: #c5d5ff;
}

.work-card-hero-img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

#work-text{
    text-align: left;
    padding: 18px 20px 4px 20px;
}

#work-text h2{
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

#work-text p{
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.work-double-row{
    padding-left: 5vw;
    padding-right: 5vw;
    margin-top: 40px;
}

.research-intro{
    max-width: 760px;
    margin: 0 auto 10px auto;
    color: #444;
}

.research-intro strong{
    font-weight: 600;
}

@media (min-width: 992px){
    .work-double-row{
        padding-left: 8vw;
        padding-right: 8vw;
        margin-top: 60px;
    }
}

@media (max-width: 767.98px){
    .work-double-row{
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 30px;
    }

    .work-hero-card{
        max-width: 100%;
    }

    #work-text{
        padding: 16px 16px 4px 16px;
    }

    #work-text h2{
        font-size: 1.1rem;
    }

    #work-text p{
        font-size: 0.9rem;
    }
}
.project-star {
    position: absolute;
    background: #ffff0080;
    border-radius: 50px;
    padding: 2px 6px;
    font-size: 0.8em;
    top: 40px;
    right: 0;
}

.project-star-mobile {
    display: none;
    background: #ffff0080;
    border-radius: 50px;
    padding: 2px 6px;
    width: 50%;
    margin-bottom: 10px;
    text-align: center;
    font-size: 0.8em;

}

#work-row {
    padding-left: 135px;
    padding-right: 135px;
    width: 100vw;
}

.work-hero {
    /* border:2px solid #444; */
    border-radius: 10px;
    /* box-shadow: 0px 0px 5px #444; */
    width: 90%;
    transition: width 1s;
}
.work-hero:hover{
    width: 95%;
}

.work-des {
    padding-top: 40px;

}

.work-des h1 {
    font-weight: bold;
}

.work-des p {
    text-align: justify;
    font-weight: 100;
}

.work-hero-img {
    width: 100%;
    border-radius: 10px;
}

.technologies h2 {
    font-size: 0.8em;
    font-weight: bold;
}

.tech-stack {
    cursor: pointer;
    margin-right: 10px;
    background: #f2f2f2;
    padding: 2px 4px;
    font-size: 0.8em;
    transition: background 1s;
}

.tech-stack:hover {
    background: beige;
}

.featured {
    margin-top: 10px;
}

.partners {
    /* background:#f2f2f2; */
    height: 50px;
    margin-right: 20px;
}

#partner-logo {
    height: 40px;
    cursor: pointer;
    transition: all 1s;
}


#partner-logo:hover {
    box-shadow: 0px 0px 10px #444;
}

.work-read {
    float: right;
    font-size: 0.8em;
}

.work-read:hover {
    background: #444;
    color: white !important;
    border: 2px solid #444 !important;
}
.work-read:hover {
    background: #444;
    color: white !important;
    border: 2px solid #444 !important;
}

.fade-in-image {
    opacity: 0;
    animation: fadeIn 1.0s forwards;
    border-radius: 15px; /* Rounded corners */
    width: 100%; /* Flexible width */
    height: auto;
    object-fit: cover; /* Ensure the image covers the area without distortion */
}
/* Media query for very small windows */
@media (max-width: 600px) {
    .fade-in-image {
        width: 60%; /* Minimum width of 60% of the screen */
    }
}
.fade-in-text {
    opacity: 0;
    animation: fadeIn 1s forwards;
    animation-delay: 0.5s; /* Delay to ensure text fades in after the image */
}
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
.image-container {
    position: relative;
    text-align: center;
    color: white;
}

.text-overlay {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
}
body {
    font-family: 'Poppins', sans-serif;
}

/* Style for the horizontal line */
.custom-hr {
    border: 0;
    height: 2px;
    background: #333; /* Change color as needed */
    margin-top: 20px; /* Add space above the line */
    margin-bottom: 20px; /* Add space below the line */
}

/* Styles for two images side by side */
.two-images-container {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.two-images-container .image-item {
    width: 40%; /* Each image takes up 40% of the container's width */
}

.two-images-container .image-item img {
    width: 100%;
    height: auto;
    display: block;
}
.lab-principles {
    max-width: 900px;
    margin: 40px auto;
    padding: 28px 32px 24px 32px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border: 1px solid #e4e4e4;
}

.lab-principles h2 {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #222;
    margin-bottom: 18px;
}

.lab-principles ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lab-principles li {
    position: relative;
    padding: 14px 0 4px 28px;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #444;
}

.lab-principles li::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 18px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4c8dff;
}

.lab-principles li + li {
    border-top: 1px solid #f0f0f0;
    margin-top: 10px;
}

.lab-principles b {
    text-transform: none;
    font-weight: 600;
    color: #222;
}

.lab-principles p {
    margin: 0;
}

@media (max-width: 767.98px){
    .lab-principles {
        margin: 28px 16px;
        padding: 22px 18px 18px 18px;
    }

    .lab-principles h2 {
        font-size: 1.5rem;
    }

    .lab-principles li {
        padding-left: 26px;
        font-size: 0.95rem;
    }
}

/* Image gallery on culture page */
.image-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 30px auto 40px auto;
    max-width: 1000px;
}

.image-gallery .gallery-image {
    flex: 1 1 0;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.image-gallery .gallery-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.18);
}

@media (max-width: 767.98px) {
    .image-gallery {
        flex-wrap: wrap;
        gap: 10px;
        padding: 0 12px;
    }

    .image-gallery .gallery-image {
        flex: 1 1 calc(50% - 10px);
    }
}

.comingsoon h1 {
    font-size: 3em;
}

.comingsoon {
    position: absolute;
    margin: auto;
    top: 0;
    /* background: white; */
    text-align: center;
    right: 0;
    bottom: 0;
    left: 0;
    /* width: 40em; */
    height: 10em;
    animation: opac 0.1s ease-in-out 5;
}

.comingsoon a {
    color: #444;
    font-weight: bold;
    text-decoration: none;
    transition: font-size 1s;
}

.comingsoon a:hover {
    color: blue;
    font-size: 1.5em;
}

.social-icons a {
    color: var(--light-text-color);
    text-decoration: none;
    transition: all 1s;
}

.social-icons a:hover {
    color: blue;
}

li span a {
    color: #444;
    text-decoration: none;

}

li span a:hover {
    color: #444;
    text-decoration: none;
}

.copyright-legal {
    font-size: 1.1em;
    color: #444;
    letter-spacing: 0px;
    text-align: left;
}

.legal-links {
    text-decoration: none;
    font-weight: bold;
    transition: all 1s;
}

.legal-links:hover {
    text-decoration: none;
    color: blue;
}

.legal a,
.legal a:hover,
.legal a:active {
    color: #444;
    text-decoration: none;
}

.privacy-policy h1 {
    font-size: 2.5em;
    /* font-family: 'CircularStd'; */
    font-weight: bold;
    letter-spacing: 0.1rem;
}

.privacy-policy h2 {
    font-size: 25px;
    font-family: 'CircularStd';
    /* letter-spacing: 0.1rem; */
}

.legal-des {
    text-align: justify;
    font-weight: 500;
}

.legal-des strong {
    /* font-size: 1.1em; */
    font-weight: 900;
}

.privacy-policy p {
    padding-right: 13vw;
    letter-spacing: 0.8px;
}

.nav-desk {
    height: 10vh;
    /* position: fixed; */
    display: block;
    width: 80vw;
    margin: auto;

    margin-top: 20px;
    left: 0;
    right: 0;
    /* background: black; */
}

.nav-logo {
    height: 100%;
    float: left;


}



.menu-wrap {
    position: fixed;
    top: 50px;
    right: 50px;
    z-index: 1;
    display: none;
}

.menu-wrap .toggler {
    position: absolute;
    top: 0px;
    right: 0;
    z-index: 2;
    cursor: pointer;
    width: 50px;
    height: 50px;
    opacity: 0;
}

.menu-wrap .hamburger {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 60px;
    height: 60px;
    padding: 1rem;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger Line */
.menu-wrap .hamburger>div {
    position: relative;
    flex: none;
    width: 100%;
    height: 2px;
    z-index: 1;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

/* Hamburger Lines - Top & Bottom */
.menu-wrap .hamburger>div::before,
.menu-wrap .hamburger>div::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: -10px;
    width: 100%;
    height: 2px;
    background: inherit;
}

/* Moves Line Down */
.menu-wrap .hamburger>div::after {
    top: 10px;
}

/* Toggler Animation */
.menu-wrap .toggler:checked+.hamburger>div {
    transform: rotate(135deg);
}

/* Turns Lines Into X */
.menu-wrap .toggler:checked+.hamburger>div:before,
.menu-wrap .toggler:checked+.hamburger>div:after {
    top: 0;
    transform: rotate(90deg);
}

/* Rotate On Hover When Checked */
.menu-wrap .toggler:checked:hover+.hamburger>div {
    transform: rotate(225deg);
}

/* Show Menu */
.menu-wrap .toggler:checked~.menu {
    visibility: visible;
}

.menu-wrap .toggler:checked~.menu>div {
    transform: scale(1);
    transition-duration: var(--menu-speed);
}

.menu-wrap .toggler:checked~.menu>div>div {
    opacity: 1;
    transition: opacity 0.4s ease 0.4s;
}

.menu-wrap .menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    visibility: hidden;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-wrap .menu>div {
    background: var(--overlay-color);
    border-radius: 50%;
    width: 200vw;
    height: 200vw;
    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: all 0.4s ease;
}

.menu-wrap .menu>div>div {
    text-align: center;
    max-width: 90vw;
    max-height: 100vh;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-wrap .menu>div>div>ul>li {
    list-style: none;
    color: var(--white-color);
    font-size: 1.5rem;
    padding: 1rem;
}

.menu-wrap .menu>div>div>ul>li>a {
    color: inherit;
    text-decoration: none;
    transition: color 0.4s ease;
}


.legal {
    position: absolute;
    bottom: 25px;
    right: 25px;
}

.image-headshot {
    width: 200px; /* Set a fixed width */
    height: 200px; /* Set a fixed height */
    object-fit: contain; /* Ensure the image covers the area without distortion */
    border-radius: 50%; /* Optional: Make the images circular */
}
/* Add vendor prefixes for better compatibility */
.image-headshot {
    -webkit-transform: scale(1.0); /* Safari and Chrome */
    -moz-transform: scale(1.0); /* Firefox */
    -ms-transform: scale(1.0); /* IE 9 */
    -o-transform: scale(1.0); /* Opera */
    transform: scale(1.0); /* Standard */
}
.hero-tag {
    margin-left: 0; /* Align the heading with the container */
    padding-left: 0; /* Remove any additional padding */
}
.row {
    width: 90%; /* Ensure the row width is consistent */
    margin: 0 auto; /* Center the row */
    height: auto;
    animation-duration: 1.5s;
}

.contact-hero {
    margin-top: 0vh;
    font-size: 3.5em;
}

.hero-des {
    padding-right: 60px;
    text-align: justify;
    /* font-weight: 800; */
    letter-spacing: 1.2;
}

.contact-des {
    letter-spacing: 0.2;
}

.input-container {
    padding: 10px 0px;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.form-control {
    height: calc(2.25rem + 2px);
    padding: .5rem .75rem;
    width: 90%;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background: none;
    border: none;
    border-bottom: 2px solid #444;
    border-radius: 0rem;
    transition: all .5s ease-in-out;
    outline: none;
}

.form-control:focus {
    outline: none;
    border-bottom: 2px solid blue;
    box-shadow: none;
}

.form-control:hover {
    background: whitesmoke;
}

/* input:focus, textarea:focus, select:focus{
    outline: none;
} */
.learn-btn {
    padding: 5px 10px;
    background: var(--light-text-color);
    color: white;
    border: 2px solid var(--light-text-color);
    letter-spacing: 0.1;
    transition: all 1s;
}

.contact-des a {
    text-decoration: none;
    color: #444;
    transition: color 1s;
}

.contact-des a:hover {
    color: blue;
}

.learn-btn:hover {
    background: blue;
    border: 2px solid blue;
}

.contact-btn {
    margin-left: 6px;
    padding: 5px 10px;
    color: var(--light-text-color);
    background: none;
    border: 2px solid var(--light-text-color);
    transition: all 1s;
}

/* Top three principles cards on culture page */
.principles-cards-row {
    width: 90%;
    margin: 30px auto 10px auto;
}

.principle-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 18px 18px 18px;
    box-shadow: 0 16px 32px rgba(0,0,0,0.06);
    border: 1px solid #e3e3e3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.principle-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #444;
    margin-bottom: 0;
}

.principle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #c5d5ff;
}

@media (max-width: 767.98px) {
    .principles-cards-row {
        width: 100%;
        padding: 0 16px;
    }

    .principle-card {
        margin-bottom: 16px;
    }
}
.image-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 30px auto 40px auto;
    max-width: 900px;
    flex-wrap: wrap; /* allow images to move to the next line if needed */
}

.gallery-image {
    flex: 0 0 288px; /* fixed 3-inch width on desktop (3in * 96dpi = 288px) */
    width: 288px;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.18);
}

/* Special handling for the Catan image so its aspect looks consistent */
.gallery-image--catan {
    height: auto;
    max-height: 180px; /* cap its height so it doesn't look much taller than others */
    object-fit: cover;
}

@media (max-width: 767.98px) {
    .image-gallery {
        flex-wrap: wrap;
        gap: 12px;
        padding: 0 10px; /* small side padding so images don't touch edges */
    }

    .gallery-image {
        flex: 1 1 100%;
        max-width: 100%; /* allow each image to span the full mobile width */
    }
}
#hero-img {
    margin-top: 50px;
    width: 90%;
}

#left-hero {
    padding-left: 150px;
}
.lab-principles {
    margin: 20px auto; /* Center the section horizontally */
    padding: 20px; /* Add some padding inside the section */
    background-color: #f9f9f9; /* Light background color for the section */
    border-radius: 10px; /* Rounded corners for the section */
    border: 1px solid #ddd; /* Add a border to the box */
    max-width: 400px; /* Set a maximum width for the section */
    width: 100%; /* Ensure the section takes up the full width of its container */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    opacity: 0; /* Initially hidden */
    transform: translateY(20px); /* Slightly move down */
    animation: fadeInUp 2s forwards; /* Apply the fade-in animation */
}

.lab-principles h2 {
    margin-bottom: 10px; /* Space below the heading */
    text-align: center; /* Center the heading */
}

.lab-principles ul {
    list-style-type: none; /* Remove default list styling */
    padding: 0; /* Remove default padding */
}

.principle-item {
    background-color: #ffffff; /* White background for each item */
    border: 1px solid #ddd; /* Border for each item */
    border-radius: 5px; /* Rounded corners for each item */
    padding: 10px; /* Padding inside each item */
    margin-bottom: 10px; /* Space between items */
    opacity: 0; /* Initially hidden */
    transform: translateY(20px); /* Slightly move down */
    animation: fadeInUp 2s forwards; /* Apply the fade-in animation */
    animation-delay: calc(var(--animation-order) * 0.5s); /* Delay based on order */
}

@keyframes fadeInUp {
    to {
        opacity: 1; /* Fully visible */
        transform: translateY(0); /* Move to original position */
    }
}
#logo {
    margin-top: 5px;
    height: 80%;
    padding: 0px;
    /* border: 4px solid #444; */
    /* border-radius: 50%; */
}

#logo:hover {
    box-shadow: 0px 0px 10px #444;
}
/* .nav-items{
    color:black;
    float:right;
} */
ul {
    float: right;
    /* color:white; */
    list-style: none;
    padding: 30px 0px;
}

li {
    /* text-transform: uppercase; */
    display: inline;
    font-size: 16px;
    letter-spacing: 0.1;
    padding: 0px 15px;
}

.social-icons {
    margin-top: 30%;
}

.footer-full {
    width: 80vw;
    margin: 0 auto;
    padding: 30px 10px;
    padding-top: 100px;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer-credits {
    float: right;
    /* display: inline; */
}

.footer-credits a {
    color: #444;
    font-weight: bold;
    text-decoration: none;
    transition: all 1s;
}

.footer-credits a:hover {
    color: blue;
    text-decoration: none;
    font-weight: bold;
}

.social-icons i {
    font-size: 2em;
    /* font-weight: 100; */
    padding: 0px 5px;
}

li span {
    position: relative;
    /* display: block; */
    cursor: pointer;
}

li span:before,
li span:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    top: 50%;
    margin-top: 15px;
    background: var(--black-color);
}

li span:before {
    left: -2.5px;
}

li span:after {
    right: 2.5px;
    background: var(--black-color);
    transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.footer-full {
    padding-top: 60px;
}

li span:hover:before {
    background: var(--black-color);
    width: 100%;
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

li span:hover:after {
    background: transparent;
    width: 100%;
    transition: 0s;
}

#index-body {
    /* background: url('assets/img/mobile.png'); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

/* Tablets */
@media (min-width: 768px) and (max-width: 1024px) {
    #left-hero {
        padding-left: 80px;
        flex: 0 0 100% !important;
        max-width: 100% !important;

    }

    #work-row {
        padding-left: 50px;
        padding-right: 50px;
    }

    .work-hero {
        width: 100%;
    }

    #hero-right {
        display: none;
    }
    .work-double-row{
        padding-left: 15px;
        padding-right: 15px;
    }
    #index-body {
/*         background: url('assets/img/mobile.png'); */
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        height: 100vh;
        width: 100vw;
    }
    /* .work-double-row{
        padding-left: 50px;
        padding-right: 50px;
    } */

}

/* #logo {
    display: none;
} */

@media only screen and (max-width: 768px) {

    /* For mobile phones: */
    .nav-items {
        width: 0;
        height: 0;
        display: none;
    }
    .work-double-row{
        padding:30px 20px;
        padding-bottom: 0;
    }
    .work-hero-card{
        width:100%;
        margin-bottom: 25px;
    }
    #row-3{
        margin-top: 0px;
        padding:0 20px;
    }
    #index-body {
/*         background: url('assets/img/mobile.png'); */
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        height: 100vh;
    }

    #left-hero {
        padding-left: 50px;
        ;
    }

    #work-row {
        padding-right: 0;
        padding-left: 30px;
    }

    .work-des h1 {
        text-align: center;
    }

    .work-read {
        float: none;
    }

    #logo {
        display: none;
        /* height: 65%;
        margin-top: 28px; */
    }

    .hero-tag {
        margin-top: 20vh;
        font-size: 4em;
    }

    #hero-right {
        display: none;
    }

    .hero-des {
        padding-right: 30px;
    }

    .menu-wrap {
        display: block;
    }

    .menu ul li {
        display: block !important;
    }

    .menu ul li a {
        color: var(--black-color) !important;
    }

    .menu-wrap .hamburger {
        z-index: 2;
    }

    .menu-wrap .toggler {
        z-index: 3;
    }

    .contact-hero {
        margin-top: 10vh;
    }

    .footer-full {
        text-align: center;
        padding-top: 40px !important;
    }

    #contact-social {
        margin-top: 10%;
    }

    .footer-credits {
        display: block;
        text-align: center;
        padding-top: 10px;
        float: none;
    }

    #legal-hero {
        margin-top: 5vh !important;
        text-align: left;
    }

    #legal-hero-des {
        padding-right: 10px;
        text-align: left;
        font-size: 0.8em;
    }

    .privacy-policy p {
        padding-right: 1vw;
        /* text-align: left; */
    }

    .project-star {
        display: none;
    }

    .project-star-mobile {
        display: block;
    }
}


::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: white;

}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 50px;

}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;

}
/* People page layout */
.people-page {
    padding: 28px 0 60px 0;
    position: relative;
}

/* Home page layout enhancements */
.home-page {
    position: relative;
}

.home-page .home-container {
    max-width: 1100px;
    padding-left: 20px;
    padding-right: 20px;
}

.home-page .home-hero-row {
    width: 100%;
    margin-top: 18px;
    animation-duration: 1.0s;
}

/* Prevent global ul/li rules from affecting home content lists */
.home-page .home-container ul,
.home-page .home-container ol {
    float: none;
    list-style-position: outside;
}

@media (max-width: 767.98px) {
    /* No CTA row on home */
}

/* Research page layout (match People premium style) */
.research-page {
    padding: 28px 0 60px 0;
    position: relative;
}

.research-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(800px 280px at 15% 0%, rgba(31,79,216,0.07), rgba(255,255,255,0) 60%),
        radial-gradient(900px 300px at 85% 10%, rgba(0,0,0,0.04), rgba(255,255,255,0) 60%);
    pointer-events: none;
}

.research-page > * {
    position: relative;
    z-index: 1;
}

.research-page .research-container {
    max-width: 1100px;
}

.research-page .research-header {
    text-align: center;
    margin: 8px auto 26px auto;
}

.research-page .research-title {
    font-family: 'CircularStd', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin: 0 0 8px 0;
    color: #222;
}

.research-page .research-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin: 12px auto 0 auto;
    background: rgba(0,0,0,0.18);
    border-radius: 99px;
}

.research-page .research-subtitle {
    max-width: 860px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* Ensure research cards align with premium spacing */
.research-page .work-double-row {
    margin-top: 22px;
}

/* Responsive grid for research cards */
.research-page .research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 22px;
    align-items: stretch;
}

.research-page .research-grid-item {
    display: flex;
}

.research-page .research-grid-item .work-hero-card {
    height: 100%;
    width: 100%;
    max-width: none;
    margin: 0;
}

.research-page .research-grid-item .work-hero-card #work-text {
    flex: 1;
    text-align: justify;
}

.research-page .work-card-hero-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* News page layout (match People premium style) */
.news-page {
    padding: 28px 0 60px 0;
    position: relative;
}

.news-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(800px 280px at 15% 0%, rgba(31,79,216,0.07), rgba(255,255,255,0) 60%),
        radial-gradient(900px 300px at 85% 10%, rgba(0,0,0,0.04), rgba(255,255,255,0) 60%);
    pointer-events: none;
}

.news-page > * {
    position: relative;
    z-index: 1;
}

.news-page .news-container {
    max-width: 900px;
}

.news-page .news-header {
    text-align: center;
    margin: 8px auto 26px auto;
}

.news-page .news-title {
    font-family: 'CircularStd', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin: 0 0 8px 0;
    color: #222;
}

.news-page .news-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin: 12px auto 0 auto;
    background: rgba(0,0,0,0.18);
    border-radius: 99px;
}

.news-page .news-subtitle {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* Publications page layout (match People premium style) */
.publications-page {
    padding: 28px 0 60px 0;
    position: relative;
}

.publications-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(800px 280px at 15% 0%, rgba(31,79,216,0.07), rgba(255,255,255,0) 60%),
        radial-gradient(900px 300px at 85% 10%, rgba(0,0,0,0.04), rgba(255,255,255,0) 60%);
    pointer-events: none;
}

.publications-page > * {
    position: relative;
    z-index: 1;
}

.publications-page .publications-container {
    max-width: 1100px;
}

.publications-page ul,
.publications-page ol {
    float: none;
    list-style-position: outside;
    margin: 0;
    padding-left: 22px;
}

.publications-page li {
    display: list-item;
    margin: 0 0 8px 0;
}

.publications-page .publications-header {
    text-align: center;
    margin: 8px auto 26px auto;
}

.publications-page .publications-title {
    font-family: 'CircularStd', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin: 0 0 8px 0;
    color: #222;
}

.publications-page .publications-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin: 12px auto 0 auto;
    background: rgba(0,0,0,0.18);
    border-radius: 99px;
}

.publications-page .publications-subtitle {
    max-width: 860px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.publications-page .publications-section {
    margin-top: 26px;
}

.publications-page .publications-section-title {
    font-family: 'CircularStd', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 14px 0;
    position: relative;
    display: inline-block;
}

.publications-page .publications-section-title::after {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    margin-top: 10px;
    background: rgba(0,0,0,0.16);
    border-radius: 99px;
}

.publications-page .publications-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.publications-page .publication-card {
    display: block;
    width: 100%;
    border: 1px solid #e2e2e2;
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: 0 18px 30px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.publications-page a.publication-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(31,79,216,0.20);
}

.publications-page a.publication-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 40px rgba(0,0,0,0.12);
    border-color: #c5d5ff;
}

.publications-page .publication-title {
    font-weight: 700;
    color: #333;
    margin: 0 0 6px 0;
}

.publications-page .publication-authors {
    margin: 0 0 6px 0;
    color: #555;
}

.publications-page .publication-venue {
    margin: 0;
    font-size: 0.92rem;
    color: #777;
}

.publications-page .publications-software-card {
    cursor: default;
}

.publications-page .publications-software-card a {
    color: inherit;
}

/* Opportunities page layout (match People premium style) */
.opportunities-page {
    padding: 28px 0 60px 0;
    position: relative;
}

.opportunities-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(800px 280px at 15% 0%, rgba(31,79,216,0.07), rgba(255,255,255,0) 60%),
        radial-gradient(900px 300px at 85% 10%, rgba(0,0,0,0.04), rgba(255,255,255,0) 60%);
    pointer-events: none;
}

.opportunities-page > * {
    position: relative;
    z-index: 1;
}

.opportunities-page .opportunities-container {
    max-width: 900px;
}

.opportunities-page .opportunities-header {
    text-align: center;
    margin: 8px auto 26px auto;
}

.opportunities-page .opportunities-title {
    font-family: 'CircularStd', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin: 0 0 8px 0;
    color: #222;
}

.opportunities-page .opportunities-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin: 12px auto 0 auto;
    background: rgba(0,0,0,0.18);
    border-radius: 99px;
}

.opportunities-page .opportunities-subtitle {
    max-width: 860px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.opportunities-page .opportunities-section {
    margin-top: 8px;
}

.opportunities-page .opportunities-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.opportunities-page .opportunity-card {
    border: 1px solid #e2e2e2;
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: 0 18px 30px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
}

.opportunities-page .opportunity-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(31,79,216,0.20);
}

.opportunities-page .opportunity-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 40px rgba(0,0,0,0.12);
    border-color: #c5d5ff;
}

.opportunities-page .opportunity-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 10px 0;
}

.opportunities-page .opportunity-card p {
    margin: 0 0 10px 0;
    font-size: 0.98rem;
    line-height: 1.65;
    color: #555;
}

.opportunities-page .opportunity-card p:last-child {
    margin-bottom: 0;
}

.opportunities-page .opportunities-contact {
    margin-top: 16px;
    border: 1px solid #e2e2e2;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 22px;
    box-shadow: 0 14px 24px rgba(0,0,0,0.05);
    color: #555;
}

.opportunities-page .opportunities-contact p {
    margin: 0;
    line-height: 1.6;
}

.news-page .news-list {
    margin-top: 10px;
}

.news-page .news-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e7e7e7;
    box-shadow: 0 14px 28px rgba(0,0,0,0.06);
    padding: 18px 20px;
    margin: 12px 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
}

.news-page .news-card::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 6px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    background: rgba(31,79,216,0.22);
}

.news-page .news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.09);
    border-color: #d6d6d6;
}

.news-page .news-card p {
    margin: 0;
    font-size: 1.02em;
    color: #444;
}

.news-page .news-card a {
    color: #1f4fd8;
    text-decoration: none;
}

.news-page .news-card a:hover {
    text-decoration: underline;
}

.news-page .news-image {
    display: block;
    margin: 12px auto 0 auto;
    max-width: 240px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

@media (max-width: 767.98px) {
    .research-page,
    .news-page {
        padding: 20px 0 44px 0;
    }

    .research-page .research-container,
    .news-page .news-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .research-page .research-title,
    .news-page .news-title {
        font-size: 2rem;
    }

    .news-page .news-card {
        padding: 16px 16px;
    }
}

.people-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(800px 280px at 15% 0%, rgba(31,79,216,0.07), rgba(255,255,255,0) 60%),
        radial-gradient(900px 300px at 85% 10%, rgba(0,0,0,0.04), rgba(255,255,255,0) 60%);
    pointer-events: none;
}

.people-page > * {
    position: relative;
    z-index: 1;
}

.people-page .people-container {
    max-width: 1100px;
}

/* Override global site nav list styles within people content */
.people-page ul {
    float: none;
    padding: 0;
    margin: 0;
    list-style: none;
}

.people-page li {
    display: block;
    padding: 0;
}

.people-page .people-header {
    text-align: center;
    margin: 8px auto 26px auto;
}

.people-page .people-title {
    font-family: 'CircularStd', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin: 0 0 8px 0;
    color: #222;
}

.people-page .people-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin: 12px auto 0 auto;
    background: rgba(0,0,0,0.18);
    border-radius: 99px;
}

.people-page .people-subtitle {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.people-page .people-section {
    margin-top: 34px;
}

.people-page .people-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #222;
    position: relative;
    display: inline-block;
}

.people-page .people-section-title::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 1px;
    background: #eaeaea;
}

.people-page .people-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.people-page .person-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e7e7e7;
    box-shadow: 0 14px 28px rgba(0,0,0,0.06);
    padding: 20px 20px 18px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.people-page .person-card::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 6px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    background: rgba(31,79,216,0.22);
}

.people-page .person-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.09);
    border-color: #d6d6d6;
}

.people-page .person-photo {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border: 3px solid rgba(255,255,255,0.9);
}

.people-page .person-photo--placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f2f2f2;
    color: #666;
    font-weight: 700;
    font-size: 0.95rem;
}

.people-page .person-body {
    width: 100%;
}

.people-page .person-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #222;
}

.people-page .person-role {
    font-size: 0.95rem;
    color: #666;
    margin: 0 0 12px 0;
}

.people-page .person-role span {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(31,79,216,0.08);
    color: #2a3b6a;
}

.people-page .person-meta {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #444;
    width: 100%;
    max-width: 520px;
}

.people-page .person-meta li {
    padding: 7px 0;
    border-top: 1px solid #f0f0f0;
}

.people-page .person-meta li:first-child {
    border-top: none;
}

.people-page .person-meta a {
    color: inherit;
    text-decoration: none;
}

.people-page .person-meta a:hover {
    text-decoration: underline;
}

.people-page .person-links {
    margin-top: 12px;
}

.people-page .person-links a {
    display: inline-block;
    font-size: 0.9rem;
    margin: 6px 8px 0 8px;
    padding: 8px 12px;
    border-radius: 999px;
    text-decoration: none;
    color: #1f4fd8;
    border: 1px solid rgba(31,79,216,0.28);
    background: rgba(31,79,216,0.05);
}

.people-page .person-links a:hover {
    background: rgba(31,79,216,0.09);
    text-decoration: none;
}

.software-page .person-meta {
    font-size: 0.78rem;
    line-height: 1.55;
    text-align: justify;
}

.software-page .person-meta li.software-cite-label {
    padding-top: 10px;
}

.software-page .person-meta li.software-citation {
    font-size: 0.72rem;
    line-height: 1.55;
    color: #666;
}

.software-page .people-container {
    max-width: 880px;
}

.software-page .people-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 767.98px) {
    .software-page .people-grid {
        grid-template-columns: 1fr;
    }
}

.people-page .open-positions-card {
    max-width: 820px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e7e7e7;
    box-shadow: 0 14px 28px rgba(0,0,0,0.06);
    padding: 20px;
    font-size: 0.98rem;
    line-height: 1.75;
    color: #444;
}

.people-page .open-positions-card {
    position: relative;
}

.people-page .open-positions-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    background: rgba(0,0,0,0.12);
}

.people-page .open-positions-card p {
    margin: 0 0 12px 0;
}

.people-page .open-positions-card p:last-child {
    margin-bottom: 0;
}

.people-page .open-positions-card a {
    color: #1f4fd8;
    text-decoration: none;
}

.people-page .open-positions-card a:hover {
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    .people-page .people-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .people-page {
        padding: 20px 0 44px 0;
    }

    .people-page .people-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .people-page .people-title {
        font-size: 2rem;
    }

    .people-page .people-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .people-page .person-photo {
        width: 96px;
        height: 96px;
    }

    .people-page .people-section-title {
        display: block;
    }
}
@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');

@font-face {
    font-family: CircularStd;
    src: url(assets/fonts/CircularStd-Bold.eot);
    src: url("assets/fonts/CircularStd-Bold.eot?#iefix") format("embedded-opentype"), url("assets/fonts/CircularStd-Bold.woff") format("woff"), url("assets/fonts/CircularStd-Bold.ttf") format("truetype"), url("assets/fonts/CircularStd-Bold.svg#bcc26993292869431e54c666aafa8fcd") format("svg");
}

:root {
    --primary-color: none;
    --overlay-color: rgba(255, 255, 255, 0.9);
    --menu-speed: 0.75s;
    --light-text-color: #444;
    --black-color: #000;
    --white-color: #fff;
    --hero-color: black;
}
.work-hero-card{
    display: block;
    margin:0 auto;
    width:80%;
    background: #fff;
    align-items: center;
    padding:0;
    /* border-radius: 10px; */
    padding-bottom: 15px;
    /* border:1px solid #44444450; */
    box-shadow: 1px 1px 20px #00000025;
    cursor: pointer;
    transition: all 1s;
    height: 100%;
    
}
#work-text{
    text-align: center;
    font-size: 1.5em;
}
.work-hero-card h1{
    padding-top: 20px;
    text-align: center;
    font-size: 0.8em;
    font-weight: bold;
}
.work-hero-card:hover{
    width:85%;
    box-shadow: 0px 0px 20px #88888875;
    animation:zoom 1s;
    /* filter: none; */
}
.work-card-hero-img{
    width:30%;
    display: block;
    /* border:1px solid #44444450; */
    /* border-radius: 10px; */
    border-bottom: none;
    margin:0 auto;
    left:0;
    right: 0;
}
.work-double-row{
    padding-left:60px;
    padding-right: 60px;
    margin-top: 80px;
}
.project-star {
    position: absolute;
    background: #ffff0080;
    border-radius: 50px;
    padding: 2px 6px;
    font-size: 0.8em;
    top: 40px;
    right: 0;
}

.project-star-mobile {
    display: none;
    background: #ffff0080;
    border-radius: 50px;
    padding: 2px 6px;
    width: 50%;
    margin-bottom: 10px;
    text-align: center;
    font-size: 0.8em;

}

#work-row {
    padding-left: 135px;
    padding-right: 135px;
    width: 100vw;
}

.work-hero {
    /* border:2px solid #444; */
    border-radius: 10px;
    /* box-shadow: 0px 0px 5px #444; */
    width: 90%;
    transition: width 1s;
}
.work-hero:hover{
    width: 95%;
}

.work-des {
    padding-top: 40px;

}

.work-des h1 {
    font-weight: bold;
}

.work-des p {
    text-align: justify;
    font-weight: 100;
}

.work-hero-img {
    width: 100%;
    border-radius: 10px;
}

.technologies h2 {
    font-size: 0.8em;
    font-weight: bold;
}

.tech-stack {
    cursor: pointer;
    margin-right: 10px;
    background: #f2f2f2;
    padding: 2px 4px;
    font-size: 0.8em;
    transition: background 1s;
}

.tech-stack:hover {
    background: beige;
}

.featured {
    margin-top: 10px;
}

.partners {
    /* background:#f2f2f2; */
    height: 50px;
    margin-right: 20px;
}

#partner-logo {
    height: 40px;
    cursor: pointer;
    transition: all 1s;
}


#partner-logo:hover {
    box-shadow: 0px 0px 10px #444;
}

.work-read {
    float: right;
    font-size: 0.8em;
}

.work-read:hover {
    background: #444;
    color: white !important;
    border: 2px solid #444 !important;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    position: relative;
}
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/img/arushi-pattern.svg') no-repeat center center fixed;
    background-size: cover;
    opacity: 0.05; /* Adjust the opacity to make the background very light */
    z-index: -1; /* Ensure the background is behind all content */
}

.content {
    position: relative;
    z-index: 1; /* Ensure the content is above the background */
}
.comingsoon h1 {
    font-size: 3em;
}

.comingsoon {
    position: absolute;
    margin: auto;
    top: 0;
    /* background: white; */
    text-align: center;
    right: 0;
    bottom: 0;
    left: 0;
    /* width: 40em; */
    height: 10em;
    animation: opac 0.1s ease-in-out 5;
}

.comingsoon a {
    color: #444;
    font-weight: bold;
    text-decoration: none;
    transition: font-size 1s;
}

.comingsoon a:hover {
    color: blue;
    font-size: 1.5em;
}

.social-icons a {
    color: var(--light-text-color);
    text-decoration: none;
    transition: all 1s;
}

.social-icons a:hover {
    color: blue;
}

li span a {
    color: #444;
    text-decoration: none;

}

li span a:hover {
    color: #444;
    text-decoration: none;
}

.copyright-legal {
    font-size: 1.1em;
    color: #444;
    letter-spacing: 0px;
    text-align: left;
}

.legal-links {
    text-decoration: none;
    font-weight: bold;
    transition: all 1s;
}

.legal-links:hover {
    text-decoration: none;
    color: blue;
}

.legal a,
.legal a:hover,
.legal a:active {
    color: #444;
    text-decoration: none;
}

.privacy-policy h1 {
    font-size: 2.5em;
    /* font-family: 'CircularStd'; */
    font-weight: bold;
    letter-spacing: 0.1rem;
}

.privacy-policy h2 {
    font-size: 25px;
    font-family: 'CircularStd';
    /* letter-spacing: 0.1rem; */
}

#group24 {
    width: 85% !important; /* Ensure the group24 image is 50% width */
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
    margin-bottom: 20px !important; /* Add space below the group24 image */
}

.responsive-image {
    width: 100% !important;
    max-width: 50% !important; /* Ensure the images are at most half the width of the group24 image */
    box-sizing: border-box !important;
}

@media (max-width: 600px) {
    .responsive-image {
        max-width: 100% !important;
    }
}

.legal-des {
    text-align: justify;
    font-weight: 500;
}

.legal-des strong {
    /* font-size: 1.1em; */
    font-weight: 900;
}

.privacy-policy p {
    padding-right: 13vw;
    letter-spacing: 0.8px;
}

.nav-desk {
    height: 10vh;
    /* position: fixed; */
    display: block;
    width: 80vw;
    margin: auto;

    margin-top: 20px;
    left: 0;
    right: 0;
    /* background: black; */
}

.nav-logo {
    height: 100%;
    float: left;


}



.menu-wrap {
    position: fixed;
    top: 50px;
    right: 50px;
    z-index: 1;
    display: none;
}

.menu-wrap .toggler {
    position: absolute;
    top: 0px;
    right: 0;
    z-index: 2;
    cursor: pointer;
    width: 50px;
    height: 50px;
    opacity: 0;
}

.menu-wrap .hamburger {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 60px;
    height: 60px;
    padding: 1rem;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger Line */
.menu-wrap .hamburger>div {
    position: relative;
    flex: none;
    width: 100%;
    height: 2px;
    z-index: 1;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

/* Hamburger Lines - Top & Bottom */
.menu-wrap .hamburger>div::before,
.menu-wrap .hamburger>div::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: -10px;
    width: 100%;
    height: 2px;
    background: inherit;
}

/* Moves Line Down */
.menu-wrap .hamburger>div::after {
    top: 10px;
}

/* Toggler Animation */
.menu-wrap .toggler:checked+.hamburger>div {
    transform: rotate(135deg);
}

/* Turns Lines Into X */
.menu-wrap .toggler:checked+.hamburger>div:before,
.menu-wrap .toggler:checked+.hamburger>div:after {
    top: 0;
    transform: rotate(90deg);
}

/* Rotate On Hover When Checked */
.menu-wrap .toggler:checked:hover+.hamburger>div {
    transform: rotate(225deg);
}

/* Show Menu */
.menu-wrap .toggler:checked~.menu {
    visibility: visible;
}

.menu-wrap .toggler:checked~.menu>div {
    transform: scale(1);
    transition-duration: var(--menu-speed);
}

.menu-wrap .toggler:checked~.menu>div>div {
    opacity: 1;
    transition: opacity 0.4s ease 0.4s;
}

.menu-wrap .menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    visibility: hidden;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-wrap .menu>div {
    background: var(--overlay-color);
    border-radius: 50%;
    width: 200vw;
    height: 200vw;
    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: all 0.4s ease;
}

.menu-wrap .menu>div>div {
    text-align: center;
    max-width: 90vw;
    max-height: 100vh;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-wrap .menu>div>div>ul>li {
    list-style: none;
    color: var(--white-color);
    font-size: 1.5rem;
    padding: 1rem;
}

.menu-wrap .menu>div>div>ul>li>a {
    color: inherit;
    text-decoration: none;
    transition: color 0.4s ease;
}


.legal {
    position: absolute;
    bottom: 25px;
    right: 25px;
}


.hero-tag {
    margin-top: 20vh;
    text-align: left;
    font-size: 4.5em;
    font-weight: bold;
    color: var(--hero-color);
    font-family: 'CircularStd', sans-serif;
}

.contact-hero {
    margin-top: 0vh;
    font-size: 3.5em;
}

.hero-des {
    padding-right: 60px;
    text-align: justify;
    /* font-weight: 800; */
    letter-spacing: 1.2;
}

.contact-des {
    letter-spacing: 0.2;
}

.input-container {
    padding: 10px 0px;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.form-control {
    height: calc(2.25rem + 2px);
    padding: .5rem .75rem;
    width: 90%;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background: none;
    border: none;
    border-bottom: 2px solid #444;
    border-radius: 0rem;
    transition: all .5s ease-in-out;
    outline: none;
}

.form-control:focus {
    outline: none;
    border-bottom: 2px solid blue;
    box-shadow: none;
}

.form-control:hover {
    background: whitesmoke;
}

/* input:focus, textarea:focus, select:focus{
    outline: none;
} */
.learn-btn {
    padding: 5px 10px;
    background: var(--light-text-color);
    color: white;
    border: 2px solid var(--light-text-color);
    letter-spacing: 0.1;
    transition: all 1s;
}

.contact-des a {
    text-decoration: none;
    color: #444;
    transition: color 1s;
}

.contact-des a:hover {
    color: blue;
}

.learn-btn:hover {
    background: blue;
    border: 2px solid blue;
}

.contact-btn {
    margin-left: 6px;
    padding: 5px 10px;
    color: var(--light-text-color);
    background: none;
    border: 2px solid var(--light-text-color);
    transition: all 1s;
}

.contact-btn:hover {
    color: blue;
    border: 2px solid blue;
}

#hero-img {
    margin-top: 50px;
    width: 90%;
}

#left-hero {
    padding-left: 150px;
}

#logo {
    margin-top: 5px;
    height: 80%;
    padding: 0px;
    /* border: 4px solid #444; */
    /* border-radius: 50%; */
}

#logo:hover {
    box-shadow: 0px 0px 10px #444;
}
/* .nav-items{
    color:black;
    float:right;
} */
ul {
    float: right;
    /* color:white; */
    list-style: none;
    padding: 30px 0px;
}

li {
    /* text-transform: uppercase; */
    display: inline;
    font-size: 16px;
    letter-spacing: 0.1;
    padding: 0px 15px;
}

.social-icons {
    margin-top: 30%;
}

.footer-full {
    width: 80vw;
    margin: 0 auto;
    padding: 30px 10px;
    padding-top: 100px;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer-credits {
    float: right;
    /* display: inline; */
}

.footer-credits a {
    color: #444;
    font-weight: bold;
    text-decoration: none;
    transition: all 1s;
}

.footer-credits a:hover {
    color: blue;
    text-decoration: none;
    font-weight: bold;
}

.social-icons i {
    font-size: 2em;
    /* font-weight: 100; */
    padding: 0px 5px;
}

li span {
    position: relative;
    /* display: block; */
    cursor: pointer;
}

li span:before,
li span:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    top: 50%;
    margin-top: 15px;
    background: var(--black-color);
}

li span:before {
    left: -2.5px;
}

li span:after {
    right: 2.5px;
    background: var(--black-color);
    transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.footer-full {
    padding-top: 60px;
}

li span:hover:before {
    background: var(--black-color);
    width: 100%;
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

li span:hover:after {
    background: transparent;
    width: 100%;
    transition: 0s;
}

#index-body {
    /* background: url('assets/img/mobile.png'); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* Tablets */
@media (min-width: 768px) and (max-width: 1024px) {
    #left-hero {
        padding-left: 80px;
        flex: 0 0 100% !important;
        max-width: 100% !important;

    }

    #work-row {
        padding-left: 50px;
        padding-right: 50px;
    }

    .work-hero {
        width: 100%;
    }

    #hero-right {
        display: none;
    }
    .work-double-row{
        padding-left: 15px;
        padding-right: 15px;
    }
    #index-body {
/*         background: url('assets/img/mobile.png'); */
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        height: 100vh;
        width: 100vw;
    }
    /* .work-double-row{
        padding-left: 50px;
        padding-right: 50px;
    } */

}

/* #logo {
    display: none;
} */

@media only screen and (max-width: 768px) {

    /* For mobile phones: */
    .nav-items {
        width: 0;
        height: 0;
        display: none;
    }
    .work-double-row{
        padding:15px 10px;
        padding-bottom: 0;
    }
    .work-hero-card{
        width:100%;
        margin-bottom: 25px;
    }
    #row-3{
        margin-top: 0px;
        padding:0 20px;
    }
    #index-body {
/*         background: url('assets/img/mobile.png'); */
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        height: 100vh;
    }

    #left-hero {
        padding-left: 50px;
        ;
    }

    #work-row {
        padding-right: 0;
        padding-left: 30px;
    }

    .work-des h1 {
        text-align: center;
    }

    .work-read {
        float: none;
    }

    #logo {
        display: none;
        /* height: 65%;
        margin-top: 28px; */
    }

    .hero-tag {
        margin-top: 20vh;
        font-size: 4em;
    }

    #hero-right {
        display: none;
    }

    .hero-des {
        padding-right: 30px;
    }

    .menu-wrap {
        display: block;
    }

    .menu ul li {
        display: block !important;
    }

    .menu ul li a {
        color: var(--black-color) !important;
    }

    .menu-wrap .hamburger {
        z-index: 2;
    }

    .menu-wrap .toggler {
        z-index: 3;
    }

    .contact-hero {
        margin-top: 10vh;
    }

    .footer-full {
        text-align: center;
        padding-top: 40px !important;
    }

    #contact-social {
        margin-top: 10%;
    }

    .footer-credits {
        display: block;
        text-align: center;
        padding-top: 10px;
        float: none;
    }

    #legal-hero {
        margin-top: 5vh !important;
        text-align: left;
    }

    #legal-hero-des {
        padding-right: 10px;
        text-align: left;
        font-size: 0.8em;
    }

    .privacy-policy p {
        padding-right: 1vw;
        /* text-align: left; */
    }

    .project-star {
        display: none;
    }

    .project-star-mobile {
        display: block;
    }
}


::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: white;

}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 50px;

}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;

}
@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');

@font-face {
    font-family: CircularStd;
    src: url(assets/fonts/CircularStd-Bold.eot);
    src: url("assets/fonts/CircularStd-Bold.eot?#iefix") format("embedded-opentype"), url("assets/fonts/CircularStd-Bold.woff") format("woff"), url("assets/fonts/CircularStd-Bold.ttf") format("truetype"), url("assets/fonts/CircularStd-Bold.svg#bcc26993292869431e54c666aafa8fcd") format("svg");
}

:root {
    --primary-color: none;
    --overlay-color: rgba(255, 255, 255, 0.9);
    --menu-speed: 0.75s;
    --light-text-color: #444;
    --black-color: #000;
    --white-color: #fff;
    --hero-color: black;
}
.work-hero-card{
    display: block;
    margin:0 auto;
    width:80%;
    background: #fff;
    align-items: center;
    padding:0;
    /* border-radius: 10px; */
    padding-bottom: 15px;
    /* border:1px solid #44444450; */
    box-shadow: 1px 1px 20px #00000025;
    cursor: pointer;
    transition: all 1s;
    height: 100%;
    
}
#work-text{
    text-align: center;
    font-size: 1.5em;
}
.work-hero-card h1{
    padding-top: 20px;
    text-align: center;
    font-size: 0.8em;
    font-weight: bold;
}
.work-hero-card:hover{
    width:85%;
    box-shadow: 0px 0px 20px #88888875;
    animation:zoom 1s;
    /* filter: none; */
}
.work-card-hero-img{
    width:30%;
    display: block;
    /* border:1px solid #44444450; */
    /* border-radius: 10px; */
    border-bottom: none;
    margin:0 auto;
    left:0;
    right: 0;
}
.work-double-row{
    padding-left:60px;
    padding-right: 60px;
    margin-top: 80px;
}
.project-star {
    position: absolute;
    background: #ffff0080;
    border-radius: 50px;
    padding: 2px 6px;
    font-size: 0.8em;
    top: 40px;
    right: 0;
}

.project-star-mobile {
    display: none;
    background: #ffff0080;
    border-radius: 50px;
    padding: 2px 6px;
    width: 50%;
    margin-bottom: 10px;
    text-align: center;
    font-size: 0.8em;

}

#work-row {
    padding-left: 135px;
    padding-right: 135px;
    width: 100vw;
}

.work-hero {
    /* border:2px solid #444; */
    border-radius: 10px;
    /* box-shadow: 0px 0px 5px #444; */
    width: 90%;
    transition: width 1s;
}
.work-hero:hover{
    width: 95%;
}

.work-des {
    padding-top: 40px;

}

.work-des h1 {
    font-weight: bold;
}

.work-des p {
    text-align: justify;
    font-weight: 100;
}

.work-hero-img {
    width: 100%;
    border-radius: 10px;
}

.technologies h2 {
    font-size: 0.8em;
    font-weight: bold;
}

.tech-stack {
    cursor: pointer;
    margin-right: 10px;
    background: #f2f2f2;
    padding: 2px 4px;
    font-size: 0.8em;
    transition: background 1s;
}

.tech-stack:hover {
    background: beige;
}

.featured {
    margin-top: 10px;
}

.partners {
    /* background:#f2f2f2; */
    height: 50px;
    margin-right: 20px;
}

#partner-logo {
    height: 40px;
    cursor: pointer;
    transition: all 1s;
}


#partner-logo:hover {
    box-shadow: 0px 0px 10px #444;
}

.work-read {
    float: right;
    font-size: 0.8em;
}

.work-read:hover {
    background: #444;
    color: white !important;
    border: 2px solid #444 !important;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--light-text-color);
    overflow-x: hidden;
}

.comingsoon h1 {
    font-size: 3em;
}

.comingsoon {
    position: absolute;
    margin: auto;
    top: 0;
    /* background: white; */
    text-align: center;
    right: 0;
    bottom: 0;
    left: 0;
    /* width: 40em; */
    height: 10em;
    animation: opac 0.1s ease-in-out 5;
}

.comingsoon a {
    color: #444;
    font-weight: bold;
    text-decoration: none;
    transition: font-size 1s;
}

.comingsoon a:hover {
    color: blue;
    font-size: 1.5em;
}

.social-icons a {
    color: var(--light-text-color);
    text-decoration: none;
    transition: all 1s;
}

.social-icons a:hover {
    color: blue;
}

li span a {
    color: #444;
    text-decoration: none;

}

li span a:hover {
    color: #444;
    text-decoration: none;
}

.copyright-legal {
    font-size: 1.1em;
    color: #444;
    letter-spacing: 0px;
    text-align: left;
}

.legal-links {
    text-decoration: none;
    font-weight: bold;
    transition: all 1s;
}

.legal-links:hover {
    text-decoration: none;
    color: blue;
}

.legal a,
.legal a:hover,
.legal a:active {
    color: #444;
    text-decoration: none;
}

.privacy-policy h1 {
    font-size: 2.5em;
    /* font-family: 'CircularStd'; */
    font-weight: bold;
    letter-spacing: 0.1rem;
}

.privacy-policy h2 {
    font-size: 25px;
    font-family: 'CircularStd';
    /* letter-spacing: 0.1rem; */
}

.legal-des {
    text-align: justify;
    font-weight: 500;
}

.legal-des strong {
    /* font-size: 1.1em; */
    font-weight: 900;
}

.privacy-policy p {
    padding-right: 13vw;
    letter-spacing: 0.8px;
}

.nav-desk {
    height: 10vh;
    /* position: fixed; */
    display: block;
    width: 80vw;
    margin: auto;

    margin-top: 20px;
    left: 0;
    right: 0;
    /* background: black; */
}

.nav-logo {
    height: 100%;
    float: left;


}



.menu-wrap {
    position: fixed;
    top: 50px;
    right: 50px;
    z-index: 1;
    display: none;
}

.menu-wrap .toggler {
    position: absolute;
    top: 0px;
    right: 0;
    z-index: 2;
    cursor: pointer;
    width: 50px;
    height: 50px;
    opacity: 0;
}

.menu-wrap .hamburger {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 60px;
    height: 60px;
    padding: 1rem;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger Line */
.menu-wrap .hamburger>div {
    position: relative;
    flex: none;
    width: 100%;
    height: 2px;
    z-index: 1;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

/* Hamburger Lines - Top & Bottom */
.menu-wrap .hamburger>div::before,
.menu-wrap .hamburger>div::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: -10px;
    width: 100%;
    height: 2px;
    background: inherit;
}

/* Moves Line Down */
.menu-wrap .hamburger>div::after {
    top: 10px;
}

/* Toggler Animation */
.menu-wrap .toggler:checked+.hamburger>div {
    transform: rotate(135deg);
}

/* Turns Lines Into X */
.menu-wrap .toggler:checked+.hamburger>div:before,
.menu-wrap .toggler:checked+.hamburger>div:after {
    top: 0;
    transform: rotate(90deg);
}

/* Rotate On Hover When Checked */
.menu-wrap .toggler:checked:hover+.hamburger>div {
    transform: rotate(225deg);
}

/* Show Menu */
.menu-wrap .toggler:checked~.menu {
    visibility: visible;
}

.menu-wrap .toggler:checked~.menu>div {
    transform: scale(1);
    transition-duration: var(--menu-speed);
}

.menu-wrap .toggler:checked~.menu>div>div {
    opacity: 1;
    transition: opacity 0.4s ease 0.4s;
}

.menu-wrap .menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    visibility: hidden;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-wrap .menu>div {
    background: var(--overlay-color);
    border-radius: 50%;
    width: 200vw;
    height: 200vw;
    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: all 0.4s ease;
}

.menu-wrap .menu>div>div {
    text-align: center;
    max-width: 90vw;
    max-height: 100vh;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-wrap .menu>div>div>ul>li {
    list-style: none;
    color: var(--white-color);
    font-size: 1.5rem;
    padding: 1rem;
}

.menu-wrap .menu>div>div>ul>li>a {
    color: inherit;
    text-decoration: none;
    transition: color 0.4s ease;
}


.legal {
    position: absolute;
    bottom: 25px;
    right: 25px;
}


.hero-tag {
    margin-top: 20vh;
    text-align: left;
    font-size: 2.5em;
    font-weight: bold;
    color: var(--hero-color);
    font-family: 'CircularStd', sans-serif;
}

.contact-hero {
    margin-top: 0vh;
    font-size: 3.5em;
}

.hero-des {
    padding-right: 60px;
    text-align: justify;
    /* font-weight: 800; */
    letter-spacing: 1.2;
}

.contact-des {
    letter-spacing: 0.2;
}

.input-container {
    padding: 10px 0px;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.form-control {
    height: calc(2.25rem + 2px);
    padding: .5rem .75rem;
    width: 90%;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background: none;
    border: none;
    border-bottom: 2px solid #444;
    border-radius: 0rem;
    transition: all .5s ease-in-out;
    outline: none;
}

.form-control:focus {
    outline: none;
    border-bottom: 2px solid blue;
    box-shadow: none;
}

.form-control:hover {
    background: whitesmoke;
}

/* input:focus, textarea:focus, select:focus{
    outline: none;
} */
.learn-btn {
    padding: 5px 10px;
    background: var(--light-text-color);
    color: white;
    border: 2px solid var(--light-text-color);
    letter-spacing: 0.1;
    transition: all 1s;
}

.contact-des a {
    text-decoration: none;
    color: #444;
    transition: color 1s;
}

.contact-des a:hover {
    color: blue;
}

.learn-btn:hover {
    background: blue;
    border: 2px solid blue;
}

.contact-btn {
    margin-left: 6px;
    padding: 5px 10px;
    color: var(--light-text-color);
    background: none;
    border: 2px solid var(--light-text-color);
    transition: all 1s;
}

.contact-btn:hover {
    color: blue;
    border: 2px solid blue;
}

#hero-img {
    margin-top: 50px;
    width: 90%;
}

#left-hero {
    padding-left: 150px;
}

#logo {
    margin-top: 5px;
    height: 80%;
    padding: 0px;
    /* border: 4px solid #444; */
    /* border-radius: 50%; */
}

#logo:hover {
    box-shadow: 0px 0px 10px #444;
}
/* .nav-items{
    color:black;
    float:right;
} */
ul {
    float: right;
    /* color:white; */
    list-style: none;
    padding: 30px 0px;
}

li {
    /* text-transform: uppercase; */
    display: inline;
    font-size: 16px;
    letter-spacing: 0.1;
    padding: 0px 15px;
}

.social-icons {
    margin-top: 30%;
}

.footer-full {
    width: 80vw;
    margin: 0 auto;
    padding: 30px 10px;
    padding-top: 100px;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer-credits {
    float: right;
    /* display: inline; */
}

.footer-credits a {
    color: #444;
    font-weight: bold;
    text-decoration: none;
    transition: all 1s;
}

.footer-credits a:hover {
    color: blue;
    text-decoration: none;
    font-weight: bold;
}

.social-icons i {
    font-size: 2em;
    /* font-weight: 100; */
    padding: 0px 5px;
}

li span {
    position: relative;
    /* display: block; */
    cursor: pointer;
}

li span:before,
li span:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    top: 50%;
    margin-top: 15px;
    background: var(--black-color);
}

li span:before {
    left: -2.5px;
}

li span:after {
    right: 2.5px;
    background: var(--black-color);
    transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.footer-full {
    padding-top: 60px;
}

li span:hover:before {
    background: var(--black-color);
    width: 100%;
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

li span:hover:after {
    background: transparent;
    width: 100%;
    transition: 0s;
}

#index-body {
    /* background: url('assets/img/mobile.png'); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* Tablets */
@media (min-width: 768px) and (max-width: 1024px) {
    #left-hero {
        padding-left: 80px;
        flex: 0 0 100% !important;
        max-width: 100% !important;

    }

    #work-row {
        padding-left: 50px;
        padding-right: 50px;
    }

    .work-hero {
        width: 100%;
    }

    #hero-right {
        display: none;
    }
    .work-double-row{
        padding-left: 15px;
        padding-right: 15px;
    }
    #index-body {
/*         background: url('assets/img/mobile.png'); */
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        height: 100vh;
        width: 100vw;
    }
    /* .work-double-row{
        padding-left: 50px;
        padding-right: 50px;
    } */

}

/* #logo {
    display: none;
} */

@media only screen and (max-width: 768px) {

    /* For mobile phones: */
    .nav-items {
        width: 0;
        height: 0;
        display: none;
    }
    .work-double-row{
        padding:15px 10px;
        padding-bottom: 0;
    }
    .work-hero-card{
        width:100%;
        margin-bottom: 25px;
    }
    #row-3{
        margin-top: 0px;
        padding:0 20px;
    }
    #index-body {
/*         background: url('assets/img/mobile.png'); */
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        height: 100vh;
    }

    #left-hero {
        padding-left: 50px;
        ;
    }

    #work-row {
        padding-right: 0;
        padding-left: 30px;
    }

    .work-des h1 {
        text-align: center;
    }

    .work-read {
        float: none;
    }

    #logo {
        display: none;
        /* height: 65%;
        margin-top: 28px; */
    }

    .hero-tag {
        margin-top: 20vh;
        font-size: 2em;
    }

    #hero-right {
        display: none;
    }

    .hero-des {
        padding-right: 30px;
    }

    .menu-wrap {
        display: block;
    }

    .menu ul li {
        display: block !important;
    }

    .menu ul li a {
        color: var(--black-color) !important;
    }

    .menu-wrap .hamburger {
        z-index: 2;
    }

    .menu-wrap .toggler {
        z-index: 3;
    }

    .contact-hero {
        margin-top: 10vh;
    }

    .footer-full {
        text-align: center;
        padding-top: 40px !important;
    }

    #contact-social {
        margin-top: 10%;
    }

    .footer-credits {
        display: block;
        text-align: center;
        padding-top: 10px;
        float: none;
    }

    #legal-hero {
        margin-top: 5vh !important;
        text-align: left;
    }

    #legal-hero-des {
        padding-right: 10px;
        text-align: left;
        font-size: 0.8em;
    }

    .privacy-policy p {
        padding-right: 1vw;
        /* text-align: left; */
    }

    .project-star {
        display: none;
    }

    .project-star-mobile {
        display: block;
    }
}


::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: white;

}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 50px;

}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;

}
@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');

@font-face {
    font-family: CircularStd;
    src: url(assets/fonts/CircularStd-Bold.eot);
    src: url("assets/fonts/CircularStd-Bold.eot?#iefix") format("embedded-opentype"), url("assets/fonts/CircularStd-Bold.woff") format("woff"), url("assets/fonts/CircularStd-Bold.ttf") format("truetype"), url("assets/fonts/CircularStd-Bold.svg#bcc26993292869431e54c666aafa8fcd") format("svg");
}

:root {
    --primary-color: none;
    --overlay-color: rgba(255, 255, 255, 0.9);
    --menu-speed: 0.75s;
    --light-text-color: #444;
    --black-color: #000;
    --white-color: #fff;
    --hero-color: black;
}
.work-hero-card{
    display: block;
    margin:0 auto;
    width:80%;
    background: #fff;
    align-items: center;
    padding:0;
    /* border-radius: 10px; */
    padding-bottom: 15px;
    /* border:1px solid #44444450; */
    box-shadow: 1px 1px 20px #00000025;
    cursor: pointer;
    transition: all 1s;
    height: 100%;
    
}
#work-text{
    text-align: center;
    font-size: 1.5em;
}
.work-hero-card h1{
    padding-top: 20px;
    text-align: center;
    font-size: 0.8em;
    font-weight: bold;
}
.work-hero-card:hover{
    width:85%;
    box-shadow: 0px 0px 20px #88888875;
    animation:zoom 1s;
    /* filter: none; */
}
.work-card-hero-img{
    width:30%;
    display: block;
    /* border:1px solid #44444450; */
    /* border-radius: 10px; */
    border-bottom: none;
    margin:0 auto;
    left:0;
    right: 0;
}
.work-double-row{
    padding-left:60px;
    padding-right: 60px;
    margin-top: 80px;
}
.project-star {
    position: absolute;
    background: #ffff0080;
    border-radius: 50px;
    padding: 2px 6px;
    font-size: 0.8em;
    top: 40px;
    right: 0;
}

.project-star-mobile {
    display: none;
    background: #ffff0080;
    border-radius: 50px;
    padding: 2px 6px;
    width: 50%;
    margin-bottom: 10px;
    text-align: center;
    font-size: 0.8em;

}

#work-row {
    padding-left: 135px;
    padding-right: 135px;
    width: 100vw;
}

.work-hero {
    /* border:2px solid #444; */
    border-radius: 10px;
    /* box-shadow: 0px 0px 5px #444; */
    width: 90%;
    transition: width 1s;
}
.work-hero:hover{
    width: 95%;
}

.work-des {
    padding-top: 40px;

}

.work-des h1 {
    font-weight: bold;
}

.work-des p {
    text-align: justify;
    font-weight: 100;
}

.work-hero-img {
    width: 100%;
    border-radius: 10px;
}

.technologies h2 {
    font-size: 0.8em;
    font-weight: bold;
}

.tech-stack {
    cursor: pointer;
    margin-right: 10px;
    background: #f2f2f2;
    padding: 2px 4px;
    font-size: 0.8em;
    transition: background 1s;
}

.tech-stack:hover {
    background: beige;
}

.featured {
    margin-top: 10px;
}

.partners {
    /* background:#f2f2f2; */
    height: 50px;
    margin-right: 20px;
}

#partner-logo {
    height: 40px;
    cursor: pointer;
    transition: all 1s;
}


#partner-logo:hover {
    box-shadow: 0px 0px 10px #444;
}

.work-read {
    float: right;
    font-size: 0.8em;
}

.work-read:hover {
    background: #444;
    color: white !important;
    border: 2px solid #444 !important;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--light-text-color);
    overflow-x: hidden;
}

.comingsoon h1 {
    font-size: 3em;
}

.comingsoon {
    position: absolute;
    margin: auto;
    top: 0;
    /* background: white; */
    text-align: center;
    right: 0;
    bottom: 0;
    left: 0;
    /* width: 40em; */
    height: 10em;
    animation: opac 0.1s ease-in-out 5;
}

.comingsoon a {
    color: #444;
    font-weight: bold;
    text-decoration: none;
    transition: font-size 1s;
}

.comingsoon a:hover {
    color: blue;
    font-size: 1.5em;
}

.social-icons a {
    color: var(--light-text-color);
    text-decoration: none;
    transition: all 1s;
}

.social-icons a:hover {
    color: blue;
}

li span a {
    color: #444;
    text-decoration: none;

}

li span a:hover {
    color: #444;
    text-decoration: none;
}

.copyright-legal {
    font-size: 1.1em;
    color: #444;
    letter-spacing: 0px;
    text-align: left;
}

.legal-links {
    text-decoration: none;
    font-weight: bold;
    transition: all 1s;
}

.legal-links:hover {
    text-decoration: none;
    color: blue;
}

.legal a,
.legal a:hover,
.legal a:active {
    color: #444;
    text-decoration: none;
}

.privacy-policy h1 {
    font-size: 2.5em;
    /* font-family: 'CircularStd'; */
    font-weight: bold;
    letter-spacing: 0.1rem;
}

.privacy-policy h2 {
    font-size: 25px;
    font-family: 'CircularStd';
    /* letter-spacing: 0.1rem; */
}

.legal-des {
    text-align: justify;
    font-weight: 500;
}

.legal-des strong {
    /* font-size: 1.1em; */
    font-weight: 900;
}

.privacy-policy p {
    padding-right: 13vw;
    letter-spacing: 0.8px;
}

.nav-desk {
    height: 10vh;
    /* position: fixed; */
    display: block;
    width: 80vw;
    margin: auto;

    margin-top: 20px;
    left: 0;
    right: 0;
    /* background: black; */
}

.nav-logo {
    height: 100%;
    float: left;


}



.menu-wrap {
    position: fixed;
    top: 50px;
    right: 50px;
    z-index: 1;
    display: none;
}

.menu-wrap .toggler {
    position: absolute;
    top: 0px;
    right: 0;
    z-index: 2;
    cursor: pointer;
    width: 50px;
    height: 50px;
    opacity: 0;
}

.menu-wrap .hamburger {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 60px;
    height: 60px;
    padding: 1rem;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger Line */
.menu-wrap .hamburger>div {
    position: relative;
    flex: none;
    width: 100%;
    height: 2px;
    z-index: 1;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

/* Hamburger Lines - Top & Bottom */
.menu-wrap .hamburger>div::before,
.menu-wrap .hamburger>div::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: -10px;
    width: 100%;
    height: 2px;
    background: inherit;
}

/* Moves Line Down */
.menu-wrap .hamburger>div::after {
    top: 10px;
}

/* Toggler Animation */
.menu-wrap .toggler:checked+.hamburger>div {
    transform: rotate(135deg);
}

/* Turns Lines Into X */
.menu-wrap .toggler:checked+.hamburger>div:before,
.menu-wrap .toggler:checked+.hamburger>div:after {
    top: 0;
    transform: rotate(90deg);
}

/* Rotate On Hover When Checked */
.menu-wrap .toggler:checked:hover+.hamburger>div {
    transform: rotate(225deg);
}

/* Show Menu */
.menu-wrap .toggler:checked~.menu {
    visibility: visible;
}

.menu-wrap .toggler:checked~.menu>div {
    transform: scale(1);
    transition-duration: var(--menu-speed);
}

.menu-wrap .toggler:checked~.menu>div>div {
    opacity: 1;
    transition: opacity 0.4s ease 0.4s;
}

.menu-wrap .menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    visibility: hidden;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-wrap .menu>div {
    background: var(--overlay-color);
    border-radius: 50%;
    width: 200vw;
    height: 200vw;
    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: all 0.4s ease;
}

.menu-wrap .menu>div>div {
    text-align: center;
    max-width: 90vw;
    max-height: 100vh;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-wrap .menu>div>div>ul>li {
    list-style: none;
    color: var(--white-color);
    font-size: 1.5rem;
    padding: 1rem;
}

.menu-wrap .menu>div>div>ul>li>a {
    color: inherit;
    text-decoration: none;
    transition: color 0.4s ease;
}


.legal {
    position: absolute;
    bottom: 25px;
    right: 25px;
}


.hero-tag {
    margin-top: 20vh;
    text-align: left;
    font-size: 3.5em;
    font-weight: bold;
    color: var(--hero-color);
    font-family: 'CircularStd', sans-serif;
}

.contact-hero {
    margin-top: 0vh;
    font-size: 3.5em;
}

.hero-des {
    padding-right: 60px;
    text-align: justify;
    /* font-weight: 800; */
    letter-spacing: 1.2;
}

.contact-des {
    letter-spacing: 0.2;
}

.input-container {
    padding: 10px 0px;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.form-control {
    height: calc(2.25rem + 2px);
    padding: .5rem .75rem;
    width: 90%;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background: none;
    border: none;
    border-bottom: 2px solid #444;
    border-radius: 0rem;
    transition: all .5s ease-in-out;
    outline: none;
}

.form-control:focus {
    outline: none;
    border-bottom: 2px solid blue;
    box-shadow: none;
}

.form-control:hover {
    background: whitesmoke;
}

/* input:focus, textarea:focus, select:focus{
    outline: none;
} */
.learn-btn {
    padding: 5px 10px;
    background: var(--light-text-color);
    color: white;
    border: 2px solid var(--light-text-color);
    letter-spacing: 0.1;
    transition: all 1s;
}

.contact-des a {
    text-decoration: none;
    color: #444;
    transition: color 1s;
}

.contact-des a:hover {
    color: blue;
}

.learn-btn:hover {
    background: blue;
    border: 2px solid blue;
}

.contact-btn {
    margin-left: 6px;
    padding: 5px 10px;
    color: var(--light-text-color);
    background: none;
    border: 2px solid var(--light-text-color);
    transition: all 1s;
}

.contact-btn:hover {
    color: blue;
    border: 2px solid blue;
}

#hero-img {
    margin-top: 50px;
    width: 90%;
}

#left-hero {
    padding-left: 150px;
}

#logo {
    margin-top: 5px;
    height: 80%;
    padding: 0px;
    /* border: 4px solid #444; */
    /* border-radius: 50%; */
}

#logo:hover {
    box-shadow: 0px 0px 10px #444;
}
/* .nav-items{
    color:black;
    float:right;
} */
ul {
    /* list-style: none; */
    float: right;
    /* color:white; */
    list-style: none;
    padding: 30px 0px;
}

ol {
    list-style: decimal;
    padding-left: 1.25em;
}
ol li {
    padding-left: 0.25em;
}
li {
    /* text-transform: uppercase; */
    display: inline;
    font-size: 16px;
    letter-spacing: 0.1;
    padding: 0px 15px;
}

.social-icons {
    margin-top: 30%;
}

.footer-full {
    width: 80vw;
    margin: 0 auto;
    padding: 30px 10px;
    padding-top: 100px;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer-credits {
    float: right;
    /* display: inline; */
}

.footer-credits a {
    color: #444;
    font-weight: bold;
    text-decoration: none;
    transition: all 1s;
}

.footer-credits a:hover {
    color: blue;
    text-decoration: none;
    font-weight: bold;
}

.social-icons i {
    font-size: 2em;
    /* font-weight: 100; */
    padding: 0px 5px;
}

li span {
    position: relative;
    /* display: block; */
    cursor: pointer;
}

li span:before,
li span:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    top: 50%;
    margin-top: 15px;
    background: var(--black-color);
}

li span:before {
    left: -2.5px;
}

li span:after {
    right: 2.5px;
    background: var(--black-color);
    transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.footer-full {
    padding-top: 60px;
}

li span:hover:before {
    background: var(--black-color);
    width: 100%;
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

li span:hover:after {
    background: transparent;
    width: 100%;
    transition: 0s;
}

#index-body {
    /* background: url('assets/img/mobile.png'); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* Tablets */
@media (min-width: 768px) and (max-width: 1024px) {
    #left-hero {
        padding-left: 80px;
        flex: 0 0 100% !important;
        max-width: 100% !important;

    }

    #work-row {
        padding-left: 50px;
        padding-right: 50px;
    }

    .work-hero {
        width: 100%;
    }

    #hero-right {
        display: none;
    }
    .work-double-row{
        padding-left: 30px;
        padding-right: 30px;
    }
    #index-body {
/*         background: url('assets/img/mobile.png'); */
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        height: 100vh;
        width: 100vw;
    }
    /* .work-double-row{
        padding-left: 50px;
        padding-right: 50px;
    } */

}

/* #logo {
    display: none;
} */

@media only screen and (max-width: 768px) {

    /* For mobile phones: */
    .nav-items {
        width: 0;
        height: 0;
        display: none;
    }
    .work-double-row{
        padding:15px 10px;
        padding-bottom: 0;
    }
    .work-hero-card{
        width:100%;
        margin-bottom: 25px;
    }
    #row-3{
        margin-top: 0px;
        padding:0 20px;
    }
    #index-body {
/*         background: url('assets/img/mobile.png'); */
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        height: 100vh;
    }

    #left-hero {
        padding-left: 50px;
        ;
    }

    #work-row {
        padding-right: 0;
        padding-left: 30px;
    }

    .work-des h1 {
        text-align: center;
    }

    .work-read {
        float: none;
    }

    #logo {
        display: none;
        /* height: 65%;
        margin-top: 28px; */
    }

    .hero-tag {
        margin-top: 20vh;
        font-size: 4em;
    }

    #hero-right {
        display: none;
    }

    .hero-des {
        padding-right: 30px;
    }

    .menu-wrap {
        display: block;
    }

    .menu ul li {
        display: block !important;
    }

    .menu ul li a {
        color: var(--black-color) !important;
    }

    .menu-wrap .hamburger {
        z-index: 2;
    }

    .menu-wrap .toggler {
        z-index: 3;
    }

    .contact-hero {
        margin-top: 10vh;
    }

    .footer-full {
        text-align: center;
        padding-top: 40px !important;
    }

    #contact-social {
        margin-top: 10%;
    }

    .footer-credits {
        display: block;
        text-align: center;
        padding-top: 10px;
        float: none;
    }

    #legal-hero {
        margin-top: 5vh !important;
        text-align: left;
    }

    #legal-hero-des {
        padding-right: 10px;
        text-align: left;
        font-size: 0.8em;
    }

    .privacy-policy p {
        padding-right: 1vw;
        /* text-align: left; */
    }

    .project-star {
        display: none;
    }

    .project-star-mobile {
        display: block;
    }
}


::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: white;

}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 50px;

}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;

}
