:root{
    --background-color: #eeeeee;
    --primary-color: #2f518e;
    --secondary-color: #a4adad;
    --accent-color: #f70000;
  --text-color: #000000;
  --nav-height: 70px;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header{
  background-color: var(--primary-color) !important;
  width: 100vw;
}

body {
    background-color: #eeeeee !important;
    padding-top: var(--nav-height);
}


@media screen and (max-width: 600px) {
  :root { --nav-height: 40px; }
  body { padding-top: var(--nav-height); }
}

/* POCETNA */

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}


.hero-video {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    object-fit: cover;
    z-index: 0;

    
}
.hero-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
}

@media (max-width: 900px) {
    .hero {
        height: 50vh;
        min-height: 400px;
    }
}


.section-tag {
    display: block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}


.section-title {
    text-align: center;
    margin-bottom: 50px;
}


.section-title h2 {
    color: var(--primary-color);
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0;
    font-weight: 600;
}


.section-title p {
    color: #666;
    font-size: 1.1rem;
    margin-top: 15px;
}

.welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 90px 8%;
}

.welcome-text {
    flex: 1;
}

.welcome-text h2 {
    color: var(--primary-color);
    font-size: clamp(2rem,5vw,3rem);
    line-height: 1.2;
    margin-bottom: 20px;
}

.welcome-text p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.primary-btn {
    display: inline-flex;
    align-items:center;
    justify-content:center;
    padding: 14px 30px;
    background: linear-gradient(
        270deg,
        var(--primary-color),
        #182555
    );
    color:white;
    text-decoration:none;
    border-radius:50px;
    transition:.3s ease;
}

.primary-btn:hover {
    transform:translateY(-3px);
}

.welcome-image {
    flex:1;
}

