a,p,span,h1,h2,h3,h4{
    font-family: Quicksand semiBold;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.1s;
}

html, body {
    width: 100%;
    height: 100%;
}

.main-container {
    width: 100%;
    overflow-x: hidden;
}




/* Slick Slider Styles */
.slider {
    /* margin: 20px auto; */
    /* width: 80%; */
    position: relative;
}

.slider-item {
    text-align: center;
    color: white;
    position: relative;
}

.slider-item img {
    width: 100%;
    height: 90vh;
    object-fit: cover;
    scale: 1;
    animation: scaleOut 2s ease-out forwards;
    /* border-radius: 10px; */
}

@keyframes scaleOut {
    to {
        scale: 1.3;
    }
}


.slider-content {
    position: absolute;
    top: 20%;
    left: 5%;
    /* transform: translate(-50%, -50%); */
    text-align: left;
    /* background-color: aliceblue; */
    overflow: hidden;
}

.slider-content h1 {
    font-size: 3rem;
    width: 50%;
    opacity: 0; 
    transform: translateX(-100%); 
    animation: slideIn 1s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes slideIn {
    to {
        transform: translateX(0); /* End at original position */
        opacity: 1; /* Fully visible */
    }
}

.slider-content p {
    margin-top: 30px;
    width: 45%;
    line-height: 25px;
    transform: translateX(-100%); 
    animation: slideInP 1s ease-out forwards;
    animation-delay: 1.3s;
}

@keyframes slideInP {
    to {
        transform: translateX(0); /* End at original position */
        opacity: 1; /* Fully visible */
    }
}

.slider-content .btns{
    display: flex;
    gap: 30px;
    margin-top: 40px;
   
}





.btn {
    background-color: #4A43DD;
    color: white;
    /* color: #4A43DD; */
    padding: 20px 30px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    border: none;
}


.btn span{
    right: 10px;
    position: relative;
}

.btn .arrow-icon-default,
.btn .arrow-icon-hover {
    font-size: 18px;
    position: absolute;
    right: 20px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.btn .arrow-icon-default {
    opacity: 1;
    transform: translateY(0);
}

.btn .arrow-icon-hover {
    opacity: 0;
    transform: translateY(100%);
}

.btn:hover .arrow-icon-default {
    opacity: 0;
    transform: translateY(-100%);
}

.btn:hover .arrow-icon-hover {
    opacity: 1;
    transform: translateY(0);
}

.btn:hover {
    background-color: #6b64e9;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.374);
    transform: translateY(-5px);
}







.slider-content .btns .btn {
    /* background-color: #FFD700; */
    /* color: #4A43DD; */
    padding: 20px 30px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    transform: translateX(-240%); 
    animation: slideInPbtn 1s ease-out forwards;
    animation-delay: 1.2s;
}

@keyframes slideInbtn {
    to {
        transform: translateX(0); /* End at original position */
        opacity: 1; /* Fully visible */
    }
}


.slider-content .btns .btn span{
    right: 10px;
    position: relative;
}

.slider-content .btns .btn .arrow-icon-default,
.slider-content .btns .btn .arrow-icon-hover {
    font-size: 18px;
    position: absolute;
    right: 20px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.slider-content .btns .btn .arrow-icon-default {
    opacity: 1;
    transform: translateY(0);
}

.slider-content .btns .btn .arrow-icon-hover {
    opacity: 0;
    transform: translateY(100%);
}

.slider-content .btns .btn:hover .arrow-icon-default {
    opacity: 0;
    transform: translateY(-100%);
}

.slider-content .btns .btn:hover .arrow-icon-hover {
    opacity: 1;
    transform: translateY(0);
}

.slider-content .btns .report-btn{
    border: none;
}

.slider-content .btns .btn:hover {
    background-color: #4A43DD;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.374);
}

.slider-content .btns .learn-btn{
    background: transparent;
    color: white;
    border: 1px solid white;
    transition: all 0.3s;
}


.slider-content .btns .learn-btn:hover{
    border: none;
}




.slick-dots {
    list-style: none;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.slick-dots li button:before {
    color: white;
    font-size: 12px;
    opacity: 1;
}

.slick-dots li.slick-active button:before {
    color: orange;
}



.main-container .about{
    width: 100%;
    padding: 100px 100px;
    display: flex;
    position: relative;
    min-height: 100vh;
    margin-bottom: 150px;

    /* gap: 100px; */
  
}

.main-container .about .about-img{
    width: 50%;
    position: relative;
}

.main-container .about .about-img img{
    position: absolute;
    opacity: 0;  
    transform: scale(0); 
    transition: opacity 1s, transform 1s;
}

.main-container .about .about-img .shape1{
    left: -50px;
    animation: goUp 5s ease 0s infinite;
}


@keyframes goUp {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-40px);
    }
    100%{
        transform: translateY(0);
    }
}


.main-container .about .about-img .shape2{
    left: 100px;
}

.main-container .about .about-img .shape3{
    left: 300px;
    top: 50px;
}

.main-container .about .about-img .shape4{
    left: 100px;
    top: 350px;
}

.main-container .about .about-content{
    width: 50%;
}


.main-container .about .about-content .number-wrapper{
    display: flex;
    gap: 30px;
    padding-bottom: 30px;
    padding-top: 30px;
}


.main-container .about .about-content h1{
    font-weight: bold;
    font-size: 2.5em;
    padding-bottom: 20px;
    display: inline-block;
}

.char {
    display: inline-block;
    opacity: 0;
    transform: scale(0);
    transition: transform 0.5s ease, opacity 0.5s ease;
}


.main-container .about .about-content p{
    padding-bottom: 20px;
    color: #797979;
}


.main-container .about .about-content .number-wrapper .numbers span{
    font-size: 2em;
}


.animated-p, .numbers, .number-wrapper, .learn-btn {
    opacity: 0;
    transform: translateX(100px);  /* Start from the right */
    transition: transform 2s ease, opacity 2s ease;
  }


  .animated {
    opacity: 1;
    transform: translateX(0); /* Move to original position */
  }




@media (max-width:1500px) {
    .main-container .about{
        padding: 60px 0px;
    }
}


@media (max-width:1430px) {
    .main-container .about .about-img .shape3{
        width: 300px;
        /* height: 200px; */
        left: 200px;
        top: 150px;
    }


    .main-container .about .about-img .shape2{
        width: 200px;
        /* height: 200px; */
    }

}



@media (max-width:1080px) {
    
    .main-container .about{
        width: 100%;
        padding: 30px;
        display: flex;
        position: relative;
        min-height: 100vh;
        flex-direction: column;
        /* gap: 100px; */
    
    }  

    .main-container .about .about-img{
        width: 100%;
        min-height: 100vh;
        position: relative;
    }


    .main-container .about .about-content{
        width: 100%;
    }

    .main-container .about .about-img .shape3{
        width: 40vw;
        /* height: 200px; */
        left: 300px;
        top: 150px;
    }


    .main-container .about .about-img .shape2{
        width: 30vw;
        /* height: 200px; */
    }

    .main-container .about .about-img .shape4{
        width: 50vw;
        /* height: 200px; */
    }
}



@media (max-width: 750px) {
    .main-container .about .about-img .shape3{
        width: 40vw;
        /* height: 200px; */
        left: 200px;
        top: 150px;
    }

}


@media (max-width: 690px) {
    .main-container .about .about-img .shape2{
        left: 50px;
    }

    .main-container .about .about-img .shape1{
        left: -100px;
    }

    .main-container .about .about-img .shape3{
        width: 40vw;
        /* height: 200px; */
        left: 150px;
        top: 150px;
    }

    .main-container .about .about-img .shape4{
        left: 10px;
    }

}




@media (max-width: 670px) {
    .main-container .about .about-img .shape4{
        left: 10px;
        top: 300px;
    }


    .main-container .about .about-img{
        width: 100%;
        min-height: 70vh;
        position: relative;
    }

}










@media (max-width:1100px) {
    .slider-content h1 {
        width: 80%;
    }   


    .slider-content p {
        width: 55%;
    }
    
}



@media (max-width:780px) {
    .slider-content h1 {
        font-size: 2.5rem;
        width: 100%;
        /* margin: 0; */
    }   


    .slider-content p {
        margin-top: 30px;
        width: 85%;
        line-height: 25px;
    }
    
}




@media (max-width:640px) {
    .slider-content h1 {
        font-size: 2rem;
        width: 95%;
        /* margin: 0; */
    }   


    .slider-content p {
        margin-top: 30px;
        width: 85%;
        line-height: 20px;
    }
    
}






@media (max-width:400px) {
    .slider-content .btns{
        flex-direction: column;
        padding-right: 10px;
    }


    .slider-content {
        position: absolute;
        top: 10%;
        left: 5%;
        /* transform: translate(-50%, -50%); */
        text-align: left;
        /* background-color: aliceblue; */
        overflow: hidden;
    }
    
}



