/* style.css */

* {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    background-color: black;
    font-family: 'Gabarito', sans-serif;
}

/* Ensure all elements inherit the font */
button, input, select, textarea, a {
    font-family: inherit;
}
.hero {
    width: 100%;
    height: 60vh;
    background: url('./images/pictures/lathe1.webp') no-repeat center 40% / cover;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 30px 0;
}
.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.container h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}
.container h2 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.container .hero-button:hover {
    background-color: rgb(34, 104, 200);
}
.hero-button {
    background-color: rgb(34, 104, 255);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 0;
}
.hero-badge {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.5);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.hero-contact {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.hero-contact-link {
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    background-color: rgba(0, 0, 0, 0.4);
    padding: 10px 20px;
    border-radius: 8px;
}
.hero-contact-link:hover {
    color: rgb(100, 160, 255);
    background-color: rgba(0, 0, 0, 0.6);
}
header {
    text-align: center;
    color: white;
}
nav {
    background-color: black;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
    font-family: 'Gabarito', sans-serif;
    align-items: center;
    border-bottom: 1px solid #434343;
    padding-bottom: 15px;
}
nav ul {
    width: 100%;
    display: flex;
    list-style: none;
    justify-content: flex-end;
    align-items: center;
}
nav li {
    height: 50px;
}
nav a {
    height: 100%;
    padding: 0 20px;

    margin-top: 10px;
    margin-bottom: 10px;
    text-decoration: none;
    display: flex;
    color: rgb(255, 255, 255);
    align-items: center;

    font-weight: 600;
    font-size: 24px;
}
nav a:hover {
    /*background-color: #565656;*/
    color: #e5e5e5;
}
nav li:first-child{
    margin-right: auto;
}
.sidebar{
    position:fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: black;
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.sidebar li{
    width: 100%;
}
.sidebar a {
    width: 100%;
}
.menu-button{
    display: none;
}
@media(max-width: 800px){
    .hideOnMobile {
        display: none;
    }
    .menu-button{
        display: block
    }
    .footer {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        border-radius: 0;
    }
    .footer .footer-row{
        padding: 20px;
        gap: 1rem;
    }
    .footer-col form{
        display: block;
    }
    .footer-col form :where(input, button){
        width: 100%;
    }
    .footer-col form button{
        margin: 10px 0px 0px 0px;
    }
}
@media(max-width: 400px){
    .sidebar {
        width: 100%;
    }
}

.footer {
    position: relative;
    max-width: 100%;
    width: 100%;
    background: black;
    border-top: 1px solid #333;
}
.footer .footer-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 3.5rem;
    padding: 60px;
    max-width: 1280px;
    margin: 0 auto;
}
.footer-row .footer-col h4{
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.footer-logo {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.footer-col .links{
    list-style: none;
    margin-bottom: 10px;
}
.footer-col .links li{
    list-style: none;
    margin-bottom: 10px;
}
.footer-col .links li a{
    text-decoration: none;
    color: white;
    font-weight: 700;
}
.footer-col .links li a:hover{
    color: #e5e5e5;
}
.footer-col p{
    margin: 20px 0;
    color: white;
    font-weight: 700;
    max-width: 300px;
}
.footer-col form{
    display: flex;
    gap: 5px;
}
.footer-text{
    font-weight: 200;
    margin-bottom: 100px;
}
.footer-col input{
    height: 40px;
    border-radius: 6px;
    background: none;
    width: 100%;
    outline: none;
    border: 1px solid #434343;
    caret-color: white;
    color: white;
    padding-left: 10px;
}
.footer-col input::placeholder{
    color: white;
}
.footer-col .icons{
    display: flex;
    gap: 30px;
    cursor: pointer
}
.footer-col .icons i{
    color: white;
}
.footer-col .icons i:hover{
    color: #e5e5e5;
}

/* ============================================
   HOMEPAGE SECTIONS
   ============================================ */

/* General Section Styles */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.section-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

/* Mission Section */
.mission-section {
    background-color: #111;
}

.mission-text {
    color: #ccc;
    font-size: 1.25rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Impact Section */
.impact-section {
    background-color: black;
}

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

.impact-item {
    text-align: center;
    padding: 30px;
}

.impact-number {
    display: block;
    color: rgb(34, 104, 255);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.impact-label {
    color: #ccc;
    font-size: 1.1rem;
}

/* Services Section */
.services-section {
    background-color: #111;
}

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

.service-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgb(34, 104, 255);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.6;
}

/* Partners Section */
.partners-section {
    background-color: black;
}

.partners-subtitle {
    color: #888;
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.partner-logo {
    background-color: #222;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 30px 50px;
    color: #666;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.partner-logo:hover {
    border-color: #555;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgb(34, 104, 255) 0%, rgb(20, 60, 150) 100%);
}

.cta-section .section-title {
    color: white;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background-color: white;
    color: rgb(34, 104, 255);
}

.cta-button.primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Trust Section */
.trust-section {
    background-color: #111;
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px 50px;
    max-width: 500px;
    margin: 0 auto;
}

.trust-icon {
    background-color: rgb(34, 104, 255);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.trust-text {
    color: white;
}

.trust-text strong {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.trust-text p {
    color: #888;
    font-size: 0.95rem;
    margin: 0;
}

.trust-badges-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badge-small {
    flex: 1;
    min-width: 200px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 25px 20px;
    color: white;
    text-align: center;
}

.trust-badge-small strong {
    font-size: 1.1rem;
}

/* Responsive Styles for Homepage Sections */
@media (max-width: 1000px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .section-container {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-number {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .trust-badge {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .trust-badges-row {
        gap: 20px;
        max-width: 100%;
    }
    
    .trust-badge-small {
        padding: 20px 15px;
        min-width: 120px;
    }
}

/* ============================================
   SERVICES PAGE
   ============================================ */

.services-page-section {
    background-color: #e8e8e8;
    padding: 30px 40px;
}

.services-page-title {
    color: #111;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.services-page-subtitle {
    color: #555;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 50px;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.services-page-card {
    background-color: #d5d5d5;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.services-page-card:hover {
    transform: scale(1.03);
}

.services-page-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.services-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-page-card h3 {
    color: #111;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.services-page-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .services-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-page-section {
        padding: 60px 20px;
    }
    
    .services-page-title {
        font-size: 2.2rem;
    }
    
    .services-page-grid {
        grid-template-columns: 1fr;
    }
    
    .services-page-image {
        height: 280px;
    }
}

/* ============================================
   WORKSHOP SECTION
   ============================================ */

.workshop-section {
    background-color: #1a1a1a;
    padding: 50px 40px;
}

.workshop-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

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

.workshop-card {
    background-color: white;
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.workshop-image {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

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

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ccc 0%, #999 100%);
}

.workshop-card h3 {
    color: #111;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .workshop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .workshop-section {
        padding: 60px 20px;
    }
    
    .workshop-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .workshop-grid {
        grid-template-columns: 1fr;
    }
    
    .workshop-image {
        height: 220px;
    }
}

/* ============================================
   Program Details Section (Accordion)
   ============================================ */
.program-details-section {
    background-color: #f5f5f5;
    padding: 50px 40px;
}

.section-title-dark {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111;
    text-align: center;
    margin-bottom: 40px;
}

.section-title-light {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.program-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.program-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.program-header {
    width: 100%;
    padding: 20px 25px;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #111;
    transition: background 0.3s;
}

.program-header:hover {
    background: #f0f0f0;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgb(34, 104, 255);
}

.program-content {
    padding: 0 25px 25px;
    border-top: 1px solid #eee;
}

.program-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 15px;
    padding-top: 20px;
}

.info-item {
    font-size: 0.95rem;
    color: #444;
}

.info-item strong {
    color: #111;
}

.program-content p {
    color: #555;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .program-details-section {
        padding: 60px 20px;
    }
    
    .program-info {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Success Metrics Section
   ============================================ */
.metrics-section {
    background: linear-gradient(135deg, rgb(34, 104, 255) 0%, rgb(20, 70, 180) 100%);
    padding: 60px 40px;
}

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

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

.metric-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
}

@media (max-width: 900px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .metrics-section {
        padding: 50px 20px;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .metric-number {
        font-size: 2.2rem;
    }
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    background-color: #fff;
    padding: 80px 40px;
}

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

.testimonial-card {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    margin-bottom: 25px;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgb(34, 104, 255);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: #111;
    font-size: 1rem;
}

.author-info span {
    color: #666;
    font-size: 0.85rem;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonials-section {
        padding: 60px 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Certification Partners Section
   ============================================ */
.cert-partners-section {
    background-color: #1a1a1a;
    padding: 70px 40px;
}

.partners-desc {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-top: -25px;
    margin-bottom: 40px;
}

.cert-partners-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.cert-partner-logo {
    width: 120px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    .cert-partners-section {
        padding: 50px 20px;
    }
    
    .cert-partners-grid {
        gap: 20px;
    }
    
    .cert-partner-logo {
        width: 100px;
        height: 60px;
        font-size: 0.95rem;
    }
}

/* ============================================
   How to Enroll Section
   ============================================ */
.enroll-section {
    background-color: #f5f5f5;
    padding: 40px 20px;
}

.enroll-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.enroll-step {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgb(34, 104, 255);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.enroll-step h3 {
    color: #111;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.enroll-step p {
    color: #555;
    line-height: 1.6;
}

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

.enroll-button {
    display: inline-block;
    background: rgb(34, 104, 255);
    color: #fff;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.enroll-button:hover {
    background: rgb(25, 80, 200);
    transform: translateY(-2px);
}

.enroll-note {
    color: #666;
    font-size: 0.95rem;
    margin-top: 15px;
}

@media (max-width: 900px) {
    .enroll-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .enroll-section {
        padding: 60px 20px;
    }
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    background-color: #1a1a1a;
    padding: 80px 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 25px;
}

.faq-item h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.faq-item p {
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .faq-section {
        padding: 60px 20px;
    }
}
/* ============================================
   CAPABILITIES PAGE STYLES
   ============================================ */
.capabilities-hero {
    width: 100%;
    height: 30vh;
    background: url('./images/pictures/mill1.webp') no-repeat center 60% / cover;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.capabilities-hero .container {
    height: auto;
    justify-content: center;
}

.capabilities-content {
    background-color: #1a1a1a;
    padding: 80px 40px;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-hero {
    width: 100%;
    height: 30vh;
    background: url('./images/pictures/parts.webp') no-repeat center 20% / cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
}

.about-content {
    background-color: #1a1a1a;
    padding: 80px 40px;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.about-text h2 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-text p {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    line-height: 1.9;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 600px;
    }
    
    .about-text {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .about-hero {
        height: 30vh;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        padding: 50px 20px;
    }
    
    .about-text p {
        font-size: 1.1rem;
    }
    
    .about-image img {
        height: 280px;
    }
}

/* Mission & Vision Section */
.mission-vision-section {
    background-color: #f5f5f5;
    padding: 60px 40px;
}

.mv-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.mv-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.mv-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.mv-card h3 {
    color: #111;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.mv-card p {
    color: #555;
    line-height: 1.7;
}

@media (max-width: 700px) {
    .mv-container {
        grid-template-columns: 1fr;
    }
    
    .mission-vision-section {
        padding: 50px 20px;
    }
}

/* Values Section */
.values-section {
    background-color: #1a1a1a;
    padding: 60px 40px;
}

.values-section h2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

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

.value-item {
    text-align: center;
    padding: 25px;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.value-item h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.value-item p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .values-section {
        padding: 50px 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Our Story Section */
.story-section {
    background-color: #f5f5f5;
    padding: 60px 40px;
}

.story-container {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    color: #111;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
}

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

@media (max-width: 600px) {
    .story-section {
        padding: 50px 20px;
    }
    
    .story-content h2 {
        font-size: 1.8rem;
    }
}

/* Team Section */
.team-section {
    background-color: #fff;
    padding: 60px 40px;
}

.team-section h2 {
    color: #111;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

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

.team-card {
    text-align: center;
    padding: 30px;
    background: #f8f8f8;
    border-radius: 16px;
}

.team-avatar {
    margin-bottom: 20px;
}

.avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgb(34, 104, 255);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 auto;
}

.team-card h4 {
    color: #111;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-role {
    color: rgb(34, 104, 255);
    font-size: 0.95rem;
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}

.team-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-section {
        padding: 50px 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* About CTA Section */
.about-cta-section {
    background: linear-gradient(135deg, rgb(34, 104, 255) 0%, rgb(20, 70, 180) 100%);
    padding: 70px 40px;
    text-align: center;
}

.about-cta-section h2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    margin-bottom: 30px;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: #fff;
    color: rgb(34, 104, 255);
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.cta-btn-secondary {
    background: transparent;
    color: #fff;
    padding: 15px 35px;
    border-radius: 8px;
    border: 2px solid #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}

.cta-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

@media (max-width: 600px) {
    .about-cta-section {
        padding: 50px 20px;
    }
    
    .about-cta-section h2 {
        font-size: 1.8rem;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-hero {
    background: linear-gradient(135deg, rgb(34, 104, 255) 0%, rgb(20, 70, 180) 100%);
    padding: 80px 40px;
    text-align: center;
}

.contact-hero h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
}

/* Contact Main Section */
.contact-main {
    background-color: #f5f5f5;
    padding: 60px 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form-container h2 {
    color: #111;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgb(34, 104, 255);
}

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

.submit-btn {
    background: rgb(34, 104, 255);
    color: #fff;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: rgb(25, 80, 200);
    transform: translateY(-2px);
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.info-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.info-card h3 {
    color: #111;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-card p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-social {
    display: flex;
    gap: 15px;
}

.contact-social a {
    color: rgb(34, 104, 255);
    text-decoration: none;
    font-weight: 500;
}

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

/* Map Section */
.map-section {
    background: #1a1a1a;
    padding: 0;
}

.map-placeholder {
    height: 300px;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1.1rem;
}

/* Contact FAQ Section */
.contact-faq {
    background: #1a1a1a;
    padding: 60px 40px;
}

.contact-faq h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.faq-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-quick-item {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 12px;
}

.faq-quick-item h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.faq-quick-item p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Page Responsive */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-quick-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contact-hero {
        padding: 60px 20px;
    }
    
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-main {
        padding: 40px 20px;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    .contact-faq {
        padding: 50px 20px;
    }
}

/* ============================================
   MANUFACTURING GUIDE PAGE STYLES
   ============================================ */
.guide-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 40px;
    text-align: center;
}

.guide-hero h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.guide-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
}

/* Guide Intro */
.guide-intro {
    background: rgb(34, 104, 255);
    padding: 50px 40px;
}

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

.guide-intro h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.guide-intro p {
    color: rgba(255,255,255,0.95);
    font-size: 1.15rem;
    line-height: 1.8;
}

/* Career Paths */
.guide-careers {
    background: #f5f5f5;
    padding: 60px 40px;
}

.guide-careers h2 {
    color: #111;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.career-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.career-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.career-card h3 {
    color: #111;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.career-salary {
    color: rgb(34, 104, 255);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.career-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Skills Section */
.guide-skills {
    background: #1a1a1a;
    padding: 60px 40px;
}

.guide-skills h2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.skill-item {
    text-align: center;
    padding: 25px;
}

.skill-item h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.skill-item p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

/* Certifications Section */
.guide-certs {
    background: #f5f5f5;
    padding: 60px 40px;
}

.guide-certs h2 {
    color: #111;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.certs-intro {
    color: #555;
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.cert-item {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.cert-item h4 {
    color: rgb(34, 104, 255);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cert-item p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Getting Started Section */
.guide-start {
    background: #fff;
    padding: 60px 40px;
}

.guide-start h2 {
    color: #111;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.steps-list {
    max-width: 700px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-num {
    width: 50px;
    height: 50px;
    background: rgb(34, 104, 255);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: #111;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-content p {
    color: #555;
    line-height: 1.6;
}

/* Guide CTA */
.guide-cta {
    background: linear-gradient(135deg, rgb(34, 104, 255) 0%, rgb(20, 70, 180) 100%);
    padding: 70px 40px;
    text-align: center;
}

.guide-cta h2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.guide-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    margin-bottom: 30px;
}

.guide-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Guide Page Responsive */
@media (max-width: 900px) {
    .career-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .guide-hero {
        padding: 60px 20px;
    }
    
    .guide-hero h1 {
        font-size: 2.2rem;
    }
    
    .guide-intro,
    .guide-careers,
    .guide-skills,
    .guide-certs,
    .guide-start,
    .guide-cta {
        padding: 50px 20px;
    }
    
    .career-grid,
    .skills-grid,
    .certs-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}