* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
}

body {
    font-family: Arial, sans-serif;
    width: 100%;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --header-height: 3rem;
  
  --first-color: #3664F4;
  --dark-color: #070D1F;
  --dark-color-alt: #282B3A;
  --white-color: #E6E7E9;

  --body-font: 'Poppins', sans-serif;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;

  --z-fixed: 100;
}

@media screen and (min-width: 768px) {
  :root {
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}

*, ::before, ::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: 500;
}

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

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.bd-grid {
  max-width: 1024px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
      grid-template-columns: 100%;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.header {
  width: 100%;
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 1.5rem;
  background-color: var(--dark-color);
  z-index: var(--z-fixed);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo {
  color: var(--white-color);
}

.header__toggle {
  font-size: 1.5rem;
  color: var(--white-color);
  cursor: pointer;
}


@media screen and (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    background-color: var(--dark-color);
    color: var(--white-color);
    width: 100%;
    height: 100vh;
    padding: 1.5rem 0;
    z-index: var(--z-fixed);
    -webkit-transition: .5s;
    transition: .5s;
  }
}

.nav__content {
  height: 100%;
  -ms-grid-rows: max-content 1fr max-content;
      grid-template-rows: -webkit-max-content 1fr -webkit-max-content;
      grid-template-rows: max-content 1fr max-content;
  row-gap: 2rem;
}

.nav__close {
  position: absolute;
  right: 1.5rem;
  font-size: 1.3rem;
  padding: .25rem;
  background-color: var(--dark-color-alt);
  border-radius: 50%;
  cursor: pointer;
}

.nav__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: .25rem;
  margin-bottom: .8rem;
  width: 56px;
  height: 56px;
  background-color: var(--first-color);
  border-radius: 50%;
  overflow: hidden;
}

.nav__img img {
  width: 46px;
}

.nav__name {
  display: block;
  color: var(--white-color);
}

.nav__profesion {
  font-size: var(--small-font-size);
}

