/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
    max-width: 100vw;
}

section {
    overflow-x: hidden;
    max-width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('../ppc-images/CopyofManufacturersPagev4.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 20px 40px;
}

.header-bar {
    position: absolute;
    top: 0;
    right: 0;
    background: #15a0c3;
    padding: 20px 50px;
    border-bottom-left-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    max-width: 90%;
}

.phone-icon {
    width: 90px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-icon img {
    width: 70px;  
    height: auto;
    margin-right: 20px;
}

.phone-text {
    color: #fff;
}

a[href^="tel:"] {
  text-decoration: none;
  color: #fff;
}

a[href^="tel:"]:hover {
    color: #000;
}

.phone-text p {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    font-size: 30px;
    line-height: 1.3;
}

.phone-text p:nth-child(2) {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    font-size: 30px;
    line-height: 1.3;
    margin-left: -5px;
}

.logo {
    position: absolute;
    top: 30px;
    left: 40px;
    z-index: 10;
}

.logo img {
    height: 60px;
    width: auto;
    margin-left: 150px;
    filter: brightness(0) invert(1);
}

.hero-content {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text h1 {
    font-size: 62.2px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-text h1 span {
    color: #15a0c3;
}

.hero-text p {
    font-size: 36px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.5;
}

.underline {
  position: relative;
  display: inline-block;
}

.underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 3px;
  background-color: #00bcd4;
}

.cta-button {
    background: #15a0c3;
    color: #fff;
    border: solid 2px;
    border-color: #000;
    padding: 20px 50px;
    font-size: 25px;
    font-family: 'Poppins', sans-serif;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    width: 85%;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 10px;
}

.laptop-screen p {
    font-size: 16.7px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    text-align: center;
    padding: 0px 90px;
} 

.cta-button:hover {
    background: #3cd6fd;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 212, 247, 0.4);
}

.hero-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: -100px;
}

/* ===== CAROUSEL SECTION ===== */
.section-carousel {
    position: relative;
    width: 100%;
    min-height: auto;
    overflow: hidden;
}

@media screen and (min-width: 1024px) {
    .section-carousel {
        height: 100% !important;
        min-height: 967px !important;
}
}

.carousel-track {
    display: flex;
    width: 300%;
    min-height: auto;
    transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1); /* Smoother easing */
    will-change: transform;
    transform: translate3d(0, 0, 0); /* Force GPU layer */
}

.carousel-track section {
    width: 100vw;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: auto;
    transform: translateZ(0); /* Force GPU layer */
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 60px;
    z-index: 1000;
    padding: 15px 30px;
    background: transparent;
    border-radius: 30px;
}

.dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(128, 128, 128, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.dot.active {
    background: #15a0c3;
    transform: scale(1.4);
    border-color: rgba(0, 118, 187, 0.3);
}

.dot:hover {
    background: rgba(69, 187, 255, 0.7);
    transform: scale(1.2);
}

.laptop-mockup {
    width: 100%;
    max-width: 700px;
    margin-top: 100px;
}

.laptop-screen {
    width: 100%;
    max-width: 100%;
    display: grid;
  place-items: center;
}

.laptop-screen img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}


/* ===== SHOWCASE SECTION ===== */
.showcase {
    background: #fff;
    padding: 70px 20px 70px 20px;
    text-align: center;
    overflow: hidden;
}

.showcase h2 {
    font-size: 75px;
    font-family: 'Poppins', sans-serif;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    color: #000;
    font-weight: bold;
        margin-top: -30px;
}

.showcase p {
    font-size: 37.9px;
    font-family: 'Poppins', sans-serif;
    color: #000;
    margin-bottom: 100px;
}

.laptop-container {
    position: relative;
    width: 100%;
    max-width: 1650px;
    height: 500px;
    margin: 0 auto;
    perspective: 2000px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.laptop {
    position: absolute;
    top: 50%;
    transform-style: preserve-3d;
    transition: transform 0.5s ease, z-index 0.5s ease;
}

.laptop-center {
    left: 50%;
    transform: translate(-50%, -40%) scale(1.15);
    z-index: 3;
    width: 42%;
}


.laptop-left {
    left: 0%;
    transform: translateY(-60%) rotateY(0deg) scale(1);
    z-index: 2;
    width: 42%;
    opacity: 0.95;
}

.laptop-right {
    right: 0%;
    transform: translateY(-60%) rotateY(0deg) scale(1);
    z-index: 1;
    width: 42%;
    opacity: 0.95;
}

.laptop-screen {
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
}

.showcase-laptop-screen img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* ===== FEATURES SECTION ===== */
.features {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 40px 60px 80px;
    overflow-x: hidden;
    overflow-y: visible;
    justify-content: center;
}

.features h2 {
    color: #000;
    font-size: 84.6px;
    font-family: 'Poppins', sans-serif;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    margin-left: 0;
    text-align: left;
    margin-bottom: 60px;
    font-weight: bold;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.features-grid {
    width: 100%;
    max-width: 1700px;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    transform: translateZ(0); /* Force GPU layer */
    
}

.feature-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 40px;
    border: solid #15a0c3;
    text-align: center;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateZ(0); /* Force GPU layer */
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateZ(0);
}

.feature-card:nth-child(1) {
    background-image: url('../ppc-images/catalog.png');
    background-size: cover;     /* makes the image cover the container */
  background-position: center; /* keeps it centered */
  background-repeat: no-repeat;
}

.feature-card:nth-child(2) {
    background-image: url('../ppc-images/dealer2.png');
    background-size: cover;     /* makes the image cover the container */
  background-position: center; /* keeps it centered */
  background-repeat: no-repeat;
}

.feature-card:nth-child(3) {
    background-image: url('../ppc-images/design.png');
    background-size: cover;     /* makes the image cover the container */
  background-position: center; /* keeps it centered */
  background-repeat: no-repeat;
}

.feature-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #15a0c3;
    padding: 40px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 108px; /* Fixed height for desktop */
}

.feature-overlay h3 {
    font-size: 28px;
    margin: 0;
    font-weight: bold;
    text-rendering: optimizeLegibility;
    line-height: 1.2;
}
/* ===== SOLUTIONS SECTION ===== */
.solutions {
    background: #fff;
    padding: 70px 50px;
    overflow-x: hidden;
    overflow-y: visible;
}

.solutions h2 {
    font-size: 75px;
    font-family: 'Poppins', sans-serif;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
    color: #000;
}

.solutions-subtitle {
    font-size: 29.9px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    color: #000;
    margin-bottom: 60px;
}

.solutions-grid {
    max-width: 1700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
}

.solution-card {
    background: #15a0c3;
    padding: 50px 40px;
    color: #fff;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.solution-card h3 {
    font-size: 28px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #fff;
    font-weight: bold;
}

.solution-card ul {
    list-style: none;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    line-height: 3;
}

/* FORM SECTION */
.contact-form {
    padding: 60px 20px 100px;
    width: 100%;
    max-width: 100vw;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../ppc-images/top-view-boards-mdf-material.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
}

.zcwf_title {
    word-wrap: break-word;
    padding: 0px 20px 10px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 72.8px;
    max-width: 1900px;
    color: white;
    text-align: center;
    margin: 0 auto 20px;
    line-height: 1.2;
}

.zcwf_description {
    max-width: 1000px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 33.7px;
    text-align: center;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.zcwf_bottom_title {
    margin-top: 30px;
    padding: 0px 20px 10px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 41.8px;
    max-width: 1200px;
    color: white;
    text-align: center;
    margin: 30px auto 20px;
}

.zcwf_bottom_title a {
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}


.zcwf_bottom_title a:hover {
    color: #15a0c3;
    transform: scale(1.05);
}



.zcwf_secondary_description {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 19.7px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: -30px;
}

.zf-tempHeadBdr,
.zf-tempHeadContBdr,
.zf-frmDesc {
    display: none;
}

.zf-subContWrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.zfgrid_Wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 20px;
    width: 100%;
}

.zftwoColumn {
    display: contents;
}

.zfCol {
    display: contents;
}

.zf-tempFrmWrapper {
    display: flex;
    flex-direction: column;
}

.zf-tempFrmWrapper.submit-field {
    align-items: flex-end;
    padding-bottom: 0;
}

.zf-labelName {
    display: none;
}

.zf-important {
    color: #e53e3e;
    margin-left: 3px;
    font-style: normal;
}

.zf-tempContDiv input[type="text"] {
    padding: 10px 16px;
    border: 2px solid #000;
    border-radius: 8px;
    font-size: 26px;
    font-family: 'Poppins', 'sans-serif';
    transition: all 0.3s ease;
    background: white;
    width: 100%;
    align-items: center;
}

.zf-tempContDiv input::placeholder {
    color: #000;
    font-size: 26px;
    font-family: 'Poppins', 'sans-serif';
    opacity: 1;
    transition: opacity 0.3s ease;
}

.zf-tempContDiv input:focus::placeholder {
    opacity: 0;
}

.zf-tempContDiv input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.zf-tempContDiv input.error {
    border-color: #e53e3e;
}

.zf-errorMessage {
    color: #e53e3e;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.zf-errorMessage.show {
    display: block;
}

.zf-clearBoth {
    clear: both;
}

.zcwf_row {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.zcwf_col_fld {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
}

.g-recaptcha {
    display: inline-block;
}

/* reCAPTCHA error positioning */
.zcwf_row .error-popup {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 10px;
    max-width: 304px;
}

/* Mobile reCAPTCHA adjustments */
@media (max-width: 768px) {
    .zcwf_row {
        margin-top: 15px;
        align-items: stretch;
    }
    
    .zcwf_col_fld {
        align-items: center;
    }
    
    .g-recaptcha {
        transform: scale(0.95);
    }
}

@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.85);
    }
    
    .zcwf_row .error-popup {
        max-width: 260px;
        font-size: 12px;
    }
}

