/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Navbar styles */
.navbar {
    background: #d8d5d5;
    height: 85px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 55px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Logo styles */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #003366;
    font-size: 24px;
    font-weight: bold;
}

.logo img {
    height: 80px;
    margin-right: 10px;
}

/* Navigation links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li a {
    color: #003366;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #0066cc;
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #bdbaba;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 8px;
    top: 100%;
    left: 0;
    padding: 10px 0;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.dropdown-content a {
    color: #003366;
    padding: 8px 18px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: #0066cc;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Hamburger menu */
.hamburger {
    display: none;
    cursor: pointer;
}

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

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* Slider styles */
.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 85px;
    /* Account for fixed navbar */
}

.slider {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    position: relative;
    width: 33.333%;
    height: 100%;
}

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

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    animation: fadeInUp 1s ease-out;
}


.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #003366;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0066cc;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.slider-button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Responsive design */
@media screen and (max-width: 968px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 83px;
        flex-direction: column;
        background-color: #bdbaba;
        width: 100%;
        height: calc(100vh - 80px);
        padding: 20px;
        transition: 0.3s;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        gap: 0;
    }

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

    .nav-links li {
        margin: 16px 0;
    }

    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        padding-left: 20px;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .navbar {
        padding: 0 20px;
    }

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

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

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

    .slide-content {
        width: 90%;
        padding: 1.5rem;
    }

    .slide-content h2 {
        font-size: 1.8rem;
    }

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

    .slider-button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .slide-content h2 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* PPE Section Styles */
.ppe-section {
    padding: 40px 20px;
    background-color: #f8f9fa;
}

.ppe-heading {
    text-align: center;
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 40px;
    font-weight: 700;
}

