/* Modern Color Palette */
:root {
    --primary-color: #2563EB;      /* Vibrant Blue */
    --secondary-color: #10B981;    /* Modern Green */
    --accent-color: #6366F1;       /* Indigo */
    --background-light: #F3F4F6;   /* Light Gray */
    --text-dark: #1F2937;          /* Deep Gray */
    --white: #FFFFFF;
    --hover-color: #059669; 
}

/* Modern Reset and Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* Responsive Typography */
html {
    font-size: 16px;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

/* Navigation Modernization */
/* Logo Specific Styles */
.navbar-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    gap: 0.75rem;
}

.logo-name {
    color: white;
    font-size: 16px;
    font-weight: 500;
 }

.navbar-logo .logo {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    border-radius: 0.25rem;
}

/* Enhanced Navbar Responsiveness */
@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        padding: 1rem 2%;
    }

    .navbar-logo {
        margin-bottom: 1rem;
    }

    .navbar-links {
        display: flex;
        gap: 1rem;
        list-style: none;
    }

    .navbar-links li {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
    }

    .navbar-links a {
        display: block;
        padding: 0.75rem;
        background-color: var(--background-light);
        color: var(--text-dark);
        border-radius: 0.5rem;
        transition: background-color 0.3s ease;
    }

    .navbar-links a:hover {
        background-color: var(--primary-color);
        color: var(--white);
    }
}


.navbar {
    background-color: var(--text-dark);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-logo .logo {
    max-height: 50px;
    max-width: 150px;
}

.navbar-links {
    display: flex;
    list-style: none;
    gap: 0.5px;
}

.navbar-links li a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: color 0.3s ease, background-color 0.3s ease;
    padding: 10px 15px;
    border-radius: 4px;
}

.navbar-links li a:hover {
    color: var(--white);
    background-color: var(--secondary-color);
}

.navbar-links li a.active {
    color: var(--secondary-color);
    font-weight: 600;
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--secondary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Mobile View */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .navbar-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .navbar-links.active {
        display: flex !important;
        opacity: 1;
        visibility: visible;
    }

    .navbar-links li {
        padding: 1rem;
        text-align: center;
    }

    /* Hamburger animation */
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .btn {
        width: 80%;
        text-align: center;
    }
}

/* Scrolled Navbar Effect */
.navbar.scrolled {
    background-color: var(--text-dark);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}




