/* styles.css */
:root {
    --primary-dark: #1a1a1a;
    --accent-gold: #d4af37;
    --text-light: #f8f9fa;
    --text-muted: #9ca3af;
    --overlay-dark: rgba(0, 0, 0, 0.7);
    --card-bg: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
}
/* pagination */
/* Custom Pagination Styles */
.pagination-container {
    margin-top: 40px;
}

.pagination {
    --bs-pagination-color: #0d6efd;
    --bs-pagination-hover-color: #0a58ca;
    --bs-pagination-focus-color: #0a58ca;
    --bs-pagination-active-bg: #f8f9fa;  /* Changed active background */
    --bs-pagination-active-color: #0d6efd; /* Changed active text color */
    --bs-pagination-active-border-color: #0d6efd;
    --bs-pagination-disabled-color: #6c757d;
}

.page-item {
    margin: 0 4px;
}

.page-link {
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dee2e6;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-item.active .page-link {
    background-color: #0d6efd !important;  /* Active page background */
    color: white !important;               /* Active page text color */
    border-color: #0d6efd !important;
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.2);
}

.page-item.disabled .page-link {
    opacity: 0.6;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .page-link {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}
/* end pagination */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

/* Dark theme overrides for Bootstrap */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    color: var(--text-light);
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-dark {
    color: var(--text-light) !important;
}

.card-title,
.card-text {
    color: var(--text-light);
}

.card-text.text-muted {
    color: var(--text-muted) !important;
}

/* Alert dark theme */
.alert-success {
    background: rgba(25, 135, 84, 0.2);
    color: #75d1a3;
    border-color: rgba(25, 135, 84, 0.3);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.2);
    color: #f5a3ad;
    border-color: rgba(220, 53, 69, 0.3);
}

/* Button outlines for dark theme */
.btn-outline-primary {
    color: #6ea8fe;
    border-color: #6ea8fe;
}

.btn-outline-primary:hover {
    background: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
}

.btn-outline-secondary {
    color: var(--text-muted);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-light);
}

.btn-outline-danger {
    color: #f5a3ad;
    border-color: #f5a3ad;
}

