html {
  background-color:black;
}





/* NAVBAR  */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem 2%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}
.header::before {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(50px);
  z-index: -1;
}
.header::after {
  content: "";
  top: 0;
  left: -100%;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
   skyblue,
    transparent
  );
  transition: 0.8s;
}
.header:hover::after {
  left: 100%;
}
.logo-nav {
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}





.text-container h1{
  margin: 0;
  font-size: 2.3rem;
  color: rgba(225,225,225, .01);
  background-image: url("img/logo-bg.jpg");
  background-repeat: repeat;
  -webkit-background-clip:text;
  animation: animate 30s ease-in-out infinite;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-text-stroke: 0.5px rgb(245, 239, 239); /* width and color */

}

  @keyframes animate {
    0%, 100% {
      background-position: left top;
    }
    25%{
      background-position: right bottom;
     }
    50% {
      background-position: left bottom;
    }
    75% {
      background-position: right top;
    }   
}




.nav-item {
  position: relative;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: -0.13px;
  text-decoration: none;
  margin-left: 2.5rem;
  transition: all 0.5s ease;
}
.nav-item:hover {
  color: skyblue;
}
.icons {
  position: absolute;
  right: 5%;
  font-size: 2.3rem;
  color: #fff;
  cursor: pointer;
  display: none;
}
#check {
  display: none;
}
@media (max-width: 992px) {
  .header {
    padding: 1.3rem 5%;
  }
}
@media (max-width: 768px) {
  .icons {
    display: inline-flex;
  }

  #check:checked ~ .icons #menu-icon {
    display: none;
  }

  .icons #close-icon {
    display: none;
  }

  #check:checked ~ .icons #close-icon {
    display: block;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(50px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
  }

  #check:checked ~ .navbar {
    height: 17.7rem;
  }

  .nav-item {
    display: block;
    font-size: 1.1rem;
    margin: 1.5rem 0;
    text-align: center;
    transform: translateY(-50px);
    opacity: 0;
    transition: all 0.3s ease;
  }

  #check:checked ~ .navbar a {
    transform: translateY(0);
    opacity: 1;
    transition-delay: calc(0.15s * var(--i));
  }
}
/* NAVBAR END  */

























/* Music */
.music-player {
  position: fixed;
  bottom: 20px;
  right: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 5px 10px;
  z-index: 999;
}


.fa {
  font-size: 20px;
}