.nav__menu {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.nav__item {
  margin: 2.5rem 0;
}

.nav__link {
  color: var(--white-color);
}

.nav__social {
  padding-top: .5rem;
}

.nav__social-icon {
  font-size: 1.2rem;
  color: var(--white-color);
  margin-right: 1rem;
}

.nav__social-icon:hover {
  color: var(--first-color);
}

.show {
  left: 0;
}

.active {
  color: var(--first-color);
}

@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }
  .header {
    height: calc(var(--header-height) + 1rem);
  }
  .header__logo, .header__toggle {
    display: none;
  }
  .nav {
    width: 100%;
  }
  .nav__content {
    -ms-grid-columns: (max-content);
        grid-template-columns: repeat(3, -webkit-max-content);
        grid-template-columns: repeat(3, max-content);
    -ms-grid-rows: 1fr;
        grid-template-rows: 1fr;
    -webkit-column-gap: 1rem;
            column-gap: 1rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .nav__close, .nav__profesion {
    display: none;
  }
  .nav__perfil {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .nav__img {
    width: 32px;
    height: 32px;
    margin-right: .5rem;
    margin-bottom: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .nav__img img {
    width: 26px;
  }
  .nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .nav__item {
    margin: 0 .25rem;
  }
  .nav__link {
    padding: .5rem .8rem;
    border-radius: .25rem;
  }
  .nav__link:hover {
    background-color: var(--first-color);
  }
  .active {
    background-color: var(--first-color);
    color: var(--white-color);
  }
}

@media screen and (min-width: 1024px) {
  .bd-grid {
    margin-left: auto;
    margin-right: auto;
  }
}

.teamImage {
    background-image: url(images/profile/TeamProfile.jpg);
    background-color: rgb(122, 122, 122);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: white;
    overflow: hidden;
    max-width: 100%;
}

.teamNameBox {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.teamName {
    border-right: 5px solid blue;
    font-size: 6.5vw;
    padding: 20px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    animation:
        typing 2s,
        cursor .4s step-end infinite alternate;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes cursor {
    50% {
        border-color: transparent;
    }
}

@media screen and (max-width: 600px) {
    .teamImage {
        width: 430px;
    }

    .teamName {
        font-size: 5em;
        white-space: wrap;
        text-align: center;
    }
}

.AboutUs {
    min-height: 500px;
    height: fit-content;
    color: rgb(255, 255, 255);
    background-color: rgb(52, 52, 52);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.AboutUs h1 {
    margin: 50px;
    font-size: 2.5em;
    font-weight: 800;
    text-align: center;
}

.AboutUs p {
    text-align: justify;
    width: 80%;
    font-size: 1.3em;
    margin-bottom: 50px;
}

.teamMembers {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(5, 94, 104);
}

.meetTheTeam {
    color: white;
    display: inline-block;
}

.meetTheTeam h1 {
    margin: 50px;
    font-size: 2.5em;
    font-weight: 800;
    text-align: center;
}

.members {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.memberPhoto {
    height: 450px;
}

.memberName {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 1.3em;
    font-weight: 800;
}

.member {
    overflow: hidden;
    border-radius: 50px;
    background-color: rgb(0, 216, 144);
    color: rgb(0, 0, 0);
    text-align: center;
    margin-right: 20px;
    margin-left: 20px;
    margin-top: 10px;
    margin-bottom: 50px;
    transition: 0.7s;
}

.member:hover {
    transform: scale(1.15);
}

.member {
    animation: appearence ease-in-out;
    animation-timeline: view();
    animation-range: entry 0%;
}

@keyframes appearence {
    0% {
        transform: translateY(100%);
        opacity: 0;
        scale: 0;
    }

    100% {
        transform: translateY(0%);
        opacity: 1;
        scale: 1;
    }
}

.coresBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: rgb(98, 163, 136);
}

.coresHead {
    margin: 50px;
    font-size: 2.5em;
    text-align: center;
    font-weight: 800;
}

.cores {
    width: 100%;
    min-height: 550px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.core {
    height: 300px;
    width: 400px;
    margin: 20px;
    border-radius: 25px;
    overflow: hidden;
    padding: 2rem 1rem;
    position: relative;
    display: flex;
    align-items: flex-end;
    box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.5);
    transition: 0.5s ease-in-out;
}

.core:hover {
    transform: translateY(20px);
}

.core::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 176, 155, 0.5), rgb(0, 107, 5));
    transition: 0.5s all;
    z-index: 2;
    opacity: 0;
}

.core:hover::before {
    opacity: 1;
}

.core img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.core .info {
    position: relative;
    z-index: 3;
    color: rgb(255, 255, 255);
    opacity: 0;
    transform: translateY(30px);
    transition: 0.5s all;
}

.core:hover .info {
    opacity: 1;
    transform: translateY(0px);
}

.core .info h1 {
    margin-bottom: 20px;
}

.core .info p {
    margin: 0;
    letter-spacing: 1px;
    font-size: 15px;
    margin-top: 8px;
    margin-bottom: 20px;
}

.core .info .btn {
    text-decoration: none;
    padding: 0.5rem;
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.4s ease-in-out;
}

.core .info .btn:hover {
    box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.5);
}

.acheivments {
    background-color: rgb(185, 210, 210);
    z-index: -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.acheivmentsHeadBox {
    display: inline-block;
    justify-content: center;
    align-items: center;
}

.acheivmentsHead {
    margin: 50px;
    font-size: 2.5em;
    font-weight: 800;
    color: rgb(255, 255, 255);
    text-align: center;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 100px auto;
    z-index: 0;
}

.acheivment {
    padding: 10px 50px;
    position: relative;
    width: 50%;
    animation: movedown 1s linear forwards;
    animation-timeline: view();
    animation-range: entry 0%;
    opacity: 0;
}

@keyframes movedown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.acheivment:nth-child(1) {
    animation-timeline: view();
    animation-range: entry 0%;
}

.acheivment:nth-child(2) {
    animation-timeline: view();
    animation-range: entry 0%;
}

.acheivment:nth-child(3) {
    animation-timeline: view();
    animation-range: entry 0%;
}

.acheivment:nth-child(4) {

    animation-timeline: view();
    animation-range: entry 0%;
}

.acheivment:nth-child(5) {
    animation-timeline: view();
    animation-range: entry 0%;
}

.acheivment:nth-child(6) {
    animation-timeline: view();
    animation-range: entry 0%;
}

.text-box {
    padding: 20px 30px;
    background: rgb(255, 255, 255);
    position: relative;
    border-radius: 6px;
    font-size: 15px;
}

.left-acheivment {
    left: 0;
}

.right-acheivment {
    left: 50%;
}

.timelineIcon {
    position: absolute;
    width: 40px;
    right: -20px;
    border-radius: 25%;
    background-color: rgb(255, 255, 255);
    top: 32px;
    z-index: 10;
}

.right-acheivment .timelineIcon {
    left: -20px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 100%;
    background: rgb(255, 255, 255);
    top: 0;
    left: 50%;
    margin-left: -3px;
    z-index: -1;
    animation: moveline linear forwards;
    animation-timeline: view();
    animation-range: entry 0%;
}

@keyframes moveline {
    0% {
        height: 0%;
    }

    100% {
        height: 100%;
    }
}

.text-box h1 {
    font-weight: 600;
}

.text-box small {
    margin-bottom: 15px;
    display: inline-block;
}

.text-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.left-acheivment-arrow {
    height: 0;
    width: 0;
    position: absolute;
    top: 28px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid rgb(255, 0, 0);
    right: -15px;
}

.right-acheivment-arrow {
    height: 0;
    width: 0;
    position: absolute;
    top: 28px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid rgb(255, 0, 0);
    left: -15px;
}

@media screen and (max-width: 600px) {
    .timeline {
        margin: 50px auto;
    }

    .timeline::after {
        left: 31px;
    }

    .acheivment {
        width: 100%;
        padding-left: 80px;
        padding-right: 25px;
    }

    .text-box {
        font-size: 13px;
    }

    .text-box small {
        margin-bottom: 10px;
    }

    .right-acheivment {
        left: 0;
    }

    .left-acheivment .timelineIcon,
    .right-acheivment .timelineIcon {
        left: 10px;
    }

    .left-acheivment-arrow {
        transform: rotate(180deg);
        right: 100%;
    }
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    background-color: white;
}

footer div {
    margin: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    box-sizing: content-box;
}

.footerNav {
    width: 100%;
}

.socialLinks a {
    text-decoration: none;
    margin: 10px;
}

.socialLinks img {
    height: 30px;
}

.socialLinks img:hover {
    transform: scale(1.15);
}

.footerNav a {
    margin: 20px;
    text-decoration: none;
    color: black;
}

.footerNav a:hover {
    transform: scale(1.15);
    color: gray;
}

footer p {
    margin-bottom: 10px;
}
 
.projectHead {
    background-image: url(Images/background.png);
    background-color: rgb(158, 158, 158);
    background-blend-mode: multiply;
    height: fit-content;
    min-height: 400px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.aboutProject {
    margin-left: 5%;
    max-width: 50%;
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    gap: 10px;
}

.projectHeadBox h1 {
    margin: 30px;
    font-size: 3em;
    font-weight: 800;
    color: rgb(0, 0, 0);
    text-align: center;
}

.projectHeadBox {
    display: inline-block;
    display: flex;
    justify-content: center;
}

.aboutProject p {
    text-align: justify;
    font-weight: bold;
}

.aboutProject .btn {
    display: inline-block;
    background-color: rgb(255, 255, 255);
    flex-grow: 0;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    color: black;
    border-radius: 10px;
}

.aboutProject .btn:hover {
    box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.5);
}

.projectParts {
    background-color: rgb(25, 25, 25);
    height: fit-content;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.projectPart {
    display: flex;
    flex-direction: column;
    width: 30%;
    height: fit-content;
    min-height: 500px;
    justify-content: center;
    align-items: center;
    margin: 50px;
    background-color: rgb(241, 144, 144);
    border-radius: 50px;
    text-decoration: none;
    color: black;
    transition: 0.7s;
}

.projectPart:hover {
    scale: 1.1;
    box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.5);
}

.projectPart * {
    margin: 10px;
}

.projectPart img {
    height: 50px;
}

.projectPart p {
    text-align: center;
    width: 80%;
}

.projectProblem {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(212, 201, 190);
    color: rgb(0, 0, 0);
}

.problemHead h1 {
    margin: 50px;
    font-size: 4em;
    font-weight: 800;
    color: rgb(0, 0, 0);
    text-align: center;
}

.problemPart {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
}

.problemPart * {
    margin: 20px;
}

.problemPart p {
    font-weight: bold;
}

.problemPart ul {
    font-weight: bold;
}

.solutionPart {
    background-color: rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    background-image: url(Images/layered-waves-haikei\ \(1\).svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.solutionHead {
    display: inline-block;
    justify-content: center;
    align-items: center;
}

.solutionHead h1 {
    margin: 50px;
    font-size: 4em;
    font-weight: 800;
    color: rgb(255, 255, 255);
    text-align: center;
}

.projectImpact {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(3, 3, 3);
    min-height: 1200px;
    height: fit-content;

}

.impactHead h1 {
    margin: 50px;
    font-size: 4em;
    font-weight: 800;
    color: rgb(255, 255, 255);
    text-align: center;
}

.imapctParts {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.part {
    border-radius: 75px;
    background-color: rgb(18, 52, 88);
    color: rgb(255, 255, 255);
    margin: 20px;
    width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: appear ease-in-out;
    animation-timeline: view();
    animation-range: entry 0%;
    min-height: 400px;
}

@keyframes appear {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

.part h3 {
    font-weight: bold;
    font-size: 2em;

}

.part * {
    margin: 10px;
}

.part p {
    width: 80%;
    text-align: center;
}

.part img {
    height: 75px;
}

@media (max-width: 800px) {
    .aboutProject p {
        text-align: left;
    }

    .projectParts {
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .projectPart {
        width: 80%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .projectPart p {
        text-align: center;
        font-size: smaller;
    }
}

.designAndstrategy {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.robotDesign {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(43, 31, 49);
    color: white;
    width: 100%;
}

.designHead {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.designHead h1 {
    font-size: 4em;
    margin: 50px;
    font-weight: 800;
}

.robotGallery {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.robotCard {
    width: 100%;
    max-width: 750px;
    position: relative;
    margin: 50px;
    overflow: hidden;
}

.robotCard img {
    width: 100%;
    display: block;
}


.robotCard h2 {
    text-align: center;
    margin: 25px;
    font-weight: bold;
}

.robotImage {
    position: relative;
    width: 80%;
    margin: auto;
    box-sizing: border-box;
}

.hotspot {
    width: 1.2em;
    height: 1.2em;
    border-radius: 50%;
    position: absolute;
    cursor: pointer;
}

.hotspot::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2em;
    height: 2em;
    border-radius: 50%;
    background-color: inherit;
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: pulse 2s linear infinite;
    pointer-events: none;
}

@keyframes pulse {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        width: 300%;
        height: 300%;
        opacity: 0;
    }
}


/* hotspot colors */

.robotCard:nth-child(1) .hotspot {
    background-color: #56ffa8;
}

.robotCard:nth-child(2) .hotspot {
    background-color: #71d9ff;
}

.robotCard:nth-child(3) .hotspot {
    background-color: #ff7272;
}

/* hotspot positions */

/* == First Card == */
.robotCard:nth-child(1) .h-1 {
    left: 50%;
    top: 50%;
}

.robotCard:nth-child(1) .h-2 {
    left: 50%;
    top: 20%;
}

.robotCard:nth-child(1) .h-3 {
    left: 60%;
    top: 80%;
}

/* == Second Card == */

.robotCard:nth-child(2) .h-1 {
    left: 20%;
    top: 23%;
}

.robotCard:nth-child(2) .h-2 {
    left: 50%;
    top: 50%;
}

.robotCard:nth-child(2) .h-3 {
    left: 35%;
    top: 50%;
}

.robotCard:nth-child(2) .h-4 {
    left: 82%;
    top: 70%;
}

.robotCard:nth-child(2) .h-5 {
    left: 59%;
    top: 16%;
}

.tooltip {
    position: absolute;
    top: -5em;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f0f0f0;
    color: #000;
    min-width: 5em;
    border-radius: 5px;
    transition: 200ms;
    pointer-events: none;
}

.tooltip h3 {
    padding: 0.5em;
    text-align: center;
    background-color: #cfcfcf;
    border-radius: 5px 5px 0 0;
}

.tooltip p {
    padding: 0.5em;
    font-size: 0.8em;
    text-align: center;
}

.tooltip::before {
    content: "";
    position: absolute;
    bottom: -1em;
    left: 50%;
    transform: translate(-50%);
    width: 0;
    height: 0;
    border-left: 0.5em solid transparent;
    border-right: 0.5em solid transparent;
    border-top: 1em solid #f0f0f0;
}

.tooltip {
    opacity: 0;
}

.hotspot:hover .tooltip,
.tooltip-show {
    top: -7em;
    opacity: 1;
}

.attachments {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.attachment-one{
    background-color: rgb(65, 61, 101);
    color: rgb(255, 255, 255);
}

.attachment-two{
    background-color: rgb(95, 185, 176);
    color: rgb(255, 255, 255);
}

.attachment-three{
    background-color: rgb(43, 31, 49);
    color: rgb(255, 255, 255);
}

.attachment-four{
    background-color: rgb(65, 61, 101);
    color: rgb(255, 255, 255);
}

.attachment-five{
    background-color: rgb(95, 185, 176);
    color: rgb(255, 255, 255);
}

.attachmentsHead h1{
    font-size: 3em;
    font-weight: 800;
    margin: 50px;
}

.attachmentsGallery {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.attachmentPhoto {
    aspect-ratio: 3/4;
    max-width: 450px;
    margin: 30px;
    border-radius: 25px;
    overflow: hidden;
    padding: 2rem 1rem;
    position: relative;
    display: flex;
    align-items: flex-end;
    box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.5);
    transition: 0.5s ease-in-out;
    text-decoration: none;
}

.attachmentPhoto:hover {
    transform: translateY(20px);
}

.attachmentPhoto::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 255, 225, 0.5), rgb(0, 27, 1));
    transition: 0.5s all;
    z-index: 2;
    opacity: 0;
}

.attachmentPhoto:hover::before {
    opacity: 1;
}

.attachmentPhoto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.attachmentPhoto .info {
    position: relative;
    z-index: 3;
    color: rgb(255, 255, 255);
    opacity: 0;
    transform: translateY(30px);
    transition: 0.5s all;
}

.attachmentPhoto:hover .info {
    opacity: 1;
    transform: translateY(0px);
}

.attachmentPhoto .info h1 {
    margin: 0;
}

.attachmentPhoto .info p {
    margin: 0;
    letter-spacing: 1px;
    font-size: 15px;
    margin-top: 8px;
    margin-bottom: 20px;
}

.attachmentPhoto .info .btn {
    text-decoration: none;
    padding: 0.5rem;
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.4s ease-in-out;
}

.attachmentPhoto .info .btn:hover {
    box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.5);
}

.core-values-gallery {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.gallery {
    display: flex;
    flex-direction: column;
    width: 32.5%;
}

.gallery img {
    width: 100%;
    padding-bottom: 5px;
    border-radius: 5px;
}

@media only screen and (max-width: 643px) {
    .core-values-gallery {
        flex-direction: column;
    }

    .gallery {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
}

.programmingBody {
    background-color: rgb(0, 0, 0);
    margin: 0;
    padding: 0;
}

.programmingHead {
    max-width: 80%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.programmingHead h2 {
    color: white;
    margin: 100px;
    margin-bottom: 0px;
    text-align: center;
    max-width: 80%;
    font-size: 3em;
}

.codeBox {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    width: 90%;
    max-width: 90%;
    margin: 2em auto;
    padding: 2em;
    box-sizing: border-box;
    margin-top: 100px;
}

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.codeBox::after, .codeBox::before {
    box-sizing: content-box;
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: conic-gradient(from var(--angle), #ff4545, #00ff99, #006aff, #ff0095, #ff4545);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    padding: 5px;
    border: 5px;
    border-radius: 20px;
    animation: 3s spin linear infinite;
}

.codeBox::before {
    filter: blur(1.5rem);
    opacity: 0.5;
}

@keyframes spin {
    from {
        --angle: 0deg;
    }
    to {
        --angle: 360deg;
    }
}

.code {
    width: 50%;
    text-align: center;
}

.code img {
    width: 100%;
    max-width: 800px; 
    height: auto;
    margin: auto;
}

.codeDis {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1em;

}

.codeDis p {
    width: 80%;
    font-size: 1.5rem;
    margin-top: 20px;
    text-align: center;
}

@media (max-width: 992px) {
    .codeBox {
        padding: 1.5em;
    }

    .code, .codeDis {
        width: 100%;
        text-align: center;
    }

    .lines-container {
        width: 50px;
        margin-left: 10%;
    }

    .code img {
        width: 90%;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .codeBox {
        padding: 1.5em;
        flex-direction: column;
    }

    .code, .codeDis {
        width: 100%;
    }

    .lines-container {
        display: none;
    }

    .code img {
        width: 100%;
        max-width: 500px; 
    }

    .codeDis p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .codeBox {
        padding: 1em;
    }

    .code img {
        width: 100%;
        max-width: none;
    }

    .codeDis p {
        font-size: 0.85rem;
    }
}

.CypherAIbox {
    margin-top: var(--header-height);
}

.CypherAIbody {
    background-color: black;
}

.refrences {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #006aff;
}

.refHeadBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.refHeadBox h1 {
    font-size: 4em;
    margin: 50px;
    font-weight: 800;
}

.ref {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    font-size: 2em;
}

.ref a {
    color: rgb(0, 0, 0);
    margin: 20px;
    background-color: #ff4545;
}