/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */

/* Custom cursor styles */
@import url(https://db.onlinewebfonts.com/c/254dadc58832a185e06e7370881d13e2?family=PP+Editorial+New+Ultrabold);

body {
  
}

.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background-color: transparent;
  mix-blend-mode: difference;
  pointer-events: none;
  transform: translate(-50%, -50%);
  
  z-index: 99;
}

/* Cursor animation */
@keyframes cursorAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}

body:hover .custom-cursor {
  animation: cursorAnimation 0.5s infinite;
}

/* Add more styles for the cursor in different states if needed */




/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

@import url("https://fonts.googleapis.com/css?family=Roboto:400,500|Rubik:500,700");

:root {

  /**
   * colors
   */

  --sefety-orange_10: hsla(24, 100%, 50%, 0.1);
  --sefety-orange: hsl(24, 100%, 50%);
  --sonic-silver: hsl(220, 1%, 48%);
  --gunmetal_10: hsla(217, 21%, 16%, 0.1);
  --davys-gray: hsl(220, 2%, 31%);
  --light-gray: hsl(0, 0%, 80%);
  --gunmetal: hsl(217, 21%, 16%);
  --cultured: hsl(0, 0%, 95%);
  --black_40: hsla(0, 0%, 0%, 0.4);
  --black_25: hsla(0, 0%, 0%, 0.25);
  --black_15: hsla(0, 0%, 0%, 0.15);
  --white: hsl(0, 0%, 100%);
  --snow: hsl(345, 20%, 96%);

  /**
   * typography
   */

  --ff-jost: 'Jost', sans-serif;

  --fs-1: 3.8rem;
  --fs-2: 2.2rem;
  --fs-3: 2rem;
  --fs-4: 1.8rem;
  --fs-5: 1.4rem;

  --fw-600: 600;
  --fw-500: 500;

  /**
   * spacing
   */

  --section-padding: 80px;

  /**
   * shadow
   */

  --shadow-1: 0px 2px 15px hsla(0, 0%, 0%, 0.05);
  --shadow-2: -10px 10px 40px -2px hsla(217, 21%, 16%, 0.05);

  /**
   * border radius
   */

  --radius-pill: 500px;
  --radius-circle: 50%;
  --radius-4: 4px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a,
img,

button,
ion-icon { display: block; }



img { height: auto; }

button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}

ion-icon { pointer-events: none; }

html {
  font-family: var(--ff-jost);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: #111111;
  
}

body.active { overflow: hidden; }

:focus-visible { outline-offset: 4px; }

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

::-webkit-scrollbar-track { background-color: hsl(0, 0%, 98%); }

::-webkit-scrollbar-thumb { background-color: hsl(0, 0%, 80%); }

::-webkit-scrollbar-thumb:hover { background-color: hsl(0, 0%, 70%); }





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 15px; }

.section { padding-block: var(--section-padding); }


.h2,
.h3,
.h4 {
  color: var(--gunmetal);
  line-height: 1.3;
}


.h2 { font-size: var(--fs-1); }

.h3 { font-size: var(--fs-2); }

.h3,
.h4 { font-weight: var(--fw-600); }

.h4 { font-size: var(--fs-3); }

.section-title .span {
  display: inline-block;
  color: var(--sefety-orange);
}

.section-text { font-size: .1rem}

.btn {
  background-color: var(--bg, var(--gunmetal));
  color: var(--color, var(--white));
  padding: var(--padding, 10px 20px);
  border: 2px solid var(--border-color, var(--gunmetal));
  border-radius: var(--radius-4);
  transition: var(--transition-1);
}

.btn-primary {
  --bg: var(--sefety-orange);
  --color: var(--white);
  --border-color: var(--sefety-orange);
}

.btn-primary:is(:hover, :focus) {
  --bg: transparent;
  --color: var(--sefety-orange);
}

.btn-secondary:is(:hover, :focus) {
  --bg: var(--sefety-orange);
  --border-color: var(--sefety-orange);
}

.btn-outline {
  --bg: transparent;
  --color: var(--sefety-orange);
  --border-color: var(--sefety-orange);
  --padding: 10px 28px;
  font-weight: var(--fw-500);
}

.btn-outline:is(:hover, :focus) {
  --color: var(--white);
  --bg: var(--sefety-orange);
}

.has-shape {
  position: relative;
  z-index: 1;
}

.shape {
  position: absolute;
  z-index: -1;
}

.w-100 { width: 100%; }

.title-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-block-end: 60px;
}

.grid-list {
  display: grid;
  gap: 30px;
}

.card-text { font-size: var(--fs-4); }

.btn-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--gunmetal);
  font-weight: var(--fw-500);
  transition: var(--transition-1);
}

.btn-link:is(:hover, :focus) { color: var(--sefety-orange); }

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--light-gray);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-2);
}

.hover\:underline {
  display: inline;
  background-image: linear-gradient(to right, var(--gunmetal), var(--gunmetal));
  background-repeat: no-repeat;
  max-width: max-content;
  background-position-y: bottom;
  background-size: 0 2px;
  transition: var(--transition-2);
}

.hover\:underline:is(:hover, :focus) { background-size: 100% 2px; }










/*-----------------------------------*\
  #HERO

\*-----------------------------------*/




