.notice-board {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid #eee;
}

.notice-header {
    background: #ff497c;
    color: #fff;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notice-header h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.notice-header i {
    font-size: 20px;
}



.notice-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.notice-list li {
    background: #fff;
    padding: 13px 14px;
    margin-bottom: 12px;
    border-radius: 10px;
    border-left: 4px solid #ff497c;
    box-shadow: 0 5px 18px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.notice-list li:hover {
    transform: translateX(5px);
    background: #eef5ff;
}

.notice-date {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #ff497c;
    margin-bottom: 5px;
}

.notice-list li a {
    color: #222;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.5;
}

.notice-list li a:hover {
    color: #ff497c;
}

.notice-scroll {
    height: 330px;
    padding: 15px 18px;
    background: #f8fbff;
    overflow: hidden;
}

.notice-track {
    animation: noticeMove 14s linear infinite;
}

.notice-scroll:hover .notice-track {
    animation-play-state: paused;
}

@keyframes noticeMove {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}


 /* Modern Premium Album / Lightbox Grid Design */
        .album-header-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 20px;
            border-bottom: 1px solid #e2e8f0;
            padding-bottom: 25px;
        }
        .album-title-container {
            max-width: 70%;
        }
        .album-subtitle {
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #fe5722;
            margin-bottom: 8px;
            display: block;
        }
        .album-title {
            font-size: 30px;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }
        .album-desc {
            font-size: 15px;
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 0;
        }
        /* Glassmorphic Back Button */
        .album-back-btn {
            background: #ffffff;
            color: #1e293b;
            font-size: 14px;
            font-weight: 600;
            padding: 10px 24px;
            border-radius: 30px;
            border: 1px solid #cbd5e1;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            text-decoration: none !important;
        }
        .album-back-btn:hover {
            background: #fe5722;
            color: #ffffff;
            border-color: #fe5722;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(254, 87, 34, 0.25);
        }
        .album-back-btn i {
            transition: transform 0.3s ease;
        }
        .album-back-btn:hover i {
            transform: translateX(-4px);
        }

        /* Image Grid item */
        .album-item-wrapper {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
            background: #f8fafc;
            aspect-ratio: 4/3;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        .album-item-link {
            display: block;
            width: 100%;
            height: 100%;
            overflow: hidden;
            position: relative;
        }
        .album-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        /* Magnifying Glass & Zoom Hover Overlay */
        .album-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            backdrop-filter: blur(3px);
            -webkit-backdrop-filter: blur(3px);
        }
        .album-icon-wrap {
            width: 54px;
            height: 54px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fe5722;
            font-size: 18px;
            transform: scale(0.7);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
        .album-item-wrapper:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 35px rgba(0, 0, 0, 0.1);
        }
        .album-item-wrapper:hover .album-img {
            transform: scale(1.08);
        }
        .album-item-wrapper:hover .album-overlay {
            opacity: 1;
        }
        .album-item-wrapper:hover .album-icon-wrap {
            transform: scale(1);
        }

                /* Modern Premium Gallery Cards Design */
        .gallery-header-section {
            text-align: center;
            margin-bottom: 50px;
        }
        .gallery-subtitle {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #fe5722; /* Vibrant accent color */
            display: inline-block;
            margin-bottom: 12px;
            position: relative;
        }
        .gallery-title {
            font-size: 36px;
            font-weight: 800;
            color: #1e293b;
            letter-spacing: -0.5px;
            margin-bottom: 15px;
        }
        .gallery-divider {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #fe5722 0%, #ff8a65 100%);
            margin: 0 auto;
            border-radius: 2px;
        }
        .gallery-grid {
            margin-top: 20px;
        }
        .gallery-card-wrapper {
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        .gallery-card {
            background: #ffffff;
            border-radius: 16px;
            border: none;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        .gallery-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        .gallery-img-container {
            position: relative;
            overflow: hidden;
            height: 260px;
            background-color: #f1f5f9;
        }
        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        .gallery-card:hover .gallery-img {
            transform: scale(1.06);
        }
        /* Photo Count Badge (Glassmorphic) */
        .photo-count-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(15, 23, 42, 0.65);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            color: #ffffff;
            font-size: 12px;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            z-index: 10;
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        /* Card Body */
        .gallery-card-body {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .gallery-card-title {
            font-size: 20px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 12px;
            line-height: 1.4;
            transition: color 0.3s ease;
        }
        .gallery-card:hover .gallery-card-title {
            color: #fe5722;
        }
        .gallery-card-description {
            font-size: 14px;
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        /* Action Button */
        .gallery-btn {
            font-size: 14px;
            font-weight: 600;
            color: #fe5722;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: auto;
            border: none;
            background: none;
            padding: 0;
        }
        .gallery-btn i {
            transition: transform 0.3s ease;
        }
        .gallery-card:hover .gallery-btn {
            color: #e64a19;
        }
        .gallery-card:hover .gallery-btn i {
            transform: translateX(5px);
        }
  
        /* Premium Contact Us Styling */
        .contact-section {
            padding: 80px 0;
            background-color: #f8fafc;
        }
        .contact-info-wrapper {
            margin-bottom: 30px;
        }
        .contact-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            border: 1px solid #f1f5f9;
            transition: all 0.3s ease;
            height: 100%;
        }
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
            border-color: #fe5722;
        }
        .contact-icon-box {
            width: 50px;
            height: 50px;
            background: rgba(254, 87, 34, 0.1);
            color: #fe5722;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 20px;
        }
        .contact-card h5 {
            font-size: 18px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 10px;
        }
        .contact-card p, .contact-card a {
            font-size: 14px;
            color: #64748b;
            line-height: 1.6;
            margin: 0;
            text-decoration: none !important;
        }
        .contact-card a {
            transition: color 0.3s ease;
        }
        .contact-card a:hover {
            color: #fe5722;
        }
        .contact-form-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
            border: 1px solid #f1f5f9;
        }
        .contact-form-title {
            font-size: 24px;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 25px;
        }
        .form-group-custom {
            margin-bottom: 20px;
        }
        .form-group-custom label {
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #475569;
            margin-bottom: 8px;
            display: block;
        }
        .form-control-custom {
            width: 100%;
            padding: 12px 18px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            font-size: 14px;
            color: #1e293b;
            transition: all 0.3s ease;
        }
        .form-control-custom:focus {
            background: #ffffff;
            border-color: #fe5722;
            outline: none;
            box-shadow: 0 0 0 4px rgba(254, 87, 34, 0.15);
        }
        .contact-btn-submit {
            background: #fe5722;
            color: #ffffff;
            font-size: 15px;
            font-weight: 600;
            padding: 14px 30px;
            border: none;
            border-radius: 10px;
            width: 100%;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(254, 87, 34, 0.2);
            cursor: pointer;
        }
        .contact-btn-submit:hover {
            background: #e64a19;
            box-shadow: 0 8px 25px rgba(254, 87, 34, 0.3);
            transform: translateY(-2px);
        }

        /* Footer links transitions */
        .footer-list li a {
            transition: all 0.3s ease;
            text-decoration: none !important;
        }
        .footer-list li a:hover {
            color: #fe5722 !important;
            padding-left: 6px;
        }
        .footer-list li a i {
            font-size: 10px;
            transition: color 0.3s ease;
        }
        .footer-list li a:hover i {
            color: #fe5722 !important;
        }


