a {
    text-decoration: none;
}

/* .btn-main {
  background: #ea2e39;
  border-radius: 35px;
  width: 260px;
  color: #fff;
  font-weight: bold;
  border: solid 1px #ea2e39;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  transition: all 1s ease;
} */

#call_center_card {
    background-color: rgba(0, 0, 0, 0.1);
}

.center-row {
    display: flex;
    justify-content: center;
    flex-direction: column;
    /* max-width: 300px; */
    flex-wrap: wrap;
    width: 100%;
}

.center-col .even,
.center-col .odd {
    height: 100% !important;
    padding: 2rem 1rem;
    border-radius: 10px;
}

@media (min-width: 576px) {
    .center-row {
        flex-direction: row;
    }
}

.reasonStaff {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 10px;
    overflow: hidden; /* Ensures any overflow is hidden */
    border-radius: 10px; /* Optional: Add rounded corners */
}

.reasonStaff img {
    width: 100%; /* Ensure the image spans the full width of the card */
    height: 100%; /* Ensure the image spans the full height of the card */
    object-fit: cover; /* Maintain aspect ratio and cover the area */
    display: block; /* Remove bottom space caused by inline-block */
    margin: 0; /* Remove any default margin */
}

.call-center-content p {
    color: #000;
}

.odd h5,
.even h5 {
    color: #ea2e39;
}

.center-col .even,
.center-col .odd {
    position: relative;
    background-color: #fff;
    color: #000;
}

.odd .read_more_btn,
.even .read_more_btn {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

.center-col::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 5px;
    margin-top: 0.3rem;
    background: radial-gradient(
        ellipse at center,
        rgb(255, 255, 255) 0%,
        rgba(0, 0, 0, 0) 80%
    );
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}

.center-col:hover {
    transform: translateY(-7px);
}

.center-col:hover::before {
    opacity: 1;
}

.center-col:hover .even,
.center-col:hover .odd {
    cursor: pointer;
    background-color: #bf2433;
}
.center-col:hover .even,
.center-col:hover .odd {
    cursor: pointer;
    background-color: #bf2433;
    color: #fff; /* Change text color to white */
}

.center-col:hover .even h5,
.center-col:hover .odd h5 {
    color: #fff; /* Ensure heading text color is white */
}

.center-col:hover .even p,
.center-col:hover .odd p {
    color: #fff; /* Ensure paragraph text color is white */
}

/* Main Page Event Code  */
.background-image-container {
    background-image: url("/frontassets/image/events_bg_pic.webp");
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 500px;
    /* min-height: 60vh; */
    position: relative;
    background-repeat: no-repeat;
    transition: border 0.3s ease;
    border-radius: 20px;
    transition: border 0.3s ease;
    /* animation: boxShadowAnimation 2s infinite; */
}

#iframeFacebook {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    flex-wrap: wrap;
    margin: 1rem 0;
    gap: 10px;
}
.eventBtn {
    background-color: #ea2e39;
    border-radius: 20px;
    padding: 10px;
    font-family: Inter, sans-serif;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
    color: #fff;
    display: none;
}
#iframeFacebook iframe {
    border-radius: 20px;
}
@media only screen and (max-width: 1200px) {
    .background-image-container {
        /* background-image: url("/frontassets/image/events_For_mobile.webp"); */
        /* background-size: contain; */
        /* min-height: 0; */
        /* height: 700px; */
        /* margin: 2rem 0; */
        display: none;
    }
    .eventBtn {
        display: block;
    }
    #iframeFacebook iframe {
        width: 100%;
    }
}

#eventsId {
    font-size: 5rem;
    color: #bf2433;
    font-weight: bold;
    transition: transform 0.3s ease-in-out;
}