.zf-fmFooter {
    display: none;
}

.zf-submitColor {
    padding: 16px 50px;
    background: #15a0c3;
    color: white;
    border: solid 2px #000;
    border-radius: 8px;
    font-size: 24px;
    font-family: 'Poppins', 'sans-serif';
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    height: fit-content;
}

.zf-submitColor:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.zf-submitColor:active {
    transform: translateY(0);
}

.zf-submitColor:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#recapErr3805132000140557001 {
    color: #e53e3e;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

#recapErr3805132000140557001.show {
    display: block;
}

.zf-tempContDiv.zf-phonefld .zf-phwrapper input {
    width: 100%;
}

.error-popup {
    position: absolute;
    bottom: -45px;
    left: 0;
    background: #ff4444;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 13px;
    display: none;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.3);
    z-index: 1000;
    animation: slideIn 0.3s ease;
}

.error-popup.show {
    display: flex;
}

.error-popup .error-icon {
    font-size: 16px;
    font-weight: bold;
}

.error-popup .error-message {
    flex: 1;
}

input.error,
select.error,
textarea.error {
    border-color: #ff4444 !important;
    background-color: #fff5f5 !important;
}

.zf-tempFrmWrapper,
.zf-tempContDiv {
    position: relative;
}

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

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    .contact-form {
        padding: 50px 30px 80px;
    }
    
    .zcwf_title {
        font-size: 52px;
        padding: 0px 15px 10px;
    }
    
    .zcwf_description {
        font-size: 26px;
        max-width: 900px;
        padding: 0 15px;
    }
    
    .zcwf_bottom_title {
        font-size: 34px;
        padding: 0px 15px 10px;
    }
    
    .zcwf_secondary_description {
        font-size: 17px;
        max-width: 800px;
        padding: 0 15px;
        margin-top: -30px;
    }
    
    .zfgrid_Wrapper {
        max-width: 700px;
        gap: 18px;
    }
    
    .zf-tempContDiv input[type="text"] {
        font-size: 22px;
        padding: 12px 14px;
    }
    
    .zf-tempContDiv input::placeholder {
        font-size: 22px;
    }
    
    .zf-submitColor {
        font-size: 20px;
        padding: 14px 40px;
    }
}

