/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Body background */
body {
    /* background: linear-gradient(to right, #ff9a9e, #fad0c4);
     */
     background-image: url(https://th.bing.com/th/id/OIP.ybKRj9NJKi49Fx2wiDaLnwHaEo?w=243&h=180&c=7&r=0&o=5&pid=1.7);

    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

/* Outer container */
.outer-box {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    max-width: 1100px;
    width: 100%;
}

/* Main container */
.main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 20px;
}

/* Image box */
.box-1 {
    position: relative;
    height: 400px;
    width: 400px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

/* Image slider */
.img-1 {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.img-1.active {
    opacity: 1;
}

/* Right-side text & thumbnails */
.box-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 400px;
    text-align: center;
}

/* Glass effect for text */
.para-container {
    height: 120px;
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

/* Text styling */
.para {
    font-size: 16px;
    color: #333;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    position: absolute;
    width: 100%;
}

.para.active {
    opacity: 1;
    position: static;
}

/* Button styles */
.btn-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 10px 0;
}

.btn {
    padding: 12px;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.4);
    color: black;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn:hover {
    background: grey;
    color: #ff6e7f;
}

/* Thumbnail section */
.box-2-inner {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px;
}

.img {
    height: 70px;
    width: 100px;
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.3s, border 0.3s;
    border: 2px solid transparent;
}

.img:hover {
    transform: scale(1.1);
    border: 2px solid #ff6e7f;
}