/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #fff5e1;
    margin: 0;
    padding: 0;
}

/* Navigation */
header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
}

.logo img {
    max-width: 150px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #b23a48;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff6f61;
}

/* Hero Section */
.hero {
    background: url('https://rishihood.edu.in/wp-content/uploads/2024/05/Take-a-virtual-tour.gif') no-repeat center center/cover;
    height: 90vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}
.hero-content h1 {
    font-size: 4rem;
    font-weight: 600;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-in-out;
}
.hero-content p {
    font-size: 1.5rem;
    margin: 20px 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-in-out;
}
.btn {
    padding: 15px 30px;
    background-color: #ff6f61;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.btn:hover {
    background: #e63946;
}

/* Sections */
.section {
    padding: 60px;
    text-align: center;
}
.section:nth-child(even) {
    background-color: #ffffff;
}
.section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #b23a48;
}
.section p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #666;
}

/* Cards */
.cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
.card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 300px;
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-10px);
}
.card h3 {
    color: #b23a48;
    font-weight: 600;
}
.card p {
    font-size: 1rem;
    color: #555;
}

/* Footer */
footer {
    background-color: #b23a48;
    padding: 20px;
    color: #fff;
    text-align: center;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.socials a {
    color: #fff;
    margin: 0 10px;
    transition: color 0.3s ease;
}
.socials a:hover {
    color: #ff6f61;
}
