/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    background-color: #F5F5F5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #fff;
    color: #FFFFFF;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #003366;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #FF6600;
    border-bottom-color: #FF6600;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background-color: #FF6600;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #E65C00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 102, 0, 0.3);
}

.btn-secondary {
    background-color: #0066CC;
    color: #FFFFFF;
}

.btn-secondary:hover {
    background-color: #0052A3;
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #003366, #0066CC);
    color: #FFFFFF;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Section Styles */
.section {
    padding: 60px 0;
}

.section.alt-bg {
    background-color: #FFFFFF;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
}

/* Welcome Section */
.welcome-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.welcome-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Commitment Section */
.commitment-section {
    background-color: #FFFFFF;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.commitment-card {
    background: #F5F5F5;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.commitment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.commitment-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.commitment-card h3 {
    font-size: 22px;
    color: #003366;
    margin-bottom: 15px;
}

.commitment-card p {
    color: #666666;
    line-height: 1.6;
}

.motto {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #003366, #0066CC);
    border-radius: 8px;
    color: #FFFFFF;
}

.motto h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.motto-text {
    font-size: 28px;
    font-weight: 600;
    font-style: italic;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.servicess-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /*gap: 30px;*/
}

.service-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    /*height: f200px;*/
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    color: #003366;
    margin-bottom: 15px;
}

.service-card p {
    color: #666666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
}

.service-card ul li {
    padding: 5px 0;
    color: #666666;
    position: relative;
    padding-left: 20px;
}

.service-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF6600;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #FFFFFF;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #F5F5F5;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-quote {
    font-size: 60px;
    color: #FF6600;
    line-height: 1;
    margin-bottom: 10px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 16px;
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: #003366;
    font-size: 18px;
}

.testimonial-author span {
    color: #666666;
    font-size: 14px;
}

/* Footer */
.footer {
    background-color: #003366;
    color: #FFFFFF;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.footer-section p {
    margin-bottom: 10px;
    color: #CCCCCC;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FF6600;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    color: #FFFFFF;
    text-decoration: none;
    padding: 8px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #FF6600;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #CCCCCC;
}

/* About Page - History Section */
/* =========================
   HISTORY SECTION
========================= */
.history-section {
    background: #f8f9fb;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 60px;
}

.history-content {
    max-width: 1000px;
    margin: auto;
}

/* =========================
   TIMELINE
========================= */

.timeline {
    position: relative;
    margin-top: 40px;
    padding-left: 80px;
}

/* Vertical Line */
.timeline::before {
    content: "";
    position: absolute;
    left: 35px;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #0066cc, #ff6600);
    border-radius: 10px;
}

/* Timeline Item */
.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

