@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');
body{
    margin: 0;
    /* background-color: #000; */
    color: #eee;
    font-family: Poppins;
    font-size: 12px;
}

html {
    scroll-behavior: smooth;
}
:root{
    --bg-color:#e3edf7;
    --gradient-white-bg:linear-gradient(0deg,#fff 0%,#edf4fa 51%,#e5eef7 100%);
    --gradient-color-bg:linear-gradient(180deg,rgba(247,1,120,1)0%,
                                                rgba(160,8,156,1)51%,
                                                rgba(99,13,178,1)100%);
    --main-color:#e6006d;
    --font-color:#90979f;
    --hover-box-shadow:rgba(0,0,0,0.19)0px 10px 20px,
                       rgba(0,0,0,0.23)0px 6px 6px;     
    --gradient-white-bg2:linear-gradient(98deg,#e5eef7 0%,#fff 100%);                                                          
}






/* ==============  1. home  =============== */
/* ==============  1. home  =============== */

/* carousel */
.carousel{
    height: 700px;
    margin-top: 0px;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.carousel .list .item{
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
}
.carousel .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}
.carousel .list .item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); 
  }
.carousel .list .item .content{
    position: absolute;
    top: 20%;
    width: 1140px;
    /* max-width: 80%; */
    left: 50%;
    transform: translateX(-50%);
    padding-right: 30%;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 5px 10px #0004;
}
.carousel .list .item .author{
    font-weight: bold;
    letter-spacing: 10px;
    margin-left: 5px;
}
.carousel .list .item .title,
.carousel .list .item .topic{
    font-size: 5em;
    font-weight: bold;
    line-height: 1.3em;
    word-spacing: 0.2rem;
}
.carousel .list .item .topic{
    color: #f1683a;
}

