﻿


.main-header {
    background: #ffffff;
    position: relative;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    overflow: hidden;
}

    /* subtle top gradient */
    .main-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg,#2563eb,#7c3aed,#06b6d4);
    }

.logo-wrap {
    display: inline-block;
    padding: 10px 0;
}

.main-logo {
    height: 105px;
    width: auto;
    border-radius: 14px;
    background: #fff;
    padding: 6px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: 0.3s;
}

    .main-logo:hover {
        transform: scale(1.03);
    }

.college-title {
    font-size: 34px;
    font-weight: 800;
    color: #111827;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin: 0;
}

.college-address {
    color: #4b5563;
    font-size: 15px;
    font-weight: 500;
}

.header-badge {
    background: #f3f4f6;
    color: #1f2937;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #e5e7eb;
    transition: 0.3s;
}

    .header-badge:hover {
        background: #2563eb;
        color: #fff;
        transform: translateY(-2px);
    }

@media(max-width:768px) {

    .main-header {
        padding-top: 10px;
    }

    .main-logo {
        height: 82px;
    }

    .college-title {
        font-size: 24px;
    }

    .college-address {
        font-size: 13px;
        line-height: 1.6;
    }

    .header-badge {
        font-size: 11px;
        padding: 7px 12px;
    }
}

.footer-link {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: 0.3s;
}

    .footer-link:hover {
        color: #facc15;
        padding-left: 6px;
    }

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
}

    .social-icon:hover {
        transform: translateY(-5px) scale(1.08);
        color: white;
    }

.memorial-section {
    background: linear-gradient(135deg,#ffffff,#f8fafc);
    border-radius: 28px;
    padding: 55px 45px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border: 1px solid #eef2f7;
}

.memorial-glow {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 260px;
    height: 260px;
    background: #d97706;
    opacity: 0.08;
    border-radius: 50%;
    filter: blur(80px);
}

.memorial-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg,#92400e,#d97706);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(217,119,6,0.35);
}

.memorial-title {
    font-size: 32px;
    font-weight: 800;
    color: #1f2937;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.memorial-divider {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg,#92400e,#d97706);
    margin: 18px auto 0;
    border-radius: 50px;
}

.image-frame {
    position: relative;
    display: inline-block;
    padding: 12px;
    border-radius: 24px;
    background: linear-gradient(135deg,#fff,#f3f4f6);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.memorial-image {
    width: 100%;
    max-width: 360px;
    border-radius: 18px;
    object-fit: cover;
    transition: 0.4s ease;
}

    .memorial-image:hover {
        transform: scale(1.02);
    }

.memorial-content {
    padding: 10px;
}

.memorial-text {
    font-size: 17px;
    line-height: 2;
    color: #4b5563;
    text-align: justify;
}

@media(max-width:768px) {

    .memorial-section {
        padding: 35px 20px;
    }

    .memorial-title {
        font-size: 22px;
        line-height: 1.5;
    }

    .memorial-text {
        font-size: 15px;
        line-height: 1.9;
    }

    .memorial-icon {
        width: 65px;
        height: 65px;
        font-size: 24px;
    }
}
.welcome-box {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
}

.welcome-title {
    font-size: 32px;
    font-weight: 800;
    color: #1f2937;
}

    .welcome-title span {
        color: #2563eb;
    }

.welcome-line {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg,#2563eb,#7c3aed);
    margin: 14px auto 0;
    border-radius: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    margin-bottom: 14px;
    background: #f8fafc;
    border-radius: 14px;
    transition: 0.3s;
    font-size: 15px;
    color: #374151;
}

    .info-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0,0,0,0.05);
    }

    .info-item i {
        font-size: 20px;
        margin-top: 3px;
        min-width: 24px;
    }

.about-text {
    background: #fff7ed;
    border-left: 4px solid #f97316;
    padding: 18px 20px;
    border-radius: 12px;
}

    .about-text p {
        margin: 0;
        color: #4b5563;
        line-height: 1.9;
        text-align: justify;
        font-size: 15px;
    }

@media(max-width:768px) {

    .welcome-box {
        padding: 25px 18px;
    }

    .welcome-title {
        font-size: 24px;
        line-height: 1.4;
    }

    .info-item {
        font-size: 14px;
        padding: 12px 14px;
    }

    .about-text p {
        font-size: 14px;
        line-height: 1.8;
    }
}