body {
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    color: #000000;
    padding: 1rem 0;
    min-height: 100vh;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #e8f2ff 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #000000;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1c2954;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #000000;
}

.hero-breadcrumb i {
    color: #1c2954;
}

.gallery-card {
    margin-bottom: 1rem;
    cursor: pointer;
}

.card-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    /*     height: 280px; */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-img-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.card-img-wrapper img {
    width: 100%;
        height: 280px;
    object-position: center;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-img-wrapper:hover img {
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background-color: rgba(28, 41, 84, 0.95);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.card-title-text {
    font-size: 1.05rem;
    font-weight: 500;
    margin-top: 0.5rem;
    margin-bottom: 0;
    color: #000000;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.gallery-card:hover .card-title-text {
    color: #1c2954;
    /* Green tint on hover */
}

/* Filter Buttons - Neuomorphic Style (About Page Style) */
.filter-wrapper {
    margin-bottom: 2.5rem;
}

/* Mobile Dropdown - Hidden on Desktop */
.filter-dropdown-mobile {
    display: none;
    position: relative;
}

.filter-dropdown-btn {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 12px;
    box-shadow: inset 4px 4px 10px #bcbcbc, inset -4px -4px 10px #ffffff;
    color: #4d4d4d;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 20px;
    border: 2px solid rgb(206, 206, 206);
    transition: all 0.2s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-dropdown-btn i {
    transition: transform 0.3s ease;
}

.filter-dropdown-btn.active i {
    transform: rotate(180deg);
}

.filter-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 2px solid #e0e0e0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    z-index: 100;
}

.filter-dropdown-menu.show {
    max-height: 400px;
    opacity: 1;
    overflow-y: auto;
}

.filter-dropdown-item {
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.2s ease;
    color: #4d4d4d;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

.filter-dropdown-item:last-child {
    border-bottom: none;
}

.filter-dropdown-item:hover {
    background: #f5f5f5;
}

.filter-dropdown-item.active {
    background: #1c2954;
    color: #ffffff;
}

/* Desktop Filter Buttons */
.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

@media (max-width: 768px) {
    .filter-dropdown-mobile {
        display: block;
    }
    
    .filter-container {
        display: none;
    }
}

.filter-btn {
    background-color: #e0e0e0;
    border-radius: 50px;
    box-shadow: inset 4px 4px 10px #bcbcbc, inset -4px -4px 10px #ffffff;
    color: #4d4d4d;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 28px;
    border: 2px solid rgb(206, 206, 206);
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
}

.filter-btn:hover {
    box-shadow: inset 2px 2px 5px #bcbcbc, inset -2px -2px 5px #ffffff, 2px 2px 5px #bcbcbc, -2px -2px 5px #ffffff;
    color: #4d4d4d;
    transform: translateY(-2px);
}

.filter-btn:active {
    box-shadow: inset 4px 4px 10px #bcbcbc, inset -4px -4px 10px #ffffff;
    transform: translateY(0);
}

.filter-btn.active {
    background-color: #1c2954;
    color: #ffffff;
    border-color: #003d80;
    box-shadow: inset 2px 2px 5px rgba(0, 30, 60, 0.3), inset -2px -2px 5px rgba(255, 255, 255, 0.2), 0 8px 24px rgba(28, 41, 84, 0.25);
}

#gallery-container {
    transition: opacity 0.25s ease-in-out;
}

.cta-premium-wrap {
    padding: 20px 0 40px;
}

.container.py-4 {
    padding-bottom: 0 !important;
}
