/*** Spinner Start ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

/*** Spinner End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}


.btn-square {
    width: 38px;
    height: 38px;
}


.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Button End ***/


/*** Topbar Start ***/
.top-link{
    margin-right: 20px;
}
.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    width: 650px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 10s infinite;
    animation-timing-function: all;
}

@keyframes mymove {
    from {left: -100%;}
    to {left: 100%;}
}

/*** Topbar End ***/


/*** Navbar Start ***/
.navbar .navbar-nav {
    padding: 15px 0;
}
.custom-navbar {
    border-top: 1px solid black;
}

.navbar .navbar-nav .nav-link {
    padding: 10px;
    color: var(--bs-dark);
    font-size: 18px;
    outline: none;
    
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-saffron) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "font awesome 5 free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}
.position-absolute{
    top: -7px; 
    left: 20px;
}

/*** Navbar End ***/


/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.carousel-control-prev {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    /*background: var(--bs-primary);*/
    background:#f26522 ;
    border-radius: 0 50px 50px 0;
    opacity: 1;
}

.carousel-control-prev:hover {
    /*background: var(--bs-secondary);*/
    background: #bf0603;
    transition: .8s;
}

.carousel-control-next {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    /*background: var(--bs-primary);*/
    background: #f26522;
    border-radius: 50px 0 0 50px;
    opacity: 1;
}

.carousel-control-next:hover {
   /* background: var(--bs-secondary);*/
   background: #bf0603;
    transition: .8s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background:#f26522;
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background:#bf0603;
    color: #ffffff;
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: #bf0603;
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: #f26522;
    color: var(--bs-white);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

#carouselId .carousel-indicators li {
    width: 30px;
    height: 10px;
    background: var(--bs-orange);
    margin: 10px;
    border-radius: 30px;
    opacity: 1;
}

#carouselId .carousel-indicators li:hover {
    background: var(--bs-saffron);
    opacity: 1;
}

@media (max-width: 992px) {
    .carousel-item {
        min-height: 500px;
    }
    
    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 40px !important;
    }

    .carousel-item p {
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 400px;
    }
    
    .carousel-item img {
        min-height: 400px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 28px !important;
    }

    .carousel-item p {
        font-size: 14px !important;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}

/*** Carousel End ***/

/*** About strat ***/
.position-absolute{
    top: 25%;
    left: 25%;
}
/*** About End ***/
/*** Services Start ***/


.service-heading{
    max-width: 600px;
    text-align: center;
}
.services .services-item {
    box-shadow: 0 0 60px rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}


.services-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
    background: rgba(243, 147, 3, 0.8);
    transition: .5s;
}

.services-content::after {
    top: 0;
    bottom: auto;
    border-radius: 10px 10px 10px 10px;
}

.services-item:hover .services-content::after {
    height: 100%;
    opacity: 1;
    transition: .5s;
}