.welcome-image img {
    width:100%;
    border-radius:30px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.featured-products {
    padding:90px 8%;
    background:#f5f5f5;
}

.products-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.product-card {
    background:white;
    border-radius:25px;
    overflow:hidden;
    text-decoration:none;
    color:inherit;
    transition:.3s ease;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.product-card:hover {
    transform:translateY(-8px);
}

.product-card img {
    width:100%;
    height:250px;
    object-fit:cover;
}

.product-info {
    padding:25px;
}

.product-info h3 {
    color:var(--primary-color);
    margin-bottom:10px;
}

.product-info p {
    color:#666;
}

.process {
    padding:90px 8%;
}

.process-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.step {
    text-align:center;
}

.step-number {
    width:70px;
    height:70px;
    margin:0 auto 20px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:var(--primary-color);
    color:white;
    font-size:1.4rem;
    font-weight:bold;
}

.step h3 {
    color:var(--primary-color);
}

.step p {
    color:#666;
    line-height:1.6;
}

.gallery-home {
    padding:90px 8%;
    background:#f5f5f5;
}

.gallery-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.gallery-grid img {
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:25px;
    transition:.3s ease;
}

.gallery-grid img:hover {
    transform:scale(1.03);
}
.services {

    padding:90px 8%;

    background:var(--background-color);

}


.services-grid {

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    max-width:1000px;

    margin:auto;

}


.service-card {

    background:#f5f5f5;

    padding:35px;

    border-radius:25px;

}


.service-card h3 {

    color:var(--primary-color);

    font-size:1.5rem;

    margin-bottom:15px;

    font-weight:600;

}


.service-card p {

    color:#666;

    line-height:1.7;

    margin:0;

}


@media(max-width:700px){

    .services-grid{

        grid-template-columns:1fr;

    }

}
.cta {
    margin:80px 8%;
    padding:70px 30px;
    text-align:center;
    background:var(--primary-color);
    color:white;
    border-radius:35px;
}

.cta h2 {
    font-size:clamp(2rem,5vw,3rem);
    margin-bottom:20px;
}

.cta p {
    margin-bottom:30px;
    font-size:1.1rem;
}

.cta .primary-btn {
    background:white;
    color:var(--primary-color);
}

@media(max-width:1000px){
    .welcome,
    .why-us {
        flex-direction:column;
    }

    .products-grid {
        grid-template-columns:1fr;
    }

    .process-grid {
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-grid {
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .welcome,
    .why-us {
        padding:60px 20px;
    }

    .featured-products,
    .process,
    .gallery-home {
        padding:60px 20px;
    }

    .process-grid,
    .gallery-grid {
        grid-template-columns:1fr;
    }

    .why-list {
        grid-template-columns:1fr;
    }

    .cta {
        margin:40px 20px;
        padding:50px 20px;
    }
}


/* KONTAKT */

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 20px;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}


/* FORMA */

.c {
    width: 100%;
    max-width: 550px;
}

.c-naziv {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.c-naziv h2 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0;
}

.c-naziv hr {
    width: 200px;
    height: 5px;
    margin: 0 0 10px;
    border: none;
    border-radius: 10px;
    background-color: var(--primary-color);
}

.c-inputs {
    width: 100%;
    padding: 12px 16px;
    box-sizing: border-box;

    border: 2px solid transparent;
    border-radius: 50px;

    font-size: 1rem;
    background-color: #f5f5f5;

    transition: 0.3s ease;
}

.c-inputs:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea.c-inputs {
    min-height: 180px;
    border-radius: 20px;
    resize: vertical;
}


/* DUGME */

.c-btn {
    display: flex;
    align-items: center;

    padding: 15px 30px;

    font-size: 16px;
    color: white;

    gap: 10px;

    border: none;
    border-radius: 50px;

    background: linear-gradient(270deg, var(--primary-color), #182555);

    cursor: pointer;
    align-self: flex-start;

    transition: transform 0.3s ease;
}

.c-btn:hover {
    transform: scale(1.05);
}

.c-naziv img {
    width: 25px;
}

.c-i{
    width: 22px;
}

.c-desno {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.c-desno h2 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0;
}

.c-desno hr {
    width: 200px;
    height: 5px;
    margin: 0 0 10px;
    border: none;
    border-radius: 10px;
    background-color: var(--primary-color);
}

.info-card {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 12px 16px;
    background-color: #f5f5f5;
    border-radius: 20px;
    transition: 0.3s ease;
}

.info-card h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 0;
}

.info-card p {
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.info-card:hover {
    transform: translateX(5px);
}

@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    .c,
    .c-desno {
        max-width: 550px;
        width: 100%;
    }
}
@media (max-width: 600px) {
    .contact-container {
        padding: 50px 20px;
    }
    .c-inputs {
        width: 100%;
    }
    .c-btn {
        align-self: center;
    }
}

.mapa {
    width: 100%;
    max-width: 1000px;
    margin: 10px auto 70px;
    padding: 0 20px;
}

.mapa iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/*O NAMA*/

.about-hero{
    height: 60vh;
    background-image: url("/assets/kamioni.jpeg");
    background-size: cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

.about-overlay{
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.about-overlay h1{
    font-size:clamp(3rem,7vw,5rem);
    margin:0;
}

.about-overlay p{
    font-size:clamp(1rem,2vw,1.5rem);
}

.about-intro{
    max-width:1200px;
    margin:auto;
    padding:80px 20px;
    display:flex;
    align-items:center;
    gap:60px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:25px;
}

.about-text{
    flex:1;
}

.about-text h2{
    color:var(--primary-color);
    font-size:clamp(2rem,5vw,3rem);
    margin:0;
}

.about-text hr,
.values hr{
    width:200px;
    height:5px;
    background:var(--primary-color);
    border:none;
    border-radius:10px;
    margin:15px 0 25px;
}


.about-text p{
    color:#555;
    line-height:1.8;
    font-size:1.1rem;
}

.values{
    padding:70px 20px;
    text-align:center;
}

.values h2 {
    position: relative;
    display: inline-block;
    color: var(--primary-color);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 40px;
}

.values h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -18px;
    width: 200px;
    height: 5px;
    border-radius: 10px;
    background: var(--primary-color);
    opacity: 0.2;
}
.values {
    text-align: center;
}

.values-container{
    max-width:1200px;
    margin:40px auto 0;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.value-card{
    padding:30px;
    border-radius:25px;
    background:#f5f5f5;
    transition:.3s;
}

.value-card:hover{
    transform:translateY(-8px);
}

.value-card h3{
    color:var(--primary-color);
}

.value-card p{
    color:#555;
    line-height:1.6;
}

section.brojke {
    padding: 80px 20px;
    background-color: var(--primary-color);
}

.brojke .inner {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.brojke h2 {
    color: var(--background-color);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 10px;
}

.brojke .subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.brojke-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.brojke-card {
    background: #f5f5f5;
    padding: 40px 25px;
    border-radius: 25px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    transition: .3s ease;
    min-height: 180px;
}

.brojke-card:hover {
    transform: translateY(-7px);
}

.broj {
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
    opacity:0;
    transform:translateY(15px);
}

.broj::after {
    content:"+";
}

@media(max-width:900px){
    .about-intro{
        flex-direction:column;
    }
    .values-container{
        grid-template-columns:1fr;
    }
    .stats{
        flex-direction:column;
        gap:40px;
    }
    .brojke-grid{
        grid-template-columns:1fr;
        max-width:450px;
        margin:auto;
    }
}

.certificates-section {
    padding: 80px 0;
    background: #f4f4f2;
}

.certificates-heading {
    max-width: 700px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.certificates-heading h2 {
    font-size: clamp(42px, 5vw, 65px);
    line-height: 1;
    margin-bottom: 25px;
}

.certificates-heading p {
    max-width: 600px;
    color: #777;
    font-size: 17px;
    line-height: 1.7;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.certificate-card {
    min-width: 0;
}

.certificate-image {
    width: 100%;
    aspect-ratio: 0.71;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dededb;
    padding: 10px;
}

.certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}

.certificate-card:hover .certificate-image img {
    transform: scale(1.025);
}


.certificate-info {
    padding-top: 20px;
}

.certificate-info span {
    display: block;
    color: #999;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.certificate-info h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    color: #222;
}

@media (max-width: 991px) {

    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 20px;
    }

}

@media (max-width: 576px) {

    .certificates-section {
        padding: 75px 0;
    }
    .certificates-heading {
        margin-bottom: 40px;
    }
    .certificates-heading h2 {
        font-size: 40px;
        margin-bottom: 20px;
    }
    .certificates-heading p {
        font-size: 15px;
    }
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .certificate-card {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }
    .certificate-info h3 {
        font-size: 19px;
    }
}

.certificate-clickable {
    cursor: zoom-in;
}
.certificate-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.certificate-lightbox.active {
    display: flex;
}
.certificate-lightbox img {
    max-width: 90%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 45px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}
@media (max-width: 576px) {
    .certificate-lightbox {
        padding: 20px;
    }
    .certificate-lightbox img {
        max-width: 100%;
        max-height: 85vh;
    }
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 40px;
    }
}

.location-section {
    padding: 80px 0;
}
.location-heading {
    margin-bottom: 45px;
    color: var(--primary-color);
}
.location-heading h2 {
    font-size: clamp(40px,5vw,62px);
    line-height: 1.05;
    margin-bottom: 20px;
}
.location-heading p {
    color: #777;
    font-size: 17px;
    margin: 0;
}
.location-map {
    width: 100%;
    height: 500px;
    overflow: hidden;
}
.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
@media (max-width:576px) {
    .location-section {
        padding: 70px 0;
    }
    .location-heading {
        margin-bottom: 30px;
    }
    .location-heading h2 {
        font-size: 40px;
    }
    .location-heading p {
        font-size: 15px;
    }
    .location-map {
        height: 350px;
    }
}


/* ================================
   PRODUCT PAGES
================================ */

.product-hero {
    min-height: 75vh;
    position: relative;
    display: flex;
    align-items: center;
    background-image: url("/assets/baza_uvelicano.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
}

.product-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
}

.product-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.product-label,
.section-small-title {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
    margin-top: 30px;
}

.product-hero h1 {
    font-size: clamp(55px, 8vw, 105px);
    line-height: 0.95;
    font-weight: 700;
    margin-bottom: 30px;
}

.product-hero p {
    max-width: 520px;
    font-size: 20px;
    line-height: 1.6;
}

.product-intro {
    padding: 120px 0;
    background: #f4f4f2;
}

.product-intro h2,
.product-info h2 {
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.05;
    margin-bottom: 30px;
}

.product-intro p {
    color: #666;
    font-size: 17px;
    line-height: 1.8;
    max-width: 570px;
}

.product-image-placeholder {
    height: 500px;
    background: #d8d8d5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product-image-placeholder span {
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 600;
}

.product-image-placeholder {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.product-image-placeholder > div {
    width: 100%;
    height: 100%;
}

.product-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-image-video {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.product-image-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 576px) {

    .product-image-video {
        height: 300px;
    }

}

.concrete-classes {
    padding: 120px 0;
    background: #fff;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto;
}

.section-heading h2 {
    font-size: clamp(40px, 5vw, 60px);
    margin-bottom: 20px;
}

.section-heading p {
    color: #777;
    font-size: 17px;
}

.class-box {
    min-height: 180px;
    background: #eeeeeb;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.class-box:hover {
    transform: translateY(-5px);
}

.class-box span {
    font-size: 13px;
    letter-spacing: 3px;
    color: #777;
}

.class-box strong {
    font-size: 46px;
    line-height: 1;
    margin-top: 10px;
}

.product-banner {
    padding: 100px 0;
    background: #f4f4f2;
}

.product-banner-image {
    height: 500px;
    background: #d5d5d2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-banner {
    padding: 100px 0;
    background: #f4f4f2;
}

.product-banner-video {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.product-banner-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {

    .product-banner-video {
        height: 400px;
    }

}


@media (max-width: 576px) {

    .product-banner {
        padding: 60px 0;
    }

    .product-banner-video {
        height: 280px;
    }

}

.banner-placeholder {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #777;
}

@media (max-width: 768px) {
    .product-hero {
        min-height: 65vh;
    }
    .product-hero h1 {
        font-size: 58px;
    }
    .product-intro,
    .concrete-classes,
    .product-info {
        padding: 80px 0;
    }
    .product-image-placeholder {
        height: 350px;
    }
    .product-banner-image {
        height: 300px;
    }
    .class-box {
        min-height: 140px;
    }
    .class-box strong {
        font-size: 45px;
    }
}

.pumpani-hero {
    background-image: url("/assets/beton.jpg");
}

.special-hero {
    background-image: url("/assets/kamion.jpg");
}

.special-concrete-list {
    padding: 120px 0;
    background: #f4f4f2;
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 60px;
    background: #d0d0cd;
}

.special-card {
    background: #fff;
    min-height: 330px;
    padding: 45px;
    position: relative;
}

.special-number {
    display: block;
    font-size: 13px;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 50px;
}

.special-card h3 {
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 400px;
}

.special-card p {
    color: #777;
    line-height: 1.7;
    max-width: 500px;
    margin: 0;
}

@media (max-width: 768px) {
    .special-concrete-list {
        padding: 80px 0;
    }
    .special-grid {
        grid-template-columns: 1fr;
    }
    .special-card {
        min-height: auto;
        padding: 35px;
    }
    .special-number {
        margin-bottom: 30px;
    }
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}


.production-section {
    padding: 120px 0;
    background: #d8d8d5;
    color: var(--primary-color);
}

.production-section .section-small-title {
    color: #777;
}

.production-section h2 {
    font-size: clamp(40px, 5vw, 65px);
    line-height: 1.03;
    font-weight: 600;
    margin: 0;
    max-width: 500px;
}

.production-intro {
    padding-bottom: 35px;
}

.production-intro p {
    color: #494949;
    font-size: 19px;
    line-height: 1.75;
    margin: 0;
}

.production-item {
    display: flex;
    gap: 30px;
    padding: 35px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.production-number {
    flex-shrink: 0;
    font-size: 13px;
    color: #494949;
    letter-spacing: 2px;
    padding-top: 4px;
}

.production-item h3 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.production-item p {
    color: #494949;
    font-size: 16px;
    line-height: 1.75;
    margin: 0;
}

.production-item strong {
    color: var(--primary-color);
    font-weight: 500;
}

.production-note {
    margin-top: 12px !important;
    color: #494949 !important;
    font-size: 14px !important;
}

@media (max-width: 576px) {

    .production-section {
        padding: 75px 0;
    }

    .production-section h2 {
        font-size: 40px;
        margin-bottom: 45px;
    }

    .production-intro p {
        font-size: 17px;
        line-height: 1.7;
    }

    .production-item {
        gap: 18px;
        padding: 28px 0;
    }

    .production-item h3 {
        font-size: 21px;
    }

    .production-item p {
        font-size: 15px;
        line-height: 1.7;
    }

    .production-number {
        font-size: 11px;
    }

}

/* =========================================
   BETONSKE CEVI
========================================= */


.pipes-hero {
    background-image: url("/assets/cevi.jpeg");
}

.pipes-table-section {
    padding: 120px 0;
    background: #fff;
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #ddd;
}

.pipes-table {
    width: 100%;
    min-width: 850px;
    border-collapse: collapse;
    background: #fff;
}

.pipes-table th,
.pipes-table td {
    border: 1px solid #d5d5d2;
    text-align: center;
    padding: 18px 15px;
}

.pipes-table thead tr:first-child th {
    background: var(--primary-color);
    color: #fff;
    font-size: 18px;
    letter-spacing: 0.5px;
    padding: 22px;
}

.pipes-table thead tr:nth-child(2) th {
    background: #eeeeeb;
    color: #222;
    font-size: 15px;
    line-height: 1.35;
    vertical-align: middle;
}

.pipes-table th small {
    display: inline-block;
    margin-top: 5px;
    font-size: 12px;
    font-weight: 400;
    color: #777;
}

.pipes-table tbody td {
    font-size: 16px;
    color: #444;
}

.pipes-table tbody tr:nth-child(even) {
    background: #f7f7f5;
}

.pipes-table tbody tr:hover {
    background: #eeeeeb;
}

.table-note {
    margin-top: 18px;
    color: #888;
    font-size: 13px;
}

@media (max-width: 576px) {

    .pipes-intro {
        padding: 75px 0;
    }

    .pipes-intro h2 {
        font-size: 40px;
    }

    .pipes-intro p {
        font-size: 15px;
    }

    .pipes-image-placeholder {
        height: 280px;
    }

    .pipes-table-section {
        padding: 75px 0;
    }

    .table-heading {
        margin-bottom: 35px;
    }

    .table-heading h2 {
        font-size: 38px;
    }

    .table-wrapper {
        margin-left: 0;
        margin-right: 0;
    }

}

#carouselExampleIndicators {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 70px;
    margin-bottom: 70px;
}

#carouselExampleIndicators img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

#carouselExampleCaptions {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 70px;
    margin-bottom: 70px;
}

#carouselExampleCaptions img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/*elementi za sahte*/
.shafts-hero {
    background-image: url("/assets/kineta.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.shaft-main {
    padding: 60px 0;
    background: #f4f4f2;
}
.shaft-main h2 {
    font-size: clamp(40px,5vw,62px);
    line-height: 1.05;
    margin-bottom: 25px;
}
.shaft-main p {
    color: #777;
    font-size: 17px;
    line-height: 1.8;
    max-width: 520px;
}
.shaft-drawing {
    width: 100%;
    background: #fff;
    padding: 25px;
    border: 1px solid #ddd;
}
.shaft-drawing img {
    width: 100%;
    height: auto;
    display: block;
}
.shaft-products {
    padding: 120px 0;
    background: #fff;
}
.shaft-heading {
    max-width: 700px;
    margin-bottom: 55px;
}
.shaft-heading h2 {
    font-size: clamp(40px,5vw,60px);
    line-height: 1.05;
    margin-bottom: 20px;
}
.shaft-heading p {
    color: #777;
    font-size: 16px;
}
.shaft-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2px;
    background: #ddd;
}
.shaft-card {
    background: #f4f4f2;
    padding: 40px;
    min-height: 280px;
}
.shaft-number {
    display: block;
    color: #999;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 45px;
}
.shaft-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
}
.shaft-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 5px;
}
@media (max-width:991px) {
    .shaft-grid {
        grid-template-columns: repeat(2,1fr);
    }
}
@media (max-width:576px) {
    .shaft-main,.shaft-products {
        padding: 75px 0;
    }
    .shaft-main h2,.shaft-heading h2 {
        font-size: 40px;
    }
    .shaft-drawing {
        padding: 12px;
    }
    .shaft-grid {
        grid-template-columns: 1fr;
    }
    .shaft-card {
        min-height: 0;
        padding: 30px 25px;
    }
    .shaft-number {
        margin-bottom: 25px;
    }
}

/*ivicnjaci*/
.curbs-hero {
    background-image: url("/assets/ivicnjak1.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.curbs-intro {
    padding: 100px 0;
    background: #f4f4f2;
}
.curbs-intro h2 {
    font-size: clamp(40px,5vw,62px);
    line-height: 1.05;
    margin: 0;
}
.curbs-intro p {
    color: #777;
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
}
.curbs-products {
    padding: 110px 0 120px;
    background: #fff;
}
.curbs-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}
.curb-card {
    border: 1px solid #ddd;
    background: #f7f7f5;
    min-width: 0;
}
.curb-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    border-bottom: 1px solid #ddd;
}
.curb-number {
    color: #999;
    font-size: 12px;
    letter-spacing: 2px;
}
.curb-type {
    color: #777;
    font-size: 12px;
    letter-spacing: 1px;
    text-align: right;
}
.curb-drawing {
    height: 330px;
    padding: 25px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.curb-drawing img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.curb-info {
    padding: 25px;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.curb-info h3 {
    margin: 0;
    font-size: 27px;
    font-weight: 500;
}
.curb-info span {
    color: #888;
    font-size: 14px;
}

.curb-dimension-label {
    color: #888;
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.curb-no-drawing-content h3 {
    font-size: clamp(42px,5vw,62px);
    line-height: 1;
    margin: 0;
}
.curb-unit {
    color: #aaa;
    font-size: 17px;
    margin-top: 10px;
}
.curb-no-drawing-content p {
    color: #999;
    font-size: 14px;
    margin: 35px 0 0;
}
.ivicnjaci-video-gallery{
    padding:80px 0;
}
.ivicnjaci-video-gallery .section-heading{
    margin-bottom:40px;
}
#ivicnjaciVideoCarousel{
    max-width:900px;
    margin:0 auto;
}
#ivicnjaciVideoCarousel .carousel-inner{
    border-radius:12px;
    overflow:hidden;
}
#ivicnjaciVideoCarousel video{
    width:100%;
    height:520px;
    object-fit:cover;
    background:#000;
}

#carouselExampleIndicators,
#ivicnjaciVideoCarousel{
    width:100%;
    max-width:900px;
    margin:0 auto;
}
#carouselExampleIndicators .carousel-inner,
#ivicnjaciVideoCarousel .carousel-inner{
    width:100%;
    height:470px;
    border-radius:12px;
    overflow:hidden;
}
#carouselExampleIndicators .carousel-item,
#ivicnjaciVideoCarousel .carousel-item{
    width:100%;
    height:520px;
}
#carouselExampleIndicators img,
#ivicnjaciVideoCarousel video{
    width:100%;
    height:100%;
    object-fit:cover;
}
.ivicnjaci-video-gallery{
    padding:60px 0;
}
@media(max-width:768px){
    #carouselExampleIndicators .carousel-inner,
    #ivicnjaciVideoCarousel .carousel-inner,
    #carouselExampleIndicators .carousel-item,
    #ivicnjaciVideoCarousel .carousel-item{
        height:350px;
    }
}
@media(max-width:768px){
    .ivicnjaci-video-gallery{
        padding:50px 0;
    }
    #ivicnjaciVideoCarousel video{
        height:350px;
    }
}