/* Additional Buttons */
.action-button {
  background-color: #87CEEB;
  color: #000;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* Media Query for Button Size */
@media (max-width: 768px) {
  .music-button,
  .action-button {
      padding: 8px;
      font-size: 16px;
  }
}
/* MUSIC END */



















/* MAIN SLIDE  */
/* Your existing CSS code */
/* Header */
.large-header {
  position: relative;
  width: 100%;
  background: #333;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  z-index: 1;
}
#large-header {
  background: #000;
}
.main-title {
  position: absolute;
  margin: 0;
  padding: 0;
  color: #f9f1e9;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}
.demo-1 .main-title {
  text-transform: uppercase;
  font-size: 4.2em;
  letter-spacing: 0.1em;
}
.main-title .thin {
  font-weight: 200;
}
@media only screen and (max-width: 768px) {
  .demo-1 .main-title {
    font-size: 3em;
  }
}
/* MAIN SLIDE END */


/* HERO CONTENT */
.hero-content {
  text-align: center;
  color: #fff;
  padding: 2rem 5% 3rem;
  max-width: 700px;
  margin: 0 auto;
}
.hero-subhead {
  font-size: 1.4rem;
  font-weight: 300;
  color: #f5f0f0;
  margin-bottom: 0.75rem;
}
.hero-defining {
  font-size: 1rem;
  font-weight: 300;
  color: #a8a8a8;
  max-width: 560px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}
.hero-roles {
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #87CEEB;
  margin-bottom: 2rem;
}

.hero-roles1 {
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: capitalize;
  color: #87CEEB;
  margin-bottom: 2rem;
  line-height: 18px;
}

.hero-roles .dot {
  color: #3A3B3C;
  margin: 0 0.5em;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(-45deg, #45b3e0 0%, #3A3B3C 90%);
  color: #fff;
}
.btn-primary:hover {
  opacity: 0.85;
}
.btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: #87CEEB;
  color: #87CEEB;
}
@media only screen and (max-width: 768px) {
  .hero-subhead {
    font-size: 1.1rem;
  }
  .hero-defining {
    font-size: 0.88rem;
  }
  .hero-roles {
    font-size: 0.8rem;
  }
}
/* HERO CONTENT END */


/* COLLABORATION CHIPS (Organizations section) */
.collab-types {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}
.collab-chip {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  border-radius: 30px;
  border: 1px solid rgba(135,206,235,0.35);
  background: rgba(135,206,235,0.06);
  color: #cfe9f5;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 768px) {
  .collab-chip {
    font-size: 0.78rem;
    padding: 0.45rem 0.9rem;
  }
}
/* COLLABORATION CHIPS END */


/* SECTION INTRO TEXT */
.section-intro {
  text-align: center;
  color: #b7b7b7;
  font-weight: 300;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  width: 85%;
}
/* SECTION INTRO TEXT END */


/* APPROACH */
.approach-section {
  padding: 1rem 5% 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.approach-eyebrow {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #87CEEB;
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.approach-timeline {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin-top: 3rem;
  gap: 1rem;
}
.approach-timeline::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(135,206,235,0.5) 15%, rgba(135,206,235,0.5) 85%, transparent);
  z-index: 0;
}
.approach-step {
  position: relative;
  z-index: 1;
  text-align: center;
  flex: 1;
  padding: 0 0.5rem;
}
.approach-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #000;
  border: 1px solid rgba(135,206,235,0.5);
  box-shadow: 0 0 20px rgba(135,206,235,0.35);
  color: #87CEEB;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.approach-label {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.5rem;
}
.approach-step p {
  font-size: 0.9rem;
  font-weight: 300;
  color: #a8a8a8;
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}
.approach-arrow {
  display: none;
}
@media only screen and (max-width: 900px) {
  .approach-timeline {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-top: 2rem;
    padding: 0.5rem 12% 1.5rem;
    gap: 0;
  }
  .approach-timeline::-webkit-scrollbar {
    display: none;
  }
  .approach-timeline::before {
    display: none;
  }
  .approach-step {
    flex: 0 0 76%;
    scroll-snap-align: center;
    padding: 0 1rem;
  }
  .approach-step p {
    max-width: 280px;
  }
  .approach-arrow {
    display: none;
  }
}
/* APPROACH END */


/* ABOUT */
.about-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem 5% 2rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: start;
}
.about-eyebrow {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #87CEEB;
  font-weight: 500;
  margin-bottom: 1rem;
}
.about-pullquote {
  font-size: 1.9rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.3;
}
.about-body {
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 2.5rem;
}
.about-typewriter {
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 0.98rem;
  line-height: 1.85;
  color: #cfcfcf;
  white-space: pre-wrap;
  word-break: break-word;
  text-align: left;
  max-height: 5.6em;
  overflow: hidden;
  transition: max-height 0.8s ease;
}
.about-typewriter.about-typewriter--done {
  max-height: 2000px;
}
.about-typewriter .caret {
  color: #87CEEB;
  animation: about-caret-blink 1s steps(1) infinite;
}
@keyframes about-caret-blink {
  50% { opacity: 0; }
}
.about-ar .about-grid {
  grid-template-columns: 1fr 240px;
  direction: rtl;
}
.about-ar .about-body {
  border-left: none;
  border-right: 1px solid rgba(255,255,255,0.12);
  padding-left: 0;
  padding-right: 2.5rem;
}
.about-ar .about-pullquote,
.about-ar .about-eyebrow {
  text-align: right;
}
.about-ar .about-typewriter {
  text-align: right;
  direction: rtl;
}
@media only screen and (max-width: 768px) {
  .about-grid,
  .about-ar .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    direction: initial;
  }
  .about-body,
  .about-ar .about-body {
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-left: 0;
    padding-right: 0;
    padding-top: 1.5rem;
  }
  .about-pullquote {
    font-size: 1.5rem;
  }
}
/* ABOUT END */