.carousel .list .item a{
    height: 50px;
    width: 100px;
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin-top: 20px;
}
.carousel .list .item a .buttons{
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin-top: 20px;
}
.carousel .list .item .buttons a button{
    border: none;
    background-color: #ffffff;
    letter-spacing: 3px;
    font-family: Poppins;
    font-weight: 500;
    cursor: pointer;
}
.carousel .list .item .buttons a button:nth-child(2){
    background-color: transparent;
    border: 1px solid #fff;
    color: #eee;
}
/* thumbail */
.thumbnail{
    position: absolute;
    bottom: 75px;
    left: 50%;
    width: max-content;
    z-index: 100;
    display: flex;
    gap: 20px;

 
}
.thumbnail .item{
    width: 150px;
    height: 200px;
    flex-shrink: 0;
    position: relative;
}
.thumbnail .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.thumbnail .item .content{
    color: #fff;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}
.thumbnail .item .content .title{
    font-weight: 500;
}
.thumbnail .item .content .description{
    font-weight: 300;
}
/* arrows */
.arrows{
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}
.arrows button{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eee4;
    border: none;
    color: #fff;
    font-family: monospace;
    font-weight: bold;
    cursor: pointer;
    transition: .5s;
}
.arrows button:hover{
    background-color: #fff;
    color: #000;
}

/* animation */
.carousel .list .item:nth-child(1){
    z-index: 1;
}

/* animation text in first item */

.carousel .list .item:nth-child(1) .content .author,
.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .topic,
.carousel .list .item:nth-child(1) .content .des,
.carousel .list .item:nth-child(1) .content .buttons
{
    transform: translateY(50px);
    /* filter: blur(0px); */
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;
}
@keyframes showContent{
    to{
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}
.carousel .list .item:nth-child(1) .content .title{
    animation-delay: 1.2s!important;
}
.carousel .list .item:nth-child(1) .content .topic{
    animation-delay: 1.4s!important;
}
.carousel .list .item:nth-child(1) .content .des{
    animation-delay: 1.6s!important;
}
.carousel .list .item:nth-child(1) .content .buttons{
    animation-delay: 1.8s!important;
}
/* create animation when next click */
.carousel.next .list .item:nth-child(1) img{
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage .5s linear 1 forwards;
}
@keyframes showImage{
    to{
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.carousel.next .thumbnail .item:nth-last-child(1){
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}
.carousel.prev .list .item img{
    z-index: 100;
}
@keyframes showThumbnail{
    from{
        width: 0;
        opacity: 0;
    }
}
.carousel.next .thumbnail{
    animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext{
    from{
        transform: translateX(150px);
    }
}

/* running time */

.carousel .time{
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 3px;
    /* background-color: #f1683a; */
    left: 0;
    top: 0;
}

.carousel.next .time,
.carousel.prev .time{
    animation: runningTime 3s linear 1 forwards;
}
@keyframes runningTime{
    from{ width: 100%}
    to{width: 0}
}


/* prev click */

.carousel.prev .list .item:nth-child(2){
    z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img{
    animation: outFrame 0.5s linear 1 forwards;
    position: absolute;
    bottom: 0;
    left: 0;
}
@keyframes outFrame{
    to{
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }
}

.carousel.prev .thumbnail .item:nth-child(1){
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .5s linear 1 forwards;
}
.carousel.next .arrows button,
.carousel.prev .arrows button{
    pointer-events: none;
}
.carousel.prev .list .item:nth-child(2) .content .author,
.carousel.prev .list .item:nth-child(2) .content .title,
.carousel.prev .list .item:nth-child(2) .content .topic,
.carousel.prev .list .item:nth-child(2) .content .des,
.carousel.prev .list .item:nth-child(2) .content .buttons
{
    animation: contentOut 1.5s linear 1 forwards!important;
}

@keyframes contentOut{
    to{
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}
@media screen and (max-width: 678px) {
    .carousel .list .item .content{
        padding-right: 0;
    }
    .carousel .list .item .content .title{
        font-size: 30px;
    }
}




/* ==============  2. about  =============== */
/* ==============  2. about  =============== */

.about {
    height: 550px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin: 0 0%;
    background-color: #f1f2f4;
    
/* 
    background-color:#0C0C0C; */

}
.about-heading {
    display: flex;
    justify-content: center; /* Horizontally center align */
    
    background-color:#000;
    /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), #000); */
    height: 100%; /* Ensure it takes the full height of the parent */

    padding: 50px 0 0 0 ;
}

.about-heading h2 {
    font-size: 30px;
    color: #f1f2f4;
    
    letter-spacing: 5px;
   padding: 20px;
    margin: 0; /* Remove default margin */

    font-family: Poppins;
}

.about_section{
    height: 600px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
     margin: 0 10px;  
}

.about .about-img {
    position: relative;
    margin-top: -40px;
}

.about .about-img .aboutHero {
    height: auto;
    width: 40vw;
}

.about-img .ring {
    position: absolute;
    top: 22%;
    right: 1%;
}

.about-img .circle {
    position: absolute;
    top: 0%;
    left: 0%;
}

.about-content {
    padding: 3rem 0;
    margin-top: -40px;
}

.about-content h2 {
    

    color: #B20600;
    font-family: Poppins;
}

.about-content h3 {
    font-size: 2.1rem;
    line-height: 3rem;
    margin: .5rem 0;
}

.about-content p {
    color: var(--font-color);
    font-family: Poppins;
}

.text-box p {
    font-size: 1.1rem;
    font-weight: 500;
    font-family: Poppins;

    color: #19282F;
}
.text-box span{
    color: var(--font-color);
    font-size: 13px;
    font-family: Poppins;
}

.about-btn {
    margin: .8rem 0;
}

.about-btn button,
.cvContent a {
    background: var(--gradient-white-bg2);
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    margin-right: .5rem;
    cursor: pointer;
    transition: all .3s ease;
}

.about-btn button.active {
    background: var(--gradient-color-bg);
    color: #ffff;
}

.text-box {
    margin: .8rem 0;
}

.content-btn > .content:not(:first-child) {
    display: none;
}

.about-btn button:hover {
    box-shadow: var(--hover-box-shadow);
}

.cvContent {
    margin-top: 1.5rem;
}
/* 
.about-img {
    transition: transform 2s ease;
    transform: translateX(-100%);
}

.heading {
    transition: transform 2s ease;
    transform: translateY(-200%); 
}

.about.show .heading {
    transform: translateY(0);
}

.about-content {
    transition: transform 2s ease;
    transform: translateX(100%);
}

.about.show .about-img {
    transform: translateX(0);
}

.about.show .heading {
    transform: translateY(0);
}

.about.show .about-content {
    transform: translateX(0);
} */




/* =============  3. services  ============= */
/* =============  3. services  ============= */

#services {
    position: relative; 
    height: 1300px;
    width: 100%;
    background-image: url('img/damir-kopezhanov-VM1Voswbs0A-unsplash.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
}

#services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Semi-transparent black overlay */
    z-index: 1; /* Ensures the overlay is on top */
}

#services > * {
    position: relative;
    z-index: 2; /* Ensures content is above the overlay */
}


.service-heading{
    height: 50px;
      font-family: "Nunito", sans-serif;
      font-size: 16px;

      /* background-color: #00838d; */

      margin: 70px 0 10px 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      align-content: center;

}
.service-heading h2{
    font-size: 30px;
    color: #eaeaea;
    letter-spacing: 5px;

    font-family: Poppins;
}

#services em span{
    padding-top: 50px;
    font-family: Poppins;
}

em::after {
    content: "";
    height: 5px;
    
    display: inline-block;
    position: absolute;
    left: 0;
    background: rgb(252, 0, 0);
    transition: 0.3s all;

    z-index: 100;
  }
  
  .underlined-animated::after {
    animation: underline-animated 5s forwards;
  }
  
  @keyframes underline-animated {
    0% {
      right: 100%;
    }
    50% {
      right: 0;
      left: 0;
    }
    100% {
      right: 0;
      left: 100%;
    }
  }

  .services-box-1 {
    height: 650px;
    width: 90%;

    /* background-color: rgb(255, 115, 0); */

    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    align-content: center;
    z-index: 10;
    transition: height 0.5s; 

    margin-top: 50px;
}




.services-box-2{
    height: 650px;
    width: 90%;

/* background-color: chartreuse; */

display: flex;
justify-content: space-evenly;
align-items:flex-start;
align-content: center;



z-index: 10;
}

/* .service-mid-box{

    position: relative;
    height: 200px;
    width: 100%;
 
    background-color: #0c0c0c;


    margin-top: -500px;

    z-index: 1;
} */


.service-container{

    height: 400px;
    width: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    /* background-color: rgb(204, 8, 8); */

    z-index: 1;
}


.service-container .card
{
    max-width: 300px;
    height: 200px;
    margin: 70px 10px;
    padding: 20px 15px;

    transition: 0.3s ease-in-out;
    background-color: #eaeaea;

    /* background-color: #4f6f52; */

    /* background: linear-gradient(10deg, #0c0c0c, #f1f2f4); */

    z-index: 10;



    
}
.service-container .card:hover
{
    height: 450px;
    margin-top: -1px;

    /* background-color: #00838d; */
    
}

/* .service-container .card:hover .services-box-1 {
    height: 650px;
    background-color: #19282F;
} */



.service-container .card .imgContainer
{
    position: relative;
    width:250px;
    height:250px;
    top:-50px;
    left:25px;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    background-color: #fff;

    /* background-color: #ad794f; */

    


    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
/* 
    transform: skew(5deg); */
    transition: transform 1s ease; /* Add transition for smooth effect */

}

/* .container .card:hover .imgContainer {
    transform: skew(0deg); 
} */
.service-container .card .imgContainer img
{

    /* height: 150px; */
    width: 90%;
    border-radius: 4px;
}



.service-container .card .imgContainer p
{
 
 
    font-size: 15px;
    text-align: center;
    font-family: Poppins;
    color: #31363F;

}

.service-container .card .imgContainer a
{
 
 
    font-size: 13px;
    text-align: center;
    font-family: Poppins;
    cursor: pointer;
    color: orange;
    position: absolute;
    bottom: 10px; /* Adjust position as needed */
    visibility: hidden; /* Initially hidden */
    opacity: 0; /* Initially hidden */
    transform: translateY(-20px); /* Start position: above the visible area */
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out 0.4s, transform 0.5s ease-in-out 0.4s;

}

.service-container .card:hover .imgContainer a {
    opacity: 1; /* Visible on hover */
    visibility: visible; /* Visible on hover */
    transform: translateY(0); /* End position: original position */
}
.service-container .card .content
{
    position: relative;
    margin-top: 200px;
    padding: 10px 15px;
    text-align: center;
    color:#111;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease-in-out;
/* 
    background-color: rgb(180, 28, 28); */

    z-index: 10;
}
.service-container .card:hover .content
{
    visibility: visible;
    opacity: 1;
    margin-top: -40px;
    transition-delay: 0.3s;

    
    z-index: 10;

    /* background-color: #00838d; */


    
}


@media (max-width: 330px){
    .service-container .card .imgContainer{
        left: -2px;
    }
}

.service-container .card .content h2
{

    text-decoration: none;
    color: rgb(0, 140, 255);

    margin: 0 0 20px 0 ;

    position: relative;
    animation: fall 0.5s linear ;

}

@keyframes fall {
    0% {
      transform: translateY(-20px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }

}

.service-container .card .content p
{
    font-size: 15px;

    font-family: Poppins;
    color: #607274;
    
   
}

.service-container .card .content a
{

    cursor: pointer;
    font-size: 15px;
    /* text-decoration: none; */
    font-family: Poppins;
    color: rgb(255, 0, 0);
    

}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
 
.card {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 1.2s ease, transform 1.2s ease; /* Increase duration here */
}
 
.card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* .service-container .card .content a:hover
{

    cursor: pointer;
    font-size: 13px;
    text-decoration: none;
    font-family: Poppins;
    color: rgb(77, 255, 0);
    

} */

/* ============  4. contact  ============= */
/* ============  4. contact  ============= */



.page-content {
    position: relative; /* Needed for positioning the pseudo-element */
    height: 650px;
    width: 100%;
    margin: 0 auto;
    background-image: url('img/damir-kopezhanov-VM1Voswbs0A-unsplash.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Semi-transparent black overlay */
    z-index: 1; /* Ensures the overlay is on top */
}

.page-content > * {
    position: relative;
    z-index: 2; /* Ensures content is above the overlay */
}

.form-v6-content  {
    height: 500px;
    width: 500px;
    background: transparent;
    width: 968px;
    border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    margin: 180px 0;
    font-family: 'Nunito', sans-serif;
    color: #fff;
    font-weight: 700;
    position: relative;
    display: flex;
    justify-content: center;
    display: -webkit-flex;

    
}
.form-v6-content .form-left {
    margin-bottom: -6px;
    background: transparent;

   
}
.form-v6-content .form-left img {
    height: 500px;
    width: auto;
    
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.form-v6-content .form-detail {

    height: 500px;
    width: 500px;
    padding: 10px 30px;
    position: relative;

    /* background-color: #00838d; */
}

.form-v6-content .form-detail h2 {
    color: #00838d;
    /* color:  #f1f2f4;; */
    font-size: 35px;
    text-align: center;
    position: relative;
    padding: 6px 0 0;
    margin-bottom: 47px;

    font-family: poppins;
    word-spacing: 5px;
}
.form-v6-content .form-row {
    width: 100%;
}
.form-v6-content .form-detail .form-row-last {
    text-align: center;
}
.form-v6-content .form-detail .input-text {
    color: white;
    margin-bottom: 25px;
}
.form-v6-content .form-detail input {
    width: 92%;
    padding: 0px 5px 5px 5px;
    border: 2px solid transparent;
    border-bottom: 2px solid #e5e5e5;
    appearance: unset;
    -moz-appearance: unset;
    -webkit-appearance: unset;
    -o-appearance: unset;
    -ms-appearance: unset;
    outline: none;
    -moz-outline: none;
    -webkit-outline: none;
    -o-outline: none;
    -ms-outline: none;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 600;
    color: #333;

    background: transparent;
}

.form-v6-content .form-detail .form-row input:focus {
    border-bottom: 2px solid #00838d;
}
.form-v6-content .form-detail .register {
    background: #00838d;
    border-radius: 6px;
    -o-border-radius: 6px;
    -ms-border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    width: 160px;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
    border: none;
    margin: 11px 0 50px 0px;
    cursor: pointer;
    font-family: Poppins;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}
.form-v6-content .form-detail .register:hover {
    background: #00838d;
}
.form-v6-content .form-detail .form-row-last input {
    padding: 13px;
}
input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #777777;
  font-size: 16px;
}
input::-moz-placeholder { /* Firefox 19+ */
  color: #666;
  font-size: 16px;
}
input:-ms-input-placeholder { /* IE 10+ */
  color: #666;
  font-size: 16px;
}
input:-moz-placeholder { /* Firefox 18- */
  color: #666;
  font-size: 16px;
}




/* 

.sign-in{
    margin-top: -30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.sign-in p{
    text-align: center;
    font-size: 13px;
    color: #333;
    font-family: Georgia, 'Times New Roman', Times, serif;
    display: inline-block;
}

.sign-in a{
    text-align: center;
    text-decoration: none;
    margin-left: 10px;
}

.sign-in a span{
    text-align: center;
    text-decoration: none;
    color: rgb(87, 144, 249);
} */




/* 

.form-v6 .page-content .form-v6-content form .buttons{
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin: 20px 0 0px 0px ;

    text-align: center;
}
.form-v6 .page-content .form-v6-content form .buttons button{
    border: none;
    background-color: #eee;
    letter-spacing: 3px;
    font-family: Poppins;
    font-weight: 500;

}
.form-v6 .page-content .form-v6-content form .buttons button:nth-child(2){
    background-color: transparent;
    border: 1px solid #fff;
    color: #0041f5;
}

 */




.form-v6 .page-content .form-v6-content form  .form-btn-box {
    display: flex;
    justify-content: space-between;
    width: 200px;
    height: 35px;
  
  }
  
  .form-v6 .page-content .form-v6-content form  .form-btn-box .form-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 100%;
    background: var(--hover-color);


    /* background-color: #00838d; */

    border-radius: 0px;

    color: #f8f8f8;
    font-size: 1rem;
    letter-spacing: 1px;
    font-weight: 600;
    transition: .6s;
  
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid grey;
    box-shadow: 10px 8px 8px 0px rgba(0, 0, 0, 0.3);

    font-family: Poppins;
  }
  
  .form-v6 .page-content .form-v6-content form  .form-btn:hover {
    color: var(--hover-color);
    color: #0c0c0c;
  }
  
  .form-v6 .page-content .form-v6-content form  .form-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--bg-color);
    /* background-color: #00838d; */
    background-color: #f1f2f4;
    z-index: -1;
    transition: .4s;
  }
  
  .form-v6 .page-content .form-v6-content form  .form-btn:hover::before {
    width: 100%;
  }


/* ==============  5. Import Software  =============== */
/* ==============  5. Import Software  =============== */


.importSoft1 {
    height: 1700px; /* Adjust height as needed */
    width: 100%;

    /* background-color: #0e42a9; */

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.importSoft {
    height: 1650px; /* Adjust height as needed */
    width: 100%;

    /* background-color: #00e408; */

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
}


/* .import-soft-heading{

    height: 200px;
    width: 800px;

    background-color: #00838d;

    margin: 100px 0 0 0;
} */





.text-animation {
/* 
    height: 200px;
    width: 800px;
    background-color: aquamarine; */
    color: #000;
    font-size: 30px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    display: inline-block; /* Ensure the container only takes up the necessary width */

   margin-top: 100px;
}

.text-animation span {
    position: relative;
    display: inline-block;
    animation: animateLetter 0.5s ease forwards 2s;
    opacity: 0;
    transform: translateY(-100%);

    margin-right: 5px;
}

@keyframes animateLetter {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* .text-animation span:nth-child(1) {
    animation-delay: 0.1s;
}

.text-animation span:nth-child(2) {
    animation-delay: 0.2s;
}

.text-animation span:nth-child(3) {
    animation-delay: 0.3s;
}

.text-animation span:nth-child(4) {
    animation-delay: 0.4s;
}

.text-animation span:nth-child(5) {
    animation-delay: 0.5s;
} */

/* .text-animation span:nth-child(6) {
    animation-delay: 0.6s;
} */
/* 
.text-animation span:nth-child(7) {
    animation-delay: 0.7s;
} */
/* 
.text-animation span:nth-child(8) {
    animation-delay: 0.8s;
} */

.text-animation span:nth-child(9) {
    animation-delay: 2.5s;
}



/* -------------------------- animation -------------------------------- */

.testimonials {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.testimonials.animate {
    opacity: 1;
    transform: translateY(0);
}




/* -------------------------- animation -------------------------------- */






.testimonials-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px; /* Space between rows */

    /* background-color: #76ABAE; */

    /* padding-top: 700px; */
}

.testimonials {
   
    width: 350px;
    display: inline-block;
    margin: 20px; /* Combined margin for simplicity */
}

.testimonials .test-card {
    position: relative;
    overflow: hidden;
    height: 430px;
    width: 350px;
    margin: 0 auto;
    background: #0c0c0c;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);

    border-radius: 8px;
}

.testimonials .test-card .layer {
    z-index: 1;
    position: absolute;
    top: calc(100% - 2px);
    height: 100%;
    width: 100%;
    left: 0;
    background: linear-gradient(to left, #31363F, #76ABAE);
    transition: 0.5s;
}

.testimonials .test-card .content {
    z-index: 2;
    position: relative;
 
}

.testimonials .test-card:hover .layer {
    top: 0;
}

.testimonials .test-card .content p {
    font-size: 14px;
    height: 175px;
    line-height: 24px;
    color: #fff;
    
}

.testimonials .test-card .content .image {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
     margin-top: 10px; 
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.testimonials .test-card .content .image img{
    height: 100px;
    width: auto;
    border-radius: 50%;
    /* margin-top: 10px; */
}

.testimonials .test-card .content .details h2 {
    font-size: 18px;
    color: white;
}

.testimonials .test-card .content .details h2 span {
    font-size: 18px;
    color: #00838d;
    transition: 0.5s;
}

.testimonials .test-card:hover .content .details h2 span {
    color: white;
    position: relative;
}

/* ============  6. career  ============= */
/* ============  6. career  ============= */


#careerContent {
    position: relative; /* Needed for positioning the pseudo-element */
    height: 1800px;
    width: 100%; /* Ensure it takes the full width of the container */
    margin-top: 0px;
   
}

#careerContent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    z-index: 1; /* Ensures the overlay is on top */
}

#careerContent > * {
    position: relative;
    z-index: 2; /* Ensures content is above the overlay */
}


    .box-main{
    padding-top: 75px;
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 40px;
    
    }

    


    /* box11 , box22 , box33 --------- common content */
    .box11 , .box22 , .box33 {
    display: inline-block;
    height: 250px;
    width: 250px;
    background-color: white;
    border: 2px solid WHITE;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    padding: 25px;
    margin-bottom: 100px;


    background: linear-gradient(180deg, #250821, #485058);
    }

    .box11 h4 , .box22 h4 , .box33 h4{
    font-size: 18px;
    /* margin-bottom: 20px; */
    color: #213c55;

    color: #fff;
    margin:  0px 0 0 0;

    /* background-color: #0bb097; */
    }

    .box11 .career-para , .box22 .career-para , .box33 .career-para{
        height: 70px;
    font-size: 15px;
    margin-bottom: 20px;
    text-align: justify;
    line-height: 25px;
    color: #e5e5e5;
/* 
    background-color: #0bb097; */
    
    }




    /* -------- common content -------- */
    .year-icon{
        height: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    /* padding-top: 5px; */
    margin-bottom: 10px;

    /* background-color: #0B60B0; */
    }
    .year-icon p{
    margin-left: 12px;
    font-size: 14px;
    font-family: Poppins;

    color: #0c0c0c;
    }

    .time-icon{
        height: 30px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        align-content: center;
        /* padding-top: 5px; */
        margin-bottom: 10px;
    

    /* background-color: #81b00b; */
    }

    .time-icon p{
    margin-left: 15px;
    font-size: 14px;
    font-family: Poppins;

    
    color: #0c0c0c;
    }

    .full-time-icon{
        height: 30px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        align-content: center;
        /* padding-top: 5px; */
        margin-bottom: 10px;
    

    /* background-color: #d30d97; */
    }

    .full-time-icon p{
    margin-left: 15px;
    font-size: 14px;
    font-family: Poppins;

    
    color: #0c0c0c;
    }


    

    .year-icon i , .time-icon i , .full-time-icon i  {

        font-size: 15px;
        color: #e5e5e5;

        
    color: #0c0c0c;

    }







/* =========== career 2  ============= */








    * {
      transition: all 0.3s ease-out;
    }
    
    /* .career-container {
      height: 100%;
      font-family: "Nunito", sans-serif;
      font-size: 16px;
    } */
    
    .career-container {
        width: 100%;
        height: 700px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        background-image: 
            linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1)),
            url('img/andrew-kliatskyi-d3YXpAqdy2I-unsplash.jpg'); /* Use forward slashes */
        background-size: cover;
        background-position: center;
        position: relative;
        overflow: hidden; /* Ensure the border-radius is applied to the background image */
    }

    .career-container > * {
        position: relative;
        z-index: 2; /* Ensure content is above the overlay */
        color: white; /* Ensure text content is readable */
    }
    
    
    .career-heading {
        height: 470px;
        width: 200px;
        border: 1px solid white;
        border-radius: 50px;
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-image: url('img/ian-stauffer-bH7kZ0yazB0-unsplash.jpg'); /* Use forward slashes */
        background-size: cover;
        background-position: center;
        position: relative;
        overflow: hidden; /* Ensure the border-radius is applied to the background image */
        margin-right: 15px;
        animation: slide-in 1.5s ease-out; /* Apply the animation */
    }

    .career-heading::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(4, 0, 26, 0.7); /* Semi-transparent black overlay */
        border-radius: 50px; /* Match the border radius of the container */
        z-index: 1; /* Ensure the overlay is on top */
    }

    .career-heading > * {
        position: relative;
        z-index: 2; /* Ensure content is above the overlay */
        color: white; /* Ensure text content is readable */
    }

    .career-heading h2 {
        font-size: 40px;
    }

    /* Define the keyframe animation */
    @keyframes slide-in {
        from {
            transform: translate(-100%, -100%);
            opacity: 0;
        }
        to {
            transform: translate(0, 0);
            opacity: 1;
        }
    }
    
    .career-container h3 {
        font-family: Poppins;

      color: #265073;
      font-size: 17px;
      line-height: 24px;
      font-weight: 700;
      margin-bottom: 4px;
    }
    
    .career-container p {
        font-family: Poppins;
      font-size: 17px;
      font-weight: 400;
      line-height: 20px;
      color: #666666;
    
      &.small {
        font-size: 14px;
      }
    }
    
    .go-corner {
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      width: auto;
      height: 80px;
      overflow: hidden;
      top: 0;
      right: 0;
      background-color: transparent;
      border-radius: 0 4px 0 32px;
    }
    
    .go-arrow {
      margin-top: -4px;
      margin-right: -4px;
      color: white;
      font-family: courier, sans;
    }
    
    .card1 {
      display: block;
      position: relative;
      height: 300px;
      width: 262px;
      background-color: #f2f8f9;
      border: 2px solid transparent;
      border-radius: 40px 0px 40px 0px;
      padding: 32px 24px;
      margin: 12px;
      text-decoration: none;
      z-index: 0;
      overflow: hidden;

      animation: slide-in-right-bottom 1.5s ease-out;
    
      &:before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 15px;
        right: -40px;
        background: #00838d;
        height: 32px;
        width: 32px;
        border-radius: 10%;
        transform: scale(1);
        transform-origin: 50% 50%;
        transition: transform 0.25s ease-out;
      }
    
      &:hover:before {
        transform: scale(21);
      }
    }
    

    @keyframes slide-in-right-bottom {
        from {
            transform: translate(100%, 100%);
            opacity: 0;
        }
        to {
            transform: translate(0, 0);
            opacity: 1;
        }
    }
    .card1:hover {
      p {
        transition: all 0.3s ease-out;
        color: rgba(255, 255, 255, 0.8);
      }
      h3 {
        transition: all 0.3s ease-out;
        color: #ffffff;
      }
      i {
        transition: all 0.3s ease-out;
        color: #ffffff;
      }
    }
    





    .career-image-box{

        height: 110px;
        width: 110px;

        /* background-color: yellow; */

        margin: -30px 0 0 0;
    }
    .career-image-box img{

        height: 90px;
        width: auto;

        margin: 0;
        padding: 0;
    
    }

    .year-icon{
        height: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    /* padding-top: 5px; */
    margin-bottom: 10px;

    /* background-color: #0B60B0; */
    }
    .year-icon p{
    margin-left: 12px;
    font-size: 14px;
    font-family: Poppins;
    color: #e5e5e5;

    color: #5C8374;
    }

    .time-icon{
        height: 30px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        align-content: center;
        /* padding-top: 5px; */
        margin-bottom: 10px;
    

    /* background-color: #81b00b; */
    }

    .time-icon p{
    margin-left: 15px;
    font-size: 14px;
    font-family: Poppins;
    color: #e5e5e5;

    
    color: #5C8374;
    }

    .full-time-icon{
        height: 30px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        align-content: center;
        /* padding-top: 5px; */
        margin-bottom: 10px;
    

    /* background-color: #d30d97; */
    }

    .full-time-icon p{
    margin-left: 15px;
    font-size: 14px;
    font-family: Poppins;
    color: #e5e5e5;

    
    color: #5C8374;
    }


    

    .year-icon i , .time-icon i , .full-time-icon i  {

        font-size: 15px;
        color: #e5e5e5;

        
        color: #5C8374;

    }








    /* ======================  responsive  ====================== */
    /* ======================  responsive  ====================== */
    /* ======================  responsive  ====================== */