/* Mobile Styles (below 768px) */
@media (max-width: 768px) {
    .laptop-screen p {
        padding: 0px 0px;
        font-size: 15px;
    }
    .contact-form {
        padding: 40px 20px 60px;
    }
    
    .zcwf_title {
        font-size: 36px;
        padding: 0px 10px 10px;
        margin-bottom: 15px;
    }
    
    .zcwf_description {
        font-size: 18px;
        max-width: 100%;
        margin-bottom: 35px;
        padding: 0 10px;
    }
    
    .zcwf_bottom_title {
        font-size: 26px;
        padding: 0px 10px 10px;
        margin-top: 25px;
    }
    
    .zcwf_secondary_description {
        font-size: 14px;
        max-width: 100%;
        padding: 0 10px;
            margin-top: -30px;
    }
    
    .zfgrid_Wrapper {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 15px;
    }
    
    .zf-tempContDiv input[type="text"] {
        font-size: 18px;
        padding: 12px 14px;
    }
    
    .zf-tempContDiv input::placeholder {
        font-size: 18px;
    }
    
    .zf-submitColor {
        font-size: 18px;
        padding: 14px 30px;
    }
    
    .zf-tempFrmWrapper.submit-field {
        align-items: stretch;
    }
}

/* Small Mobile Styles (below 480px) */
@media (max-width: 480px) {
    .laptop-screen p {
        padding: 0px 0px;
        font-size: 13px;
    }
    .contact-form {
        padding: 30px 15px 50px;
    }
    
    .zcwf_title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .zcwf_description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .zcwf_bottom_title {
        font-size: 22px;
        margin-top: 20px;
    }
    
    .zcwf_secondary_description {
        font-size: 13px;
    }
    
    .zf-tempContDiv input[type="text"] {
        font-size: 16px;
        padding: 10px 12px;
    }
    
    .zf-tempContDiv input::placeholder {
        font-size: 16px;
    }
    
    .zf-submitColor {
        font-size: 16px;
        padding: 12px 25px;
    }
}