/* CLOSING STATEMENT */
.closing-section {
  text-align: center;
  padding: 3rem 5%;
}
.closing-text {
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0.5rem;
}
.closing-subtext {
  font-size: 1rem;
  font-weight: 300;
  color: #b7b7b7;
  margin-bottom: 2rem;
}
/* CLOSING STATEMENT END */


/* PHILOSOPHY STEPS (Observe -> Understand -> Architect -> Build) */
.philosophy-steps {
  display: block;
  align-items: center;
  justify-content: center;
  gap: 0.6rem 1rem;
  height: 100%;
  padding: 0 1rem;
}
.philosophy-step {
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
}
.philosophy-arrow {
  color: #87CEEB;
  font-size: 1.2rem;
}
@media only screen and (max-width: 768px) {
  .philosophy-step {
    font-size: 1.15rem;
  }
}

/* QUOTE */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@1,300..400&display=swap');
.quote-section {
  padding: 5rem 8%;
  background: #000;
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.quote-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  padding-right: 2rem;
}
.quote-stat {
  display: flex;
  flex-direction: column;
}
.quote-stat-num {
  font-size: 2.1rem;
  font-weight: 500;
  color: #87CEEB;
  line-height: 1.1;
}
.quote-stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  margin-top: 0.3rem;
}
.quote-body {
  text-align: center;
}
.quote-typewriter {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: 2rem;
  line-height: 1.5;
  color: #fff;
  white-space: pre-wrap;
  margin-bottom: 1.2rem;
  max-height: 6em;
  overflow: hidden;
  transition: max-height 0.8s ease;
}
.quote-typewriter.quote-typewriter--done {
  max-height: 2000px;
}
.quote-typewriter .caret {
  color: #87CEEB;
  animation: about-caret-blink 1s steps(1) infinite;
}
.quote-attribution {
  display: block;
  font-size: 1rem;
  font-weight: 300;
  color: #87CEEB;
}
@media only screen and (max-width: 768px) {
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .quote-stats {
    grid-template-columns: repeat(4, 1fr);
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-right: 0;
    padding-bottom: 1.5rem;
  }
  .quote-stat-num {
    font-size: 1.4rem;
  }
  .quote-body {
    text-align: center;
  }
  .quote-typewriter {
    font-size: 1.3rem;
    text-align: center;
  }
}
/* QUOTE END */


/* QUOTE RTL (Arabic) */
.quote-ar .quote-stats {
  border-right: none;
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-right: 0;
  padding-left: 2rem;
}
.quote-ar .quote-body {
  text-align: right;
}
.quote-ar .quote-typewriter {
  direction: rtl;
}
@media only screen and (max-width: 768px) {
  .quote-ar .quote-stats {
    border-left: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-left: 0;
    padding-bottom: 1.5rem;
  }
  .quote-ar .quote-body {
    text-align: center;
  }
}
/* QUOTE RTL END */


/* TOOLS (distinct row-list layout, not the flip-card component) */
.tool-list {
  max-width: 720px;
  margin: 0 auto;
}
.tool-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.1rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
  transition: padding-left 0.3s ease;
}
.tool-row:hover {
  padding-left: 1.2rem;
}
.tool-index {
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 0.85rem;
  color: #87CEEB;
  width: 2rem;
  flex-shrink: 0;
}
.tool-name {
  font-size: 1.05rem;
  font-weight: 300;
  color: #e8e8e8;
  flex: 1;
}
.tool-line {
  height: 1px;
  width: 40px;
  background: rgba(135,206,235,0.4);
  flex-shrink: 0;
  transition: width 0.3s ease;
}
.tool-row:hover .tool-line {
  width: 70px;
}
@media only screen and (max-width: 768px) {
  .tool-name {
    font-size: 0.92rem;
  }
  .tool-line {
    display: none;
  }
}
/* TOOLS END */