@keyframes fadeInBounce {
  0% {
    opacity: 0;
    transform: translateY(-90px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.container1 {
  animation: fadeInBounce 1s ease-in-out;
}

.hero-content > * {
  opacity: 0;
  animation: fadeInBounce 1s ease-in-out;
  animation-fill-mode: forwards;
}

.hero-content .name {
  animation-delay: 0.1s;
}

.hero-content .wrapper {
  animation-delay: 0.2s;
}

.hero-content .main-name {
  animation-delay: 0.3s;
}

.button {
  animation-delay: 0.4s;
}




.line2{
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  font-style: normal;
  
  background: linear-gradient(91deg, #a3a3a3 -23.45%, #dddddd);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.title{
  font-size: 10px;
  color: #ffffff;

}
.name{
  font-size: 60px;
  color: #ffffff;
 
  font-family: "Alata", sans-serif;
  font-weight: 400;
  font-style: normal;


}
.name1{
  font-size: 70px;
  color: #ffffff;
}
@keyframes colorMove {
  0% {
    background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
  25% {
    background-position: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  }
  100% {
    background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}



.hero {
  position: relative;
  height: 90rem;
  background-color: #111111
  
}

@import url('https://fonts.googleapis.com/css?family=Exo:400,700');

*{
    margin: 0px;
    padding: 0px;
}

body{
    font-family: 'Exo', sans-serif;
    background-color: #111111;
}












.area{
  margin-top: 3%;
    background: #4e54c8;  
    background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);  
    width: 100%;
    
    background-color: #111111;
 
    
   
}

.area1{
  margin-top: 3%;
    
    width: 100%;
    
  
 
    
   
}



.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}


.main-name{
  font-size: 15px;
  color: rgb(121, 121, 121);
 font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-top: 5%;
  text-align: center;
  margin-bottom: 10%;

}
.divider{
  font-size: 2rem;
  color: #383838;
  font-weight: 1;
}
.sub-name{
  color: rgb(121, 121, 121);
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}
.wrapper .icon{
  position: relative;
  background-color: #ffffff;
  border-radius: 50%;
  margin: 10px;
  margin-top: 5%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 20px;
  display: inline-block;
  align-items: center;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  color: #333;
  text-decoration: none;
}
.wrapper .tooltip {
  position: absolute;
  top: 0;
  line-height: 1.5;
  font-size: 14px;
  background-color: #ffffff;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background-color: #ffffff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.wrapper .icon:hover ,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}
.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
  background-color: #3b5999;
  color: #ffffff;
}
.wrapper .twitter:hover,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip::before {
  background-color: #46c1f6;
  color: #ffffff;
}
.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
  background-color: #2344d4;
  color: #ffffff;
}
.wrapper .github:hover,
.wrapper .github:hover .tooltip,
.wrapper .github:hover .tooltip::before {
  background-color: #333333;
  color: #ffffff;
}
.wrapper .youtube:hover,
.wrapper .youtube:hover .tooltip,
.wrapper .youtube:hover .tooltip::before {
  background-color: #de463b;
  color: #ffffff;
}

.hero .container {
  
  display: grid;
  gap: 10px;
}
.container1{
  display: flex;
  flex-direction: column;
  align-items: center;
  
  text-align: center;
  
}

.hero .section-text { margin-block: 25px 40px; 
    color: rgb(255, 255, 255);
    font-size: 30px;
}
.section-title .span { color: rgb(0, 0, 0)} 

.section-title{
  color: rgb(0, 0, 0);
}
.hero-banner .w-100 {
  max-width: 70%;
  margin-inline: auto;
}

.hero .shape {
  bottom: -10px;
  left: 10px;
}
.hero-content{
  text-align: center;
}

.button {
  display: block;
  margin: 0 auto; /* This will center the button horizontally */
  /* Add additional styles as needed */
  margin-top: 90px;
}
.button {
  position: relative;
  background-color: transparent;
  color: #e8e8e8;
  font-size: 17px;
  font-weight: 600;
  border-radius: 10px;
  width: 150px;
  height: 60px;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(51, 51, 51, 0.2);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  text-align: center;
}

.button::before {
  content: "View Resume";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(135deg,#7b4397,#dc2430 );
  transform: translate(0%,90%);
  z-index: 99;
  position: relative;
  transform-origin: bottom;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.book::before {
  content: "Book Now";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(135deg,#7b4397,#dc2430 );
  transform: translate(0%,90%);
  z-index: 99;
  position: relative;
  transform-origin: bottom;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.button::after {
  content: "Resume";
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transform-origin: top;
  transform: translate(0%,-100%);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}
.book::after {
  content: "Book A Call";
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transform-origin: top;
  transform: translate(0%,-100%);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.more-about::after{

  content: "More About me";
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transform-origin: top;
  transform: translate(0%,-100%);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);

}
.more-about::before {
  content: "VIEW";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(135deg,#7b4397,#dc2430 );
  transform: translate(0%,90%);
  z-index: 99;
  position: relative;
  transform-origin: bottom;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.button:hover::before {
  transform: translate(0%,0%);
}

.button:hover::after {
  transform: translate(0%,-200%);
}

.button:focus {
  outline: none;
}

.button:active {
  scale: 0.95;
}









/*-----------------------------------*\
  #projects
\*-----------------------------------*/

.img-container {
  position: relative;
  display: inline-block;
  
}
.image-8{
  height: 600px;
}
.img {
  width: 100px; /* Adjust the width as needed */
  height: auto;
}

.eye-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  color:white;
  font-weight: bold;
}

.img-container:hover .eye-icon {
  opacity: 1;
}

.album .img {
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  position: relative;
}








.album .img:hover::after {
  opacity: 1;
}

/* Rest of your existing CSS code */


.blur-img:hover {
  transform: scale(1.1);
}

/* Rest of your existing CSS code */


.blur-img:hover {

  filter: blur(3px); /* Adjust the blur amount as needed */
  
}

/* Rest of your existing CSS code */


.img {
  border-radius: 30px;
  cursor: pointer;
}
.project-section{
  background-color: #111111;
 

  
}


@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&amp;display=swap');

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



body {
  margin: 0;
}

.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wk-tab-1 {
    width: 8.333333%;
  }

  .wk-tab-2 {
    width: 16.666667%;
  }

  .wk-tab-3 {
    width: 25%;
  }

  .wk-tab-4 {
    width: 33.333333%;
  }

  .wk-tab-5 {
    width: 41.666667%;
  }

  .wk-tab-6 {
    width: 50%;
  }

  .wk-tab-7 {
    width: 58.333333%;
  }

  .wk-tab-8 {
    width: 66.666667%;
  }

  .wk-tab-9 {
    width: 75%;
  }

  .wk-tab-10 {
    width: 83.333333%;
  }

  .wk-tab-11 {
    width: 91.666667%;
  }

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .wk-mobile-1 {
    width: 8.333333%;
  }

  .wk-mobile-2 {
    width: 16.666667%;
  }

  .wk-mobile-3 {
    width: 25%;
  }

  .wk-mobile-4 {
    width: 33.333333%;
  }

  .wk-mobile-5 {
    width: 41.666667%;
  }

  .wk-mobile-6 {
    width: 50%;
  }

  .wk-mobile-7 {
    width: 58.333333%;
  }

  .wk-mobile-8 {
    width: 66.666667%;
  }

  .wk-mobile-9 {
    width: 75%;
  }

  .wk-mobile-10 {
    width: 83.333333%;
  }

  .wk-mobile-11 {
    width: 91.666667%;
  }

  .wk-mobile-12 {
    width: 100%;
  }
}


.album .responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
  justify-content: center; /* Center the content horizontally */
  text-align: center;
  
}

.album .responsive-container-block.bg {
  max-width: 1320px;
  margin: 0 auto; /* Center the container horizontally */
  justify-content: space-between;
}

.album .img {
  width: 100%;
  margin: 0 0 20px 0;
}

.album #i9rb {
  color: black;
}

.album #ir6i {
  color: black;
}

.album #ikz3b {
  color: black;
}

.album .responsive-container-block.img-cont {
  flex-direction: column;
  max-width: 33.3%;
  min-height: auto;
  margin: 0 0 0 0;
  height: 100%;
}

.album #ipix {
  color: black;
}

.album #ipzoh {
  color: black;
}

.album #ig5q8 {
  color: black;
}

.album #imtzl {
  color: black;
}

.album #i53es {
  color: black;
}

.album .img.img-big {
  height: 50%;
  margin: 0 0 16px 0;
}

@media (max-width: 1024px) {
  .album .img {
    margin: 0 0 18px 0;
  }
}

@media (max-width: 768px) {
  .album .img {
    max-width: 32.5%;
    margin: 0 0 0 0;
  }

  .album .responsive-container-block.bg {
    flex-direction: column;
  }

  .album .responsive-container-block.img-cont {
    max-width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }

  .album .img.img-big {
    max-width: 49%;
    margin: 0 0 0 0;
  }
}

