
#cy {
width: 100%;
height: 50vh; /* Full viewport height */
border: 1px solid #ccc;
margin-top: 20px;
cursor: pointer;

}

section:nth-child(even) {
background-color: #fff4e6;
color: #3c2f2f;
}

section:nth-child(odd) {
background-color: #3c2f2f;
color: #fff4e6;
}

body {
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(to right, #ece9e6, #ffffff);
color: #333;
line-height: 1.6;
}

nav {
background: #333;
padding: 1rem;
position: fixed;
width: 100%;
top: 0;
left: 0;
z-index: 1000;
}

nav ul {
list-style: none;
display: flex;
justify-content: center;
margin: 0;
padding: 0;
}

nav ul li {
margin: 0 1rem;
}

nav ul li a {
color: #fff;
text-decoration: none;
font-weight: bold;
transition: color 0.3s ease;
}

nav ul li a:hover {
color: #ffd700;
}

section {
min-height: 100vh;
padding: 50px;
opacity: 0;
transform: translateY(10px);
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.in-view {
opacity: 1;
transform: translateY(0);
}
section h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 20px;
}
section p {
max-width: 800px;
margin: 0 auto;
font-size: 1.1rem;
text-align: justify;
}

/* Image Styling */
section img {
border-radius: 10%;
}

/* Footer Styles */
footer {
text-align: center;
padding: 1rem;
background: #fff4e6;
color: #333;
}


.more-text {
    display: none;
}

.read-more-btn {
    background-color: #3c2f2f;
    color: #fff4e6;
    border: none;
    padding: 5px 10px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
    display: inline-block;
}

.read-more-btn:hover {
    background-color: #5a4747;
}

.profile-pic {
    width: 400px;
    height: 400px;
    float: left;
    margin-right: 20px;
    border-radius: 50%;
}

.contact-form {
        background:#fff4e6;
        padding: 1%;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        width: 100%;
        height: 50vh;
        text-align: center;
        }
    .contact-form input, .contact-form textarea {
        width: 90%;
        padding: 10px;
        margin: 5px 0;
        border: 1px solid #ccc;
        border-radius: 5px;
    }
    .contact-form button {
        width: 50%;
        padding: 10px;
        margin: 5px 0;
        background: #007bff;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }
    .contact-form button:hover {
        background: #0056b3;
    }
    .error {
        color: red;
        font-size: 12px;
    }
.contact-info{
        background:#fff4e6;
        padding: 1%;
        border-radius: 8px;
        width: 100%;
        height: 5vh;
}