/* Hero Slider */
.hero-slider {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(23, 235, 146, 0.8) 0%,
        rgba(9, 92, 43, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    color: #fff;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

.hero-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.cta-button.secondary {
    border: 2px solid var(--white);
    color: var(--white);
    background: var(--text-dark);
    border-color: var(--secondary-color);
    transform: translateY(-2px)
}

.slider-navigation {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.prev, .next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.prev svg, .next svg {
    fill: #fff;
}

.slide-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #fff;
    transform: scale(1.2);
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

@media screen and (max-width: 768px) {
    .hero-slider {
        margin-top: 80px; 
        padding-top: 20px; 
    }

    .hero-content {
        padding: 0 15px; /* Side padding for mobile */
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%; 
        margin-bottom: 10px;
    }

    .slider-navigation{
        margin-top: auto;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Card Design */
.products-page {
    background: var(--background-light);
}

.featured-products {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--secondary-color);
}

.section-header h2 {
    color: var(--text-dark);
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid #E5E7EB;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--secondary-color);
    opacity: 0.9;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.15);
}

.product-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-content {
    padding: 2rem;
    text-align: center;
}

.product-content h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.product-content > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    color: var(--text-dark);
    font-size: 1rem;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F9FAFB;
    margin: 0.5rem 0;
    border-radius: 10px;
    transition: background 0.3s ease, color 0.3s ease;
}

.product-features li:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.product-features li::before {
    content: '✓';
    margin-right: 0.75rem;
    color: var(--secondary-color);
    font-weight: bold;
}

.product-actions details {
    margin-top: 1rem;
}

.product-actions summary {
    list-style: none;
    cursor: pointer;
}

.product-actions summary::-webkit-details-marker {
    display: none;
}

.learn-more-btn {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.learn-more-btn:hover {
    background: var(--text-dark);
    transform: translateY(-5px);
}

.product-actions details p {
    background: #F9FAFB;
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
}


/* Services Section */
.services-overview {
    padding: 5rem 2rem;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background: var(--background-light);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-icon {
    background: var(--secondary-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    fill: var(--white);
}

.service-content h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    color: var(--text-dark);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.service-features li::before {
    content: "✓";
    color: var(--secondary-color);
    margin-right: 0.75rem;
    font-weight: bold;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--text-dark);
}

.service-link::after {
    content: "→";
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.service-link:hover::after {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-item {
        padding: 1.5rem;
    }
}



/* Footer Styling */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 3rem 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.footer-content > div {
    flex: 1;
    min-width: 200px;
}

.footer-content h4 {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info p {
    margin: 0.5rem 0;
    color: var(--white);
    opacity: 0.8;
}

.quick-links ul {
    list-style: none;
    padding: 0;
}

.quick-links ul li {
    margin-bottom: 0.5rem;
}

.quick-links a,
.social-media a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.7;
}

.quick-links a:hover,
.social-media a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

.social-media {
    display: flex;
    flex-direction: column;
}

.social-media a {
    margin-bottom: 0.5rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--secondary-color);
    font-size: 0.9rem;
    color: var(--background-light);
    opacity: 0.7;
}

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

/* Responsive Design */
@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }

    .navbar-links {
        margin-top: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-content > div {
        margin-bottom: 1.5rem;
    }

    .social-media {
        align-items: center;
    }
}

/* newsletter Styling */
.newsletter-container {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #059669 60%);
    position: relative;
    overflow: hidden;
}

.newsletter-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 50%);
    transform: rotate(-45deg);
    z-index: 1;
}

.form-container {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease-in-out;
}

.input-group {
    position: relative;
}

.input-group input {
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.input-group input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.input-group label {
    position: absolute;
    top: -8px;
    left: 12px;
    background: white;
    padding: 0 5px;
    font-size: 0.75rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    opacity: 0;
}

.input-group input:not(:placeholder-shown) + label,
.input-group input:focus + label {
    opacity: 1;
    top: -12px;
}

.submit-btn {
    background: var(--secondary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: all 0.3s ease;
}

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

/*Testimonials Styling*/
.testimonial-section {
    background: linear-gradient(135deg, var(--background-light) 0%, #ffffff 100%);
}

.testimonial-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-15px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.1);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: 15px;
    color: var(--secondary-color);
    font-size: 4rem;
    opacity: 0.1;
    z-index: 1;
}

.client-avatar {
    transition: transform 0.3s ease;
}

.testimonial-card:hover .client-avatar {
    transform: scale(1.1) rotate(5deg);
}




/*Login style*/
.login-container {
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: rotateX(10deg);
    transition: all 0.5s ease;
}

.login-container:hover {
    transform: rotateX(0) scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

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

.login-header h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.login-header p {
    color: rgba(255,255,255,0.7);
}

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-field {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-field::placeholder {
    color: rgba(255,255,255,0.6);
}

.input-field:focus {
    outline: none;
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.input-field:focus + .input-icon {
    color: #10B981;
}

.login-btn {
    width: 100%;
    padding: 1rem;
    background-color: #10B981;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.login-btn:hover {
    background-color: #059669;
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0,0,0,0.1);
}

.login-btn:active {
    transform: translateY(1px);
}

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

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

.forgot-password {
    text-align: center;
    margin-top: 1rem;
}

.forgot-password a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password a:hover {
    color: white;
    text-decoration: underline;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}


/*Dashboard style*/
.dashboard {
    max-width: 1400px;
    margin: 30px auto;
    margin-top: 60px;
    padding: 30px;
    background-color: var(--white);
    box-shadow: var(--shadow-subtle);
    border-radius: 12px;
    transition: box-shadow var(--transition-speed) ease;
}

.dashboard:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.dashboard h1 {
    color: var(--text-dark);
    font-size: 24px;
    font-weight: 600;
}

.dashboard-actions {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: 
        background-color var(--transition-speed) ease,
        transform var(--transition-speed) ease;
}

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

.search-container {
    position: relative;
    margin-bottom: 20px;
}

.search-input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    font-size: 16px;
    background-color: var(--background-light);
    transition: border-color var(--transition-speed) ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dark);
    opacity: 0.5;
}

.products-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.products-table th {
    background-color: transparent;
    color: var(--text-dark);
    font-weight: 600;
    padding: 12px 15px;
    text-align: left;
    border-bottom: 2px solid var(--secondary-color);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.products-table tr {
    background-color: var(--white);
    box-shadow: var(--shadow-subtle);
    border-radius: 8px;
    transition: transform var(--transition-speed) ease;
}

.products-table tr:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.products-table td {
    padding: 15px;
    color: var(--text-dark);
}

.action-links {
    display: flex;
    gap: 10px;
}

.action-links a {
    color: var(--secondary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color var(--transition-speed) ease;
}

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

.delete-btn {
    color: #FF4444;
}

.delete-btn:hover {
    color: #FF0000;
}

@media screen and (max-width: 768px) {
    .dashboard {
        margin: 4px;
        margin-top: 150px;
        padding: 7px;
    }

    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .products-table {
        font-size: 10px;
    }
}

/*Whatsapp Chat*/
.whatsapp_float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #16cc8f;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
  }
  .whatsapp-icon {
    margin-top: 16px;
  }

  /* for mobile */
  @media screen and (max-width: 767px){
    .whatsapp-icon {
      margin-top: 10px;
    }
    .whatsapp_float {
      width: 40px;
      height: 40px;
      bottom: 20px;
      right: 10px;
      font-size: 22px;
    }
  }