/* SCROLL  */
/* Your existing CSS code */
.red {
  background: black 
}
.blue {
  background: black 
}
.green {
  background: black 
}
.scroll-snap-card {
  height: 300px;
  width: MAX;
  scroll-snap-type: y mandatory;
  overflow: auto;
  border-radius: 10px;
  
}
.scroll-snap-card .slide {
  width: 100%;
  height: 100%;
  padding: 10%;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-snap-card .slide p {

  font-size: 1em;
  color: white;
  font-weight: 400;
}
/* SCROLL END  */




/* CLIENTS */
/* Styling for the carousel container */
.carousel2 {
  width: 80%;
  overflow: hidden;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

/* Styling for the carousel items */
.carousel2-container {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel2-item {
  flex: 0 0 100%;
  max-width: 300px; /* Adjust the maximum width of the boxes */
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
}

/* Styling for the logo boxes */
.logo-box {
  border: 1px solid #070707;
  padding: 20px;
  background-color: #000;
  border-radius: 10px;
}

/* Styling for the client logos */
.logo-box img {
  max-width: 100%;
  height: auto;
}

/* Previous and Next buttons (optional) */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  z-index: 1;
  transition: background-color 0.3s;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

/* CLIENTS END */





/* BANNER 2 */
.bannerTwo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 65vh; /* Adjust this value as needed */
  width: 100%;
}
iframe {
  width: 100%;
  height: 35%;
}
/* BANNER 2 END */
























/* CARDS  */
/* Your existing CSS code */
/* Card section styles */
.card-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px; /* Adjust the spacing between cards */
  background-color: black; /* Set the background color */
  padding: 20px; /* Add padding to the section */
}
/* Rest of your card styles remain the same */
.card-container {
  width: 270px;
  height: 250px;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 0px 20px skyblue;
  overflow: hidden;
  margin: 10px; /* Add margin to create space between cards */
}
.card {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.card .front-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1)
}
.card .front-content p {
  font-size: 32px;
  font-weight: 700;
  opacity: 1;
  background: linear-gradient(-45deg, #3A3B3C 0%, #87CEEB 100% );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1)
}
.card .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  background: linear-gradient(-45deg, #45b3e0 0%, #3A3B3C 90% );
  color: #f5f0f0;
  padding: 20px;
  line-height: 1.5;
  border-radius: 5px;
  pointer-events: auto;
  transform: translateY(-96%);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}
.card .content .heading {
  font-size: 32px;
  font-weight: 700;
}
.card:hover .content {
  transform: translateY(0);
}
.card:hover .front-content {
  transform: translateY(30%);
}
.card:hover .front-content p {
  opacity: 0;
}
/* CARDS END */




























/* CUBE CONTAINER */
.cubeBox{
    background-color: black;
  height:500px;
  padding:0;
}
.cube-container {
  padding:auto;
  width: 200px;
  height: 450px;
  perspective: 800px;
  margin: 5px auto;
}
.cube {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: rotate 8s infinite linear;
}
.face {
  position: absolute;
  width: 200px;
  height: 200px;
  color: rgb(214, 21, 21);
  font-size: 18px;
  text-align: center;
  line-height: 200px;
 

  opacity: 1;
  border: 2px solid;
  border-image: linear-gradient(to right, skyblue, skyblue, skyblue, skyblue, skyblue) 1;
  box-shadow: 0 0 100px skyblue;
}
.front {
  transform: translateZ(100px);
   background-image: url("img/1.png")
}
.back {
  transform: rotateY(180deg) translateZ(100px);
  background-image: url("img/2.png")
}
.right {
  transform: rotateY(90deg) translateZ(100px);
  background-image: url("img/2.png")
}
.left {
  transform: rotateY(-90deg) translateZ(100px);
  background-image: url("img/4.png")
}
.top {
  transform: rotateX(90deg) translateZ(100px);
  background-image: url("img/5.png")
}
.bottom {
  transform: rotateX(-90deg) translateZ(100px);
  background-image: url("img/4.png")
}
.cube-container:hover .cube {
  animation-play-state: paused;
}
@keyframes rotate {
  0% {
    transform: rotateX(0) rotateY(0) rotateZ(0);
  }

  100% {
    transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
  }
}
/* CUBE CONTAINER END */
















/* PROJECT CAROUSEL */
.carousel {
  position: relative;
  z-index: 1;
  height: 75vh;
  overflow: hidden;
  pointer-events: none;
}
.carousel-item {
  --items: 10;
  --width: clamp(150px, 40vw,  300px);
  --height: clamp(200px, 40vw,  400px);
  --x: calc(var(--active) * 800%);
  --y: calc(var(--active) * 200%);
  --rot: calc(var(--active) * 120deg);
  --opacity: calc(var(--zIndex) / var(--items) * 3 - 2);
  overflow: hidden;
  position: absolute;
  z-index: var(--zIndex);
  width: var(--width);
  height: var(--height);
  margin: calc(var(--height) * -0.5) 0 0 calc(var(--width) * -0.5);
  border-radius: 10px;
  top: 50%;
  left: 50%;
  user-select: none;
  transform-origin: 0% 100%;
  box-shadow: 0 10px 50px 10px rgba(0, 0, 0, .5);
  background: black;
  pointer-events: all;
  transform:  translate(var(--x), var(--y)) rotate(var(--rot)) ;
  transition: transform .8s cubic-bezier(0, 0.02, 0, 1);
}
.carousel-box {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity .8s cubic-bezier(0, 0.02, 0, 1);
    opacity: var(--opacity);
    font-family: 'Orelo-sw-db', serif;
    
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: 4px solid skyblue;

    &:before {
      content: '';
      position: absolute;
      z-index: 1;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, .3), rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, .5));
    }
  }

  .title1 {
    position: absolute;
    z-index: 1;
    color: #fff;
    bottom: 20px;
    left: 20px;
    transition: opacity .8s cubic-bezier(0, 0.02, 0, 1);
    font-size: clamp(20px, 3vw, 30px);
    text-shadow: 0 4px 4px rgba(0, 0, 0, .1);
    font-weight: bold;
  }

  .num {
    position: absolute;
    z-index: 1;
    color: #fff;
    top: 10px;
    left: 20px;
    transition: opacity .8s cubic-bezier(0, 0.02, 0, 1);
    font-size: clamp(20px, 10vw, 80px);
  }

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
  }
}
.layout {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;

  &:before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 90px;
    width: 10px;
    height: 100%;
    border: 1px solid #fff;
    border-top: none;
    border-bottom: none;
    opacity: .15;
  }

  .box {
    position: absolute;
    bottom: 0;
    left: 30px;
    color: #fff;
    transform-origin: 0% 10%;
    transform: rotate(-90deg);
    font-size: 9px;
    line-height: 1.4;
    text-transform: uppercase;
    opacity: .4;
  }
}

