/* Parallax Header Section */
.parallax {
    background-image: url('../files/parallax/2.jpg');
    height: 60vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.parallax::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.parallax-text {
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
}

.parallax-text h1 {
    font-size: 48px;
    margin-bottom: 10px;
    color: white;
    font-family: 'Roboto', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.parallax-text p {
    font-size: 24px;
    margin-top: 0;
    color: white;
    font-family: 'Roboto', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Main Content Container */
.thanks-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

/* Introduction Text Styling */
.intro-text {
    text-align: center;
    margin-bottom: 4rem;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: #4A90E2;
    margin-bottom: 1rem;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    max-width: 800px;
    margin: 0 auto 1rem auto;
}

.intro-text ul {
    list-style-type: none;
    padding: 0;
    margin-top: 1.5rem;
}

.intro-text li {
    background: #f0f8ff;
    margin: 0.5rem auto;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    max-width: 600px;
    text-align: left;
}

/* Special Thanks Section */
.special-thanks-section {
    text-align: center;
}

.special-thanks-section h2 {
    font-size: 2.5rem;
    color: #50C878;
    margin-bottom: 2rem;
}

/* Grid for Thank You Cards */
.thanks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.thanks-card {
    position: relative; /* Add this line */
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thanks-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.thanks-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.thanks-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thanks-name {
    font-size: 1.5rem;
    color: #9B59B6;
    margin: 0 0 0.25rem 0;
}

.thanks-title {
    font-size: 1.1rem;
    color: #777;
    margin: 0 0 1.5rem 0;
    font-style: italic;
}

.thanks-contact {
    text-align: left;
    color: #333;
}

.thanks-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.thanks-contact i {
    color: #FF6B6B;
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
    margin-right: 10px;
}

.thanks-contact a {
    color: #4A90E2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.thanks-contact a:hover {
    color: #3A7BC8;
}