/* Architectural Glass Hero Section */
.arch-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    margin-top: 80px;
}

.arch-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(44, 90, 160, 0.8), rgba(44, 90, 160, 0.6)),
                url('../images/placeholder.webp') center/cover;
    z-index: -1;
}

.arch-hero__content {
    max-width: 800px;
    z-index: 1;
}

.arch-hero__title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.arch-hero__subtitle {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Industry Applications Section */
.industry-applications {
    background-color: #f8f9fa;
    text-align: center;
    padding: 80px 0;
}

.section-title {
    font-family: "DM Sans", Sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #353535;
    line-height: 1.3em;
    margin: 0;
}

.section-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    max-width: 1120px;
    margin: 0 auto 40px auto;
    text-align: justify;
}

/* Products Grid Section */
.products-grid-section {
    position: relative;
    z-index: 1;
}

.products-grid-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/500224367_banner.webp");
    background-size: contain;
    opacity: 0.13;
    z-index: -1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: #333;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    width: 550px;
    height: 220px;
}

.product-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-card__image {
    max-width: 220px;
    max-height: 220px;
    overflow: hidden;
    background: none;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
}

.product-card__image img {
    padding: 1rem;
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px 0 0 8px;
    object-position: center center;
    display: block;
}

.product-card__content {
    padding: 18px 10px 10px 10px;
    color: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card__title {
    font-family: 'Roboto',sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
    line-height: 1.1;
    text-align: left;
}

.product-card__subtitle {
    font-family: 'Roboto',sans-serif;
    font-size: 18px;
    color: white;
    margin-bottom: 3px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
}

.product-card__description {
    font-family: 'Roboto',sans-serif;
    font-size: 15px;
    color: #BDBDBD;
    line-height: 1.4;
    margin-bottom: 16px;
    flex-grow: 1;
    text-align: left;
}

.btn--outline2 {
    background: #666;
    border: none;
    color: white;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
    text-transform: none;
    cursor: pointer;
}

.btn--outline2:hover {
    background: #ff6b35;
    color: white;
}

/* CTA Section Enhancement */
.cta {
    background-color: #fff;
    color: #333;
    position: relative;
    overflow: hidden;
}

.cta__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta__text {
    color: #000;
}

.cta__subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.cta__title {
    font-size: 44px;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta__description {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

.btn--cta {
    background: white;
    color: #2c5aa0;
    padding: 15px 35px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid #2c5aa0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn--cta:hover {
    background: #2c5aa0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta__image {
    text-align: center;
}

.cta__image img {
    max-width: 100%;
    height: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-grid {
        max-width: 900px;
        gap: 25px;
    }
    
    .cta__content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .arch-hero {
        height: 50vh;
        margin-top: 70px;
    }
    
    .arch-hero__title {
        font-size: 36px;
    }
    
    .arch-hero__subtitle {
        font-size: 16px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
    }
    
    .product-card {
        flex-direction: column;
        height: auto;
    }
    
    .product-card__image {
        width: 100%;
        height: 180px;
    }
    
    .section-description {
        text-align: left;
        padding: 0 20px;
        font-size: 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta__content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .cta__title {
        font-size: 28px;
    }

    .product-card {
        width: 80%;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .arch-hero {
        height: 40vh;
        margin-top: 60px;
    }
    
    .arch-hero__title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .product-card__content {
        padding: 20px;
    }
    
    .products-grid-section,
    .industry-applications {
        padding: 60px 0;
    }
}

h2, h4 {
    font-size: 1.5em;
    font-weight: 700;
}

h2 {
    font-weight: 700;
    font-family: "Montserrat", Sans-serif;
}

h4 {
    font-family: "Open Sans", Sans-serif;
}

.elementor-section-glass {
    position: relative;
    padding: 400px 0 0 0;
    overflow: hidden;
}

.elementor-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    height: 100%;
}

.elementor-background-slideshow__slide__image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.elementor-background-overlay-glass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;

    background-color: transparent;
    background-image: linear-gradient(240deg, #FFFFFF00 0%, #031E3AB0 100%);
    opacity: 0.35;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.elementor-container {
    position: absolute;
    top: 2.2rem;
    left: 19.5%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding: 20px;
    max-width: 900px;
    min-height: 164px;
}

.text-container {
    text-align: center;
    max-width: 900px;
}

.elementor-heading-title-glass {
    color: white;
    text-shadow: -1px 0px 6px rgba(7.808662570888461, 7.757608695652168, 19.499999999999982, 0.27);
    text-align: left;
}

.elementor-heading-title-glass:nth-child(1) {
    transform: translateY(0);
    opacity: 1;
    margin: -25px 0;
    font-family: "Montserrat", Sans-serif;
    font-size: 36px;
}

.elementor-heading-title-glass:nth-child(2) {
    transform: translateY(0);
    opacity: 1;
    margin: 37px 0;
    font-family: "DM Sans", Sans-serif;
    font-size: 1.5em;
    line-height: 28px;
    width: 85%;
}

.elementor-heading-title-glass:last-child {
    animation: slideDown 1.5s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .elementor-heading-title-glass {
        font-size: 1.5em !important;
    }
    .elementor-heading-title-glass:nth-child(2) {
        font-size: 1em !important;
        width: 60%;
    }
    .elementor-container {
        top: 18%;
        left: 0%;
    }
}

.line-container {
    width: 100px;
    margin: 0.72rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.line-container img {
    max-width: 100%;
    height: auto;
}