/* font import */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');


/* CSS Reset Start */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    font-family: "Roboto Flex", sans-serif;
    background-color: white;
}


img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* CSS Reset Start */

/* utility classes start */
.font-inter {
    font-family: "Inter", sans-serif;
}

.font-roboto-mono {
    font-family: "Roboto Mono", monospace;
}

.font-roboto-flex {
    font-family: "Roboto Flex", sans-serif;
}

.font-ibm-plex-mono {
    font-family: "IBM Plex Mono", monospace;
}

.fw-extra-bold {
    font-weight: 800 !important;
}

.main-title-large {
    font-size: 50px;
    line-height: 72px;
}

.main-title-medium {
    font-size: 40px;
    line-height: 48px;
}

.sub-title-large {
    font-size: 28px;
    line-height: 59px;
}

.sub-title-meduim {
    font-size: 24px;
    line-height: 36px;
}

.sub-title-small {
    font-size: 30px;
    line-height: 36px;
}

.custom-container {
    max-width: 1264px;
    margin: 0 auto;
}

.custom-container-1200 {
    max-width: 1200px;
    margin: 0 auto;
}

/* utility classes end */

/* Base Grid System */
.grid {
    display: grid;
    width: 100%;
}

.grid-item {
    width: 100%;
    min-width: 0;
}

/* -----------------------------
   Base (Extra Small <576px)
------------------------------ */
.grid-1 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

.grid-7 {
    grid-template-columns: repeat(7, 1fr);
}

.grid-8 {
    grid-template-columns: repeat(8, 1fr);
}

.grid-9 {
    grid-template-columns: repeat(9, 1fr);
}

.grid-10 {
    grid-template-columns: repeat(10, 1fr);
}

/* -----------------------------
   Responsive Breakpoints (Bootstrap style)
------------------------------ */

