/* mainSt.css */

/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Body styling */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    
    /* Gradient background */
    background: linear-gradient(135deg, #74ebd5, #ACB6E5, #FFB347, #FF7E5F);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* Navigation bar */
.navb {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.navb ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 15px 0;
}

.navb ul li {
    margin: 0 20px;
}

.navb ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.3s, color 0.3s;
}

.navb ul li a:hover {
    background: gray;
    color: #fff;
}

/* Main heading container */
/* Main heading container */
#divHome0001 {
    margin-top: 60px;
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 100%;
    transition: background-color 0.3s, border-radius 0.3s;
}

/* Heading inside main container */
#divHome0001 h1 {
    font-size: 32px;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.0);
    color: #333;
    padding: 20px;
    border-radius: 12px;
 
}

/* Empty div placeholders */
#divHome0002,
#divHome0003 {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s, border-radius 0.3s;
}

/* Hover effect for main heading and placeholder divs */
#divHome0001:hover,
#divHome0002:hover,
#divHome0003:hover {
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0); /* transparent */
}