/* fonts */
@font-face {
    font-family: 'roboto-bold';
    src: url('../fonts/Roboto-Bold.woff2') format('woff2'),
        url('../fonts/Roboto-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'roboto-extrabold';
    src: url('../fonts/Roboto-ExtraBold.woff2') format('woff2'),
        url('../fonts/Roboto-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'roboto-light';
    src: url('../fonts/Roboto-Light.woff2') format('woff2'),
        url('../fonts/Roboto-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'roboto-medium';
    src: url('../fonts/Roboto-Medium.woff2') format('woff2'),
        url('../fonts/Roboto-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'roboto';
    src: url('../fonts/Roboto-Regular.woff2') format('woff2'),
        url('../fonts/Roboto-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'roboto-semibold';
    src: url('../fonts/Roboto-SemiBold.woff2') format('woff2'),
        url('../fonts/Roboto-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'roboto-black';
    src: url('../fonts/Roboto-Black.woff2') format('woff2'),
        url('../fonts/Roboto-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}




/* ============================================
   GLOBAL STYLES & VARIABLES
   ============================================ */
:root {
    --btn-bg:#f58633;
    --blue:#0081c6;
    --white: #fff;
    --dark: #000;
    --text-dark: #3d3d3d;
}

html {
  scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    color: var(--dark);
    font-style: normal;
    font-optical-sizing: auto;
    text-wrap: balance;
}

/* custom css */
p {letter-spacing: 0.1px;}
ul {list-style: none;padding-left: 0;margin-bottom: 0;}
a {text-decoration: none;transition: all 0.3s ease;}
button {outline: none;transition: all 0.3s ease;border: 0;}
.section {width: 100%;overflow: hidden;}
/* --- btn -- */
/* Buttons */
.cd-btnGrp {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}
.cd-fillbtn {
    padding: 8px 28px;
    background: #ff8c1a;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
}
.cd-fillbtn:hover {background-color: var(--white);color: var(--btn-bg);}
.cd-secondbg:hover {background-color: #eee;}
.cd-outlinebtn {
    padding: 8px 28px;
    border: 1px solid #333;
    border-radius: 25px;
    text-decoration: none;
    color: #333;
}
.cd-outlinebtn:hover {background-color: var(--blue);color: var(--white);border-color: var(--blue);}
.cd-Morebtn {
    position: relative;
    padding: 12px 32px;
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.3s;
    z-index: 1;
    display: inline-block;
}
.cd-Morebtn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #353535 0%, #2a2828 100%);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
}
.cd-Morebtn:hover,
.cd-Morebtn:focus {
    color: #fff;
}
.cd-Morebtn:hover::before,
.cd-Morebtn:focus::before {
    transform: scaleX(1);
}

/* font size */
.cd-sectiontitle .titleh2 {font-size: 2.25em;font-weight: 600;margin-bottom: 8px;color: var(--dark);}
.cd-sectiontitle .title36 {font-size: 2.75em;font-weight: 600;margin-bottom: 8px;color: var(--dark);}
.cd-sectiontitle .cd-subtitle {font-size: 1.5em;font-weight: bold;color: var(--btn-bg);}
.cd-sectiontitle .cd-subtitle18 {font-size: 18px;font-weight: bold;color: var(--btn-bg);}
.cd-titleh3 {font-size: 22px;font-weight: 600;}

/* custom css # */

/* ========= header ========== */
.cd-mainHeadWrapper {background-color: #dcdbd8;background-image: -moz-linear-gradient( 0deg, rgb(220,219,216) 27%, rgb(193,192,189) 85%);background-image: -webkit-linear-gradient( 0deg, rgb(220,219,216) 27%, rgb(193,192,189) 85%);background-image: -ms-linear-gradient( 0deg, rgb(220,219,216) 27%, rgb(193,192,189) 85%);background-repeat: no-repeat;background-position: top;position: relative;}
.cd-mainHeadWrapper::before {position: absolute;content: url('../images/header-bg.webp');margin-left: 5rem;z-index: 0;}
.cd-topbar {display: flex;align-items: center;justify-content: space-between;gap: 1rem;flex-wrap: wrap;padding: 12px 0;position: relative;z-index: 1;}
.cd-topbar .cd-leftside ul li .cdlink:hover, .cd-topbar .cd-rightside ul li .cdlink:hover {color: var(--blue);}
.cd-topbar ul {margin: 0;}
.cd-topbar .cd-leftside ul {display: flex;align-items: center;gap: 1rem;}
.cd-topbar .cd-leftside ul li .cdlink {color: var(--dark);position: relative;padding-right: 18px;}
.cd-topbar .cd-leftside ul li .cdlink::before {position: absolute;content: '';height: 18px;width: 1px;background-color: var(--dark);right: 0;}
.cd-topbar .cd-leftside ul li:last-child .cdlink::before {display: none;}
.cd-topbar .cd-rightside ul {display: flex;align-items: center;gap: 1rem;}
.cd-topbar .cd-rightside ul li .cdlink {color: var(--dark);}
/* menu */
.header-wrapper {background-color: var(--white);box-shadow: 1px 1.732px 6px 0px rgba(0, 0, 0, 0.078);border-radius: 10px;padding: 8px 20px;position: relative;z-index: 1;}
.header-wrapper #navbarNav a.nav-link {color: var(--dark);}
.header-wrapper #navbarNav a.nav-link:hover {color: var(--btn-bg);}
.header-wrapper #navbarNav .cd-contactbtn .nav-link {color: var(--white);}
.header-wrapper #navbarNav .cd-contactbtn .nav-link:hover {color: var(--dark);}
.header-wrapper .cd-contactbtn .nav-link {background-color: var(--btn-bg);color: var(--white);font-size: 18px;border-radius: 50px;padding: 6px 24px;text-align: center;line-height: normal;display: flex;align-items: center;justify-content: center;}
/* slider */
.cd-slider {
    width: 100%;
    overflow: hidden;
    padding-top: 3rem;
}
.cd-mainslider,
.cd-mainslider .slick-list,
.cd-mainslider .slick-track {
    height: 100%;
}
/* Slide */
.cd-innerslid {
    height: 616px;
    padding: 7rem 0 2rem;
    position: relative;z-index: 2;
}
/* Content area */
.cd-content p {margin-bottom: 1.8rem;}
.cd-content p + p {padding-right: 10rem;}
/* Background images */
.cd-slider .cd-bg1 {
    background-image: url('../images/silder/s1.webp');background-repeat: no-repeat;background-position: right center;background-size: contain;
}
.cd-slider .cd-bg2 {
    background-image: url('../images/silder/s1.webp');background-repeat: no-repeat;background-position: right center;background-size: contain;
}
/* Text */
.cd-headtxt {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 15px;
}
.para {
    font-size: 16px;
    margin-bottom: 25px;
}
/* header # */

/* ------ about ------- */
.cd-about {position: relative;background-color: #f5f5f5;padding: 7rem 0;overflow: hidden;}
.cd-about::before {position: absolute;content: '';right: 0;bottom: 0;margin-right: 8rem;z-index: 1;background-image: url('../images/about-bg.webp');width: 100%;height: 368px;background-repeat: no-repeat;background-position: right;object-fit: cover;}
.cd-about::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 153, 51, 0.35);
    box-shadow: 0 0 0 20px rgba(255, 153, 51, 0.20),
        0 0 0 56px rgba(255, 153, 51, 0.10);
    right: 19rem;
    top: 18%;
    z-index: 0;
    animation: cd-circleFloat 10s ease-in-out infinite;
}
@keyframes cd-circleFloat {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-30px, -25px);
    }
    100% {
        transform: translate(0, 0);
    }
}

.cd-about .container,
.cd-about .row,
.cd-about [class*="col-"] {
    position: relative;
    z-index: 2;
}
/* ------ # about ------- */

/* ------ prod ------ */
.cd-products {padding: 4rem 0 2rem;}
.cd-products .cd-tabNav {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.cd-products .cd-tabNav li {
    list-style: none;
    padding: 12px 34px;
    background: #eee;
    border-radius: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.5s ease;
    color: #000;
    box-shadow: 1.5px 2.598px 3px 1px rgba(0, 0, 0, 0.078);
    border: 1px solid rgb(204, 204, 204);
}

/* ACTIVE TAB */
.cd-products .cd-tabNav li.active {
    background: #ff8c1a;
    color: #fff;
}

/* Bottom Arrow */
.cd-products .cd-tabNav li.active::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ff8c1a;
}

/* Hover effect */
.cd-products .cd-tabNav li:hover {
    background: #ff8c1a;
    color: #fff;
}


/* Tab content */
.cd-products .cd-tabPane {
    display: none;
}

.cd-products .cd-tabPane.active {
    display: block;
}
/* Product Card */
.cd-products .cd-productCard {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem 1rem;
    border: 1px solid rgb(204, 204, 204);
    text-align: center;
    box-shadow: 3px 7px 7px 0px rgba(0, 0, 0, 0.078);
    margin: 10px;
}
.cd-products a.cd-prodlink {color: var(--dark);}
.cd-products a.cd-prodlink:hover {color: var(--blue);}
.cd-products .cd-productCard img {
    max-width: 100%;
    height: 260px;
    object-fit: contain;
    margin-bottom: 20px;
}
.cd-prodcard .cd-productCard {margin: 0;}
.cd-products .cd-productCard h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0;
}
.cd-line {
    display: block;
    width: 100%;
    height: 1px;
    background-image: -moz-linear-gradient( 0deg, rgb(255,255,255) 0%, rgb(236,50,55) 50%, rgb(255,255,255) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(255,255,255) 0%, rgb(236,50,55) 50%, rgb(255,255,255) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(255,255,255) 0%, rgb(236,50,55) 50%, rgb(255,255,255) 100%);
    margin-bottom: 1rem;
}

/* Slick arrows center */
.cd-products .cd-productSlider .slick-arrow {
    z-index: 9;
}
.cd-products .cd-sliderArrows {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 25px;
}

.cd-products .cd-sliderArrows button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #000;
    background: #fff;
    color: #000;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    display: block !important;
}

.cd-products .cd-sliderArrows button:hover {
    background: #000;
    color: #fff;
}

/* Disable state */
.cd-products .cd-sliderArrows .slick-disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* Mobile */
@media(max-width:768px){
    .cd-products .cd-productCard img{
        height: 200px;
    }
}
/* ------ # prod ------ */

/* ----- why keypac ------ */
.cd-keypac {padding: 4rem 0;}
.cd-keypac .cd-rightside {position: relative;text-align: right;}
.cd-keypac .cd-rightside::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 153, 51, 0.35);
    box-shadow: 0 0 0 20px rgba(255, 153, 51, 0.20),
        0 0 0 56px rgba(255, 153, 51, 0.10);
    right: 15rem;
    top: -100%;
    z-index: -1;
    animation: cd-circleFloat 10s ease-in-out infinite;
}
.cd-keypac .cd-leftside {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 90px 30px;
    margin-top: 3rem;
}
.cd-keypac .cd-innerbox {
    padding: 20px 54px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 1px 1.732px 8px 4px rgba(0, 0, 0, 0.078);
    border: 1px solid rgb(204, 204, 204);
}
.cd-keypac .cd-innerbox:hover {background-color: var(--blue);transition: all 0.5s ease;}
.cd-keypac .cd-innerbox:hover p {color: var(--white);}
.cd-keypac .cd-icon {
    background-color: var(--btn-bg);
    padding: 20px;
    border-radius: 100%;
    margin: -70px auto 20px;
    text-align: center;
    display: table;
}
.cd-keypac .cd-para {
    font-size: 15px;
    margin: 0;
    color: #333;
    text-align: center;
    font-weight: bold;
}
/* Mobile auto adjustment */
@media (max-width: 575px) {
    .cd-keypac .cd-leftside {
        grid-template-columns: 1fr; /* 1 column */
    }
}
/* ----- # why keypac ------ */

/* ----- follow ------ */
.cd-follow {padding: 4rem 0;}
.cd-follow .cd-innercard {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}
.cd-follow .cd-innerbox {
    background: #fff;
    padding: 2rem 10px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgb(204, 204, 204);
    box-shadow: 3px 2.732px 5px 3px rgba(0, 0, 0, 0.078);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cd-follow .cd-innerbox .sprite {
    display: inline-block;
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
}
.cd-follow .cd-text {
    font-size: 1em;
    margin: 0;
}
.cd-follow .cd-innerbox:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.10);
}
.cd-follow .sprite {display: inline-block; vertical-align: middle;}
.cd-follow .sprite {background-image: url('../images/follow.webp'); background-position: left center; background-repeat: no-repeat;}
.cd-follow .sprite._1_png {background-position: 0 0; width: 56px; height: 56px;}
.cd-follow .sprite._2_png {background-position: 0 -57px; width: 56px; height: 56px;}
.cd-follow .sprite._3_png {background-position: 0 -114px; width: 56px; height: 56px;}
.cd-follow .sprite._4_png {background-position: 0 -171px; width: 56px; height: 56px;}
.cd-follow .sprite._5_png {background-position: 0 -228px; width: 56px; height: 56px;}
.cd-follow .sprite._6_png {background-position: 0 -285px; width: 56px; height: 56px;}
.cd-follow .sprite._7_png {background-position: 0 -342px; width: 56px; height: 56px;}
/* ----- # follow ------ */

/* --- visit --- */
.cd-visit {padding: 3rem 0;}
/* --- # visit --- */

/* CTA */
.cta {background: #fed9ac; padding: 100px !important;}
.cta .left-side h2 {font-size: 40px;color: #666;font-weight: 500;margin-bottom: 2rem;}
.cta .right-side {position: relative;height: 100%;}
.cta .right-side .one {position: absolute;content: '';bottom: 0; }
.cta .right-side .two {position: absolute;content: '';right: 60px;top: 1px;}
.cta .right-side .three {position: absolute;content: '';right: 50px;top: -75px;}
.cta .right-side .one {
    animation: rotate1 30s infinite linear;
}
@keyframes rotate1 {
    100% {
        transform: rotateZ(360deg);
    }
}
.cta .right-side .two {
    animation: rotate2 37s infinite linear;
}
@keyframes rotate2 {
    100% {
        transform: rotateZ(-360deg);
    }
}
.cta .right-side .three {
    animation: rotate3 28s infinite linear;
}
@keyframes rotate3 {
    100% {
        transform: rotateZ(360deg);
    }
}

/* --- footer --- */
.cd-footer .cd-footcontact h2 {font-size: 28px;font-weight: bold;margin-bottom: 1rem;}
.cd-footer .cd-footcontact i {color: var(--btn-bg);}
.cd-footer .cd-footcontact ul li {margin-bottom: 10px;}
.cd-footer .cd-footcontact .link {color: var(--dark);}
.cd-footer .cd-footcontact .link:hover {color: var(--blue);}
.cd-footer .cd-social {padding: 48px 0 1.5rem;text-align: right;}
.cd-footer .cd-socialicon {display: flex;align-items: center;gap: 2rem;flex-wrap: wrap;justify-content: end;}
.cd-footer .cd-socialicon a.cd-sociallink:hover {transform: scale(1.2);}
.cd-footer .cd-copytextbox {background-color: var(--btn-bg);padding: 2rem 0;text-align: center;margin-top: 3rem;}
.cd-footer .cd-copytextbox .cd-copytext {color: var(--white);font-size: 18px;}
/* --- # footer --- */

/*======= Mobile view =======*/
.mobile-sticky-footer {
	display: inline-block;
	width: 100%;
}
.mobile-sticky-footer {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	background-color: #201d1e;
}
.mobile-sticky-footer a {
	float: left;
	width: 20%;
	padding: 3px 10px;
	text-align: center;
	color: var(--btn-bg);
	font-size: 26px;
}
.mobile-sticky-footer a:hover {
	background-color: rgba(0,0,0,0.5);
}
/*======= # Mobile view =======*/

/* ======= back to top ========== */
#return-to-top {
    position: fixed;
    border: 2px solid #fff;
    bottom: 20px;
    right: 20px;
    background-color: #000;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    line-height: 39px;
    display: block;
    text-decoration: none;
    display: none;
    text-align: center;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 9999;
    -webkit-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.25);
    opacity: 0.3;
}
#return-to-top:hover {opacity: 1;}
#return-to-top i {
    color: #fff;
    font-weight: 600;
    margin: 0;
    top: 0;
    position: relative;
    font-size: 22px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}