.logo {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: 28px;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  opacity: .5;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Orelo-sw-db', serif;
  pointer-events: all;
  color: black;
  text-decoration: none;
  font-size: 20px;
  overflow: hidden;
  padding-bottom: .1em;
}

  a {
    display: inline-block;
    margin-left: 3px;
  }

  svg {
    --fill: #fff;
    width: 35px;
    height: 35px;
  }

.cursor {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  --size: 40px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  margin: calc(var(--size) * -0.5) 0 0 calc(var(--size) * -0.5);
  transition: transform .85s cubic-bezier(0, 0.02, 0, 1);
  display: none;
  pointer-events: none;
  
  @media (pointer: fine) {
    display: block;
  }
}
.cursor2 {
  --size: 2px;
  transition-duration: .7s;
}
@font-face {
  font-family: 'Orelo-sw-db';
  font-weight: inherit;
  font-style: inherit;
}
/* PROJECT CAROUSEL END */





































/* TAGS */
.app {
  min-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
    background-color: black; /* Add this line to set the background color to black */
 overflow-x: hidden; /* Hide horizontal scrollbar */
}



.tag-list {
  width: 100vw;
  max-width: 100vw;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 1rem 0;
  position: relative;
  overflow: hidden;
}

.loop-slider {}
  .inner {
    display: flex;
    width: fit-content;
    animation-name: loop;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: var(--direction);
    animation-duration: var(--duration);
  }


