label.required:after {
    content:" *";
    color: red;
}

.form-pad{
    padding: 50px 100px;
}

.feedback-form{
    border: 1px solid #000;
    border-radius: 10px;
    padding: 50px;
}

.feedback-form > label{
    font-weight: 500;
}

@media (max-width: 480px) {
    .form-pad { 
        padding: 2px;
    }
    .feedback-form{
        padding: 20px;
    }
}

/*-------------------- Visitors --------------------*/
.visitor {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 5vh;     
}

.visitor-item {
    width: 200px;
    height: 70px;
    border-radius: 20px;
    background-color: #FFF;
    align-items: center;
    text-align: center;
}

.visitor-count{
    font-family: poppins;
    font-size: 24px;
    font-weight: 600;
    color: #563A52;
}

.vcount{
    background-color: #fff;
    color: #563A52;
    padding: 5px;
    font-family: poppins;
    font-size: 14px;
}

/*-------------------- Slider --------------------*/
*{
    font-family: poppins;
}
.sjc-slider {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
    height: 600px;
}
.sjc-slides {
    position: relative;
    width: 100%;
    height: 100%;
}
.sjc-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.sjc-slide img {
    width: 100%;
    height: auto;
    display: block;
}
.sjc-slide.sjc-slide-active {
    opacity: 1;
}

@media (max-width: 480px) {
    .sjc-slider { 
        height: 240px;
    }
}
@media (min-width: 1200px) {
    .sjc-slider { 
        height: 800px;
    }
}

/*-------------------- Testimonial --------------------*/

.sjc-testimonial {
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    padding: 10px;
}

.sjc-testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.sjc-testimonial-title {
    font-size: 2rem;
    font-family: poppins;
    font-weight: 600;
    color: #000;
    padding: 1rem;
}

.sjc-testimonial-tools {
    display: flex;
    align-items: center;
}

.sjc-testimonial-tools > i {
    font-size: 2.5rem;
    margin-right: 0.4rem;
    color: #563A52;
}

.sjc-testimonial-tools > i:hover {
    cursor: pointer;
}

.sjc-testimonial-body {
    width: 100%;
    overflow: hidden; /* Ensure overflow is hidden to hide extra items */
    position: relative; /* Needed for absolute positioning of items */
    height: 48vh;
}

.sjc-testimonial-container {
    width: 100%;
}

.sjc-testimonial-content {
    display: flex;
    transition: transform 0.5s ease; /* Smooth transition for sliding effect */
    padding: 20px;
}

.sjc-testimonial-item {
    flex: 0 0 calc(100%); /* Set each item to occupy full width minus the gap */
    max-width: calc(100%); /* Ensure each item is not wider than full width minus the gap */
    box-sizing: border-box; /* Ensure padding doesn't increase item width */
    height: 100%;
    margin-right: 20px; /* Add margin to the right to create space between items */
}

.sjc-testimonial-item:last-child {
    margin-right: 0; /* Remove the margin on the last item to prevent extra space */
}

.sjc-testimonial-item-content {
    padding: 0.5rem;
    font-size: 1.5rem;
    font-family: arial;
    font-style: italic;
    overflow: hidden;
    text-align: justify;
}