/* ======= # back to top ========== */

/* ====== about ====== */
.heading_section {padding: 8rem 0;position: relative;background-repeat: no-repeat;background-size: cover;}
.heading_section:before {content: '';left: 0px;top: 0px;width: 100%;height: 100%;position: absolute;background: rgba(0,0,0,0.30);}
.heading_section .head-title h1 {position: relative;z-index: 1;color: var(--white);line-height: normal;margin-bottom: 0;font-weight: 500;font-size: 3em;padding-bottom: 5px;}
.heading_section .head-title h1:after {content: '';position: absolute;left: 0;bottom: 0px;width: 80px;border-bottom: 3px solid var(--white);}
.heading_section .head-title .cd-textorng {color: var(--btn-bg);font-weight: 600;}
.aboutbg {background-image: url('../images/aboutbg.webp');}
.cd-ourServices {padding: 4rem 0;}
.cd-ourServices .service-block-one {display: flex;align-items: center;gap: 2rem;padding: 1rem;border: 1px solid #ccc;}
.cd-ourServices .service-block-one .icon-box {font-size: 1.5rem;}
.cd-ourServices .service-block-one .icon-box i {color: #0081c6;}
.cd-ourServices .service-block-one .inner-box h3 {font-weight: 600;font-size: 24px;}
.cd-ourServices .service-block-one .inner-box .category {margin-bottom: 8px;border-bottom: 1px solid #ccc;padding-bottom: 5px;}
.cd-ourServices .service-block-one .inner-box .category a {color: var(--btn-bg);font-size: 18px;font-style: italic;}
/* ====== about # ====== */

/* ===== prod details ===== */
.cd-productDetails .card {
    padding: 1.5rem;
    background-color: #f5f5f5;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1.05fr;
    gap: 32px;
    align-items: start;
}

/* Image panel */
.cd-productDetails .image-wrap {
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.cd-productDetails .image-wrap img {
    object-fit: contain;
}
/* Table panel */
.cd-productDetails .spec {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.cd-productDetails .spec th,
.cd-productDetails .spec td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #e9d6e3;
}
.cd-productDetails .spec thead th {
    background: var(--btn-bg);
    font-weight: 500;
    font-size: 18px;
    color: var(--white);
    letter-spacing: 0.2px;
}
.cd-productDetails .spec tbody tr:nth-child(even) {
    background: var(--pink-row);
}
.cd-productDetails .spec td {
    color: #333;
}
.cd-productDetails .spec .label {
    width: 45%;
    min-width: 180px;
}
.cd-productDetails .spec .value {
    width: 55%;
}

@media (max-width: 980px) {
    .cd-productDetails .card {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .cd-productDetails .image-wrap {
        order: 0;
    }
}
.cd-TabData {padding: 4rem 0;}
.cd-TabData .cd-productCard {padding: 1rem;}
.cd-TabData .cd-details {border: 1px solid #ccc;border-radius: 12px;padding: 10px;margin: 10px 0;}
/* ===== # prod details ===== */

/* =====  infrastructure =======*/
.cd-gallery {padding: 4rem 0;}
.cd-gallery ul {display: flex;}
.cd-gallery ul li {padding: 5px;width: 100%;}
.cd-gallery ul li .cd-photoinfra {width: 100%;height: auto;object-fit: cover;}
/* =====  # infrastructure =======*/

/* ===== contact ======= */
.cd-contact {padding: 4rem 0;background-color: #f1f1f1;}
.cd-contact .cd-contactbox {box-shadow: 2px 2px 8px 0px rgb(0 0 0 / 8%), 2px 5px 8px 0px rgba(0, 0, 0, 0.22);border-radius: 12px;overflow: hidden;}
.cd-contact .form-container {
    display: flex;
}
.cd-contact .left-container {
    flex: 1;
    background-color: #00b4cf;
}
.cd-contact .right-container {
    display: flex;
    flex: 1;
    background-color: #ffffff;
    justify-content: center;
    align-items: center;
}
.cd-contact .left-container {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}
.cd-contact .left-container p {
    font-size: 1em;
}
.cd-contact .right-inner-container {
    text-align: center;
    padding: 1rem 3rem;
}
.cd-contact input, .cd-contact textarea {
    background-color: #eee;
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
    font-size: 1em;
    border-radius: 6px;
}
.cd-contact input:focus, .cd-contact textarea:focus {
    outline: 1px solid var(--btn-bg);
}
.cd-contact .cd-addressboxone {background-color: var(--btn-bg);padding: 1.5rem 2rem;}
.cd-contact .cd-addressboxtwo {background-color:var(--blue);padding: 1.5rem 2rem;}
/* ===== # contact ======= */

/* ======  Plants ===== */
.cd-plants-machinery {padding: 4rem 0;}
.cd-plants-machinery .cd-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    height: 420px;
    cursor: pointer;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}
.cd-plants-machinery .cd-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cd-plants-machinery .cd-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2));
    color: #fff;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.cd-plants-machinery .cd-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(0, 0, 0, 0.6);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
}
.cd-plants-machinery .cd-overlay p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}
.cd-plants-machinery .cd-overlay small {
    font-size: 12px;
    opacity: 0.8;
}
.cd-plants-machinery .cd-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}
.cd-plants-machinery .cd-card:hover .cd-overlay {
    opacity: 1;
}
/* ====== # Plants ======== */

/* ====== CTA ====== */
.cd-cta-section {
    padding: 4rem 0;
    background: #f5f5f5;
}
.cd-cta-section .cd-cta-box {
    padding: 80px 20px;
    text-align: center;
    border-radius: 22px;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: url("https://www.polyplast.co.in/assets/img/footer-banner.png") center/cover no-repeat;
}
.cd-cta-section .cd-cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
}
.cd-cta-section .cd-cta-box * {
    position: relative;
    z-index: 1;
}
.cd-cta-section .cd-cta-box h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}
.cd-cta-section .cd-cta-box p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 28px;
}
.cd-cta-section .cd-cta-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--white);
    color: var(--dark);
    border-radius: 25px;
    font-size: 1em;
    text-decoration: none;
    transition: all 0.3s ease;
}
.cd-cta-section .cd-cta-btn:hover {
    background: var(--btn-bg);
    color: var(--white);
    transform: translateY(-2px);
}
/* ====== # CTA ====== */