/* Year Badge */
.timeline-year {
    position: absolute;
    left: -80px;
    top: 20px;
    background: #ff6600;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 8px 18px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Dot on Line */
.timeline-item::before {
    content: "";
    position: absolute;
    left: -48px;
    top: 30px;
    width: 14px;
    height: 14px;
    background: #0066cc;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px #0066cc20;
}

/* Content Card */
.timeline-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.timeline-content h4 {
    font-size: 22px;
    color: #003366;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .timeline {
        padding-left: 50px;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-year {
        left: -50px;
        font-size: 13px;
        padding: 6px 14px;
    }

    .timeline-item::before {
        left: -28px;
    }

    .timeline-content {
        padding: 20px;
    }

}


/* Vision & Mission Section */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.vision-card,
.mission-card {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.vm-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.vision-card h2,
.mission-card h2 {
    font-size: 28px;
    color: #003366;
    margin-bottom: 20px;
}

.vision-card p,
.mission-card p {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.mission-list {
    list-style: none;
    padding-left: 0;
}

.mission-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    color: #666666;
    line-height: 1.6;
}

.mission-list li:before {
    content: "►";
    position: absolute;
    left: 0;
    color: #FF6600;
    font-size: 14px;
}

.mission-list li strong {
    color: #003366;
}

/* Core Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.value-card h3 {
    font-size: 22px;
    color: #003366;
    margin-bottom: 15px;
}

.value-card p {
    color: #666666;
    line-height: 1.6;
}

/* Facilities Page */
.facility-overview {
    background-color: #FFFFFF;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.overview-content-center {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.overview-content-center h2 {
    font-size: 32px;
    color: #003366;
    margin-bottom: 20px;
}

.overview-content-center p {
    font-size: 18px;
    line-height: 1.8;
    color: #666666;
}

.facility-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.overview-text h2 {
    font-size: 32px;
    color: #003366;
    margin-bottom: 20px;
}

.overview-text p {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.facility-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #F5F5F5;
    border-radius: 8px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #FF6600;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666666;
}

/* Equipment Section */
.equipment-grid {
    display: grid;
    gap: 40px;
}

.equipment-category {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.equipment-category h3 {
    font-size: 24px;
    color: #003366;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #FF6600;
}

.equipment-table {
    width: 100%;
    border-collapse: collapse;
}

.equipment-table thead {
    background-color: #003366;
    color: #FFFFFF;
}

.equipment-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.equipment-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #E0E0E0;
    color: #666666;
}

.equipment-table tbody tr:hover {
    background-color: #F5F5F5;
}

/* Capabilities Section */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.capability-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.capability-card h3 {
    font-size: 22px;
    color: #003366;
    margin-bottom: 15px;
}

.capability-card ul {
    list-style: none;
    padding-left: 0;
}

.capability-card ul li {
    padding: 8px 0;
    color: #666666;
    position: relative;
    padding-left: 25px;
}

.capability-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF6600;
    font-weight: bold;
}

/* Clientele Page */
.client-overview {
    background-color: #FFFFFF;
}

.client-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #003366, #0066CC);
    border-radius: 8px;
    color: #FFFFFF;
}

.stat-box .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
}

.stat-box .stat-label {
    font-size: 16px;
    color: #FFFFFF;
}

/* Industries Section */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.industry-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.industry-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.industry-card h3 {
    font-size: 20px;
    color: #003366;
    margin-bottom: 15px;
}

.industry-card p {
    color: #666666;
    line-height: 1.6;
}

/* Clients List */
.clients-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.client-category {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.client-category h3 {
    font-size: 22px;
    color: #003366;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #FF6600;
}

.client-names {
    list-style: none;
    padding-left: 0;
}

.client-names li {
    padding: 10px 0;
    color: #666666;
    border-bottom: 1px solid #E0E0E0;
    position: relative;
    padding-left: 25px;
}

.client-names li:before {
    content: "▪";
    position: absolute;
    left: 0;
    color: #0066CC;
    font-size: 20px;
}

.client-names li:last-child {
    border-bottom: none;
}

/* Testimonials Detail */
.testimonials-detail-grid {
    display: grid;
    gap: 30px;
}

.testimonial-detail-card {
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
}

.testimonial-detail-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 30px;
}

.testimonial-content .testimonial-text {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-content .testimonial-author {
    margin-bottom: 15px;
}

.testimonial-content .testimonial-author .company {
    color: #0066CC;
    font-size: 14px;
}

.testimonial-rating {
    color: #FF6600;
    font-size: 20px;
}

/* Partnership Section */
.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.partnership-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.partnership-card h3 {
    font-size: 20px;
    color: #003366;
    margin-bottom: 15px;
}

.partnership-card p {
    color: #666666;
    line-height: 1.6;
}

/* Awards Page */
.awards-overview {
    background-color: #FFFFFF;
}

/* Certifications */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.certification-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.certification-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cert-badge {
    font-size: 60px;
    margin-bottom: 15px;
}

.certification-card h3 {
    font-size: 22px;
    color: #003366;
    margin-bottom: 10px;
}

.cert-org {
    font-size: 14px;
    color: #0066CC;
    margin-bottom: 5px;
}

.cert-year {
    font-size: 13px;
    color: #666666;
    margin-bottom: 15px;
    font-style: italic;
}

.cert-desc {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
}

/* =========================
   AWARDS SECTION
========================= */

.awards-section {
    background: #f8f9fb;
    padding: 80px 0;
}

.awards-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 80px;
}

