.elementor-40745 .elementor-element.elementor-element-75670a2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for container, class: .elementor-element-75670a2 *//* ========================================
   SIYOM ENGINEERING - NDT Services Styles
   Color Theme: Navy Blue & Orange (from logo)
   ======================================== */

/* CSS Variables - Brand Colors */
:root {
    --primary-color: #1a3a5c;      /* Navy Blue */
    --primary-dark: #0f2840;       /* Darker Navy */
    --primary-light: #2a5a8c;      /* Lighter Navy */
    --accent-color: #e67e22;       /* Orange (from logo) */
    --accent-hover: #d35400;       /* Darker Orange */
    --text-dark: #1a1a2e;
    --text-medium: #4a4a5a;
    --text-light: #6a6a7a;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-alt: #f0f4f8;
    --border-color: #e0e5eb;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Different hero backgrounds for each service */
.hero-section {
    background-image: url('https://images.unsplash.com/photo-1581092160607-ee22621dd758?w=1600&h=800&fit=crop');
}

.hero-rt {
    background-image: url('https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?w=1600&h=800&fit=crop');
}

.hero-utm {
    background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&h=800&fit=crop');
}

.hero-mpt {
    background-image: url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=1600&h=800&fit=crop');
}

.hero-lpt {
    background-image: url('https://images.unsplash.com/photo-1565043589221-1a6fd9ae45c7?w=1600&h=800&fit=crop');
}

.hero-vblt {
    background-image: url('https://images.unsplash.com/photo-1587293852726-70cdb56c2866?w=1600&h=800&fit=crop');
}

.hero-vt {
    background-image: url('https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?w=1600&h=800&fit=crop');
}

.hero-welding {
    background-image: url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=1600&h=800&fit=crop');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.92) 0%, rgba(15, 40, 64, 0.88) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px 20px;
}

.service-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Button Styles */
.btn-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
}

/* ========================================
   SECTION COMMON STYLES
   ======================================== */
.section-tag {
    display: inline-block;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(26, 58, 92, 0.15);
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-top: 25px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-dark);
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    color: var(--bg-white);
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

/* ========================================
   APPLICATIONS SECTION
   ======================================== */
.applications-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.applications-section.alt-bg {
    background: var(--bg-alt);
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.application-card {
    background: var(--bg-white);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(26, 58, 92, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.application-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(26, 58, 92, 0.15);
    border-color: var(--accent-color);
}

.application-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.application-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.application-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.application-card p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Applications List Style */
.applications-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.application-item {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    align-items: center;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(26, 58, 92, 0.08);
    transition: all 0.3s ease;
}

.application-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(26, 58, 92, 0.12);
}

.application-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.application-info {
    padding: 30px 40px 30px 0;
}

.application-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.application-info p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process-section {
    padding: 100px 0;
    background: var(--bg-alt);
}

.process-section.alt-bg {
    background: var(--bg-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 30px rgba(26, 58, 92, 0.08);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(26, 58, 92, 0.15);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 25px;
}

.process-step h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.services-section.alt-bg {
    background: var(--bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(26, 58, 92, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(26, 58, 92, 0.15);
    border-color: var(--accent-color);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg-light) 100%);
    border-radius: 50%;
    margin: 0 auto 25px;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits-section {
    padding: 100px 0;
    background: var(--bg-alt);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(26, 58, 92, 0.08);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(26, 58, 92, 0.15);
    border-bottom-color: var(--accent-color);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 50%;
    margin: 0 auto 25px;
    color: var(--bg-white);
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ========================================
   CHECKLIST SECTION
   ======================================== */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.checklist-column {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(26, 58, 92, 0.08);
}

.checklist-column h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
}

.check-list {
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.check-list li:last-child {
    border-bottom: none;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    line-height: 1.7;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 40px;
    }

    .about-grid {
        gap: 40px;
    }

    .applications-grid,
    .process-grid,
    .services-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .checklist-grid {
        grid-template-columns: 1fr;
    }

    .application-item {
        grid-template-columns: 300px 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-section {
        min-height: 450px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .about-image img {
        height: 300px;
    }

    .section-header h2,
    .about-content h2,
    .cta-content h2 {
        font-size: 28px;
    }

    .applications-grid,
    .process-grid,
    .services-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .application-item {
        grid-template-columns: 1fr;
    }

    .application-item img {
        height: 200px;
    }

    .application-info {
        padding: 25px;
    }

    .btn-primary {
        padding: 14px 30px;
        font-size: 15px;
    }

    .about-section,
    .applications-section,
    .process-section,
    .services-section,
    .benefits-section,
    .cta-section {
        padding: 70px 0;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 26px;
    }

    .service-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .section-header h2,
    .about-content h2,
    .cta-content h2 {
        font-size: 24px;
    }

    .process-step,
    .service-card,
    .benefit-card,
    .application-card {
        padding: 30px 20px;
    }

    .checklist-column {
        padding: 25px;
    }
}/* End custom CSS */