/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Styles */
.logo-graphic {
    position: relative;
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.logo-shape {
    position: absolute;
    width: 30px;
    height: 40px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: rotate(-15deg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.shape-1 {
    background: linear-gradient(135deg, #4A90E2, #7BB3F0);
    left: 0;
    top: 0;
    z-index: 3;
}

.shape-2 {
    background: linear-gradient(135deg, #50C878, #90EE90);
    left: 8px;
    top: 5px;
    z-index: 2;
}

.shape-3 {
    background: linear-gradient(135deg, #FF8C00, #FFA500);
    left: 16px;
    top: 10px;
    z-index: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rizq-box {
    background: #50C878;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #2E8B57;
    margin-bottom: 2px;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #2C3E50;
    letter-spacing: 1px;
    position: relative;
}

.brand-name::after {
    content: '®';
    font-size: 12px;
    position: absolute;
    top: -5px;
    right: -15px;
    color: #666;
}

.tagline {
    font-size: 10px;
    color: #FF8C00;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.nav-menu {
    display: flex;
    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 {
    color: #50C878;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #50C878;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(80, 200, 120, 0.1);
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #50C878, #2E8B57);
    color: white;
    box-shadow: 0 4px 15px rgba(80, 200, 120, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(80, 200, 120, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #50C878;
    border: 2px solid #50C878;
}

.btn-secondary:hover {
    background: #50C878;
    color: white;
    transform: translateY(-2px);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Products Section - Enhanced with Animations */
.products {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.products h2::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #50C878, #2E8B57);
    border-radius: 2px;
    animation: expandWidth 1.5s ease-out forwards;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 80px; }
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.category {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(80, 200, 120, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(80, 200, 120, 0.1), transparent);
    transition: left 0.6s ease;
}

.category:hover::before {
    left: 100%;
}

.category:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(80, 200, 120, 0.2);
    border-color: rgba(80, 200, 120, 0.3);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #50C878, #2E8B57);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.category-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.category:hover .category-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(80, 200, 120, 0.4);
}

.category:hover .category-icon::before {
    width: 100%;
    height: 100%;
}

.category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.category:hover h3 {
    color: #50C878;
}

.category p {
    color: #666;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.category:hover p {
    color: #555;
}

.category ul {
    list-style: none;
    text-align: left;
}

.category li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease forwards;
}

.category li:nth-child(1) { animation-delay: 0.1s; }
.category li:nth-child(2) { animation-delay: 0.2s; }
.category li:nth-child(3) { animation-delay: 0.3s; }
.category li:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #50C878;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.category:hover li::before {
    transform: scale(1.2);
    color: #2E8B57;
}

.category:hover li {
    color: #333;
    transform: translateX(5px);
}

/* About Section - Enhanced with Animations */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #2C3E50 0%, #34495e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    animation: float 15s ease-in-out infinite reverse;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #50C878, #2E8B57);
    border-radius: 2px;
    animation: expandWidth 1.5s ease-out 0.5s forwards;
    width: 0;
}

.about-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.features {
    display: grid;
    gap: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInRight 0.8s ease forwards;
}

.feature:nth-child(1) { animation-delay: 0.6s; }
.feature:nth-child(2) { animation-delay: 0.8s; }
.feature:nth-child(3) { animation-delay: 1s; }

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #50C878, #2E8B57);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature i::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.feature:hover i {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(80, 200, 120, 0.4);
}

.feature:hover i::before {
    width: 100%;
    height: 100%;
}

.feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.feature:hover h4 {
    color: #50C878;
}

.feature p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    transition: color 0.3s ease;
}

.feature:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.about-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.5s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, #50C878, #2E8B57);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.about-image:hover::before {
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    opacity: 0.5;
}

.about-image:hover img {
    transform: translate(-5px, -5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

/* Scroll-triggered animations */
.category,
.feature,
.about-text h2,
.about-text p,
.about-image {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.category.animate,
.feature.animate,
.about-text h2.animate,
.about-text p.animate,
.about-image.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Floating animation for icons */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.category-icon,
.feature i {
    animation: float 3s ease-in-out infinite;
}

.category:nth-child(2) .category-icon {
    animation-delay: 0.5s;
}

.category:nth-child(3) .category-icon {
    animation-delay: 1s;
}

.feature:nth-child(2) i {
    animation-delay: 0.5s;
}

.feature:nth-child(3) i {
    animation-delay: 1s;
}

/* Pulse animation for interactive elements */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.category:hover .category-icon,
.feature:hover i {
    animation: pulse 1s ease-in-out;
}

/* Responsive adjustments for animations */
@media (max-width: 768px) {
    .products h2,
    .about-text h2 {
        font-size: 2rem;
    }
    
    .category {
        padding: 30px 20px;
    }
    
    .feature {
        padding: 15px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 60px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #50C878, #2E8B57);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #50C878;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Form validation styles */
.form-group input.error,
.form-group textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.field-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
    display: block;
    font-weight: 500;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #50C878;
    box-shadow: 0 0 0 0.2rem rgba(80, 200, 120, 0.25);
}

.form-group input.error:focus,
.form-group textarea.error:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Footer */
.footer {
    background: #2C3E50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo .logo-graphic {
    width: 50px;
    height: 50px;
}

.footer-logo .brand-name {
    color: white;
}

.footer-logo .tagline {
    color: #FF8C00;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #50C878;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #50C878;
}

.footer-whatsapp h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.whatsapp-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn i {
    font-size: 1.2rem;
}

.whatsapp-btn span {
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Slider Styles */
.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px; /* Account for fixed navbar */
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease-in-out;
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background-color: #f8f9fa;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 80%;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
}

.slide-content p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    font-weight: 400;
}

.btn-slider {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.btn-slider:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.dots-container {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.dot.active {
    background: #fff;
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Animations for slide content */
.slide.active .animate {
    animation: slideUp 0.8s forwards;
}

.slide.active .animate:nth-child(2) {
    animation-delay: 0.2s;
}

.slide.active .animate:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading animation for slider */
.slider-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    z-index: 1;
    animation: sliderLoading 1s ease-out forwards;
}

@keyframes sliderLoading {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.video-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2C3E50;
    font-weight: 600;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* ===== RESPONSIVE DESIGN ===== */

/* ===== DESKTOP VIEW (1200px and above) ===== */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-text h1 {
        font-size: 4rem;
    }
    
    .hero-text p {
        font-size: 1.3rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .product-categories {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .quality-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== LAPTOP VIEW (992px - 1199px) ===== */
@media (max-width: 1199px) and (min-width: 992px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .product-categories {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== TABLET/IPAD VIEW (768px - 991px) ===== */
@media (max-width: 991px) and (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    
    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
}

/* ===== MOBILE LARGE VIEW (576px - 767px) ===== */
@media (max-width: 767px) and (min-width: 576px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 30px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-item {
        margin: 15px 0;
    }
    
    .nav-menu .nav-link {
        font-size: 18px;
        font-weight: 600;
        padding: 15px 20px;
        border-radius: 10px;
        transition: all 0.3s ease;
        display: block;
        margin: 5px 20px;
    }
    
    .nav-menu .nav-link:hover {
        background: linear-gradient(135deg, #50C878, #2E8B57);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(80, 200, 120, 0.3);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    /* Slider responsive */
    .slider-container {
        height: 70vh;
        margin-top: 70px;
    }
    
    .slide-content h2 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.3rem;
    }
    
    .slide-content {
        padding: 20px;
        width: 85%;
    }
    
    /* Video responsive */
    .video-section h2 {
        font-size: 2rem;
    }
    
    .video-container {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .hero-image img {
        max-width: 80%;
        margin: 0 auto;
        display: block;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-image img {
        max-width: 80%;
        margin: 0 auto;
        display: block;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .whatsapp-links {
        align-items: center;
    }
    
    .whatsapp-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
    
    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===== MOBILE SMALL VIEW (375px - 575px) ===== */
@media (max-width: 575px) and (min-width: 376px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    /* Slider responsive for small mobile */
    .slider-container {
        height: 60vh;
        margin-top: 70px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .slide-content {
        width: 90%;
        padding: 15px;
    }
    
    /* Video responsive for small mobile */
    .video-section h2 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category {
        padding: 25px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .products h2,
    .about-text h2,
    .contact h2,
    .category-section h2 {
        font-size: 2rem;
    }
}

/* ===== MOBILE EXTRA SMALL VIEW (320px - 375px) ===== */
@media (max-width: 375px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 0.95rem;
    }
    
    /* Slider responsive for extra small mobile */
    .slider-container {
        height: 50vh;
        margin-top: 70px;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slide-content {
        width: 95%;
        padding: 10px;
    }
    
    .slider-controls {
        bottom: 20px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    /* Video responsive for extra small mobile */
    .video-section h2 {
        font-size: 1.6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-categories {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .category {
        padding: 20px 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .products h2,
    .about-text h2,
    .contact h2,
    .category-section h2 {
        font-size: 1.8rem;
    }
    
    .nav-logo .brand-name {
        font-size: 20px;
    }
    
    .nav-logo .tagline {
        font-size: 8px;
    }
    
    .logo-graphic {
        width: 50px;
        height: 50px;
    }
    
    /* Mobile menu improvements for extra small screens */
    .nav-menu .nav-link {
        font-size: 16px;
        padding: 12px 15px;
        margin: 3px 15px;
    }
    
    .nav-menu {
        padding: 20px 0;
    }
}

/* ===== LANDSCAPE ORIENTATION OPTIMIZATION ===== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 15px;
    }
    
    .btn {
        width: auto;
        max-width: none;
    }
}

/* ===== HIGH DPI DISPLAYS ===== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-shape {
        box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    }
    
    .product-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .hero-buttons,
    .footer,
    .hamburger {
        display: none !important;
    }
    
    .hero {
        padding: 20px 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        color: black;
    }
    
    .hero-text p {
        color: black;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Products Page Styles */
.products-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #50C878 0%, #2E8B57 100%);
    color: white;
    text-align: center;
}

.products-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.products-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.product-categories-detailed {
    padding: 80px 0;
    background: #f8f9fa;
}

.category-section {
    margin-bottom: 80px;
}

.category-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.category-section h2 i {
    color: #50C878;
    font-size: 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Product Card Image Styling */
.product-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-image {
    width: 100%;
    height: 300px; /* Fixed height for consistent look */
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* This will show the full image without cropping */
    background-color: #fff; /* White background for transparent images */
    transition: transform 0.3s ease;
}

/* Hover effect */
.product-card:hover {
    transform: translateY(-5px);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Product info section */
.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 10px;
    color: #333;
}

.product-info p {
    color: #666;
    margin-bottom: 15px;
}

/* Product features styling */
.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature {
    background: #f5f5f5;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9em;
    color: #555;
}

.quality-assurance {
    padding: 80px 0;
    background: white;
}

.quality-assurance h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 60px;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.quality-item {
    text-align: center;
    padding: 30px 20px;
}

.quality-item i {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #50C878, #2E8B57);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.quality-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 15px;
}

.quality-item p {
    color: #666;
    line-height: 1.6;
}

/* Section Description */
.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Category Badge */
.category-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #50C878, #2E8B57);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}

.category:hover .category-badge {
    opacity: 1;
    transform: translateY(0);
}

/* Feature Content */
.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.feature:hover .feature-content h4 {
    color: #50C878;
}

.feature:hover .feature-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #50C878, #2E8B57);
    color: white;
    padding: 20px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(80, 200, 120, 0.3);
    animation: pulse 2s ease-in-out infinite;
    z-index: 3;
}

.experience-badge .years {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    margin-top: 2px;
    opacity: 0.9;
}

/* Enhanced hover effects for features */
.feature:nth-child(4) { animation-delay: 1.2s; }

.feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature:hover i {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(80, 200, 120, 0.4);
}

.feature:hover i::before {
    width: 100%;
    height: 100%;
}

/* Additional animations for enhanced sections */
@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category {
    animation: slideInFromBottom 0.8s ease-out forwards;
}

.category:nth-child(1) { animation-delay: 0.1s; }
.category:nth-child(2) { animation-delay: 0.3s; }
.category:nth-child(3) { animation-delay: 0.5s; }

/* ===== PRODUCTS PAGE RESPONSIVE ADJUSTMENTS ===== */

/* Desktop View (1200px and above) */
@media (min-width: 1200px) {
    .products-hero h1 {
        font-size: 3.5rem;
    }
    
    .category-section h2 {
        font-size: 3rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .quality-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Laptop View (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .products-hero h1 {
        font-size: 3rem;
    }
    
    .category-section h2 {
        font-size: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .quality-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet/iPad View (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .products-hero h1 {
        font-size: 2.8rem;
    }
    
    .category-section h2 {
        font-size: 2.3rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Large View (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .products-hero h1 {
        font-size: 2.5rem;
    }
    
    .category-section h2 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile Small View (375px - 575px) */
@media (max-width: 575px) and (min-width: 376px) {
    .products-hero h1 {
        font-size: 2.2rem;
    }
    
    .category-section h2 {
        font-size: 1.8rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Mobile Extra Small View (320px - 375px) */
@media (max-width: 375px) {
    .products-hero h1 {
        font-size: 2rem;
    }
    
    .category-section h2 {
        font-size: 1.6rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-info h3 {
        font-size: 1.1rem;
    }
    
    .product-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .category-badge {
        position: static;
        margin-top: 15px;
        display: inline-block;
    }
    
    .experience-badge {
        position: static;
        margin-top: 20px;
        display: inline-block;
        border-radius: 15px;
        padding: 15px 20px;
    }
    
    .experience-badge .years {
        display: inline;
        font-size: 1.3rem;
    }
    
    .experience-badge .text {
        display: inline;
        font-size: 0.8rem;
        margin-left: 5px;
    }
}