.sjc-testimonial-item-thumb > img {
    width: 120px;
    height: 120px;
    border-radius: 50% !important;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.sjc-testimonial-item-title {
    padding: 0.5rem;
    font-family: poppins;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
}

.sjc-testimonial-item-designation {
    font-family: poppins;
    font-size: 1.3rem;
    text-align: center;
}

.sjc-testimonial-item-company {
    font-family: poppins;
    font-size: 1.3rem;
    text-align: center;
}

@media (max-width: 768px) {
    .sjc-testimonial-body {
        height: 52vh;
    }
}

@media (min-width: 769px) and (max-width: 990px) {
    .sjc-testimonial-body {
        height: 18vh;
    }
}

/*-------------------- Message --------------------*/

.sjc-message {
    width: 100%;
    overflow: hidden;
    padding: 10px;
}

.sjc-message-body {
    width: 100%;
    overflow: hidden; /* Ensure overflow is hidden to hide extra items */
    position: relative; /* Needed for absolute positioning of items */
    
}

.sjc-message-container {
    width: 100%;
}

.sjc-message-content {
    display: flex;
    transition: transform 0.5s ease; /* Smooth transition for sliding effect */
    padding: 20px;
}

.sjc-message-item {
    flex: 0 0 calc(100%); /* Set each item to occupy full width minus the gap */
    max-width: calc(100%); /* Ensure each item is not wider than full width minus the gap */
    box-sizing: border-box; /* Ensure padding doesn't increase item width */
    height: 100%;
    margin-right: 20px; /* Add margin to the right to create space between items */
}

.sjc-message-item:last-child {
    margin-right: 0; /* Remove the margin on the last item to prevent extra space */
}

.sjc-message-item-title {
    font-family: poppins;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
}

.sjc-message-item-content {
    padding: 0.5rem;
    font-size: 1.4rem;
    font-family: arial;
    font-style: italic;
    overflow: hidden;
    text-align: justify;
}

.sjc-message-item-thumb > img {
    width: 250px;
    height: 250px;
    border-radius: 10% !important;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.sjc-message-item-name {
    padding: 0.5rem;
    font-family: poppins;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
}

.sjc-message-item-designation {
    font-family: poppins;
    font-size: 1.3rem;
    text-align: center;
}

/*-------------------- Event --------------------*/

.sjc-event{
    width: 100%;
}

.sjc-event-body {
    width: 100%;
    padding:10px;
}

.sjc-event-container{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 20px;
}

.sjc-event-item {
    position: relative; /* Ensure items are positioned relative */
    overflow: hidden; /* Ensures the date doesn't overflow outside */
    margin-top: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.sjc-event-item-thumb {
    position: relative; /* Make sure relative positioning is set */
    width: 100%;
    overflow: hidden; /* Hide overflowing content */
    height: 250px;
}

.sjc-event-item-thumb > img {
    width: 100%;
    min-height: 250px;
    height: auto; /* Allow image to maintain aspect ratio */
    display: block; /* Ensure the image behaves correctly */
}

.sjc-event-item-date {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 20%;
    background-color: #FDEA52;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: poppins;
    color: #563A52;
}

.sjc-event-item-day{
    font-size: 24px;
    font-weight: bold;
}

.sjc-event-item-month{
    font-size: 12px;
    font-weight: 500;
}

.sjc-event-item-title{
    width: 100%;
    padding: 10px;
    font-family: poppins;
    font-size: 13px;
    font-weight: 500;
    text-align: justify;
}

.sjc-event-item-content{
    width: 100%;
    padding: 10px;
    font-family: poppins;
    font-size: 12px;
    text-align: justify;
    color: #868685;
}

.sjc-event-item-view{
    width: 100%;
    padding: 10px;
}

.sjc-event-item-button{
    font-family: poppins;
    font-size: 12px;
    background-color: #563A52;
    color: #fff;
    padding: 5px 10px 5px 10px;
}

.sjc-event-item-button:hover{
    color: #FDEA52;
}

.sjc-event-footer{
    width: 100%;
    padding: 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.sjc-event-view{
    font-family: poppins;
    font-size: 13px;
    background-color: #d70f00;
    border: 1px solid #d70f00;
    border-radius: 5px;
    color: #fff;
    padding: 5px 10px 5px 10px;
}

.sjc-event-view:hover{
    border: 1px solid #d70f00;
    background-color: #fff;
    color: #d70f00;
}

@media screen and (min-width: 600px) {
    .sjc-event-container {
        grid-template-columns: repeat(3, 1fr); /* 2 columns for tablets */
    }
    .sjc-event-item-thumb{
        height: 300px;
    }
    .sjc-event-item-thumb > img {
        min-height: 300px;
    }
}

@media screen and (min-width: 900px) {
    .sjc-event-container {
        grid-template-columns: repeat(4, 1fr); /* 2 columns for desktops */
    }
}