@media (max-width:991px) {
    .curbs-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width:576px) {
    .curbs-hero {
        padding: 0 0 45px;
    }
    .curbs-hero h1 {
        font-size: 48px;
    }
    .curbs-hero p {
        font-size: 16px;
    }
    .curbs-intro,.curbs-products {
        padding: 70px 0;
    }
    .curbs-intro h2 {
        font-size: 40px;
        margin-bottom: 25px;
    }
    .curbs-intro p {
        font-size: 15px;
    }
    .curbs-grid {
        gap: 15px;
    }
    .curb-drawing {
        height: 260px;
        padding: 15px;
    }
    .curb-card-top {
        padding: 17px 18px;
    }
    .curb-info {
        padding: 20px;
    }
    .curb-info h3 {
        font-size: 23px;
    }
    .curb-no-drawing-content {
        min-height: 300px;
        padding: 40px 25px;
    }
}

/*behaton i raster ploce*/
.paving-hero {
    padding: 50px 0 50px;
    background: var(--primary-color);
    color: #ffffff;
}
.paving-hero .product-label {
    color: #c6c5e1;
}
.paving-hero h1 {
    font-size: clamp(55px,8vw,100px);
    line-height: .93;
    font-weight: 700;
    margin: 20px 0 30px;
}
.paving-hero p {
    max-width: 600px;
    color: #c6c5e1;
    font-size: 18px;
    line-height: 1.7;
}

