body {
    font-family: 'Hind Madurai', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

.nav {
    list-style: none;
    margin: 0;
    padding: 15px 0;
    background-color: #333;
    text-align: center;
}

.nav li {
    display: inline;
}

a {
    color: #222;
}

.nav a {
    color: white;
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
}

.nav a:hover {
    background-color: #555;
    border-radius: 5px;
}

.center-custom {
    text-align: center;
    margin-top: 40px;
}

.content-custom {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.wide-title {
    letter-spacing: 2px;
    font-size: 2em;
    margin-bottom: 20px;
    color: #222;
}

.contact-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    max-width: 450px;
    margin: 20px auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-card p {
    margin: 10px 0;
    font-size: 1.1em;
}

.fa {
    padding: 15px;
    font-size: 30px;
    width: 30px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
    margin: 10px;
}

.fa:hover {
    opacity: 0.8;
}

.div-sec {
    background-color: #f9fafd;
    margin-bottom: 14px;
    border-radius: 25px;
    padding: 16px;
}

.p-sec {
    margin: 0 20px;
    text-align: center;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.about-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin: 20px auto;
    max-width: 700px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-card:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.about-card img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.about-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 1.1em;
    margin-bottom: 10px;
}

