/* CSS Variables for Company Theme */
:root {
    --primary-blue: #2c5aa0;
    --primary-blue-dark: #1e3f73;
    --primary-blue-darker: #0f2a4a;
    --accent-yellow: #FFC107;
    --accent-yellow-light: #FFD54F;
    --accent-yellow-dark: #FFA000;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --text-gray: #666;
}

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

body {
    font-family: 'Poppins', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Global Yellow Accents */
::selection {
    background: var(--accent-yellow);
    color: var(--text-dark);
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-yellow);
    border-radius: 6px;
    border: 3px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-yellow-dark);
}

/* Animation classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatAnimation {

    0%,
    100% {
        transform: perspective(1000px) rotateY(-5deg) translateY(0px);
    }

    50% {
        transform: perspective(1000px) rotateY(-5deg) translateY(-15px);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease forwards;
}

.slide-in-top {
    animation: slideInFromTop 0.8s ease forwards;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.img-responsive {
    max-width: 100%;
    height: auto;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    text-align: center;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: white;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue-darker));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(44, 90, 160, 0.4);
}

.btn-yellow {
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-yellow-dark));
    color: var(--text-dark);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}

.btn-yellow:hover {
    background: linear-gradient(135deg, var(--accent-yellow-light), var(--accent-yellow));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 193, 7, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.2);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Header Styles */
.text-accent {
    color: var(--accent-yellow) !important;
}

.bg-accent {
    background-color: var(--accent-yellow) !important;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar {
    background-color: #2c5aa0;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
    color: var(--accent-yellow);
}

.social-links a {
    color: white;
    margin-left: 10px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-yellow);
}

.navbar {
    padding: 15px 0;
    position: relative;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
    max-width: 200px;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    margin: 0 20px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-yellow-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-yellow);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -300px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 20px;
    min-width: 800px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e0e0e0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.dropdown-column h4 {
    color: #2c5aa0;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 700;
}

.dropdown-column a {
    display: block;
    color: #666;
    text-decoration: none;
    padding: 5px 0;
    font-size: 14px;
    transition: color 0.3s ease;
}

.dropdown-column a:hover {
    color: #2c5aa0;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 120px;
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.9) 0%, rgba(30, 63, 115, 0.9) 50%, rgba(15, 42, 74, 0.9) 100%),
        url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1f?w=1920&h=1080&fit=crop') center/cover;
    background-size: 400% 400%, cover;
    animation: gradientShift 8s ease infinite;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::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 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="0,0 1000,0 1000,100 0,80"/></svg>');
    background-size: cover;
    background-position: bottom;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    width: 100%;
    color: white;
    position: relative;
    z-index: 2;
}

.hero-content .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-image {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-product-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.3s ease;
    animation: floatAnimation 6s ease-in-out infinite;
}

.hero-product-image-small {
    max-width: 60%;
}

.hero-product-image-large {
    max-width: 130%;
    transform: perspective(1000px) rotateY(-5deg) translateX(10%);
}

.hero-product-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInFromTop 1s ease 0.2s both;
    color: var(--accent-yellow);
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.4s both;
    font-weight: 400;
    line-height: 1.8;
}

.hero-text .btn {
    animation: fadeInUp 1s ease 0.6s both;
    transform: scale(1);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-text .btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    pointer-events: none;
}

.hero-prev,
.hero-next {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    pointer-events: auto;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.hero-prev:hover,
.hero-next:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-prev:active,
.hero-next:active {
    transform: scale(0.95);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    position: relative;
    border-top: 4px solid var(--accent-yellow);
}

.features::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 1000 100" fill="rgba(44,90,160,0.05)"><polygon points="0,0 1000,20 1000,100 0,80"/></svg>');
    background-size: cover;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.feature-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(44, 90, 160, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 90, 160, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 90, 160, 0.2);
    border-color: #2c5aa0;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-yellow-dark));
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.feature-content h3 {
    color: #2c5aa0;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

.feature-content p {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Statistics Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: white;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--accent-yellow);
}

.stats-section::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 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="0,0 1000,0 1000,100 0,80"/></svg>');
    background-size: cover;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 193, 7, 0.2);
    border-color: var(--accent-yellow);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(45deg, var(--accent-yellow-light), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background-color: rgba(255, 193, 7, 0.05);
    border-top: 4px solid var(--accent-yellow);
}

.about-section h2 {
    color: #2c5aa0;
    margin-bottom: 30px;
    font-size: 2.8rem;
    font-weight: 700;
    position: relative;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-yellow), var(--accent-yellow-dark));
    border-radius: 2px;
}