.paving-section {
    padding: 110px 0 120px;
    background: #fff;
}
.paving-section-heading {
    max-width: 720px;
    margin-bottom: 50px;
}
.paving-section-heading h2 {
    font-size: clamp(40px,5vw,60px);
    line-height: 1.05;
    margin-bottom: 20px;
}
.paving-section-heading p {
    color: #777;
    font-size: 16px;
}
.thickness-row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2px;
    background: #d8d8d5;
    margin-bottom: 60px;
}
.thickness-box {
    background: #f4f4f2;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.thickness-box span {
    color: #888;
    font-size: 11px;
    letter-spacing: 2px;
}
.thickness-box strong {
    font-size: 60px;
    line-height: 1;
    margin-top: 10px;
}
.thickness-box small {
    color: #888;
    font-size: 14px;
    margin-top: 5px;
}
.dimension-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
}
.dimension-card {
    min-height: 190px;
    padding: 25px;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.dimension-card span {
    color: #dddddd;
    font-size: 11px;
    letter-spacing: 2px;
}
.dimension-card h3 {
    font-size: 30px;
    margin: 35px 0 0;
}
.dimension-card p {
    color: #dddddd;
    font-size: 14px;
    margin: 0;
}
.shape-strip {
    margin-top: 60px;
    padding: 35px 40px;
    background: #f4f4f2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.shape-strip span {
    color: #999;
    font-size: 11px;
    letter-spacing: 2px;
}
.shape-strip h3 {
    font-size: 30px;
    margin: 8px 0 0;
}
.shape-strip p {
    max-width: 500px;
    color: #777;
    line-height: 1.7;
    margin: 0;
}
.raster-section {
    padding: 100px 0;
    color: #000000;
}
.raster-section h2 {
    font-size: clamp(40px,5vw,60px);
    line-height: 1.05;
    margin-bottom: 25px;
}
.raster-section p {
    color: #545454;
    font-size: 16px;
    line-height: 1.7;
}
.raster-thickness {
    border-top: 1px solid #8f8f8f;
}
.raster-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 35px 0;
    border-bottom: 1px solid #8f8f8f;
}
.raster-item > span {
    color: #777;
    font-size: 12px;
    letter-spacing: 2px;
}
.raster-item small {
    display: block;
    color: #888;
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 6px;
}
.raster-item strong {
    font-size: 36px;
    font-weight: 500;
}
@media (max-width:991px) {
    .dimension-grid {
        grid-template-columns: repeat(2,1fr);
    }
}
@media (max-width:576px) {
    .paving-hero {
        padding: 35px 0 35px;
    }
    .paving-hero h1 {
        font-size: 52px;
    }
    .paving-hero p {
        font-size: 16px;
    }
    .paving-intro,.paving-section,.raster-section {
        padding: 70px 0;
    }
    .paving-intro h2,.paving-section-heading h2,.raster-section h2 {
        font-size: 40px;
    }
    .thickness-row {
        grid-template-columns: repeat(3,1fr);
        margin-bottom: 40px;
    }
    .thickness-box {
        min-height: 140px;
    }
    .thickness-box strong {
        font-size: 42px;
    }
    .dimension-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 10px;
    }
    .dimension-card {
        min-height: 155px;
        padding: 20px;
    }
    .dimension-card h3 {
        font-size: 23px;
    }
    .shape-strip {
        margin-top: 40px;
        padding: 30px 25px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .raster-item {
        padding: 28px 0;
    }
}