/* SM ≥576px */
@media (min-width: 576px) {
    [class*="grid-sm-"] {
        grid-template-columns: initial;
    }

    .grid-sm-1 {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-sm-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-sm-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-sm-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-sm-5 {
        grid-template-columns: repeat(5, 1fr);
    }

    .grid-sm-6 {
        grid-template-columns: repeat(6, 1fr);
    }

    .grid-sm-7 {
        grid-template-columns: repeat(7, 1fr);
    }

    .grid-sm-8 {
        grid-template-columns: repeat(8, 1fr);
    }

    .grid-sm-9 {
        grid-template-columns: repeat(9, 1fr);
    }

    .grid-sm-10 {
        grid-template-columns: repeat(10, 1fr);
    }
}

/* MD ≥768px */
@media (min-width: 768px) {
    [class*="grid-md-"] {
        grid-template-columns: initial;
    }

    .grid-md-1 {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-md-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-md-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-md-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-md-5 {
        grid-template-columns: repeat(5, 1fr);
    }

    .grid-md-6 {
        grid-template-columns: repeat(6, 1fr);
    }

    .grid-md-7 {
        grid-template-columns: repeat(7, 1fr);
    }

    .grid-md-8 {
        grid-template-columns: repeat(8, 1fr);
    }

    .grid-md-9 {
        grid-template-columns: repeat(9, 1fr);
    }

    .grid-md-10 {
        grid-template-columns: repeat(10, 1fr);
    }
}

/* LG ≥992px */
@media (min-width: 992px) {
    [class*="grid-lg-"] {
        grid-template-columns: initial;
    }

    .grid-lg-1 {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-lg-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-lg-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-lg-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-lg-5 {
        grid-template-columns: repeat(5, 1fr);
    }

    .grid-lg-6 {
        grid-template-columns: repeat(6, 1fr);
    }

    .grid-lg-7 {
        grid-template-columns: repeat(7, 1fr);
    }

    .grid-lg-8 {
        grid-template-columns: repeat(8, 1fr);
    }

    .grid-lg-9 {
        grid-template-columns: repeat(9, 1fr);
    }

    .grid-lg-10 {
        grid-template-columns: repeat(10, 1fr);
    }
}

/* XL ≥1200px */
@media (min-width: 1200px) {
    [class*="grid-xl-"] {
        grid-template-columns: initial;
    }

    .grid-xl-1 {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-xl-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-xl-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-xl-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-xl-5 {
        grid-template-columns: repeat(5, 1fr);
    }

    .grid-xl-6 {
        grid-template-columns: repeat(6, 1fr);
    }

    .grid-xl-7 {
        grid-template-columns: repeat(7, 1fr);
    }

    .grid-xl-8 {
        grid-template-columns: repeat(8, 1fr);
    }

    .grid-xl-9 {
        grid-template-columns: repeat(9, 1fr);
    }

    .grid-xl-10 {
        grid-template-columns: repeat(10, 1fr);
    }
}

/* XXL ≥1400px */
@media (min-width: 1400px) {
    [class*="grid-xxl-"] {
        grid-template-columns: initial;
    }

    .grid-xxl-1 {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-xxl-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-xxl-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-xxl-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-xxl-5 {
        grid-template-columns: repeat(5, 1fr);
    }

    .grid-xxl-6 {
        grid-template-columns: repeat(6, 1fr);
    }

    .grid-xxl-7 {
        grid-template-columns: repeat(7, 1fr);
    }

    .grid-xxl-8 {
        grid-template-columns: repeat(8, 1fr);
    }

    .grid-xxl-9 {
        grid-template-columns: repeat(9, 1fr);
    }

    .grid-xxl-10 {
        grid-template-columns: repeat(10, 1fr);
    }
}

/* -----------------------------
   Gap Utilities
------------------------------ */
.grid-gap-1 {
    gap: 5px;
}

.grid-gap-2 {
    gap: 10px;
}

.grid-gap-3 {
    gap: 15px;
}

.grid-gap-4 {
    gap: 20px;
}

.grid-gap-5 {
    gap: 25px;
}

.grid-gap-6 {
    gap: 30px;
}

.grid-gap-7 {
    gap: 35px;
}

.grid-gap-8 {
    gap: 40px;
}

.grid-gap-9 {
    gap: 45px;
}

.grid-gap-10 {
    gap: 50px;
}

.row-gap-1 {
    row-gap: 5px;
}

.row-gap-2 {
    row-gap: 10px;
}

.row-gap-3 {
    row-gap: 15px;
}

.row-gap-4 {
    row-gap: 20px;
}

.row-gap-5 {
    row-gap: 25px;
}

.row-gap-6 {
    row-gap: 30px;
}

.row-gap-7 {
    row-gap: 35px;
}

.row-gap-8 {
    row-gap: 40px;
}

.row-gap-9 {
    row-gap: 45px;
}

.row-gap-10 {
    row-gap: 50px;
}

.col-gap-1 {
    column-gap: 5px;
}

.col-gap-2 {
    column-gap: 10px;
}

.col-gap-3 {
    column-gap: 15px;
}

.col-gap-4 {
    column-gap: 20px;
}

.col-gap-5 {
    column-gap: 25px;
}

.col-gap-6 {
    column-gap: 30px;
}

.col-gap-7 {
    column-gap: 35px;
}

.col-gap-8 {
    column-gap: 40px;
}

.col-gap-9 {
    column-gap: 45px;
}

.col-gap-10 {
    column-gap: 50px;
}




/* buttons style start */
.btn {
    padding: 10px 24px;
    border-radius: 12px;
    white-space: nowrap;
    font-size: 18px;
    line-height: 27px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    font-family: "Roboto Mono", monospace;
}

.btn-black span svg path {
    transition: all 0.3s ease;
}

.btn-black {
    background-color: #000000;
    color: #FFFFFF;
    border: 1px solid #000000 !important;
}

.btn-black:hover {
    background-color: transparent !important;
    border: 1px solid #000000 !important;
    color: #000000 !important;
}

.btn-black:hover span svg path {
    fill: #000000 !important;
}

.btn-outline {
    background-color: transparent;
    color: #000000;
    border: 1px solid #000000 !important;
    padding: 14px 28px;
}

.btn-outline:hover {
    background-color: #000000 !important;
    color: #FFFFFF !important;
}

.btn-outline:hover span svg path {
    fill: #FFFFFF !important;
}

/* gredient btn start */
.gredient-btn {
    position: relative;
    z-index: 1;
}

.gredient-btn .btn {
    transition: all 0.4s ease-in-out;
    padding: 14px 28px;
}

.gredient-btn::after {
    content: "";
    background: url('../images/rainbow-image-bg.svg') no-repeat center center;
    position: absolute;
    top: -50px;
    left: -51px;
    width: 308px;
    height: 204px;
    pointer-events: none;
    z-index: -1;
}

.gredient-btn a {
    display: inline-block;
}

.gredient-btn .btn-black:hover {
    background-color: #ffffff !important;
}


/* gredient btn end */

/* buttons style end */



/* Header style start */

.page-wrapper nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-wrapper nav ul li {
    float: left;
    position: relative;
}

.page-wrapper nav ul li a {
    display: block;
    padding: 0 32px 0 0;
    line-height: 24px;
    font-size: 16px;
    color: #737373;
    font-weight: 600;
    transition: all 0.4s ease;
}

.page-wrapper nav ul li a:hover {
    color: #000000;
}

.page-wrapper nav ul li a:not(:only-child)::after {
    padding-left: 4px;
    content: ' ▾';
}


/* Dropdown styling */
.page-wrapper nav ul li ul li {
    min-width: 190px;
}

.page-wrapper nav ul li ul li a {
    padding: 15px;
    line-height: 20px;
}

/* Mobile signup button */
.page-wrapper nav .mobile-signup-button {
    display: none;
}

.page-wrapper .btn {
    font-size: 16px;
    line-height: 24px;
    height: 50px;
}

/* Dropdown container */
.page-wrapper .nav-dropdown {
    position: absolute;
    z-index: 1;
    display: none;
    background: rgba(30, 30, 30, 0.9);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}

/* Hamburger menu icon */
.page-wrapper .nav-mobile {
    display: none;
    position: absolute;
    top: 3rem;
    right: 6rem;
    height: 70px;
    width: 70px;
}

.page-wrapper #nav-toggle {
    position: absolute;
    left: 18px;
    top: 22px;
    cursor: pointer;
    padding: 10px 35px 16px 0;
}

.page-wrapper #nav-toggle span,
.page-wrapper #nav-toggle span::before,
.page-wrapper #nav-toggle span::after {
    content: '';
    display: block;
    position: absolute;
    height: 3px;
    width: 35px;
    background: #000000;
    border-radius: 34px;
    transition: all 300ms ease-in-out;
}

.page-wrapper #nav-toggle span::before {
    top: -10px;
}

.page-wrapper #nav-toggle span::after {
    bottom: -10px;
}

.page-wrapper #nav-toggle.active span {
    background-color: transparent;
}