.about-section p {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-features {
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--primary-blue);
    font-weight: 600;
}

.about-feature i {
    margin-right: 15px;
    font-size: 1.2rem;
    color: var(--accent-yellow);
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(44, 90, 160, 0.8), rgba(30, 63, 115, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.about-image-container:hover .about-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c5aa0;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: white;
    transform: scale(1.1);
}

/* Products Section */

/* Disable hover video/play overlay in About section */
.about-image-container .about-overlay,
.about-image-container .play-button {
    display: none !important;
}

.products-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: #2c5aa0;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.section-header p {
    color: #666;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(44, 90, 160, 0.2);
    border-color: #2c5aa0;
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    padding: 10px;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(44, 90, 160, 0.8), rgba(30, 63, 115, 0.6));
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

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

.action-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: #2c5aa0;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: white;
    transform: scale(1.1);
}

.product-content {
    padding: 25px;
    text-align: center;
}

.product-category {
    color: #2c5aa0;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.product-content h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 700;
}

.product-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-price {
    color: #2c5aa0;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    position: relative;
}

.testimonials-section::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 1000 100" fill="rgba(44,90,160,0.05)"><polygon points="0,20 1000,0 1000,100 0,80"/></svg>');
    background-size: cover;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #1e3f73);
    border-radius: 20px 20px 0 0;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(44, 90, 160, 0.15);
}

.testimonial-content {
    margin-bottom: 30px;
}

.quote-icon {
    color: #2c5aa0;
    font-size: 2rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.testimonial-content p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #2c5aa0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    color: #2c5aa0;
    font-size: 1.5rem;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 700;
}

.author-info span {
    color: #2c5aa0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 50%, #0f2a4a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.cta-content {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
    position: relative;
    top: 20px;
}

.btn-lg {
    padding: 1px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.1;
}

/* Small Round CTA buttons */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 50px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    line-height: 1;
    box-sizing: border-box;
}

.cta-btn-primary {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.cta-btn-primary:hover {
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
    color: var(--text-dark);
    text-decoration: none;
}

.cta-btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-btn-outline:hover {
    background: white;
    color: #4a5568;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    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;
}

.cta-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.cta-feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cta-feature-content h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 700;
}

.cta-feature-content p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.service-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-yellow);
}

.service-item ul {
    list-style: none;
}

.service-item li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.service-item li:last-child {
    border-bottom: none;
}

/* Supplies Section */
.supplies-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.supplies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.supply-item {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.supply-item:hover {
    transform: translateY(-5px);
}

.supply-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.supply-item h4 {
    color: #333;
    font-size: 1rem;
}

/* Industries Section */
.industries-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1a2e 0%, #16213e 50%, #1a2332 100%);
    position: relative;
    overflow: hidden;
}

.industries-section::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 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.industries-section .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.industries-section .section-header h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.industry-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.industry-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.industry-item:hover::before {
    left: 100%;
}

.industry-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #4fc3f7;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.industry-item:hover .industry-icon {
    background: rgba(79, 195, 247, 0.2);
    border-color: #4fc3f7;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(79, 195, 247, 0.3);
}

.industry-item h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.4;
}

/* News Section */
.news-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.news-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-content h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.news-date {
    color: #2c5aa0;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.news-content p {
    color: #666;
    line-height: 1.6;
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
}

.clients-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.client-logo {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.1);
}

