/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    list-style: none;
}

/* Layout Structure */
#container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

/* Header Styles */
#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #fff;
    border-bottom: 1px solid #ddd;
}
#top_left {
    flex: 1;
}
#top_right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.logo_image {
    max-height: 80px;
}
#social_links {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.social_image, .social_image1 {
    height: 24px;
    margin-left: 10px;
}
.top_phone, .top_mail {
    font-size: 14px;
    color: #555;
}
.top_career {
    display: inline-block;
    margin-left: 15px;
    padding: 5px 10px;
    background: #0066cc;
    color: white;
    border-radius: 3px;
    font-size: 12px;
}

/* Navigation Menu */
#menu {
    background: #0066cc;
    padding: 10px 0;
}
#nav-top-desktop {
    display: flex;
    justify-content: center;
}
#nav-top-desktop li {
    padding: 0 15px;
}
#nav-top-desktop li a {
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    transition: opacity 0.3s;
}
#nav-top-desktop li a:hover {
    opacity: 0.8;
}

/* Slider Section */
#slide_animation {
    display: flex;
    margin: 20px 0;
}
#slide_animation_left {
    flex: 3;
    margin-right: 20px;
}
#slide_animation_right {
    flex: 1;
}
#SliderName {
    width: 100%;
    height: 300px;
    background: #eee;
    position: relative;
    overflow: hidden;
}
#SliderName img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.strategic_team_image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
}

/* News Bar */
#bar {
    background: #f0f0f0;
    padding: 10px;
    margin-bottom: 20px;
}
#bar_left {
    display: flex;
    align-items: center;
}
.home_news_head_arrow {
    color: #0066cc;
    font-size: 18px;
    padding-right: 15px;
    border-right: 2px solid #ccc;
    min-width: 90px;
}
.news_content_slide {
    padding-left: 15px;
    color: #555;
}

/* Products Section */
.products-section {
    margin: 30px 0;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}
.product-card {
    background: #0066cc;
    color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-card h2 {
    font-size: 22px;
    margin-bottom: 15px;
}
.product-card p {
    font-size: 14px;
    margin-bottom: 15px;
}
.product-card a {
    color: white;
    font-weight: 600;
    font-size: 14px;
}
.product-card.equipment {
    background: white;
    color: #333;
}
.product-card.equipment h2 {
    color: #333;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.capability-card {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}
.capability-card h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}
.capability-card ul {
    font-size: 14px;
}
.capability-card li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.capability-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    opacity: 0.2;
    width: 60px;
    height: 60px;
}

/* About Us Section Styles */
.about-section {
    margin: 30px 0;
    padding: 0 15px;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-header h1 {
    color: #0066cc;
    font-size: 36px;
    margin-bottom: 10px;
}

.about-header .subtitle {
    color: #666;
    font-size: 18px;
    font-weight: 600;
}

.about-content h2 {
    color: #0066cc;
    font-size: 28px;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #444;
}

.facility-grid, .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.facility-card, .value-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.facility-card h3, .value-card h3 {
    color: #0066cc;
    margin-bottom: 10px;
    font-size: 18px;
}

.team-list {
    margin: 20px 0;
    padding-left: 20px;
}

.team-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: #444;
}

.team-list li:before {
    content: "•";
    color: #0066cc;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Active menu item */
#nav-top-desktop li a.active {
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 4px;
}

/* Responsive adjustments for About section */
@media (max-width: 768px) {
    .about-header h1 {
        font-size: 28px;
    }
    
    .facility-grid, .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content h2 {
        font-size: 24px;
    }
}


/* Services Section Styles */
.services-section {
    margin: 30px 0;
    padding: 0 15px;
}

.services-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-header h1 {
    color: #0066cc;
    font-size: 36px;
    margin-bottom: 10px;
}

.services-header .subtitle {
    color: #666;
    font-size: 18px;
    font-weight: 600;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    color: #444;
    line-height: 1.8;
}

.service-category {
    margin-bottom: 50px;
}

.service-category h2 {
    color: #0066cc;
    font-size: 28px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-category h2 .icon {
    font-size: 28px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.service-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card h3 {
    color: #0066cc;
    margin-bottom: 15px;
    font-size: 20px;
}

.service-card ul {
    list-style-type: none;
}

.service-card li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    color: #444;
}

.service-card li:before {
    content: "→";
    color: #0066cc;
    position: absolute;
    left: 0;
}

.service-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px 20px;
    background: #f0f7ff;
    border-radius: 8px;
}