.page-wrapper #nav-toggle.active span::before {
    top: 0;
    transform: rotate(45deg);
}

.page-wrapper #nav-toggle.active span::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Sticky header base */
.page-wrapper .navigation {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

/* Navigation container */
.page-wrapper .nav-container {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 12px 25px 32px;
    max-height: 74px;
    margin: 16px auto 0;
    z-index: 9999;
    transition: all 0.4s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-list {
    display: flex;
    align-items: center;
}

.page-wrapper .nav-container.scroll-up {
    animation: slideDownFade 0.4s ease forwards;
}

.page-wrapper .nav-container.scroll-down {
    animation: slideUpFade 0.4s ease forwards;
}

/* Brand logo */
.page-wrapper .brand img {
    width: 237px;
    height: 30px;
}

/* Right-side menu */
.page-wrapper .right-menu-button {
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

.page-wrapper .right-menu-button a {
    cursor: pointer;
    transition: color 0.3s;

}

.header-links-button {
    display: flex;
    align-items: center;
}


@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUpFade {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Header style end */






/* login page style start */

/* Outer full border container */
.full-border-wrapper {
    width: 100vw;
    height: 100vh;
    padding: 20px;
    background-color: #fff;
    box-sizing: border-box;
    position: relative;
}

.error-message {
    font-size: 16px;
    color: #dc3545;
    text-align: center;
    margin-bottom:10px;
}


/* Inner box with visible border all sides */
.inner-box {
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.custom-row {
    height: 100vh;
}

.full-border-wrapper::before {
    content: '';
    position: absolute;
    pointer-events: none;
    top: 0;
    bottom: 0;
    left: 19px;
    right: 0;
    border-left: 1px solid #E5E5E5;
}

.full-border-wrapper::after {
    content: '';
    position: absolute;
    pointer-events: none;
    top: 0;
    bottom: 0;
    left: 50%;
    right: 0;
    border-left: 1px solid #E5E5E5;
}


.inner-box::before {
    content: '';
    position: absolute;
    pointer-events: none;
    top: 19px;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid #E5E5E5;
}

.inner-box::after {
    content: '';
    position: absolute;
    pointer-events: none;
    top: 0;
    bottom: 19px;
    left: 0;
    right: 0;
    border-bottom: 1px solid #E5E5E5;
}

.left-section::after {
    content: '';
    position: absolute;
    pointer-events: none;
    top: 0;
    bottom: 0;
    left: 19px;
    right: 0;
    height: 0;
    border-left: 1px solid #E5E5E5;
}

.left-section::before {
    content: '';
    position: absolute;
    pointer-events: none;
    top: 0;
    bottom: 0;
    left: 0;
    right: 19px;
    border-right: 1px solid #E5E5E5;
}

/* Left section */
.left-section {
    background: url('../images/login-page-bg.webp') center center no-repeat;
    background-size: cover;
    padding: 88px 88px 80px;
    z-index: 1;
    height: 100vh;
}

.bottom-content {
    margin-bottom: 50px;
}

.bottom-content h1 {
    margin-bottom: 35px;
}


/* Right section */
.right-section {
    background-color: #fff;
    position: relative;
    padding: 0 60px;
}

.login-box {
    width: 100%;
    max-width: 400px;
}

.login-box h2 {
    color: #262626;
    margin-bottom: 32px;
}

.custom-input {
    border-radius: 0;
    border: 1px solid #DFDFDF;
    padding: 16px 24px;
    font-size: 16px;
    background-color: #F8F8F8;

}

.custom-input::placeholder {
    color: #737373;
}

.custom-input:focus {
    border-color: #000;
    box-shadow: none;
    background-color: #F8F8F8;
}

.login-box .btn-dark {
    font-weight: 700;
    border-radius: 12px;
    letter-spacing: 0.5px;
    padding: 12px 0;
    font-size: 16px;
}

.login-box .btn-dark:hover {
    background-color: transparent !important;
    color: #000000 !important;
}

.password-feild span svg {
    position: absolute;
    right: 24px;
    top: 22px;
}

.footer-links {
    position: absolute;
    bottom: 45px;
    text-align: center;
}

.footer-links a {
    color: #999999;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.4s ease;
}

.footer-links a:hover {
    color: #000000;
}

/* login page style end */


/* home page style start */
.hero-section {
    padding: 154px 0 64px 0;
    background-color: #F8F8F8;
    border-bottom: 1px solid #E5E5E5;
}

.hero-badge {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.hero-badge {
    padding: 8px 16px;
    background-color: #F1F1F1;
    outline: 1px solid #E5E5E5;
    position: relative;
    margin-bottom: 16px;
}

.hero-badge span::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    top: -1px;
    right: -6px;
    background: url('../images/squre.svg') no-repeat top 0 left 0;
    z-index: 1;
    rotate: 360deg;
}

.hero-badge span::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    bottom: -5.6px;
    right: -6px;
    background: url('../images/squre.svg') no-repeat bottom 0 left 0;
    z-index: 1;
    rotate: 90deg;
}

.hero-badge::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    top: -6px;
    left: -1px;
    background: url('../images/squre.svg') no-repeat top 0 left 0;
    z-index: 1;
    rotate: 270deg;
}

.hero-badge::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    bottom: -6px;
    left: -6px;
    background: url('../images/squre.svg') no-repeat bottom 0 left 0;
    z-index: 1;
    rotate: 180deg;
}

.hero-badge p {
    font-size: 16px;
    color: #000000;
    line-height: 24px;
    font-family: "Roboto Mono", monospace;
    margin-bottom: 0;
}

.hero-badge p span {
    font-weight: bold;
}

.hero-title {
    margin-bottom: 16px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    column-gap: 32px;
    justify-content: center;
    margin-bottom: 48px;
}

.hero-buttons .gredient-btn .btn {
    transition: all 0.4s ease-in-out;
    padding: 14px 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-buttons .gredient-btn::after {
    content: "";
    top: -61px;
    left: -51px;
    width: 270px;
    height: 175px;
    z-index: -1;
}

.hero-sub-text {
    color: #404040;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 32px;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 30px;
    font-family: "Roboto Flex", sans-serif;
}

.btn-with-icon {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-weight: bold;
}

.hero-image-first-image img {
    width: 415px;
    height: 260px;
    object-fit: contain;

}

.hero-image-second-image img {
    width: 439px;
    height: 250px;
    object-fit: contain;
}



.custom-row-gap {
    width: 80px;
}

.trusted-scientists-sec .supportted-by-logos {
    display: flex;
    column-gap: 40px;
    align-items: center;
    justify-content: end;
}

.trusted-scientists-sec h2 {
    font-size: 18px;
    font-weight: 700;
}

.scania-logo {
    width: 106px;
    height: 28px;
}

.uni-potsdam-logo {
    width: 61px;
    height: 64px;
}

.hs-kempten-logo {
    width: 103px;
    height: 48px;
}


.university-oxford-logo {
    width: 48px;
    height: 48px;
}

.eth-logo {
    width: 144px;
    height: 24px;
}

.trusted-scientists-sec .supportted-by-logos .eth-student-project img.ucph-logo {
    width: 50px;
    height: 50px;
}

.eth-student-project img {
    height: 64px;
    width: 154px;
}

.run-experiments-sec {
    padding: 64px 0;
    overflow: hidden;
    scroll-margin-top: 40px;
}

.trusted-scientists-sec .supportted-by-logos .eth-student-project img {
    height: auto;
    width: auto;
}


.run-experiments-content {
    padding: 48px;
    background-color: #F8F8F8;
    position: relative;
    border: 1px solid #DFDFDF;

}

.run-experiments-content h2 {
    margin-bottom: 24px;
    position: relative;
    font-family: "Roboto Flex", sans-serif;

}

.run-experiments-content p {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 48px;
    font-family: "Roboto Flex", sans-serif;
    color: #737373;
}

.arrow {
    position: absolute;
    bottom: 10px;
    margin-left: 15px;
}

.run-experiments-content .gredient-btn a {
    display: inline-flex;
    column-gap: 10px;
    font-weight: 700;
}

.run-experiments-content .gredient-btn::after {
    top: -51px;
    left: -172px;
    width: 593px;
    height: 167px;
}


.copy-snippet-part {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    background-color: #151718;
    height: 100%;
    cursor: default;
    padding: 32px;
}

.copy-snippet-part pre {
    margin: 0;
    width: 100%;
    background: transparent !important;
    padding: 0 !important;
    overflow-x: auto;
}

.copy-snippet-part pre code {
    font-family: "Roboto Mono", monospace;
    font-size: 14px;
    line-height: 1.7;
    background: transparent !important;
}

.copy-snippet-btn {
    position: absolute;
    top: 32px;
    right: 32px;
    display: flex;
    align-items: center;
    column-gap: 4px;
    font-family: "Roboto Mono", monospace;
    font-weight: bold;
    font-size: 18px;
    color: #FFFFFF;
}


.case-studies-sec {}

.case-studies-sec {
    position: relative;
    margin: 64px 0;
}

.case-studies-title {
    padding-bottom: 48px;
}



.case-studies-title {
    border-bottom: 1px solid #e5e5e5;
    position: relative;
}

.case-studies-sec::after {
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #e5e5e5;
}

.case-studies-card {
    position: relative;
    /* overflow: hidden; */
    background: #fff;
    /* border-top: 1px solid #e5e5e5; */
    /* border-bottom: 1px solid #e5e5e5; */
    border-left: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 399.33px;
    padding: 25px 25px;
}


.case-studies-wrapper .grid-item:last-child .case-studies-card {
    border-right: 1px solid #e5e5e5;
}

.case-studies-card .case-studies-card-image-title::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    top: -1px;
    right: -6px;
    background: url('../images/squre.svg') no-repeat top 0 left 0;
    z-index: 1;
    rotate: 360deg;
}

.case-studies-card .case-studies-card-image-title::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    bottom: -5.6px;
    right: -1px;
    background: url(../images/squre.svg) no-repeat top 0 left 0;
    z-index: 1;
    rotate: 90deg;
}

.case-studies-card::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    top: -5.6px;
    left: -1px;
    background: url('../images/squre.svg') no-repeat top 0 left 0;
    z-index: 1;
    rotate: 270deg;
}

