@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;600&display=swap');

:root {
    --primary-color: #007bff; /* Bright Blue */
    --primary-dark: #0056b3;
    --secondary-color: #2d3e50; /* Dark Blue/Gray */
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #e9ecef;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    background: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 100px; /* Standard height */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 80px; /* Standard size */
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    color: var(--secondary-color);
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.header-btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.header-btn-register {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.header-btn-register:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.header-btn-login {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.header-btn-login:hover {
    background: var(--secondary-color);
    color: white;
}

/* Page Header */
.page-header {
    background-color: var(--secondary-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 120px 0;
    text-align: center;
    color: white;
    overflow: hidden;
    margin-top: -1px; /* Remove any gap with header */
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.page-header h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 4px 6px rgba(0,0,0,0.3);
    letter-spacing: -1px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    text-align: center;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--secondary-color);
}

/* Info Bar (Below Slider) */
.info-bar-section {
    background: white;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.info-bar-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Corrected for 3 items */
    gap: 30px;
}

.info-bar-item {
    display: flex;
    flex-direction: column; /* Vertical layout */
    align-items: center; /* Center horizontally */
    text-align: center; /* Center text */
    padding: 20px;
    border-right: 1px solid #eee; /* Vertical divider */
}

.info-bar-item:last-child {
    border-right: none;
}

.info-icon {
    font-size: 3rem; /* Large icon */
    color: #8c7b75; /* Brownish color */
    margin-bottom: 15px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #8c7b75; /* Outlined circle */
    border-radius: 50%;
    transition: all 0.3s ease;
}

.info-bar-item:hover .info-icon {
    background: #8c7b75;
    color: white;
}

.info-text h4 {
    color: #333;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 700;
}

.info-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
}

.info-value {
    display: block;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Featured Section (renamed to features-section to match HTML) */
.features-section {
    padding: 80px 0;
    background: #f4f4f4; /* Light gray background */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 items in HTML */
    gap: 30px;
}

.feature-item {
    background: transparent; /* Remove white background */
    padding: 0; /* Remove padding */
    text-align: center;
    transition: transform 0.3s;
    border-radius: 0; /* Remove border radius */
    box-shadow: none; /* Remove shadow */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 50px; /* Standard size */
    height: 50px;
    background: transparent; /* Remove circle background */
    color: #8c7b75; /* Brownish color */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem; /* Icon size */
    transition: color 0.3s;
}

.feature-item:hover .feature-icon {
    color: var(--primary-color); /* Change color on hover */
}

.feature-item h3 {
    margin-bottom: 15px;
    color: #333; /* Darker text */
    font-size: 1.3rem;
}

.feature-item p {
    font-size: 0.95rem;
    color: #555; /* Darker text */
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-item .btn {
    background: var(--primary-color);
    color: white;
    margin-top: auto; /* Push to bottom if needed, but we removed it for centering */
    border: none;
    padding: 10px 25px;
    font-size: 0.9rem;
}

.feature-item .btn:hover {
    background: var(--primary-dark);
}

/* Course Card */
.courses-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.course-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* Featured Card (Large Card) - Full Image Design */
.featured-card {
    background: #333;
    border-radius: 15px;
    padding: 0;
    color: white;
    display: block;
    min-height: 350px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: none;
}

.featured-card .featured-title {
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 0.95rem;
    font-weight: 700;
    z-index: 10;
    color: #333;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-card .highlight {
    color: var(--primary-color);
}

/* Slider Styles */
.featured-slider {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.featured-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.featured-slide.active {
    display: block;
    opacity: 1;
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    margin: 0;
    border-radius: 0;
}

/* Gradient Overlay */
.featured-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
    z-index: 2;
}

.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.featured-content h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.3;
    font-weight: 700;
}

.featured-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.btn-featured-link {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    text-transform: uppercase;
    display: inline-block;
    width: auto;
}

.btn-featured-link:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .course-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-card {
        grid-column: 1 / -1;
    }
}

@media (min-width: 992px) {
    .course-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: auto;
        grid-auto-flow: dense;
    }

    /* Featured Card Layout: Span 2 cols, 2 rows */
    .featured-card {
        grid-column: span 2;
        grid-row: span 2;
        height: 100%;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
}

.course-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.course-image {
    width: 100%;
    aspect-ratio: 1 / 1; /* Square image 1024x1024 */
    object-fit: cover;
}

.course-content {
    padding: 12px; /* Reduced from 20px */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-category {
    font-size: 10px; /* Reduced */
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.course-title {
    font-size: 0.95rem; /* Reduced from 1.1rem */
    margin-bottom: 10px;
    line-height: 1.3;
    flex-grow: 1;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.price-container {
    display: flex;
    flex-direction: column;
}

.old-price {
    font-size: 11px; /* Reduced */
    text-decoration: line-through;
    color: #999;
}

.current-price {
    font-size: 15px; /* Reduced */
    font-weight: 700;
    color: var(--primary-color);
}

/* Promo Section */
.promo-section {
    padding: 80px 0;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.promo-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 280px; /* Increased height */
    display: flex;
    padding: 30px; /* Reduced padding */
    color: white;
}

.promo-card .promo-content {
    position: relative;
    z-index: 2;
    max-width: 70%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.promo-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.promo-card p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.95;
    font-weight: 500;
}

.promo-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 25px;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    min-width: 200px;
    text-align: center;
}

.promo-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Specific colors for buttons if needed based on card bg, 
   but white usually works well on colored cards. 
   Let's make text color match the card theme for extra pop.
*/
.promo-card.green .promo-btn {
    color: #27ae60;
}

.promo-card.blue .promo-btn {
    color: #2980b9;
}

.promo-icon {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 10rem; /* Much larger */
    opacity: 0.25;
    transform: rotate(-15deg);
    transition: all 0.5s ease;
    z-index: 1;
}

.promo-card:hover .promo-icon {
    transform: rotate(0deg) scale(1.1);
    opacity: 0.35;
    right: -10px;
    bottom: -10px;
}

.promo-card.instructor {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
}

.promo-card.student {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
}

.promo-card.green {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

.promo-card.blue {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #aaa;
    padding: 80px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-logo {
    height: 50px; /* Increased size for visibility */
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Make logo white */
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid #333;
    border-radius: 5px 0 0 5px;
    outline: none;
    background: rgba(255,255,255,0.1);
    color: white;
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--primary-color);
    border: none;
    color: white;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

/* Footer Bottom White Section */
.footer-bottom-white {
    background: white;
    padding: 30px 0;
    color: #333;
    margin-top: 40px;
    border-top: 1px solid #eee;
}

.footer-bottom-white .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-contact-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-btn-white {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    color: #555;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    background: white;
}

.contact-btn-white:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-btn-white i {
    font-size: 1.1rem;
    color: #777;
}

.contact-btn-white:hover i {
    color: var(--primary-color);
}

.footer-legal-bar {
    display: flex;
    align-items: center;
    gap: 20px;
}

.legal-text {
    display: none;
}

.payment-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #999;
}

.paytr-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: #555;
    border: 1px solid #ddd;
    padding: 2px 8px;
    border-radius: 4px;
}

/* 
   -----------------------------------------
   HERO SECTION STYLES (MATCHING JS)
   -----------------------------------------
*/
.hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #000;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    max-width: 600px;
    z-index: 3;
    text-align: left;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 4px 6px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: none; /* Hidden as requested */
    justify-content: space-between;
    padding: 0 30px;
    z-index: 4;
    pointer-events: none;
}

.hero-nav button {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nav button:hover {
    background: var(--primary-color);
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 4;
}

.hero-dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-dot.active {
    background: white;
    transform: scale(1.2);
}

/* 
   -----------------------------------------
   ADMIN PANEL STYLES (RESTORED)
   -----------------------------------------
*/
.admin-body {
    background-color: #f4f6f9;
    font-family: 'Open Sans', sans-serif;
}

.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: var(--secondary-color);
    color: #c2c7d0;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    transition: all 0.3s;
}

.admin-logo {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.admin-logo a {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.admin-logo span {
    color: var(--primary-color);
}

.sidebar-menu {
    padding: 10px 0;
    flex: 1;
}

.sidebar-menu li {
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sidebar-menu li:hover, .sidebar-menu li.active {
    background: var(--primary-color);
    color: white;
}

.sidebar-menu li i {
    width: 25px;
    margin-right: 10px;
    text-align: center;
}

.sidebar-footer {
    padding: 20px;
    font-size: 0.8rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

.admin-main {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
}

.admin-header {
    background: white;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.admin-title h2 {
    font-size: 1.5rem;
    color: #333;
}

.admin-title p {
    color: #666;
    font-size: 0.9rem;
}

.admin-btn-outline {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #555;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.admin-btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.admin-user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.admin-section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.admin-section.active {
    display: block;
}

.admin-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    padding: 25px;
    margin-bottom: 25px;
}

.admin-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.admin-card-header h3 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,123,255,0.2);
}

.btn-sm:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0,123,255,0.3);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Admin Panel Input Enhancements */
.admin-card .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.admin-card .form-control,
.admin-card .form-textarea,
.admin-card input[type="text"],
.admin-card input[type="email"],
.admin-card input[type="password"],
.admin-card input[type="number"],
.admin-card input[type="url"],
.admin-card input[type="date"],
.admin-card select,
.admin-card textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #f9fbfd;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #2d3748;
    transition: all 0.25s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.admin-card .form-control:focus,
.admin-card .form-textarea:focus,
.admin-card input:focus,
.admin-card select:focus,
.admin-card textarea:focus {
    background-color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.15);
    outline: none;
}

.admin-card .form-control:hover,
.admin-card .form-textarea:hover,
.admin-card input:hover,
.admin-card select:hover,
.admin-card textarea:hover {
    border-color: #cbd5e0;
}

.admin-card label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 8px;
    display: block;
}

.admin-card textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
    font-family: inherit;
}

.admin-list-header {
    display: grid;
    grid-template-columns: 80px 2fr 1fr 1fr 120px;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    font-weight: 700;
    color: #555;
}

.admin-list-item {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    display: grid;
    grid-template-columns: 80px 2fr 1fr 1fr 120px;
    gap: 20px;
    align-items: center;
    transition: all 0.3s;
}

.admin-list-img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.admin-list-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.admin-item-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
}

.admin-item-info p {
    color: #777;
    font-size: 0.9rem;
}

.admin-list-actions {
    display: flex;
    gap: 10px;
}

.btn-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background: #f8f9fa;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-icon:hover {
    background: #e9ecef;
}

.btn-edit:hover {
    background: #fff3cd;
    color: #856404;
}

.btn-delete:hover {
    background: #f8d7da;
    color: #721c24;
}

.copyright-area {
    background: #111;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
    color: #888;
}

.copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #888;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (min-width: 992px) {
    .featured-card {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .featured-card h2 {
        margin-bottom: 10px;
    }
    
    .featured-card p {
        margin-bottom: 0;
        margin-right: 30px;
    }
}
