* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}

a {
    color: #fff;
    text-decoration: none;
}

a:visited {
    color: rgb(255, 255, 255);
    text-decoration: none;
}


html {
    scroll-behavior: smooth;

}

body {
    background-color: #fff;
}

header {
    padding: 1px;
    background-color: rgb(255, 255, 255);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    padding: 15px 4%;
    justify-content: space-between;
    align-items: center;
}

nav img {
    width: 300px;
}

.navlinks {
    flex: 1;
    text-align: right;
}

.navlinks ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.navlinks ul li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 16px;
}

.navlinks ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.navlinks ul li:hover::after {
    width: 100%;
}

.navlinks ul li:has(a.navlink-active)::after {
    width: 100%;
}


.textbox {
    position: relative;
    width: 100%;
    max-width: 800px;
    color: white;
    text-align: left;
    z-index: 3;
}

.textbox .highlight {
    color: #f44336;
}

.textbox h1 {
    font-size: 55px;
    line-height: 1.2;
}

.textbox p {
    font-size: 20px;
    margin: 15px 0 0;
    color: white;
}

/*
.landingpage {
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(res/front.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-origin: border-box;
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 10%;
}
*/
.landingpage {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 4%;
}

.landingpage::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
    pointer-events: none;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.contact-button {
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid #f44336;
    padding: 20px 30px;
    font-size: 17px;
    margin-top: 50px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.contact-button:hover {
    border: 1px solid #f44336;
    background: #f44336;
    transition: 0.5s;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 3;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle span:nth-child(1) {
    top: 8px;
}

.menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle span:nth-child(3) {
    bottom: 8px;
}

.navlinks {
    flex: 1;
    text-align: right;
}

.navlinks ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}

@media(max-width: 900px) {
    nav {
        padding: 12px 20px;
    }

    nav img {
        width: 220px;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle span {
        background: #000;
    }

    .menu-toggle.open span {
        background: #fff;
    }

    .menu-toggle.open span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.open span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .navlinks {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: #000;
        padding-top: 100px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 16px rgba(0, 0, 0, 0.25);
        z-index: 2;
    }

    .navlinks.open {
        right: 0;
    }

    .navlinks ul {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 1.1rem;
        padding: 0 1.4rem;
    }

    .navlinks ul li {
        display: block;
        padding: 0;
        margin-bottom: 0.5rem;
    }

    .navlinks ul li a {
        font-size: 18px;
        color: #fff;
    }
}

@media(max-width: 700px) {
    .landingpage {
        padding: 40px 20px;
        justify-content: center;
    }

    .textbox {
        text-align: center;
    }

    .textbox h1 {
        font-size: 32px;
    }

    .textbox p {
        font-size: 16px;
        margin-top: 15px;
    }

    .contact-button {
        padding: 14px 22px;
        font-size: 15px;
        margin-top: 30px;
    }
}

/* About us section */

.about-us {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-align: left;
    padding: 80px 0;
    background-color: rgb(255, 255, 255);
    color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    scroll-margin-top: 120px;
}

.about-us img {
    width: 45%;
    max-width: 500px;
    border-radius: 5px;
    height: auto;
    aspect-ratio: 10/9;
    object-fit: cover;
    flex-shrink: 0;
    vertical-align: middle;
}

.about-us h2 {
    font-size: 15px;
    margin-bottom: 10px;
    color: #f44336;
}

.about-us h3 {
    font-size: 50px;
    margin-bottom: 10px;
    background-image: linear-gradient(0deg, #000000, #000000);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.about-us p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #494949
}

.aboutuscol {
    flex: 1;
}

.aboutuscol span {
    display: inline-block;
    width: 20px;
    height: 3px;
    background: #f44336;
    vertical-align: middle;
    margin-right: 5px;
}

.learn-morebtn {
    display: inline-block;
    text-decoration: none;
    color: white;
    padding: 20px 30px;
    font-size: 17px;
    margin-top: 50px;
    background-color: black;
    position: relative;
    cursor: pointer;
}

.mobile-btn {
    display: none;
}


/* Products and services section */

.pns {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 15px 20px 40px;
    background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url(res/pnsbg.jpg);
    scroll-margin-top: 120px;
    backdrop-filter: blur(4px);
}

.pns span {
    display: inline-block;
    width: 20px;
    height: 3px;
    background: #f44336;
    vertical-align: middle;
    margin-right: 5px;
}

.pns h1 {
    margin-top: 10px;
    font-size: 15px;
    margin-bottom: 10px;
    color: #f44336;
}

.pns h2 {
    font-size: 35px;
    margin-bottom: 25px;
    background-image: linear-gradient(20deg, #000000, #000000);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.pnscol img {
    width: 100px;
    height: 80px;
    margin-bottom: 18px;
    object-fit: contain;
}

.pnscontainer {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 30px;
    padding: 0 10px 0px;
}

.pnscol {
    flex: 1 1 240px;
    max-width: 280px;
    background-color: rgb(246, 246, 246);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border-radius: 5px;
    margin-bottom: 0%;
    padding: 30px 18px;
    box-sizing: border-box;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pnscol:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.14);
}

.pnscol h3 {
    margin-bottom: 12px;
}

.pnscol ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.pnscol ul li {
    margin-bottom: 5px;
    line-height: 1.55;
    position: relative;
    padding-left: 18px;
}

.pnscol ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000000;
}

/* Why choose us section */
.wcu {
    width: 100%;
    background: #0b0b0b;
    color: #fff;
}

.wcu-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
}

.wcu-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.wcu-left h3 {
    color: #fff;
    font-size: 18px;
    margin: 0;
    letter-spacing: 0.6px;
}

.wcu-underline {
    display: inline-block;
    width: 48px;
    height: 3px;
    background: #f44336;
    border-radius: 2px;
}

.wcu-items {
    display: flex;
    gap: 28px;
    align-items: center;
}

.wcu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    color: #fff;
}