.case-studies-card::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    bottom: -5.6px;
    left: -6px;
    background: url('../images/squre.svg') no-repeat bottom 0 left 0;
    z-index: 1;
    rotate: 180deg;
}


.case-studies-card-image img {
    display: block;
    margin: 0 auto 30px;
}

.case-studies-card-image-title-wrapper {
    transform: translateY(20px);
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.case-studies-card-image-title-wrapper p {
    opacity: 0;
    visibility: hidden;
    display: none;
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    margin-bottom: 48px;
    font-family: "Roboto Flex", sans-serif;
    color: #737373;
}

.case-studies-card:hover .case-studies-card-image-title-wrapper p {
    opacity: 1;
    visibility: visible;
    display: block;

}

.case-studies-card-title {
    margin-bottom: 24px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 28px;
    color: #262626;
}

.case-studies-card:hover .case-studies-card-title {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
}

.case-studies-card:hover .case-studies-card-image-title-wrapper {
    opacity: 1;
    transform: translateY(0);
}

.case-studies-card .case-studies-card-btn a {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-family: "Roboto Mono", monospace;
    font-weight: 700;
    font-size: 14px;
}

.case-studies-card:hover .case-studies-card-btn a {
    opacity: 1;
    visibility: visible;
}

.case-studies-card-btn a {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.case-studies-card:hover .case-studies-card-first-image-title {
    opacity: 0;
}

.case-studies-card-btn a {
    display: flex;
    align-items: center;
    column-gap: 15px;
    justify-content: center;
}

.case-studies-card-content p {
    margin-bottom: 10px;
    color: #555;
}


.technology-sec {
    padding: 64px 0;
}

.technology-btn-wrapper {
    margin-bottom: 16px;
}

.technology-btn {
    background-color: transparent;
    border: 0;
    position: relative;
    height: 36px;
    width: 121px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #4D4D4D;
}

.technology-btn::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    top: -5.6px;
    left: -1px;
    background: url('../images/squre.svg') no-repeat top 0 left 0;
    z-index: 1;
    rotate: 270deg;
}


.technology-btn::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    bottom: -5.6px;
    left: -6px;
    background: url('../images/squre.svg') no-repeat bottom 0 left 0;
    z-index: 1;
    rotate: 180deg;
}