@media (max-width: 500px) {
  .album .img {
    max-width: 94%;
    margin: 0 0 25px 0;
  }

  .album .responsive-container-block.img-cont {
    flex-direction: column;
    align-items: center;
    padding: 10px 10px 10px 10px;
  }

  .album .img.img-big {
    max-width: 94%;
    margin: 0 0 25px 0;
  }

  .album .img.img-last {
    margin: 0 0 5px 0;
  }
}





/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about .container {
  display: grid;
  gap: 50px;
}

.about-banner .w-100 { max-width: 90%; }

.about .shape {
  top: -25px;
  right: -5px;
}

.about .section-text {
  
  margin-block: 30px 40px;
}

.about .btn { max-width: max-content; }




/* EXPERIENCE */


/* Add these styles for the fade-in animation */
.faq-container {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.faq-container.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Add these styles for the bounce animation */
.faq-container.bounce {
  animation: bounce 1s ease;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}






.faq-content{
  margin-top: 2%;
}
.faq-container{
  margin-bottom: 70px;
}

div + div {
  clear: both;
}
summary{
  color: #c7c7c7;
}
p {
  line-height: 1.4em;
  color: #9e9e9e;
  font-size: large;
}

.faq-title {
  font-size: 2em;
  margin: 0.4em 0;
  color: #ffffff;
}

div.seperator {
  width: 7.5em;
  background-color: #5c5c5c;
  height: 0.17em;
  margin-left: 10px;
}

.faq-list > div {
  border-bottom: 0.07em solid #636363;
  padding: 1.5em 0em;
} 

.faq-list > div:last-child {
  border: unset;
}

details > summary {
  list-style: none;
}
details > summary::-webkit-details-marker {
  display: none;
}

summary {
  font-size: 4.4em;
  font-weight: bold;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none; 
  user-select: none;
  transition: all 0.3s ease;
}

summary:hover {
  color: #ffffff;
}



@keyframes sweep {
  0%    {opacity: 0; margin-left: -10px}
  100%  {opacity: 1; margin-left: 55px}
}

details[open] summary {
  color: #ffffff;
}

details[open] p {
  border-left: 2px solid #ffffff;
  margin-left: 55px;
  padding-left: 25px;
  opacity: 100;
  transition: all 3s ease;
}

details[open] summary:after {
 
  font-size: 9.2em;
  margin: -33px 0.35em 0 0;
  font-weight: 200;
}

.faq-body {
  width: 100%;
  margin: 4em auto;
  
  border-radius: 0.2em;
  padding: 5em;
  background-color: #111111;
}

.faq-list {
  width: 90%;
  margin: 1em auto;
  padding: 2em 0;
}

summary::-webkit-details-marker {
  display: none;
}

summary:after {
  background: transparent;
  border-radius: 0.3em;
 
  color: #ffffff;
  float: left;
  font-size: 1.8em;
  
  margin: -0.3em 0.65em 0 0;
  padding: 0;
  text-align: center;
  
}


@keyframes sweep {
  0%    {opacity: 0; margin-left: -10px}
  100%  {opacity: 1; margin-left: 55px}
}

details[open] summary {
  color: #ffffff;
}

details[open] p {
  border-left: 2px solid #ffffff;
  margin-left: 55px;
  padding-left: 25px;
  opacity: 100;
  transition: all 3s ease;
}

details[open] summary:after {
  animation: sweep 0.5s ease; /* Add this line to trigger the animation */
  font-size: 9.2em;
  margin: -33px 0.35em 0 0;
  font-weight: 200;
}






.experience{
  background-color: #111111;
  
  
}
.content{
  height: 300px;
  width: 100%;
  border: solid 1px #bbbbbb;
  border-radius: 40px;
  padding: 20px;
}


/*-----------------------------------*\
  #PROJECT
\*-----------------------------------*/

.project { background-color: var(--snow); }

.project .section-title { margin-block-end: 30px; }

.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.project-card .card-banner { margin-block-end: 35px; }

.project-card .img-holder { overflow: hidden; }

.project-card:is(:hover, :focus-within) .img-cover { transform: scale(1.2); }

.project-card .card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.project-card .h3 {
  --fs-2: 2.4rem;
  margin-block-end: 4px;
}

.project-card .card-tag { font-size: var(--fs-4); }

.project-card .card-link {
  color: var(--gunmetal);
  font-size: 22px;
  padding: 14px;
  border-radius: var(--radius-circle);
  transform: rotate(-45deg);
  transition: var(--transition-1);
}

.project-card .card-link:is(:hover, :focus) { 
  background-color: var(--sefety-orange_10);
  color: var(--sefety-orange);
}







/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 575px screen
 */

@media (min-width: 575px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 5rem;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }



  /**
   * HERO
   */

  .hero-banner .w-100 { max-width: 100%; }

  .hero .shape {
    bottom: 0;
    left: -50px;
  }



  /**
   * SERVICE
   */

  .service .grid-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 25px;
  }



  /**
   * PROJECT
   */

  .project-list > * { min-width: 100%; }



  /**
   * FOOTER
   */

  .footer-top { grid-template-columns: 1fr 1fr; }

}





/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 720px; }

  .grid-list { grid-template-columns: 1fr 1fr; }



  /**
   * HERO
   */

  .hero .container {
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
  }



  /**
   * SERVICE
   */

  .service .title-wrapper > * {
    max-width: calc(50% - 30px);
    align-items: flex-start;
  }

  .service .section-text { margin-block: 0; }



  /**
   * ABOUT
   */

  .about .container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }



  /**
   * PROJECT
   */

  .project-list > * {
    min-width: calc(50% - 30px);
    width: calc(50% - 30px);
  }

}





/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 6.5rem;

    /**
     * spacing
     */

    --section-padding: 120px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 960px; }

  .h2 { --fs-1: 5.5rem; }

  .section-text { --fs-3: 2.4rem; }

  .btn {
    --padding: 10px 32px;
    font-weight: var(--fw-500);
  }

  .btn-secondary { --padding: 14px 32px; }



  /**
   * FOOTER
   */

  .footer-top { grid-template-columns: 1fr 0.7fr 0.7fr 0.7fr; }

}





/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 8rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1140px; }

  .h2 { --fs-1: 7.2rem; }

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



  /**
   * HEADER
   */

  .nav-open-btn,
  .navbar-title { display: none; }

  .header .btn { display: block; }

  .navbar,
  .navbar.active {
    all: unset;
    margin-inline-start: auto;
  }

  .navbar-list { display: flex; }

  .navbar-item { border: none; }

  .navbar-link {
    color: white;
    text-transform: uppercase;
    font-weight: 400;
    font-size: large;

  }

  



  /**
   * SERVICE
   */

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



  /**
   * PROJECT
   */

  .project .title-wrapper > div { width: 75%; }

  .project-list > * {
    min-width: calc(33.33% - 40px);
    width: calc(33.33% - 40px);
  }

  .project-list > *:is(:first-child, :nth-child(2)) {
    width: calc(50% - 30px);
  }

}



/* Set custom height for the modal */







.modal{
  z-index: ;
}
.modal-header1{
  background-color: #1f1f1f ;
}
.modal-title{
  color: #ffffff;
  font-size: 4rem;
  text-align: center;
  font-family: "Alata", sans-serif;
}
.modal-body{
  color: #ffffff;
  
  background-color: #1f1f1f;
}

