@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,600;0,700;1,400&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');
@import url('mobile.css');
:root{
   --prime-color: #f5912c;
   --color: rgba(122, 122, 124, 0.918);
}
img#actualImage1 {
    width: 200px;
    border: 2px solid #fff;
    border-radius: 10px;
}

html{
    height: 100%;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(/assets/img/pattern.jpg);
    background-size: 150px;
    background-color: #FF6F00;
    height: 100%;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-blend-mode: multiply;
}
.container{
    display: flex;
    position: relative;
    max-width: 1024px;
    width: 100%;
    min-height: 675px;
    background-image: url(/assets/img/bg-cover.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    margin: auto;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    overflow: hidden;
}
.ram-seetha-container {
    top: 50%;
    left: 50%;
    width: 450px;
    height: 450px;
    z-index: 9;
    position: relative;
    -webkit-transform: translateX(-50%) translateY(27%);
    transform: translateX(-50%) translateY(27%);
}
.ram-seetha-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-mask-image: url(/assets/img/ram-seetha.png);
    mask-image: url(/assets/img/ram-seetha.png);
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    z-index: 1;
    overflow: hidden;
}
#mask-color{
    position: absolute;
    top: 0;
    transition: all 3s;
}
.ram-seetha {
    position: absolute;
    width: 100%;
    height: 100%;

}
.ram-seetha img{
    width: 100%;
    height: 100%;
}
.tit-ramayanam{
    display: none;
    width: 100%;
    max-width: 450px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(50%);
    transform: translateX(-50%) translateY(50%);
    animation: 1s ease-out 0s 1 slideInFromButtom;
    z-index:10;
}
.inner{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.70);
}
@keyframes slideInFromButtom {
    0% {
      transform: translateX(-50%) translateY(150%);
      -webkit-transform: translateX(-50%) translateY(150%);
    }
    100% {
      transform: translateX(-50%) translateY(50%);
      -webkit-transform: translateX(-50%) translateY(50%);
    }
  }
.hanging-left, .hanging-right{
    position: absolute;
    top: 0;
    animation: swing ease-in-out 1s infinite alternate;
    transform-origin: center -50px;
}
.hanging-left{
    left: 3%;
}
.hanging-right{
    right: 3%;
}
.btn{
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(255,47,0);
    background: linear-gradient(0deg, rgba(255,47,0,1) 0%, rgba(232,148,0,1) 100%);
    width: 300px;
    height: 46px;
    margin: 30px auto;
    border-radius: 50em;
    text-decoration: none;
    font-weight: 700;
    color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: all 0.5s;
    border: none;
    cursor: pointer;
}
.btn:hover{
    background: linear-gradient(0deg, rgba(255,47,0,1) 0%, rgb(255, 81, 0) 100%);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 1px 1px;
}
.btn-bottom{
    width: 100%;
    position: absolute;
    bottom: 0;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    border-radius: 0 0 10px 10px;
}
.instruction {
    background-color: #FFC107;
    border-radius: 5px;
    margin-bottom: 0.7em;
    font-size: 0.8em;
    text-align: center;
    padding: 0.5em;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
@keyframes swing {
    0% { transform: rotate(1deg); }
    100% { transform: rotate(-1deg); }
}
.ara {
    display: none;
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50px;
    left: 225px;
    scale: 0.5;
    transition: all 6s;
    background-color: #FFC107;
    border-radius: 50em;
    transform: translateX(-50px) translateY(-50px);
}
footer {
    display: flex;
    position: absolute;
    bottom: 0;
    width: 95%;
    left: 50%;
    transform: translateX(-50%);
    justify-content: space-between;
    align-items: center;
    height: 40px;
    color: black;
}
footer h5{
    cursor: pointer; text-decoration: underline;
}
        .container-form {
            max-width: 500px;
            width: 100%;
            padding: 20px;
            border: 1px solid #ccc;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            height: 480px;
            margin: 50px auto;
            background-color: #f0f8ffd6;
            font-size: 0.8em;
            box-sizing: border-box;
}

          #myForm {
            display: flex;
            flex-direction: column;
            box-sizing: border-box;
        }

        .form-group {
            margin-bottom: 15px;
            display: flex;
            flex-direction: column;
            box-sizing: border-box;
        }

        label {
            margin-bottom: 5px;
        }

        input {
            padding: 8px;
            border: 1px solid #ccc;
            border-radius: 3px;
            box-sizing: border-box;
        }

        /* Style for invalid input */
        input:invalid {
            border: 1px solid red;
        }

        /* Style for validation message */
        .validation-message {
            color: red;
            margin-top: 5px;
            display: none;
        }
         .pop-container,     .pop-container1{
        position: fixed;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 99;
        cursor: pointer;
    }
   .pop-container2{
        position: fixed;
        display: none;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 99;
        cursor: pointer;
    }
  .pop-container img,  .pop-container1 img{
        max-width: 500px;
        width: 100%;
        transform: translateY(-120%);
        transition: all 2s;
    }
    .pop-container2 img{
        max-width: 500px;
        width: 100%;
        transform: translateY(-120%);
        transition: all 2s;
    }
    .double-btn {
    display: flex;
    justify-content: space-evenly;
    max-width: 600px;
    width: 100%;
    gap: 30px;
    margin: auto;
    font-size: 0.8em;
}
.container_mouse {
display: block ;
position: fixed;
bottom: 5px;
padding: 5px;
border-radius: 5px;
left: 50%;
transform: translateX(-50%);
  text-align: center;
  color: black;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 0.6em;
  background-color: white;
  z-index: 99;
}

.container_mouse .mouse-btn {
    margin: 5px auto;
    width: 14px;
    height: 30px;
    border: 3px solid;
    border-radius: 30px;
    display: flex;
}

.container_mouse .mouse-btn .mouse-scroll {
  display: block;
  width: 10px;
  height: 10px;
  background: linear-gradient(170deg, black, black);
  border-radius: 50%;
  margin: auto;
  animation: scrolling 1s linear infinite;
}


@keyframes scrolling {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(10px);
  }
}
.card {
    display: flex;
    padding: 0 14px;
    gap: 20px;
    margin-bottom: 20px;
}
.float-icon {
    display: flex;
    z-index: 5;
    width: 65px;
    height: 65px;
    background: rgb(255,47,0);
    background: linear-gradient(0deg, rgb(0 86 255) 0%, rgb(0 166 232) 100%);
    justify-content: center;
    align-items: center;
    color: antiquewhite;
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: 2em;
    border-radius: 50em;
    border: 2px solid #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}        