/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Remove underlines from all links globally */
a {
    text-decoration: none !important;
}

a:hover {
    text-decoration: none !important;
}

a:visited {
    text-decoration: none !important;
}

a:active {
    text-decoration: none !important;
}

a:focus {
    text-decoration: none !important;
}

/* Additional specific targeting for any stubborn underlines */
.company-card a,
.category-card a,
.footer-links a,
.nav-link,
.dropdown-menu a,
.btn {
    text-decoration: none !important;
}

.company-card a:hover,
.category-card a:hover,
.footer-links a:hover,
.nav-link:hover,
.dropdown-menu a:hover,
.btn:hover {
    text-decoration: none !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 2px;
}

.logo-text p {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 400;
}

/* Navigation Styles */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #2563eb;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f8fafc;
    color: #2563eb;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #374151;
    cursor: pointer;
}

/* Main Content */
main {
    margin-top: 100px;
    min-height: calc(100vh - 200px);
}

/* Banner/Hero Section */
.hero-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

/* Video Banner Styles */
.hero-banner video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    z-index: 0;
    background: #000;
}

/* Alternative video sizing for better fit */
.hero-banner.video-contain video {
    object-fit: contain;
}

.hero-banner.video-cover video {
    object-fit: cover;
}

/* Ensure video is responsive */
@media (max-width: 768px) {
    .hero-banner video {
        object-fit: contain;
        object-position: center center;
    }
}


.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-slide.active {
    opacity: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    text-align: center;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #1e40af;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
}