/* ==============  1. home  =============== */
/* ==============  1. home  =============== */




@media screen and (max-width: 768px) {



    .carousel{
        height: 100vh;
        width: 100%;

        margin: 0;
        padding: 0;
    }


    .carousel .list .item .content{
        height: 600px;
        width: 95%;

        /* background-color: #f1683a; */


        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
    }

    .carousel .list .item .author{
      
        height: 50PX;
        width: 95%;

    }
    .carousel .list .item .title{
      
        height: 50PX;
        width: 95%;
        font-size: 2rem;

        /* background-color: #e5e5e5; */

        margin: 0;
        padding: 0;
    }

    .carousel .list .item .topic{
      
        height: auto;
        width: 95%;
        font-size: 2rem;

        /* background-color: #e5e5e5; */

        margin: 0 0 30px 0;
        padding: 0;
    }

    .carousel .list .item .des {
        

        height: 10rem;
        width: 95%;
        font-size: 0.9rem;
        text-align:inherit;
        margin: 0;
        padding: 0;
    }


    .carousel .list .item .buttons{

        height: auto;
        width: 95%;
        margin: 100px 0 0 0;
        padding: 0%;

        /* background-color: #00838d; */

    }

    .carousel .list .item .buttons a button{
        padding: 0%;
    }

    .thumbnail{
       
        display: none;
    }

    .arrows{

        display: none;
    }

}



