* { -webkit-tap-highlight-color: transparent; }


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100vw;
    /* overflow-x: hidden; */
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #9c9a9a17;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    /* margin-top: 32px; Start after marquee ends */
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* Logo Image with Padding - Replace in style.css */
.nav-logo {
 /* Side padding add kiya */
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 150px; /* Logo height set karo */
    width: auto; /* Maintain aspect ratio */
    margin-left: -67px;
    padding: 5px 0; /* Top/bottom padding */
    /* Better edge rendering */
    /* image-rendering: crisp-edges; Crisp text edges */
    /* For pixel-perfect logos */
    filter: contrast(1.1) brightness(1.05); /* Enhance clarity */
    transition: all 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.02); /* Slight hover effect */
    filter: contrast(1.15) brightness(1.1);
}


.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #667eea;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-item .login-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 0 60px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary-1 {
    background: white;
    color: #667eea;
}

.btn-primary-1:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary-hero{
    border: 2px solid #667eea;
}

.btn-secondary {
    /* background: transparent; */
    /* color: white; */
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
     transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    position: relative;
    overflow: hidden;
    background-color: white; /* initial background */
    color: #333; /* initial text color */
    /* border: 2px solid #667eea; border to match the fill color */
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 1;
}

.btn-secondary-hero{
    padding: 12px 30px;
    position: relative;
    overflow:hidden;
    background-color: white; /* initial background */
    color: #667eea; /* initial text color */
    border: 2px solid #667eea; 
}

.btn-secondary-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #667eea;
    transition: width 0.4s ease;
    z-index: -1;
    border-radius: 30px;
}