.technology-btn span::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    top: -1px;
    right: -6px;
    background: url('../images/squre.svg') no-repeat top 0 left 0;
    z-index: 1;
    rotate: 360deg;
}

.technology-btn span::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    bottom: -5.6px;
    right: -1px;
    background: url('../images/squre.svg') no-repeat top 0 left 0;
    z-index: 1;
    rotate: 90deg;
}

.technology-content p {
    font-size: 18px;
    line-height: 27px;
    color: #737373;
    margin-bottom: 0;
}

.the-chambers-card-wrapper {
    margin-top: 48px;
}

.the-chambers-card {
    padding: 64px 32px 32px;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    background-color: #ffffff;
}


.the-chambers-card:hover {
    background: url('../images/login-page-bg.webp') center center no-repeat;
    background-size: cover;
}

.the-chambers-card:hover .the-chambers-card-img img {
    transform: translateY(-10px);
}

.the-chambers-card-img img {
    width: 400px;
    height: auto;
    margin: 0 auto;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.technology-sec .the-chambers-card-wrapper .grid-item:last-child .the-chambers-card {
    border-right: 1px solid #e5e5e5;
}

.the-chambers-card::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    top: -5.6px;
    left: -1px;
    background: url('../images/squre.svg') no-repeat top 0 left 0;
    z-index: 1;
    rotate: 270deg;
}

