.teble-header .topic
{
    background-color: #f85c70;
    color:#fff;
    padding:10px;
    text-align: center;
}

.table-content .studentImg
{
    border: 3px groove;
    height: 150px;
}



.our-team{
    text-align: center;
    transition: all 0.5s ease 0s;
}
.our-team:hover{
    box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}
.our-team .pic{
    overflow: hidden;
    position: relative;
}
.our-team .pic:before,
.our-team .pic:after{
    content: "";
    width: 200%;
    height: 80%;
    background: rgba(38,37,37,0.8);
    position: absolute;
    top: -100%;
    left: -4%;
    transform: rotate(45deg);
    transition: all 0.5s ease 0s;
}
.our-team .pic:after{
    background: rgba(8,75,77,0.8);
    top: auto;
    left: auto;
    bottom: -100%;
    right: -4%;
}
.our-team:hover .pic:before{ top: 0; }
.our-team:hover .pic:after{ bottom: 0; }
.our-team .pic img{
    width: 100%;
    height: auto;
}
.our-team .social{
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    bottom: 45%;
    left: 0;
    opacity: 0;
    z-index: 2;
    transition: all 0.5s ease 0.3s;
}
.our-team:hover .social{ opacity: 1; }
.our-team .social li{ display: inline-block; }
.our-team .social li a{
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    color: #fff;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease 0s;
}
.our-team .social li a:after{
    content: "";
    width: 100%;
    height: 100%;
    background: #db162f;
    border-radius: 0 20px 20px 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.3s ease 0s;
}
.our-team .social li a:hover:after{ transform: rotate(180deg); }
.our-team .team-content{ padding: 20px; }
.our-team .title{
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #047168;
    text-transform: uppercase;
    margin-bottom: 7px;
}
.our-team .post{
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: #707070;
    text-transform: capitalize;
}
@media only screen and (max-width: 990px){
    .our-team{ margin-bottom: 30px; }
}


   .txt-center {
   text-align: center;
   }
   .border- {
   border: 1px solid #555 !important;
   }
   .padding {
   padding: 15px;
   }
   .mar-bot {
   margin-bottom: 15px;
   }
   .admit-card {
   border: 1px solid #555;
   padding: 15px;
   margin: 20px 0;
   }
   .BoxA h5, .BoxA p {
   margin: 0;
   }
   h5 {
   text-transform: uppercase;
   }
   table img {
   width: 100%;
   height: 180px;
   margin: 0 auto;
   }
   @media(min-width:800px)
   {
   #admit_card
   {
   width: 50%;
   }
   }

   .id-card .td-text
   {
    color:#000;
    font-weight: 900;
   }


   .whatsapp-button{
    position: fixed;
bottom: 90px;
    right: 33px;
    z-index: 99;
    background-color: #25d366;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    width: 55px;
    height: 55px;
    font-size: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
    -moz-box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
    box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
    animation: effect 5s infinite ease-in;
    }
    @keyframes effect {
    20%, 100% {
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
    0%, 10%{
        width: 55px;
        height: 55px;
        font-size: 35px;
    }
    5%{
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
    }
    .float2{
        position: fixed;
    width: 50px;
    height: 50px;
    bottom: 90px;
    left: 10px;
    background-color: #64bdf7;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    }
    .my-float{
        margin-top:16px;
    }


    .edu-video-area {
        background-color: #f8f9fc; /* Light background for contrast */
        padding: 80px 0;
        position: relative;
    }

    .checkout-page-style {
        max-width: 600px;
        margin: auto;
    }

    .login-form-box {
        background: #ffffff; /* White background for form box */
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
        text-align: center;
    }

    .login-form-box h3 {
        font-size: 2rem;
        font-weight: 700;
        color: #333333;
        margin-bottom: 30px;
    }

    .input-box input[type="text"] {
        width: 100%;
        padding: 12px 20px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 1rem;
        color: #555;
        transition: border-color 0.3s;
    }

    .input-box input[type="text"]:focus {
        border-color: #007bff; /* Blue border on focus */
        outline: none;
    }

    .form-group {
        margin-top: 20px;
    }

    .form-select {
        width: 100%;
        padding: 12px 15px;
        font-size: 1rem;
        color: #333;
        background-color: #f8f9fa;
        border: 1px solid #ddd;
        border-radius: 5px;
        transition: border-color 0.3s;
    }

    .form-select:focus {
        border-color: #007bff;
        outline: none;
    }

    .is-invalid {
        border-color: #dc3545;
    }

    .error {
        color: #dc3545;
        font-size: 0.875rem;
    }

    .rn-btn.edu-btn {
        background-color: #007bff;
        color: #fff;
        font-size: 1rem;
        font-weight: 600;
        padding: 15px 0;
        border-radius: 5px;
        border: none;
        transition: background-color 0.3s ease;
        cursor: pointer;
    }

    .rn-btn.edu-btn:hover {
        background-color: #0056b3;
    }

    .side-shape-image img {
        position: absolute;
        top: 10%;
        right: 5%;
        width: 150px;
        opacity: 0.8;
        animation: rotate 15s linear infinite;
    }

    @keyframes rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    @media (max-width: 767px) {
        .login-form-box {
            padding: 30px;
        }

        .edu-video-area {
            padding: 50px 0;
        }

        .side-shape-image img {
            width: 100px;
        }
    }