.service-cta h2 {
    color: #0066cc;
    margin-bottom: 15px;
}

.service-cta p {
    color: #555;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: #0066cc;
    color: white;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #0055aa;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-header h1 {
        font-size: 28px;
    }
    
    .service-category h2 {
        font-size: 24px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
}


/* Equipment Section Styles */
.equipment-section {
    margin: 30px 0;
    padding: 0 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h1 {
    color: #0066cc;
    font-size: 36px;
    margin-bottom: 10px;
}

.section-header .subtitle {
    color: #666;
    font-size: 18px;
    font-weight: 600;
}

.category-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-button {
    padding: 10px 20px;
    background: #f0f0f0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.tab-button:hover {
    background: #e0e0e0;
}

.tab-button.active {
    background: #0066cc;
    color: white;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.equipment-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.equipment-card:hover {
    transform: translateY(-5px);
}

.equipment-image {
    height: 220px;
    overflow: hidden;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.equipment-card:hover .equipment-image img {
    transform: scale(1.05);
}

.equipment-info {
    padding: 20px;
}

.equipment-info h3 {
    color: #0066cc;
    margin-bottom: 10px;
    font-size: 20px;
}

.equipment-info p {
    color: #444;
    margin-bottom: 10px;
    line-height: 1.5;
}

.equipment-info .spec {
    display: block;
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-header h1 {
        font-size: 28px;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .category-tabs {
        justify-content: flex-start;
    }
}

/* Contact Section Styles */
.contact-section {
    margin: 30px 0;
    padding: 0 15px;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h1 {
    color: #0066cc;
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-header .subtitle {
    color: #666;
    font-size: 18px;
    font-weight: 600;
}

.contact-container {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-info {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-map {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    min-height: 450px;
}

.contact-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 32px;
    margin-bottom: 15px;
    color: #0066cc;
}

.contact-card h3 {
    color: #0066cc;
    margin-bottom: 15px;
    font-size: 20px;
}

.contact-card p, .contact-card address {
    color: #444;
    line-height: 1.6;
    font-style: normal;
}

.contact-card a {
    color: #0066cc;
    text-decoration: underline;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-form-container h2 {
    color: #0066cc;
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
}

.form-group textarea {
    resize: vertical;
}

.form-group:last-child {
    grid-column: span 2;
}

.submit-btn {
    background: #0066cc;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 600;
    justify-self: center;
    width: 200px;
}

.submit-btn:hover {
    background: #0055aa;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-header h1 {
        font-size: 28px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group:last-child {
        grid-column: span 1;
    }
    
    .contact-map {
        min-height: 300px;
    }
}

/* Appod Product Section Styles */
.product-highlight-section {
    background: #f8fafc;
    padding: 50px 20px;
    margin: 40px 0;
    border-radius: 8px;
}

.product-highlight-header {
    text-align: center;
    margin-bottom: 40px;
}

.product-highlight-header h2 {
    color: #0066cc;
    font-size: 32px;
    margin-bottom: 10px;
}

.product-highlight-header .subtitle {
    color: #666;
    font-size: 18px;
}

.product-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.benefit-icon {
    font-size: 24px;
    color: #0066cc;
    margin-bottom: 15px;
}

.benefit-item h3 {
    color: #0066cc;
    margin-bottom: 10px;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.feature-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #0066cc;
}

.feature-card h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

.product-image-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.product-image-gallery img {
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-highlight-header h2 {
        font-size: 28px;
    }
    
    .product-image-gallery img {
        max-width: 100%;
    }
}





/* Footer */
#footer {
    background: #333;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    margin-top: 40px;
}
#footer a {
    color: #ccc;
    margin: 0 10px;
    transition: color 0.3s;
}
#footer a:hover {
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #header {
        flex-direction: column;
        text-align: center;
    }
    #top_right {
        align-items: center;
        margin-top: 15px;
    }
    #social_links {
        justify-content: center;
    }
    #slide_animation {
        flex-direction: column;
    }
    #slide_animation_left {
        margin-right: 0;
        margin-bottom: 20px;
    }
    #nav-top-desktop {
        flex-wrap: wrap;
    }
    #nav-top-desktop li {
        padding: 8px 10px;
    }
    .products-grid, .capabilities-grid {
        grid-template-columns: 1fr;
    }
}