/* Vertical Line */
.awards-timeline::before {
    content: "";
    position: absolute;
    left: 35px;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #ff6600, #0066cc);
    border-radius: 10px;
}

/* Individual Item */
.award-item {
    position: relative;
    margin-bottom: 50px;
}

/* Dot on Timeline */
.award-item::before {
    content: "";
    position: absolute;
    left: -48px;
    top: 28px;
    width: 14px;
    height: 14px;
    background: #ff6600;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.2);
}

/* Year Badge */
.award-year {
    position: absolute;
    left: -85px;
    top: 18px;
    background: #0066cc;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Award Card */
.award-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.award-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

/* Title */
.award-content h3 {
    font-size: 22px;
    color: #003366;
    margin-bottom: 8px;
}

/* Organization */
.award-org {
    font-size: 14px;
    color: #ff6600;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Description */
.award-desc {
    font-size: 16px;
    color: #666666;
    line-height: 1.7;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .awards-timeline {
        padding-left: 50px;
    }

    .awards-timeline::before {
        left: 15px;
    }

    .award-item::before {
        left: -28px;
    }

    .award-year {
        left: -55px;
        font-size: 12px;
        padding: 6px 14px;
    }

    .award-content {
        padding: 20px;
    }

}


/* Recognition Section */
.recognition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.recognition-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.recognition-card h3 {
    font-size: 20px;
    color: #003366;
    margin-bottom: 15px;
}

.recognition-card p {
    color: #666666;
    line-height: 1.6;
}

/* Commitment Awards Section */
.commitment-awards-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.commitment-awards-content h2 {
    font-size: 32px;
    color: #003366;
    margin-bottom: 20px;
}

.commitment-awards-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 20px;
}

.commitment-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Products Page - Catalog Style */
.container-full {
    max-width: 100%;
    padding: 0;
}

.products-catalog-section {
    background-color: #F5F5F5;
    padding: 0;
}

.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: calc(100vh - 400px);
}

/* Products Sidebar */
.products-sidebar {
    background-color: #FFFFFF;
    padding: 30px 0;
    border-right: 1px solid #E0E0E0;
}

.products-sidebar h3 {
    font-size: 18px;
    color: #333333;
    padding: 0 25px 20px;
    margin: 0;
    font-weight: 600;
}

.category-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-menu li {
    border-bottom: 1px solid #E0E0E0;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    color: #333333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: #FFFFFF;
}

.category-link:hover {
    background-color: #F5F5F5;
    color: #0066CC;
}

.category-link.active {
    background-color: #003366;
    color: #FFFFFF;
}

.category-link.active svg {
    color: #FFFFFF;
}

.category-link svg {
    color: #666666;
    transition: transform 0.3s ease;
}

.category-link:hover svg {
    transform: translateX(5px);
}

/* Products Main Area */
.products-main {
    padding: 40px;
    background-color: #F5F5F5;
}

.category-title {
    font-size: 28px;
    color: #003366;
    margin-bottom: 30px;
    font-weight: 700;
}

