﻿.enquiry-btn{
    position:fixed;
    left:-21px;
    top:400px;
    transform:rotate(270deg);
    z-index:5;
    width:100px;
}
/*Contact Us page css*/
body {
    margin: 0;
    background: #f3f4f7;
    font-family: Arial, sans-serif;
}

/* Center layout */
.main-section {
    max-width: 700px;
    margin: 50px auto;
}

/* CARD BASE */
.club-card {
    height: 140px;
    border-radius: 20px;
    margin-bottom: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    color: #1f3c88;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

    /* OVERLAY (key for readability) */
    .club-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,0.75);
    }

/* Content above overlay */
.card-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

/*Developer Page css*/
.d-container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

.d-card {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

    .d-card h2 {
        margin-bottom: 10px;
    }

.team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.member {
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .member:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    }

    .member img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        margin-bottom: 10px;
    }

    .member h3 {
        margin: 5px 0;
    }

    .member p {
        font-size: 0.9rem;
        color: #475569;
    }

    .member a {
        display: inline-block;
        margin-top: 8px;
        color: #2563eb;
        text-decoration: none;
        font-weight: bold;
    }

        .member a:hover {
            text-decoration: underline;
        }

/* ICON */
.icon {
    font-size: 40px;
}

/* TEXT */
.club-card h3 {
    margin: 0;
    font-size: 22px;
}

.club-card p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #444;
}

/* BACKGROUNDS */
.tech {
    background-image: url('../Images/tech.png');
}

.cultural {
    background-image: url('../Images/cultural.png');
}

.sports {
    background-image: url('../Images/sports.png');
}

.literary {
    background-image: url('../Images/literary.png');
}

/* CONTACT BOX */
.contact-box {
    margin-top: 30px;
    padding: 25px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/*Event Gallery Page */

.gallery {
    text-align: center;
    padding: 40px 20px;
}

.title {
    font-size: 40px;
    margin-bottom: 20px;
}

.filters {
    margin-bottom: 30px;
}

    .filters button {
        padding: 10px 20px;
        margin: 5px;
        border: none;
        background: #1e293b;
        color: white;
        cursor: pointer;
        border-radius: 20px;
        transition: 0.3s;
    }

        .filters button:hover,
        .filters .active {
            background: #3b82f6;
        }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

    .card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .card p {
        padding: 10px;
        font-size: 18px;
    }

    .card:hover {
        transform: scale(1.05);
    }

/*Layout page design*/
.custom-navbar {
   
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 20px;
}

.nav-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: #1e3a8a;
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

    .nav-links a {
        text-decoration: none;
        color: #334155;
        font-weight: 500;
        padding: 6px 10px;
        border-radius: 6px;
        transition: all 0.2s ease;
    }

        .nav-links a:hover {
            background: #e0e7ff;
            color: #1e3a8a;
        }

        .nav-links a.active {
            background: #1e3a8a;
            color: white;
        }

/* Hamburger */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* 📱 Mobile Styles */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background: white;
        flex-direction: column;
        width: 200px;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        display: none;
    }

        .nav-links.show {
            display: flex;
        }

        .nav-links li {
            padding: 10px;
        }
}
/*Registration Page Design*/


