﻿

.parallax {
    position: relative;
    height: 650px; /* Height of the parallax section */
    background-image: url('http://eduteksolutions.in//slider//61656b5ab7-baf5-40ff-9725-e646ae673cbd.png'); /* Background image */
    background-attachment: fixed; /* Parallax effect */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    text-align: center;
}

.container .image-column, .container .text-column {
    width: 48%; /* Make them each take up about half the container */
}

/* Card content positioned over the parallax */
.mycard {
    margin: 0 auto;
    padding: 40px;
    width: 90%;
    max-width: 900px;
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent background */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    color: white;
    text-align: center;
    position: relative; /* changed from absolute */
    top: 5;
    transform: none; /* remove translate effect */
}


/* Image section inside .image-column */
.image-column img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; 
}


.text-column {
    padding: 20px;
    background-color: #f4f4f4;
    color: #333;
    border-radius: 8px;
}

    .text-column h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .text-column p {
        font-size: 1.2rem;
    }