/*rigole kanalete korube i kanali*/
.product-category {
    padding: 120px 0;
}
.rigole-section {
    background: #f4f4f2;
    color: var(--primary-color);
}
.kanalete-section {
    background: #ecebeb;
    color: var(--primary-color);
}
.korube-section {
    background: #f9f9f9;
    color: var(--primary-color);
}
.kanali-section {
    color: var(--primary-color);
}
.category-heading {
    display: flex;
    align-items: flex-start;
    gap: 35px;
    margin-bottom: 65px;
}
.category-heading > span {
    font-size: 14px;
    font-weight: 600;
    color: #8b8a8a;
    padding-top: 12px;
}
.category-heading p {
    font-size: 12px;
    letter-spacing: 2.5px;
    color: #8b8a8a;
    margin: 0 0 10px;
}
.category-heading h2 {
    font-size: clamp(45px,6vw,72px);
    line-height: 1;
    margin: 0;
}
.korube-section .category-heading p,
.korube-section .category-heading > span {
    color: #888;
}
.technical-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 2px;
    background: #ddd;
}
.technical-grid.one-item {
    grid-template-columns: minmax(0,650px);
    background: transparent;
}
.technical-card {
    background: #fff;
    min-width: 0;
}
.korube-section .technical-card {
    background: #f4f4f2;
    color: #222;
}
.technical-sketch {
    width: 100%;
    height: 390px;
    padding: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.technical-sketch img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.technical-info {
    padding: 28px 35px 32px;
    border-top: 1px solid #e5e5e5;
}
.technical-info span {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 8px;
}
.technical-info h3 {
    font-size: 25px;
    font-weight: 600;
    margin: 0;
}
@media (max-width:991px) {
    .product-category {
        padding: 90px 0;
    }
    .technical-sketch {
        height: 320px;
    }
}
@media (max-width:767px) {
    .technical-grid,
    .technical-grid.one-item {
        grid-template-columns: 1fr;
    }
    .category-heading {
        gap: 20px;
        margin-bottom: 45px;
    }
}
@media (max-width:576px) {
    .product-category {
        padding: 70px 0;
    }
    .category-heading {
        margin-bottom: 35px;
    }
    .category-heading > span {
        display: none;
    }
    .category-heading h2 {
        font-size: 43px;
    }
    .technical-sketch {
        height: 280px;
        padding: 25px;
    }
    .technical-info {
        padding: 22px 25px 26px;
    }
    .technical-info h3 {
        font-size: 22px;
    }
}

/*betonski elementi*/
.special-products-page {
    background: #fff;
}
.special-product-section {
    padding: 100px 0;
}
.chimney-section {
    background: #f4f4f2;
}
.blocks-section {
    background: #fff;
}
.ventilation-section {
    background: #f4f4f2;
    color: #222;
}
.special-section-heading {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 28px;
}
.special-section-heading > span {
    color: #b0b0b0;
    font-size: 13px;
    font-weight: 600;
    padding-top: 8px;
}
.special-section-heading p {
    font-size: 11px;
    letter-spacing: 2.2px;
    color: #999;
    margin: 0 0 8px;
    text-transform: uppercase;
}
.special-section-heading h2 {
    font-size: clamp(40px,5vw,62px);
    font-weight: 600;
    margin: 0;
    line-height: 1.05;
    color: #222;
}
.special-description {
    max-width: 680px;
    color: #777;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 50px;
}
.ventilation-section .special-description {
    color: #777;
}
.diameter-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 14px;
    background: transparent;
}
.diameter-card {
    background: #fff;
    border: 1px solid #e2e2e2;
    padding: 28px 24px;
    min-height: 165px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform .25s ease, box-shadow .25s ease;
}
.diameter-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
}
.diameter-card span,
.dimension-card span,
.ventilation-card > span {
    font-size: 10px;
    letter-spacing: 2px;
    color: #aaa;
    font-weight: 600;
}
.diameter-card h3 {
    font-size: 34px;
    font-weight: 600;
    margin: 14px 0 0;
    color: #222;
}
.diameter-card p {
    color: #999;
    margin: 2px 0 0;
    font-size: 14px;
}
.blocks-groups {
    display: flex;
    flex-direction: column;
    gap: 65px;
}
.blocks-group-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e5e5e5;
}
.blocks-group-heading span {
    font-size: 11px;
    color: #aaa;
    letter-spacing: 2px;
}
.blocks-group-heading h3 {
    font-size: 27px;
    font-weight: 600;
    margin: 0;
    color: #222;
}
.dimensions-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
    background: transparent;
}
.dimension-card {
    background: #f7f7f5;
    border: 1px solid #e7e7e7;
    padding: 28px 26px;
    min-height: 165px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform .25s ease, box-shadow .25s ease;
}
.dimension-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
}
.dimension-card h3 {
    font-size: 23px;
    font-weight: 600;
    margin: 14px 0 0;
    color: #222;
}
.dimension-card p {
    margin: 3px 0 0;
    color: #999;
    font-size: 14px;
}
.ventilation-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    background: transparent;
}
.ventilation-card {
    background: #fff;
    border: 1px solid #e1e1e1;
    padding: 34px;
    min-height: 255px;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}