.services-item:hover .services-content-icon {
    position: relative;
    z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon p {
    transition: .5s;
}

.services-item:hover .services-content-icon i {
    color: var(--bs-saffron) !important;
}

.services-item:hover .services-content-icon p {
    color: var(--bs-white);
}

/*** Services End ***/


/*** Project Start ***/

.project-heading{
    max-width: 600px;
    text-align: center;
}
.project-img {
    position: relative;
    padding: 15px;
    height: 50%;
}

.project-img::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: 0;
    left: 0;
    background: var(--bs-orange);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-img::after {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--bs-saffron);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

/*.project-content a {
    /*display: inline-block;
    padding: 20px 25px;
    background: var(--bs-orange);
    border-radius: 10px;
}*/

.project-item:hover .project-content {
    opacity: 1;
    transition: .5s;
}

.project-item:hover .project-img::before,
.project-item:hover .project-img::after {
    opacity: 0;
}

.project-img img {
    object-fit: cover;  /* Ensures the image covers the container without distortion */
    height: 300px;      /* Set a fixed height for the image */
}

/*** Project End ***/
/*** Visit -temp ***/

.project-temp{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    min-height: 350px;
}

.detail{
    background-color: #ee8b0a; 
    text-align: center;
    color: #fff;

}

/*** Blog Start ***/
.blog-item .blog-btn {
    z-index: 2;
}

.blog-btn .blog-btn-icon {
    height: 50px;
    position: relative;
    overflow: hidden;
}

.blog-btn-icon .blog-icon-2 {
    display: flex;
    position: absolute;
    top: 6px;
    left: -140px;
    
}

.blog-btn-icon:hover .blog-icon-2 {
    transition: 1s;
    left: 5px;
    top: 6px;
    padding-bottom: 5px;
}
.blog-icon-1 {
    position: relative;
    top: -4px;
}
.blog-btn-icon:hover .blog-icon-1 {
    top: 0;
    right: -140px;
    transition: 1s;
}

/*** Blog End ***/


/*** Team Start ***/

.Team-heading{
    max-width: 800px;
    text-align: center;
}

.team-item {
    border-top: 30px solid var(--bs-orange) !important;
    background: rgba(239, 239, 241, 0.8);
}

.team-content::before {
    height: 200px;
    display: block;
    content: "";
    position: relative;
    top: -101px;
    background: var(--bs-orange);
    clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
    padding: 60px;
    opacity: 1;
}

.team-img-icon {
    position: relative;
    margin-top: -200px;
    padding: 30px;
    padding-bottom: 0;
}

.team-img {
    border: 15px solid var(--bs-white);
}

.team-img img {
    border: 10px solid var(--bs-orange);
    transition: .5s;
}

.team-item:hover h4 {
    color: var(--bs-primary);
    transition: .5s;
}

.team-item:hover .team-img img {
    transform: scale(1.05);
    border: 10px solid var(--bs-saffron);
}

.team-carousel .owl-stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 50px;
    display: flex;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    width: 56px;
    height: 56px;
    border-radius: 56px;
    margin-left: 15px;
    background: var(--bs-orange);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    background: var(--bs-saffron);
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .team-carousel {
        margin-top: 3rem;
    }

    .team-carousel .owl-nav {
        top: -85px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin-left: -15px;
    }
}

/*** Team End ***/


/*** Testimonial Start ***/


.test-heading{
    max-width: 600px;
    text-align: center;
}
.testimonial-item {
    background: #e3f0eb;

}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #c1dad0;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-saffron);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}

/*** Testimonial End ***/


/*** Contact Start ***/

.contact-heading{
    max-width: 600px;
    text-align: center;
}

.contact-bar{
    width: 100%;
    background-color: #fff;
}

.contact-logo{
    width: 64px;
    height: 64px;
}
.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(210, 243, 235, 1), rgba(230, 250, 245, .3)), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact-map {
    background: #bf0603;
}

.contact-form {
    background: #bf0603;
}

/*** Contact End ***/


/*** Footer Start ***/

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 1px;
}

.footer .hightech-link a:hover {
    background: var(--bs-secondary);
    border: 0;
}

/*** Footer End ***/

/*gokul*/
.text-secondary{
    font-size: 1rem;
}
.text-infotech{
    font-size: 25px;
    color: #fff;
    margin-top: 10px;
}
.text-seyon{
    font-size: 25px;
    color: #FFFFFF;
    margin-top: 10px;
}
.text-seyon_footer{
    font-size: 35px;
    color: #FFFFFF;    
}
.text-infotech_footer{
    font-size: 35px;
    color: #bf0603;    
}
.nav-link.activecon{
    color: #bf0603;
}
.col-xl-4{
    width: 40%;
}
.page-header_about {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/carousel-1.jpg) center 5% no-repeat;
    background-size: cover;
}
.page-header_technology{
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/carousel-1.jpg) center 5% no-repeat;
    background-size: cover;
}
.page-header_service{
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/carousel-1.jpg) center 5% no-repeat;
    background-size: cover;
}
.page-header_project{
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/carousel-1.jpg) center 5% no-repeat;
    background-size: cover;
}
.page-header_contact{
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/carousel-1.jpg) center 5% no-repeat;
    background-size: cover;
}
.page-header_templates{
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/carousel-1.jpg) center 5% no-repeat;
    background-size: cover;
}
.page-header_hrms{
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/carousel-1.jpg) center 5% no-repeat;
    background-size: cover;
}
a{
    color: #ffffff;
}

.custom-img-size {
    width: 500px; /* Adjust the width as needed */
    height: 500px; /* Adjust the height as needed */
    object-fit: cover; /* Ensures the image maintains aspect ratio */
}
.sidebar{
    margin-top: 30px;
    width: 200px; /* Adjust width as needed */
    margin-left: 20px; /* Moves the sidebar slightly to the right */
}
.sidebar a {
    display: block;
    padding: 10px 0;
    font-size: 16px;
    color: #333;
    text-decoration: none;
   
}