.ppe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.ppe-item {
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.ppe-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ppe-item:hover {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
}

.ppe-item:hover img {
    transform: scale(1.05);
}

/* Responsive Headings */
@media screen and (max-width: 768px) {
    .ppe-heading {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .ppe-heading {
        font-size: 1.6rem;
    }
}

/* Categories Section Styles */
.categories-section {
    padding: 60px 20px;
    background-color: #d5d0d0;
}

.categories-heading {
    text-align: center;
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
}

.categories-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #003366;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card {
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.category-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

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

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-card h3 {
    padding: 20px;
    margin: 0;
    font-size: 1.2rem;
    color: #003366;
    text-align: center;
    background: #fff;
    transition: color 0.3s ease;
}

.category-card:hover h3 {
    color: #0066cc;
}

/* Responsive Design for Categories Section */
@media screen and (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-heading {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .categories-section {
        padding: 40px 15px;
    }

    .categories-heading {
        font-size: 1.8rem;
    }

    .category-card h3 {
        font-size: 1.1rem;
        padding: 15px;
    }
}

@media screen and (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .categories-heading {
        font-size: 1.6rem;
    }

    .category-card h3 {
        font-size: 1rem;
        padding: 12px;
    }
}

/* Info Cards Section Styles */
.info-cards-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.info-cards-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-header {
    margin-bottom: 20px;
    position: relative;
}

.header-line {
    height: 3px;
    width: 50px;
    background: #003366;
    margin-bottom: 15px;
    transition: width 0.3s ease;
}

.info-card:hover .header-line {
    width: 80px;
}

.card-header h2 {
    color: #003366;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.card-content p+p {
    margin-top: 15px;
}

/* Responsive Design for Info Cards */
@media screen and (max-width: 1200px) {
    .info-cards-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

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

@media screen and (max-width: 992px) {
    .info-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-card:last-child {
        grid-column: span 2;
    }
}

@media screen and (max-width: 768px) {
    .info-cards-section {
        padding: 60px 15px;
    }

    .info-cards-container {
        grid-template-columns: 1fr;
    }

    .info-card:last-child {
        grid-column: span 1;
    }

    .card-content {
        padding: 25px;
    }

    .card-header h2 {
        font-size: 1.4rem;
    }

    .card-content p {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .info-cards-section {
        padding: 40px 15px;
    }

    .card-content {
        padding: 20px;
    }

    .card-header h2 {
        font-size: 1.3rem;
    }
}

/* Footer Styles */
.footer {
    background-color: #003366;
    color: #fff;
    padding-top: 60px;
}

.footer-content {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #0066cc;
}

/* Contact Info Styles */
.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info li i {
    margin-right: 10px;
    color: #0066cc;
}

/* Business Hours Styles */
.timing-info {
    list-style: none;
    padding: 0;
}

.timing-info li {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.timing-info .day {
    color: #0066cc;
    font-weight: 600;
}

.timing-info .time {
    margin-top: 3px;
}

/* Quick Links Styles */
.quick-links {
    list-style: none;
    padding: 0;
}

.quick-links li {
    margin-bottom: 12px;
}

.quick-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.quick-links a:hover {
    color: #0066cc;
    transform: translateX(5px);
}

/* Smooth scroll animation for all anchor links */
a[href^="#"] {
    transition: all 0.3s ease;
}

a[href^="#"]:hover {
    color: #0066cc;
}

/* Footer Bottom Styles */
.footer-bottom {
    margin-top: 60px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #0066cc;
}

/* Footer Logo and About Section */
.footer-about {
    grid-column: span 2;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: #fff;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Update responsive styles */
@media screen and (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-about {
        grid-column: span 3;
    }
}

@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-about {
        grid-column: span 1;
        text-align: center;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-description {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 480px) {
    .footer {
        padding-top: 30px;
    }

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

    .footer-bottom {
        margin-top: 30px;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* Add at the very top of the file */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
    /* This accounts for the fixed navbar height */
}

/* Assembly Gloves Hero Section */
.assembly-hero {
    margin-top: 85px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 2rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-text {
    flex: 1;
    padding-right: 2rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: #003366;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    font-size: 1.5rem;
    color: #003366;
}

.feature span {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #003366;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #003366;
}

.cta-button:hover {
    background-color: transparent;
    color: #003366;
}

@media screen and (max-width: 968px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
    }

    .hero-image {
        margin-top: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

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

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .assembly-hero {
        padding: 2rem 1rem;
    }

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

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

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

/* Products Section Styles */
.products-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #003366;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

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

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

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

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    color: #003366;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.product-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.product-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #003366;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.product-btn:hover {
    background-color: #0066cc;
    transform: translateY(-2px);
}

/* Animation for staggered card appearance */
.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.3s;
}

.product-card:nth-child(4) {
    animation-delay: 0.4s;
}

.product-card:nth-child(5) {
    animation-delay: 0.5s;
}

.product-card:nth-child(6) {
    animation-delay: 0.6s;
}

.product-card:nth-child(7) {
    animation-delay: 0.7s;
}

.product-card:nth-child(8) {
    animation-delay: 0.8s;
}

.product-card:nth-child(9) {
    animation-delay: 0.9s;
}

.product-card:nth-child(10) {
    animation-delay: 1s;
}

.product-card:nth-child(11) {
    animation-delay: 1.1s;
}

.product-card:nth-child(12) {
    animation-delay: 1.2s;
}

.product-card:nth-child(13) {
    animation-delay: 1.3s;
}

.product-card:nth-child(14) {
    animation-delay: 1.4s;
}

.product-card:nth-child(15) {
    animation-delay: 1.5s;
}

.product-card:nth-child(16) {
    animation-delay: 1.6s;
}

.product-card:nth-child(17) {
    animation-delay: 1.7s;
}

.product-card:nth-child(18) {
    animation-delay: 1.8s;
}

.product-card:nth-child(19) {
    animation-delay: 1.9s;
}

.product-card:nth-child(20) {
    animation-delay: 2s;
}

.product-card:nth-child(21) {
    animation-delay: 2.1s;
}

.product-card:nth-child(22) {
    animation-delay: 2.2s;
}

.product-card:nth-child(23) {
    animation-delay: 2.3s;
}

.product-card:nth-child(24) {
    animation-delay: 2.4s;
}

.product-card:nth-child(25) {
    animation-delay: 2.5s;
}

.product-card:nth-child(26) {
    animation-delay: 2.6s;
}

.product-card:nth-child(27) {
    animation-delay: 2.7s;
}

.product-card:nth-child(28) {
    animation-delay: 2.8s;
}

.product-card:nth-child(29) {
    animation-delay: 2.9s;
}

.product-card:nth-child(30) {
    animation-delay: 3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1;
}

.close-modal:hover {
    color: #003366;
}

.modal-body {
    display: flex;
    padding: 2rem;
    gap: 2rem;
}

.modal-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
}

.modal-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.modal-info {
    flex: 1;
    padding: 1rem;
}

.modal-info h2 {
    color: #003366;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #003366;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-label {
    font-weight: 600;
    color: #003366;
    font-size: 1.1rem;
}

.detail-value {
    color: #333;
    line-height: 1.6;
}

.detail-value p {
    margin: 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

/* Responsive Design for Modal */
@media screen and (max-width: 768px) {
    .modal-body {
        flex-direction: column;
        padding: 1.5rem;
    }

    .modal-image {
        min-width: 100%;
        margin-bottom: 1rem;
    }

    .modal-info h2 {
        font-size: 1.8rem;
    }

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

@media screen and (max-width: 480px) {
    .modal-content {
        width: 95%;
    }

    .modal-body {
        padding: 1rem;
    }

    .modal-info h2 {
        font-size: 1.5rem;
    }

    .detail-row {
        gap: 0.3rem;
    }
}

/* Driver Gloves Hero Section */
.driver-hero {
    margin-top: 85px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 2rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.driver-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.driver-hero .hero-text {
    flex: 1;
    padding-right: 2rem;
}

.driver-hero .hero-text h1 {
    font-size: 3.5rem;
    color: #003366;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.driver-hero .hero-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.driver-hero .hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.driver-hero .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.driver-hero .feature i {
    font-size: 1.5rem;
    color: #003366;
}

.driver-hero .feature span {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.driver-hero .hero-image {
    flex: 1;
    position: relative;
}

.driver-hero .hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.driver-hero .hero-image img:hover {
    transform: scale(1.02);
}

.driver-hero .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #003366;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #003366;
}

.driver-hero .cta-button:hover {
    background-color: transparent;
    color: #003366;
}

/* Driver Products Section */
.driver-products-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.driver-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.driver-section-header h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 1rem;
}

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

.driver-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.driver-product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.driver-product-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 1rem;
}

.driver-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.driver-product-info {
    padding: 1.5rem;
    text-align: center;
}

.driver-product-info h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.driver-product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, #003366 0%, #002244 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.3);
}

.driver-product-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.4);
    background: linear-gradient(135deg, #002244 0%, #003366 100%);
}

.driver-product-btn i {
    margin-left: 8px;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.driver-product-btn:hover i {
    transform: translateX(3px);
}

/* Responsive Design for Driver Gloves */
@media screen and (max-width: 992px) {
    .driver-hero .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .driver-hero .hero-text {
        padding-right: 0;
    }

    .driver-hero .hero-image {
        margin-top: 2rem;
    }

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

@media screen and (max-width: 768px) {
    .driver-hero .hero-text h1 {
        font-size: 2.5rem;
    }

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

    .driver-hero .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

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

@media screen and (max-width: 576px) {
    .driver-hero {
        padding: 40px 20px;
    }

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

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

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

    .driver-product-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Mechanic Hero Section */
.mechanic-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    margin-top: 85px;
}

.mechanic-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.mechanic-hero .hero-text {
    flex: 1;
    max-width: 600px;
}

.mechanic-hero .hero-text h1 {
    font-size: 2.8rem;
    color: #003366;
    margin-bottom: 20px;
    line-height: 1.2;
}

.mechanic-hero .hero-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.mechanic-hero .hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.mechanic-hero .feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mechanic-hero .feature i {
    font-size: 1.5rem;
    color: #003366;
}

.mechanic-hero .feature span {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.mechanic-hero .hero-image {
    flex: 1;
    max-width: 500px;
}

.mechanic-hero .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.mechanic-hero .hero-image img:hover {
    transform: scale(1.02);
}

.mechanic-hero .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #003366;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #003366;
}

.mechanic-hero .cta-button:hover {
    background-color: transparent;
    color: #003366;
}

/* Responsive styles for mechanic hero */
@media screen and (max-width: 992px) {
    .mechanic-hero .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .mechanic-hero .hero-text {
        max-width: 100%;
    }

    .mechanic-hero .hero-features {
        justify-content: center;
    }

    .mechanic-hero .hero-image {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .mechanic-hero .hero-text h1 {
        font-size: 2.2rem;
    }

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

    .mechanic-hero .hero-features {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 576px) {
    .mechanic-hero {
        padding: 60px 20px;
    }

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

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

    .mechanic-hero .feature {
        flex: 1 1 100%;
        justify-content: center;
    }

    .mechanic-hero .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Mechanic Products Section */
.mechanic-products-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.mechanic-products-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.mechanic-products-section .section-header h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.mechanic-products-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #003366;
}

.mechanic-products-section .section-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.mechanic-products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.mechanic-products-section .product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mechanic-products-section .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.mechanic-products-section .product-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 20px;
}

.mechanic-products-section .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.mechanic-products-section .product-card:hover .product-image img {
    transform: scale(1.1);
}

.mechanic-products-section .product-info {
    padding: 20px;
    text-align: center;
}

.mechanic-products-section .product-info h3 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 10px;
}

.mechanic-products-section .product-info p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.mechanic-products-section .product-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #003366 0%, #002244 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.2);
}

.mechanic-products-section .product-btn:hover {
    background: linear-gradient(135deg, #002244 0%, #003366 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.3);
}

/* Responsive styles for mechanic products section */
@media screen and (max-width: 1200px) {
    .mechanic-products-section .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .mechanic-products-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mechanic-products-section .section-header h2 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    .mechanic-products-section {
        padding: 60px 15px;
    }

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

    .mechanic-products-section .section-header p {
        font-size: 1rem;
    }

    .mechanic-products-section .product-info h3 {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 576px) {
    .mechanic-products-section .products-grid {
        grid-template-columns: 1fr;
    }

    .mechanic-products-section .section-header h2 {
        font-size: 1.8rem;
    }

    .mechanic-products-section .product-image {
        height: 200px;
    }

    .mechanic-products-section .product-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* Mechanic Modal Styles */
#mechanicModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

#mechanicModal .modal-content {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

#mechanicModal .close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1;
}

#mechanicModal .close-modal:hover {
    color: #003366;
}

#mechanicModal .modal-body {
    display: flex;
    padding: 2rem;
    gap: 2rem;
}

#mechanicModal .modal-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
}

#mechanicModal .modal-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

#mechanicModal .modal-info {
    flex: 1;
    padding: 1rem;
}

#mechanicModal .modal-info h2 {
    color: #003366;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #003366;
}

#mechanicModal .product-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#mechanicModal .detail-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

#mechanicModal .detail-label {
    font-weight: 600;
    color: #003366;
    font-size: 1.1rem;
}

#mechanicModal .detail-value {
    color: #333;
    line-height: 1.6;
}

#mechanicModal .detail-value p {
    margin: 0;
}

/* Responsive styles for mechanic modal */
@media screen and (max-width: 768px) {
    #mechanicModal .modal-body {
        flex-direction: column;
        padding: 1.5rem;
    }

    #mechanicModal .modal-image {
        min-width: 100%;
        margin-bottom: 1rem;
    }

    #mechanicModal .modal-info h2 {
        font-size: 1.8rem;
    }

    #mechanicModal .detail-label {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    #mechanicModal .modal-content {
        width: 95%;
    }

    #mechanicModal .modal-body {
        padding: 1rem;
    }

    #mechanicModal .modal-info h2 {
        font-size: 1.5rem;
    }

    #mechanicModal .detail-row {
        gap: 0.3rem;
    }
}