.ventilation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
}
.ventilation-card h3 {
    font-size: 58px;
    line-height: 1;
    margin: 22px 0;
    font-weight: 600;
    color: #222;
}
.ventilation-dimension {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #e6e6e6;
}
.ventilation-dimension small {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    color: #aaa;
    margin-bottom: 7px;
}
.ventilation-dimension strong {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}
@media (max-width:991px) {
    .special-product-section {
        padding: 85px 0;
    }
    .diameter-grid {
        grid-template-columns: repeat(3,1fr);
    }
    .dimensions-grid {
        grid-template-columns: repeat(2,1fr);
    }
}
@media (max-width:767px) {
    .special-product-section {
        padding: 70px 0;
    }
    .ventilation-grid {
        grid-template-columns: 1fr;
    }
    .special-description {
        margin-bottom: 40px;
    }
}
@media (max-width:576px) {
    .special-product-section {
        padding: 60px 0;
    }
    .special-section-heading {
        gap: 12px;
        margin-bottom: 22px;
    }
    .special-section-heading > span {
        display: none;
    }
    .special-section-heading h2 {
        font-size: 38px;
    }
    .special-description {
        font-size: 15px;
        margin-bottom: 35px;
    }
    .diameter-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 10px;
    }
    .diameter-card {
        min-height: 135px;
        padding: 22px 18px;
    }
    .diameter-card h3 {
        font-size: 28px;
    }
    .blocks-groups {
        gap: 50px;
    }
    .blocks-group-heading h3 {
        font-size: 23px;
    }
    .dimensions-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .dimension-card {
        min-height: 125px;
        padding: 22px;
    }
    .dimension-card h3 {
        font-size: 22px;
    }
    .ventilation-card {
        min-height: 210px;
        padding: 26px;
    }
    .ventilation-card h3 {
        font-size: 50px;
    }
}

