/* Ultra Modern Glossy Ecommerce Website Styles */

/* Enhanced glossy glass morphism effects */
.feature-card, .category-card, .testimonial-card, .product-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(255,255,255,0.8));
    border-radius: 25px;
    box-shadow: 
        0 25px 50px rgba(0,90,156,0.15),
        0 0 0 1px rgba(255,255,255,0.6),
        inset 0 1px 0 rgba(255,255,255,0.9),
        inset 0 0 20px rgba(255,255,255,0.3);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(20px) saturate(1.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Add glossy overlay effect */
.feature-card::before, .category-card::before, .testimonial-card::before, .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
    border-radius: 25px 25px 0 0;
    pointer-events: none;
}

.feature-card:hover, .category-card:hover, .testimonial-card:hover, .product-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 40px 80px rgba(0,90,156,0.25),
        0 0 0 1px rgba(0,150,255,0.4),
        inset 0 1px 0 rgba(255,255,255,0.9),
        inset 0 0 30px rgba(255,255,255,0.4),
        0 0 50px rgba(0,150,255,0.3);
}

/* Sparkle animation */
.sparkle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    animation: sparkleAnim 0.5s ease-out;
    pointer-events: none;
}

@keyframes sparkleAnim {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
}

/* Pulsing animation */
.stats-card {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,90,156,0.3); }
    50% { box-shadow: 0 0 0 20px rgba(0,90,156,0); }
}

/* Glass morphism for cards */
.card, .alert {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.9);
}

