/********** Template CSS **********/
:root {
    --primary: #58AE67;
    --secondary: #754FF0;
    --light: #FFFFFF;
    --dark: #151515;
    --pink: #DE0B7F;
    --zero: rgba(0, 0, 0, 0.1);
    --yellow: #FFC700;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.rectangular_image {
    width: 334px;
    height: 83px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #151515;
}
.rectangular_image img{
  width:100%;
}

.circular_image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #151515;
}
.circular_image img{
  width:100%;
}

/* .circular_gif {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #151515;
}
.circular_gif img{
  width:100%;
}

.circular_leaf {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #151515;
}
.circular_leaf img{
  width:100%;
}
 */
.img-box {
    background-color: #66BFBF;
    border-radius: 100%;
    width: 150px;
    padding: 23px;
  }
  
  .code-img {
    width: inherit;
  }

.btn-circle.btn-lg {
    width: 50px;
    height: 50px;
    padding: 0; 
    font-size: 18px;
    line-height: 1.33;
    border-radius: 25px;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 900 !important;
    -webkit-text-stroke-width: 0.4px;
    -webkit-text-stroke-color: #754FF0;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
    font-size: 22px;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}

.wefo {
    position: relative;
    font-family: 'Balsamiq Sans';
    font-size: 50px;
    font-weight: 600;
    color: #FFFFFF;
}

.clubfo {
    position: relative;
    font-family: 'Noto sans';
    font-size: 26px;
    font-weight: 600;
    padding-right: 62.5rem;
    color: #FFFFFF;
}

.memfo {
    position: relative;
    font-family: 'Noto sans';
    font-size: 26px;
    font-weight: 600;
    padding-right: 10rem;
    padding-left: 10rem;
    color: #FFFFFF;
}

.footerfo {
    position: relative;
    font-family: 'Noto sans';
    font-size: 20px;
    font-weight: 500;
    padding-right: 10rem;
    padding-left: 10rem;
    color: #FFFFFF;
}