/* ========  4k  ========== */
/* ========  4k  ========== */
@media screen and (min-width: 3840px) {
    .carousel {
        height: 100vh;
        width: 100%;
        margin: 0;
        padding: 0;
    }
 
    .carousel .list .item .content {
        height: 800px; /* Adjusted height for larger screens */
        width: 95%;
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
    }
 
    .carousel .list .item .author {
        height: 70px; /* Adjusted height for larger screens */
        width: 95%;
        font-size: 2.5rem;
        letter-spacing: 30px;
    }
 
    .carousel .list .item .title {
        height: 60px; /* Adjusted height for larger screens */
        width: 95%;
        font-size: 8.5rem; /* Increased font size for larger screens */
        margin: 0;
        padding: 0;
    }
 
    .carousel .list .item .topic {
        height: auto;
        width: 95%;
        font-size: 8.5rem; /* Increased font size for larger screens */
        margin: 110px 0 30px 0;
      
        padding: 0;
    }
 
    .carousel .list .item .des {
        height: 12rem; /* Adjusted height for larger screens */
        width: 95%;
        font-size: 2.5rem; /* Increased font size for larger screens */
        text-align: inherit;
        margin: 0;
        padding: 0;
    }
 
    .carousel .list .item .buttons {
        height: 00px;
        width: 100%;
        margin: 200px 0 0 100px;
        padding: 0%;
     
    }
 
    .carousel .list .item .buttons a button {
        padding: 0%;
        height: 120px;
        width:350px;
        font-size: 50px;
        /* background-color: blue; */
    }
   .thumbnail .item {
        width: 450px; /* Adjusted width for larger screens */
        height: 550px; /* Adjusted height for larger screens */
        flex-shrink: 0;
        position: relative;

        /* border-radius: 50%; */

    }

    .thumbnail .item .content .title{
        font-size: 2rem;
    }
    .thumbnail .item .content .description{
        font-size: 2rem;
    }

    .arrows button{
        width: 100px;
        height: 100px;
        font-size: 2rem;
      
    }


    

}