.tag {
  display: flex;
  align-items: center;
  gap: 0 0.2rem;
  color: #e2e8f0;
  font-size: 0.7rem;
  background-color: #000000;
  border: 1px solid skyblue; 
  border-radius: 0.4rem;
  padding: 0.7rem 1rem;
  margin-right: 1rem; // Must used margin-right instead of gap for the loop to be smooth
  box-shadow: 
    0 0.1rem 0.2rem rgb(0 0 0 / 20%),
    0 0.1rem 0.5rem rgb(0 0 0 / 30%),
    0 0.2rem 1.5rem rgb(0 0 0 / 40%);
} 
  .tag-span {
    font-size: 1.2rem;
    color: #64748b;
  }


.fade {
  pointer-events: none;
  background: linear-gradient(100deg, skyblue, transparent 30%, transparent 70%, skyblue);
  position: absolute;
  inset: 0;
}

@keyframes loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .app {
    display: none;
  }
}





/* TAGS END */
































/* PROJECTS */
.card-section2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px; /* Adjust the spacing between cards */
  padding: 20px; /* Add padding to the section */
}

.card-container2 {
  position: relative;
  margin: 15px; /* Add margin to create space between cards */
}

a{
  color: skyblue;
}

.card2 {
  width: 17rem;
  cursor: pointer;
}

.content2 {
  text-align: center;
  position: relative;
  transition: all 2.25s;
  background-color: black;
  padding: 5em;
  transform-style: preserve-3d;
  box-shadow: 0 0px 20px skyblue;
}

.card2:hover .content2 {
  transform: rotateY(0.5turn);
}

.front2,
.back2 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 1em;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}



.subtitle2 {
  transform: translateZ(5rem);
  color: white;
}

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

.back2 {
  transform: rotateY(0.5turn);
  background-color: #000000; /* Use the correct background color value */
  color: white;
}

.description2 {
  transform: translateZ(4rem);
  color: white;
}
/* PPROJECTS END */





/* GALLERY */
:root {
  --scrollcolor: #fff;
  --scrollbackground: #141e27;
}

.title {
  font-size: 2.5rem;
  font-family: system-ui;
  line-height: 1.1;
  font-weight: 300;
  color: #fff;
  margin: 4rem auto 1rem;
  width: 85%;
  max-width: 1280px;
}

.title11{
    z-index: 1;
    color: #fff;
    margin: 4rem auto 1rem;
    left: 20px;
    transition: opacity .8s cubic-bezier(0, 0.02, 0, 1);
    /*font-size: clamp(20px, 3vw, 30px);*/
    font-size: 2.5rem;
    text-shadow: 0 4px 4px rgba(0, 0, 0, .1);
    font-weight: 300;
    -webkit-text-stroke: 1px #87CEEB;
    text-stroke: 1px #87CEEB;
}

.slider {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.slider__content {
  overflow-x: scroll;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  scrollbar-color: var(--scrollcolor) var(--scrollbackground);
}
.slider__content::-webkit-scrollbar {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 1rem;
  background: var(--scrollbackground);
}
.slider__content::-webkit-scrollbar-thumb {
  border-radius: 1rem;
  background: var(--scrollcolor);
}
.slider__content::-webkit-scrollbar-track {
  border-radius: 1rem;
  background: var(--scrollbackground);
}

.slider__item {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 100%;
  width: 100%;
  border-radius: 10px;
  border: 2px solid skyblue;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;

}
/* For screens smaller than 460px (e.g., mobile devices) */
@media (max-width: 425px) {
  .slider__item {
    aspect-ratio: 3/4; /* Set an upright vertical aspect ratio */
    min-width: calc(90% - 2rem); /* Half the width minus margin */
  }
  .slider {
    width: 70%;
  }
}

/* For screens between 460px and 940px */
@media (min-width: 425px) and (max-width: 940px) {
  .slider__item {
    aspect-ratio: 3/4; /* Set an upright vertical aspect ratio */
    min-width: calc(90% - 2rem); /* Half the width minus margin */
  }
}

/* For screens 940px and larger (e.g., desktops) */
@media (min-width: 941px) {
  .slider__item {
    aspect-ratio: 2.5/4; /* Set an upright vertical aspect ratio */
    min-width: calc(30% - 4rem); /* One-third the width minus margin */
  }
}

.slider__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.slider__info {
  position: relative;
  padding: 4rem 2rem 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(32, 50, 57, 0));
}
.slider__info h2 {
  color: #fff;
  font-family: system-ui;
  line-height: 1.1;
  font-weight: 300;
  font-size: 1.75rem;
  margin: 0;
}
/* GALLERY END */







