/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
}

.logo-text {
    margin-left: 10px;
}

.logo-text h1 {
    font-size: 22px;
    color: #d4af37;
    font-weight: 700;
}

.logo-text p {
    font-size: 12px;
    color: #666;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #d4af37;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
    overflow: hidden;
}


.hero-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.background-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    filter: saturate(0.7); /* Adjusted saturation for mild dullness */
}


.background-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Requested dullness level */
}


.background-slide.active {
    opacity: 1;
}


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); /* Added for better text readability */
}


.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}


.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}


.btn {
    display: inline-block;
    background-color: #d4af37;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Added for button depth */
}


.btn:hover {
    background-color: #c19b2e;
    transform: translateY(-1px); /* Added subtle hover effect */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}


/* Stats Section */
.stats {
    padding: 80px 0;
    background-color: #fff;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 18px;
    color: #666;
}

/* Products Section Styling */
.products {
    padding: 80px 0;
    background-color: #f5f5f5;
    position: relative;
}


.section-title {
    text-align: center;
    margin-bottom: 50px;
}


.products-container {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}


.products-grid {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    padding-bottom: 20px;
}


.product-card {
    flex: 0 0 calc(25% - 30px);
    min-width: 250px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}


.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}


.product-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}


.product-img::before {
    content: '';
    position: absolute;
    top: 0;  /* Changed from bottom to top */
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(255, 232, 115, 0.8);
    transition: height 0.7s ease;
    z-index: 1;
}


.product-img:hover::before {
    height: 100%;
}


.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s;
    position: relative;
    z-index: 0;
}


.product-card:hover .product-img img {
    transform: scale(1.1);
}


.product-info {
    padding: 20px;
}


.product-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}


.product-info p {
    color: #666;
    margin-bottom: 15px;
}


.btn {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: #d4af37; /* Initial yellow color */
    transition: color 0.7s ease; /* Smooth text color transition */
}


.btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #1a2a6c; /* Dark blue */
    transition: height 0.3s ease;
    z-index: -1;
}


.btn:hover {
    color: white; /* Maintain white text on hover */
}


.btn:hover::before {
    height: 100%; /* Fully covers the button from bottom to top */
}


.scroll-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}


.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s;
}


.indicator.active {
    background-color: #d4af37;
}

    /* Navigation Arrows */
    .nav-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background-color: white;
        border: none;
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        transition: all 0.3s ease;
    }
    
    .nav-arrow svg {
        width: 24px;
        height: 24px;
        fill: #333;
    }
    
    .nav-arrow:hover {
        background-color: #d4af37;
    }
    
    .nav-arrow:hover svg {
        fill: white;
    }
    
    .nav-arrow-left {
        left: 10px;
    }
    
    .nav-arrow-right {
        right: 10px;
    }
    
    @media (max-width: 992px) {
        .product-card {
            flex: 0 0 calc(33.33% - 30px);
        }
        
        .nav-arrow {
            width: 35px;
            height: 35px;
        }
    }
    
    @media (max-width: 768px) {
        .product-card {
            flex: 0 0 calc(50% - 30px);
        }
        
        .nav-arrow {
            width: 30px;
            height: 30px;
        }
        
        .nav-arrow svg {
            width: 20px;
            height: 20px;
        }
    }
    
    @media (max-width: 576px) {
        .product-card {
            flex: 0 0 calc(100% - 30px);
        }
        
        .nav-arrow {
            width: 25px;
            height: 25px;
        }
        
        .nav-arrow svg {
            width: 16px;
            height: 16px;
        }
    }

/* Quality Section */
.quality {
    padding: 80px 0;
    background-color: #fff;
}

.quality-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.quality-img {
    flex: 1;
    min-width: 300px;
}

.quality-img img {
    width: 100%;
    border-radius: 8px;
}

.quality-content {
    flex: 1;
    min-width: 300px;
    padding-left: 50px;
}

.quality-content h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.quality-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-item {
    padding: 30px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #333;
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #d4af37;
}

.footer-col p, .footer-col a {
    color: #bbb;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #d4af37;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #fff;
    background-color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: #d4af37;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #bbb;
    font-size: 14px;
}

/* ----------------------------------- G translate -------------------------------------------------- */

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

#google_element {
    position: fixed;
    top: 45%;
    right: -120px; /* Initially hidden, only part visible */
    transform: translateY(-50%);
    z-index: 1000;
    transition: right 0.3s ease-in-out;
}

#google_element:hover {
    right: 0; /* Slide out fully on hover */
}

/* Style the Google Translate widget */
.goog-te-combo {
    padding: 8px 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    background: white;
    font-size: 14px;
    min-width: 150px;
}

.goog-te-gadget {
    font-family: Arial, sans-serif !important;
}

.goog-te-gadget-simple {
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px;
}

/* --------------------------------------------------------------------------------------------------- */

/* Floating Whatsapp and Email icons */
.floating-icons {
    position: fixed;
    top: 60%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 22px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Specific icon colors */
.floating-icons a.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-icons a.email {
    background: linear-gradient(135deg, #0072c6, #004c8c);
}

/* Hover effects */
.floating-icons a:hover {
    transform: scale(1.15) translateX(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25), 
                0 0 20px rgba(255, 255, 255, 0.1);
    filter: brightness(1.1);
}

/* Icon rotation on hover */
.floating-icons a i {
    transition: transform 0.3s ease;
}

.floating-icons a:hover i {
    transform: rotate(15deg) scale(1.1);
}

/* Glow effect on hover */
.floating-icons a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-icons a:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Tooltip */
.floating-icons a::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: linear-gradient(135deg, #333, #555);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.floating-icons a:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Page load entrance animation */
@keyframes slideInBounce {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    60% {
        transform: translateX(-10px);
        opacity: 1;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.floating-icons a {
    opacity: 0;
    transform: translateX(100px);
    animation: slideInBounce 0.6s ease-out forwards;
}

.floating-icons a:nth-child(1) {
    animation-delay: 0.1s;
}

.floating-icons a:nth-child(2) {
    animation-delay: 0.2s;
}

/* Click effect */
.floating-icons a:active {
    transform: scale(1.05) translateX(-5px);
    transition: all 0.1s ease;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .floating-icons {
        right: 15px;
    }
    
    .floating-icons a:hover {
        transform: scale(1.1) translateX(-5px);
    }
}

/* --------------------------------------------------------------------------------------------------- */

/* Responsive Styles */
@media (max-width: 992px) {
    .header-container {
        padding: 15px;
    }

    nav ul {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .quality-container {
        flex-direction: column;
    }

    .quality-content {
        padding-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        margin-bottom: 30px;
    }

    .hero h1 {
        font-size: 32px;
    }

}