/* File: assets/css/style.css */
:root {
    --emerald: #50C878;
    --emerald-dark: #3DA162;
    --emerald-light: #7DDFA3;
    --cream: #F8F9F2;
    --taupe: #C4B7A6;
    --charcoal: #333333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--charcoal);
    background-color: var(--cream);
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
   .product-card {
        transition: transform 0.3s, box-shadow 0.3s;
        border: 1px solid rgba(0,0,0,0.05);
    }
    
    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-color: var(--emerald-light);
    }
    
    .product-actions .btn {
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s;
    }
    
    .product-card:hover .product-actions .btn {
        opacity: 1;
        transform: translateY(0);
    }
    
    .product-actions .btn:hover {
        background-color: var(--emerald) !important;
        color: white !important;
    }
    
    .bg-emerald {
        background-color: var(--emerald);
    }
    
    .btn-emerald {
        background-color: var(--emerald);
        color: white;
    }
    
    .btn-emerald:hover {
        background-color: var(--emerald-dark);
        color: white;
    }
    
    @media (max-width: 768px) {
        .product-card {
            margin-bottom: 20px;
        }
    }

.navbar-brand {
    color: var(--emerald) !important;
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-link {
    color: var(--charcoal) !important;
    font-weight: 500;
    margin: 0 8px;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--emerald);
    transition: width 0.3s;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 0 0 8px 8px;
}

.dropdown-item:hover {
    background-color: var(--emerald-light);
    color: white;
}

.btn-primary {
    background-color: var(--emerald);
    border-color: var(--emerald);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--emerald-dark);
    border-color: var(--emerald-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-outline-primary {
    color: var(--emerald);
    border-color: var(--emerald);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background-color: var(--emerald);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.hero-slider {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1602810318383-e386cc2a3ccf?ixlib=rb-4.0.3') center/cover;
    height: 90vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 700px;
    padding: 30px;
    background: rgba(0,0,0,0.6);
    border-radius: 10px;
}

.section-title {
    position: relative;
    margin-bottom: 40px;
    text-align: center;
    color: var(--emerald-dark);
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--emerald);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.feature-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -35px auto 20px;
    color: white;
    font-size: 30px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-img {
    height: 200px;
    object-fit: cover;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 20px 0;
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;

}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 50px;
    color: var(--emerald);
    margin-bottom: 20px;
}

.measurement-form {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.cart-summary {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

footer {
    background: var(--charcoal);
    color: white;
    padding: 60px 0 20px;
}

.footer-title {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: var(--emerald);
    bottom: 0;
    left: 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--emerald);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
    }
    
    .hero-content {
        padding: 20px;
    }
}

/* About Us Page Styles */
.about-hero {
    background: linear-gradient(rgba(80, 200, 120, 0.9), rgba(80, 200, 120, 0.9)), url('https://images.unsplash.com/photo-1602810318383-e386cc2a3ccf?ixlib=rb-4.0.3') center/cover;
    position: relative;
    overflow: hidden;
}

.timeline {
    position: relative;
    padding-left: 30px;
    margin-top: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--emerald-light);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-date {
    position: absolute;
    left: -30px;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--emerald);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 1;
}

.timeline-content {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    margin-left: 30px;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    width: 20px;
    height: 20px;
    background: white;
    transform: rotate(45deg);
}

.value-icon {
    width: 50px;
    height: 50px;
}

.team-card {
    transition: transform 0.3s;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto;
}
/* Products Page Styles */
.products-hero {
    background: linear-gradient(rgba(248, 249, 242, 0.9), rgba(248, 249, 242, 0.9)), url('https://images.unsplash.com/photo-1601924994987-69e26d50dc26?ixlib=rb-4.0.3') center/cover;
}

.category-card .card {
    transition: transform 0.3s;
}

.category-card .card:hover {
    transform: translateY(-5px);
}

/* Alteration Page Styles */
.alteration-hero {
    background: linear-gradient(rgba(80, 200, 120, 0.8), rgba(80, 200, 120, 0.8)), url('https://images.unsplash.com/photo-1602810318383-e386cc2a3ccf?ixlib=rb-4.0.3') center/cover;
}

.process-steps .step {
    position: relative;
    padding-left: 40px;
    margin-bottom: 30px;
}

.process-steps .step:last-child {
    margin-bottom: 0;
}

.process-steps .step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: -30px;
    width: 2px;
    background: var(--emerald-light);
}

.step:last-child::before {
    display: none;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--emerald);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 1;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Toast notifications */
.toast {
    z-index: 9999;
}

/* Fresh Design Page */
.freshdesign-hero {
    background: linear-gradient(rgba(80, 200, 120, 0.8), rgba(80, 200, 120, 0.8)), url('https://images.unsplash.com/photo-1591047139829-d91aecb6caea?ixlib=rb-4.0.3') center/cover;
}

/* Career & Training Page */
.training-hero {
    background: linear-gradient(rgba(61, 161, 98, 0.8), rgba(61, 161, 98, 0.8)), url('https://images.unsplash.com/photo-1601924994987-69e26d50dc26?ixlib=rb-4.0.3') center/cover;
	

}

	
.bg-emerald {
    background: linear-gradient(rgba(61, 161, 98, 0.8), rgba(61, 161, 98, 0.8)), url('https://images.unsplash.com/photo-1601924994987-69e26d50dc26?ixlib=rb-4.0.3') center/cover;
}
/* Authentication Pages */
.login-hero, .register-hero {
    background: linear-gradient(rgba(80, 200, 120, 0.8), rgba(80, 200, 120, 0.8)), url('https://images.unsplash.com/photo-1607082348824-0a96f2a4b9da?ixlib=rb-4.0.3') center/cover;
}

