/* General Styles */
body {
    font-family: 'Lora', serif;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
    color: #333;
    text-align: center;
    scroll-behavior: smooth;
}

/* Header */
header {
    background-color: #2a2e78;
    color: white;
    padding: 15px;
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
}

/* Navigation */
nav {
    background-color: #444;
    padding: 10px;
    position: sticky;
    top: 0;
    z-index: 1000;
}
nav a {
    color: white;
    text-decoration: none;
    padding: 15px;
    display: inline-block;
    transition: transform 0.3s ease;
    font-family: 'Merriweather', serif;
    font-size: 14px;
}
nav a:hover {
    background-color: #777;
    transform: scale(1.1);
}

/* Content Section */
.content {
    padding: 50px 20px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Box Styles */
.box {
    background-color: rgba(255, 255, 255, 0.8);
    width: 70%;
    max-width: 800px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: left;
    opacity: 0;
    transition: all 1s ease-in-out;
}

/* Heading Styles */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: bold;
    color: #2a2e78;
}

h2 {
    font-family: 'Georgia', serif;
    font-size: 30px;
    font-weight: bold;
    color: #2a2e78;
}

/* Paragraph Styles */
p {
    font-family: 'Lora', serif;
    font-size: 20px;
    line-height: 1.8;
    color: #444;
}

/* Image Styles */
.box img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Animations */
.welcome-box {
    transform: translateX(-100%);
}
.about-box {
    transform: translateX(100%);
}
.visible {
    opacity: 1;
    transform: translateX(0);
}.contact-section {
    .contact-section {
    width: 90vw !important;  /* Set width to 90% of the viewport */
    max-width: 1100px !important;  /* Allow it to expand more */
    margin: 30px auto !important;  /* Center it properly */
    display: block !important;  /* Ensure it's a block element */
}
background-color: #FBFFE4;
    padding: 30px;
    text-align: center;
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin: 700px auto;
    width: 80% !important;
    max-width: 900px !important;
    color: white;
    font-family: 'Roboto Slab', serif;
}

.contact-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.contact-details p {
    font-size: 18px;
    margin: 5px 0;
}

.contact-details a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.contact-details a:hover {
    color: #D98324;
    text-decoration: underline;
}

.contact-btn {
    display: inline-block;
    background-color: #FFD700;
    color: #2a2e78;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s ease;
}

.contact-btn:hover {
    background-color: #fff;
    color: #2a2e78;
    transform: scale(1.05);
}