/*namenski proizvodi*/
.purpose-products-page {
    background: #fff;
}
.purpose-section {
    padding: 100px 0;
}
.culvert-section {
    background: #f4f4f2;
}
.sound-wall-section {
    background: #fff;
}
.lego-section {
    background: #f4f4f2;
}
.purpose-heading {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 45px;
}
.purpose-heading > span {
    font-size: 13px;
    color: #aaa;
    font-weight: 600;
    padding-top: 8px;
}
.purpose-heading h2 {
    font-size: clamp(40px,5vw,62px);
    line-height: 1.05;
    font-weight: 600;
    color: #222;
    margin: 0;
}
.purpose-feature {
    display: grid;
    grid-template-columns: minmax(0,1.4fr) minmax(280px,.6fr);
    gap: 2px;
    background: #ddd;
}
.purpose-sketch {
    background: #fff;
    min-height: 500px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.purpose-sketch img {
    width: 100%;
    height: 100%;
    max-height: 430px;
    object-fit: contain;
    display: block;
}
.purpose-details {
    background: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.purpose-details span {
    font-size: 11px;
    letter-spacing: 2px;
    color: #aaa;
    margin-bottom: 12px;
}
.purpose-details h3 {
    font-size: clamp(30px,3vw,42px);
    line-height: 1.1;
    color: #222;
    margin: 0;
    font-weight: 600;
}

.purpose-feature-image {
    display: block;
    background: transparent;
}
.purpose-feature-image .purpose-sketch {
    width: 100%;
    height: 470px;
    min-height: 0;
    padding: 0;
    overflow: hidden;
}
.purpose-feature-image .purpose-sketch img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    display: block;
}
@media (max-width:991px) {
    .purpose-feature-image .purpose-sketch {
        height: 400px;
    }
}
@media (max-width:576px) {
    .purpose-feature-image .purpose-sketch {
        height: 280px;
    }
}

@media (max-width:991px) {
    .purpose-section {
        padding: 85px 0;
    }
    .purpose-feature {
        grid-template-columns: 1fr;
    }
    .purpose-sketch {
        min-height: 420px;
    }
    .purpose-details {
        min-height: 160px;
    }
}
@media (max-width:576px) {
    .purpose-section {
        padding: 65px 0;
    }
    .purpose-heading {
        gap: 12px;
        margin-bottom: 30px;
    }
    .purpose-heading > span {
        display: none;
    }
    .purpose-heading h2 {
        font-size: 38px;
    }
    .purpose-sketch {
        min-height: 300px;
        padding: 25px;
    }
    .purpose-details {
        padding: 28px 25px;
        min-height: 140px;
    }
    .purpose-simple-card {
        padding: 30px 25px;
        min-height: 180px;
    }
}