/* ==============  2. about  =============== */
/* ==============  2. about  =============== */


@media screen and (max-width: 768px) {


    .about {
        height: 700px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        align-content: center;
        gap: 1rem;
        margin: 0 0%;

        /* background-color: #95b8ff; */
        
   
    
    }

    .about-heading {
        height: 70px;
        display: flex;
        justify-content: center;

    
        margin: -50px 0 0 0;
        padding: 50px 0 0 0 ;

        background: linear-gradient(to bottom, rgba(236, 236, 236, 0.1), #f1f2f4);
        
    }


    .about-heading h2 {

        color: #0c0c0c;
    }
    

    .about_section{
        height: 550px;
        width: 95%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
         margin: 0 10px;  


         /* background-color: #e6006d; */
    }

    .about_section .about-img {
        position: relative;
        margin-top: 0;

        height: 150px;
        width: 300px;

        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;

        /* background-color: #00838d; */

        display: none;
    }

    #about .about-section .about-img img{
      display: none;
    }



    .about-content h2 {
    text-align: center;
    }

    .about-content p {

        text-align: justify;
    }
    
    #about .about_section .about-content .content-btn .content .test-box span {

        color: #8d0000;
        text-align: center;
    }
}

/* ========  4k  ========== */
/* ========  4k  ========== */



    @media screen and (min-width: 3840px) {
        .about {
            height: 1400px; /* Adjusted height for larger screens */

            /* background-color: aqua; */
        }
       
        .about-heading {
            height: 1400px; /* Adjusted height for larger screens */
            width: 500px;
            margin: -100px 0 0 0; /* Adjusted margin for larger screens */
            padding: 100px 0 0 0; /* Adjusted padding for larger screens */
           
        }
       
        .about-heading h2 {
            font-size: 4.5rem; /* Increased font size for larger screens */
        }
       
        .about_section {
            height: 800px; /* Adjusted height for larger screens */
            margin: 0 0px 0 0 ; /* Adjusted margin for larger screens */

            display: flex;
            flex-direction: row;
            align-items: center;

            /* background-color: #00e408; */
        }
       
        .about_section .about-img {
            display: block; /* Display about image for larger screens */
            height: 450px; /* Adjusted height for larger screens */
            width: 50%; /* Adjusted width for larger screens */
           
            margin-top: -400px;

            /* background-color: #4500e6; */
        }
       
        #about .about-section .about-img img {
            display: block; /* Display about image for larger screens */
            height: 100%; /* Ensure image fills its container */
            width: 100%; /* Ensure image fills its container */
            margin-left:500px ;
           
        }
        .about-content{
          
            margin-left: 50px;
        }
       
        .about-content h2 {
            font-size: 2.5rem; /* Increased font size for larger screens */
        }
       
        .about-content p {
            font-size: 2.2rem; /* Increased font size for larger screens */
        }
        .text-box span{
            /* background-color: red; */
            font-size: 25px;
        }
       
        #about .about_section .about-content .content-btn .content .test-box span {
            font-size: 2.2rem; /* Increased font size for larger screens */
        }
    }