.modal.modal-left .modal-dialog,
.modal.modal-right .modal-dialog,
.modal.modal-top .modal-dialog,
.modal.modal-bottom .modal-dialog {
  -webkit-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

/* Left & Right */

.modal.modal-left .modal-dialog,
.modal.modal-right .modal-dialog {
  position: fixed;
  margin: auto;
  width: 500px;
  max-width: 100%;
  height: 100%;
}

.modal.modal-left .modal-content,
.modal.modal-right .modal-content {
  height: 100%;
  overflow-y: auto;
}

.modal.modal-left .modal-body,
.modal.modal-right .modal-body {
  padding: 15px 15px 80px;
}

.modal.modal-left.fade .modal-dialog {
  left: -500px;
  -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
  -o-transition: opacity 0.3s linear, left 0.3s ease-out;
  transition: opacity 0.3s linear, left 0.3s ease-out;
}

.modal.modal-left.fade.show .modal-dialog {
  left: 0;
}

.modal.modal-right.fade .modal-dialog {
  right: -500px;
  -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
  -o-transition: opacity 0.3s linear, right 0.3s ease-out;
  transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.modal-right.fade.show .modal-dialog {
  right: 0;
}

.modal.modal-left .modal-content,
.modal.modal-right .modal-content,
.modal.modal-top .modal-content,
.modal.modal-bottom .modal-content,
.modal.modal-full .modal-content {
  border-radius: 0;
  border: none;
}

.modal.modal-left .modal-dialog.modal-sm,
.modal.modal-right .modal-dialog.modal-sm {
  width: 300px;
}

.modal.modal-left .modal-dialog.modal-lg,
.modal.modal-right .modal-dialog.modal-lg {
  width: 800px;
}

.modal.modal-left .modal-dialog.modal-xl,
.modal.modal-right .modal-dialog.modal-xl {
  width: 1140px;
}

/* Top and Bottom */

.modal.modal-top .modal-dialog,
.modal.modal-bottom .modal-dialog {
  position: fixed;
  margin: auto;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.modal.modal-top .modal-content,
.modal.modal-bottom .modal-content {
  height: auto;
  overflow-y: auto;
}

.modal.modal-top .modal-body,
.modal.modal-bottom .modal-body {
  padding: 15px 15px;
}

/* Top */

.modal.modal-top.fade .modal-dialog {
  top: -100%;
  -webkit-transition: opacity 0.3s linear, top 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, top 0.3s ease-out;
  -o-transition: opacity 0.3s linear, top 0.3s ease-out;
  transition: opacity 0.3s linear, top 0.3s ease-out;
}

.modal.modal-top.fade.show .modal-dialog {
  top: 0;
}

/* Bottom */

.modal.modal-bottom.fade .modal-dialog {
  bottom: -100%;
  -webkit-transition: opacity 0.3s linear, bottom 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, bottom 0.3s ease-out;
  -o-transition: opacity 0.3s linear, bottom 0.3s ease-out;
  transition: opacity 0.3s linear, bottom 0.3s ease-out;
}

.modal.modal-bottom.fade.show .modal-dialog {
  bottom: 0;
}

.modal.modal-bottom.fade .modal-dialog {
  bottom: -100%;
}

/* Full Screen */

.modal.modal-full .modal-dialog {
  position: fixed;
  margin: auto;
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.modal.modal-full .modal-content {
  height: 100%;
  overflow-y: auto;
}

.modal.modal-full .close-modal {
  position: fixed;
  top: 0;
  right: 3rem;
}

/* Footer */

.modal-footer-fixed {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #000000;
  border-radius: 0;
}
.modal-footer{
  background-color: #000000;
}

/* XS */

.modal.modal-left.xs .modal-body,
.modal.modal-right.xs .modal-body {
  padding: 15px;
}

/* Full screen modal menu indicators */

a.has-sub:after { font-family: "FontAwesome"; }
a.has-sub:after { content: "\f107"; margin-left: 1rem; }
a.has-sub[aria-expanded="true"]:after { content: "\f106"; }

/* Video Player Styles */
.section.video-player {
  height: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #111111;
 
}
.video-container{
  
}

.video-wrapper {
  position: relative;
  
 
  
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  cursor: pointer;
}

.play-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 30px;
  border-color: transparent transparent transparent #333;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}
.modal-video2{
  margin: 2% 3%;
 
}

.video-thumbnail1{
  border-radius: 1rem;
}



.text-center{
  text-align: justify;

}
/* table */
.table-head{
  font-size: 20px;
  color: #cecece;
  font-family: "Alata", sans-serif;
  
}
table {
  
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 40%;
  table-layout: fixed;
  
}
td{
  font-size: 1.4rem;
  color: #aaaaaa;
}
.links{
  font-size: 1.4rem;
  color: #aaaaaa;

}

.table-center{
  text-align: center;
  align-items: center;
}
table caption {
  font-size: 1.5em;
  margin: .5em 0 .75em;
}

table tr {
  background-color: #f8f8f8;
  
  padding: .35em;
}

table th,
table td {
  padding: .625em;
  text-align: center;
}

table th {
 
  
}















  /* Add custom styles for the table and centering */
  .table-center {
    text-align: center;
    margin: 0 auto;
  }

  table {
    
    border-collapse: collapse;
    width: 80%; /* Adjust width as needed */
    margin: 20px auto; /* Add margin for centering */
    table-layout: fixed;
  }

  table caption {
    font-size: 1.5em;
    margin: .5em 0 .75em;
  }

  table tr {
    background-color: #1f1f1f;
    padding: .35em;
  }

  .description {
    margin: 5% 10%;
    text-align: left;
    font-size: 30px;
    
  }
  .sub-description{
    line-height: 1.5;
    font-size: 30px;
  }

  .description h2 {
    /* Add any additional styles for the heading if needed */
  }
  hr.solid {
    border-top: 1px solid #858585;
    width: 80%;
    margin: 0 auto; /* Center the hr horizontally */
  }
  hr.solid1 {
    border-top: 1px solid #858585;
    width: 100%;
    margin: 0 auto; /* Center the hr horizontally */
  }
  

  
#work h2
    {
        text-align: left;
    }
    .process{
        text-align: left;
    }
    .work-divider{
      border-left: 1px solid #363636;
    }

#work .media
    {
      margin-top: 30px;
    }
	
#work .media .fa
    {
        border: 2px solid #dddddd;
        border-radius: 50%;
        color: #dddddd;
        font-size: 24px;
        margin-right: 24px;
        width: 60px;
        height: 60px;
        line-height: 55px;
        text-align: center;
        vertical-align: middle;
        transition: all 0.4s ease-in;
    }
#work .media .fa:hover
    {
        background: #ffffff;
        cursor: pointer;
    }
#work .media .media-heading
    {
        font-weight: 600;
        font-size: 20px;
        padding-bottom: 10px;
    }
    .media-heading{
      text-align: left;
    }

    .other-projects{
      font-size: 40px;
    }

    .custom-list {
      
      list-style-type: none;
      padding: 0;
    }
    .custom-item {
      margin-bottom: 20px;
      display: flex;
      align-items: center;
    }
    .custom-item img {
      width: 100px; /* Adjust the width as needed */
      height: auto; /* Maintain aspect ratio */
      margin-right: 20px;
    }
    .project-list{
      border-radius: 10px;
      height: 10px;
      width: 50px;
    }
    .list-title{
      font-size: 20px;
    }
/* end work */


/* carousel */
.carousel {
  
}

ul.slides {
  display: block;
  position: relative;
  height: 600px;
  margin: 0;
  padding: 0;
  
  list-style: none;
}

.slides * {
  user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

ul.slides input {
  display: none; 
}


.slide-container { 
  display: block; 
}

.slide-image {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0;
  transition: all .7s ease-in-out;
  border-radius: 50px;
}   
.slide-image img {
  
  min-width: 100%;
  height: 100%;
  border-radius: 20px; /* Add this line for border radius */
}

.slide-image img {
  width: auto;
  min-width: 100%;
  height: 100%;
}

.carousel-controls {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  font-size: 100px;
  line-height: 600px;
  color: #fff;
}

.carousel-controls label {
  display: none;
  position: absolute;
  padding: 0 20px;
  opacity: 0;
  transition: opacity .2s;
  cursor: pointer;
}

.slide-image:hover + .carousel-controls label{
  opacity: 0.5;
}

.carousel-controls label:hover {
  opacity: 1;
}

.carousel-controls .prev-slide {
  width: 49%;
  text-align: left;
  left: 0;
}

.carousel-controls .next-slide {
  width: 49%;
  text-align: right;
  right: 0;
}

.carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  z-index: 999;
  text-align: center;
  


}

.shadow{
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.25);
}

.carousel-dots .carousel-dot {
  display: inline-block;
  width: 60px; /* Adjust size as needed */
  height: 60px; /* Adjust size as needed */
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin: 10px;
  cursor: pointer; /* Add cursor pointer for better UX */
}

/* You can customize each dot individually by their IDs */
#img-dot-7 {
  background-image: url('https://i.postimg.cc/s2wF466b/Group-20-Copy.png'); /* Replace 'dot-7-image.jpg' with your image path */
}

#img-dot-8 {
  background-image: url('https://i.postimg.cc/NGyMLmLQ/Group-21.png"'); /* Replace 'dot-8-image.jpg' with your image path */
}

#img-dot-9 {
  background-image: url('https://i.postimg.cc/MHfhxW68/Group-18-1-Copy.png'); /* Replace 'dot-9-image.jpg' with your image path */
}

