.herotext {
    font-family: 'OrpheusPro-Bold', cursive;
}

.andcls {
    font-size: 77px;
    display: inline-block;
    transform: translateY(-45px);
}

@media (max-width: 768px) {
	.andcls {
		font-size: 30px;
		display: inline-block;
		transform: translateY(-25px);
	}
}

#animatedText {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.4;
    display: inline-block;
    color: #E5DFF5;
    font-family: "Orpheus Pro", Sans-serif;
}

#animatedText span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: text-shadow 0.3s;
}

.animate span {
    animation: wave 0.6s ease forwards;
    text-shadow: -1px -1px 1px rgba(255,255,255,.1), 1px 1px 1px rgba(0,0,0,.5);
}

@keyframes wave {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    #animatedText {
        font-size: 1.723rem;
    }
}

.flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: auto;
    flex-wrap: wrap;
    padding: 1rem;
}

.circle {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: #3aafa9;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    text-align: center;
    color:#fcfefe;
}

.circle h2 {
    font-size: 40px;
    margin: 0.5rem 0 0 0;
}

.circle p {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
}

.circle a {
    margin-top: 0.5rem;
    color: #a3c6ff;
    text-decoration: underline;
}

.circle:hover {
    transform: scale(1.08);
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 
    0 0 20px rgba(255, 255, 255, 1),   /* strong white glow */
    0 0 40px rgba(255, 255, 255, 0.8), /* softer white spread */
    0 0 60px rgba(58, 175, 169, 0.9),  /* teal inner glow */
    0 0 100px rgba(58, 175, 169, 0.6); /* teal outer glow */
}

@media (max-width: 1200px) {
    .flex-container {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .circle {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 480px) {
    .circle {
        width: 300px;
        height: 300px;
    }
    .circle h2 {
        font-size: 1.5rem;
    }
}

img.circle-image {
    height: 65px !important;
}

.video-parallel-cards-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
 
.video-parallel-cards-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    width: 500px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 15px; /* small rounding */
    transform: skew(-15deg); /* slant the card */
}
 
.video-parallel-cards-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
 
.video-parallel-cards-overlay {
    position: absolute;
    inset: 0;
    background: rgba(58, 175, 169, 0.65); /* teal overlay */
    display: flex;
    align-items: center;
    padding: 30px;
    z-index: 1;
}
 
.video-parallel-cards-content {
    z-index: 2;
    color: #fff;
    transform: skew(8deg) !important;
}
 
.video-parallel-cards-content h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 600;
}
 
.video-parallel-cards-content h2 {
    margin: 0 0 8px 0;
    font-size: 22px;
    font-weight: 700;
    text-decoration: underline;
}
 
.video-parallel-cards-content p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}
 
@media (max-width: 480px) {
    .video-parallel-cards-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .video-parallel-cards-card:nth-child(3) {
        margin-top: 0;
        justify-content: center;
    }

    .video-parallel-cards-content h2 {
        font-size: 20px;
    }
}
 
.video-parallel-cards-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}
 
.video-parallel-cards-modal.active {
    visibility: visible;
    opacity: 1;
}
 
.video-parallel-cards-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}
 
.video-parallel-cards-modal-content video,
.video-parallel-cards-modal-content iframe {
    width: 100%;
    height: 450px;
    display: block;
}
 
.video-parallel-cards-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    z-index: 10;
}
 
@media (max-width: 768px) {
    .video-parallel-cards-modal-content video,
    .video-parallel-cards-modal-content iframe {
        height: 300px;
    }
}