/* ---- craft ---- */
.cd-craft-section {
    padding: 4rem 0;
}
.cd-craft-section .cd-craft-box {
    padding: 70px 40px;
    background: #0f3f45;
    border-radius: 22px;
    color: #fff;
    text-align: center;
}
.cd-craft-section .cd-craft-box h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}
.cd-craft-section .cd-subtitle {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 50px;
}
.cd-craft-section .cd-craft-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.cd-craft-section .cd-craft-item {
    position: relative;
    padding: 20px;
    transition: transform 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 0 10px 1px rgb(0 0 0 / 10%);
}
.cd-craft-section .cd-craft-item:hover {
    transform: translateY(-6px);
}
.cd-craft-section .cd-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.cd-craft-section .cd-arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 18px;
    opacity: 0.6;
}
.cd-craft-section .cd-craft-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
}
.cd-craft-section .cd-craft-item p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}
/* ---- # craft ---- */

/* ===== Food & Processing ====== */
.cd-foodProcess {padding: 4rem 0;}
.cd-foodProcess .cd-aboutcontent {margin-bottom: 1.5rem;}
.cd-foodProcess .cd-imagebox .cd-foodprocimg {transition:all 0.5s ease;border-radius: 12px;box-shadow: 3px 7px 7px 0px rgba(0, 0, 0, 0.078);}
.cd-foodProcess .cd-imagebox .cd-foodprocimg:hover {filter: grayscale(100%);}
.cd-foodProcess .row {align-items: center;}
/* ===== # Food & Processing ====== */