.case-studies-card-image-title .case-studies-card .case-studies-card-image-title::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    top: -1px;
    right: -5.6px;
    background: url('../images/squre.svg') no-repeat top 0 left 0;
    z-index: 1;
    rotate: 360deg;
}

.the-chambers-card::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    bottom: -5.6px;
    left: -6px;
    background: url('../images/squre.svg') no-repeat bottom 0 left 0;
    z-index: 1;
    rotate: 180deg;
}

.the-chambers-card-wrapper .grid-item {
    position: relative;
}

.the-chambers-card-wrapper .grid-item::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    top: 0;
    right: -5px;
    background: url('../images/squre.svg') no-repeat top 0 left 0;
    z-index: 1;
    rotate: 360deg;
}

.the-chambers-card-wrapper .grid-item::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    bottom: -5px;
    right: -1px;
    background: url('../images/squre.svg') no-repeat top 0 left 0;
    z-index: 1;
    rotate: 90deg;
}



.the-chambers-card-title-icon {
    display: flex;
    column-gap: 5px;
}

.the-chambers-card-title-icon span {
    position: relative;
    top: 3px;
}

.the-chambers-card-content {
    margin-top: 48px;
}

.the-chambers-card-content h5 {
    font-size: 28px;
    font-weight: 500;
    line-height: 34px;
    padding-bottom: 24px;
    margin-bottom: 0;
}

.the-chambers-card-content p {
    font-size: 18px;
    font-family: "Roboto Mono", monospace;
    line-height: 27px;
    color: #737373;
    font-weight: 400;
}


.research-papers-sec {
    padding: 64px 15px;
}