/*** Gradient Text & BG ***/
.text-primary-gradient {
    background: linear-gradient(to bottom right, var(--light), var(--light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-secondary-gradient {
    background: linear-gradient(to bottom right, var(--light), var(--light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-primary-gradient {
    background: linear-gradient(to bottom right, var(--dark), var(--secondary));
}

.bg-secondary-gradient {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn-outline-primary {
    color:#FFFFFF;
    border-color:#FFFFFF
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient {
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
    z-index: 1;
}

.btn1.btn-primary-gradient1,
.btn1.btn-secondary-gradient1 {
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
    z-index: 1;
}

.btn.btn-primary-gradient::after,
.btn.btn-secondary-gradient::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .5s;
    z-index: -1;
    opacity: 0;
    color: #FFFFFF;
}

.btn.btn-secondary-gradient1,
.btn-outline-primary,.btn.btn-primary-gradient::after {
    background: #754FF0
}

.btn.btn-secondary-gradient,
.btn-outline-primary,.btn.btn-primary-gradient::after {
    background: #FFC700
}

.btn.btn-primary-gradient:hover::after,
.btn.btn-secondary-gradient:hover::after {
    opacity: 1;
}

.btn-shadow {
    box-shadow: 0px 4px 0px #3A00F8; /* Custom text shadow */
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    border: none;
    background: linear-gradient(to bottom right, var(--light), var(--light));
}


/*** Navbar ***/

.navbar {
    display: flex;
    font-family: 'AR One Sans', sans-serif;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: sticky; /* Make the navbar sticky */ 
    top: 0; /* Stick to the top */ 
    z-index: 1000; /* Ensure it stays above other content */
}

.logo {
    color: white;
    font-size: 24px;
}

.nav-links {
    list-style: none;
    margin-left: 20px;
    display: flex;
    font-weight: 500;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    color: #754FF0;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffffff; /* Change color on hover */
}


/* Responsive Styles */

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px; /* Adjust based on navbar height */
        left: 0;
        background-color: #333;
    }

    .nav-links.active {
        display: flex;
    }


    .sign-in {
        margin: 10px; /* Add margin for mobile view*/ 
    }
} 


.btn.btn-nav {
    position: relative;
    margin-right: 5px;
    margin-right: 30px;
    width: 140px;
    height: 42px;
    padding: 10px 0;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.btn.btn-nav:hover {
    color: var(--secondary);
}
 

/*** Hero Header ***/
.hero-header {
    /* margin-bottom: 1rem; */
    padding: 11rem 0 0 0;
    background:
        url(../img/bg-circle.png),
        url(../img/bg-triangle.png),
        url(../img/bg-bottom.png),
        linear-gradient(to bottom right, var(--dark), var(--dark));
    background-position:
        left 0px top 0px,
        right 0px top 50%,
        center bottom;
    background-repeat: no-repeat;
}

.bgpic {
   
    background-image: url('head.png');
    background-repeat: no-repeat;
    height: 825px;
    
}

.bgwe {
   
    background-image: url('subtract.png');
    background-repeat: no-repeat;
    margin-top: 16px;
    background-position: center;
    
}

.bgsci {
   
    background-image: url('scipic.png');
    background-repeat: no-repeat;
    height: 591px;
    justify-content: center;
    
}

.bgpupil {
   
    background-image: url('pupil.png');
    background-repeat: no-repeat;
    height: 1768px;
    background-position: center;
    
}

.bglearn {
   
    background-repeat: no-repeat;
    height: 540px;
    
}


.pupil-box {
    flex: 1; /* Each box takes equal space */
    text-align: center;
}

.overlay {
    position: absolute; /* Position the overlay div absolutely within the container */
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust position to truly center */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    color: white; /* Text color */
    padding: 20px; /* Padding for the overlay */
    border-radius: 5px; /* Rounded corners for the overlay */
    text-align: center; /* Center text */
    max-width: 100%; /* Prevent overflow */
    box-sizing: border-box; /* Include padding and border in width */
}

.row {
    display: flex; /* Create a new row */
    justify-content: center; /* Center items in the row */
}

.text-shadow {
    text-shadow: 2px 4px 0px #754FF0; /* Custom text shadow */
}

.text-pupilshadow {
    text-shadow: 2px 4px 0px #3A00F8; /* Custom text shadow */
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }
}

@media (min-width: 1200px) {
    .container-sm {
      max-width: 34.375rem;
    }
  }

/*** Feature ***/
.feature-item {
    transition: .5s;
}

.feature-item:hover {
    margin-top: -15px;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
}


/*** Pricing ***/
.pricing .nav {
    padding: 2px;
}

.pricing .nav-link {
    padding: 12px 30px;
    font-weight: 500;
    color: var(--dark);
    background: #FFFFFF;
}

.pricing .nav-item:first-child .nav-link {
    border-radius: 30px 0 0 30px;
}

.pricing .nav-item:last-child .nav-link {
    border-radius: 0 30px 30px 0;
}

.pricing .nav-link.active {
    color: #FFFFFF;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}


/*** Screenshot ***/
.screenshot-carousel {
    position: relative;
    width: 800px;
    height: 223px;
    padding: 15px;
    margin-right: 30px;
}

.screenshot-carousel::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/screenshot-frame.png) center center no-repeat;
    background-size: 800px 223px;
    z-index: 1;
}

.screenshot-carousel .owl-item img {
    position: relative;
    width: 800px;
    height: 223px;
}

.screenshot-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.screenshot-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    border-radius: 15px;
    transition: .5s;
}

.screenshot-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 5px;
    left: 5px;
    background: #FFFFFF;
    border-radius: 5px;
}

.screenshot-carousel .owl-dot.active {
    box-shadow: 0 0 10px var(--dark);
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

.testimonial-carousel .owl-item.center .testimonial-item h5,
.testimonial-carousel .owl-item.center .testimonial-item p {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    border-radius: 60px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}


/*** Footer ***/
.footer {
    padding-top: 1rem;
    background:
        url(../img/bg-circle.png),
        url(../img/bg-triangle.png),
        url(../img/bg-top.png),
        linear-gradient(to bottom right, var(--dark), var(--dark));
    background-position:
        left 0px bottom 0px,
        right 0px top 50%,
        center top;
    background-repeat: no-repeat;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

footer {
    background-color: #F6F4F4;
    color: #754FF0;
    font-family: 'Noto Sans';
    font-size: 20px;
    padding: 20px;
}
.footer-container {
        width: 100%;
  padding-right: var(--bs-gutter-x, .75rem);
  padding-left: var(--bs-gutter-x, .75rem);
  margin-right: auto;
  margin-left: auto;
}

.footer-box {
    flex: 1; /* Each box takes equal space */
    padding: 10px;
    text-align: center;
}

.short-hr {
    width: 20%; /* Adjust the width as needed */
    margin: 20px auto; /* Center the line */
    border: 1px solid #3A00F8; /* Line color and thickness */
}

.bgfoot {

    background-image: url('logo1.png');
    background-repeat: no-repeat;
    height: 83px;
    
}
.pic-container {
        display: flex;
        align-items: center;
        gap: 18px;
    position: relative;
}
.pic-container img {
        max-width: 100%;
        height: 100%; 
        object-fit: contain;
}
.left-arrow, .right-arrow {
        width: 100px;
}
@media (max-width: 768px) {
        .left-arrow, .right-arrow {
        width: 30px;
        }
.pic-container img {
        max-width: 90%;
}
}
@media (min-width: 768px) and (max-width: 1024px) {
        .left-arrow, .right-arrow {
        width: 90px;
        }
.pic-container img {
        max-width: 90%;
}
}

@media (max-width: 768px) {
        h1.text-white{font-size:calc(9vw)}
}
.image-container {
    position: relative;
    display: inline-block;
}

.play-btn {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFC107; /* Yellow background */
    color: #673AB7; /* Purple text */
    font-size: 14px;
    font-weight: bold;
    padding: 8px 5%;
    box-shadow: 0px 2px 0px 1px #673AB7;
    border: 1px solid #673AB7; /* Purple border */
    border-radius: 50px; /* Rounded edges */
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.play-btn:hover {
    background-color: #FFD54F; /* Slightly lighter yellow */
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.4); /* Stronger shadow */
}