/* Canadian Gloves Hero Section */
.canadian-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    margin-top: 85px;
}

.canadian-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.canadian-hero .hero-text {
    flex: 1;
    max-width: 600px;
}

.canadian-hero .hero-text h1 {
    font-size: 2.8rem;
    color: #003366;
    margin-bottom: 20px;
    line-height: 1.2;
}

.canadian-hero .hero-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.canadian-hero .hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.canadian-hero .feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.canadian-hero .feature i {
    font-size: 1.5rem;
    color: #003366;
}

.canadian-hero .feature span {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.canadian-hero .hero-image {
    flex: 1;
    max-width: 500px;
}

.canadian-hero .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.canadian-hero .hero-image img:hover {
    transform: scale(1.02);
}

.canadian-hero .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #003366;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #003366;
}

.canadian-hero .cta-button:hover {
    background-color: transparent;
    color: #003366;
}

/* Responsive styles for Canadian hero */
@media screen and (max-width: 992px) {
    .canadian-hero .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .canadian-hero .hero-text {
        max-width: 100%;
    }

    .canadian-hero .hero-features {
        justify-content: center;
    }

    .canadian-hero .hero-image {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .canadian-hero {
        padding: 3rem 1rem;
    }

    .canadian-hero h1 {
        font-size: 2.2rem;
    }

    .canadian-hero p {
        font-size: 1rem;
    }

    .canadian-hero .feature {
        padding: 0.6rem 1rem;
    }
}

@media screen and (max-width: 576px) {
    .canadian-hero {
        padding: 60px 20px;
    }

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

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

    .canadian-hero .feature {
        flex: 1 1 100%;
        justify-content: center;
    }

    .canadian-hero .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Canadian Products Section */
.canadian-products-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.canadian-products-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.canadian-products-section .section-header h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.canadian-products-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #003366;
}

.canadian-products-section .section-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.canadian-products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.canadian-products-section .product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.canadian-products-section .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.canadian-products-section .product-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 20px;
}