/* =============  3. services  ============= */
/* =============  3. services  ============= */


@media screen and (max-width: 768px) {


    #services {
       
        height: 3300px;
        width: 100%;

 
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items:center;
        align-content:center;
    
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* background-image: url('img\erp dev - 1.jpg');
        background-size: cover; */
       
    }


    

    .service-heading{
        
     /* background-color: #00838d; */
          margin: 50px 0 10px 0;
    }
    .services-box-1{

        height: 1550px;
        width: 95%;
    
        background: transparent;
        
        /* background-color: rgb(255, 115, 0); */
    
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items:center;
        align-content:center;
    
        
        z-index: 11;
    
    }
    
    .services-box-2{
        height: 1100px;
        width: 95%;
        background: transparent;

        /* background-color: rgb(85, 255, 0); */
    
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items:center;
    align-content: center;

    z-index: 10;

    margin: -100px 0 0 0;
    }
    

    /* .service-container .card:hover .services-box-1 {
        height: 2200px;
    } */
    
    
}



/* @media screen and (min-width: 769px) {
    .services-box-1.hovered {
        height: 650px;
        background-color: #19282F;
    }

    .services-box-2.hovered {
        height: 650px;
        background-color: #19282F;
    }
} */




/* ========  4k  ========== */
/* ========  4k  ========== */