#img-dot-10 {
  background-image: url('https://i.postimg.cc/8552KRxc/Group-14-1.png'); /* Replace 'dot-10-image.jpg' with your image path */
}

#img-dot-11 {
  background-image: url('https://i.postimg.cc/mD500cGw/Group-11-1-Copy.png'); /* Replace 'dot-11-image.jpg' with your image path */
}

#img-dot-12 {
  background-image: url('https://i.postimg.cc/zGwYVXnz/f3-1.png'); /* Replace 'dot-12-image.jpg' with your image path */
}

/* You can customize each dot individually by their IDs */
#img-dot-1 {
  background-image: url('https://i.postimg.cc/s2wF466b/Group-20-Copy.png'); /* Replace 'dot-7-image.jpg' with your image path */
}

#img-dot-2 {
  background-image: url('https://i.postimg.cc/NGyMLmLQ/Group-21.png"'); /* Replace 'dot-8-image.jpg' with your image path */
}

#img-dot-3 {
  background-image: url('https://i.postimg.cc/MHfhxW68/Group-18-1-Copy.png'); /* Replace 'dot-9-image.jpg' with your image path */
}

#img-dot-4 {
  background-image: url('https://i.postimg.cc/8552KRxc/Group-14-1.png'); /* Replace 'dot-10-image.jpg' with your image path */
}

#img-dot-5 {
  background-image: url('https://i.postimg.cc/mD500cGw/Group-11-1-Copy.png'); /* Replace 'dot-11-image.jpg' with your image path */
}

#img-dot-6 {
  background-image: url('https://i.postimg.cc/zGwYVXnz/f3-1.png'); /* Replace 'dot-12-image.jpg' with your image path */
}



/* You can customize each dot individually by their IDs */
#img-dot-13 {
  background-image: url('https://i.postimg.cc/s2wF466b/Group-20-Copy.png'); /* Replace 'dot-7-image.jpg' with your image path */
}

#img-dot-14 {
  background-image: url('https://i.postimg.cc/NGyMLmLQ/Group-21.png"'); /* Replace 'dot-8-image.jpg' with your image path */
}

#img-dot-15 {
  background-image: url('https://i.postimg.cc/MHfhxW68/Group-18-1-Copy.png'); /* Replace 'dot-9-image.jpg' with your image path */
}

#img-dot-16 {
  background-image: url('https://i.postimg.cc/8552KRxc/Group-14-1.png'); /* Replace 'dot-10-image.jpg' with your image path */
}

#img-dot-17 {
  background-image: url('https://i.postimg.cc/mD500cGw/Group-11-1-Copy.png'); /* Replace 'dot-11-image.jpg' with your image path */
}

#img-dot-18 {
  background-image: url('https://i.postimg.cc/zGwYVXnz/f3-1.png'); /* Replace 'dot-12-image.jpg' with your image path */
}

/* You can customize each dot individually by their IDs */
#img-dot-19 {
  background-image: url('https://i.postimg.cc/s2wF466b/Group-20-Copy.png'); /* Replace 'dot-7-image.jpg' with your image path */
}

#img-dot-20 {
  background-image: url('https://i.postimg.cc/NGyMLmLQ/Group-21.png"'); /* Replace 'dot-8-image.jpg' with your image path */
}

#img-dot-21 {
  background-image: url('https://i.postimg.cc/MHfhxW68/Group-18-1-Copy.png'); /* Replace 'dot-9-image.jpg' with your image path */
}

#img-dot-22 {
  background-image: url('https://i.postimg.cc/8552KRxc/Group-14-1.png'); /* Replace 'dot-10-image.jpg' with your image path */
}

#img-dot-23 {
  background-image: url('https://i.postimg.cc/mD500cGw/Group-11-1-Copy.png'); /* Replace 'dot-11-image.jpg' with your image path */
}

#img-dot-24 {
  background-image: url('https://i.postimg.cc/zGwYVXnz/f3-1.png'); /* Replace 'dot-12-image.jpg' with your image path */
}


/* You can customize each dot individually by their IDs */
#img-dot-25 {
  background-image: url('https://i.postimg.cc/s2wF466b/Group-20-Copy.png'); /* Replace 'dot-7-image.jpg' with your image path */
}

#img-dot-26 {
  background-image: url('https://i.postimg.cc/NGyMLmLQ/Group-21.png"'); /* Replace 'dot-8-image.jpg' with your image path */
}

#img-dot-27 {
  background-image: url('https://i.postimg.cc/MHfhxW68/Group-18-1-Copy.png'); /* Replace 'dot-9-image.jpg' with your image path */
}