/* ==== Services ==== */
.cd-foodProcess {padding: 4rem 0;}
.cd-foodProcess .col-lg-6:nth-child(1) .single-services, .cd-foodProcess .col-lg-6:nth-child(3) .single-services, .cd-foodProcess .col-lg-6:nth-child(5) .single-services {
    border-left: 0;
}
.cd-foodProcess .col-lg-6:nth-child(1) .single-services, .cd-foodProcess .col-lg-6:nth-child(2) .single-services, .cd-foodProcess .col-lg-6:nth-child(4) .single-services {
    border-top: 0px;
}
.cd-foodProcess .single-services {
    border-left: 1px solid #EFEFEF;
    border-bottom: 1px solid #EFEFEF;
    padding: 44px 36px;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    min-height: 100%;
}
.cd-foodProcess .single-services:hover {
    box-shadow: 0px 15px 25px rgba(255, 133, 83, 0.1);
}
.cd-foodProcess .single-services .services-ion {
    margin-bottom: 31px;
}
.cd-foodProcess .single-services .services-cap h5 a {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 12px;
    font-weight: 600;
    display: block;
    color: #000000 !important;
}
.cd-foodProcess .services-cap h5 {font-weight: 600;color: var(--dark);margin-bottom: 1rem;}
.cd-foodProcess .services-cap p {font-size: 1em;}
.cd-foodProcess .browse-btn {
    color: var(--dark);
    font-weight: 600;
    font-size: 16px;
    position: relative;
    display: inline-block;
}
.cd-foodProcess .browse-btn::before {
    position: absolute;
    content: "";
    background: var(--btn-bg);
    width: 100%;
    height: 2px;
    bottom: -11px;
}
.cd-foodProcess .browse-btn:hover {
    color: var(--blue);
    letter-spacing: 1px;
}
/* ==== # Services ==== */

