:root {
    --primary-blue: #02365D;    /* Text color */
    --secondary-blue: #034275;  /* Slightly lighter for hover states */
    --primary-orange: #FF9514;  /* Buttons and accents */
    --secondary-orange: #ffaa42; /* Hover state for orange */
    --light-blue-bg: #f0f7ff;   /* Light background */
    --dark-blue: #02365D;       /* Dark background */
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--primary-blue);
}

/* Navigation styles */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 2rem;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
    padding: 0.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

/* Logo styles */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 60px;
    width: auto;
    padding: 5px;
}

.company-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 2px;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    position: relative;
    padding: 0 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .company-name {
        font-size: 1.1rem;
        letter-spacing: 1.5px;
        font-weight: 700;
    }
}

/* For larger screens */
@media (min-width: 1024px) {
    .logo img {
        height: 70px;
    }
}

/* For mobile screens */
@media (max-width: 768px) {
    .logo img {
        height: 50px;
    }
}

/* Hero Section */
.hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-backgrounds .bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    width: 100%;
    height: 100%;
}

.hero-backgrounds .bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(2, 54, 93, 0.2), rgba(2, 54, 93, 0.2));
}

.hero-backgrounds .bg.active {
    opacity: 1;
}

.hero-content {
    max-width: 800px;
    padding: 1.5rem;
    z-index: 2;
    position: relative;
}

.hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Dynamic Text Styles */
.dynamic-text {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.dynamic-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    min-height: 50px;
}

.prefix-text {
    margin: 0;
    padding: 0;
    color: #ffffff;
}

.text-rotate {
    overflow: hidden;
    color: var(--primary-orange);
    position: relative;
    min-height: 30px;
    display: inline-block;
    width: 180px;
}