#img-dot-28 {
  background-image: url('https://i.postimg.cc/8552KRxc/Group-14-1.png'); /* Replace 'dot-10-image.jpg' with your image path */
}

#img-dot-29 {
  background-image: url('https://i.postimg.cc/mD500cGw/Group-11-1-Copy.png'); /* Replace 'dot-11-image.jpg' with your image path */
}

#img-dot-30 {
  background-image: url('https://i.postimg.cc/zGwYVXnz/f3-1.png'); /* Replace 'dot-12-image.jpg' with your image path */
}


/* You can customize each dot individually by their IDs */
#img-dot-31 {
  background-image: url('https://i.postimg.cc/s2wF466b/Group-20-Copy.png'); /* Replace 'dot-7-image.jpg' with your image path */
}

#img-dot-32 {
  background-image: url('https://i.postimg.cc/NGyMLmLQ/Group-21.png"'); /* Replace 'dot-8-image.jpg' with your image path */
}

#img-dot-33 {
  background-image: url('https://i.postimg.cc/MHfhxW68/Group-18-1-Copy.png'); /* Replace 'dot-9-image.jpg' with your image path */
}

#img-dot-34 {
  background-image: url('https://i.postimg.cc/8552KRxc/Group-14-1.png'); /* Replace 'dot-10-image.jpg' with your image path */
}

#img-dot-35 {
  background-image: url('https://i.postimg.cc/mD500cGw/Group-11-1-Copy.png'); /* Replace 'dot-11-image.jpg' with your image path */
}

#img-dot-36 {
  background-image: url('https://i.postimg.cc/zGwYVXnz/f3-1.png'); /* Replace 'dot-12-image.jpg' with your image path */
}


/* You can customize each dot individually by their IDs */
#img-dot-37 {
  background-image: url('https://i.postimg.cc/s2wF466b/Group-20-Copy.png'); /* Replace 'dot-7-image.jpg' with your image path */
}

#img-dot-38 {
  background-image: url('https://i.postimg.cc/NGyMLmLQ/Group-21.png"'); /* Replace 'dot-8-image.jpg' with your image path */
}

#img-dot-39 {
  background-image: url('https://i.postimg.cc/MHfhxW68/Group-18-1-Copy.png'); /* Replace 'dot-9-image.jpg' with your image path */
}

#img-dot-40 {
  background-image: url('https://i.postimg.cc/8552KRxc/Group-14-1.png'); /* Replace 'dot-10-image.jpg' with your image path */
}

#img-dot-41 {
  background-image: url('https://i.postimg.cc/mD500cGw/Group-11-1-Copy.png'); /* Replace 'dot-11-image.jpg' with your image path */
}

#img-dot-42{
  background-image: url('https://i.postimg.cc/zGwYVXnz/f3-1.png'); /* Replace 'dot-12-image.jpg' with your image path */
}


/* You can customize each dot individually by their IDs */
#img-dot-43 {
  background-image: url('https://i.postimg.cc/s2wF466b/Group-20-Copy.png'); /* Replace 'dot-7-image.jpg' with your image path */
}

#img-dot-44 {
  background-image: url('https://i.postimg.cc/NGyMLmLQ/Group-21.png"'); /* Replace 'dot-8-image.jpg' with your image path */
}

#img-dot-45 {
  background-image: url('https://i.postimg.cc/MHfhxW68/Group-18-1-Copy.png'); /* Replace 'dot-9-image.jpg' with your image path */
}

#img-dot-46 {
  background-image: url('https://i.postimg.cc/8552KRxc/Group-14-1.png'); /* Replace 'dot-10-image.jpg' with your image path */
}

#img-dot-47 {
  background-image: url('https://i.postimg.cc/mD500cGw/Group-11-1-Copy.png'); /* Replace 'dot-11-image.jpg' with your image path */
}

#img-dot-48 {
  background-image: url('https://i.postimg.cc/zGwYVXnz/f3-1.png'); /* Replace 'dot-12-image.jpg' with your image path */
}


input:checked + .slide-container .slide-image {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1s ease-in-out;
  border-radius: 50px;
}

input:checked + .slide-container .carousel-controls label {
   display: block; 
}

input#img-1:checked ~ .carousel-dots label#img-dot-1,
input#img-2:checked ~ .carousel-dots label#img-dot-2,
input#img-3:checked ~ .carousel-dots label#img-dot-3,
input#img-4:checked ~ .carousel-dots label#img-dot-4,
input#img-5:checked ~ .carousel-dots label#img-dot-5,
input#img-6:checked ~ .carousel-dots label#img-dot-6 {
opacity: 1;
}

input#img-7:checked ~ .carousel-dots label#img-dot-7,
input#img-8:checked ~ .carousel-dots label#img-dot-8,
input#img-9:checked ~ .carousel-dots label#img-dot-9,
input#img-10:checked ~ .carousel-dots label#img-dot-10,
input#img-11:checked ~ .carousel-dots label#img-dot-11,
input#img-12:checked ~ .carousel-dots label#img-dot-12 {
opacity: 1;
}

input#img-13:checked ~ .carousel-dots label#img-dot-13,
input#img-14:checked ~ .carousel-dots label#img-dot-14,
input#img-15:checked ~ .carousel-dots label#img-dot-15,
input#img-16:checked ~ .carousel-dots label#img-dot-16,
input#img-17:checked ~ .carousel-dots label#img-dot-17,
input#img-18:checked ~ .carousel-dots label#img-dot-18 {
opacity: 1;
}

input#img-19:checked ~ .carousel-dots label#img-dot-19,
input#img-20:checked ~ .carousel-dots label#img-dot-20,
input#img-21:checked ~ .carousel-dots label#img-dot-21,
input#img-22:checked ~ .carousel-dots label#img-dot-22,
input#img-23:checked ~ .carousel-dots label#img-dot-23,
input#img-24:checked ~ .carousel-dots label#img-dot-24 {
opacity: 1;
}

input#img-25:checked ~ .carousel-dots label#img-dot-25,
input#img-26:checked ~ .carousel-dots label#img-dot-26,
input#img-27:checked ~ .carousel-dots label#img-dot-27,
input#img-28:checked ~ .carousel-dots label#img-dot-28,
input#img-29:checked ~ .carousel-dots label#img-dot-29,
input#img-30:checked ~ .carousel-dots label#img-dot-30 {
opacity: 1;
}

input#img-31:checked ~ .carousel-dots label#img-dot-31,
input#img-32:checked ~ .carousel-dots label#img-dot-32,
input#img-33:checked ~ .carousel-dots label#img-dot-33,
input#img-34:checked ~ .carousel-dots label#img-dot-34,
input#img-35:checked ~ .carousel-dots label#img-dot-35,
input#img-36:checked ~ .carousel-dots label#img-dot-36 {
opacity: 1;
}

input#img-37:checked ~ .carousel-dots label#img-dot-31,
input#img-38:checked ~ .carousel-dots label#img-dot-32,
input#img-39:checked ~ .carousel-dots label#img-dot-33,
input#img-40:checked ~ .carousel-dots label#img-dot-34,
input#img-41:checked ~ .carousel-dots label#img-dot-35,
input#img-42:checked ~ .carousel-dots label#img-dot-36 {
opacity: 1;
}