.btn-outline-danger:hover {
    background: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

/* Badge visibility */
.badge.bg-dark {
    background: rgba(255, 255, 255, 0.15) !important;
    color: var(--text-light);
}

/* Close button */
.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Dropdown dark theme */
.dropdown-menu {
    background: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-item {
    color: var(--text-light);
}

.dropdown-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
}

.playfair {
    font-family: 'Playfair Display', serif;
}

/* Navigation */
.navbar-custom {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold) !important;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 15px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-gold) !important;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-carousel {
    height: 100%;
    width: 100%;
    position: relative;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.5s ease-in-out;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.hero-content {
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    position: relative;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Portfolio Hero */
.portfolio-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

/* Buttons */
.btn-primary-custom {
    background: linear-gradient(45deg, var(--accent-gold), #b8941f);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-login {
    background: linear-gradient(45deg, var(--accent-gold), #b8941f);
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    width: 100%;
    border-radius: 8px;
    margin-top: 1rem;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-view-more {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-view-more:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-view-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-view-more:hover::before {
    left: 100%;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-section:hover .carousel-control-prev,
.hero-section:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    background-size: 1.5rem;
    transition: all 0.3s ease;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: rgba(212, 175, 55, 0.8);
    transform: scale(1.1);
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--accent-gold);
    transform: scale(1.2);
}

/* Section Styles */
/* .section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-gold);
} */

.section-subtitle {
    color: var(--accent-gold);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s infinite alternate;
}

.about-content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.highlight-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--accent-gold);
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    border-left: 4px solid var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.highlight-quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.1);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.highlight-quote::after {
    content: '"';
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.1);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

/* Portfolio Section */
.portfolio-section {
    padding: 120px 0;
    background: var(--primary-dark);
    position: relative;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s infinite alternate-reverse;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 4rem;
}

.portfolio-container {
    padding: 80px 0;
    min-height: 600px;
}

#portfolioGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

/* Category Cards */
.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.category-card:hover {
    transform: translateY(-8px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.category-image-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .category-image {
    transform: scale(1.1) rotate(1deg);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 1;
    transition: all 0.4s ease;
}

.category-content {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.category-card:hover .category-content {
    transform: translateY(0);
}

.category-title {
    color: var(--accent-gold);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.category-description {
    color: var(--text-light);
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.category-link {
    display: block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-link:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent-gold);
}

.category-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.category-link:hover::before {
    left: 100%;
}

/* Portfolio Items */
.portfolio-item {
    position: relative;
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .image-overlay {
    opacity: 1;
}

.portfolio-info {
    padding: 2rem;
}

.portfolio-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.portfolio-category {
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.portfolio-description {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Projects Section */
.projects-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.projects-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 10s infinite alternate;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 2rem;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.03), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.project-card:hover::before {
    transform: translateX(100%);
}

.project-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    transition: transform 0.5s ease;
}

.project-card:hover .project-icon {
    transform: scale(1.1) rotate(10deg);
}

.project-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.project-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.5s ease;
}

.project-card:hover .project-title::after {
    width: 100%;
}

.project-description {
    color: var(--text-muted);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.project-card:hover .project-description {
    color: var(--text-light);
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: var(--primary-dark);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 7s infinite alternate-reverse;
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

.contact-info:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-item {
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    transition: all 0.5s ease;
}

.contact-item:hover .contact-icon {
    transform: rotate(15deg) scale(1.1);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.social-link:hover {
    transform: scale(1.1) rotate(10deg);
    color: var(--primary-dark);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.social-link:hover::before {
    left: 100%;
}

/* Filter Section */
.filter-section {
    padding: 60px 0;
    background: var(--primary-dark);
    border-bottom: 1px solid var(--border-color);
}

.search-container {
    position: relative;
    margin-bottom: 3rem;
}

.search-input {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 15px 50px 15px 20px;
    border-radius: 50px;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* Category Filters */
#categoryFilters {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#categoryFilters::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 12px 25px;
    border-radius: 50px;
    white-space: nowrap;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Form Controls */
.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    color: var(--text-dark);
    padding: 12px 15px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid #007bff; /* Blue outline */
    border-radius: 6px;        /* Optional: rounded corners */
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
    color: var(--text-light);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

.form-label {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.input-group {
    transition: all 0.3s ease;
}

.input-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Results Info */
.results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

#resultsCount {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.view-toggle {
    display: flex;
    gap: 10px;
}

.view-btn {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover,
.view-btn.active {
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
}

/* List View */
.portfolio-grid.list-view {
    grid-template-columns: 1fr;
}

.portfolio-item.list-item {
    display: flex;
    align-items: center;
    height: 200px;
}

.portfolio-item.list-item .image-container {
    width: 300px;
    height: 100%;
    flex-shrink: 0;
}

.portfolio-item.list-item .portfolio-info {
    flex: 1;
    padding: 2rem;
}

/* No Results */
#noResults {
    text-align: center;
    padding: 4rem 0;
    color: var(--text-muted);
    display: none;
}

#noResults i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

/* Per Page Selector */
.per-page-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
}

.per-page-selector select {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 5px 10px;
    border-radius: 6px;
    width: 80px;
}

/* Load More Button */
#loadMoreBtn {
    padding: 10px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 2rem auto;
    display: none;
}

#loadMoreBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, var(--card-bg) 25%, rgba(255, 255, 255, 0.1) 50%, var(--card-bg) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.skeleton-item {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.skeleton-image {
    height: 300px;
    background: var(--card-bg);
}

.skeleton-content {
    padding: 2rem;
}

.skeleton-title {
    height: 20px;
    background: var(--card-bg);
    border-radius: 4px;
    margin-bottom: 1rem;
}

.skeleton-category {
    height: 16px;
    background: var(--card-bg);
    border-radius: 4px;
    width: 60%;
    margin-bottom: 1rem;
}

.skeleton-description {
    height: 14px;
    background: var(--card-bg);
    border-radius: 4px;
    margin-bottom: 8px;
}

.skeleton-description:last-child {
    width: 80%;
}

/* Login Page */
.login-container {
    width: 100%;
    max-width: 1200px;
    margin: 80px auto;
    display: flex;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
/* Add this to your styles */
.login-page-wrapper {
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.login-hero {
    flex: 1;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    position: relative;
}

.login-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 26, 26, 0.8) 100%);
}

.login-hero-content {
    position: relative;
    z-index: 2;
}

.login-hero h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.login-hero p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

.login-form-container {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo img {
    max-width: 150px;
    height: auto;
}

.login-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.login-subtitle {
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 2rem;
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-muted);
}

.login-footer a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-footer a:hover {
    color: #f8d56b;
}

/* Modal Styles */
#imageModal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#modalImage {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.close-btn {
    background: var(--accent-gold);
    color: var(--primary-dark);
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #e6c52e;
    transform: translateY(-2px);
}

.close-btn i {
    font-size: 1rem;
}

/* Navigation Arrows */
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: var(--text-light);
    cursor: pointer;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.5);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-nav:hover {
    color: var(--accent-gold);
    background: rgba(0, 0, 0, 0.8);
}

#prevImage {
    left: 30px;
}

#nextImage {
    right: 30px;
}

/* Image Info */
.image-info {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 8px;
    max-width: 80%;
    margin: 0 auto;
}

.image-info h3 {
    color: var(--accent-gold);
    margin-bottom: 5px;
}

/* Footer */
.footer {
    background: #0d0d0d;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.footer p {
    transition: color 0.3s ease;
}

.footer p:hover {
    color: var(--accent-gold);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }

    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .carousel-control-prev,
    .carousel-control-next {
        opacity: 1;
        width: 15%;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 2rem;
        height: 2rem;
        background-size: 1rem;
    }
}
