body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #789cdf, #6d85af);
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  
}

header {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

h1 {
    margin: 1.75;
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.image-container {
    margin: 20px auto;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    transition: transform 0.3s;
}

.image-container:hover {
    transform: scale(1.05);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.buttons {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.btn {
    padding: 15px 40px;
    font-size: 1.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-yes {
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    color: white;
}

.btn-yes:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.4);
}

.btn-no {
    background: linear-gradient(45deg, #F44336, #FF5252);
    color: white;
    position: relative;
}

.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: #f00;
    opacity: 0;
    animation: confetti-fall 3s ease-in-out forwards;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

footer {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px;
    font-size: 1rem;
}

.celebration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 100;
}

.celebration-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    color: #1e3c72;
    animation: zoomIn 0.5s;
}

@keyframes zoomIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.celebration h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #4CAF50;
}

.celebration p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.learn-more-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: linear-gradient(45deg, #FF9800, #FFC107);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.learn-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.4);
}

.slogan {
    font-family: 'Orbitron', 'Impact', sans-serif; 
    font-size: 1.4rem;
    color: white;
    text-shadow: 
        0 0 3px #1E90FF,  
        0 0 4px #1E90FF; 
    letter-spacing: 3px;
    font-weight: normal;
    margin: 10px 0; 
    animation: glow-pulse 2s infinite alternate; 
}

@keyframes glow-pulse {
    from {
        text-shadow: 0 0 5px #1E90FF, 0 0 10px #1E90FF;
    }
    to {
        text-shadow: 0 0 8px #1E90FF, 0 0 30px #1E90FF;
    }
}
.testimonals {
    font-family: 'Orbitron', 'Impact', sans-serif; 
    font-size: 1.8rem;
    color: white;
    text-shadow: 
        0 0 3px #91afce,  
        0 0 4px #b093e6; 
    letter-spacing: 3px;
    font-weight: normal;
    margin: 10px 0; 
    animation: glow-pulse 2s infinite alternate; 
}

@keyframes glow-pulse {
    from {
        text-shadow: 0 0 5px #1eff78, 0 0 10px #9eff1e;
    }
    to {
        text-shadow: 0 0 8px #1E90FF, 0 0 30px #1E90FF;
    }
}
/* Page Transition Animation */
.page-transition {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Prevent scroll during transition */
body.transition-lock {
    overflow: hidden;
}
/* In main.css */
header, footer {
    position: relative;
    z-index: 100;
    transition: transform 0.3s ease-out;
}

body.transition-lock header {
    transform: translateY(-100%);
}

body.transition-lock footer {
    transform: translateY(100%);
}