/* Using your :root variables */
.uptitle {
    color: rgb(75, 178, 209);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 3rem;
    display: block;
    text-align: center;
}

.contact-section {
    position: relative;
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--cream);
    overflow: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Info Side */
.college-name {
    font-size: 2.5rem;
    margin: 15px 0;
}

.college-name span {
    color: var(--aqua-deep);
}

.info-cards {
    margin-top: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.info-item .icon {
    font-size: 1.5rem;
    background: var(--sky);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}


/* Styling the Map Container */
.map-container {
    padding: 15px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.map-frame {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    /* Clips the iframe corners to match your theme */
}

/* Button overlay to match your screenshot */
.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.map-btn {
    background: var(--white);
    color: var(--text-dark);
    padding: 10px 18px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.map-btn:hover {
    background: var(--aqua);
    color: var(--white);
}

/* Styling the Text side */
.location-tag {
    font-weight: 700;
    color: var(--text-soft);
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.info-item h4 {
    color: var(--aqua-deep);
    margin-bottom: 4px;
}

/* Animations */
[data-reveal="fade-right"] {
    opacity: 0;
    transform: translateX(-50px);
    transition: 1s;
}

[data-reveal="fade-left"] {
    opacity: 0;
    transform: translateX(50px);
    transition: 1s;
}

.revealed {
    opacity: 1;
    transform: translateX(0);
}