.eventTag:hover .background-image-container {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
        rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
        rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
/* @keyframes boxShadowAnimation {
    0% {
        box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
            rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
            rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    }
    50% {
        box-shadow: rgba(0, 0, 0, 0.35) 0px 64px 65px,
            rgba(0, 0, 0, 0.22) 0px -22px 40px,
            rgba(0, 0, 0, 0.22) 0px 14px 16px, rgba(0, 0, 0, 0.27) 0px 22px 23px,
            rgba(0, 0, 0, 0.19) 0px -5px 10px;
    }
    100% {
        box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
            rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
            rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    }
} */

.social-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.social-button {
    flex: 1 1 calc(50% - 10px);
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.social-button.linkedin {
    background-color: #0077b5;
}

.social-button.youtube {
    background-color: #ff0000;
}

.social-button.indeed {
    background-color: #003a9c;
}

.social-button.tiktok {
    background-color: #000000;
}

.social-button:hover {
    opacity: 0.8;
}

.social-button i {
    margin-right: 8px;
}

/* event Page Code  */
.text-align-center {
    color: #333;
    padding: 10px;
    font-family: Inter, sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 40px;
    text-align: center;
}

/* event code  */

/* .center-col {
    margin-bottom: 30px;
} */

/* .center-col .even,
.center-col .odd {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    width: 100%;
    height: 400px;
} */

/* .center-col .even:hover,
.center-col .odd:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
} */

.reasonStaff {
    position: relative;
    width: 100%;
    height: 100%;
    /* Make the media container fill the card */
    overflow: hidden;
    border-radius: 15px;
    /* Match card's border radius */
}

/* .full-div-image,
iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background */
    color: #fff;
    text-align: center;
    padding: 20px;
    /* Increased padding for more spacing */
    box-sizing: border-box;
    transition: opacity 0.3s ease;
    opacity: 0;
    /* Hidden by default */
}

.reasonStaff:hover .overlay {
    opacity: 1;
    /* Show overlay on hover */
}

.overlay h5 {
    margin: 0;
    font-size: 2em;
    /* Larger font size for title */
}

.overlay p {
    margin: 10px 0 0;
    font-size: 1.2em;
    /* Slightly larger font size for description */
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.close {
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 30px;
    cursor: pointer;
    z-index: 100 !important;
}

/*.swiper {*/
/*    width: 100%;*/
/*    height: 100vh;*/

/*    padding-top: 100px;*/
/*}*/

/*.swiper-slide {*/
/*    width: 600px;*/
/*    height: 100vh;*/
/*}*/

/*.swiper-slide img {*/
/*    display: block;*/
/*    width: 100%;*/
/*    height: 75vh;*/
/*    object-fit: contain;*/
/*    object-position: center;*/
/*}*/

/*.swiper-slide p {*/
/*    color: #fff;*/
/*    font-size: 1.5rem;*/
/*    font-weight: bold;*/
/*    cursor: pointer;*/
/*    text-align: center;*/
/*}*/

/*@media only screen and (max-width: 626px) {*/
/*    .swiper-slide img {*/
/*        width: 50%;*/
/*        height: 60vh;*/
/*        margin: 0 auto;*/
/*    }*/
/*}*/

/* Category of event Code  */
.blog-breadcrumb-link {
    font-weight: bold;
    text-decoration: underline;
}

/* index page code  */
.clickEvent {
    color: #ea2e39;
    font-weight: 700;
    display: inline;
    font-style: italic;
    font-size: 1.5rem;
}
.eventTag {
    display: block;
    position: relative;
    text-decoration: none; /* Remove underline from anchor */
}
.eventoverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    font-size: 24px; /* Adjust font size as needed */
    padding: 20px;
    box-sizing: border-box;
    border-radius: 20px; /* Match the border radius of the container */
}
.EventBtn {
    background-color: #ea2e39;
    border-radius: 10px;
    padding: 15px;
    font-family: Inter, sans-serif;
    font-weight: 700;
    line-height: 16px;
}
.eventTag:hover .eventoverlay {
    opacity: 1;
}
.quoteContainer {
    background-color: #044151;
    padding: 2rem 0;
    color: white;
}

.quotesAfter {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.quotes-div #quoteHead {
    font-size: 4rem;
    padding: 1rem 0;
    font-weight: bold;
    letter-spacing: 0.3rem;
    line-height: 4rem;
    margin-bottom: 0;
}
.quotes-div #quoteText {
    font-size: 1.2rem;
}
.quotes-btn {
    background-color: #eb3842;
    border-radius: 5px;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 1rem;
    color: #fff;
    font-weight: bold;
}
.quotes-btn span {
    margin-left: 0.1rem;
    font-size: 1.5rem;
}
.quoteHoverBtn {
    margin-top: 0.2rem;
    transition: all 0.5s ease-in-out;
}
.quoteHoverBtn:hover {
    transform: scale(1.1);
}
@media only screen and (max-width: 600px) {
    .quotesAfter {
        text-align: center;
    }
}