.btn-secondary-hero:hover {
    transform: translateY(-2px);
    color: white !important;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary-hero:hover::before {
    width: 100%;
}



.hero-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hero-card {
    width: 250px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden; /* Important for image containment */
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* .hero-card:nth-child(3) {
    grid-column: 1 / -1;
} */

.hero-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.hero-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero-card img {
    width: 188px;
    height: 118px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-card:hover img {
    transform: scale(1.1);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.feature-title{
    white-space: pre-line;
    color: #f1ebebd9;
}

/* Products Section */

.featured-products {
    padding: 80px 0;
    position: relative;
}

/* Default background image for mobile/tablet */
.featured-products {
    background-image: url('../assets/bg-img/bg-12.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; 
    position: relative;
}

.featured-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}

.featured-products .container {
    position: relative;
    z-index: 2;
}

/* Desktop/Laptop - Remove background image when Vanta.js is active */
@media (min-width: 769px) {
    .featured-products.vanta-active {
        background-image: none !important;
    }
    
    /* .featured-products.vanta-active::before {
        display: none; 
    } */
}

/* Mobile/Tablet specific adjustments */
@media (max-width: 768px) {
    .featured-products {
        background-attachment: fixed; /* Fixed attachment causes issues on mobile */
    }
}


.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 200px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #28a745;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 25px;
}

.product-category {
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 10px;
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    /* margin-bottom: 10px; */
    /* padding-top: 10px; */
    line-height: 1.5;
}

.product-actions {
    display: flex;
    justify-content: center;
    margin-bottom: -8px;
    /* gap: 10px; */
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Products Page Styles */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.products-section {
    padding: 60px 0;
}

.products-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.search-bar {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-bar input {
    width: 100%;
    padding: 12px 20px 12px 50px;
    border: 2px solid #e1e5e9;
    border-radius: 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-bar input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-bar i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid #e1e5e9;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-light-2 {
    background: white;
    color: #667eea;
}

.btn-light-2:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #667eea;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #667eea;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #ccc;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Admin Styles */
.admin-body {
    background: #f5f5f5;
}

.admin-layout {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Fixed and Main Scrollable */
.admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100vh;
    background: #2c3e50;
    color: #fff;
    z-index: 1000;
    box-shadow: 2px 0 8px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
}

.admin-main {
    margin-left: 250px;
    height: 100vh;
    overflow-y: auto;
    background: #f7f7f7;
    padding: 24px;
}
/* Responsive for mobile */
@media (max-width: 768px) {
    .admin-sidebar {
        position: static;
        width: 100%;
        height: auto;
        box-shadow: none;
    }
    .admin-main {
        margin-left: 0;
        padding: 12px;
    }
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #34495e;
}

.sidebar-header img{
    width: 170px;
    height: auto;
   margin: -54px 0 -40px 10px;
    /* height: 120px; */
}

.sidebar-nav {
    flex: 1;
    padding: 20px 0;
}

.sidebar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-nav .nav-item:hover,
.sidebar-nav .nav-item.active {
    background: #34495e;
    color: white;
    border-left-color: #3498db;
}

.sidebar-nav .nav-item i {
    margin-right: 10px;
    width: 20px;
}

.sidebar-footer {
    padding: 20px;
}

/* .admin-main {
    flex: 1;
    padding: 20px;
} */

.admin-header {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.stat-info h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: #333;
}

.stat-info p {
    color: #666;
    font-size: 0.9rem;
}

.admin-section {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.section-header {
    padding: 20px;
    border-bottom: 1px solid #e1e5e9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-table-container {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e1e5e9;
}

.admin-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.admin-table tr:hover {
    background: #f8f9fa;
}

.product-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #e1e5e9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close {
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.close:hover {
    color: #333;
}

.modal form {
    padding: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #e1e5e9;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 30px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.d-none {
    display: none !important;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover {
    background: #c82333;
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #218838;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.about-text h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: #667eea;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #333;
}

.about-list i {
    color: #28a745;
    margin-right: 15px;
    font-size: 1.2rem;
}

.image-card {
    height: 400px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.image-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.process-step {
    background: #97c4ff78;
     /* Light blue with transparency */
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 2rem;
    color: white;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid #f8f9fa;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #333;
}

.team-member p {
    color: #667eea;
    font-weight: 500;
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #667eea;
    color: white;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1.5rem;
    color: white;
}

.method-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #333;
}

.method-info p {
    color: #666;
    line-height: 1.5;
}

.business-hours {
    background: #705fbe;
    padding: 30px;
    border-radius: 15px;
}

.business-hours h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e1e5e9;
}

.hours-item:last-child {
    border-bottom: none;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #667eea;
}

.map-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

.faq-question i {
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 25px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Authentication Styles */
.auth-body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.auth-header {
    padding: 20px;
}

.back-btn {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.back-btn:hover {
    opacity: 0.8;
}

.auth-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.auth-card {
    background: white;
    padding: 0 40px 40px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 450px;
}

/* .nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 150px;
    width: auto; 
    padding: 5px 0;
    filter: contrast(1.1) brightness(1.05);
    transition: all 0.3s ease;
} */

.auth-logo {
  display: flex;
   flex-direction: column;
    align-items: center;
    text-align: center;
}

.auth-logo img {
    height: 150px; /* Logo height set karo */
    width: auto; /* Maintain aspect ratio */
    filter: contrast(1.1) brightness(1.05); /* Enhance clarity */
    transition: all 0.3s ease;
}

.auth-logo p {
    margin-top: -33px;
    color: #666;
    font-size: 1.1rem;
}

.auth-form h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

/* Fixed Input Group Styles */
.input-group {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

/* Left icon (email/lock) - Fixed */
.input-group i:first-child {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    z-index: 2;
    pointer-events: none;
}

/* Input field - Fixed with proper padding */
.input-group input {
    width: 100%;
    padding: 12px 50px 12px 45px; /* Right padding for eye icon, left for other icon */
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Fixed Password Toggle Button (Eye Icon) */
.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 8px;
    z-index: 3; /* Higher z-index */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
}

.toggle-password:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.toggle-password:active {
    transform: translateY(-50%) scale(0.95);
}

.toggle-password i {
    font-size: 1rem;
    pointer-events: none;
}

/* Ensure proper spacing for password inputs */
input[type="password"],
input[type="text"] {
    padding-right: 50px !important;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    font-size: 0.9rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #666;
}

.checkbox-label input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e1e5e9;
    border-radius: 3px;
    margin-right: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input:checked + .checkmark {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-label input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 2px;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.forgot-password {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

.auth-btn {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    margin-top: 20px;
}

.demo-logins {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e1e5e9;
    text-align: center;
}

.demo-logins p {
    margin-bottom: 15px;
    color: #666;
    font-weight: 500;
}

.demo-btn {
    width: 48%;
    padding: 8px 16px;
    font-size: 0.9rem;
    margin: 0 1%;
}

.auth-switch {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e1e5e9;
    color: #666;
}

.auth-switch a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Form row for registration */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Responsive fixes for auth forms */
@media (max-width: 768px) {
    .auth-card {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .demo-btn {
        width: 100%;
        margin: 5px 0;
    }
    
    .form-options {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .auth-logo h2 {
        font-size: 2rem;
    }
    
    .auth-form h3 {
        font-size: 1.5rem;
    }
    
    .input-group input {
        padding: 10px 45px 10px 40px;
        font-size: 0.95rem;
    }
    
    .toggle-password {
        right: 10px;
        width: 28px;
        height: 28px;
    }
    
    .toggle-password i {
        font-size: 0.9rem;
    }
}


/* Testimonials Styles */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-container {
    overflow: hidden;
    border-radius: 15px;
    position: relative;
}

/* Fixed Track System */
.testimonial-track {
    display: flex;
    width: 500%; /* 4 slides = 400% width */
    transition: transform 0.5s ease;
}

/* Fixed Slide Dimensions */
.testimonial-slide {
    width: 20%; /* Each slide takes 20% of track width */
    flex-shrink: 0;
    opacity: 1; /* Always visible, track moves them */
}

/* Remove individual slide transforms */

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 0 10px;
}

.about-testimonials .testimonial-card {
    background: #f8f9fa;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.stars i {
    color: #ffc107;
    font-size: 1.2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

.author-info span {
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonial-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #667eea;
    transform: scale(1.2);
}

/* Responsive fixes */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px 20px;
        margin: 0 5px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .testimonial-author img {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .testimonial-navigation {
        gap: 15px;
        margin-top: 20px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 25px 15px;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
}


/* Contact Page Responsive Improvements */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1.5rem;
    color: white;
}

.method-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #333;
}

.method-info p {
    color: #666;
    line-height: 1.5;
}

.business-hours {
    background: #705fbe;
    padding: 30px;
    border-radius: 15px;
}

.business-hours h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fafafae8;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-item {
    color: #ffffffd4;
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e1e5e9;
}

.hours-item:last-child {
    border-bottom: none;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #667eea;
}

.map-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

.faq-question i {
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 25px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Admin Navigation Improvements */
.sidebar-header a:hover {
    opacity: 0.9;
}

.btn-light {
    background: white;
    color: #333;
    border: 1px solid #ddd;
}

.btn-light:hover {
    background: #f8f9fa;
    color: #000;
}

/* Breadcrumb Styles */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumb-section {
    display: flex;
    align-items: center;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    background: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    padding: 0 0.5rem;
    color: #6c757d;
}

.breadcrumb-item a {
    color: #667eea;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #5a67d8;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Simple User Display - Add to style.css */
/* User Info Container */
.user-info {
    position: relative;
    display: flex;
    align-items: center;
}

/* User Display (Main Container) */
.user-display {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.12);
    padding: 6px 12px; /* ✅ FIXED: Added proper padding */
    transition: background 0.3s, box-shadow 0.3s;
    min-width: 0;
    max-width: 200px; /* ✅ Increased for admin dropdown */
    width: auto;
}

/* User Avatar */
.user-avatar {
    width: 32px; /* ✅ Slightly smaller for better proportion */
    height: 32px;
    border-radius: 50%;
    background: #fff;
    color: #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid #fff;
    box-shadow: 0 1px 6px rgba(102, 126, 234, 0.12);
}

/* User Name */
.user-name {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem; /* ✅ Slightly smaller for better fit */
    text-shadow: 0 1px 3px rgba(102, 126, 234, 0.18);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

/* ✅ NEW: Admin Dropdown Container */
.admin-dropdown {
    position: relative;
    margin-left: 4px;
}

/* ✅ NEW: Admin Dropdown Button */
.admin-dropdown-btn {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    transition: all 0.2s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.admin-dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

/* ✅ NEW: Admin Dropdown Menu */
.admin-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 8px 0;
    overflow: hidden;
}

.admin-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* ✅ NEW: Dropdown Arrow */
.admin-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 12px;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
}

/* ✅ NEW: Dropdown Items */
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #374151;
    text-decoration: none;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.dropdown-item:hover {
    background: #f8fafc;
    color: #667eea;
}

.dropdown-item i {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: color 0.2s ease;
}

.dropdown-item:hover i {
    color: #667eea;
}

/* ✅ NEW: Dropdown Divider */
.dropdown-divider {
    margin: 8px 0;
    border: none;
    border-top: 1px solid #e5e7eb;
}

/* ✅ NEW: Logout Item Special Styling */
.logout-item {
    color: #dc2626;
}

.logout-item:hover {
    background: #fef2f2;
    color: #dc2626;
}

.logout-item i {
    color: #dc2626;
}

/* Logout Button (For Customer Navigation) */
.logout-btn {
    background: rgba(255, 255, 255, 0.18);
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    margin-left: 4px;
    font-size: 0.8rem;
    display: flex; /* ✅ FIXED: Removed duplicate */
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(102, 126, 234, 0.10);
    width: 24px; /* ✅ Consistent with admin button */
    height: 24px;
}

.logout-btn:hover {
    background: #fff;
    color: #dc2626;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.18);
    transform: scale(1.05);
}

/* Marquee Note Styles */
.marquee-container {
    width: 100%;
    position: relative;
    z-index: 1100;
    height: 23px;
    overflow: hidden;
}
.marquee-container marquee {
    height: 23px;
    line-height: 24px;
    font-size: 0.95rem;
    padding: 0 0;
}

/* Image Upload Styles */
.image-upload-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    border: 2px dashed #e1e5e9;
    border-radius: 8px;
    background: #f8f9fa;
    transition: border-color 0.3s ease;
}

.image-upload-container:hover {
    border-color: #667eea;
}

.upload-option {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
}

.file-upload-label:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.file-upload-label i {
    font-size: 1.2rem;
}

#productImageURL {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

#productImageURL:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.upload-preview {
    text-align: center;
    margin-top: 15px;
}

.upload-preview img {
    max-width: 200px;
    max-height: 150px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 2px solid #e1e5e9;
}

.upload-status {
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 10px;
    font-weight: 500;
}

.upload-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.upload-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.upload-progress {
    width: 100%;
    height: 8px;
    background: #e1e5e9;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 10px;
}

.upload-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 4px;
}

/* Contact Form Enhancements */
.form-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Enhanced Select Dropdown */
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 45px;
}

.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23667eea' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
}

.form-group select:hover {
    border-color: #667eea;
}

.form-group select option {
    padding: 10px;
    background: #fff;
    color: #333;
}

.error-highlight {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 20%, 40%, 60%, 80%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
}

/* Success Message Styles */
.contact-success-container {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.3);
}

.success-icon i {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.success-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.success-option {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.success-option h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.success-option small {
    display: block;
    margin-top: 8px;
    opacity: 0.8;
    font-size: 0.85rem;
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 10000;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.3s ease;
}

.toast-notification.success {
    background: #28a745;
    color: white;
}

.toast-notification.error {
    background: #dc3545;
    color: white;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
}

.toast-message {
    flex: 1;
    font-size: 0.95rem;
}

.toast-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.toast-close:hover {
    opacity: 1;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .form-actions {
        flex-direction: column;
    }
    
    .success-actions {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===============================================
   LAPTOP & LARGE SCREEN RESPONSIVENESS - OPTIMIZED
   =============================================== */

/* Standard Laptop (1219px - 1399px) */
@media only screen and (min-width: 1219px) {
    .container {
        max-width: 1180px;  /* ✅ Laptop-friendly width */
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* Navigation improvements */
    .nav-container {
        max-width: 1200px;
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 30px;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 8px 0;
    }
    
    /* Hero section improvements */
    .hero-container {
        max-width: 1200px;
        gap: 60px;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    /* Products grid - 3 columns for standard laptops */
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    .featured-products .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
}

/* Large Laptop (1400px - 1599px) */
@media only screen and (min-width: 1400px) {
    .container {
        max-width: 1440px;  /* ✅ Better utilization for large laptops */
        padding: 0 25px;
    }
    
    .nav-container {
        max-width: 1440px;
        padding: 0 25px;
    }
    
    .hero-container {
        max-width: 1430px;
        gap: 90px;
        padding: 0 25px;
    }
    
    .hero-title {
        font-size: 4.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    /* Products grid - 4 columns */
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
    
    .featured-products .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .features-grid {
        gap: 35px;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
}

/* Wide Laptop (1600px - 1799px) */
@media only screen and (min-width: 1600px) {
    .container {
        max-width: 1640px;  /* ✅ Optimized for wide laptops */
        padding: 0 25px;
    }
    
    .nav-container {
        max-width: 1640px;
        padding: 0 30px;
    }
    
    .hero-container {
        max-width: 1630px;
        gap: 150px;
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 5.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    /* Products grid - 4 columns with better spacing */
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .featured-products .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Enhanced typography */
    .section-title {
        font-size: 3rem;
    }
    
    .feature-card h3 {
        font-size: 1.6rem;
    }
    
    .feature-card p {
        font-size: 1.1rem;
    }
    
    .features-grid {
        gap: 40px;
    }
}

/* Full HD Wide Laptop (1800px - 1919px) */
@media only screen and (min-width: 1800px) {
    .container {
        max-width: 1800px;  /* ✅ Maximum utilization for Full HD wide */
        padding: 0 30px;
    }
    
    .nav-container {
        max-width: 1800px;
        padding: 0 30px;
    }
    
    .hero-container {
        max-width: 1770px;
        gap: 300px;
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 5.9rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    /* Products grid - 5 columns */
    .products-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 30px;
    }
    
    .featured-products .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .section-title {
        font-size: 3.2rem;
    }
    
    .feature-card h3 {
        font-size: 1.7rem;
    }
    
    .features-grid {
        gap: 45px;
    }
}

/* Full HD+ & QHD (1920px - 2559px) */
@media only screen and (min-width: 1920px) {
    .container {
        max-width: 1920px;  /* ✅ Optimal for 1920px+ displays */
        padding: 0 35px;
    }
    
    .nav-container {
        max-width: 1780px;
        padding: 0 35px;
    }
    
    .hero-container {
        max-width: 1740px;
        gap: 300px;
        padding: 0 35px;
    }
    
    .hero-title {
        font-size: 5.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    /* Products grid - 5-6 columns */
    .products-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 35px;
    }
    
    .featured-products .products-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.8rem;
    }
    
    .feature-card p {
        font-size: 1.2rem;
    }
    
    /* Enhanced spacing */
    .features {
        padding: 100px 0;
    }
    
    .featured-products {
        padding: 100px 0;
    }
    
    .cta {
        padding: 100px 0;
    }
    
    .features-grid {
        gap: 50px;
    }
}

/* 4K Screens (2560px+) */
@media only screen and (min-width: 2560px) {
    .container {
        max-width: 2200px;  /* ✅ Maximum for 4K displays */
        padding: 0 40px;
    }
    
    .nav-container {
        max-width: 2200px;
        padding: 0 40px;
    }
    
    .hero-container {
        max-width: 2200px;
        gap: 120px;
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 6rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 4rem;
    }
    
    /* Ultra wide product grid */
    .products-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 40px;
    }
    
    .featured-products .products-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .features-grid {
        gap: 60px;
    }
}

/* Navigation Logo Responsive Improvements */
@media (min-width: 1200px) {
    .nav-logo img {
        height: 150px;
        margin-left: -65px;
    }
}

@media (min-width: 1400px) {
    .nav-logo img {
        height: 155px;
        margin-left: -62px;
    }
}

@media (min-width: 1600px) {
    .nav-logo img {
        height: 160px;
        margin-left: -58px;
    }
}

@media (min-width: 1800px) {
    .nav-logo img {
        height: 165px;
        margin-left: -55px;
    }
}

@media (min-width: 1920px) {
    .nav-logo img {
        height: 170px;
        margin-left: -50px;
    }
}

/* Hero Cards Responsive for All Laptop Sizes */
@media (min-width: 1200px) {
    .hero-image {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 550px;
    }
    
    .hero-card {
        width: 260px;
        min-height: 200px;
    }
    
    .hero-card img {
        width: 200px;
        height: 130px;
    }
}

@media (min-width: 1400px) {
    .hero-image {
        max-width: 600px;
        gap: 25px;
    }
    
    .hero-card {
        width: 280px;
        min-height: 220px;
    }
    
    .hero-card img {
        width: 220px;
        height: 140px;
    }
}

@media (min-width: 1600px) {
    .hero-image {
        max-width: 650px;
        gap: 30px;
    }
    
    .hero-card {
        width: 300px;
        min-height: 240px;
    }
    
    .hero-card img {
        width: 240px;
        height: 150px;
    }
}

@media (min-width: 1800px) {
    .hero-image {
        max-width: 700px;
        gap: 32px;
    }
    
    .hero-card {
        width: 320px;
        min-height: 250px;
    }
    
    .hero-card img {
        width: 260px;
        height: 160px;
    }
}

@media (min-width: 1920px) {
    .hero-image {
        max-width: 750px;
        gap: 35px;
    }
    
    .hero-card {
        width: 340px;
        min-height: 260px;
    }
    
    .hero-card img {
        width: 280px;
        height: 170px;
    }
}

/* Admin Panel Large Screen Support */
@media (min-width: 1200px) {
    .admin-main {
        padding: 25px;
    }
    
    .dashboard-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .admin-section {
        border-radius: 12px;
    }
}

@media (min-width: 1400px) {
    .admin-main {
        padding: 30px;
    }
    
    .dashboard-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
    
    .admin-section {
        border-radius: 15px;
    }
}

@media (min-width: 1600px) {
    .admin-main {
        padding: 35px;
    }
    
    .dashboard-stats {
        gap: 30px;
    }
}

@media (min-width: 1800px) {
    .admin-main {
        padding: 40px;
    }
    
    .dashboard-stats {
        gap: 32px;
    }
}

@media (min-width: 1920px) {
    .admin-main {
        padding: 45px;
    }
    
    .dashboard-stats {
        grid-template-columns: repeat(5, 1fr);
        gap: 35px;
    }
}

/* Enhanced Button & Form Scaling */
@media (min-width: 1400px) {
    .btn {
        padding: 13px 32px;
        font-size: 1.05rem;
    }
}

@media (min-width: 1600px) {
    .btn {
        padding: 14px 35px;
        font-size: 1.1rem;
    }
    
    .btn-small {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

@media (min-width: 1920px) {
    .btn {
        padding: 16px 40px;
        font-size: 1.15rem;
    }
    
    .btn-small {
        padding: 12px 28px;
        font-size: 1.05rem;
    }
}

@media (max-width:768px){

      .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .featured-products .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}