.research-papers-title-content p {
    font-size: 18px;
    line-height: 27px;
    font-family: "Roboto Flex", sans-serif;
    color: #737373;
    margin-bottom: 48px;
}

.research-papers-title-content h4 {
    margin-bottom: 24px;
}

.research-paper-card-content h5 {
    padding-bottom: 16px;
    max-width: 296px;
    color: #262626;
}

.research-paper-card-content p {
    font-size: 14px;
    font-weight: normal;
    font-family: "Roboto Mono", monospace;
    max-width: 296px;
    color: #4D4D4D;
}

.research-paper-card-wrapper {
    align-items: end;
    transition: transform 0.3s ease;
}

.research-paper-card-wrapper.hidden {
    display: none;
}

.research-paper-card a {
    display: flex;
    align-items: center;
    justify-content: end;
    column-gap: 5px;
    font-weight: 700;
    color: #000000;
    font-size: 14px;
    font-family: "Roboto Mono", monospace;
    transition: all 0.4s ease;
}

.research-paper-card-wrapper {
    padding: 48px 0;
    margin: 0;
    border-top: 1px solid #E5E5E5;
}

.load-more-btn-wrapper {
    border-top: 1px solid #E5E5E5;
    padding: 48px 0 0;
}

/* Load More / Load Less Button */
.load-more-btn,
.load-less-btn {
    background: transparent;
    border: 2px solid #000;
    padding: 12px 32px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 40px auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn span svg,
.load-less-btn span svg {
    width: 11px;
    height: 6px;
    transition: transform 0.3s ease;
}

.load-less-btn span svg {
    transform: rotate(180deg);
}

/* Hidden Papers */
.hidden-paper {
    display: none;
}

.show-paper {
    display: block !important;
}


.research-paper-card {
    overflow: hidden;
    transition: all 0.4s ease;
}

.research-paper-card-wrapper:hover .research-paper-card .research-paper-card-img {
    transform: translateY(0);
}

.research-paper-card-wrapper .research-paper-card .research-paper-card-img {
    height: 168px;
    width: 296.33px;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

button:focus {
    outline: none;
}

.research-papers-sec .technology-btn-wrapper {
    padding: 5px;
}

.load-more-btn-wrapper a {
    display: flex;
    align-items: center;
    column-gap: 10px;
    border: 1px solid #000000;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    transition: all 0.4s ease;
    border-radius: 12px;
    font-family: "Roboto Mono", monospace;
    text-transform: uppercase;
}

.about-hero-sec {
    padding: 80px 0;
    padding-top: 140px;
}

.about-img-wrapper {
    position: relative;
    height: 100%;
}

.about-hero-sec p a {
    color: #000000;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.4s ease;
    font-weight: 700;
}

.about-hero-sec p a:hover,
.about-hero-sec p a:hover svg path {
    color: #737373;
    fill: #737373;
}

.impressum-sec {
    padding: 64px 0;
    border-top: 1px solid #E5E5E5;
}

.impressum-details dt {
    font-weight: 600;
    color: #000000;
    margin-top: 16px;
}

.impressum-details dd {
    color: #737373;
    margin-bottom: 0;
}

.impressum-details a {
    color: #000000;
}

.get-in-touch-sec {
    border-bottom: 1px solid #E5E5E5;
    border-top: 1px solid #E5E5E5;
    padding: 48px 0;
    background-color: #F8F8F8;
    overflow: hidden;
}

.get-in-touch-content h4 {
    margin-bottom: 24px;
}

.get-in-touch-content p {
    font-size: 18px;
    font-weight: 400;
    color: #737373;
    line-height: 27px;
    max-width: 583.3px;
    word-break: break-word;
    font-family: "Roboto Flex", sans-serif;
}

.get-in-touch-content a {
    color: #000000;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.4s ease;
    font-weight: 700;
}

.get-in-touch-content a:hover,
.get-in-touch-content a:hover svg path {
    color: #737373;
    fill: #737373;
}

.get-in-touch-content a.btn-black {
    color: #FFFFFF;
}

.get-in-touch-content a.btn-black:hover {
    color: #000000;
}

.get-in-touch-btn .gredient-btn::after {
    left: -57px;
    width: 270px;
    height: 200px;
    background-size: 235px 249px;
}

.supportted-by-wrapper {
    align-items: center;
}

.get-in-touch-btn {
    display: flex;
    justify-content: end;
}

.supportted-by-sec {
    padding: 32px 0;
    border-bottom: 1px solid #E5E5E5;
}

.supportted-by-logos {
    display: flex;
    column-gap: 80px;
    align-items: center;
    justify-content: end;
}

.eth-ai-center-image img {
    height: 64px;
    width: 145px;
}

.eth-student-project img {
    height: 64px;
    width: 154px;
}

/* home page style end */


/* company page style start */
.hero-content-title h1 {
    margin-bottom: 0;
    padding-bottom: 65px;
}

.hero-content-title .gredient-btn::after {
    left: -43px !important;
    width: 270px !important;
    height: 200px !important;
    top: -69px !important;
}

.hero-content-desc p {
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
    word-break: normal;
}

.team-sec .swiper-button-prev::after,
.team-sec .swiper-button-next::after {
    font-size: 0 !important;
}

.clients-counter-section {
    padding: 0 0;
    border-bottom: 1px solid #E5E5E5;
}

.counter-number-parent {
    border-left: 1px solid #E5E5E5;
    padding: 32px 0;
}

.counter-number-parent.border-left {
    border-left: 1px solid #E5E5E5;
}

.counter-number-parent.border-right {
    border-right: 1px solid #E5E5E5;
}

.counter-number-wrapper {
    margin-bottom: 0;
}

.counter-number {
    font-size: 40px;
    font-weight: 600;
    color: #000;
    margin-bottom: 0;
    font-family: "Roboto Flex", sans-serif;

}

.plus-sign {
    font-size: 40px;
    font-weight: 600;
    color: #000;
    margin-left: 2px;
    font-family: "Roboto Flex", sans-serif;
}

.counter-text {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: #4D4D4D;
}


.team-sec {
    padding: 32px 0 64px;
}

.team-member {
    border: 1px solid #E5E5E5;
}

.team-member img {
    max-width: 100%;
}

.team-img {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.team-name {
    font-size: 28px;
    font-weight: 500;
    color: #262626;
    padding: 32px 32px 0 32px;
    margin-bottom: 16px;
    line-height: 34px;

}


.team-role {
    font-size: 18px;
    color: #737373;
    padding: 0 32px 32px 32px;
    margin-bottom: 0;
    line-height: 27px;
    font-weight: 400;
}

.team-sec-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 32px;
}

.pagination-wrapper .swiper-button-prev,
.pagination-wrapper .swiper-button-next {
    color: transparent;
    font-size: 0;
    position: relative;
    display: inline-block;
    width: 16px;
    height: 30px;
    margin-top: 5px;
    transition: all 0.4s ease-in;
}

.pagination-wrapper .swiper-button-prev:hover svg path,
.pagination-wrapper .swiper-button-next:hover svg path {
    fill: #EFEFEF;
    transition: all 0.3s ease;
}

.pagination-wrapper {
    display: flex;
    align-items: center;
    column-gap: 40px;
}


.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 25px;
}


/* company page style end */

/* footer design start */
.footer-part {
    padding: 64px 0;
}

.footer-logo img {
    width: 252.32px;
    height: 32px;
    margin-bottom: 39px;
}

.footer-link-with-title p {
    color: #4D4D4D;
    font-family: "Roboto Mono", monospace;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 2px;
}

.footer-link-with-title a {
    color: #4D4D4D;
    font-family: "Roboto Mono", monospace;
    line-height: 24px;
    font-weight: 700;
    transition: all 0.4s ease-in-out;
}

.footer-link-with-title a:hover {
    color: #000000;
}

.footer-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #262626;
    font-family: "Inter", sans-serif;
    line-height: 24px;
}

.footer-sec-wrapper ul li {
    margin-bottom: 16px;
}


.footer-sec-wrapper ul li a {
    font-size: 16px;
    font-family: "Roboto Flex", sans-serif;
    line-height: 24px;
    color: #737373;
    font-weight: 500;
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;

}

.footer-sec-wrapper ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2.5px;
    width: 0%;
    height: 2px;
    background-color: #737373;
    transition: width 0.3s ease;
}


.footer-sec-wrapper ul li a:hover {
    color: #737373;
}

.footer-sec-wrapper ul li a:hover::after {
    width: 100%;
}

.copy-right-part {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid #E5E5E5;
}

.copy-right-part address {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #999999;
    font-family: "Roboto Mono", monospace;
    margin-bottom: 0;
}

.copy-right-part p {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #999999;
    font-family: "Roboto Mono", monospace;
    margin-bottom: 0;
}


/* footer design end */