input#img-43:checked ~ .carousel-dots label#img-dot-43,
input#img-44:checked ~ .carousel-dots label#img-dot-44,
input#img-45:checked ~ .carousel-dots label#img-dot-45,
input#img-46:checked ~ .carousel-dots label#img-dot-46,
input#img-47:checked ~ .carousel-dots label#img-dot-47,
input#img-48:checked ~ .carousel-dots label#img-dot-48 {
opacity: 1;
}






/* menu */

/* Grainy texture animation by Geoff Graham https://css-tricks.com/snippets/css/animated-grainy-texture/ */




main::before {
	animation: grain 8s steps(10) infinite;
	background-image: url(../img/noise.png);
	content: '';
	height: 300%;
	
	opacity: 0.6;
	position: fixed;
	top: -100%;
	
}



@keyframes grain {
  0%, 100% { transform:translate(0, 0); }
  10% { transform:translate(-5%, -10%); }
  20% { transform:translate(-15%, 5%); }
  30% { transform:translate(7%, -25%); }
  40% { transform:translate(-5%, 25%); }
  50% { transform:translate(-15%, 10%); }
  60% { transform:translate(15%, 0%); }
  70% { transform:translate(0%, 15%); }
  80% { transform:translate(3%, 35%); }
  90% { transform:translate(-10%, 10%); }
}






.frame {
	padding: 3rem 5vw;
	text-align: center;
	position: relative;
	z-index: 1000;
	line-height: 1;
}

.frame__title {
	font-size: 1rem;
	margin: 0 0 1rem;
	font-weight: 700;
}

.frame__links {
	display: inline;
}

.frame__links a:not(:last-child),
.frame__demos a:not(:last-child) {
	margin-right: 1rem;
}

.frame__demos {
	margin: 1rem 0;
}

.frame__demo--current,
.frame__demo--current:hover {
	color: var(--color-text);
}

.menu {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	padding: 10% 5%;
	--marquee-width: 100vw;
	--offset: 20vw;
	--move-initial: calc(-25% + var(--offset));
	--move-final: calc(-50% + var(--offset));
	--item-font-size: 10vw;
	counter-reset: menu;
}

.menu__item {
	cursor: default;
	position: relative;
	
  margin-bottom: 40px;
}

.menu__item-link {
	display: inline-block;
	cursor: pointer;
	position: relative;
	color: #000000;
	
	transition: opacity 0.4s;
  font-family: "Lobster", sans-serif;
}

.menu__item-link::before {
	all: initial;
	font-family: sofia-pro, sans-serif;
	counter-increment: menu;
	content:  counter(menu);
	position: absolute;
	bottom: 60%;
	left: 0;
	pointer-events: none;
}

.menu__item-link:hover {
	transition-duration: 0.1s;
	opacity: 0;
  
}

.menu__item-img {
	pointer-events: none;
	position: absolute;
	height: 50vh;
	max-height: 400px;
	opacity: 0;
	left: 100%;
	top: 50%;
  
	transform: translate3d(calc(-100% - 6vw),-30%,0) translate3d(0,20px,0);
}

.menu__item-link:hover + .menu__item-img {
	opacity: 1;
	transform: translate3d(calc(-100% - 6vw),-30%,0) rotate3d(0,0,1,4deg);
	transition: all 0.4s;
}

/* Make sure 3 items are visible in the viewport by setting suitable font size. */

.marquee {
	position: absolute;
	top: 0;
	left: 0;
	width: var(--marquee-width);
	overflow: hidden;
	pointer-events: none;
	mix-blend-mode: color-burn;
}

.marquee__inner {
	width: fit-content;
	display: flex;
	position: relative;
	transform: translate3d(var(--move-initial), 0, 0);
	
	animation-play-state: paused;
	opacity: 0;
	transition: opacity 0.1s;
  
}

.menu__item-link:hover ~ .marquee .marquee__inner {
	animation-play-state: running;
	opacity: 1;
	transition-duration: 0.4s;
  
}

.marquee span {
	text-align: center;
  
}

.menu__item-link,
.marquee span {
	white-space: nowrap;
	font-size: 35px;
	
	font-weight: 200;
	line-height: 2.15;
  color: #c2c2c2;
  font-family: "PP Editorial New Italic";
}

.marquee span {
	font-style: italic;
  color: #a7a7a7 !important;
}

@keyframes marquee {
	0% {
		transform: translate3d(var(--move-initial), 0, 0);
	}

	100% {
		transform: translate3d(var(--move-final), 0, 0);
	}
}

@media screen and (min-width: 53em) {
	.frame {
		text-align: left;
		display: grid;
		align-content: space-between;
		width: 100%;
		padding: 2.5rem 6vw;
		pointer-events: none;
		grid-template-columns: 75% 25%;
		grid-template-rows: auto;
	}

	.frame__title-wrap {
		display: flex;
		align-items: start;
	}

	.frame__info {
		margin: 0;
	}

	.frame__title {
		margin: 0 1rem 0 0;
	}

	.frame__links {
		padding: 0;
		justify-self: end;
	}

	.frame a {
		pointer-events: auto;
	}
}

/* Main container */
main {
  padding: 2rem 1rem; /* Adjusted padding for smaller screens */
}

/* Menu */
.menu {
  padding: 0; /* Removed padding */
  display: flex;
  flex-direction: column; /* Display items vertically on smaller screens */
}

.menu__item {
  position: relative;
  margin-bottom: 20px; /* Reduced margin for better spacing on smaller screens */
}

.menu__item-link {
  display: inline-block;
  position: relative;
  color: #cccccc;
  font-family: "Lobster", sans-serif;
}

.menu__item-img {
  display: block; /* Changed display to block for better responsiveness */
  max-width: 100%; /* Ensures images don't overflow on smaller screens */
  height: auto;
  margin-top: 10px; /* Adjusted margin for better spacing */
}

/* Marquee */
.marquee {
  display: none; /* Hide marquee on smaller screens */
}

/* Media query for smaller screens */
@media screen and (max-width: 768px) {
  .menu {
      align-items: center; /* Center items vertically */
  }

  .menu__item {
      text-align: center; /* Center text */
  }

  .menu__item-link {
      margin-bottom: 10px; /* Reduced margin */
  }

  .menu__item-img {
      margin-top: 0; /* Removed margin */
  }
}


/* footer */

.container2{
background-color: #111111;
}
.text-center{
  font-size: 20px;
  font-family: "Alata", sans-serif;
}


 
/* modal- about */
.quantum-entanglement {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Transparent background */
  z-index: 9999;
  overflow: hidden;
  
}

.quantum-entanglement-content {
  animation: slide-up 0.5s ease-out forwards;
  background-color: #1f1f1f;


backdrop-filter: blur(25px);
  margin:  auto;
  padding: 20px;
  
  width: 100%;
  height: 100%;
  padding: 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: auto;
  
}

@keyframes slide-up {
  from {
      transform: translateY(100%);
  }
  to {
      transform: translateY(0);
  }
}