/* ===== Limitations section =====*/
        .limitations {
            background: #000;
            color: #fff;
            padding: 80px 0;
        }

        .limitations .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .limitations .hero-section {
            margin-bottom: 60px;
        }

        .limitations h1 {
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 30px;
            letter-spacing: -0.02em;
        }

        .limitations .subtitle {
            font-size: clamp(1.1rem, 2vw, 1.5rem);
            font-weight: 400;
            line-height: 1.4;
            color: #ddd;
            max-width: 1100px;
        }

        .limitations .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .limitations .left-column {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .limitations .card {
            border: 2px solid;
            border-radius: 20px;
            padding: 35px;
        }

        .limitations .card.challenge {
            border-color: #ff4444;
            background: rgba(255, 68, 68, 0.05);
        }

        .limitations .card.solution {
            border-color: #00d4ff;
            background: rgba(0, 212, 255, 0.05);
        }

        .limitations .card-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .limitations .card-header img {
            width: 55px;
            height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }

        .limitations .card h2 {
            font-size: 1.8rem;
            font-weight: 700;
        }

        .limitations .challenge h2 {
            color: #ff4444;
        }

        .limitations .solution h2 {
            color: #00d4ff;
        }

        .limitations .card p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #ccc;
        }

        .limitations .mockup-container {
            overflow: hidden;
            background: transparent;
        }

        .limitations .mockup-container img {
            margin-top: -120px;
        }

        .limitations .filter-image {
            width: 100%;
            height: auto;
            display: block;
        }

        @media (max-width: 1024px) {
            .limitations .content-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .limitations .container {
                padding: 0 20px;
            }

            .limitations {
                padding: 40px 0;
            }
            
            .limitations .mockup-container img {
                margin-top: 0px;
            }
        }