.canadian-products-section .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.canadian-products-section .product-card:hover .product-image img {
    transform: scale(1.1);
}

.canadian-products-section .product-info {
    padding: 20px;
    text-align: center;
}

.canadian-products-section .product-info h3 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 10px;
}

.canadian-products-section .product-info p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.canadian-products-section .product-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #003366 0%, #002244 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.2);
}

.canadian-products-section .product-btn:hover {
    background: linear-gradient(135deg, #002244 0%, #003366 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.3);
}

/* Responsive styles for Canadian products section */
@media screen and (max-width: 1200px) {
    .canadian-products-section .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .canadian-products-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .canadian-products-section .section-header h2 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    .canadian-products-section {
        padding: 60px 15px;
    }

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

    .canadian-products-section .section-header p {
        font-size: 1rem;
    }

    .canadian-products-section .product-info h3 {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 576px) {
    .canadian-products-section .products-grid {
        grid-template-columns: 1fr;
    }

    .canadian-products-section .section-header h2 {
        font-size: 1.8rem;
    }

    .canadian-products-section .product-image {
        height: 200px;
    }

    .canadian-products-section .product-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* Canadian Modal Styles */
#canadianModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

#canadianModal .modal-content {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

#canadianModal .close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1;
}

#canadianModal .close-modal:hover {
    color: #003366;
}

#canadianModal .modal-body {
    display: flex;
    padding: 2rem;
    gap: 2rem;
}

#canadianModal .modal-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
}

#canadianModal .modal-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

#canadianModal .modal-info {
    flex: 1;
    padding: 1rem;
}

#canadianModal .modal-info h2 {
    color: #003366;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #003366;
}

#canadianModal .product-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#canadianModal .detail-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

#canadianModal .detail-label {
    font-weight: 600;
    color: #003366;
    font-size: 1.1rem;
}

#canadianModal .detail-value {
    color: #333;
    line-height: 1.6;
}

#canadianModal .detail-value p {
    margin: 0;
}

/* Responsive styles for Canadian modal */
@media screen and (max-width: 768px) {
    #canadianModal .modal-body {
        flex-direction: column;
        padding: 1.5rem;
    }

    #canadianModal .modal-image {
        min-width: 100%;
        margin-bottom: 1rem;
    }

    #canadianModal .modal-info h2 {
        font-size: 1.8rem;
    }

    #canadianModal .detail-label {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    #canadianModal .modal-content {
        width: 95%;
    }

    #canadianModal .modal-body {
        padding: 1rem;
    }

    #canadianModal .modal-info h2 {
        font-size: 1.5rem;
    }

    #canadianModal .detail-row {
        gap: 0.3rem;
    }
}

/* Hi-Viz Hero Section */
.hi-viz-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    margin-top: 85px;
}

.hi-viz-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hi-viz-hero .hero-text {
    flex: 1;
    max-width: 600px;
}

.hi-viz-hero .hero-text h1 {
    font-size: 2.8rem;
    color: #003366;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hi-viz-hero .hero-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hi-viz-hero .hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.hi-viz-hero .feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hi-viz-hero .feature i {
    font-size: 1.5rem;
    color: #003366;
}

.hi-viz-hero .feature span {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.hi-viz-hero .hero-image {
    flex: 1;
    max-width: 500px;
}

.hi-viz-hero .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.hi-viz-hero .hero-image img:hover {
    transform: scale(1.02);
}

.hi-viz-hero .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #003366;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #003366;
}

.hi-viz-hero .cta-button:hover {
    background-color: transparent;
    color: #003366;
}

/* Responsive styles for Hi-Viz hero */
@media screen and (max-width: 992px) {
    .hi-viz-hero .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hi-viz-hero .hero-text {
        max-width: 100%;
    }

    .hi-viz-hero .hero-features {
        justify-content: center;
    }

    .hi-viz-hero .hero-image {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .hi-viz-hero .hero-text h1 {
        font-size: 2.2rem;
    }

    .hi-viz-hero .hero-text p {
        font-size: 1rem;
    }

    .hi-viz-hero .hero-features {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 576px) {
    .hi-viz-hero {
        padding: 60px 20px;
    }

    .hi-viz-hero .hero-text h1 {
        font-size: 1.8rem;
    }

    .hi-viz-hero .hero-text p {
        font-size: 0.9rem;
    }

    .hi-viz-hero .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .hi-viz-hero .feature {
        justify-content: center;
    }
}

/* Hi-Viz Products Section */
.hi-viz-products-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.hi-viz-products-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.hi-viz-products-section .section-header h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.hi-viz-products-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #003366;
}

.hi-viz-products-section .section-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.hi-viz-products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.hi-viz-products-section .product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hi-viz-products-section .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hi-viz-products-section .product-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 20px;
}

.hi-viz-products-section .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.hi-viz-products-section .product-card:hover .product-image img {
    transform: scale(1.1);
}

.hi-viz-products-section .product-info {
    padding: 20px;
    text-align: center;
}

.hi-viz-products-section .product-info h3 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 10px;
}

.hi-viz-products-section .product-info p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.hi-viz-products-section .product-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #003366 0%, #002244 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.2);
}

