.navbar {
    background-color: transparent;
    border-bottom: none;
}
/*CSS for default html Tags*/
html {
    background-color: #0f0e11;
}
body {
  width: 100%;
  padding: 0;
  margin: 0;
  background: linear-gradient(
    to bottom, 
    #1c1b22,         
    #0f0e11         
  );
}
/*CSS for homepage*/
.content {
    padding: 0;
}
.homepage {
    width: 100%;       
    min-height: 100vh;  
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(0,0,0,0.651), rgba(0, 0, 0, 0.651)), url('../media/static/wallstreet.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0;
    padding: 10px;
    position: relative;
}
.navbar {
    width: 100%;
    padding-left: 10px;
    display: flex;
    align-items: center;
    height: 50px;
    justify-content: space-between;
}
.navbar img{
    height: 48px;
}
.nav p{
    margin: 0;
}
.logo {
    display: inline-block;
    transition: transform 1s ease-in-out;
}

.logo:hover {
    transform: rotate(360deg);
}
.nav:hover {
    cursor: pointer;
    border-radius: 0;
    border-bottom: 3px solid #daa74b;
}
.navLinks {
    display: flex;
    padding: 0px 10px;
    flex-direction: row;
    align-items: center;
}
.academyName {
    font-family: 'PlayfairDisplay-Bold';
    font-size: 20px;
    font-family: bold;
    text-shadow: #000000 0px 0px 20px;
}
.academyName h1, .academyMotto p{
    margin: 0;
}
.intro {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 530px;
}
.enroll {
    display: flex;
    flex-direction: column;
    padding: 15px;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.otherEnroll {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 40px;
}
.enrollnow {
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    justify-content: center;
    background-color: #2b2a33;
    border: 2px solid #daa84b00;
    position: relative;
    overflow: hidden;
    transition: border-color 0.5s ease;
}

.enrollnow p {
    position: relative;
    z-index: 2;
    margin: 0;
}

.enrollnow::before,
.enrollnow::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 0;
    background-color: #daa74b;
    z-index: 1;
    transition: width 0.5s ease;
}

.enrollnow::before {
    left: 0;
}

.enrollnow::after {
    right: 0;
}

.enrollnow:hover {
    border-color: #daa74b;
    /* text color stays unchanged */
}

.enrollnow:hover::before,
.enrollnow:hover::after {
    width: 50%;
}
.enroll-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.enrollnow {
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
  justify-content: center;
  background-color: #2b2a33;
  border: 2px solid #daa84b00;
  position: relative;
  overflow: hidden;
  transition: border-color 0.5s ease;
}

.enrollnow p {
  position: relative;
  z-index: 2;
  margin: 0;
}

/* The badge outside overflow clipping */
.coming-soon {
  position: absolute;
  top: 5px;
  right: -40px;
  background-color: #daa74b;
  color: white;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 3px;
  transform: rotate(45deg);
  animation: zoomInOut 2.5s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
  z-index: 3;
}

@keyframes zoomInOut {
  0%, 100% {
    transform: scale(1) rotate(45deg);
  }
  50% {
    transform: scale(1.3) rotate(45deg);
  }
}


.affiliate {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2b2a33;
    height: 100%;
    padding: 0 10px;
    border: 2px solid #daa84b00;
    flex: 1;
}
.affiliate p{
    margin: 0;
}
.affiliate:hover {
    border: 2px solid #daa74b;
}
.payments {
    display: flex;
    flex-direction: row;
    background-color: #2b2a33;
    height: 100%;
    align-items: center;
    padding: 0 10px;
}
.enrollPayments {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: fit-content;
    padding: 3px;
}
.enrollPayments img {
    height: 28px;
}
.kabbaWiseSaying {
  position: absolute;
  bottom: 20px;   /* distance from bottom */
  right: 20px;    /* distance from right */
  font-size: 13px;
  color: white;
  display: flex;
  flex-direction: column;
  width: 352px;
}
.saying p{
    margin: 0;
}
.sayingLogos {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 10px;
}
.sayingLogo {
    cursor: pointer;
    animation: ease-in-out;
}
.sayingLogo:hover {
    transform: scale(1.2);
}
.sayingLogo img{
    height: 25px;
    width: 25px;
    border-radius: 6px;
}
/*CSS for testimonials*/
.testimonials {
    max-width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
.testimonial {
    display: flex;
    flex-direction: column;
    width: 350px;
    height: auto;
    padding: 10px;
    background-color: #2b2a33;
    position: relative;
    overflow: hidden;
    position: relative;
}

.monialHeader {
    height: 60px;
    width: 100%;
    display: flex;
    flex-direction: row;
}

.monialHeader p{
    margin: 0;
}
.monialLogo {
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    top: -240px;
}
.endorserDetails {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    overflow: hidden;
    border-radius: 0px;
    gap: 0;
}
.endorserName p{
    font-weight: bold;
}
.endorserWork p{
    font-size: 13px;
}
.monialText {
    font-size: 13px;
}
.monialText p{
    margin: 0;
}
.monialLogo img {
    width: 60px;
    height: 60px;
    
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.neacertyear {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 13px;
}
.neacertyear p{
    margin: 0;
    color: #daa74b;
}
.ncy img{
    height: 18px;
    display: flex;
    align-items: center;
}
.enrollnow, .affiliate{
    border-radius: 12px !important;
}
.loginBtn {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.ifUserHasaAcc p{
    margin: 0;
}
/*CSS for footer*/
.footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.aboutUs {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.aboutText {
    display: flex;
    flex-direction: column;
    flex: 1;
    max-width: 45%;
}
.aboutText p{
    margin: 0;
}
.aboutP {
    font-size: 13px;
}
.aboutLinks {
    display: flex;
    flex-direction: row;
    width: fit-content;
    height: 100%;
    justify-content: space-between;
}
.nav a{
    all: unset;
}

/* [SECTION: Mobile] */
@media (max-width: 768px){
    .intro {
        width: auto;
        padding: 0px 10px;
    }
    .coming-soon {
        display: none;
    }
    .academyName {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .kabbaWiseSaying {
        right: 0;
        left: 0;
        width: auto;
        padding: 10px 20px;
        justify-content: center;
        text-align: center;
    }
}