/* Floating animation for hero elements */
.hero h1, .slide-content h1 {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Add shimmer effect to images */
.product-card img, .gallery-item img {
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.product-card img::after, .gallery-item img::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    transition: left 0.5s;
}

.product-card:hover img::after, .gallery-item:hover img::after {
    left: 100%;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

/* Glossy overlay for entire site - DISABLED to fix overlay issue */
.site-overlay {
    /* background: rgba(255, 255, 255, 0.95); */
    /* backdrop-filter: blur(10px); */
    /* min-height: 100vh; */
}

.container-fluid {
    padding: 0;
}

/* Marquee Styles */
.marquee-container {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(248, 250, 252, 0.95) 50%, 
        rgba(255, 255, 255, 0.98) 100%);
    color: #1a365d;
    padding: 0.8rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    box-shadow: 
        0 4px 15px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    z-index: 1;
}

@keyframes rainbow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.marquee-text {
    display: inline-block;
    animation: marquee 90s linear infinite !important;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
    font-size: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Ultra Modern Header Styles */
.header {
    background: linear-gradient(135deg, 
        rgba(131, 58, 180, 0.95), 
        rgba(253, 29, 29, 0.95), 
        rgba(252, 176, 69, 0.95),
        rgba(0, 150, 255, 0.95));
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    color: white;
    backdrop-filter: blur(20px) saturate(1.8);
    box-shadow: 
        0 8px 32px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

/* Add glossy overlay to header */
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.header {
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 8px 32px rgba(131,58,180,0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.header .navbar-brand {
    color: white !important;
    font-size: 1.8rem;
    font-weight: bold;
}

.header .navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.header .navbar-nav .nav-link:hover {
    color: #ffd700 !important;
    transform: translateY(-2px);
}

/* Dropdown menu styles */
.navbar .dropdown-menu {
    z-index: 1060;
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.95);
}

.navbar .dropdown-item {
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar .dropdown-item:hover {
    background: rgba(0,90,156,0.1);
    color: #005A9C;
}

/* Brand Title Section */
.brand-title-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0.5rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.brand-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Brand Logo Carousel Styles */
.brand-carousel-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.brand-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.brand-track {
    display: flex;
    gap: 2rem;
    animation: slideRightToLeft 20s linear infinite;
    width: calc(200% + 4rem);
}

@keyframes slideRightToLeft {
    0% {
        transform: translateX(50%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-logo {
    flex: 0 0 auto;
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 15px;
    padding: 0.8rem;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.brand-logo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(131, 58, 180, 0.2),
        0 0 0 2px rgba(131, 58, 180, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(131, 58, 180, 0.3);
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: grayscale(0.3);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.brand-logo:hover img {
    filter: grayscale(0);
    transform: scale(1.1);
}

/* Pause animation on hover */
.brand-carousel:hover .brand-track {
    animation-play-state: paused;
}

/* Custom Navbar Toggler Styles */
.custom-toggler {
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 8px !important;
    padding: 0.5rem 0.75rem !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.custom-toggler:hover {
    border-color: rgba(255, 255, 255, 0.6) !important;
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
}

.custom-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25) !important;
}

.custom-toggler .navbar-toggler-icon {
    background-image: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.custom-toggler .fas.fa-bars {
    color: white !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,90,156,0.8), rgba(0,123,255,0.8)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 50vh;
    max-height: 400px;
    min-height: 300px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Overlay removed */

/* Content overlay styles removed */

/* Animation keyframes removed */

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev { left: 20px; }
.slider-nav.next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Product Cards */
.product-card {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.1),
        0 0 0 1px rgba(255,255,255,0.5),
        inset 0 1px 0 rgba(255,255,255,0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 2rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 
        0 30px 60px rgba(0,90,156,0.3),
        0 0 0 1px rgba(0,90,156,0.2),
        inset 0 1px 0 rgba(255,255,255,0.9);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card .card-body {
    padding: 1.5rem;
}

.product-card .card-title {
    color: #005A9C;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.2rem;
    color: #28a745;
    font-weight: 600;
}

/* Cart Styles */
.cart-badge {
    background: #dc3545;
    color: white;
    border-radius: 50%;
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
    position: absolute;
    top: -5px;
    right: -5px;
}

.cart-item {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cart-summary {
    background: #005A9C;
    color: white;
    border-radius: 8px;
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

/* Enhanced Button Styles */
.btn-primary {
    background: linear-gradient(145deg, #005A9C, #007bff);
    border: none;
    border-radius: 30px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 16px rgba(0,90,156,0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.btn-primary::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: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(145deg, #004080, #0056b3);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 24px rgba(0,90,156,0.4),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-success {
    background: #28a745;
    border: none;
    border-radius: 25px;
    padding: 0.8rem 2rem;
    font-weight: 600;
}

.btn-warning {
    background: #ffc107;
    border: none;
    border-radius: 25px;
    padding: 0.5rem 1rem;
}

/* Footer */
.footer {
    background: #343a40;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer h5 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.footer a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

/* Form Styles */
.form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 0.8rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #005A9C;
    box-shadow: 0 0 0 0.2rem rgba(0,90,156,0.25);
}

/* Mobile responsive - 2 items per row */
@media (max-width: 575.98px) {
    .col-6 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .feature-card, .product-card, .category-card, .testimonial-card {
        font-size: 0.9rem;
        padding: 0.8rem !important;
        margin-bottom: 1rem;
    }
    
    .feature-card h5, .product-card h6, .category-card h6 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-card i {
        font-size: 2rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .product-card .card-body {
        padding: 0.8rem;
    }
    
    .btn-sm {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }
    
    .product-price {
        font-size: 0.9rem;
    }
    
    .input-group-sm .form-control {
        font-size: 0.8rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .product-card {
        margin-bottom: 1rem;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    
    /* Mobile Slider Responsive */
    .hero-slider {
        height: 35vh;
        max-height: 280px;
        min-height: 220px;
    }
    
    .slide {
        height: 100%;
        background-size: cover;
    }
    
    /* Mobile overlay styles removed */
    
    /* Brand Carousel Mobile Responsive */
    .brand-carousel-section {
        padding: 1rem 0;
    }
    
    .brand-track {
        gap: 1.5rem;
        animation-duration: 15s;
    }
    
    .brand-logo {
        width: 80px;
        height: 80px;
        padding: 0.6rem;
        border-radius: 12px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    /* Extra Small Mobile Slider */
    .hero-slider {
        height: 30vh;
        max-height: 240px;
        min-height: 180px;
    }
    
    .slide {
        height: 100%;
        background-size: cover;
    }
    
    /* Extra small mobile overlay styles removed */
    
    /* Brand Carousel Extra Small Mobile */
    .brand-carousel-section {
        padding: 0.8rem 0;
    }
    
    .brand-track {
        gap: 1rem;
        animation-duration: 12s;
    }
    
    .brand-logo {
        width: 70px;
        height: 70px;
        padding: 0.5rem;
        border-radius: 10px;
    }
    
    .brand-logo:hover {
        transform: translateY(-3px) scale(1.02);
    }
}

/* Quick Order Form */
.quick-order-form {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

/* Gallery Styles */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Safety Tips */
.safety-tip {
    background: white;
    border-left: 4px solid #28a745;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.safety-tip h5 {
    color: #28a745;
    margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-form {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-info {
    background: #005A9C;
    color: white;
    border-radius: 10px;
    padding: 2rem;
}

/* Loading Animation */
.loading {
    display: none;
    text-align: center;
    padding: 2rem;
}

.spinner-border {
    color: #005A9C;
}

/* Success/Error Messages */
.alert {
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Admin Panel Styles */
.admin-sidebar {
    background: #343a40;
    color: white;
    min-height: 100vh;
    padding: 1rem 0;
}

.admin-sidebar .nav-link {
    color: #adb5bd;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    margin: 0.2rem 1rem;
    transition: all 0.3s ease;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background: #005A9C;
    color: white;
}

.admin-content {
    padding: 2rem;
}

.admin-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stats-card {
    background: linear-gradient(135deg, #005A9C, #007bff);
    color: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.stats-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Ultra Modern Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 50vh;
    max-height: 400px;
    min-height: 300px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Ultra modern overlay styles removed */

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 0;
}

.slider-nav:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.slider-nav.prev { left: 20px; }
.slider-nav.next { right: 20px; }

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 0;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.dot.active,
.dot:hover {
    background: rgba(255,255,255,0.9);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255,255,255,0.6);
}

/* Enhanced Button Styles */
.btn {
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn::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: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

@font-face {
        font-family: 'Bamini';
        src: url('../fonts/Bamini.ttf') format('truetype'); /* Adjust path as needed */
        font-weight: normal;
        font-style: normal;
    }