/* Product navigation buttons styling */
.product-nav .btn {
    background: #e5e7eb;
    color: #374151;
    border: 2px solid #e5e7eb;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-nav .btn:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.product-nav .btn-primary {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.product-nav .btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

/* Fix for all secondary buttons to ensure visibility */
.btn:not(.btn-primary):not(.product-nav .btn) {
    background: #f8fafc;
    color: #374151;
    border: 2px solid #e5e7eb;
    font-weight: 500;
}

.btn:not(.btn-primary):not(.product-nav .btn):hover {
    background: #e5e7eb;
    color: #1e40af;
    border-color: #d1d5db;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Specific styling for call-to-action buttons */
.section .btn:not(.btn-primary) {
    background: #ffffff;
    color: #2563eb;
    border: 2px solid #2563eb;
    font-weight: 600;
}

.section .btn:not(.btn-primary):hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

/* Banner Navigation */
.banner-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.banner-dot.active {
    background: white;
}

/* Section Styles */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Company Grid */
.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.company-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.company-logo {
    width: 80px;
    height: 80px;
    background: #f1f5f9;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #2563eb;
}

.company-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.company-card p {
    font-size: 0.9rem;
    color: #374151; /* Darker text for better visibility */
}

.company-card strong {
    color: #1e40af; /* Darker for titles like General Manager */
}

.company-card h3 {
    color: #1e40af; /* Ensure headings are dark */
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.value-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-3px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: #2563eb;
    border-radius: 50%;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.value-icon-img {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    object-fit: contain !important;
    object-position: center !important;
    filter: brightness(0) invert(1);
    display: block !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Fallback for broken images */
.value-icon-img:not([src]),
.value-icon-img[src=""],
.value-icon-img[src*="404"] {
    display: none;
}

/* Show FontAwesome fallback when image fails to load */
.value-icon .fa-fallback {
    display: none;
    font-size: 1.5rem;
    color: white;
}

.value-icon-img:not([src]) + .fa-fallback,
.value-icon-img[src=""] + .fa-fallback,
.value-icon-img[src*="404"] + .fa-fallback {
    display: block;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Product Categories */
.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.category-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
}

.category-image {
    height: 200px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #2563eb;
    transition: all 0.3s ease;
}

.category-card:hover .category-image {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.category-content {
    padding: 1.5rem;
}

.category-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.category-content p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.category-content .btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 500;
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #374151;
}

.form-control:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: #ffffff;
}

.form-control:hover {
    border-color: #d1d5db;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    line-height: 1.5;
}

select.form-control {
    cursor: pointer;
    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 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    appearance: none;
}

/* Product Search Styling */
#productSearch {
    position: relative;
    padding: 1rem 3rem 1rem 3rem;
    font-size: 1.1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

#productSearch:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1), 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

#productSearch::placeholder {
    color: #9ca3af;
    font-style: italic;
}

/* Search container styling */
.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-container .fas.fa-search {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
    font-size: 1.1rem;
}

.search-container .search-clear {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #9ca3af;
    cursor: pointer;
    display: none;
    padding: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.search-container .search-clear:hover {
    background: #f3f4f6;
    color: #374151;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.2rem;
    color: #f9fafb;
    font-weight: 600;
}

.footer-section h3 {
    font-size: 1.4rem;
    color: #ffffff;
}

.footer-section h4 {
    font-size: 1.15rem;
    color: #e5e7eb;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: #60a5fa;
    transform: translateX(3px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #374151;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Footer contact info styling */
.footer .contact-info p {
    margin-bottom: 1.2rem;
    color: #d1d5db;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer .contact-info i {
    margin-top: 0.2rem;
    color: #60a5fa;
    font-size: 1rem;
    min-width: 18px;
    flex-shrink: 0;
}

/* Contact page specific styling */
.contact-page-info {
    margin-top: 1rem;
}

.contact-page-info p {
    margin-bottom: 1rem;
    color: #374151;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
}

.contact-page-info i {
    margin-top: 0.2rem;
    color: #2563eb;
    font-size: 1.1rem;
    min-width: 20px;
    flex-shrink: 0;
}

/* Style for contact page headings */
.contact-page-info h3 {
    color: #1e40af;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .product-categories {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        z-index: 1002;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8fafc;
        margin-top: 0.5rem;
        border-radius: 6px;
    }
    
    .banner-content h2 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .banner-content p {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .section-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .company-grid,
    .values-grid,
    .product-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .header-content {
        flex-wrap: wrap;
        padding: 0.75rem 0;
    }
    
    .logo-text h1 {
        font-size: 1.3rem;
        line-height: 1.2;
    }
    
    .logo-text p {
        font-size: 0.85rem;
    }
    
    .logo-img {
        width: 50px;
        height: 50px;
    }
    
    .contact-form {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        padding: 0 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer .contact-info p {
        justify-content: center;
        text-align: left;
    }
    
    /* Contact page responsive adjustments */
    .contact-page-info p {
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .contact-page-info i {
        font-size: 1rem;
        min-width: 18px;
    }
    
    /* Product search responsive */
    #productSearch {
        font-size: 1rem;
        padding: 0.875rem 2.5rem;
    }
    
    .search-container .fas.fa-search {
        left: 12px;
        font-size: 1rem;
    }
    
    .search-container .search-clear {
        right: 12px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .banner-content h2 {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .banner-content p {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .company-card,
    .value-card,
    .category-card {
        margin-bottom: 1rem;
    }
    
    .contact-form {
        padding: 1.25rem;
        margin: 0 0.5rem;
    }
    
    .form-control {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer .contact-info p {
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Product search mobile */
    #productSearch {
        font-size: 0.95rem;
        padding: 0.75rem 2.25rem;
    }
    
    .search-container .fas.fa-search {
        left: 10px;
        font-size: 0.9rem;
    }
    
    .search-container .search-clear {
        right: 10px;
        font-size: 1.2rem;
        width: 20px;
        height: 20px;
    }
}

/* Additional mobile improvements */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .banner-content h2 {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .contact-form {
        padding: 1rem;
        margin: 0 0.25rem;
    }
    
    .logo-text h1 {
        font-size: 1.1rem;
    }
    
    .logo-text p {
        font-size: 0.8rem;
    }
    
    .logo-img {
        width: 45px;
        height: 45px;
    }
}

/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    align-items: center;
}

.partner-logo-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    cursor: pointer;
}

.partner-logo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.partner-logo-container img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-logo-container:hover img {
    transform: scale(1.05);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Image Popup/Lightbox Styles */
.image-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
}

.image-popup-overlay.active {
    display: flex;
}

.image-popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    cursor: default;
}

.image-popup-content img {
    width: 100%;
    height: auto;
    max-width: 800px;
    max-height: 600px;
    object-fit: contain;
    border-radius: 8px;
}

.image-popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.image-popup-close:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.image-popup-title {
    text-align: center;
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e40af;
}

/* Clickable image cursor */
.product-image img {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.product-image img:hover {
    transform: scale(1.05);
}

/* Animation for popup */
@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.image-popup-content {
    animation: popupFadeIn 0.3s ease-out;
}