.login-card, .register-card {
    border: 1px solid rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.login-card:hover, .register-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.divider {
    border-top: 1px solid #dee2e6;
}

.divider span {
    top: -12px;
    font-size: 0.9rem;
    color: #6c757d;
}

.social-login-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #333;
    border: 1px solid #dee2e6;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-login-btn:hover {
    background: var(--emerald);
    color: white;
    transform: translateY(-3px);
    border-color: var(--emerald);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 30px;
}

/* Shared Styles */
.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-steps .step {
    position: relative;
    padding-left: 40px;
    margin-bottom: 30px;
}

.process-steps .step:last-child {
    margin-bottom: 0;
}

.process-steps .step::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: -30px;
    width: 2px;
    background: var(--emerald-light);
}

.step:last-child::before {
    display: none;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--emerald);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 1;
}

.step-content {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

/* Portfolio & Gallery Items */
.portfolio-card, .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.portfolio-overlay, .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.portfolio-card:hover .portfolio-overlay,
.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Forms */
.design-request-form, .application-form {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Course Cards */
.course-card {
    transition: transform 0.3s;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-badge {
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Position Cards */
.position-card {
    transition: all 0.3s;
}

.position-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}
/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(80, 200, 120, 0.8), rgba(80, 200, 120, 0.8)), url('https://images.unsplash.com/photo-1607082348824-0a96f2a4b9da?ixlib=rb-4.0.3') center/cover;
}

.contact-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--emerald-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--emerald);
}

.map-container {
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.business-hours {
    border: 1px solid rgba(0,0,0,0.1);
}

/* Cart Page Styles */
.cart-hero {
    background: linear-gradient(rgba(61, 161, 98, 0.8), rgba(61, 161, 98, 0.8)), url('https://images.unsplash.com/photo-1601924994987-69e26d50dc26?ixlib=rb-4.0.3') center/cover;
}

.cart-table th {
    font-weight: 600;
    color: var(--charcoal);
    border-bottom: 2px solid var(--emerald);
}

.cart-table td {
    vertical-align: middle;
}

.summary-table td {
    padding: 10px 0;
    border: none;
}

.summary-table tr:last-child td {
    border-top: 2px solid var(--emerald);
    font-size: 1.1rem;
    padding-top: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cart-table thead {
        display: none;
    }
    
    .cart-table tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        padding: 10px;
    }
    
    .cart-table td {
        display: block;
        text-align: right;
        padding: 10px;
    }
    
    .cart-table td::before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
    }
    
    .cart-table td:first-child {
        text-align: left;
    }
    
    .cart-table td:first-child::before {
        display: none;
    }
}

/* Dashboard Styles */
.dashboard-header {
    background: linear-gradient(rgba(61, 161, 98, 0.9), rgba(61, 161, 98, 0.9));
}

.stat-card {
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 70px;
    height: 70px;
}

.action-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.quick-action {
    text-decoration: none;
    color: var(--charcoal);
    transition: all 0.3s;
}

.quick-action:hover {
    color: var(--emerald);
    transform: translateY(-3px);
}

.quick-action:hover .action-icon {
    background: var(--emerald-dark);
}

/* Welcome Page Styles */
.welcome-hero {
    background: linear-gradient(rgba(80, 200, 120, 0.9), rgba(80, 200, 120, 0.9)), url('https://images.unsplash.com/photo-1598706726456-2d0d8909a9e9?ixlib=rb-4.0.3') center/cover;
}

.steps {
    position: relative;
    padding-left: 40px;
}

.steps::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--emerald-light);
}

.step {
    position: relative;
    margin-bottom: 30px;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: -40px;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--emerald);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 1;
}

.step-content {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.3s;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.step-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    width: 20px;
    height: 20px;
    background: white;
    transform: rotate(45deg);
}

.offer-card {
    width: 200px;
    height: 200px;
    border: 3px solid var(--emerald);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.action-card {
    transition: all 0.3s;
}

.action-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.action-icon {
    width: 70px;
    height: 70px;
    background: var(--emerald-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--emerald);
    font-size: 30px;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rewards-level {
    width: 50px;
    height: 50px;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Profile Page Styles */
.profile-hero {
    background-color: var(--emerald-light);
}

.avatar {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

.list-group-item.active {
    background-color: var(--emerald);
    border-color: var(--emerald);
}

/* Orders Page Styles */
.orders-hero {
    background-color: var(--emerald-light);
}

.status-indicator {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

/* Order Status Colors */
.bg-warning { background-color: #ffc107; }
.bg-primary { background-color: #0d6efd; }
.bg-info { background-color: #0dcaf0; }
.bg-success { background-color: #198754; }

.text-warning { color: #ffc107; }
.text-primary { color: #0d6efd; }
.text-info { color: #0dcaf0; }
.text-success { color: #198754; }

/* Table Styling */
.table-hover tbody tr:hover {
    background-color: rgba(80, 200, 120, 0.05);
}