.text-rotate span {
    display: block;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease-in-out;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    visibility: hidden;
    line-height: 1.4;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.text-rotate span.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Updated Animations */
@keyframes rotate {
    0%, 15% {
        transform: translateY(0);
        opacity: 1;
    }
    18%, 20% {
        opacity: 0;
    }
    20%, 35% {
        transform: translateY(-100%);
        opacity: 1;
    }
    38%, 40% {
        opacity: 0;
    }
    40%, 55% {
        transform: translateY(-200%);
        opacity: 1;
    }
    58%, 60% {
        opacity: 0;
    }
    60%, 75% {
        transform: translateY(-300%);
        opacity: 1;
    }
    78%, 80% {
        opacity: 0;
    }
    80%, 95% {
        transform: translateY(-400%);
        opacity: 1;
    }
    98%, 100% {
        opacity: 0;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background-color: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.cta-button:hover {
    background-color: var(--secondary-orange);
}

/* Featured Menu Section */
.featured-menu {
    padding: 4rem 2rem;
    background: var(--light-blue-bg);
}

.featured-menu h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-item h3 {
    margin: 1rem 0;
    font-size: 1.3rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.menu-item p {
    color: var(--primary-blue);
    padding: 0 1rem 1rem;
    font-size: 0.95rem;
}

/* Mobile Responsive for Featured Menu */
@media (max-width: 768px) {
    .featured-menu {
        padding: 2rem 1rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .menu-item {
        max-width: 100%;
    }

    .menu-item img {
        height: 180px;
    }

    .menu-item h3 {
        font-size: 1.2rem;
        padding: 1rem;
    }

    .menu-item p {
        font-size: 0.9rem;
        padding: 0 1rem 1rem;
    }
}

/* Small Mobile Screens */
@media (max-width: 480px) {
    .featured-menu {
        padding: 1.5rem 0.8rem;
    }

    .menu-item img {
        height: 160px;
    }
}

/* Features Section */
.features {
    padding: 3rem 2rem;
    background-color: var(--light-blue-bg);
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature i {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature p {
    color: var(--primary-blue);
    font-size: 0.95rem;
}

/* About Us Section */
.about-us {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.about-us .container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-us h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.about-content {
    line-height: 1.8;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-weight: 600;
}

.mission-vision {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--light-blue-bg);
    border-radius: 10px;
}

.mission-vision h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.values {
    text-align: center;
    margin: 2rem 0;
}

.values h4 {
    color: var(--primary-orange);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mission-vision p {
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.vision-statement {
    font-weight: 600;
    color: var(--primary-blue) !important;
    font-size: 1.2rem;
    text-align: center;
    padding: 1rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-us {
        padding: 3rem 1rem;
    }

    .about-us h2 {
        font-size: 2rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    .mission-vision {
        padding: 1.5rem;
    }

    .mission-vision h3 {
        font-size: 1.75rem;
    }

    .values h4 {
        font-size: 1.25rem;
    }
} 

/* About Page Specific Styles */
.about-hero {
    height: 60vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                      url('https://images.unsplash.com/photo-1532187863486-abf9dbad1b69');
}

.about-main {
    padding: 5rem 2rem;
}

.about-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.mission-vision-section {
    background-color: var(--light-blue-bg);
    padding: 5rem 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--primary-blue);
}

.core-values {
    padding: 3rem 2rem;
}

.core-values h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.experience {
    background-color: var(--light-blue-bg);
    padding: 5rem 2rem;
}

.experience h2 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.experience-list {
    list-style: none;
    margin-top: 2rem;
}

.experience-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.experience-list i {
    color: var(--primary-orange);
}

/* Active nav link */
.nav-links a.active {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
} 

/* Footer Styles */
footer {
    background-color: var(--primary-blue);
    color: white;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p, 
.footer-section a {
    color: #ffffff;
    margin-bottom: 0.5rem;
    display: block;
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--primary-orange);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Navigation Icons Styles */
.nav-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-icon {
    font-size: 1rem;
    color: var(--primary-orange);
    transition: color 0.3s ease;
}

/* For mobile responsiveness */
@media (max-width: 768px) {
    .nav-icon {
        font-size: 1rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .featured-menu h2,
    .features h2 {
        font-size: 1.8rem;
    }

    .menu-item h3,
    .feature h3 {
        font-size: 1.2rem;
    }
}

/* About Page Additional Styles */
.about-expertise,
.about-commitment {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(2, 54, 93, 0.03);
    border-radius: 8px;
}

.about-expertise h3,
.about-commitment h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-orange);
}

.expertise-list {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 1rem;
}

.expertise-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.expertise-list i {
    color: var(--primary-orange);
    font-size: 1rem;
}

.commitment-highlight {
    margin-top: 1rem;
    padding: 1rem;
    border-left: 3px solid var(--primary-orange);
    background: rgba(255, 149, 20, 0.05);
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-expertise,
    .about-commitment {
        padding: 1rem;
    }

    .about-expertise h3,
    .about-commitment h3 {
        font-size: 1.3rem;
    }
}

.nav-links a.active,
.nav-links a:hover {
    background-color: var(--primary-blue);
    color: white;
}

.nav-links a.active .nav-icon,
.nav-links a:hover .nav-icon {
    color: white;
}

/* Keep orange color only for non-active hover state */
.nav-links a:not(.active):hover {
    background-color: var(--primary-orange);
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .nav-links {
        gap: 0.5rem;
    }

    .nav-links a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* Who We Are Section Styling */
.who-we-are {
    margin-bottom: 4rem;
    padding: 1.5rem;
    background: var(--light-blue-bg);
    border-radius: 10px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.who-we-are h2 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
}

.who-we-are h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary-orange);
}

.company-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--primary-blue);
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.company-intro p {
    margin-bottom: 0.8rem;
}

.company-intro p:last-child {
    margin-bottom: 0;
}

.highlight-text {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .who-we-are {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .who-we-are h2 {
        font-size: 1.6rem;
    }

    .company-intro {
        font-size: 1rem;
    }
}

@media (max-width: 1200px) {
    .company-intro {
        white-space: normal;
    }
}

.about-expertise {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light-blue-bg);
    border-radius: 8px;
}

.expertise-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-top: 1.5rem;
}

.expertise-text {
    flex: 1;
}

.expertise-image {
    flex: 1;
    max-width: 50%;
}

.expertise-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-expertise {
        padding: 1rem;
    }

    .expertise-content {
        flex-direction: column;
    }

    .expertise-image {
        max-width: 100%;
        order: -1;  /* Shows image first on mobile */
        margin-bottom: 1.5rem;
    }
}

.about-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-image {
    align-self: flex-start;
    position: sticky;
    top: 2rem;
}

.expertise-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .expertise-image {
        position: static;
        order: -1;
        margin-bottom: 2rem;
    }
}

/* Content Sections Styling */
.content-sections {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    min-height: 400px;
}

.section-grid.reverse {
    direction: rtl;
}

.section-grid.reverse > * {
    direction: ltr;
}

.text-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.section-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }

    .text-content {
        padding: 1rem;
    }

    .section-grid.reverse {
        direction: ltr;
    }

    .section-image {
        order: -1;
    }
}

.about-expertise,
.about-commitment {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.section-image {
    height: 100%;
    display: flex;
    align-items: stretch;
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }

    .section-image {
        height: 300px;
    }

    .text-content {
        padding: 1rem;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 2rem;
    background-color: #fff;
}

.contact-section h1 {
    text-align: center;
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-subtitle {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    background: var(--light-blue-bg);
    padding: 2rem;
    border-radius: 8px;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    background: white;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group label {
    position: absolute;
    left: 0.8rem;
    top: 0.8rem;
    color: #666;
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.5rem;
    background: white;
    padding: 0 0.5rem;
    font-size: 0.8rem;
    color: var(--primary-blue);
}

.required-text {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.submit-btn {
    background: var(--primary-orange);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: var(--secondary-orange);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--light-blue-bg);
    padding: 1.5rem;
    border-radius: 8px;
}

.info-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card i {
    color: var(--primary-orange);
}

.office-hours {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-section h1 {
        font-size: 2rem;
    }
}

/* Products Page Styles */
.products-hero {
    height: 40vh;
    background: none;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.products-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/images/products_main.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        rgba(2, 54, 93, 0.5),
        rgba(2, 54, 93, 0.6)
    );
    z-index: 2;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/images/products_main.jpg');
    background-size: cover;
    background-position: center;
    animation: slowZoom 20s infinite alternate;
    z-index: 0;
}

.products-hero .hero-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    padding: 1.5rem;
}

.products-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.products-hero p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.products-section {
    padding: 4rem 2rem;
}

.products-filter {
    text-align: center;
    margin-bottom: 3rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-blue);
    border-radius: 25px;
    background: transparent;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-blue);
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.origin {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.applications {
    margin-top: 1rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.tag {
    background: var(--light-blue-bg);
    color: var(--primary-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
}

/* Products Layout */
.products-container {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Sidebar Styles */
.products-sidebar {
    flex: 0 0 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1.5rem;
}

.products-sidebar h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-blue-bg);
}

.category-list {
    list-style: none;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--primary-blue);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.category-item:hover {
    background: rgba(255, 149, 20, 0.1);
    border-left: 4px solid #FF9514;
}

.category-item.active {
    background: rgba(255, 149, 20, 0.1);
    border-left: 4px solid #FF9514;
    color: #FF9514;
}

.category-item i:last-child {
    margin-left: auto;
    font-size: 0.8rem;
}

.category-item.active i {
    color: #FF9514;
}

.category-item:hover i {
    color: #FF9514;
}

/* Products Content */
.products-content {
    flex: 1;
    min-height: 600px;
}

.category-header {
    margin-bottom: 2rem;
}

.category-header h2 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.category-header p {
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .products-container {
        flex-direction: column;
    }
    
    .products-sidebar {
        flex: none;
    }
}

/* Subcategories Grid */
.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.subcategory-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.subcategory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 149, 20, 0.2);
    border-color: #FF9514;
    background: rgba(255, 149, 20, 0.1);
}

.subcategory-card i {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.subcategory-card h3 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin: 0;
    transition: color 0.3s ease;
}

.subcategory-card:hover h3 {
    color: #FF9514;
}

.about-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    padding: 4rem 2rem;
    background: var(--light-blue-bg);
}

.about-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-sections {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

ul {
    list-style: none;
    margin-top: 1.5rem;
}

.expertise-commitment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.expertise-commitment-grid .grid-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.expertise-commitment-grid h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .expertise-commitment-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .products-container {
        flex-direction: column;
        padding: 1rem;
    }

    .products-sidebar {
        flex: none;
        margin-bottom: 1rem;
    }

    .category-item {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .subcategories-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .subcategory-card {
        padding: 1rem;
    }

    .subcategory-card i {
        font-size: 1.5rem;
    }

    .subcategory-card h3 {
        font-size: 0.9rem;
    }

    .products-hero {
        height: 30vh;
    }

    .products-hero h1 {
        font-size: 1.8rem;
    }

    .products-hero p {
        font-size: 1rem;
    }

    .category-header h2 {
        font-size: 1.5rem;
    }

    .category-header p {
        font-size: 0.9rem;
    }
}

/* Small Mobile Screens */
@media (max-width: 480px) {
    .products-container {
        padding: 0.5rem;
    }

    .subcategories-grid {
        grid-template-columns: 1fr 1fr;
    }

    .category-item {
        padding: 0.6rem;
        font-size: 0.85rem;
    }

    .products-hero h1 {
        font-size: 1.5rem;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 1000;
        transform: translateY(-200%);
        transition: transform 0.3s ease-in-out;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
        margin: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 0.8rem;
        border-radius: 0;
        justify-content: flex-start;
    }

    .nav-links a:hover {
        background-color: var(--light-blue-bg);
    }

    .nav-links a.active {
        color: var(--primary-orange);
        background-color: var(--light-blue-bg);
    }

    .company-name {
        font-size: 1.1rem;
    }
}

/* Mobile responsive hero */
@media (max-width: 768px) {
    .hero {
        height: 50vh;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .dynamic-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 45vh;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .dynamic-text {
        font-size: 1rem;
    }
}

/* Hero Navigation Arrows */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.hero-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.hero-nav.prev {
    left: 20px;
}

.hero-nav.next {
    right: 20px;
}

.hero-nav i {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Mobile responsive arrows */
@media (max-width: 768px) {
    .hero-nav {
        width: 35px;
        height: 35px;
    }

    .hero-nav.prev {
        left: 10px;
    }

    .hero-nav.next {
        right: 10px;
    }
}