@import url('https://fonts.googleapis.com/css2?family=Quantico:ital,wght@1,700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    user-select: none;
    scroll-behavior: smooth;
    scrollbar-color: #000;
}
.navlogo {
    font-family: 'Quantico', sans-serif;
}
.navlogo img {
    width: 3rem;
    height: 3rem;
    border-radius: 100%;
}
.nav-link {
    font-family: 'Quantico', sans-serif;
}
.navbar-custom {
    background-color: black;
}
.navbar-custom .navbar-brand,
.navbar-custom .navbar-nav .nav-link {
    color: aliceblue;
}
.active {
    color: #fff;
    text-align: center;
    animation: glow 1s ease-in-out infinite alternate;
}
@keyframes glow {
    from {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff;
    }
    to {
        text-shadow: 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #fff;
    }
}
li:hover {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #fff;
    transition: 0.2s;
}
/* IMG-ACTIVE */
.imgactive {
    color: #fff;
    text-align: center;
    animation: imgglow 1s ease-in-out infinite alternate;
}
@keyframes imgglow {
    from {
        box-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff;
    }
    to {
        box-shadow: 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #fff;
    }
}
#home-hero {
    height: auto;
    min-height: 100vh;
    background-color: black;
}
.intro {
    height: 100%;
    padding: 20vh 0;
}
.home-hero-h1 {
    font-family: 'Quantico', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10vw;
    text-align: left;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #fff;
}
.intro-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10vh 0;
}
.myprobutton {
    text-decoration: none;
    color: white;
}
.button-85 {
    padding: 0.6em 2em;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}