.products-grid-catalog {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card-catalog {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card-catalog:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
    width: 100%;
    height: 220px;
    background-color: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid #E0E0E0;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card-catalog:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 18px;
    color: #003366;
    margin-bottom: 8px;
    font-weight: 700;
}

.product-info p {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

.product-category-section {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Old Products Page Styles (kept for compatibility) */
.products-overview {
    background-color: #FFFFFF;
}

.product-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.product-intro img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-intro-text p {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-intro-text h3 {
    font-size: 22px;
    color: #003366;
    margin: 20px 0 15px;
}

.product-intro-text ul {
    list-style: none;
    padding-left: 0;
}

.product-intro-text ul li {
    padding: 8px 0;
    color: #666666;
    position: relative;
    padding-left: 25px;
}

.product-intro-text ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF6600;
    font-weight: bold;
}

.product-intro-full {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.product-intro-full p {
    font-size: 18px;
    color: #666666;
    line-height: 1.8;
}

.products-list {
    display: grid;
    gap: 30px;
}

.product-item {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #FF6600;
}

.product-item h3 {
    font-size: 22px;
    color: #003366;
    margin-bottom: 15px;
}

.product-item p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.product-item p strong {
    color: #003366;
}

/* Custom Manufacturing */
.custom-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.custom-service-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.custom-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.custom-service-card h3 {
    font-size: 20px;
    color: #003366;
    margin-bottom: 15px;
}

.custom-service-card p {
    color: #666666;
    line-height: 1.6;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 32px;
    color: #003366;
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 18px;
    color: #003366;
    margin-bottom: 10px;
}

.contact-text p {
    color: #666666;
    line-height: 1.6;
}

.social-media-section {
    margin-top: 30px;
}

.social-media-section h3 {
    font-size: 20px;
    color: #003366;
    margin-bottom: 15px;
}

.social-links-large {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-block;
    padding: 12px 24px;
    background-color: #003366;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #FF6600;
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrapper h2 {
    font-size: 32px;
    color: #003366;
    margin-bottom: 25px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066CC;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group label {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.form-note {
    font-size: 13px;
    color: #666666;
    margin-top: 10px;
}

.form-message {
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Map Section */
.map-wrapper {
    margin-top: 30px;
}

.map-placeholder {
    background: #FFFFFF;
    padding: 60px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-placeholder p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 10px;
}

.map-placeholder p:first-child {
    font-size: 24px;
    color: #003366;
    margin-bottom: 20px;
}

.map-placeholder .btn {
    margin-top: 20px;
}

/* Additional Info Section */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    font-size: 20px;
    color: #003366;
    margin-bottom: 15px;
}

.info-card p {
    color: #666666;
    line-height: 1.6;
}

.info-card strong {
    color: #FF6600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .overview-content,
    .product-intro {
        grid-template-columns: 1fr;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-detail-card {
        grid-template-columns: 1fr;
    }
    
    .products-layout {
        grid-template-columns: 1fr;
    }
    
    .products-sidebar {
        border-right: none;
        border-bottom: 1px solid #E0E0E0;
    }
    
    .products-grid-catalog {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}</to_replace>
</Editor.edit_file_by_replace>

<Editor.edit_file_by_replace>
<file_name>
style.css
</file_name>
<to_replace>
@media (max-width: 480px) {
    .logo span {
        display: none;
    }
    
    .hero {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .commitment-grid,
    .services-grid,
    .testimonials-grid,
    .values-grid,
    .industries-grid,
    .certifications-grid,
    .capabilities-grid,
    .partnership-grid,
    .recognition-grid,
    .custom-services-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
}</to_replace>
<new_content>
@media (max-width: 480px) {
    .logo span {
        display: none;
    }
    
    .hero {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .commitment-grid,
    .services-grid,
    .testimonials-grid,
    .values-grid,
    .industries-grid,
    .certifications-grid,
    .capabilities-grid,
    .partnership-grid,
    .recognition-grid,
    .custom-services-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .products-main {
        padding: 20px;
    }
    
    .products-grid-catalog {
        grid-template-columns: 1fr;
    }
    
    .category-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #e1e1e1;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 12px 0;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline-year {
        left: -30px;
        width: 60px;
        height: 35px;
        font-size: 14px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo span {
        display: none;
    }
    
    .hero {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .commitment-grid,
    .services-grid,
    .testimonials-grid,
    .values-grid,
    .industries-grid,
    .certifications-grid,
    .capabilities-grid,
    .partnership-grid,
    .recognition-grid,
    .custom-services-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
}