.sidebar a i {
    margin-right: 10px; /* Add space between icon and text */
    font-size: 18px;    /* Adjust the icon size */
    color: #000;     /* Icon color */
}

.sidebar a:hover {
    color: #fff;
    text-decoration: none;
    background-color: #bf0603;
}

.sidebar a i:hover {
    color: #fff; /* Change icon color on hover */
}


.content-section {
    padding: 30px;
}

.card {
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}
.rounded-circle:hover{
    background-color: #bf0603 ;

}
.card:hover {
    transform: translateY(-5px);
    background-color: #26d48c;
}

.card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}
.section-content {
    display: none;
}
.animated-flip {
    perspective: 1000px; /* Create a 3D space for card flip */
}

.animated-flip .card {
    transition: transform 0.6s ease-in-out;
    transform-style: preserve-3d; /* Ensure the 3D transformation is applied */
    position: relative;
}

.animated-flip:hover .card {
    transform: rotateY(180deg); /* Flip the card 180 degrees on hover */
}

.animated-flip img {
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.animated-flip:hover img {
    /*opacity: 0.5; /* Slight transparency on hover */
    transform: rotate(-10deg) scale(1.2); /* Rotates and scales the image slightly */
}

.animated-flip h5 {
    transition: transform 0.6s ease-in-out;
    transform: rotateY(0deg);
}

.animated-flip:hover h5 {
    transform: rotateY(180deg); /* Text rotates 180 degrees as the card flips */
}

.card {
    backface-visibility: hidden; /* Ensures the card content doesn’t show when flipped */
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card h5 {
    font-weight: bold;
    margin-top: 10px;
}
.containertemp{
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
    margin-top: 350px;
    width: 100%;
    max-width: 1200px;    
    overflow: hidden; 
    height: 700px;
    background: #f5f5f5;
    box-shadow: 0 30px 50px #dbdbdb;
    display: flex;
    overflow: hidden;
    padding: 0 15px;
}



.containertemp .slide .item{
    width: 200px;
    height: 300px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 20px;
    box-shadow: 0 30px 50px #505050;
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    transition: 0.5s;
}

.slide .item:nth-child(1),
.slide .item:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}


.slide .item:nth-child(3){
    left: 50%;
}
.slide .item:nth-child(4){
    left: calc(50% + 220px);
}
.slide .item:nth-child(5){
    left: calc(50% + 440px);
}

/* here n = 0, 1, 2, 3,... */
.slide .item:nth-child(n + 6){
    left: calc(50% + 660px);
    opacity: 0;
}



.item .content{
    position: absolute;
    top: 50%;
    left: 100px;
    width: 300px;
    text-align: left;  
    color: #fff;
    background-color: #000;
    transform: translate(0, -50%);
    font-family: system-ui;
    display: none;
    border-radius: 5px;
    opacity: 0.9;
   
}

.slide {
    display: flex;
    gap: 15px; /* Space between items */
    transition: transform 0.5s ease; /* Smooth transition for slides */
  }


.slide .item:nth-child(2) .content{
    display: block;
}


.name{
    font-size: 30px;   
    font-weight: bold;
    margin-bottom: 40px;    
    text-align: center;
    animation: animate 1s ease-in-out 1 forwards;
}

.des{
    margin-top: 10px;
    margin-bottom: 20px;   
    animation: animate 1s ease-in-out 0.3s 1 forwards;
    text-align: center;
}

.content button{
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
    border-radius: 5px;
    margin-bottom: 10px;
    margin-left: 65px;      
}
.reduced-height {
    height: auto; /* Allow the height to adjust based on content */
    max-height: 800px; /* Limit the maximum height */
    overflow: hidden; /* Handle excess content gracefully */
}

.Moretemp{
    background-color: #fd7e14; /* Button color */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 40px;    
}
.Moretemp:hover{
    background-color: #bf0603;
    color: #fff;
}



@keyframes animate {
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}
.button {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
  }
  
  .button .prev,
  .button .next {
    background-color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 1.2rem;
  }
  
  .button .prev:hover,
  .button .next:hover {
    background-color: #bf0603;
    color: #fff;
  }
  
  .button .prev {
    position: absolute;
    left: 10px; /* Distance from the left side */
  }
  .button .next {
    position: absolute;
    right: 30px; /* Distance from the left side */
  }
.project-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;    
    opacity: 0;
    transition: opacity 0.3s;
    padding-top: 20%; /* Adjust to position HMS heading higher if needed */
}
.project-img:hover .project-content {
    opacity: 1;
}
.project_name{
    background: var(--bs-orange);    
    padding: 20px 25px;
    border-radius: 10px;
}
.know-more-btn {
    /*display: none;*/
    margin-top: 15px;
    background-color: #bf0603;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.project-content:hover .know-more-btn {
    display: block;
}
/*containercommerce*/
@import url(https://fonts.googleapis.com/css?family=Bree+Serif);
/* the important bits */
li {
    perspective: 400px;
  }
  
  .info {
    transform: rotate3d(1, 0, 0, 90deg);
    width: 100%;
    height: 100%;
    padding: 20px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 4px;
    pointer-events: none;
    background-color: #bf0603;
  }
  
  .in-top .info {
    transform-origin: 50% 0%;
    -webkit-animation: in-top 300ms ease 0ms 1 forwards;
            animation: in-top 300ms ease 0ms 1 forwards;
  }
  
  .in-right .info {
    transform-origin: 100% 0%;
    -webkit-animation: in-right 300ms ease 0ms 1 forwards;
            animation: in-right 300ms ease 0ms 1 forwards;
  }
  
  .in-bottom .info {
    transform-origin: 50% 100%;
    -webkit-animation: in-bottom 300ms ease 0ms 1 forwards;
            animation: in-bottom 300ms ease 0ms 1 forwards;
  }
  
  .in-left .info {
    transform-origin: 0% 0%;
    -webkit-animation: in-left 300ms ease 0ms 1 forwards;
            animation: in-left 300ms ease 0ms 1 forwards;
  }
  
  .out-top .info {
    transform-origin: 50% 0%;
    -webkit-animation: out-top 300ms ease 0ms 1 forwards;
            animation: out-top 300ms ease 0ms 1 forwards;
  }
  
  .out-right .info {
    transform-origin: 100% 50%;
    -webkit-animation: out-right 300ms ease 0ms 1 forwards;
            animation: out-right 300ms ease 0ms 1 forwards;
  }
  
  .out-bottom .info {
    transform-origin: 50% 100%;
    -webkit-animation: out-bottom 300ms ease 0ms 1 forwards;
            animation: out-bottom 300ms ease 0ms 1 forwards;
  }
  
  .out-left .info {
    transform-origin: 0% 0%;
    -webkit-animation: out-left 300ms ease 0ms 1 forwards;
            animation: out-left 300ms ease 0ms 1 forwards;
  }
  
  @-webkit-keyframes in-top {
    from {
      transform: rotate3d(-1, 0, 0, 90deg);
    }
    to {
      transform: rotate3d(0, 0, 0, 0deg);
    }
  }
  
  @keyframes in-top {
    from {
      transform: rotate3d(-1, 0, 0, 90deg);
    }
    to {
      transform: rotate3d(0, 0, 0, 0deg);
    }
  }
  @-webkit-keyframes in-right {
    from {
      transform: rotate3d(0, -1, 0, 90deg);
    }
    to {
      transform: rotate3d(0, 0, 0, 0deg);
    }
  }
  @keyframes in-right {
    from {
      transform: rotate3d(0, -1, 0, 90deg);
    }
    to {
      transform: rotate3d(0, 0, 0, 0deg);
    }
  }
  @-webkit-keyframes in-bottom {
    from {
      transform: rotate3d(1, 0, 0, 90deg);
    }
    to {
      transform: rotate3d(0, 0, 0, 0deg);
    }
  }
  @keyframes in-bottom {
    from {
      transform: rotate3d(1, 0, 0, 90deg);
    }
    to {
      transform: rotate3d(0, 0, 0, 0deg);
    }
  }
  @-webkit-keyframes in-left {
    from {
      transform: rotate3d(0, 1, 0, 90deg);
    }
    to {
      transform: rotate3d(0, 0, 0, 0deg);
    }
  }
  @keyframes in-left {
    from {
      transform: rotate3d(0, 1, 0, 90deg);
    }
    to {
      transform: rotate3d(0, 0, 0, 0deg);
    }
  }
  @-webkit-keyframes out-top {
    from {
      transform: rotate3d(0, 0, 0, 0deg);
    }
    to {
      transform: rotate3d(-1, 0, 0, 104deg);
    }
  }
  @keyframes out-top {
    from {
      transform: rotate3d(0, 0, 0, 0deg);
    }
    to {
      transform: rotate3d(-1, 0, 0, 104deg);
    }
  }
  @-webkit-keyframes out-right {
    from {
      transform: rotate3d(0, 0, 0, 0deg);
    }
    to {
      transform: rotate3d(0, -1, 0, 104deg);
    }
  }
  @keyframes out-right {
    from {
      transform: rotate3d(0, 0, 0, 0deg);
    }
    to {
      transform: rotate3d(0, -1, 0, 104deg);
    }
  }
  @-webkit-keyframes out-bottom {
    from {
      transform: rotate3d(0, 0, 0, 0deg);
    }
    to {
      transform: rotate3d(1, 0, 0, 104deg);
    }
  }
  @keyframes out-bottom {
    from {
      transform: rotate3d(0, 0, 0, 0deg);
    }
    to {
      transform: rotate3d(1, 0, 0, 104deg);
    }
  }
  @-webkit-keyframes out-left {
    from {
      transform: rotate3d(0, 0, 0, 0deg);
    }
    to {
      transform: rotate3d(0, 1, 0, 104deg);
    }
  }
  @keyframes out-left {
    from {
      transform: rotate3d(0, 0, 0, 0deg);
    }
    to {
      transform: rotate3d(0, 1, 0, 104deg);
    }
  }
  /* you can ignore this ones */
  ul {
    padding: 0;
    margin: 0 0 50px;
  }
  ul:after {
    content: "";
    display: table;
    clear: both;
  }
  
  li {
    position: relative;
    float: left;
    width: 200px;
    height: 200px;
    margin: 5px;
    padding: 0;
    list-style: none;
  }
  li a {
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    border-radius: 4px;
  }
  li h3 {
    margin: 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
  }
  li p {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
  }
  li .normal {
    width: 100%;
    height: 100%;
    background-color: #ECF0F1;
    color: rgba(52, 73, 94, 0.6);
    box-shadow: inset 0 2px 20px #e6ebed;
    text-align: center;
    font-size: 50px;
    line-height: 200px;
  }
  li .normal svg {
    pointer-events: none;
    width: 50px;
  }
  li .normal svg path {
    fill: rgba(52, 73, 94, 0.2);
  }
  
  * {
    box-sizing: border-box;
  }
  
  body {
    background-color: #fff;
  }
  
  h1 {
    margin: 0 auto 5px;
    text-align: center;
  }
  
  h3 {
    font-family: "Bree Serif", serif;
  }
  
.containercomere{
    width: 840px;
    margin: 0 auto;
}
/*template page*/
.container-fluid_project{
    margin-top: -20px;
}
.template-heading{
    max-width: 600px;
    text-align: center;
}
/*techie page*/
.descrip{
    text-align: left;
    font-weight: 900;
}
.align{
    text-align: center;
    color: #000;
}
/*index project change*/
.project_name{
    text-align: center;
    width: 120px;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0%;
}
.new-btn{
    display: flex;
    justify-content: center;
    align-items: center;
}
.preview{
    background-color: #fd7e14; /* Button color */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;    
}
.preview:hover{
    background-color: #bf0603;
    color: #fff;
}

.module{
    height: 150px;
    width: 90%;
    margin: auto;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;

}
.module-track{
    display: flex;
    width: calc(150px * 18);
    animation: scroll 30s linear infinite;
}
.module-track:hover{
    animation-play-state: paused;
}

@keyframes scroll{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(calc(-150px * 9));
    }
}
.modu {
    height: 150px; /* Increase height */
    width: 100px; /* Increase width */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px; 
    margin: 10px;
    box-sizing: border-box;
}

.module .modu img {
    height: 100%; /* Make the image fill the height */
    padding: auto;
   
    transition: transform 0.5s ease;
}

.module .modu img:hover {
    transform: scale(1.2); /* Zoom in on hover */
}

.module::before,
.module::after {
    background: linear-gradient(to right,rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
    content:'';
    height: 100%;
    position: absolute;
    width: 15%;
    z-index: 2;
}
.module::before{
    left: 0;
    top: 0;
}
.module::after{
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}
.top-info {
    margin-top: 5px; /* Adjust the value as needed */
}

#note {
    margin-top: 5px; /* Adjust the value as needed */
}
.list li{
    width:auto;
    height: auto;
    list-style: disc;
}
#card-li:hover {
    transform: translateY(-5px);
    background-color:#bf0603 ;
}
#card-li:hover .list {
    color:#fff;
}
#demo_acc a{
    color:#bf0603 ;
}

