/* Basic page styling */
body {
    font-family: Arial, sans-serif;
    background-color: #000000; //f9f9f9
    margin: 0;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
         
   /* background-image: url('../images/l.jpg');
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-position: center;
        background-size: 90% 60%;"
        */
}

.intro-container {
    text-align: center;
    max-width: 600px;
    padding: 1rem;
}

/* Zoom-In Animation */
@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.5); /* Start small */
    }
    100% {
        opacity: 1;
        transform: scale(1.5); /* End at normal size */
    }
}

.zoom-in {
    opacity: 0; /* Start hidden */
    animation: zoomIn 1.2s ease forwards; /* Adjust timing as desired */
}





/* Zoom-In Animation 2 */
@keyframes zoomIn2 {
    0% {
        opacity: 0;
        transform: scale(0.5); /* Start small */
    }
    100% {
        opacity: 1;
        transform: scale(1); /* End at normal size */
    }
}

.zoom-in2 {
    opacity: 0; /* Start hidden */
    animation: zoomIn2 1.2s ease forwards; /* Adjust timing as desired */
}

/* Fade and Slide Animation for Other Elements */
@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-slide-in {
    opacity: 0; /* Start hidden */
    animation: fadeSlideIn 1s ease forwards;
}

/* Delays for staggered effect */
.delay-1 {
    animation-delay: 0.5s;
}

.delay-2 {
    animation-delay: 1s;
}

/* Styling the text */
h1 {
    font-size: 2.5rem;
    color: #2b5d9b;
    margin: 0.5rem 0;
}

h2 {
    font-size: 1.8rem;
    color: #4a90e2;
    margin: 0.3rem 0;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-top: 1rem;
}


/* Styling the text */
h1 {
    font-size: 2.5rem;
    color: #ffffff; //2b5d9b
    margin: 0.5rem 0;
}

h2 {
    font-size: 1.8rem;
    color: #ffffff;  //4a90e2
    margin: 0.3rem 0;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;  //555
    margin-top: 1rem;
}