/* General Styles */
body {
    background-color: #000;
    /* Night sky color */
    font-family: 'Poppins', sans-serif;
    overflow: auto;
    /* Allows for scrolling */
}







@keyframes move-background {
    from {
        -webkit-transform: translate3d(0px, 0px, 0px);
    }

    to {
        -webkit-transform: translate3d(1000px, 0px, 0px);
    }
}

@-webkit-keyframes move-background {
    from {
        -webkit-transform: translate3d(0px, 0px, 0px);
    }

    to {
        -webkit-transform: translate3d(1000px, 0px, 0px);
    }
}

@-moz-keyframes move-background {
    from {
        -webkit-transform: translate3d(0px, 0px, 0px);
    }

    to {
        -webkit-transform: translate3d(1000px, 0px, 0px);
    }
}

@-webkit-keyframes move-background {
    from {
        -webkit-transform: translate3d(0px, 0px, 0px);
    }

    to {
        -webkit-transform: translate3d(1000px, 0px, 0px);
    }
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index:-1;
}

.stars {
    background: black url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/1231630/stars.png) repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    z-index: -1;
}

.twinkling {
    width: 10000px;
    height: 100%;
    background: transparent url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/1231630/twinkling.png") repeat;
    background-size: 1000px 1000px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;

    -moz-animation: move-background 70s linear infinite;
    -ms-animation: move-background 70s linear infinite;
    -o-animation: move-background 70s linear infinite;
    -webkit-animation: move-background 70s linear infinite;
    animation: move-background 70s linear infinite;

}

.clouds {
    width: 10000px;
    height: 100%;
    background: transparent url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/1231630/clouds_repeat.png") repeat;
    background-size: 1000px 1000px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;

    -moz-animation: move-background 10s linear infinite;
    -ms-animation: move-background 10s linear infinite;
    -o-animation: move-background 10s linear infinite;
    -webkit-animation: move-background 10s linear infinite;
    animation: move-background 10s linear infinite;
}

.img-mn {
    height: 70vh;
    width: 70vh;
    position: absolute;
    /* z-index: 3; */
    right: 20px;
    /* z-index: -1; */
    animation: rotateMoon 120s linear infinite;
}

@keyframes rotateMoon {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}



/* Blasmorphic Effect */
.blasmorphic-card {
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.3s ease-in-out;

    /* Ensure uniform size */
    width: 250px;
    /* Fixed width */
    height: 350px;
    /* Fixed height */

    /* Align content centrally */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.blasmorphic-card img {
    width: 100px;
    /* Fixed image size for uniformity */
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.blasmorphic-card h5 {
    margin-bottom: 10px;
    color: #fff;
}

.blasmorphic-card .btn-primary {
    margin-top: auto;
    /* Push button to the bottom */
}

.blasmorphic-card:hover {
    transform: scale(1.05);
}

/* For responsiveness: Adjust card size for smaller screens */
@media (max-width: 768px) {
    .blasmorphic-card {
        width: 100%;
        /* Full width for mobile screens */
        height: auto;
        /* Automatic height */
    }
}

h1 {
    font-family: 'Playfair Display', serif;
    /* Classic serif font */
    font-weight: 700;
    color: #fff;
    /* White for better contrast with night sky */
    text-align: center;
    letter-spacing: 2px;
    /* Spacing between letters for elegance */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    /* Subtle shadow for depth */
    font-size: 2rem;
    /* Larger font size for prominence */
    margin-bottom: 20px;
}


/* Animation for the heading */
.animated-heading {
    font-family: 'Playfair Display', serif;
    /* Classic serif font */
    font-weight: 700;
    color: #fff;
    /* White for better contrast with night sky */
    text-align: center;
    letter-spacing: 2px;
    /* Spacing between letters for elegance */
    /* text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 
                 0 0 30px rgba(255, 255, 255, 0.6),
                 0 0 40px rgba(255, 255, 255, 0.4); */
    font-size: 3rem;
    /* Larger font size for prominence */
    margin-bottom: 20px;
}

h
.btn-primary {
    background-color: #5a67d8;
    border: none;
}

.btn-primary:hover {
    background-color: #434190;
}

/* Night Sky - Moving Stars */
/* .stars { */
/* position: absolute; */
/* top: 0; */
/* left: 0; */
/* width: 100vw; */
/* height: 160vh; */
/* z-index: -1; Send the stars behind the content */
/* } */
/*  */
/* .stars::after { */
/* content: ''; */
/* position: absolute; */
/* top: 0; */
/* left: 0; */
/* width: 200%; */
/* height: 200%; */
/* background: radial-gradient(rgb(3, 3, 3), rgba(255, 255, 255, 0.1) 70%); */
/* border-radius: 50%; */
/* box-shadow:  */
/* 100vw 40vh 5px rgba(255, 255, 255, 0.5), */
/* 50vw 60vh 3px rgba(255, 255, 255, 0.7), */
/* 80vw 90vh 4px rgba(255, 255, 255, 0.3), */
/* 20vw 70vh 2px rgba(255, 255, 255, 0.9), */
/* 150vw 150vh 5px rgba(255, 255, 255, 0.5); */
/* animation: twinkling 10s linear infinite, drift 60s ease-in-out infinite; */
/* } */
/*  */
/* @keyframes twinkling { */
/* 0%, 100% { */
/* opacity: 1; */
/* } */
/* 50% { */
/* opacity: 0.3; */
/* } */
/* } */
/*  */
/* @keyframes drift { */
/* 0% { */
/* transform: translate(-50%, -50%); */
/* } */
/* 100% { */
/* transform: translate(50%, 50%); */
/* } */
/* } */

/* Grid Responsiveness */
@media (max-width: 768px) {
    .blasmorphic-card {
        margin-bottom: 20px;
    }
}