body {
    height: 100vh;
    margin: 0;
    background: linear-gradient(to bottom right, #40bfaa, white, #40bfaa);
}
.img-round {
    border-radius: 50%;
    width: 100px;
    height: 100px; 
    object-fit: cover; 
}
.img {
    border-radius: 50%;
    width: 100px;
    height: 100px; 
    object-fit: cover; 
}
.icon{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #e21826;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    color:white;
}
.btn-danger{
    background-color: #e21826;
}
@media (max-width: 576px) {
    .icon {
        font-size: 1.4rem; 
        height: 40px;
        width: 40px;
        border-radius: 50%;
    }
    .writing{
        font-size: 10px;
    }
    .img-round{
        width: 60px;
        height: 60px; 
    }
   
}
  
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

body {
    height: 100vh;
    width: 100%;
    display: flex;
    background-image: hsla(170, 50%, 50%, 0.7);
    color: #000;
}

body::before,
body::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

body::before {
    clip-path: circle(30% at left 20%);
    opacity: 0.4;
    background-color: #40bfaa;
}

body::after {
    opacity: 0.4;
    clip-path: circle(25% at right 80%);
    background-color: #40bfaa;
}

header {
    width: 90%;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    z-index: 12;
    border-radius: 25px;
    margin: auto;
    position: relative;
    padding-top: 20px;
}

header .navbar {
    margin: auto;
    width: 100%;
    padding: 20px 50px 10px 50px;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .text-content {
    width: 100%;
    max-width: 600px;
    margin: 30px auto 0;
    text-align: center;
}

.text-content h2 {
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 20px;
}

.text-content p {
    font-size: 15px;
    margin: 0 auto;
    white-space: pre-wrap;
    word-wrap: break-word;
    opacity: 0;
    animation: fadeIn 2s forwards;
    padding: 0 20px;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.social-media {
    margin-top: 15px;
    text-align: center;
    animation: bounce 2s ease infinite;
}

.social-media a {
    background-color: #e31827;
    color: #fff;
    font-size: 28px;
    margin: 0 10px;
    text-decoration: none;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

header .play-button {
    position: absolute;
    right: 50px;
    bottom: 40px;
    cursor: pointer;
}

.play-button .play {
    font-size: 18px;
    font-weight: 500;
}

.play-button .play::before {
    content: '';
    position: absolute;
    height: 3px;
    width: 50px;
    top: 50%;
    transform: translateY(-50%);
    left: -58px;
    background: #000;
}

.play-button i {
    height: 40px;
    width: 40px;
    border: 2px solid #000;
    line-height: 38px;
    text-align: center;
    margin-left: 10px;
    border-radius: 6px;
    cursor: pointer;
}

.video-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.video-overlay iframe {
    width: 80%;
    max-width: 800px;
    height: 450px;
    border-radius: 10px;
}

.video-overlay.active {
    display: flex;
}

.language-selection {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
}

.language-selection h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 24px;
}

.language-selection .flags {
    display: flex;
    gap: 20px;
}

.language-selection .flags img {
    width: 50px;
    cursor: pointer;
    transition: transform 0.3s;
}

.language-selection .flags img:hover {
    transform: scale(1.1);
}

.modal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}
.modal-content {
background-color: white;
padding: 20px;
border-radius: 5px;
text-align: center;
width: 500px;
max-width: 90%; 
}
.flags img {
    width: 50px;
    cursor: pointer;
    margin: 5px;
}
@media (max-width: 576px) {
.lang-btn {
font-size: 12px; 
}

}
.card-img-top {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}
.card-img-top:hover {
    opacity: 0.7;
}
.full-screen-image {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.full-screen-image img {
    max-width: 90%;
    max-height: 90%;
}