.wcu-item+.wcu-item {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.wcu-items img {
    width: 28px;
    height: 28px;
    display: block;
}

.wcu-text {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

@media (max-width: 820px) {
    .wcu-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .wcu-left {
        align-items: center;
    }

    .wcu-items {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .wcu-item {
        width: 100%;
        justify-content: center;
        padding: 12px 0;
    }

    .wcu-item+.wcu-item {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* How It Works Section */

.hiwandct {
    width: 100%;
    margin: 0;
    text-align: left;
    padding: 40px 60px 60px;
    background: #fafafa;
}

.hiw-left span {
    display: inline-block;
    width: 20px;
    height: 3px;
    background: #f44336;
    vertical-align: middle;
    margin-right: 5px;
}

.hiwandct h1 {
    font-size: 13px;
    color: #f44336;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hiwandct h2 {
    font-size: 36px;
    margin: 0 0 30px;
    background-image: linear-gradient(0deg, #000000, #000000);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hiwandct-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hiw-left {
    flex: 1;
}

/* Process steps inside How It Works */

.process {
    display: flex;
    align-items: stretch;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.step {
    flex: 1 1 250px;
    min-width: 250px;
    background: #fff;
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step:first-child {
    align-items: stretch;
    text-align: left;
}

.step:first-child .step-icon {
    justify-content: flex-start;
    flex-direction: row;
    gap: 18px;
}

.step:first-child .step-copy {
    align-items: flex-start;
}

.step:first-child .step-desc {
    text-align: left;
}

.step-icon {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
}

.step-circle {
    flex: 0 0 62px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #f44336;
    font-size: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.step-circle.step-2 {
    color: #777;
    border-color: rgba(0, 0, 0, 0.08);
}

.step-circle.step-3 {
    color: #111;
    border-color: rgba(0, 0, 0, 0.12);
}

.step-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-title {
    margin: 0;
    font-size: 18px;
    color: #f44336;
    font-weight: 700;
}

.step-desc {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.75;
}

.arrow {
    font-size: 28px;
    color: #cfcfcf;
    margin-top: 18px;
}

@media (max-width: 900px) {
    .hiwandct {
        padding: 60px 24px 40px;
    }

    .hiwandct h2 {
        font-size: 28px;
    }

    .process {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px
    }

    .arrow {
        display: none
    }

    .step {
        width: 100%;
        min-width: 0
    }

    .step-icon {
        justify-content: flex-start
    }
}

/* Contact Us Section */

.contactus {
    background-color: black;
    scroll-margin-top: 120px;
}

.contactuscontainer {
    display: flex;
    width: 100%;
    padding: 60px 5%;
    justify-content: space-between;
    gap: 40px;
    box-sizing: border-box;
}

.contactusleft {
    background-color: black;
}

.contactusleft h1 {
    color: white;
    font-size: 20px;
    text-decoration: none;
}

.underline {
    display: inline-block;
    width: 48px;
    height: 3px;
    background: #f44336;
    border-radius: 2px;
}

.contactusleft ul {
    color: white;
}

.contactusleft ul li {
    margin-bottom: 10px;
}

.contactusleft ul li,
.contactusright ul li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contactusmiddle h1 {
    color: white;
    font-size: 20px;
    text-decoration: none;
}

.contactusright h1 {
    color: white;
    font-size: 20px;
    text-decoration: none;
}

.contactusright li {
    color: white;
    font-weight: bold;
}

.contactusright p {
    color: #e7e7e7;
}

.contactusleft,
.contactusmiddle,
.contactusright {
    flex: 1;
    min-width: 0;
}

@media (max-width: 900px) {
    .contactuscontainer {
        flex-direction: column;
        padding: 40px 5%;
        gap: 36px;
    }

    .contactusleft,
    .contactusmiddle,
    .contactusright {
        width: 100%;
    }
}

.contactform {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contactform input[type="text"],
.contactform input[type="tel"],
.contactform textarea {
    padding: 12px 15px;
    background-color: #e0e0e0;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.contactform input[type="text"]::placeholder,
.contactform input[type="tel"]::placeholder,
.contactform textarea::placeholder {
    color: #666;
}

.contactform textarea {
    resize: vertical;
    grid-column: 1 / -1;
}

.send-btn {
    padding: 12px 20px;
    background-color: #a63c3c;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 5px;
}

.send-btn:hover {
    background-color: #8b3030;
}

/* About Us Page */

.about-us2 {
    width: 90%;
    max-width: 1450px;
    margin: auto;
    text-align: left;
    padding: 80px 0;
    color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    scroll-margin-top: 120px;
    gap: 60px;
    margin-bottom: 10px;
}

.about-us2 img {
    width: 800px;;
    /* border: 3px solid #000; */
    border-radius: 2px;
    height: 400px;
    object-fit: cover;
    flex-shrink: 0;
    vertical-align: middle;
    border-radius: 5px;
}

.aboutus-textbox span {
    display: inline-block;
    width: 20px;
    height: 3px;
    background: #f44336;
    vertical-align: middle;
    margin-right: 5px;
}

.aboutus-textbox h1 {
    color: #f44336;
    font-size: 15px;
}

.aboutus-textbox h2 {
    font-size: 50px;
    margin-bottom: 10px;
}

.mission-and-vision {
    padding-bottom: 15px;
    background-image: linear-gradient(rgba(166, 60, 60, 0.7), rgba(166, 60, 60, 0.7)), url(res/aboutusbg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.mission-and-vision h1 {
    background-image: linear-gradient(0deg, #ffffff, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 40px;
}

.mission-and-visioncontainer {
    color: white;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    scroll-margin-top: 120px;
    gap: 40px;
}


/* Notable Clients Section */

.notableclients {
    background: #f0f0f0;
    padding: 60px 0 80px;
}


.section-heading {
    max-width: 960px;
    margin: 0 auto 40px;
    text-align: center;
    padding: 0 20px;
}

.notableclients h1 {
    /* margin-bottom: 12px;
    background-image: linear-gradient(0deg, #541717, #f44336);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent; */
    font-size: 40px;
}

.notableclientscontainer {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    width: calc(100% - 40px);
    padding: 0 20px;
}

.client-card {
    background: #fff;
    border-radius: 5px;
    padding: 32px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.client-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1100px) {
    .notableclientscontainer {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .notableclientscontainer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .client-card {
        padding: 24px 16px;
        min-height: 100px;
    }
}









/* Footer */
.site-footer {
    background: #a63c3c;
    color: #fff;
    padding: 48px 20px 20px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 40px;
    padding-bottom: 28px;
}

.footer-col h4 {
    margin-bottom: 18px;
    font-size: 18px;
    letter-spacing: 0.7px;
}

.footer-contact ul,
.footer-areas ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li,
.footer-areas ul li {
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-areas ul li img,
.footer-contact li img,
.footer-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
    vertical-align: middle;
}

.footer-icon img {
    margin-right: 10px;
}

.footer-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.footer-areas h5 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 15px;
}

.footer-copy {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-align: center;
}

@media (max-width: 860px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-areas-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 620px) {
    .footer-areas-grid {
        grid-template-columns: 1fr;
    }

    .footer-copy {
        padding-top: 16px;
    }
}

img {
    max-width: 100%;
    height: auto;
}

.printer-button {
    display: inline-block;
    text-decoration: none;
    color: rgb(0, 0, 0);
    border: 1px solid #f44336;
    padding: 20px 30px;
    font-size: 17px;
    margin-top: 50px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.printer-button:hover {
    border: 1px solid #f44336;
    background: #f44336;
    transition: 0.5s;
}


@media (max-width: 900px) {

    .about-us,
    .about-us2,
    .mission-and-visioncontainer {
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .desktop-btn {
        display: none;
    }

    .mobile-btn {
        display: inline-block;
        margin-top: 10px;
    }

    .about-us img,
    .about-us2 img {
        width: 100%;
        max-width: 700px;
        height: auto;
    }

    .aboutuscol,
    .aboutus-textbox,
    .mission,
    .vision {
        width: 100%;
    }

    .aboutus-textbox h1 {
        font-size: 44px;
    }

    .mission-and-visioncontainer {
        padding: 30px 20px
    }

    .contactuscontainer {
        flex-direction: column;
        padding: 40px 20px;
        gap: 24px;
        align-items: stretch;
    }

    .contactusleft,
    .contactusmiddle,
    .contactusright {
        max-width: 100%;
    }

    nav img {
        width: 180px
    }

    .textbox h1 {
        font-size: 40px
    }
}

@media (max-width: 520px) {
    .textbox h1 {
        font-size: 28px
    }

    .textbox p {
        font-size: 16px
    }

    .navlinks ul li a {
        font-size: 15px
    }

    .pns h2 {
        font-size: 22px
    }

    .wcu-left h3 {
        font-size: 15px
    }

    .contactform input[type="text"],
    .contactform input[type="tel"],
    .contactform textarea {
        font-size: 14px
    }

    .send-btn {
        font-size: 14px;
        padding: 10px 14px
    }

    .about-us h3 {
        font-size: 28px
    }

    .aboutus-textbox h1 {
        font-size: 32px;
    }
}

@media (max-width: 360px) {
    nav {
        padding: 8px
    }

    nav img {
        width: 140px
    }

    .menu-toggle {
        width: 36px;
        height: 36px
    }

    .pnscontainer {
        gap: 12px
    }
}

/* Documentation Carousel Section */

.doc-section {
    width: 100%;
    background: #fff;
}

/* Carousel wrapper */
.doc-carousel-wrapper {
    padding: 50px 20px 60px;
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
}

.doc-heading {
    margin-bottom: 36px;
}

.doc-label {
    color: #f44336;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.doc-title {
    font-size: 38px;
    font-weight: 700;
    color: #111;
    line-height: 1.25;
}

/* Carousel layout */
.doc-carousel {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.doc-track-container {
    flex: 1;
    overflow: hidden;
    border-radius: 0px;
}

.doc-track {
    display: flex;
    gap: 12px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.doc-slide {
    flex: 0 0 calc((100% - 32px) / 3);
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f0f0f0;
}

.doc-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.doc-slide img:hover {
    transform: scale(1.04);
}

/* Navigation arrows */
.doc-arrow {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    z-index: 2;
    padding: 0 0 2px;
}

.doc-arrow:hover {
    background: #f44336;
    color: #fff;
    border-color: #f44336;
    box-shadow: 0 6px 20px rgba(244, 67, 54, 0.3);
}

.doc-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* Dot indicators */
.doc-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.doc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
    padding: 0;
}

.doc-dot.active {
    background: #f44336;
    transform: scale(1.25);
}

/* Responsive */
@media (max-width: 860px) {
    .doc-title {
        font-size: 28px;
    }

    .doc-slide {
        flex: 0 0 calc((100% - 16px) / 2);
    }
}

@media (max-width: 560px) {
    .doc-slide {
        flex: 0 0 100%;
    }

    .doc-title {
        font-size: 22px;
    }

    .doc-arrow {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }
}

/* Products and Services Page */
.products-services-page {
    background-color: #fff;
    padding: 60px 0 80px;
    font-family: 'Poppins', sans-serif;
}

.products-services-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.products-services-page .page-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #111;
}

.product-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 24px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    min-height: 380px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.need-a-specific-printer-card {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 24px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    min-height: 380px;
}

.need-a-specific-printer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.need-a-specific-printer-card img {
    object-fit: cover;
    vertical-align: middle;
}

.product-img-wrapper {
    width: 100%;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
}

.product-img-wrapper img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    color: #f44336;
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 16px;
}

.product-features {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 13.5px;
    color: #333;
}

.product-features li {
    margin-bottom: 8px;
    line-height: 1.45;
    position: relative;
    padding-left: 15px;
}

.product-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #f44336;
}


@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-services-page {
        padding: 40px 0 60px;
    }

    .products-services-page .page-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}