.galactic-close {
  color: #ffffff;
  float: right;
  font-size: 28px;
  font-weight: bold;
  z-index: 999;
}

.galactic-close:hover,
.galactic-close:focus {
  color: rgb(241, 241, 241);
  text-decoration: none;
  cursor: pointer;
  z-index: 999;
}


/* modal- about  content*/

/* ===================================================================
 * # intro 
 *
 * ------------------------------------------------------------------- */


/* Initial state for elements */
.intro-name1,
.intro-name,
.intro-pic {
  opacity: 0;
  transform: translateY(50px);
}

/* Animation */
@keyframes pop-up {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  70% {
    opacity: 1;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animation to elements */
.intro-name1,
.intro-name,
.intro-pic {
  animation: pop-up 1s ease forwards;
}

/* Delay for each element */
.intro-name1 {
  animation-delay: 0.2s;
}

.intro-name {
  animation-delay: 0.4s;
}

.intro-pic {
  animation-delay: 0.6s;
}


 
 .s-intro {
  width: 100%;
  max-width: 100%;
  min-height: 792px;
  
  display: flex; /* Use flexbox */
  
 justify-content: center;
  position: relative; /* Change from absolute to relative */
}

.intro-content {
  height: 100%;
  width: 60%;
  padding-top: 20vh;
  
  position: relative;
}

.intro-content1 {
  height: 100%;
  width: 60%;
  padding-top: 5vh;
  
  position: relative;
}


 .s-intro1 {
  width: 100%;
  max-width: 100%;
  
  
  
  
  justify-content: center; /* Center horizontally */
 
  position: relative; /* Change from absolute to relative */
}

.large-8{
  left: 20%;
  max-width: 90%;
 text-align: center;
}
.intro-content1 {
  height: 100%;
  
  position: relative;
}

.intro-pic {
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: top center;
  background-image: url("https://i.postimg.cc/7P9TcXch/431025221-369945252671207-8718227921447615953-n-1.jpg");
  background-size: cover;
  position: absolute;
  top: 5%;
  right: 0;
  bottom: 0;
  left: 35%;
  height: 100%;
  
  
}

.intro-pic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: .4;
}


.intro-name{
  font-family: "Alata", sans-serif;
  
}

.intro-name3 h1{
 
  font-size: 1rem;
  
}
.intro-name1{
  font-family: "Alata", sans-serif;
  font-size: 1rem;

}
.intro-text {
  -webkit-transform: translate3d(0, -3.6rem, 0);
  transform: translate3d(0, -3.6rem, 0);
  position: static;
  z-index: 1;
}

.intro-text h3 {
  font-family: "Roboto", sans-serif;
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1.333;
  color: #919191;
  margin-top: 0;
}
.intro-text1 h3 {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 4.4rem;
  font-weight: 500;
  line-height: 1.333;
  color: #919191;
  margin-top: 0;
}

.intro-text1 h1 {
  font-size: 2.8rem;
  font-weight: 200;
  line-height: 1.179;
  color: #ffffff;
  margin-top: 0;
  font-family: "Alata", sans-serif;
  top: 2%;
}

.intro-text h1 {
  font-size: 7.8rem;
  font-weight: 800;
  line-height: 1.179;
  color: #ffffff;
  margin-top: 0;
  font-family: "Alata", sans-serif;
}

.intro-scroll {
  font-family: "Roboto", sans-serif;
  
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 2;
  text-transform: uppercase;
  letter-spacing: .3rem;
  position: absolute;
  bottom: .1rem;
  left: 24px;
  z-index: 1;
}
.intro-scroll1 {
  font-family: "Roboto", sans-serif;
  
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 2;
  text-transform: uppercase;
  letter-spacing: .3rem;
  position: absolute;
  top: 1%;
  left: 24px;
  z-index: 1;
}

.intro-scroll a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.3);
  position: relative;
  padding-right: 8.8rem;
  
}

.intro-scroll a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  height: 1px;
  width: 72px;
  background-color: #cf1767;
}

.intro-scroll1 a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.3);
  position: relative;
  padding-right: 8.8rem;
  
}

.intro-scroll1 a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  height: 1px;
  width: 72px;
  background-color: #cf1767;
}
.intro-scroll-link:hover{ 
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;


}

/* ------------------------------------------------------------------- 
 * responsive:
 * intro
 * ------------------------------------------------------------------- */
@media screen and (max-width:1400px) {
  .intro-text h3 {
    font-size: 2.2rem;
  }

  .intro-text h1 {
    font-size: 7.2rem;
  }

}

@media screen and (max-width:1200px) {
  .intro-content {
    max-width: 1000px;
  }

  .intro-text h3 {
    font-size: 2rem;
  }

  .intro-text h1 {
    font-size: 7rem;
  }

}

@media screen and (max-width:1024px) {
  .s-intro {
    max-height: 800px;
  }

  .intro-text h1 {
    font-size: 2.2rem;
  }

}

@media screen and (max-width:900px) {
  .intro-text h1 {
    font-size: 6rem;
  }

  .intro-text br {
    display: none;
  }

}

@media screen and (max-width:800px) {
  .intro-content {
    width: 88%;
    padding-top: 8rem;
  }

  .intro-pic {
    top: 12%;
    left: 40%;
  }

  .intro-pic::before {
    opacity: .4;
  }

  .intro-grid {
    top: 20%;
    opacity: .1;
  }

}

/* Add mobile responsive styles */
@media screen and (max-width: 768px) {
  .intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

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

  .intro-name {
    font-size: 2.5rem;
    text-align: center;
  }

  .intro-name1 {
    font-size: 1.8rem;
    text-align: center;
  }

  .intro-scroll {
    margin-top: 1rem;
    text-align: center;
  }

  .intro-pic {
    display: none;
  }

  .intro-name3 h1 {
    font-size: 2rem;
    text-align: center;
  }

  .large-8 {
    width: 100%;
    text-align: center;
  }

  .intro-scroll-link a::after {
    width: 50px; /* Adjusted width for smaller screens */
  }
}

/* Other existing styles remain the same */



/* about */


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.unique-about-me .unique-content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #ffffff;
}

.unique-about-me .unique-content ul {
  list-style: none;
  padding: 0;
}

.unique-about-me .unique-content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  color: rgb(187, 187, 187);
  font-size: 1.5rem;
}

.unique-about-me .unique-content ul strong {
  margin-right: 10px;
}

.unique-about-me .unique-content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #18d26e;
  line-height: 0;
}

.unique-about-me .unique-content p:last-child {
  margin-bottom: 0;
}
/* Additional custom styles */
.copy-button {
  margin-left: 10px; /* Adjust margin as needed */
  
}

.area1 {
  /* Other styles */
  pointer-events: none; /* Add this line */
}

.area1 .container1 {
  /* Other styles */
  pointer-events: auto; /* Add this line */
}


/* Add mobile responsive styles */
@media screen and (max-width: 768px) {
  .more-about {
    display: none;
    
  }

 
}

/* Add mobile responsive styles */
@media screen and (max-width: 768px) {
  .more-about {
    display: none;
    
  }

 
}

/* Add mobile responsive styles */
@media screen and (max-width: 480px) {
  .more-about {
    display: none;
  }
}