.button-85:before {
    content: "";
    background: linear-gradient(45deg,
            #ff0000,
            #ff7300,
            #fffb00,
            #48ff00,
            #00ffd5,
            #002bff,
            #7a00ff,
            #ff00c8,
            #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing-button-85 20s linear infinite;
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
}
@keyframes glowing-button-85 {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 400% 0;
    }
    100% {
        background-position: 0 0;
    }
}
.button-85:after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #222;
    left: 0;
    top: 0;
    border-radius: 10px;
}
/* SERVICE STYLE START  */
.service {
    height: 100%;
    width: 100%;
    background: black;
    position: relative;
}
.service-box {
    padding: 3vh 3vw;
    border-top: 2px solid rgba(255, 255, 255, 0.25);
    border-bottom: 2px solid rgba(255, 255, 255, 0.25);
    background-color: rgba(48, 49, 70, 0.45);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(15px);
}
.service-heading {
    color: #fff;
    text-align: center;
    font-family: 'Quantico', sans-serif;
    margin: 1rem 1rem;
}
.ag-format-container {
    width: 100%;
    margin: 0 auto;
}
body {
    background-color: #000;
}
.ag-courses_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 50px 0;
}
.ag-courses_item {
    -ms-flex-preferred-size: calc(33.33333% - 30px);
    flex-basis: calc(33.33333% - 30px);
    margin: 0 15px 30px;
    overflow: hidden;
    border-radius: 28px;
}
.ag-courses-item_link {
    display: block;
    padding: 30px 20px;
    background-color: #121212;
    overflow: hidden;
    position: relative;
}
.ag-courses-item_link:hover,
.ag-courses-item_link:hover .ag-courses-item_date {
    text-decoration: none;
    color: #FFF;
}
.ag-courses-item_link:hover .ag-courses-item_bg {
    -webkit-transform: scale(10);
    -ms-transform: scale(10);
    transform: scale(10);
}
.ag-courses-item_title {
    min-height: 87px;
    margin: 0 0 25px;
    overflow: hidden;
    font-weight: bold;
    font-size: 30px;
    color: #FFF;
    z-index: 2;
    position: relative;
}
.ag-courses-item_date-box {
    font-size: 18px;
    color: #FFF;
    z-index: 2;
    position: relative;
}
.ag-courses-item_date {
    font-weight: bold;
    color: #f9b234;
    -webkit-transition: color .5s ease;
    -o-transition: color .5s ease;
    transition: color .5s ease
}
.ag-courses-item_bg {
    height: 128px;
    width: 128px;
    background-color: #f9b234;
    z-index: 1;
    position: absolute;
    top: -75px;
    right: -75px;
    border-radius: 50%;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.ag-courses_item:nth-child(2n) .ag-courses-item_bg {
    background-color: #3ecd5e;
}
.ag-courses_item:nth-child(3n) .ag-courses-item_bg {
    background-color: #e44002;
}
.ag-courses_item:nth-child(4n) .ag-courses-item_bg {
    background-color: #952aff;
}
.ag-courses_item:nth-child(5n) .ag-courses-item_bg {
    background-color: #cd3e94;
}
.ag-courses_item:nth-child(6n) .ag-courses-item_bg {
    background-color: #4c49ea;
}
@media only screen and (max-width: 979px) {
    .ag-courses_item {
        -ms-flex-preferred-size: calc(50% - 30px);
        flex-basis: calc(50% - 30px);
    }
    .ag-courses-item_title {
        font-size: 24px;
    }
}
@media only screen and (max-width: 767px) {
    .ag-format-container {
        width: 96%;
    }
}
@media only screen and (max-width: 639px) {
    .ag-courses_item {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
    .ag-courses-item_title {
        min-height: 72px;
        line-height: 1;
        font-size: 24px;
    }
    .ag-courses-item_link {
        padding: 22px 40px;
    }
    .ag-courses-item_date-box {
        font-size: 16px;
    }
}
/* SERVICES STYLE END  */
.top-projects {
    height: 100%;
    width: 100%;
    background-color: #000;
    padding: 3rem;
}
.toppro-heading {
    color: #fff;
    text-align: center;
    font-family: 'Quantico', sans-serif;
    margin: 1em;
}
.toppro-box {
    display: flex;
    justify-content: center;
    align-items: center;
}
.toppro-card img {
    padding: 0.5rem;
    border-radius: 1rem;
}
.toppro-card {
    border-radius: 0.5rem;
}
.toppro-card:hover {
    transition:0.3s ease-in-out;
    scale: 1.1;
    box-shadow: 0 0px 5px 5px #fff;
}
.project-h{
    font-family: 'Quantico', sans-serif;
    text-transform: capitalize;
}
/* FOOTER START  */
.footer-background {
    height: 100%;
    width: 100%;
    display: flex;
    border-top: 2px solid rgba(255, 255, 255, 0.25);
    border-bottom: 2px solid rgba(255, 255, 255, 0.25);
    background-color: #1b0f34;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(15px);
}
.tech-icon img {
    height: 10rem;
    width: 10rem;
    padding: 1rem;
}
.footer-h1 {
    font-family: 'Quantico', sans-serif;
    color: aliceblue;
    padding: 2rem;
}
.socialcard {
    position: relative;
    width: 200px;
    height: 200px;
    background: lightgrey;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: all 1s ease-in-out;
    border: 2px solid rgb(255, 255, 255);
    margin: 3rem;
}
.socialbackground {
    position: absolute;
    inset: 0;
    background-color: #4158D0;
    background-image: linear-gradient(43deg, #000000 0%, #000000 46%, #000000 100%);
}
.logo {
    position: absolute;
    right: 50%;
    bottom: 50%;
    transform: translate(50%, 50%);
    transition: all 0.6s ease-in-out;
    font-size: 1.3em;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 3px;
}
.logo .logo-svg {
    fill: white;
    width: 30px;
    height: 30px;
}
.icon {
    display: inline-block;
    width: 20px;
    height: 20px;
}
.icon .svg {
    fill: rgba(255, 255, 255, 0.797);
    width: 100%;
    transition: all 0.5s ease-in-out;
}
.box {
    position: absolute;
    padding: 10px;
    text-align: right;
    background: rgba(255, 255, 255, 0.389);
    border-top: 2px solid rgb(255, 255, 255);
    border-right: 1px solid white;
    border-radius: 10% 13% 42% 0%/10% 12% 75% 0%;
    box-shadow: rgba(100, 100, 111, 0.364) -7px 7px 29px 0px;
    transform-origin: bottom left;
    transition: all 1s ease-in-out;
}
.box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.box:hover .svg {
    fill: white;
}
.box1 {
    width: 70%;
    height: 70%;
    bottom: -70%;
    left: -70%;
}
.box1::before {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #ff53d4 60%, #62c2fe 90%);
}
.box1:hover::before {
    opacity: 1;
}
.box1:hover .icon .svg {
    filter: drop-shadow(0 0 5px white);
}
.box2 {
    width: 50%;
    height: 50%;
    bottom: -50%;
    left: -50%;
    transition-delay: 0.2s;
}
.box2::before {
    background: radial-gradient(circle at 30% 107%, #000000 0%, #000000 90%);
}
.box2:hover::before {
    opacity: 1;
}
.box2:hover .icon .svg {
    filter: drop-shadow(0 0 5px white);
}
.box3 {
    width: 30%;
    height: 30%;
    bottom: -30%;
    left: -30%;
    transition-delay: 0.4s;
}
.box3::before {
    background: radial-gradient(circle at 30% 107%, #0077B5 0%, #0077B5 90%);
}
.box3:hover::before {
    opacity: 1;
}
.box3:hover .icon .svg {
    filter: drop-shadow(0 0 5px white);
}
.box4 {
    width: 10%;
    height: 10%;
    bottom: -10%;
    left: -10%;
    transition-delay: 0.6s;
}
.socialcard:hover {
    transform: scale(1.1);
}
.socialcard:hover .box {
    bottom: -1px;
    left: -1px;
}
.socialcard:hover .logo {
    transform: translate(70px, -52px);
    letter-spacing: 0px;
}
/* FOOTER END  */
/* CONTACT START  */
.contact {
    height: 100%;
    width: 100%;
    background: black;   
}
.contact-box {
    padding: 5vh 5vw;
    border-top: 2px solid rgba(255, 255, 255, 0.25);
    border-bottom: 2px solid rgba(255, 255, 255, 0.25);
    background-color: rgba(48, 49, 70, 0.45);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(15px);
}
.contact-card {
  --font-color: #fefefe;
  --font-color-sub: #7e7e7e;
  --bg-color: #111;
  --main-color: #fefefe;
  width: 200px;
  height: 254px;
  background: var(--bg-color);
  border: 2px solid var(--main-color);
  box-shadow: 4px 4px var(--main-color);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact-card-photo {
  transform: scale(0.3) translate(220px, 230px);
  width: 250px;
  height: 250px;
  margin-left: -125px;
  margin-top: -125px;
  background: radial-gradient(circle,rgba(0,0,0,0.15) 50%,rgba(0,0,0,0) 50.8%) 14% 30%/11% 11%,radial-gradient(circle,#ffdab9 50%,rgba(255,218,185,0) 50.8%) 10% 30%/16% 16%,radial-gradient(circle,#8b4513 50%,rgba(139,69,19,0) 50.8%) 7.5% 29%/20% 20%,radial-gradient(circle,rgba(0,0,0,0.15) 50%,rgba(0,0,0,0) 50.8%) 86% 30%/11% 11%,radial-gradient(circle,#ffdab9 50%,rgba(255,218,185,0) 50.8%) 90% 30%/16% 16%,radial-gradient(circle,#8b4513 50%,rgba(139,69,19,0) 50.8%) 92.5% 29%/20% 20%,radial-gradient(circle at 50% 0,#ffdab9 29.5%,#8b4513 30%,#8b4513 35%,rgba(139,69,19,0) 35.5%) 50% 95%/40% 20%,radial-gradient(ellipse at 50% 100%,rgba(139,69,19,0) 49%,#8b4513 49.5%,#8b4513 52%,rgba(139,69,19,0) 52.5%) 50% 110%/120% 40%,radial-gradient(circle at 50% 0,rgba(255,255,255,0) 35%,white 35%,white 45%,rgba(255,255,255,0) 45.5%) 50% 89%/40% 13%,linear-gradient(#8b4513,#8b4513) 37% 100%/.25em 22%,linear-gradient(#8b4513,#8b4513) 63% 100%/.25em 22%,linear-gradient(80deg,rgba(0,0,0,0) 50%,#333 50.5%) 24% 100%/1em 18%,linear-gradient(-80deg,rgba(0,0,0,0) 50%,#333 50.5%) 76% 100%/1em 18%,linear-gradient(162deg,rgba(0,0,0,0) 10%,#333 10%) 30% 100%/1.5em 21%,linear-gradient(-162deg,rgba(0,0,0,0) 10%,#333 10%) 70% 100%/1.5em 21%,radial-gradient(ellipse at 100% 100%,#556b2f 50%,rgba(85,107,47,0) 50.5%) 0 100%/37% 29%,radial-gradient(ellipse at 0 100%,#556b2f 50%,rgba(85,107,47,0) 50.5%) 100% 100%/37% 29%,radial-gradient(ellipse at 50% 100%,#222 51%,rgba(0,0,0,0) 51.5%) 50% 110%/120% 40%,radial-gradient(circle at 50% 0,rgba(0,0,0,0.15) 40%,rgba(0,0,0,0) 40.5%) 50% 82%/20% 20%,linear-gradient(to right,#8b4513 4px,rgba(139,69,19,0) 4px) 50% 80%/20% 20%,linear-gradient(to left,#8b4513 4px,rgba(139,69,19,0) 4px) 50% 80%/20% 20%,linear-gradient(#ffdab9,#ffdab9) 50% 80%/20% 20%,linear-gradient(#48240a,#48240a) 50% 100%/65% 60%,radial-gradient(circle,white 30%,rgba(255,255,255,0) 62%) 50% 50%/100% 100%;
  background-color: #ccc;
  background-repeat: no-repeat;
  border-radius: 30%;
  background: url('/images/amaan.png');
  background-size: cover;
}
.contact-me {
    background-color: #000;
    height: 100%;
    width: 100%;
    padding: 7vh 7vw;
}
.contact-me-box {
    padding: 5vh 5vw;
    border-top: 2px solid rgba(255, 255, 255, 0.25);
    border-bottom: 2px solid rgba(255, 255, 255, 0.25);
    background-color: rgba(48, 49, 70, 0.45);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(15px);
    border-radius: 3rem;
}
.contact-me-left {
    border-right: 2px solid white;
}
.contact-me-heading-h5 {
    color: #fff;
    font-family: 'Quantico', sans-serif;
    text-decoration: underline 2px solid aliceblue;
}
.contact-me-heading-h6 {
    color: #fff;
    font-family: 'Quantico', sans-serif;
}
.contact-me-heading-icons i {
    color: aliceblue;
    padding: 0.5rem;
}
.contact-me-heading-icons i:hover {
    color: grey;
}
.contact-card-title {
  text-align: center;
  color: var(--font-color);
  font-size: 20px;
  font-weight: 400;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.contact-card-title span {
  font-size: 15px;
  color: var(--font-color-sub);
}
.contact-card-socials {
  display: flex;
  height: 0;
  opacity: 0;
  margin-top: 20px;
  gap: 20px;
  transition: 0.5s;
}
.contact-card-socials-btn {
  width: 25px;
  height: 25px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.contact-card-socials-btn svg {
  width: 100%;
  height: 100%;
  fill: var(--main-color);
}
.contact-card:hover > .contact-card-socials {
  opacity: 1;
  height: 35px;
}
.contact-card-socials-btn:hover {
  transform: translateY(-5px);
  transition: all 0.15s;
}
.contact-card-photo:hover {
  transition: 0.3s;
  transform: scale(0.4) translate(160px, 150px);
}
/* CONTACT END  */
/* ABOUT ME STYLE START  */
.about-me {
    background-color: #000;
    height: 100%;
    width: 100%;
    padding: 7vh 7vw;
}
.about-me-box {
    padding: 5vh 5vw;
    border-top: 2px solid rgba(255, 255, 255, 0.25);
    border-bottom: 2px solid rgba(255, 255, 255, 0.25);
    background-color: rgba(48, 49, 70, 0.45);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(15px);
    border-radius: 3rem;
}
/* ABOUT ME STYLE END  */
/* MY PROJECTS START */
.my-projects {
    background-color: #000;
    height: 100%;
    width: 100%;
    padding: 7vh 7vw;
}
.my-projects-box {
    padding: 5vh 5vw;
    border-top: 2px solid rgba(255, 255, 255, 0.25);
    border-bottom: 2px solid rgba(255, 255, 255, 0.25);
    background-color: rgba(48, 49, 70, 0.45);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(15px);
    border-radius: 3rem;
}
/* MY PROJECTS END */
#loader{
    height: 100vh;
    width: 100%;
    background-color: rgb(28, 28, 35);
    position: fixed;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
}
#loader h1 {
    font-size: 20vw;
    font-family: 'Quantico', sans-serif;
    color: aliceblue;
}
.project-vid {
    width: 100%;
    height: 100%;
}
.modal-body,.modal-header,.modal-footer{
    background-color:rgb(40, 40, 40);
    color: aliceblue;
}
/* TESTIMONIAL PAGE  */
.testimonial-card {
    --font-color: #323232;
    --bg-color: #e0e0e0;
    width: 250px;
    height: 350px;
    border-radius: 20px;
    background: var(--bg-color);
    box-shadow: -9px 9px 18px #5a5a5a,
                9px -9px 18px #ffffff;
    display: flex;
    flex-direction: column;
    transition: .4s;
    position: relative;
  }
  
  .testimonial-card:hover {
    transform: scale(1.02);
    box-shadow: 0px 0px 10px 2px #5a5a5a;
  }
  
  .testimonial-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    background-color: blueviolet;
  }
  
  .testimonial-card__descr-wrapper {
    padding: 15px;
    display: grid;
  }
  
  .testimonial-card__title {
    color: var(--font-color);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 900;
    font-size: 16px;
  }
  
  .testimonial-card__descr {
    color: var(--font-color);
  }
  
  .testimonial-svg {
    width: 25px;
    height: 25px;
    transform: translateY(25%);
    fill: var(--font-color);
  }
  
  .testimonial-card__links {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-self: flex-end;
  }
  
  .testimonial-card__links .testimonial-link {
    color: var(--font-color);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
  }
  
  .testimonial-card__links .testimonial-link:hover {
    text-decoration: underline;
  }
/* TESTIMONIAL PAGE  */
  