

.hero {
    padding-top: 100px;
}


.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.5;
}

.hero img {
    width: 90%;
    height: auto;
    max-width: 90%;
    transition: all 0.3s;
    cursor: pointer;
    border-radius:10% 0 10% 0;  
}

.hero img:hover {
    filter: drop-shadow(1px 1px 10px rgb(255, 255, 255));
    transform: scale(1.1);
}



.sp {
    color: rgb(0, 0, 0);
    background: #fff;
    font-weight: 900;
    font-size: 2.5rem;
    padding: 0 5px;
    text-shadow: 0px 5px 10px rgba(0,0,0,1);
    mix-blend-mode: screen;
    transform: translateY(-50%);
    text-transform: uppercase;
    font-family: serif;
    border-radius: 10px 0px 10px 0px;
    
}
.sp:hover{
    -webkit-box-reflect: below 1px linear-gradint(transparent,#0005);
    box-shadow: 0 0 5px #03e9f4 ,0 0 15px #03e9f4, 0 0 25px #03e9f4, 0 0 100px #03e9f4;
}

/* button in hero section */
.projectsBtn {
    border: 2px solid #fff;
    padding: 10px 30px;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.45);
    z-index: 1;
    background:  transparent;
    transition: all 0.3s;
}
.projectsBtn:hover{
    filter: drop-shadow(1px 1px 10px rgb(255, 255, 255));
    background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);

}

/* second section  */

.Chooice{
    color: rgb(10, 10, 68);
    text-align: center;
    padding: 50px;
    background-image: url("/images/background.avif");
    background-attachment: fixed;
    z-index: -10;

}
.Chooice .watermark{
    position: fixed;    
    color: black;
    
    font-size: 50px;
    bottom: 150px;
    right: 30%;
    font-family: serif;
    font-weight: 900;
    /* z-index: 999; */
    width: 100%;

}
.outer{
    position: fixed;
    bottom: 200px;
    width: 90%;
    z-index: -1;
    font-size: 50px;
    font-family: serif;
    /* rotate: 10deg; */
    color: #04e2ffdd;
}



/* watermark logo */
.watermarkLogo{
    opacity: 0.3;
    width: 200px;
    /* filter: saturate(5); */
    
}
.outer .txt{
    text-shadow: 0px 5px 10px rgba(0,0,0,1);
    font-weight: 900;
    
}
.ChooiceDiv{
    /* background-color: #ffffffc6; */
    z-index: 1;
}
.ChooiceDiv i{
    font-size: 50px;
    color: rgba(8, 8, 100, 0.507);
    margin-bottom: 50px;
}

/* .content{
    /* max-width: 300px; */
  /*  padding: 20px;
    margin: auto;
    width: 300px;
    margin-bottom: 40px;
    border: 2px solid black;
    backdrop-filter: blur(1px);
    box-shadow: 10px 15px 20px #343333;
    /* box-shadow: 10px 15px 20px #000000; */
  /*  border-radius: 10% 0 10% 0;
    background-color: #ffffffb6
    ;

} */



.clintContainer{
    display: flex;
    justify-content: space-around;
}

.feedback{
    backdrop-filter: blur(1px);
    background-color: #ffffffb4;
    /* box-shadow: 10px 15px 20px rgb(43, 71, 137); */
    box-shadow: 10px 15px 20px rgb(27, 26, 26);
    border-radius: 15% 0 15% 0;
    padding: 20px;
    margin: auto;
    margin-bottom: 30px;
    max-width: 500px;
    transition: all 1s;
    
}
.feedback:hover{
    rotate: 5deg;
}
.title{
    max-width: 500px;
    margin-bottom: 30px;
    margin: auto;
}
.customer{
    display: flex;
    gap: 20px;
}
.feedback img{
    width: 50px;
    height: 50px;
    /* aspect-ratio: 3/3; */
    /* object-fit: contain; */
    border-radius: 50%;
}





.flip-card-container {
    width: 300px;
    height: 350px;
    perspective: 1000px;
    margin: auto;
    margin-top: 30px;
}

.flip-card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 2s;
}

.flip-card-container:hover .flip-card {
    transform: rotateY(180deg);
}

.flip-card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    padding: 20px;
    margin: auto;
    margin-bottom: 40px;
    border: 2px solid black;
    backdrop-filter: blur(1px);
    box-shadow: 10px 15px 20px #343333;
    /* box-shadow: 10px 15px 20px #000000; */
    border-radius: 10% 0 10% 0;
    background-color: #ffffffb6
}





.flip-card-back {
    background-color: #f8f9fa;
    transform: rotateY(180deg);
    text-align: center;
    padding: 20px;

    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex; 
    align-items: center;
     justify-content: center;
    border: 1px solid #ddd;
    border-radius: 0 10% 0% 10%;
    overflow: hidden;
    background-color: #f8f9fa;
}

.flip-card-back h3 {
    font-size: 1.5rem;
}

.flip-card-back p {
    font-size: 1rem;
    color: #555;
}

.flip-card-back img{
    max-width: 300px;
    object-fit: cover;
}