/* ===== RESPONSIVE DESIGN ===== */

/* Tablets and smaller desktops (1024px and below) */
@media screen and (max-width: 1024px) {
    .logo img {
        margin-left: 0px;
    }

    .hero-content {
        margin-top: 50px;
    }
    .hero-text h1 {
        font-size: 48px;
    }
    
    .hero-text p {
        font-size: 28px;
    }
    
    .cta-button {
        font-size: 26px;
        padding: 15px 40px;
    }
    
    .phone-text p {
        font-size: 24px;
    }
    
    .carousel-track section h2 {
        font-size: 56px;
    }
    
    .carousel-track section p {
        font-size: 28px;
        margin-bottom: 20px;
        
    }
    
    .features h2 {
        font-size: 56px;
        margin-top: -50px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .feature-card {
        min-height: 450px;
        padding: 40px 20px;
    }
    
    .feature-overlay {
        padding: 25px 20px;
        height: 90px; /* Fixed height instead of min-height */
    }
    
    .feature-overlay h3 {
        font-size: 20px;
    }
    
    .solutions h2 {
        font-size: 56px;
    }
    
    .solutions-subtitle {
        font-size: 24px;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .solution-card {
        padding: 40px 25px;
    }
    
    .solution-card h3 {
        font-size: 22px;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .solution-card ul {
        font-size: 18px;
        line-height: 3.5;
    }
    .zcwf_lblLeft .zcwf_title {
        padding: 0px 50px 10px;
    }
}

/* Landscape tablets and smaller (900px and below) */
@media screen and (max-width: 1440px) and (orientation: landscape) {
    .cta-button {
        font-size: 17px;
    }
.laptop-screen p {
        padding: 0px 0px;
        font-size: 15px;
    }
    .logo img{
        margin-left: 0px;
    }

    .showcase {
        padding: 100px 20px;
        justify-content: center;
    }

    .showcase h2{
        font-size: 42px;
    }
    .showcase p {
        margin-bottom: 50px !important;
        font-size: 20px;
    }
    .features {
        padding: 60px 30px;
    }
    
    .features h2 {
        font-size: 42px;
        margin-bottom: 40px;
        margin-top: 0px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .feature-card {
        min-height: 500px;
        padding: 30px 15px;
        background-size: contain;
    }
    
    .feature-overlay {
        padding: 20px 15px;
        height: 100px; /* Fixed height instead of min-height */
    }
    
    .feature-overlay h3 {
        font-size: 16px;
    }
    
    .solutions {
        padding: 60px 30px;
    }
    
    .solutions h2 {
        font-size: 42px;
        margin-top: 0px;
    }
    
    .solutions-subtitle {
        font-size: 20px;
        margin-bottom: 40px;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .solution-card {
        padding: 30px 20px;
        min-height: 500px;
    }
    
    .solution-card h3 {
        font-size: 28px;
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
    
    .solution-card ul {
        font-size: 23px;
        line-height: 4;
    }
    .zcwf_lblLeft .zcwf_title {
        padding: 0px 50px 10px;
    }
}

@media screen and (max-width: 1024px) and (orientation: landscape) {
    .solution-card {
        min-height: 400px;
    }
    .solution-card ul {
        font-size: 15px;
        line-height: 3.5;
    }
}


/* Mobile devices (768px and below) */
@media screen and (max-width: 768px) {
    .hero {
        padding: 100px 15px 30px;
    }
    
    .logo {
        top: 15px;
        left: 20px;
    }
    
    .logo img {
        height: 40px;
        margin-left: 0px;
    }
    
    .header-bar {
        padding: 15px 30px;
        gap: 10px;
    }
    
    .phone-icon {
        width: 60px;
        height: 30px;
    }
    
    .phone-icon img {
        width: 50px;
        margin-right: 10px;
    }
    
    .phone-text p {
        font-size: 18px;
        line-height: 1.2;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        justify-content: center;
    }
    
    .hero-text h1 {
        font-size: 36px;
        text-align: center;
        
    }
    
    .hero-text p {
        font-size: 20px;
        text-align: center;
    }
    
    .cta-button {
        font-size: 20px;
        padding: 12px 30px;
    }
    
    .carousel-track section {
        padding: 60px 20px 60px;
    }
    
    .carousel-track section h2 {
        font-size: 36px;
    }
    
    .carousel-track section p {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .section-carousel {
        transition: height 0.6s ease-in-out;
        overflow: hidden;
    }
    
    /* Reduce showcase section height on mobile */
    .carousel-track section.showcase {
        max-height: 600px;
        padding: 40px 20px;
        overflow: hidden;
    }
    
    .showcase h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .showcase p {
        font-size: 18px;
        margin-bottom: 70px !important;
    }
    
    /* Make laptop container smaller */
    .laptop-container {
        height: 50%;
        margin-top: 20px;
    }
    
    /* Adjust Features and Solutions sections */
    .carousel-track section.features {
        min-height: auto;
    }
    
    /* Solutions section - taller */
    .carousel-track section.solutions {
        min-height: auto;
    }
    
    .laptop-container {
        height: 300px;
    }
    
    .laptop-left,
    .laptop-right {
        display: none;
    }
    
    .laptop-center {
        width: 90%;
        transform: translate(-50%, -50%) scale(1);
    }
    
    .features {
        padding: 60px 20px;
    }
    
    .features h2 {
        font-size: 36px;
        text-align: center !important;
        margin-bottom: 40px;
        margin-top: 0px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        min-height: 400px;
        height: 400px;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }

    
    .feature-overlay {
        height: 100px; /* Fixed height instead of min-height */
    }
    
    .feature-overlay h3 {
        font-size: 22px;
    }
    
    .solutions {
        padding: 60px 20px;
    }
    
    .solutions h2 {
        font-size: 36px;
        margin-top: -10px;
    }
    
    .solutions-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .solution-card h3 {
        font-size: 30px;
    }
    
    .solution-card ul {
        font-size: 25px;
        line-height: 3.3;
    }
    
    .section-carousel {
        padding-bottom: 0px;
    }
    
    .carousel-dots {
        bottom: 15px;
        gap: 50px;
    }
    
    .dot {
        width: 14px;
        height: 14px;
        border: 2px solid transparent;
    }
}

/* Small mobile devices (480px and below) */
@media screen and (max-width: 480px) {
    .logo img{
        margin-left: 0px;
    }

    .header-bar {
        padding: 10px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .phone-icon {
        width: 80px;
        height: 25px;
    }
    
    .phone-icon img {
        width: 35px;
        margin-right: 5px;
    }
    
    .phone-text p {
        font-size: 14px;
    }
    .phone-text p:nth-child(2) {
        font-size: 14px;
    }
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    .carousel-track section.showcase {
        min-height: 400px;
        padding: 30px 15px;
    }
    
    .showcase h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .showcase p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .laptop-container {
        height: 200px;
        margin-top: 15px;
    }
    
    .laptop-center {
        width: 85%;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 10px 20px;
    }
    
    .carousel-track section h2 {
        font-size: 28px;
    }
    
    .carousel-track section p {
        font-size: 16px;
    }
    
    .features h2 {
        font-size: 28px;
    }

    .solutions h2 {
        font-size: 28px;
        margin-top: -100px;
    }
    
    .solutions-subtitle {
        font-size: 16px;
    }

    .solution-card h3 {
        font-size: 20px;
    }
    .solutions-grid {
        gap: 50px;
    }
    .solution-card ul {
        font-size: 16px;
        line-height: 3;
    }
    
}
