*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #91A0B1;
    font-family: "Inter", sans-serif;
    
}

html{
  scroll-behavior: smooth;
}

#navigation{
    display: flex;
    justify-content: space-between;
    box-shadow: 0 0 15px rgba(255,255,255,0.15);
    background: transparent;
    position: fixed;
    width: 100%;
    z-index: 100;
}


#navigation img{
    width: 100px;
    margin-left: 30px;
}

#navigation ul{
    display: flex;
    list-style: none;
    gap: 40px;
    margin-right: 80px;
    margin-top: 30px;
    cursor: pointer;
}

ul li a{
  text-decoration: none;
}

#navigation ul li:hover{
    color: #a855f7;
    text-shadow: 0 0 10px #35363a;
}

.hero{
    position: relative;
    overflow: hidden;
    height: 100vh;

}

.hero video{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;

}

.backgrond-text{
    position: relative;
    z-index: 1;
    margin-left: 80px;
    margin-top: 200px;
    text-shadow: 0 0 10px rgba(56, 53, 53, 0.8);
 
}
.backgrond-text h1{
    font-size: 75px;
    color: white;
}
.backgrond-text span{
    background: linear-gradient(90deg, #00d4ff, #8AA7F9, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    
}

.backgrond-text p{
    width: 500px;
    margin-top: 30px;
    line-height: 1.5;
    font-size: 18px;
}

.backgrond-text .butt{
    display: flex;
    gap: 10px;
}

.backgrond-text .butt1{
    padding: 15px 40px;
    margin-top: 50px;
    color: black;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    background: linear-gradient(90deg, #00d4ff, #8AA7F9, #a855f7);
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.backgrond-text .butt button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(131, 157, 228, 0.6);
}

.butt .butt2{
    padding: 15px 40px;
    margin-top: 50px;
    color: white;
    cursor: pointer;
    border: 1px solid gray ;
    border-radius: 10px;
    font-size: 17px;
    background: transparent;
    transition: 0.3s ease-in-out;
}

.courses{
    background-color: #1D1D1D;
    
}

.partition{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 80px;
    margin-left: 0;
}

/* From Uiverse.io by SachinKumar666 */ 
.card {
  --card-bg: #ffffff;
  --card-accent: #7c3aed;
  --card-text: white;
  --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
 
  margin: 0px 0px ;
  width: 300px;
  height: 400px;
  background: transparent;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  cursor: pointer;

}

.card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card__glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(124, 58, 237, 0.3) 0%,
    rgba(124, 58, 237, 0) 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.card__content {
  padding: 1.25em;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  position: relative;
  z-index: 2;
}

.card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #10b981;
  color: white;
  padding: 0.25em 0.5em;
  border-radius: 999px;
  font-size: 0.7em;
  font-weight: 600;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.4s ease 0.1s;

}

.card__image {
  width: 100%;
  height: 250px;
  background: linear-gradient(45deg, #a78bfa, #8b5cf6);
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.card__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 30%
    ),
    repeating-linear-gradient(
      45deg,
      rgba(139, 92, 246, 0.1) 0px,
      rgba(139, 92, 246, 0.1) 2px,
      transparent 2px,
      transparent 4px
    );
  opacity: 0.5;
}

.card__text {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}

.card__title {
  color: var(--card-text);
  font-size: 1.1em;
  margin: 0;
  font-weight: 700;
  transition: all 0.3s ease;
}

.card__description {
  color: var(--card-text);
  font-size: 0.75em;
  margin: 0;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.card__price {
  color: var(--card-text);
  font-weight: 700;
  font-size: 1em;
  transition: all 0.3s ease;
}

.card__button {
  width: 28px;
  height: 28px;
  background: var(--card-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: scale(0.9);
}

/* Hover Effects */
.card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: rgba(124, 58, 237, 0.2);
}

.card:hover .card__shine {
  opacity: 1;
  animation: shine 3s infinite;
}

.card:hover .card__glow {
  opacity: 1;
}

.card:hover .card__badge {
  transform: scale(1);
  opacity: 1;
  z-index: 1;
}

.card:hover .card__image {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card:hover .card__title {
  color: var(--card-accent);
  transform: translateX(2px);
}

.card:hover .card__description {
  opacity: 1;
  transform: translateX(2px);
}

.card:hover .card__price {
  color: var(--card-accent);
  transform: translateX(2px);
}

.card:hover .card__button {
  transform: scale(1);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.2);
}

.card:hover .card__button svg {
  animation: pulse 1.5s infinite;
}

/* Active State */
.card:active {
  transform: translateY(-5px) scale(0.98);
}

/* Animations */
@keyframes shine {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.course{
  font-size: 65px;
  color: white;
  padding-top: 60px;

  display: flex;
  justify-content: center;
  align-items: center;

  background: linear-gradient(90deg, #00d4ff, #8AA7F9, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-align: center;
}

.insta{
  background-color: #1D1D1D;
  display: flex;
  justify-content: center;
  height: 100%;
  padding-left: 40px;
  
}


.cards{
  width: 350px;
  height: 500px;
  background:transparent;
  box-shadow: 7px 5px 10px rgba(0, 0, 0, 0.333);
  margin-right: 20px;
  margin-top: 100px;
  cursor: pointer;
  border-radius: 10px;

}

.imge {
  height: 70px;
  background-color:transparent;
  border-radius: 10px;
}

.imge .Usericon {
  background-color: #414141;
  transform: translateX(10px) translateY(10px);
  box-shadow: 7px 5px 10px rgba(0, 0, 0, 0.333);
  width: 50px;
  height: 50px;
  border-radius: 10px;
  overflow: hidden;
}

.Usericon img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}

.imge .UserName {
  background: linear-gradient(90deg, #00d4ff, #8AA7F9, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  width: 150px;
  height: 17px;
  border-width: 10px;
  border-radius: 5px;
  padding-left: 3px;
  color: white;
  border-color: #262626;
  font-size: 15px;
  font-weight: bold;
  transform: translateX(70px) translateY(-25px);
}


.Description {
  border-color: #141414;
  background-color: #414141;
  transform: translate(5px, 6px);
  width: 340px;
  height: 380px;
  border-radius: 5px;

}

.Description video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*______Social Media______*/
.social-media:before {
  content: " ";
  display: block;
  width: 100%;
  height: 2px;
  transform: translatey(10px);
  background: #414141;
}

.social-media a {
  margin-right: 15px;
  text-decoration: none;
  color: inherit;
}

.social-media a:last-child {
  margin-right: 0;
}

.social-media a svg {
  color: #ff5858;
  transform: translatex(25px) translateY(20px);
  width: 20px;
  fill: currentColor;
}



.locations{
  background-color:#1D1D1D;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  padding-top: 50px;
  

}

.loc{
  background-color: #1D1D1D;
  display: flex;
  justify-content: center;
  background: linear-gradient(90deg, #00d4ff, #8AA7F9, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.loc h1{
  padding-top: 80px;
  padding-bottom: 40px;
  font-size: 65px;
  color: white;
}

.map-container {
  --city-radius: 2rem;
  --city-sign-color-back: #00c080;
  --city-sign-color-font: #fff;
  --city-pin-size-font: 1.2rem;
  display: flex;
}

.map-container {
  border-radius: 0.5em;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
  line-height: 1;
  min-width: 15rem;
  position: relative;
  width: 200px;
  aspect-ratio: 1;
  margin-left: 630px ;
  cursor: pointer;
}

/* Map - Background */
.map-background {
  border-radius: inherit;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/* Map - Cities */
.map-cities {
  width: 100%;
}
.map-city {
  border-radius: var(--city-radius);
  left: calc(var(--x) * 1% - var(--city-radius));
  padding: var(--city-radius);
  position: absolute;
  top: calc(var(--y) * 1% - var(--city-radius));
}
.map-city::after,
.map-city::before {
  font-size: var(--city-pin-size-font);
}
.map-city::before {
  content: "•";
  left: calc(-50% + var(--city-radius));
  position: absolute;
  top: calc(-0.65em + var(--city-radius));
  text-align: center;
  text-shadow: 0 1px 1px #000;
  width: 100%;
}
.map-city::after {
  clip-path: inset(-0.5em 0 0 0);
  content: "📍";
  left: calc(-50% + var(--city-radius));
  position: absolute;
  top: calc(-1em + var(--city-radius));
  text-align: center;
  transition: all 300ms ease-out;
  width: 100%;
  z-index: var(--y);
}

/* Map - Sign */
.map-city__label {
  display: none;
  left: calc(-5em + 50%);
  position: absolute;
  text-align: center;
  width: 10em;
  z-index: 999;
}
.map-city__sign {
  align-items: center;
  background-color: var(--city-sign-color-back);
  border-radius: 0.2rem;
  border: 0.15em solid var(--city-sign-color-font);
  box-shadow: 0 0 3px #000;
  color: var(--city-sign-color-font);
  column-gap: 0.3em;
  display: flex;
  font-weight: 700;
  justify-content: center;
  margin: 0 auto;
  max-width: 100%;
  overflow: hidden;
  padding: 0.4em 0.6em 0.4em 0.3em;
  text-overflow: ellipsis;
  text-wrap: nowrap;
  width: max-content;
  cursor: pointer;
}
.map-city__sign::before {
  content: attr(data-icon);
}

/************/
/* Tracking */
/************/

/* Map - Cities */
.map-city:hover::after {
  clip-path: inset(-0.5em 0 0.5em 0);
  transform: translateY(0.5em);
}

/* Map - Sign */
.map-city:hover .map-city__label {
  animation: fadein 300ms forwards ease-out;
  display: block;
}

.map-city:hover .map-city__sign.anim::before {
  animation-duration: 500ms;
  animation-fill-mode: forwards;
}
.map-city:hover .map-city__sign.anim-grow::before {
  animation-name: grow;
  animation-timing-function: ease-in;
}
.map-city:hover .map-city__sign.anim-slidein::before {
  animation-name: slidein;
  animation-timing-function: ease-out;
}

/**************/
/* Animations */
/**************/

/* Fade in from top */
@keyframes fadein {
  0% {
    opacity: 0;
    top: calc(var(--city-radius));
  }

  100% {
    opacity: 1;
    top: calc(var(--city-radius) + var(--city-pin-size-font) / 2);
  }
}

/* Grow from the ground */
@keyframes grow {
  0% {
    transform: translate(0, 200%);
  }

  10% {
    transform: translate(5%, 180%);
  }

  20% {
    transform: translate(-10%, 160%);
  }

  30% {
    transform: translate(15%, 140%);
  }

  40% {
    transform: translate(-5%, 120%);
  }

  50% {
    transform: translate(10%, 100%);
  }

  60% {
    transform: translate(-15%, 80%);
  }

  70% {
    transform: translate(5%, 60%);
  }

  80% {
    transform: translate(0, 40%);
  }

  90% {
    transform: translate(0, 20%);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* Slide in from left */
@keyframes slidein {
  0% {
    transform: translateX(-200%);
  }

  100% {
    transform: translateX(0);
  }
}

.map{
  background-color: #1D1D1D;
}


.cardii{
  max-width: 300px;
  border-radius: 0.5rem;
  background: transparent;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid gray;
}

.cardii a {
  text-decoration: none
}

.content {
  padding: 1.1rem;
}

.imagii{
  border-radius: 10px;
  width: 100%;
  height: 150px;
  background-color: rgb(239, 205, 255);
}

.imagii img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;

}
.title {
  background: linear-gradient(90deg, #00d4ff, #8AA7F9, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  display: inline-block;
  line-height: 1.2;
  padding-bottom: 5px;
}

.descii {
  margin-top: 40px;
  color: #6B7280;
  font-size: 15px;
  line-height: 1.25rem;
}

.action {
  display: inline-flex;
  margin-top: 50px;
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  align-items: center;
  gap: 0.25rem;
  background-color: #2563EB;
  padding: 4px 8px;
  border-radius: 4px;
}

.action span {
  transition: .3s ease;
}

.action:hover span {
  transform: translateX(4px);
}

.locate{
  display: flex;
  justify-content: space-around;
  margin-top: 60px;
}

.CartBtn {
  width: 140px;
  height: 40px;
  border-radius: 12px;
  border: none;
  background-color: rgb(0, 76, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition-duration: 0.5s;
  overflow: hidden;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.103);
  position: relative;
}

.IconContainer {
  position: absolute;
  left: -50px;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  transition-duration: 0.5s;
}

.icon {
  border-radius: 1px;
}

.text {
  height: 100%;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
  z-index: 1;
  transition-duration: 0.5s;
  font-size: 1.04em;
  font-weight: 600;
}

.CartBtn:hover .IconContainer {
  transform: translateX(58px);
  border-radius: 40px;
  transition-duration: 0.5s;
}

.CartBtn:hover .text {
  transform: translate(10px, 0px);
  transition-duration: 0.5s;
}

.CartBtn:active {
  transform: scale(0.95);
  transition-duration: 0.5s;
}

.demo{
  background-color: #1D1D1D;
  display: flex;
  justify-content: center;

}

.demo h1{
  margin-top: 150px;
  font-size: 100px;
  background: linear-gradient(90deg, #00d4ff, #8AA7F9, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}



.button {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #4f4f4f;
  border-radius: 10px;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  font-size: 19px;
  cursor: pointer;
  color: white;
  z-index: 1;
  margin-top: 50px;
  background-color:rgb(0, 76, 255) ;
}

.button:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.button:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: #39bda7;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.button:hover {
  color: #ffffff;
  border: 1px solid #35ac37;
}

.button:hover:before {
  top: -35%;
  background-color: #39bda7;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.button:hover:after {
  top: -45%;
  background-color: #39bda7;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.demobutt{
  background-color: #1D1D1D;
  display: flex;
  justify-content: center;
}

#htt{
    background: linear-gradient(90deg, #00d4ff, #8AA7F9, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

footer{
  padding-top: 30px;
  padding-bottom: 40px;
  background-color: #1D1D1D;
    color: white;
}

hr{
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin-bottom: 20px;
}

.foot{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    font-family: Arial, sans-serif;
    font-size: 15px;
}

.foot p{
    margin: 0;
    transition: 0.3s;
}

.foot p:hover{
    color: #60a5fa;
    transform: scale(1.05);
}

/* Smooth section spacing */
section{
  overflow: hidden;
}

/* Better navbar blur effect */
#navigation{
  backdrop-filter: blur(12px);
  padding: 5px 0;
}

/* Navbar link transition */
#navigation ul li{
  transition: 0.3s ease;
}

/* Hero overlay for better text visibility */
.hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

/* Better paragraph readability */
.backgrond-text p{
  color: #d1d5db;
}

/* Courses heading animation */
.course{
  transition: 0.3s ease;
}

.course:hover{
  transform: translateX(10px);
}

.cards{
  transition: 0.4s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.cards:hover{
  transform: translateY(-12px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.5);
}

.cardii{
  transition: 0.4s ease;
}

.cardii:hover{
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.button,
.CartBtn{
  transition: 0.3s ease;
}

.button:hover,
.CartBtn:hover{
  box-shadow: 0 0 20px rgba(37,99,235,0.6);
}

/* Footer enhancement */
footer{
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Scrollbar Styling */
::-webkit-scrollbar{
  width: 10px;
}

::-webkit-scrollbar-track{
  background: #111827;
}

::-webkit-scrollbar-thumb{
  background: linear-gradient(#00d4ff,#8AA7F9,#a855f7);
  border-radius: 10px;
}


@media(max-width: 768px){

  #navigation{
    flex-direction: column;
    align-items: center;
  }

  #navigation ul{
    margin: 20px 0;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .backgrond-text{
    margin-left: 20px;
    margin-top: 180px;
  }

  .backgrond-text h1{
    font-size: 45px;
  }

  .backgrond-text p{
    width: 90%;
    font-size: 16px;
  }

  .partition{
    padding: 40px 20px;
  }

  .insta{
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding-left: 0;
  }

  .locations{
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .locate{
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .demo h1{
    font-size: 55px;
    text-align: center;
  }

  .map-container{
    margin-left: 0;
  }

  .foot{
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .hero {
  height: auto;
  min-height: 100vh;
}

.partition,
.partition2 {
  flex-direction: column;
  align-items: center;
}

#navigation img {
  margin-left: 0;
}

#navigation ul {
  margin-right: 0;
}

.workshop-title{
  font-size: 40px;
}
}

.workshops{
  background: #1D1D1D;
  padding: 80px 20px;
  text-align: center;
}

.workshop-title{
  font-size: 65px;
  font-weight: 800;
  background: linear-gradient(90deg,#00d4ff,#8AA7F9,#a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
}

.partition2{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.insta{
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
}