.client-logo img {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

/* Footer */
.footer {
    background-color: #2c5aa0;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-logo {
    max-width: 200px;
    height: auto;
}

.contact-details p {
    margin-bottom: 10px;
    color: #ccc;
}

.contact-details strong {
    color: white;
}

.contact-details a {
    color: #ccc;
    text-decoration: none;
}

.contact-details a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }

    .industry-item {
        padding: 35px 20px;
    }

    .industry-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .industry-item h4 {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 120px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 20px 0;
    }

    .nav-item {
        margin: 10px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

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

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

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        min-width: auto;
        padding: 10px;
    }

    .dropdown-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-content .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        text-align: center;
    }

    .hero {
        margin-top: 150px !important;
        height: auto !important;
        padding: 40px 0 !important;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .hero-text p {
        font-size: 0.95rem;
        max-width: 100%;
        margin-bottom: 25px;
    }

    .hero-image {
        flex: 0 0 auto;
    }

    .hero-product-image {
        max-width: 80%;
        transform: perspective(1000px) rotateY(0deg);
    }

    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .feature-item {
        padding: 20px 10px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .feature-content h3 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .feature-content p {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }

    .products-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .product-card .product-image {
        height: 150px;
    }

    .product-content {
        padding: 12px;
    }

    .product-content h4 {
        font-size: 0.95rem;
    }

    .product-content p {
        font-size: 0.8rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-item {
        padding: 20px 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .supplies-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .industry-item {
        padding: 30px 15px;
    }

    .industry-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .industry-item h4 {
        font-size: 0.8rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .clients-slider {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .filter-buttons {
        justify-content: center;
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    .covid-item {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .covid-item:nth-child(even) .covid-image {
        order: 0;
    }

    .covid-item:nth-child(even) .covid-content {
        order: 0;
    }

    .covid-image img {
        height: 250px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .hero {
        margin-top: 140px !important;
        height: auto !important;
        padding: 30px 0 !important;
    }

    .hero-text h1 {
        font-size: 1.4rem;
    }

    .hero-text p {
        font-size: 0.85rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .about-section h2 {
        font-size: 1.6rem;
    }
}

/* Page Header */
.page-header {
    margin-top: 120px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

/* About Page Specific Styles */
.about-content {
    padding: 80px 0;
}

.about-text {
    margin-bottom: 40px;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-image {
    text-align: center;
    margin-bottom: 40px;
}

.mission-vision {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.mission-content p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.core-values {
    margin-top: 40px;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.core-values h3 {
    color: #2c5aa0;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* Generic content pages (vendor, returns, privacy, price match) */
.content-section {
    padding: 80px 0;
    background: #fff;
}

.content-section .container {
    max-width: 980px;
    margin: 0 auto;
}

.content-section .section-header {
    text-align: left;
    margin-bottom: 24px;
}

.content-section .section-header h2 {
    color: #2c5aa0;
    font-size: 2rem;
    margin-bottom: 8px;
}

.content-section p {
    color: #555;
    line-height: 1.85;
    font-size: 1.06rem;
    margin: 10px 0 16px;
}

.content-section h3 {
    color: #2c5aa0;
    font-weight: 700;
    margin: 26px 0 12px;
    font-size: 1.35rem;
}

.content-section ul {
    list-style: disc;
    padding-left: 22px;
    margin: 0 0 16px;
}

.content-section ol {
    list-style: decimal;
    padding-left: 24px;
    margin: 0 0 16px;
}

.content-section li {
    margin: 6px 0;
}

.content-section a {
    color: #1b75bc;
    text-decoration: none;
    border-bottom: 1px dashed rgba(27, 117, 188, .45);
}

.content-section a:hover {
    color: #155a8d;
    border-bottom-color: #155a8d;
}

@media (max-width: 768px) {
    .content-section {
        padding: 56px 0;
    }

    .content-section .container {
        max-width: 92%;
    }

    .content-section .section-header h2 {
        font-size: 1.6rem;
    }

    .content-section h3 {
        font-size: 1.2rem;
    }

    .content-section p {
        font-size: 1rem;
    }
}


.core-values ul {
    list-style: none;
    padding: 0;
}

.core-values li {
    padding: 10px 0;
    color: #666;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 30px;
}

.core-values li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

.core-values li:last-child {
    border-bottom: none;
}

/* Products Filter */
.products-filter {
    padding: 40px 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 10px 20px;
    background-color: white;
    color: #666;
    border: 2px solid #ddd;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #2c5aa0;
    color: white;
    border-color: #2c5aa0;
}

.search-box {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.search-box input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    border-color: #2c5aa0;
}

.search-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

/* Product Card Enhancements */
.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-yellow);
}

.product-card .price {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.1rem;
}

.product-card:hover .price {
    color: var(--accent-yellow-dark);
}

.product-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* COVID-19 Page Styles */
.covid-intro {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.covid-products {
    padding: 80px 0;
}

.covid-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.covid-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.covid-item:nth-child(even) {
    grid-template-columns: 2fr 1fr;
}

.covid-item:nth-child(even) .covid-image {
    order: 2;
}

.covid-item:nth-child(even) .covid-content {
    order: 1;
}

.covid-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.covid-content h3 {
    color: #2c5aa0;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.covid-content p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

/* Contact CTA */
.contact-cta {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.cta-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.cta-info h3 {
    color: #2c5aa0;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.cta-info p {
    color: #666;
    margin-bottom: 10px;
}

.office-hours {
    margin-top: 20px;
}

.office-hours p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.cta-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.cta-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #2c5aa0;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-social a:hover {
    background-color: #1e3f73;
    transform: translateY(-3px);
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-container h2 {
    color: #2c5aa0;
    margin-bottom: 15px;
    font-size: 2rem;
}

.contact-form-container p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #dc3545;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: #2c5aa0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.contact-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-card a {
    color: #2c5aa0;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-card .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.contact-card .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #2c5aa0;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card .social-links a:hover {
    background-color: #1e3f73;
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    color: #2c5aa0;
    margin-bottom: 40px;
    font-size: 2rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


/* Hide product hover action icons (eye and heart) */
.product-actions {
    display: none !important;
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

/* Tablet and below (768px) */
/* Footer Styles */
.footer {
    background-color: var(--light-bg);
    color: var(--text-dark);
    padding: 70px 0 30px;
    border-top: 2px solid #eee;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    color: var(--primary-blue-dark);
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-blue);
}
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-yellow);
    padding-left: 5px;
}

.contact-details p {
    margin-bottom: 15px;
    color: var(--text-gray);
}

.contact-details a {
    color: var(--primary-blue-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--accent-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #eee;
    color: var(--text-gray);
}

@media (max-width: 768px) {

    /* Header adjustments */
    .top-bar {
        font-size: 12px;
        padding: 8px 0;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .contact-info span {
        margin-right: 0;
    }

    .logo {
        height: 50px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 120px;
        left: -100%;
        width: 100%;
        background-color: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        padding: 20px;
        gap: 10px;
    }

    .nav-item {
        margin: 0;
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link {
        display: block;
        padding: 10px 15px;
    }

    /* Hero Section - Mobile Responsive */
    .hero {
        margin-top: 170px !important;
        height: auto;
        min-height: 500px;
        padding: 80px 0 60px 0 !important;
    }

    .hero-content .container {
        flex-direction: column;
        gap: 30px;
    }

    .hero-text {
        flex: 1;
        text-align: center;
        padding-top: 10px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
        line-height: 1.4;
        padding: 5px 10px;
    }

    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 25px;
        max-width: 100%;
    }

    .hero-image {
        flex: 1;
        width: 100%;
        max-width: 240px;
        margin: 0 auto;
    }

    .hero-product-image {
        max-width: 100%;
        max-height: 350px;
        height: auto;
        object-fit: contain;
    }

    .hero-prev,
    .hero-next {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .hero-nav {
        padding: 0 20px;
    }

    /* Features Section */
    .features {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Stats Section */
    .stats-section {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    /* About Section */
    .about-section {
        padding: 80px 0;
    }

    .row {
        flex-direction: column;
    }

    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .about-section h2 {
        font-size: 2.2rem;
        text-align: center;
    }

    .about-section h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-section p {
        font-size: 1rem;
    }

    /* Products Section */
    .products-section {
        padding: 60px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Services Section */
    .services-section {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Supplies Section */
    .supplies-section {
        padding: 60px 0;
    }

    .supplies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Industries Section */
    .industries-section {
        padding: 60px 0;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* News Section */
    .news-section {
        padding: 60px 0;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    /* Clients Section */
    .clients-section {
        padding: 60px 0;
    }

    /* CTA Section */
    .cta-section {
        padding: 60px 0;
    }

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

    .cta-text h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-features {
        grid-template-columns: 1fr;
    }

    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {

    /* Container padding */
    .container {
        padding: 0 15px;
    }

    /* Hero Section - Small Mobile */
    .hero {
        margin-top: 160px !important;
        min-height: 450px;
        padding: 70px 0 50px 0 !important;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        line-height: 1.4;
        padding: 5px 10px;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .hero-image {
        max-width: 200px;
    }

    .hero-product-image {
        max-height: 300px;
        object-fit: contain;
    }

    .hero-prev,
    .hero-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .hero-nav {
        padding: 0 10px;
    }

    /* Buttons */
    .btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    .btn-lg {
        padding: 12px 30px;
        font-size: 1rem;
    }

    /* Stats Section */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    /* Feature Items */
    .feature-item {
        padding: 30px 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .feature-content h3 {
        font-size: 1.1rem;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .about-section h2 {
        font-size: 1.8rem;
    }

    /* Supplies Grid */
    .supplies-grid {
        grid-template-columns: 1fr;
    }

    /* Industries Grid */
    .industries-grid {
        grid-template-columns: 1fr;
    }

    /* CTA Section */
    .cta-text h2 {
        font-size: 1.6rem;
    }

    .cta-text p {
        font-size: 0.95rem;
    }

    .cta-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}