/* ==== event ==== */
.cd-events {padding: 4rem 0;}
.cd-events .cd-eventbox {padding-top: 10px !important;box-shadow: -10px 10px 0px var(--blue);margin: 0px 10px 20px 20px;overflow: hidden;height: 100%;padding: 25px 16px 40px 16px;background: #ffffff;border: 1px solid #ecebeb;border-radius: 15px;margin: 0px 0px 10px 5px;}
.cd-events .cd-eventbox .cd-eventimg {overflow: hidden;border-radius: 15px;}
.cd-events .cd-eventbox .cd-eventimg .cd-eventphoto {border-radius: 15px;object-fit: cover;transition: all 0.5s ease;}
.cd-events .cd-eventbox .cd-eventimg .cd-eventphoto:hover {transform: scale(1.3);}
.cd-events .cd-eventbox .cd-eventdata {margin-top: 1.5rem;}
.cd-events .cd-eventbox .cd-eventdata h3 {font-size: 22px;font-weight: 600;}
.cd-events .cd-eventbox .cd-eventdata p {margin-bottom: 0;text-align: justify;font-size: 15px;}
/* ==== # event ==== */

/* ==== sponsor ==== */
.cd-sponsor {padding: 4rem 0;}
.cd-sponsor .cd-listsponor ul {display: flex;}
.cd-sponsor .cd-listsponor ul li {padding: 5px;}
/* ==== # sponsor ==== */

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (min-width: 992px) {
    .mobile-sticky-footer {display: none;}
    .cd-foodProcess .cd-rowreverse .cd-aboutcontent {text-align: right;}
    .cd-foodProcess .cd-rowreverse .cd-aboutcontent .cd-btnGrp {justify-content: end;}
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-wrapper .cd-headerlogo {width: 100px;}
    .header-wrapper #navbarNav a.nav-link {font-size: 15px;padding: 0 8px;}
    .header-wrapper .cd-contactbtn .nav-link {font-size: 1em !important;padding: 5px 14px !important;}
    .cd-about::before {margin: 0 auto;background-position: center;}
    .cd-about::after {top: 40%;}
    .cd-about .cd-content {padding-bottom: 13rem;}
    .cd-content p + p {padding-right: 0;}
    .cd-footer .cd-socialicon {gap: 1rem;}
    .cd-ourServices .service-block-one {height: 100%;}
}
@media (max-width: 991px) {
    .cd-topbar {display: none;}
    #return-to-top {bottom: 55px;}
    .header-wrapper {margin-top: 1rem;}
    .cd-innerslid {height: 420px;padding: 0 30px;background-position: center;}
    .cd-headtxt {font-size: 24px;}
    .cd-mainHeadWrapper::before {margin: 0 auto;}
    .cd-footer .row {align-items: center;}
    .cd-prodcard .cd-productCard {margin: 10px 0;}
    .cd-craft-section .cd-craft-grid {grid-template-columns: 1fr;gap: 30px;}
    .cd-craft-section .cd-craft-box h2 {font-size: 28px;}
    .cd-products .cd-tabNav {margin-bottom: 0;flex-wrap: nowrap;overflow: auto;}
    .cd-products .cd-tabNav li {flex: 0 0 auto;margin-bottom: 1rem;}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cd-products, .cd-keypac, .cd-follow , .cd-visit{padding: 2.5rem 0;}
    .cd-about {padding: 2rem 0;}
    .cd-about .cd-btnGrp {justify-content: center;}
    .cd-content p + p {padding-right: 0;}
    .cd-about .cd-content {padding-bottom: 22rem;}
    .cd-about::after {top: 50%;}
    .cd-about::before {margin-right: 0;background-position: bottom;object-fit: cover;background-size: contain;}
    .cd-about p, .cd-visit p {text-align: justify;letter-spacing: normal;}
    .cd-products .cd-tabNav {gap: 10px;}
    .cd-keypac .cd-rightside {margin-top: 5rem;text-align: center;}
    .cd-keypac .cd-rightside::after {top: -100%;width: 208px;height: 208px;}
    .cd-footer .cd-copytextbox {margin-top: 1rem;margin-bottom: 2.5rem;}
    .cd-sponsor .cd-listsponor ul {flex-wrap: wrap;}
    .cd-sponsor .cd-listsponor ul li {flex: 0 0 25%;}
}
@media (max-width: 767px) {    
    .cd-sectiontitle .titleh2, .cd-sectiontitle .title36 {font-size: 1.375em;}
    .cd-sectiontitle .cd-subtitle {font-size: 1.2em;}
    .cd-sectiontitle .cd-subtitle18 {font-size: 1em;}
    .heading_section .head-title h1 {font-size: 2em;}
    .heading_section {padding: 3rem 0;}
    .cd-topbar .cd-leftside ul {display: block;}
    .cd-topbar .cd-leftside ul li {margin: 5px 0;}
    .cd-topbar .cd-leftside ul li .cdlink::before {display: none;}
    .custom-navbar {margin-top: 1rem !important;border-top: 1px solid #ccc;}
    .cd-headerlogo {width: 120px;}    
    .header-wrapper .cd-contactbtn {margin-top: 10px;}
    .cd-slider {height: 570px;padding-top: 2rem;}
    .cd-slider .cd-content {text-align: center;}
    .cd-slider .cd-innerslid {background-position: 0 90%;height: 100%;}
    .cd-slider .cd-btnGrp {justify-content: center;}
    .cd-about {padding: 2rem 0;}
    .cd-about .cd-btnGrp {justify-content: center;}
    .cd-content p + p {padding-right: 0;}
    .cd-about .cd-content {padding-bottom: 9rem;}
    .cd-about::before {margin-right: 0;background-position: bottom;object-fit: cover;background-size: contain;}
    .cd-about p, .cd-visit p {text-align: justify;letter-spacing: normal;}
    .cd-products, .cd-keypac, .cd-follow , .cd-visitM, .cd-contact, .cd-gallery, .cd-plants-machinery, .cd-cta-section , .cd-craft-section, .cd-foodProcess, .cd-events, .cd-sponsor  {padding: 2rem 0;}        
    .cd-keypac .cd-innerbox {padding: 20px 0 24px;}
    .cd-keypac .cd-rightside {margin-top: 5rem;}
    .cd-keypac .cd-rightside::after {right: 0;top: -150%;width: 208px;height: 208px;}
    .cd-footer .cd-social {text-align: center;padding: 1rem 0;}
    .cd-footer .cd-socialicon {justify-content: center;}
    .cd-footer .cd-copytextbox {margin-top: 2rem;margin-bottom: 2rem;}
    .cd-contact .right-inner-container {padding: 1rem;}
    .cd-cta-section .cd-cta-box {padding: 50px 15px;}
    .cd-cta-section .cd-cta-box h2 {font-size: 26px;}
    .cd-craft-section .cd-craft-box {padding: 1.5rem;}
    .cd-sponsor .cd-listsponor ul {flex-wrap: wrap;}
    .cd-events .cd-eventbox {margin-bottom: 2rem;height: auto;}
}
@media only screen and (min-width: 640px) and (max-width: 767px) {
    .cd-sponsor .cd-listsponor ul li {flex: 0 0 33.33%;}
}
@media (max-width: 576px) {
    .cd-innerslid {height: auto;padding: 0;}
    .header-wrapper .navbar {padding: 0.5rem 0;}
    .brand-logo {font-size: 1.5rem;}
    .featured-container {padding: 0 1rem;}
    .cd-footer .cd-copytextbox .cd-copytext {font-size: 15px;padding-inline: 4px;}
    .cd-ourServices .service-block-one {display: block;padding: 2rem 1rem 1rem;}
    .cd-ourServices .service-block-one .icon-box {margin-bottom: 2rem;}
    .cd-contact .form-container {display: block;}
    .cd-contact .right-inner-container {padding: 1.5rem;}
    .cd-craft-section .cd-craft-box {padding: 1.5rem 1rem;}
    .cd-foodProcess .cd-aboutcontent p, .cd-foodProcess .services-cap p {text-align: justify;}
    .cd-foodProcess .cd-aboutcontent .cd-btnGrp {justify-content: center;}
    .cd-foodProcess .single-services {border-left: 0;padding: 2rem 1.5rem;}
    .cd-sponsor .cd-listsponor ul {flex-wrap: wrap;}
    .cd-sponsor .cd-listsponor ul li {flex: 0 0 50%;}
}