@media screen and (min-width: 3840px) {
    #services {
        height: 2800px; /* Adjusted height for larger screens */
    }
 
    .service-heading {
       
       
        margin: 150px 0 10px 0; /* Adjusted margin for larger screens */
    }
    .service-heading h2{
        font-size: 70px;
    }
 
    .services-box-1, .services-box-2 {
        height: 1500px; /* Adjusted height for larger screens */
        width: 100%; /* Adjusted width for larger screens */
        margin-top: 100px; /* Adjusted margin-top for larger screens */
 
        /* background-color: #57fff7; */
    }
 
    .service-container .card {
        max-width: 700px; /* Adjusted max-width for larger screens */
        height: 650px; /* Adjusted height for larger screens */
        margin: 100px 10px; /* Adjusted margin for larger screens */
 
        /* background-color: #e6006d; */
    }
   
    .service-container .card .imgContainer {
        width: 600px; /* Adjusted width for larger screens */
        height: 600px; /* Adjusted height for larger screens */
        /* background-color: #f1683a; */
        margin-left: 25px;
    }
    .imgContainer img{
        height: 400px;
    }
    .service-container .card .imgContainer p{
        font-size: 2rem;
    }
    .service-container .card .imgContainer a{
        font-size: 25px;
    }
    .service-container .card .content {
        /* margin-top: 150px;  */
        height: 300px;
        /* background-color: blueviolet; */
    }
 
    .service-container .card .content h2 {
        font-size: 50px; /* Adjusted font size for larger screens */
    }
 
    .service-container .card .content p {
        font-size: 30px; /* Adjusted font size for larger screens */
    }
 
    .service-container .card .content a {
        font-size: 18px; /* Adjusted font size for larger screens */
    }
    .service-container .card:hover
{
    height: 1100px;
    margin-top: -1px;
 
    /* background-color: #00838d; */
   
}
 
}

/* ============  4. contact  ============= */
/* ============  4. contact  ============= */

@media screen and (max-width: 768px) {
        .page-content {
            
            height: 100vh;
            width: 100%;
            margin: 0 auto;

            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items:center;
            align-content: center;

            
        }


}


@media screen and (max-width: 991px) {
    .form-v6-content {
        margin: 180px 20px;
        flex-direction:  column;
        -o-flex-direction:  column;
        -ms-flex-direction:  column;
        -moz-flex-direction:  column;
        -webkit-flex-direction:  column;
    }
    .form-v6-content .form-left {
        width: 100%;
    }
    .form-v6-content .form-left img {
        width: 100%;
        border-bottom-left-radius: 0px;
        border-top-right-radius: 8px;
    }
    .form-v6-content .form-detail {
        padding: 30px 20px 30px 20px;
        width: auto;
    }
    .form-v6-content .form-detail .form-row input {
        width: 96%;
    }
    .form-v6-content .form-detail .register {
        margin-bottom: 80px;
    }
}
@media screen and (max-width: 767px) {
    .form-v6-content .form-detail .form-row input {
        width: 94%;
    }
}


@media screen and (max-width: 575px) {
    .form-v6-content .form-detail .form-row input {
        width: 89%;
    }
}




@media screen and (max-width: 768px) {
    
    .form-v6 .page-content .form-v6-content form  .form-btn-box {
        height: 40px;
        width: 90%;
       margin: 0 0 -100px 0;
       padding: 0;

       /* background-color: #e6006d; */
      }

      .form-v6 .page-content .form-v6-content form  .form-btn-box .form-btn {

        margin: 0;
        padding: 0;

        /* background-color: #05d07f */
      }

}




/* ==========  4k  =========  */
/* ==========  4k  =========  */


/* CSS for screens larger than 4K resolution */
@media screen and (min-width: 3840px) {
    .page-content {
        height: 100vh; /* Adjusted height for 4K resolution */
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items:center;
        align-content: center;
    }

    .form-v6-content {

        height: 90%;
        width: 40%;
        margin: 250px 40px; /* Adjusted margin for 4K resolution */
        flex-direction: column;
        -o-flex-direction: column;
        -ms-flex-direction: column;
        -moz-flex-direction: column;
        -webkit-flex-direction: column;

        /* background-color: #0082fc; */
    }

    .form-v6-content .form-detail {
        
        height: 90%;
        width: 40%;
        padding: 40px 30px; /* Adjusted padding for 4K resolution */
        width: auto;


        /* background-color: #8d0000; */
    }


    .form-v6-content .form-detail h2 {

        font-size: 6rem;
    }
    .form-v6-content .form-detail .form-row input {
        height: 100px;
        width: 96%; /* Adjusted input width for 4K resolution */

        font-size: 3rem;

        /* color: gold; */
    }

    .form-v6-content .form-detail .register {
        margin-bottom: 120px; 
        background-color: #f1683a;
    }

    input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
        color: #777777;
        font-size: 2.5rem;
      }
      .form-v6 .page-content .form-v6-content form .form-btn-box {
        height: 90px; 
        width: 100%; 
        margin: 0 auto;
        margin-top: 100px; 
        padding: 0;
        
        /* background-color: #f1683a; */

        display: flex;
        
        align-items: center;
        border-radius: 8px;
    }

    .form-v6 .page-content .form-v6-content form .form-btn-box .form-btn {

        width: 25%;
        height: 100px;

        font-size: 2.5rem;
        margin: 0;
        padding: 0;

        /* background-color: chartreuse; */
    }
}





/* ==============  5. Import Software  =============== */
/* ==============  5. Import Software  =============== */