/* BLOG */


/* BLOG END */

















/* CONTACT */
.card-section3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px; /* Adjust the spacing between cards */
  padding: 20px; /* Add padding to the section */
}

.card-container3 {
  position: relative;
  margin: 10px; /* Add margin to create space between cards */
  size: max-content;
}


.card3 {
  width: 400px;
  height: 100px;
  background: rgb(4, 7, 7);
  transition: all 0.4s;
  border-radius: 10px;
  border: 1px solid skyblue;
  font-size: 30px;
  font-weight: 900;
  overflow: hidden;
}

.card3:hover {
  border-radius: 15px;
  cursor: pointer;
  transform: scale(1.1);
  box-shadow: 0px 0px 10px 5px  rgba(0, 0, 0, 0.705);
  background: rgb(0, 0, 0);
}

.first-content3 {
  height: 100%;
  width: 100%;
  transition: all 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  border-radius: 15px;
  color: skyblue;
}

.first-content3 span {
  font-size: 20px;
}

.card3:hover .first-content3 {
  height: 0px;
  opacity: 0;
}

.second-content3 {
  height: 50%;
  width: 100%;
  color: #e2e8f0;
  opacity: 0;
  display: grid;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  transition: all 0.4s;
  font-size: 0px;
  transform: rotate(90deg) scale(-1);
}

.map span{
  size: 100%;
}

.second-content3 a{
  color: #87CEEB;
  text-decoration: none;
}


.card3:hover .second-content3 {
  opacity: 1;
  height: 100%;
  font-size: 1rem;
  transform: rotate(0deg);
}

@media (max-width: 767px) {
  .card3 {
    width: 300px; /* Make the card full width on mobile */
  }
}
/* CONTACT END */














/* FOOTER */
.flex-center {
  width: 100%;
  height: max-content;
  background: #000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Add spacing between elements */
.flex-center h1{
  margin-bottom: 0px; /* Adjust the margin as needed */
  -webkit-animation: icon3d 200ms infinite;
  animation: icon3d 200ms infinite;
  color: skyblue;
}

.flex-center p{
  color: white;
  justify-content: center;
  margin-top: 5px;
}

.icon-3d {
  padding: 10px;
  -webkit-animation: icon3d 200ms 10;
  animation: icon3d 200ms 10;
  color: #fff;
}
.icon-3d:hover {
  -webkit-animation: icon3d 200ms infinite;
  animation: icon3d 200ms infinite;
}

@keyframes icon3d {
  0% {
    text-shadow: 5px 4px #f44336, -5px -6px #2196f3;
  }
  25% {
    text-shadow: -5px -6px #f44336, 5px 4px #2196f3;
  }
  50% {
    text-shadow: 5px -4px #f44336, -8px 4px #2196f3;
  }
  75% {
    text-shadow: -8px -4px #f44336, -5px -4px #2196f3;
  }
  100% {
    text-shadow: -5px 0 #f44336, 5px -4px #2196f3;
  }
}
/* FOOTER END */





.project-tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    justify-content:center;
    margin:18px 0;
}

.project-tag{
    padding:4px 10px;
    border:1px solid rgba(255,255,255,.2);
    border-radius:50px;
    font-size:.72rem;
    letter-spacing:.05em;
    text-transform:uppercase;
    color:#d0d0d0;
    background:rgba(255,255,255,.04);
}

.project-title{
    margin-bottom:12px;
    font-size:1.3rem;
    letter-spacing:.05em;
}

.project-links a{
    display:inline-block;
    margin-top:12px;
    color:#fff;
    text-decoration:none;
    border-bottom:1px solid rgba(255,255,255,.4);
    transition:.3s;
}

.project-links a:hover{
    border-color:#fff;
}