.hi-viz-products-section .product-btn:hover {
    background: linear-gradient(135deg, #002244 0%, #003366 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.3);
}

/* Responsive styles for Hi-Viz products section */
@media screen and (max-width: 1200px) {
    .hi-viz-products-section .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .hi-viz-products-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hi-viz-products-section .section-header h2 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    .hi-viz-products-section {
        padding: 60px 15px;
    }

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

    .hi-viz-products-section .section-header p {
        font-size: 1rem;
    }

    .hi-viz-products-section .product-info h3 {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 576px) {
    .hi-viz-products-section .products-grid {
        grid-template-columns: 1fr;
    }

    .hi-viz-products-section .section-header h2 {
        font-size: 1.8rem;
    }

    .hi-viz-products-section .product-image {
        height: 200px;
    }

    .hi-viz-products-section .product-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* Winter Hero Section */
.winter-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    margin-top: 85px;
}

.winter-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.winter-hero .hero-text {
    flex: 1;
    max-width: 600px;
}

.winter-hero .hero-text h1 {
    font-size: 2.8rem;
    color: #003366;
    margin-bottom: 20px;
    line-height: 1.2;
}

.winter-hero .hero-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.winter-hero .hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.winter-hero .feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.winter-hero .feature i {
    font-size: 1.5rem;
    color: #003366;
}

.winter-hero .feature span {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.winter-hero .hero-image {
    flex: 1;
    max-width: 500px;
}

.winter-hero .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.winter-hero .hero-image img:hover {
    transform: scale(1.02);
}

.winter-hero .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #003366;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #003366;
}

.winter-hero .cta-button:hover {
    background-color: transparent;
    color: #003366;
}

/* Responsive styles for winter hero */
@media screen and (max-width: 992px) {
    .winter-hero .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .winter-hero .hero-text {
        max-width: 100%;
    }

    .winter-hero .hero-features {
        justify-content: center;
    }

    .winter-hero .hero-image {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .winter-hero .hero-text h1 {
        font-size: 2.2rem;
    }

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

    .winter-hero .hero-features {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 576px) {
    .winter-hero {
        padding: 60px 20px;
    }

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

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

    .winter-hero .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .winter-hero .feature {
        justify-content: center;
    }
}

/* Winter Products Section */
.winter-products-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.winter-products-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.winter-products-section .section-header h2 {
    font-size: 2.2rem;
    color: #003366;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.winter-products-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #003366;
}

.winter-products-section .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.winter-products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.winter-products-section .product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.winter-products-section .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.winter-products-section .product-image {
    height: 250px;
    overflow: hidden;
}

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

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

.winter-products-section .product-info {
    padding: 20px;
    text-align: center;
}

.winter-products-section .product-info h3 {
    font-size: 1.2rem;
    color: #003366;
    margin-bottom: 15px;
}

.winter-products-section .product-btn {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #003366, #004d99);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.winter-products-section .product-btn:hover {
    background: linear-gradient(135deg, #004d99, #003366);
    transform: translateY(-2px);
}

/* Responsive styles for winter products */
@media screen and (max-width: 1200px) {
    .winter-products-section .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .winter-products-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .winter-products-section .section-header p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .winter-products-section {
        padding: 60px 0;
    }

    .winter-products-section .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .winter-products-section .section-header h2 {
        font-size: 1.8rem;
    }

    .winter-products-section .product-image {
        height: 200px;
    }
}

/* Welding Hero Section */
.welding-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    margin-bottom: 60px;
}

.welding-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.welding-hero .hero-text {
    flex: 1;
    padding-right: 40px;
}

.welding-hero h1 {
    font-size: 3rem;
    color: #003366;
    margin-bottom: 20px;
    font-weight: 700;
}

.welding-hero p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.welding-hero .hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.welding-hero .feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.welding-hero .feature i {
    font-size: 1.5rem;
    color: #003366;
}

.welding-hero .feature span {
    font-size: 1rem;
    color: #333;
}

.welding-hero .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #003366;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #003366;
}

.welding-hero .cta-button:hover {
    background-color: transparent;
    color: #003366;
}

.welding-hero .hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.welding-hero .hero-image img {
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

/* Responsive Design for Welding Hero */
@media (max-width: 992px) {
    .welding-hero .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .welding-hero .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .welding-hero .hero-features {
        justify-content: center;
    }

    .welding-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .welding-hero {
        padding: 60px 0;
    }

    .welding-hero h1 {
        font-size: 2rem;
    }

    .welding-hero p {
        font-size: 1rem;
    }

    .welding-hero .hero-features {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .welding-hero {
        padding: 40px 0;
    }

    .welding-hero h1 {
        font-size: 1.8rem;
    }

    .welding-hero .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Welding Products Section */
.welding-products-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.welding-products-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.welding-products-section .section-header h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.welding-products-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #003366;
}

.welding-products-section .section-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.welding-products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.welding-products-section .product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.welding-products-section .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.welding-products-section .product-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 20px;
}

.welding-products-section .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.welding-products-section .product-card:hover .product-image img {
    transform: scale(1.1);
}

.welding-products-section .product-info {
    padding: 20px;
    text-align: center;
}

.welding-products-section .product-info h3 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 10px;
}

.welding-products-section .product-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #003366 0%, #002244 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.2);
}

.welding-products-section .product-btn:hover {
    background: linear-gradient(135deg, #002244 0%, #003366 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.3);
}

/* Responsive styles for welding products section */
@media screen and (max-width: 1200px) {
    .welding-products-section .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .welding-products-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .welding-products-section .section-header h2 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    .welding-products-section {
        padding: 60px 15px;
    }

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

    .welding-products-section .section-header p {
        font-size: 1rem;
    }

    .welding-products-section .product-info h3 {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 576px) {
    .welding-products-section .products-grid {
        grid-template-columns: 1fr;
    }

    .welding-products-section .section-header h2 {
        font-size: 1.8rem;
    }

    .welding-products-section .product-image {
        height: 200px;
    }

    .welding-products-section .product-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* Fitness Hero Section */
.fitness-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 2rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.fitness-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.fitness-hero .hero-text {
    flex: 1;
    max-width: 600px;
}

.fitness-hero h1 {
    font-size: 3.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.fitness-hero p {
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.fitness-hero .hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.fitness-hero .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fitness-hero .feature i {
    font-size: 1.5rem;
    color: #3498db;
}

.fitness-hero .feature span {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 500;
}

.fitness-hero .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.fitness-hero .cta-button:hover {
    background-color: #2980b9;
}

.fitness-hero .hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fitness-hero .hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

/* Responsive Design for Fitness Hero */
@media (max-width: 1024px) {
    .fitness-hero h1 {
        font-size: 3rem;
    }

    .fitness-hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .fitness-hero {
        padding: 3rem 1.5rem;
    }

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

    .fitness-hero .hero-text {
        max-width: 100%;
    }

    .fitness-hero h1 {
        font-size: 2.5rem;
    }

    .fitness-hero .hero-features {
        justify-content: center;
    }

    .fitness-hero .hero-image {
        margin-top: 2rem;
    }

    .fitness-hero .hero-image img {
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .fitness-hero {
        padding: 2rem 1rem;
    }

    .fitness-hero h1 {
        font-size: 2rem;
    }

    .fitness-hero p {
        font-size: 1rem;
    }

    .fitness-hero .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .fitness-hero .hero-image img {
        max-height: 300px;
    }
}

/* Synthetic Hero Section */
.synthetic-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    margin-top: 85px;
}

.synthetic-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.synthetic-hero .hero-text {
    flex: 1;
    max-width: 600px;
}

.synthetic-hero .hero-text h1 {
    font-size: 2.8rem;
    color: #003366;
    margin-bottom: 20px;
    line-height: 1.2;
}

.synthetic-hero .hero-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.synthetic-hero .hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.synthetic-hero .feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.synthetic-hero .feature i {
    font-size: 1.5rem;
    color: #003366;
}

.synthetic-hero .feature span {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.synthetic-hero .hero-image {
    flex: 1;
    max-width: 500px;
}

.synthetic-hero .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.synthetic-hero .hero-image img:hover {
    transform: scale(1.02);
}

.synthetic-hero .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #003366;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #003366;
}

.synthetic-hero .cta-button:hover {
    background-color: transparent;
    color: #003366;
}

/* Responsive styles for synthetic hero */
@media screen and (max-width: 992px) {
    .synthetic-hero .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .synthetic-hero .hero-text {
        max-width: 100%;
    }

    .synthetic-hero .hero-features {
        justify-content: center;
    }

    .synthetic-hero .hero-image {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .synthetic-hero .hero-text h1 {
        font-size: 2.2rem;
    }

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

    .synthetic-hero .hero-features {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 576px) {
    .synthetic-hero {
        padding: 60px 20px;
    }

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

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

    .synthetic-hero .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .synthetic-hero .feature {
        justify-content: center;
    }
}

/* Synthetic Products Section */
.synthetic-products-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.synthetic-products-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.synthetic-products-section .section-header h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.synthetic-products-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #003366;
}

.synthetic-products-section .section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.synthetic-products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.synthetic-products-section .product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.synthetic-products-section .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.synthetic-products-section .product-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 20px;
}

.synthetic-products-section .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.synthetic-products-section .product-card:hover .product-image img {
    transform: scale(1.1);
}

.synthetic-products-section .product-info {
    padding: 20px;
    text-align: center;
}

.synthetic-products-section .product-info h3 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 10px;
}

.synthetic-products-section .product-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #003366 0%, #002244 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.2);
}

.synthetic-products-section .product-btn:hover {
    background: linear-gradient(135deg, #002244 0%, #003366 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.3);
}

/* Responsive Design for Synthetic Section */
@media screen and (max-width: 1200px) {
    .synthetic-products-section .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .synthetic-hero .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .synthetic-hero .hero-text {
        max-width: 100%;
    }

    .synthetic-hero .hero-features {
        justify-content: center;
    }

    .synthetic-hero .hero-image {
        margin-top: 2rem;
    }

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

@media screen and (max-width: 768px) {
    .synthetic-hero {
        padding: 3rem 1.5rem;
    }

    .synthetic-hero h1 {
        font-size: 2.5rem;
    }

    .synthetic-hero p {
        font-size: 1.1rem;
    }

    .synthetic-hero .hero-features {
        flex-wrap: wrap;
    }

    .synthetic-products-section {
        padding: 3rem 1.5rem;
    }

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

@media screen and (max-width: 576px) {
    .synthetic-hero {
        padding: 2rem 1rem;
    }

    .synthetic-hero h1 {
        font-size: 2rem;
    }

    .synthetic-hero p {
        font-size: 1rem;
    }

    .synthetic-hero .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

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

    .synthetic-products-section .section-header h2 {
        font-size: 1.8rem;
    }

    .synthetic-products-section .product-image {
        height: 200px;
    }
}

/* Leather Hero Section */
.leather-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    margin-top: 85px;
}

.leather-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.leather-hero .hero-text {
    flex: 1;
    max-width: 600px;
}

.leather-hero .hero-text h1 {
    font-size: 2.8rem;
    color: #003366;
    margin-bottom: 20px;
    line-height: 1.2;
}

.leather-hero .hero-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.leather-hero .hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.leather-hero .feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.leather-hero .feature i {
    font-size: 1.5rem;
    color: #003366;
}

.leather-hero .feature span {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.leather-hero .hero-image {
    flex: 1;
    max-width: 500px;
}

.leather-hero .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.leather-hero .hero-image img:hover {
    transform: scale(1.02);
}

.leather-hero .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #003366;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #003366;
}

.leather-hero .cta-button:hover {
    background-color: transparent;
    color: #003366;
}

/* Leather Products Section */
.leather-products-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.leather-products-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.leather-products-section .section-header h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.leather-products-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #003366;
}

.leather-products-section .section-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.leather-products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.leather-products-section .product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.leather-products-section .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.leather-products-section .product-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 20px;
}

.leather-products-section .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.leather-products-section .product-card:hover .product-image img {
    transform: scale(1.1);
}

.leather-products-section .product-info {
    padding: 20px;
    text-align: center;
}

.leather-products-section .product-info h3 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 10px;
}

.leather-products-section .product-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #003366 0%, #002244 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.2);
}

.leather-products-section .product-btn:hover {
    background: linear-gradient(135deg, #002244 0%, #003366 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.3);
}

/* Responsive styles for leather section */
@media screen and (max-width: 1200px) {
    .leather-products-section .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .leather-hero .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .leather-hero .hero-text {
        max-width: 100%;
    }

    .leather-hero .hero-features {
        justify-content: center;
    }

    .leather-hero .hero-image {
        max-width: 100%;
    }

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

@media screen and (max-width: 768px) {
    .leather-hero {
        padding: 60px 20px;
    }

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

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

    .leather-hero .hero-features {
        flex-wrap: wrap;
    }

    .leather-products-section {
        padding: 60px 15px;
    }

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

@media screen and (max-width: 576px) {
    .leather-hero {
        padding: 40px 15px;
    }

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

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

    .leather-hero .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

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

    .leather-products-section .section-header h2 {
        font-size: 1.8rem;
    }

    .leather-products-section .product-image {
        height: 200px;
    }

    .leather-products-section .product-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* Cow Split Leather Hero Section */
.cowsplit-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    margin-top: 85px;
}

.cowsplit-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cowsplit-hero .hero-text {
    flex: 1;
    max-width: 600px;
}

.cowsplit-hero .hero-text h1 {
    font-size: 2.8rem;
    color: #003366;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cowsplit-hero .hero-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cowsplit-hero .hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.cowsplit-hero .feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cowsplit-hero .feature i {
    font-size: 1.5rem;
    color: #003366;
}

.cowsplit-hero .feature span {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.cowsplit-hero .hero-image {
    flex: 1;
    max-width: 500px;
}

.cowsplit-hero .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.cowsplit-hero .hero-image img:hover {
    transform: scale(1.02);
}

.cowsplit-hero .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #003366;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #003366;
}

.cowsplit-hero .cta-button:hover {
    background-color: transparent;
    color: #003366;
}

/* Cow Split Leather Products Section */
.cowsplit-products-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.cowsplit-products-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.cowsplit-products-section .section-header h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.cowsplit-products-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #003366;
}

.cowsplit-products-section .section-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.cowsplit-products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.cowsplit-products-section .product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cowsplit-products-section .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cowsplit-products-section .product-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 20px;
}

.cowsplit-products-section .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.cowsplit-products-section .product-card:hover .product-image img {
    transform: scale(1.1);
}

.cowsplit-products-section .product-info {
    padding: 20px;
    text-align: center;
}

.cowsplit-products-section .product-info h3 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 10px;
}

.cowsplit-products-section .product-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #003366 0%, #002244 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.2);
}

.cowsplit-products-section .product-btn:hover {
    background: linear-gradient(135deg, #002244 0%, #003366 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.3);
}

/* Responsive styles for cow split leather section */
@media screen and (max-width: 1200px) {
    .cowsplit-products-section .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .cowsplit-hero .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .cowsplit-hero .hero-text {
        max-width: 100%;
    }

    .cowsplit-hero .hero-features {
        justify-content: center;
    }

    .cowsplit-hero .hero-image {
        max-width: 100%;
    }

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

@media screen and (max-width: 768px) {
    .cowsplit-hero {
        padding: 60px 20px;
    }

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

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

    .cowsplit-hero .hero-features {
        flex-wrap: wrap;
    }

    .cowsplit-products-section {
        padding: 60px 15px;
    }

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

@media screen and (max-width: 576px) {
    .cowsplit-hero {
        padding: 40px 15px;
    }

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

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

    .cowsplit-hero .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

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

    .cowsplit-products-section .section-header h2 {
        font-size: 1.8rem;
    }

    .cowsplit-products-section .product-image {
        height: 200px;
    }

    .cowsplit-products-section .product-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* Worker Wear Hero Section */
.worker-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    margin-top: 85px;
}

.worker-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.worker-hero .hero-text {
    flex: 1;
    max-width: 600px;
}

.worker-hero .hero-text h1 {
    font-size: 2.8rem;
    color: #003366;
    margin-bottom: 20px;
    line-height: 1.2;
}

.worker-hero .hero-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.worker-hero .hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.worker-hero .feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.worker-hero .feature i {
    font-size: 1.5rem;
    color: #003366;
}

.worker-hero .feature span {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.worker-hero .hero-image {
    flex: 1;
    max-width: 500px;
}

.worker-hero .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.worker-hero .hero-image img:hover {
    transform: scale(1.02);
}

.worker-hero .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #003366;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #003366;
}

.worker-hero .cta-button:hover {
    background-color: transparent;
    color: #003366;
}

/* Worker Wear Products Section */
.worker-products-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.worker-products-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.worker-products-section .section-header h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.worker-products-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #003366;
}

.worker-products-section .section-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.worker-products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.worker-products-section .product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.worker-products-section .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.worker-products-section .product-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 20px;
}

.worker-products-section .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.worker-products-section .product-card:hover .product-image img {
    transform: scale(1.1);
}

.worker-products-section .product-info {
    padding: 20px;
    text-align: center;
}

.worker-products-section .product-info h3 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 10px;
}

.worker-products-section .product-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #003366 0%, #002244 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.2);
}

.worker-products-section .product-btn:hover {
    background: linear-gradient(135deg, #002244 0%, #003366 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.3);
}

/* Responsive styles for worker wear section */
@media screen and (max-width: 1200px) {
    .worker-products-section .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .worker-hero .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .worker-hero .hero-text {
        max-width: 100%;
    }

    .worker-hero .hero-features {
        justify-content: center;
    }

    .worker-hero .hero-image {
        max-width: 100%;
    }

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

@media screen and (max-width: 768px) {
    .worker-hero {
        padding: 60px 20px;
    }

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

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

    .worker-hero .hero-features {
        flex-wrap: wrap;
    }

    .worker-products-section {
        padding: 60px 15px;
    }

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

@media screen and (max-width: 576px) {
    .worker-hero {
        padding: 40px 15px;
    }

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

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

    .worker-hero .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

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

    .worker-products-section .section-header h2 {
        font-size: 1.8rem;
    }

    .worker-products-section .product-image {
        height: 200px;
    }

    .worker-products-section .product-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    padding: 80px 0 40px 0;
    margin-top: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 0 20px;
}

.contact-hero-text h1 {
    font-size: 3rem;
    color: #003366;
    margin-bottom: 18px;
    font-weight: 700;
}

.contact-hero-text p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-hero-svg {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    padding: 24px;
}

@media (max-width: 900px) {
    .contact-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .contact-hero-svg {
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .contact-hero {
        padding: 40px 0 20px 0;
    }

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

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

/* Map Section */
.contact-map-section {
    padding: 20px 0 40px 0;
    background: #f8f9fa;
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

/* Contact Info Section */
.contact-info-section {
    background: #fff;
    padding: 60px 0 40px 0;
}

.contact-info-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-info-item {
    background: #f8f9fa;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    padding: 32px 28px;
    text-align: center;
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 320px;
    margin: 10px 0;
    transition: box-shadow 0.3s;
}

.contact-info-item:hover {
    box-shadow: 0 8px 32px rgba(0, 51, 102, 0.10);
}

.contact-info-item i {
    font-size: 2.2rem;
    color: #003366;
    margin-bottom: 12px;
}

.contact-info-item h3 {
    font-size: 1.2rem;
    color: #003366;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-info-item p {
    color: #444;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .contact-info-grid {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
}

/* Contact Form Section */
.contact-form-section {
    background: #e9ecef;
    padding: 0 0 60px 0;
    position: relative;
}

.form-svg-bg {
    width: 100%;
    overflow: hidden;
    position: absolute;
    top: -1px;
    left: 0;
    z-index: 0;
}

.contact-form {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    padding: 40px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    top: 40px;
}

.contact-form h2 {
    color: #003366;
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
}

.form-group {
    position: relative;
    margin-bottom: 10px;
}

.form-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #003366;
    font-size: 1.1rem;
    opacity: 0.7;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 1.5px solid #cfd8dc;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    background: #f8f9fa;
    outline: none;
    transition: border-color 0.2s;
    margin-bottom: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #003366;
    background: #fff;
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

.contact-submit-btn {
    background: linear-gradient(90deg, #003366 0%, #0066cc 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 2px 8px rgba(0, 51, 102, 0.08);
    transition: background 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-submit-btn i {
    font-size: 1.1rem;
}

.contact-submit-btn:hover {
    background: linear-gradient(90deg, #0066cc 0%, #003366 100%);
    box-shadow: 0 4px 16px rgba(0, 51, 102, 0.13);
}

@media (max-width: 600px) {
    .contact-form {
        padding: 24px 8px 16px 8px;
        top: 20px;
    }

    .contact-form h2 {
        font-size: 1.3rem;
    }
}

/* CE Certification Hero Section */
.cert-hero {
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    padding: 70px 0 30px 0;
    margin-top: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-hero-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 0 20px;
}

.cert-hero-icon {
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-hero-icon i {
    font-size: 3rem;
    color: #003366;
}

.cert-hero-text h1 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 12px;
    font-weight: 700;
}

.cert-hero-text p {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 800px) {
    .cert-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }

    .cert-hero-icon {
        margin: 0 auto;
    }

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

@media (max-width: 500px) {
    .cert-hero {
        padding: 40px 0 15px 0;
    }

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

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

/* CE Certification Details Section */
.cert-details-section {
    background: #f8f9fa;
    padding: 40px 0 60px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.cert-block {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    padding: 32px 28px;
    max-width: 700px;
    width: 90%;
    margin: 0 auto;
    transition: box-shadow 0.3s;
    position: relative;
}

.cert-block:hover {
    box-shadow: 0 8px 32px rgba(0, 51, 102, 0.10);
}

.cert-block h2, .cert-block h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #003366;
    margin-bottom: 14px;
    font-weight: 700;
}

.cert-block h2 {
    font-size: 1.5rem;
}

.cert-block h3 {
    font-size: 1.2rem;
}

.cert-block i {
    color: #0066cc;
    font-size: 1.3em;
}

.cert-block p, .cert-block ul {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5em;
}

.cert-block ul {
    margin: 0 0 0 1.2em;
    padding: 0;
    list-style-type: disc;
}

.cert-block li {
    margin-bottom: 0.4em;
}

@media (max-width: 600px) {
    .cert-block {
        padding: 18px 8px;
        font-size: 0.95rem;
    }

    .cert-block h2 {
        font-size: 1.1rem;
    }

    .cert-block h3 {
        font-size: 1rem;
    }
}

/* Certificate Images Section Styles */
.cert-images-section {
    padding: 40px 20px;
    background-color: #f8f9fa;
}

.cert-images-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cert-image {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.cert-image:hover {
    transform: translateY(-5px);
}

.cert-image img {
    width: 100%;
    height: 350px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.cert-image p {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 768px) {
    .cert-images-container {
        flex-direction: column;
        align-items: center;
    }

    .cert-image {
        width: 100%;
        max-width: 60%;
    }
}