@media screen and (max-width: 768px) {


    .importSoft1 {
        height: 4400px; /* Adjust height as needed */
        width: 100%;
    
        /* background-color: #0e42a9; */
    
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-content: center;

        margin-bottom: -2px;
    }


    .importSoft {
        height: 4300px; /* Adjust height as needed */
        width: 95%;
    
        /* background-color: #00e408; */
    
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-content: center;
    }


    
.text-animation {
   
        color: #000;
        font-size: 1.7rem;
        font-weight: bold;
        position: relative;
        overflow: hidden;
      
    }

    .testimonials-row {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-content: center;

      

        margin: 0;
        padding: 0;
    
        /* background-color: #d700f4; */
    
    }
    

    .testimonials .test-card {
       
        height: 430px;
        width: 95%;
       
    }

}





/* ============   4k  ============= */
/* ============   4k  ============= */


/* CSS for screens up to 3840 x 2160 resolution */
@media screen and (min-width: 3840px) {
    .importSoft1 {
        height: 5500px;

        /* background-color: #0e42a9; */

        margin: 0;
        padding: 0;
        
        display: flex;
          justify-content: center;
          align-items: center;
          align-content: center;

    }

    .importSoft {
        height:5000px; 

          /* background-color: #00e408; */

          margin: 0;
          padding: 0;

          display: flex;
          flex-direction: column;
          justify-content: space-between;
          align-items: center;
          align-content: center;
          
    }

    .text-animation {

        height: 200px;
        width: 1500px;
        font-size: 6rem; 

        /* background-color: #e6006d; */

        margin: 0;
        padding: 0 ;

        text-align: center;

        word-spacing: 10px;
        
    }

    .text-animation span {
       
        margin-right: 20px;
    }

    .testimonials-row {

        height: 1500px;
        width: 95%;

         /* background-color: #76ABAE; */


        display: flex;
        justify-content: space-around;
        align-items: center;
        align-content: center;

        margin: 0;
        padding: 0 ;
        
    }
    .testimonials .test-card {
        height: 1400px;
        width: 1000px; 

        margin: 0 0 0 -330px;
        padding: 0 ;
        
    }



    .testimonials .test-card .content p {
        font-size: 2.5rem;
        height: 600px;
        line-height: 2em;
        color: #fff;
        
        padding: 50px;
    }


    .testimonials .test-card .content .image {
        width: 300px;
        height: 300px;
        margin: 0 auto;
       
      background-color: #00e408;
      
    }

    .testimonials .test-card .content .image img{
        width: 300px;
        height: 300px;

    }

    .testimonials .test-card .content .details h2 span{
        font-size: 4rem;
    }
}




/* ============  6. career  ============= */
/* ============  6. career  ============= */


@media screen and (max-width: 768px) {


   
    .career-container {
        width: 100%;
        height: 1400px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        
        padding-top: 100px;
       
    }

    .career-heading {

        height: 100px;
        width: 90%;
        border-radius: 0px 40px 0px 40px;
        padding: 0px;
        margin: 0 0 50px 0;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        /* background-image: none; */

    }
    .career-heading::before {
        
        border-radius: 0px;
    }

    .career-heading h2 {
        font-size: 1.8rem;
        padding: 20px;
        margin: 0;
        text-align: center;

        border-radius: 0px 0px 0px 0px;
        

        /* background-color: #e6006d; */
    }

 
}




/* ============   4k  ============= */
/* ============   4k  ============= */



@media screen and (min-width: 3840px) {

    
   
    .career-container {
        width: 100%;
        height: 100vh;
        display: flex;
        flex-wrap: wrap;
      
        align-items: center;
        justify-content: center;
        
        padding-top: 100px;


       
    }

      
    .career-heading {
        height: 80vh;
        width: 15%;
        border: 1px solid white;
        border-radius: 100px;
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-image: url('img/ian-stauffer-bH7kZ0yazB0-unsplash.jpg'); /* Use forward slashes */
        background-size: cover;
        background-position: center;
        position: relative;
        overflow: hidden; /* Ensure the border-radius is applied to the background image */
        margin-right: 15px;
        animation: slide-in 1.5s ease-out; /* Apply the animation */
    }
    .career-heading::before {
        
        border-radius: 0px;
    }

    .career-heading h2 {
        font-size: 6rem;
        padding: 20px;
        margin: 0;
        text-align:inherit;

        border-radius: 0px 0px 0px 0px;
        

        /* background-color: #e6006d; */
    }



    .career-container {
        width: 100%;
        height: 100vh;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        background-image: 
            linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1)),
            url('img/andrew-kliatskyi-d3YXpAqdy2I-unsplash.jpg'); /* Use forward slashes */
        background-size: cover;
        background-position: center;
        position: relative;
        overflow: hidden; /* Ensure the border-radius is applied to the background image */
    }



    .career-container h3 {
        font-family: Poppins;

      color: #265073;
      font-size: 4rem;

      padding: 30px;
      
    }

    .career-container p {
        font-size: 2rem;
        /* background-color: #e6006d; */
    


        &.small {
            font-size: 3rem;
            line-height: 100px;
            height: 200px;

            padding: 0 30px 0 30px;
          }
    }



    .card1 {

      height: 50%;
      width: 900px;

      border: 5px solid transparent;

     
      margin:  0 0 0 50px;

      &:before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 15px;
        right: -80px;
        background: #00838d;
        height: px;
        width: 80px;
        border-radius: 0 0 0% 8px;
        transform: scale(1);
        transform-origin: 30% 15%;
        transition: transform 0.25s ease-out;
      }
    
      &:hover:before {
        transform: scale(43);
      }
    }

    .career-image-box{

        height: 300px;
        width: 300px;
        /* background-color: #00e408; */
    }

    
    .career-image-box img{

        height: 300px;
        width: 300px;

        padding: 30px;
        
    }

    .year-icon , .time-icon , .full-time-icon {

        height: 100px;
        /* background-color: #B20600; */
    }

    .year-icon p, .time-icon p, .full-time-icon p{
        font-size: 3rem;
        padding: 60px 30px 0 30px;
    }



    .year-icon i , .time-icon i , .full-time-icon i  {

        font-size: 3rem;
        margin-right: 30px;

        padding: 60px 0px 0 30px;

    }
}